diff --git a/Image b/Image new file mode 100644 index 0000000000000..fbda7f72e4e36 Binary files /dev/null and b/Image differ diff --git a/arch/risc-v/src/bl808/Make.defs b/arch/risc-v/src/bl808/Make.defs index 61a4f41280e7a..4368b3d935950 100644 --- a/arch/risc-v/src/bl808/Make.defs +++ b/arch/risc-v/src/bl808/Make.defs @@ -27,4 +27,4 @@ HEAD_ASRC = bl808_head.S # Specify our C code within this directory to be included CHIP_CSRCS = bl808_start.c bl808_irq_dispatch.c bl808_irq.c CHIP_CSRCS += bl808_timerisr.c bl808_allocateheap.c -CHIP_CSRCS += bl808_mm_init.c bl808_pgalloc.c bl808_serial.c +CHIP_CSRCS += bl808_gpio.c bl808_mm_init.c bl808_pgalloc.c bl808_serial.c diff --git a/arch/risc-v/src/bl808/bl808_gpio.c b/arch/risc-v/src/bl808/bl808_gpio.c new file mode 100644 index 0000000000000..4ea53cc062cf1 --- /dev/null +++ b/arch/risc-v/src/bl808/bl808_gpio.c @@ -0,0 +1,148 @@ +/**************************************************************************** + * arch/risc-v/src/bl808/bl808_gpio.c + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. The + * ASF licenses this file to you 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. + * + ****************************************************************************/ + +/**************************************************************************** + * Included Files + ****************************************************************************/ + +#include + +#include +#include + +#include "riscv_internal.h" +#include "hardware/bl808_glb.h" +#include "bl808_gpio.h" + +////TODO +////#define BL808_GLB_BASE 0x20000000ul /* glb */ +#define BL808_GPIO_BASE 0x200008c4ul /* gpio */ +#define BL808_NGPIOS 45 +#define reg_gpio_xx_o 24 +#define reg_gpio_xx_i 28 + +/**************************************************************************** + * Public Functions + ****************************************************************************/ + +/**************************************************************************** + * Name: bl808_configgpio + * + * Description: + * Configure a GPIO pin based on encoded pin attributes. + * + ****************************************************************************/ + +int bl808_configgpio(int pin, gpio_pinattr_t attr) +{ + uintptr_t regaddr; + uint32_t cfg = 0; + + DEBUGASSERT(pin >= 0 && pin <= BL808_NGPIOS); + + //// TODO: Change GPIO_CFGCTL0_GPIO_0_IE to GPIO_CFG_GPIO_IE + if (attr & GPIO_INPUT) + { + cfg |= GPIO_CFGCTL0_GPIO_0_IE; + } + else + { + cfg |= GPIO_CFGCTL0_GPIO_0_OE; + } + + if (attr & GPIO_PULLUP) + { + cfg |= GPIO_CFGCTL0_GPIO_0_PU; + } + + if (attr & GPIO_PULLDOWN) + { + cfg |= GPIO_CFGCTL0_GPIO_0_PD; + } + + if (attr & GPIO_DRV_MASK) + { + cfg |= ((attr & GPIO_DRV_MASK) >> GPIO_DRV_SHIFT) << + GPIO_CFGCTL0_GPIO_0_DRV_SHIFT; + } + + if (attr & GPIO_SMT_EN) + { + cfg |= GPIO_CFGCTL0_GPIO_0_SMT; + } + + if (attr & GPIO_FUNC_MASK) + { + cfg |= ((attr & GPIO_FUNC_MASK) >> GPIO_FUNC_SHIFT) << + GPIO_CFGCTL0_GPIO_0_FUNC_SEL_SHIFT; + } + + regaddr = BL808_GPIO_BASE + (pin * 4); + _info("regaddr=%p, cfg=0x%x\n", regaddr, cfg);//// + putreg32(cfg, regaddr); + return OK; +} + +/**************************************************************************** + * Name: bl808_gpiowrite + * + * Description: + * Write one or zero to the selected GPIO pin + * + ****************************************************************************/ + +void bl808_gpiowrite(int pin, bool value) +{ + uintptr_t regaddr; + + DEBUGASSERT(pin >= 0 && pin <= BL808_NGPIOS); + + regaddr = BL808_GPIO_BASE + (pin * 4); + if (value) + { + _info("regaddr=%p, set=0x%x\n", regaddr, (1 << reg_gpio_xx_o));//// + modifyreg32(regaddr, 0, (1 << reg_gpio_xx_o)); + } + else + { + _info("regaddr=%p, clear=0x%x\n", regaddr, (1 << reg_gpio_xx_o));//// + modifyreg32(regaddr, (1 << reg_gpio_xx_o), 0); + } +} + +/**************************************************************************** + * Name: bl808_gpioread + * + * Description: + * Read one or zero from the selected GPIO pin + * + ****************************************************************************/ + +bool bl808_gpioread(int pin) +{ + uintptr_t regaddr; + uint32_t regval; + + DEBUGASSERT(pin >= 0 && pin <= BL808_NGPIOS); + + regaddr = BL808_GPIO_BASE + (pin * 4); + regval = getreg32(regaddr); + return (regval & (1 << reg_gpio_xx_i)) != 0; +} diff --git a/arch/risc-v/src/bl808/bl808_gpio.h b/arch/risc-v/src/bl808/bl808_gpio.h new file mode 100644 index 0000000000000..45dbc8e474d05 --- /dev/null +++ b/arch/risc-v/src/bl808/bl808_gpio.h @@ -0,0 +1,188 @@ +/**************************************************************************** + * arch/risc-v/src/bl808/bl808_gpio.h + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. The + * ASF licenses this file to you 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 __ARCH_RISCV_SRC_BL808_BL808_GPIO_H +#define __ARCH_RISCV_SRC_BL808_BL808_GPIO_H + +/**************************************************************************** + * Included Files + ****************************************************************************/ + +#include + +#include +#include + +/**************************************************************************** + * Pre-processor Definitions + ****************************************************************************/ + +/**************************************************************************** + * Pre-Processor Declarations + ****************************************************************************/ + +/* Encoded GPIO Attributes + * + * 1111 1100 0000 0000 + * 5432 1098 7654 3210 + * ---- ---- ---- ---- + * .... ..MU UDDS FFFF + */ + +/* Mode: + * + * 1111 1100 0000 0000 + * 5432 1098 7654 3210 + * ---- ---- ---- ---- + * .... ..M. .... .... + */ + +#define GPIO_MODE_SHIFT (9) /* Bit 9: Port Mode */ +#define GPIO_MODE_MASK (1 << GPIO_MODE_SHIFT) +# define GPIO_INPUT (1 << GPIO_MODE_SHIFT) /* Input Enable */ +# define GPIO_OUTPUT (0 << GPIO_MODE_SHIFT) /* Output Enable */ + +/* Input/Output pull-ups/downs: + * + * 1111 1100 0000 0000 + * 5432 1098 7654 3210 + * ---- ---- ---- ---- + * .... ...U U... .... + */ + +#define GPIO_PUPD_SHIFT (7) /* Bits 7-8: Pull-up/down */ +#define GPIO_PUPD_MASK (3 << GPIO_PUPD_SHIFT) +#define GPIO_FLOAT (0 << GPIO_PUPD_SHIFT) /* No pull-up, pull-down */ +#define GPIO_PULLUP (1 << GPIO_PUPD_SHIFT) /* Pull-up */ +#define GPIO_PULLDOWN (2 << GPIO_PUPD_SHIFT) /* Pull-down */ + +/* Drive: + * + * 1111 1100 0000 0000 + * 5432 1098 7654 3210 + * ---- ---- ---- ---- + * .... .... .DD. .... + */ + +#define GPIO_DRV_SHIFT (5) /* Bits 5-6: Drive */ +#define GPIO_DRV_MASK (3 << GPIO_DRV_SHIFT) +#define GPIO_DRV_0 (0 << GPIO_DRV_SHIFT) +#define GPIO_DRV_1 (1 << GPIO_DRV_SHIFT) +#define GPIO_DRV_2 (2 << GPIO_DRV_SHIFT) +#define GPIO_DRV_3 (3 << GPIO_DRV_SHIFT) + +/* Input Schmitt trigger: + * + * 1111 1100 0000 0000 + * 5432 1098 7654 3210 + * ---- ---- ---- ---- + * .... .... ...S .... + */ + +#define GPIO_SMT_SHIFT (4) /* Bit 4: SMT Enable */ +#define GPIO_SMT_MASK (3 << GPIO_SMT_SHIFT) +#define GPIO_SMT_DIS (0 << GPIO_SMT_SHIFT) +#define GPIO_SMT_EN (1 << GPIO_SMT_SHIFT) + +/* GPIO type selection: + * + * 1111 1100 0000 0000 + * 5432 1098 7654 3210 + * ---- ---- ---- ---- + * .... .... .... FFFF + */ + +#define GPIO_FUNC_SHIFT (0) /* Bits 0-3: GPIO Type */ +#define GPIO_FUNC_MASK (15 << GPIO_FUNC_SHIFT) +#define GPIO_FUNC_SDIO (1 << GPIO_FUNC_SHIFT) /* SDIO */ +#define GPIO_FUNC_FLASH (2 << GPIO_FUNC_SHIFT) /* Flash */ +#define GPIO_FUNC_SPI (4 << GPIO_FUNC_SHIFT) /* SPI */ +#define GPIO_FUNC_I2C (6 << GPIO_FUNC_SHIFT) /* I2C */ +#define GPIO_FUNC_UART (7 << GPIO_FUNC_SHIFT) /* UART */ +#define GPIO_FUNC_PWM (8 << GPIO_FUNC_SHIFT) /* PWM */ +#define GPIO_FUNC_EXT_PA (9 << GPIO_FUNC_SHIFT) /* Analog */ +#define GPIO_FUNC_ANA (10 << GPIO_FUNC_SHIFT) /* Analog */ +#define GPIO_FUNC_SWGPIO (11 << GPIO_FUNC_SHIFT) /* Software GPIO */ +#define GPIO_FUNC_JTAG (14 << GPIO_FUNC_SHIFT) /* JTAG */ + +/**************************************************************************** + * Public Types + ****************************************************************************/ + +#ifndef __ASSEMBLY__ + +/* Must be big enough to hold the above encodings */ + +typedef uint16_t gpio_pinattr_t; + +/**************************************************************************** + * Public Data + ****************************************************************************/ + +#undef EXTERN +#if defined(__cplusplus) +#define EXTERN extern "C" +extern "C" +{ +#else +#define EXTERN extern +#endif + +/**************************************************************************** + * Public Function Prototypes + ****************************************************************************/ + +/**************************************************************************** + * Name: bl808_configgpio + * + * Description: + * Configure a GPIO pin based on encoded pin attributes. + * + ****************************************************************************/ + +int bl808_configgpio(int pin, gpio_pinattr_t attr); + +/**************************************************************************** + * Name: bl808_gpiowrite + * + * Description: + * Write one or zero to the selected GPIO pin + * + ****************************************************************************/ + +void bl808_gpiowrite(int pin, bool value); + +/**************************************************************************** + * Name: bl808_gpioread + * + * Description: + * Read one or zero from the selected GPIO pin + * + ****************************************************************************/ + +bool bl808_gpioread(int pin); + +#ifdef __cplusplus +} +#endif +#undef EXTERN + +#endif /* __ASSEMBLY__ */ +#endif /* __ARCH_RISCV_SRC_BL808_BL808_GPIO_H */ diff --git a/arch/risc-v/src/bl808/hardware/bl808_glb.h b/arch/risc-v/src/bl808/hardware/bl808_glb.h new file mode 100644 index 0000000000000..6ad09a374eb5b --- /dev/null +++ b/arch/risc-v/src/bl808/hardware/bl808_glb.h @@ -0,0 +1,147 @@ +/**************************************************************************** + * arch/risc-v/src/bl808/hardware/bl808_glb.h + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. The + * ASF licenses this file to you 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 __ARCH_RISCV_SRC_BL808_HARDWARE_BL808_GLB_H +#define __ARCH_RISCV_SRC_BL808_HARDWARE_BL808_GLB_H + +/**************************************************************************** + * Included Files + ****************************************************************************/ + +#include +#include "bl808_memorymap.h" + +/**************************************************************************** + * Pre-processor Definitions + ****************************************************************************/ + +/* Register offsets *********************************************************/ + +#define BL808_GPIO_CFG0_OFFSET 0x0008c4 /* gpio_cfg0 */ +#define BL808_GPIO_CFG1_OFFSET 0x0008c8 /* gpio_cfg1 */ +#define BL808_GPIO_CFG2_OFFSET 0x0008cc /* gpio_cfg2 */ +#define BL808_GPIO_CFG3_OFFSET 0x0008d0 /* gpio_cfg3 */ +#define BL808_GPIO_CFG4_OFFSET 0x0008d4 /* gpio_cfg4 */ +#define BL808_GPIO_CFG5_OFFSET 0x0008d8 /* gpio_cfg5 */ +#define BL808_GPIO_CFG6_OFFSET 0x0008dc /* gpio_cfg6 */ +#define BL808_GPIO_CFG7_OFFSET 0x0008e0 /* gpio_cfg7 */ +#define BL808_GPIO_CFG8_OFFSET 0x0008e4 /* gpio_cfg8 */ +#define BL808_GPIO_CFG9_OFFSET 0x0008e8 /* gpio_cfg9 */ +#define BL808_GPIO_CFG10_OFFSET 0x0008ec /* gpio_cfg10 */ +#define BL808_GPIO_CFG11_OFFSET 0x0008f0 /* gpio_cfg11 */ +#define BL808_GPIO_CFG12_OFFSET 0x0008f4 /* gpio_cfg12 */ +#define BL808_GPIO_CFG13_OFFSET 0x0008f8 /* gpio_cfg13 */ +#define BL808_GPIO_CFG14_OFFSET 0x0008fc /* gpio_cfg14 */ +#define BL808_GPIO_CFG15_OFFSET 0x000900 /* gpio_cfg15 */ +#define BL808_GPIO_CFG16_OFFSET 0x000904 /* gpio_cfg16 */ +#define BL808_GPIO_CFG17_OFFSET 0x000908 /* gpio_cfg17 */ +#define BL808_GPIO_CFG18_OFFSET 0x00090c /* gpio_cfg18 */ +#define BL808_GPIO_CFG19_OFFSET 0x000910 /* gpio_cfg19 */ +#define BL808_GPIO_CFG20_OFFSET 0x000914 /* gpio_cfg20 */ +#define BL808_GPIO_CFG21_OFFSET 0x000918 /* gpio_cfg21 */ +#define BL808_GPIO_CFG22_OFFSET 0x00091c /* gpio_cfg22 */ +#define BL808_GPIO_CFG23_OFFSET 0x000920 /* gpio_cfg23 */ +#define BL808_GPIO_CFG24_OFFSET 0x000924 /* gpio_cfg24 */ +#define BL808_GPIO_CFG25_OFFSET 0x000928 /* gpio_cfg25 */ +#define BL808_GPIO_CFG26_OFFSET 0x00092c /* gpio_cfg26 */ +#define BL808_GPIO_CFG27_OFFSET 0x000930 /* gpio_cfg27 */ +#define BL808_GPIO_CFG28_OFFSET 0x000934 /* gpio_cfg28 */ +#define BL808_GPIO_CFG29_OFFSET 0x000938 /* gpio_cfg29 */ +#define BL808_GPIO_CFG30_OFFSET 0x00093c /* gpio_cfg30 */ +#define BL808_GPIO_CFG31_OFFSET 0x000940 /* gpio_cfg31 */ +#define BL808_GPIO_CFG32_OFFSET 0x000944 /* gpio_cfg32 */ +#define BL808_GPIO_CFG33_OFFSET 0x000948 /* gpio_cfg33 */ +#define BL808_GPIO_CFG34_OFFSET 0x00094c /* gpio_cfg34 */ +#define BL808_GPIO_CFG35_OFFSET 0x000950 /* gpio_cfg35 */ +#define BL808_GPIO_CFG36_OFFSET 0x000954 /* gpio_cfg36 */ +#define BL808_GPIO_CFG37_OFFSET 0x000958 /* gpio_cfg37 */ +#define BL808_GPIO_CFG38_OFFSET 0x00095c /* gpio_cfg38 */ +#define BL808_GPIO_CFG39_OFFSET 0x000960 /* gpio_cfg39 */ +#define BL808_GPIO_CFG40_OFFSET 0x000964 /* gpio_cfg40 */ +#define BL808_GPIO_CFG41_OFFSET 0x000968 /* gpio_cfg41 */ +#define BL808_GPIO_CFG42_OFFSET 0x00096c /* gpio_cfg42 */ +#define BL808_GPIO_CFG43_OFFSET 0x000970 /* gpio_cfg43 */ +#define BL808_GPIO_CFG44_OFFSET 0x000974 /* gpio_cfg44 */ +#define BL808_GPIO_CFG45_OFFSET 0x000978 /* gpio_cfg45 */ + +/* Register definitions *****************************************************/ + +#define BL808_GPIO_CFG0 (BL808_GLB_BASE + BL808_GPIO_CFG0_OFFSET) +#define BL808_GPIO_CFG1 (BL808_GLB_BASE + BL808_GPIO_CFG1_OFFSET) +#define BL808_GPIO_CFG2 (BL808_GLB_BASE + BL808_GPIO_CFG2_OFFSET) +#define BL808_GPIO_CFG3 (BL808_GLB_BASE + BL808_GPIO_CFG3_OFFSET) +#define BL808_GPIO_CFG4 (BL808_GLB_BASE + BL808_GPIO_CFG4_OFFSET) +#define BL808_GPIO_CFG5 (BL808_GLB_BASE + BL808_GPIO_CFG5_OFFSET) +#define BL808_GPIO_CFG6 (BL808_GLB_BASE + BL808_GPIO_CFG6_OFFSET) +#define BL808_GPIO_CFG7 (BL808_GLB_BASE + BL808_GPIO_CFG7_OFFSET) +#define BL808_GPIO_CFG8 (BL808_GLB_BASE + BL808_GPIO_CFG8_OFFSET) +#define BL808_GPIO_CFG9 (BL808_GLB_BASE + BL808_GPIO_CFG9_OFFSET) +#define BL808_GPIO_CFG10 (BL808_GLB_BASE + BL808_GPIO_CFG10_OFFSET) +#define BL808_GPIO_CFG11 (BL808_GLB_BASE + BL808_GPIO_CFG11_OFFSET) +#define BL808_GPIO_CFG12 (BL808_GLB_BASE + BL808_GPIO_CFG12_OFFSET) +#define BL808_GPIO_CFG13 (BL808_GLB_BASE + BL808_GPIO_CFG13_OFFSET) +#define BL808_GPIO_CFG14 (BL808_GLB_BASE + BL808_GPIO_CFG14_OFFSET) +#define BL808_GPIO_CFG15 (BL808_GLB_BASE + BL808_GPIO_CFG15_OFFSET) +#define BL808_GPIO_CFG16 (BL808_GLB_BASE + BL808_GPIO_CFG16_OFFSET) +#define BL808_GPIO_CFG17 (BL808_GLB_BASE + BL808_GPIO_CFG17_OFFSET) +#define BL808_GPIO_CFG18 (BL808_GLB_BASE + BL808_GPIO_CFG18_OFFSET) +#define BL808_GPIO_CFG19 (BL808_GLB_BASE + BL808_GPIO_CFG19_OFFSET) +#define BL808_GPIO_CFG20 (BL808_GLB_BASE + BL808_GPIO_CFG20_OFFSET) +#define BL808_GPIO_CFG21 (BL808_GLB_BASE + BL808_GPIO_CFG21_OFFSET) +#define BL808_GPIO_CFG22 (BL808_GLB_BASE + BL808_GPIO_CFG22_OFFSET) +#define BL808_GPIO_CFG23 (BL808_GLB_BASE + BL808_GPIO_CFG23_OFFSET) +#define BL808_GPIO_CFG24 (BL808_GLB_BASE + BL808_GPIO_CFG24_OFFSET) +#define BL808_GPIO_CFG25 (BL808_GLB_BASE + BL808_GPIO_CFG25_OFFSET) +#define BL808_GPIO_CFG26 (BL808_GLB_BASE + BL808_GPIO_CFG26_OFFSET) +#define BL808_GPIO_CFG27 (BL808_GLB_BASE + BL808_GPIO_CFG27_OFFSET) +#define BL808_GPIO_CFG28 (BL808_GLB_BASE + BL808_GPIO_CFG28_OFFSET) +#define BL808_GPIO_CFG29 (BL808_GLB_BASE + BL808_GPIO_CFG29_OFFSET) +#define BL808_GPIO_CFG30 (BL808_GLB_BASE + BL808_GPIO_CFG30_OFFSET) +#define BL808_GPIO_CFG31 (BL808_GLB_BASE + BL808_GPIO_CFG31_OFFSET) +#define BL808_GPIO_CFG32 (BL808_GLB_BASE + BL808_GPIO_CFG32_OFFSET) +#define BL808_GPIO_CFG33 (BL808_GLB_BASE + BL808_GPIO_CFG33_OFFSET) +#define BL808_GPIO_CFG34 (BL808_GLB_BASE + BL808_GPIO_CFG34_OFFSET) +#define BL808_GPIO_CFG35 (BL808_GLB_BASE + BL808_GPIO_CFG35_OFFSET) +#define BL808_GPIO_CFG36 (BL808_GLB_BASE + BL808_GPIO_CFG36_OFFSET) +#define BL808_GPIO_CFG37 (BL808_GLB_BASE + BL808_GPIO_CFG37_OFFSET) +#define BL808_GPIO_CFG38 (BL808_GLB_BASE + BL808_GPIO_CFG38_OFFSET) +#define BL808_GPIO_CFG39 (BL808_GLB_BASE + BL808_GPIO_CFG39_OFFSET) +#define BL808_GPIO_CFG40 (BL808_GLB_BASE + BL808_GPIO_CFG40_OFFSET) +#define BL808_GPIO_CFG41 (BL808_GLB_BASE + BL808_GPIO_CFG41_OFFSET) +#define BL808_GPIO_CFG42 (BL808_GLB_BASE + BL808_GPIO_CFG42_OFFSET) +#define BL808_GPIO_CFG43 (BL808_GLB_BASE + BL808_GPIO_CFG43_OFFSET) +#define BL808_GPIO_CFG44 (BL808_GLB_BASE + BL808_GPIO_CFG44_OFFSET) +#define BL808_GPIO_CFG45 (BL808_GLB_BASE + BL808_GPIO_CFG45_OFFSET) + +/* Register bit definitions *************************************************/ + +//// Check every bit +#define GPIO_CFGCTL0_GPIO_0_FUNC_SEL_SHIFT (8) +#define GPIO_CFGCTL0_GPIO_0_FUNC_SEL_MASK (0x0f << GPIO_CFGCTL0_GPIO_0_FUNC_SEL_SHIFT) +#define GPIO_CFGCTL0_GPIO_0_OE (1 << 6) +#define GPIO_CFGCTL0_GPIO_0_PD (1 << 5) +#define GPIO_CFGCTL0_GPIO_0_PU (1 << 4) +#define GPIO_CFGCTL0_GPIO_0_DRV_SHIFT (2) +#define GPIO_CFGCTL0_GPIO_0_DRV_MASK (0x03 << GPIO_CFGCTL0_GPIO_0_DRV_SHIFT) +#define GPIO_CFGCTL0_GPIO_0_SMT (1 << 1) +#define GPIO_CFGCTL0_GPIO_0_IE (1 << 0) +//// + +#endif /* __ARCH_RISCV_SRC_BL808_HARDWARE_BL808_GLB_H */ diff --git a/boards/risc-v/bl808/ox64/src/bl808_appinit.c b/boards/risc-v/bl808/ox64/src/bl808_appinit.c index d960bc7f4c5ec..d854d129c8cac 100644 --- a/boards/risc-v/bl808/ox64/src/bl808_appinit.c +++ b/boards/risc-v/bl808/ox64/src/bl808_appinit.c @@ -28,12 +28,14 @@ #include #include #include +#include //// #include #include #include #include #include +#include "bl808_gpio.h" //// /**************************************************************************** * Pre-processor Definitions @@ -164,4 +166,19 @@ void board_late_initialize(void) mount(NULL, "/proc", "procfs", 0, NULL); #endif + + ////TODO + #define GPIO_PIN 29 + #define GPIO_ATTR (GPIO_OUTPUT | GPIO_FUNC_SWGPIO) + + _info("Config GPIO: pin=%d, attr=0x%x\n", GPIO_PIN, GPIO_ATTR); + int ret = bl808_configgpio(GPIO_PIN, GPIO_ATTR); + DEBUGASSERT(ret == OK); + + _info("Set GPIO: pin=%d\n", GPIO_PIN); + bl808_gpiowrite(GPIO_PIN, true); + up_mdelay(1000); + + _info("Clear GPIO: pin=%d\n", GPIO_PIN); + bl808_gpiowrite(GPIO_PIN, false); } diff --git a/hello.S b/hello.S new file mode 100644 index 0000000000000..ce6c5db2b5a91 --- /dev/null +++ b/hello.S @@ -0,0 +1,49801 @@ + +../apps/bin/hello: file format elf64-littleriscv + +SYMBOL TABLE: +0000000000000000 l d .text 0000000000000000 .text +0000000000000e20 l d .rodata 0000000000000000 .rodata +0000000000000f24 l d .data 0000000000000000 .data +0000000000000000 l d .sdata.__dso_handle 0000000000000000 .sdata.__dso_handle +0000000000000008 l d .ctors 0000000000000000 .ctors +0000000000000008 l d .dtors 0000000000000000 .dtors +0000000000000008 l d .bss 0000000000000000 .bss +0000000000000000 l d .comment 0000000000000000 .comment +0000000000000000 l d .riscv.attributes 0000000000000000 .riscv.attributes +0000000000000000 l d .debug_abbrev 0000000000000000 .debug_abbrev +0000000000000000 l d .debug_info 0000000000000000 .debug_info +0000000000000000 l d .debug_line 0000000000000000 .debug_line +0000000000000000 l d .debug_aranges 0000000000000000 .debug_aranges +0000000000000000 l d .debug_loc 0000000000000000 .debug_loc +0000000000000000 l d .debug_ranges 0000000000000000 .debug_ranges +0000000000000000 l d .debug_str 0000000000000000 .debug_str +0000000000000000 l d .debug_frame 0000000000000000 .debug_frame +0000000000000000 l df *ABS* 0000000000000000 crt0.c +0000000000000000 l F .text 000000000000001a sig_trampoline +0000000000000024 l .text 0000000000000000 .L0 +0000000000000000 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000000092 l .debug_str 0000000000000000 .LASF32 +000000000000000e l .debug_str 0000000000000000 .LASF33 +0000000000000242 l .debug_str 0000000000000000 .LASF34 +0000000000000000 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000000000 l .debug_line 0000000000000000 .Ldebug_line0 +000000000000021b l .debug_str 0000000000000000 .LASF0 +0000000000000239 l .debug_str 0000000000000000 .LASF8 +0000000000000142 l .debug_str 0000000000000000 .LASF1 +0000000000000158 l .debug_str 0000000000000000 .LASF2 +0000000000000076 l .debug_str 0000000000000000 .LASF3 +0000000000000184 l .debug_str 0000000000000000 .LASF4 +00000000000001ff l .debug_str 0000000000000000 .LASF5 +0000000000000064 l .debug_str 0000000000000000 .LASF6 +0000000000000191 l .debug_str 0000000000000000 .LASF7 +00000000000001a8 l .debug_str 0000000000000000 .LASF9 +0000000000000009 l .debug_str 0000000000000000 .LASF10 +00000000000001c5 l .debug_str 0000000000000000 .LASF11 +000000000000020f l .debug_str 0000000000000000 .LASF12 +0000000000000208 l .debug_str 0000000000000000 .LASF35 +000000000000005a l .debug_str 0000000000000000 .LASF13 +000000000000001c l .debug_str 0000000000000000 .LASF14 +00000000000001d3 l .debug_str 0000000000000000 .LASF24 +0000000000000000 l .debug_str 0000000000000000 .LASF15 +0000000000000150 l .debug_str 0000000000000000 .LASF16 +0000000000000051 l .debug_str 0000000000000000 .LASF17 +0000000000000089 l .debug_str 0000000000000000 .LASF18 +000000000000017c l .debug_str 0000000000000000 .LASF19 +00000000000001eb l .debug_str 0000000000000000 .LASF20 +00000000000001db l .debug_str 0000000000000000 .LASF21 +0000000000000227 l .debug_str 0000000000000000 .LASF22 +0000000000000162 l .debug_str 0000000000000000 .LASF23 +0000000000000035 l .debug_str 0000000000000000 .LASF25 +000000000000022d l .debug_str 0000000000000000 .LASF26 +00000000000001ba l .debug_str 0000000000000000 .LASF27 +0000000000000047 l .debug_str 0000000000000000 .LASF36 +0000000000000175 l .debug_str 0000000000000000 .LASF37 +000000000000001a l .text 0000000000000000 .LFB15 +000000000000003e l .text 0000000000000000 .LFE15 +00000000000001b5 l .debug_str 0000000000000000 .LASF28 +0000000000000000 l .debug_loc 0000000000000000 .LLST0 +00000000000001fa l .debug_str 0000000000000000 .LASF29 +0000000000000039 l .debug_loc 0000000000000000 .LLST1 +0000000000000072 l .debug_loc 0000000000000000 .LLST2 +0000000000000036 l .text 0000000000000000 .LVL1 +000000000000003e l .text 0000000000000000 .LVL2 +0000000000000026 l .debug_str 0000000000000000 .LASF38 +0000000000000000 l .text 0000000000000000 .LFB14 +000000000000001a l .text 0000000000000000 .LFE14 +00000000000001b0 l .debug_str 0000000000000000 .LASF30 +00000000000001f5 l .debug_str 0000000000000000 .LASF31 +000000000000001a l .text 0000000000000000 .LVL0 +0000000000000000 l .debug_info 0000000000000000 .Ldebug_info0 +0000000000000000 l .text 0000000000000000 .L0 +000000000000001a l .text 0000000000000000 .L0 +0000000000000000 l .text 0000000000000000 .L0 +000000000000001a l .text 0000000000000000 .L0 +000000000000001a l .text 0000000000000000 .L0 +000000000000001a l .text 0000000000000000 .L0 +000000000000001a l .text 0000000000000000 .L0 +000000000000001a l .text 0000000000000000 .L0 +000000000000001c l .text 0000000000000000 .L0 +0000000000000020 l .text 0000000000000000 .L0 +0000000000000022 l .text 0000000000000000 .L0 +000000000000002e l .text 0000000000000000 .L0 +000000000000002e l .text 0000000000000000 .L0 +0000000000000036 l .text 0000000000000000 .L0 +000000000000003e l .text 0000000000000000 .L0 +0000000000000000 l .debug_frame 0000000000000000 .L0 +0000000000000000 l .text 0000000000000000 .L0 +000000000000001a l .text 0000000000000000 .L0 +000000000000001a l .text 0000000000000000 .L0 +000000000000003e l .text 0000000000000000 .L0 +0000000000000022 l .text 0000000000000000 .L0 +000000000000001c l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 hello_main.c +0000000000000e20 l .rodata 0000000000000000 .LC0 +0000000000000040 l .text 0000000000000000 .L0 +0000000000000140 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000000035b l .debug_str 0000000000000000 .LASF14 +0000000000000300 l .debug_str 0000000000000000 .LASF15 +00000000000002d5 l .debug_str 0000000000000000 .LASF16 +0000000000000030 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000000015e l .debug_line 0000000000000000 .Ldebug_line0 +0000000000000334 l .debug_str 0000000000000000 .LASF0 +00000000000002c7 l .debug_str 0000000000000000 .LASF1 +0000000000000351 l .debug_str 0000000000000000 .LASF2 +0000000000000321 l .debug_str 0000000000000000 .LASF3 +0000000000000278 l .debug_str 0000000000000000 .LASF4 +0000000000000313 l .debug_str 0000000000000000 .LASF5 +000000000000029e l .debug_str 0000000000000000 .LASF6 +00000000000002b0 l .debug_str 0000000000000000 .LASF7 +00000000000002fb l .debug_str 0000000000000000 .LASF8 +000000000000026a l .debug_str 0000000000000000 .LASF9 +0000000000000345 l .debug_str 0000000000000000 .LASF10 +000000000000030d l .debug_str 0000000000000000 .LASF11 +000000000000028a l .debug_str 0000000000000000 .LASF17 +000000000000003e l .text 0000000000000000 .LFB4 +000000000000005a l .text 0000000000000000 .LFE4 +000000000000031c l .debug_str 0000000000000000 .LASF12 +0000000000000095 l .debug_loc 0000000000000000 .LLST0 +0000000000000340 l .debug_str 0000000000000000 .LASF13 +00000000000000ce l .debug_loc 0000000000000000 .LLST1 +0000000000000052 l .text 0000000000000000 .LVL2 +0000000000000285 l .debug_str 0000000000000000 .LASF18 +000000000000028f l .debug_str 0000000000000000 .LASF19 +000000000000003e l .text 0000000000000000 .LVL0 +0000000000000048 l .text 0000000000000000 .LVL1 +000000000000026e l .debug_info 0000000000000000 .Ldebug_info0 +000000000000003e l .text 0000000000000000 .L0 +000000000000003e l .text 0000000000000000 .L0 +000000000000003e l .text 0000000000000000 .L0 +0000000000000040 l .text 0000000000000000 .L0 +0000000000000048 l .text 0000000000000000 .L0 +000000000000004a l .text 0000000000000000 .L0 +0000000000000052 l .text 0000000000000000 .L0 +0000000000000052 l .text 0000000000000000 .L0 +000000000000005a l .text 0000000000000000 .L0 +0000000000000048 l .debug_frame 0000000000000000 .L0 +000000000000003e l .text 0000000000000000 .L0 +000000000000005a l .text 0000000000000000 .L0 +000000000000004a l .text 0000000000000000 .L0 +0000000000000040 l .text 0000000000000000 .L0 +0000000000000054 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_puts.c +00000000000000c0 l .text 0000000000000000 .L5 +00000000000000c2 l .text 0000000000000000 .L2 +00000000000001ca l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +00000000000004b2 l .debug_str 0000000000000000 .LASF80 +000000000000078f l .debug_str 0000000000000000 .LASF81 +00000000000005c8 l .debug_str 0000000000000000 .LASF82 +0000000000000050 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +00000000000001e8 l .debug_line 0000000000000000 .Ldebug_line0 +0000000000000695 l .debug_str 0000000000000000 .LASF0 +0000000000000432 l .debug_str 0000000000000000 .LASF2 +0000000000000661 l .debug_str 0000000000000000 .LASF1 +000000000000066f l .debug_str 0000000000000000 .LASF3 +00000000000004a8 l .debug_str 0000000000000000 .LASF4 +00000000000007d5 l .debug_str 0000000000000000 .LASF5 +00000000000006f3 l .debug_str 0000000000000000 .LASF6 +000000000000064e l .debug_str 0000000000000000 .LASF7 +00000000000007ec l .debug_str 0000000000000000 .LASF8 +0000000000000713 l .debug_str 0000000000000000 .LASF9 +00000000000006cc l .debug_str 0000000000000000 .LASF10 +000000000000082b l .debug_str 0000000000000000 .LASF11 +0000000000000477 l .debug_str 0000000000000000 .LASF12 +00000000000006a7 l .debug_str 0000000000000000 .LASF13 +0000000000000571 l .debug_str 0000000000000000 .LASF14 +0000000000000724 l .debug_str 0000000000000000 .LASF15 +00000000000006c3 l .debug_str 0000000000000000 .LASF16 +000000000000071c l .debug_str 0000000000000000 .LASF17 +000000000000044f l .debug_str 0000000000000000 .LASF18 +00000000000004a0 l .debug_str 0000000000000000 .LASF19 +0000000000000789 l .debug_str 0000000000000000 .LASF20 +000000000000062b l .debug_str 0000000000000000 .LASF21 +0000000000000706 l .debug_str 0000000000000000 .LASF22 +0000000000000637 l .debug_str 0000000000000000 .LASF26 +0000000000000631 l .debug_str 0000000000000000 .LASF23 +0000000000000411 l .debug_str 0000000000000000 .LASF24 +000000000000073a l .debug_str 0000000000000000 .LASF25 +000000000000080e l .debug_str 0000000000000000 .LASF27 +000000000000056c l .debug_str 0000000000000000 .LASF28 +00000000000006be l .debug_str 0000000000000000 .LASF29 +00000000000007c5 l .debug_str 0000000000000000 .LASF30 +000000000000058f l .debug_str 0000000000000000 .LASF31 +0000000000000678 l .debug_str 0000000000000000 .LASF32 +00000000000006a1 l .debug_str 0000000000000000 .LASF33 +000000000000047f l .debug_str 0000000000000000 .LASF34 +0000000000000595 l .debug_str 0000000000000000 .LASF35 +000000000000070b l .debug_str 0000000000000000 .LASF36 +00000000000005f2 l .debug_str 0000000000000000 .LASF37 +0000000000000610 l .debug_str 0000000000000000 .LASF38 +0000000000000819 l .debug_str 0000000000000000 .LASF39 +00000000000006ed l .debug_str 0000000000000000 .LASF40 +00000000000007a0 l .debug_str 0000000000000000 .LASF41 +0000000000000822 l .debug_str 0000000000000000 .LASF42 +00000000000005ba l .debug_str 0000000000000000 .LASF43 +0000000000000642 l .debug_str 0000000000000000 .LASF44 +000000000000072c l .debug_str 0000000000000000 .LASF45 +00000000000005f9 l .debug_str 0000000000000000 .LASF46 +000000000000045f l .debug_str 0000000000000000 .LASF47 +0000000000000768 l .debug_str 0000000000000000 .LASF48 +0000000000000488 l .debug_str 0000000000000000 .LASF49 +0000000000000579 l .debug_str 0000000000000000 .LASF50 +00000000000005b5 l .debug_str 0000000000000000 .LASF51 +00000000000007a6 l .debug_str 0000000000000000 .LASF52 +00000000000007b8 l .debug_str 0000000000000000 .LASF53 +000000000000040b l .debug_str 0000000000000000 .LASF54 +0000000000000618 l .debug_str 0000000000000000 .LASF55 +0000000000000732 l .debug_str 0000000000000000 .LASF56 +00000000000007bd l .debug_str 0000000000000000 .LASF57 +000000000000074f l .debug_str 0000000000000000 .LASF58 +0000000000000745 l .debug_str 0000000000000000 .LASF59 +00000000000007ac l .debug_str 0000000000000000 .LASF60 +0000000000000562 l .debug_str 0000000000000000 .LASF61 +00000000000005a6 l .debug_str 0000000000000000 .LASF62 +000000000000059b l .debug_str 0000000000000000 .LASF63 +000000000000077f l .debug_str 0000000000000000 .LASF64 +00000000000006de l .debug_str 0000000000000000 .LASF65 +0000000000000805 l .debug_str 0000000000000000 .LASF66 +00000000000007df l .debug_str 0000000000000000 .LASF67 +0000000000000426 l .debug_str 0000000000000000 .LASF68 +00000000000005b0 l .debug_str 0000000000000000 .LASF69 +00000000000006e8 l .debug_str 0000000000000000 .LASF83 +000000000000005a l .text 0000000000000000 .LFB4 +00000000000000e0 l .text 0000000000000000 .LFE4 +0000000000000107 l .debug_loc 0000000000000000 .LLST0 +0000000000000624 l .debug_str 0000000000000000 .LASF70 +0000000000000153 l .debug_loc 0000000000000000 .LLST1 +0000000000000456 l .debug_str 0000000000000000 .LASF71 +0000000000000176 l .debug_loc 0000000000000000 .LLST2 +00000000000007d0 l .debug_str 0000000000000000 .LASF72 +0000000000000199 l .debug_loc 0000000000000000 .LLST3 +00000000000001d1 l .debug_loc 0000000000000000 .LLST4 +0000000000000088 l .text 0000000000000000 .LBB2 +00000000000000c0 l .text 0000000000000000 .LBE2 +00000000000005ea l .debug_str 0000000000000000 .LASF73 +00000000000000a0 l .text 0000000000000000 .LVL8 +00000000000000ba l .text 0000000000000000 .LVL11 +000000000000006e l .text 0000000000000000 .LVL2 +0000000000000078 l .text 0000000000000000 .LVL4 +0000000000000084 l .text 0000000000000000 .LVL5 +00000000000000cc l .text 0000000000000000 .LVL14 +00000000000000d4 l .text 0000000000000000 .LVL15 +0000000000000681 l .debug_str 0000000000000000 .LASF74 +000000000000043b l .debug_str 0000000000000000 .LASF75 +0000000000000417 l .debug_str 0000000000000000 .LASF76 +0000000000000657 l .debug_str 0000000000000000 .LASF77 +0000000000000759 l .debug_str 0000000000000000 .LASF78 +00000000000007f9 l .debug_str 0000000000000000 .LASF79 +000000000000005a l .text 0000000000000000 .LVL0 +0000000000000062 l .text 0000000000000000 .LVL1 +000000000000008c l .text 0000000000000000 .LVL6 +0000000000000070 l .text 0000000000000000 .LVL3 +00000000000000dc l .text 0000000000000000 .LVL17 +0000000000000094 l .text 0000000000000000 .LVL7 +00000000000000ac l .text 0000000000000000 .LVL9 +00000000000000c2 l .text 0000000000000000 .LVL13 +00000000000000da l .text 0000000000000000 .LVL16 +00000000000000b2 l .text 0000000000000000 .LVL10 +00000000000000c0 l .text 0000000000000000 .LVL12 +0000000000000368 l .debug_info 0000000000000000 .Ldebug_info0 +000000000000005a l .text 0000000000000000 .L0 +000000000000005a l .text 0000000000000000 .L0 +000000000000005a l .text 0000000000000000 .L0 +0000000000000060 l .text 0000000000000000 .L0 +0000000000000062 l .text 0000000000000000 .L0 +0000000000000066 l .text 0000000000000000 .L0 +0000000000000070 l .text 0000000000000000 .L0 +0000000000000070 l .text 0000000000000000 .L0 +0000000000000070 l .text 0000000000000000 .L0 +0000000000000070 l .text 0000000000000000 .L0 +0000000000000078 l .text 0000000000000000 .L0 +0000000000000078 l .text 0000000000000000 .L0 +0000000000000084 l .text 0000000000000000 .L0 +0000000000000084 l .text 0000000000000000 .L0 +0000000000000088 l .text 0000000000000000 .L0 +000000000000008c l .text 0000000000000000 .L0 +000000000000008c l .text 0000000000000000 .L0 +0000000000000094 l .text 0000000000000000 .L0 +0000000000000098 l .text 0000000000000000 .L0 +0000000000000098 l .text 0000000000000000 .L0 +00000000000000a0 l .text 0000000000000000 .L0 +00000000000000a0 l .text 0000000000000000 .L0 +00000000000000a6 l .text 0000000000000000 .L0 +00000000000000a6 l .text 0000000000000000 .L0 +00000000000000aa l .text 0000000000000000 .L0 +00000000000000ac l .text 0000000000000000 .L0 +00000000000000ac l .text 0000000000000000 .L0 +00000000000000b0 l .text 0000000000000000 .L0 +00000000000000b0 l .text 0000000000000000 .L0 +00000000000000ba l .text 0000000000000000 .L0 +00000000000000ba l .text 0000000000000000 .L0 +00000000000000c0 l .text 0000000000000000 .L0 +00000000000000c2 l .text 0000000000000000 .L0 +00000000000000c2 l .text 0000000000000000 .L0 +00000000000000cc l .text 0000000000000000 .L0 +00000000000000d4 l .text 0000000000000000 .L0 +00000000000000d4 l .text 0000000000000000 .L0 +00000000000000e0 l .text 0000000000000000 .L0 +0000000000000080 l .debug_frame 0000000000000000 .L0 +000000000000005a l .text 0000000000000000 .L0 +00000000000000e0 l .text 0000000000000000 .L0 +00000000000000d6 l .text 0000000000000000 .L0 +0000000000000066 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_libfwrite.c +000000000000010e l .text 0000000000000000 .L2 +0000000000000134 l .text 0000000000000000 .L4 +00000000000000fe l .text 0000000000000000 .L1 +000000000000015a l .text 0000000000000000 .L6 +000000000000014e l .text 0000000000000000 .L7 +0000000000000124 l .text 0000000000000000 .L9 +0000000000000148 l .text 0000000000000000 .L8 +000000000000017e l .text 0000000000000000 .L10 +00000000000001c0 l .text 0000000000000000 .L19 +0000000000000184 l .text 0000000000000000 .L12 +00000000000001ae l .text 0000000000000000 .L13 +00000000000001ea l .text 0000000000000000 .L24 +00000000000001c2 l .text 0000000000000000 .L11 +00000000000001a2 l .text 0000000000000000 .L15 +00000000000001de l .text 0000000000000000 .L16 +0000000000000126 l .text 0000000000000000 .L5 +00000000000001ce l .text 0000000000000000 .L17 +00000000000001d4 l .text 0000000000000000 .L18 +0000000000000358 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +00000000000008fe l .debug_str 0000000000000000 .LASF84 +0000000000000ae2 l .debug_str 0000000000000000 .LASF85 +0000000000000a25 l .debug_str 0000000000000000 .LASF86 +0000000000000070 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +00000000000004cd l .debug_line 0000000000000000 .Ldebug_line0 +0000000000000a01 l .debug_str 0000000000000000 .LASF0 +000000000000086a l .debug_str 0000000000000000 .LASF2 +0000000000000acb l .debug_str 0000000000000000 .LASF1 +0000000000000ad9 l .debug_str 0000000000000000 .LASF3 +00000000000008f4 l .debug_str 0000000000000000 .LASF4 +0000000000000c46 l .debug_str 0000000000000000 .LASF5 +0000000000000b71 l .debug_str 0000000000000000 .LASF6 +0000000000000ab8 l .debug_str 0000000000000000 .LASF7 +0000000000000c5d l .debug_str 0000000000000000 .LASF8 +0000000000000b91 l .debug_str 0000000000000000 .LASF9 +0000000000000b49 l .debug_str 0000000000000000 .LASF10 +0000000000000c9f l .debug_str 0000000000000000 .LASF11 +0000000000000c14 l .debug_str 0000000000000000 .LASF12 +0000000000000b24 l .debug_str 0000000000000000 .LASF13 +00000000000009b8 l .debug_str 0000000000000000 .LASF14 +0000000000000ba2 l .debug_str 0000000000000000 .LASF15 +0000000000000b40 l .debug_str 0000000000000000 .LASF16 +0000000000000b9a l .debug_str 0000000000000000 .LASF17 +00000000000008a3 l .debug_str 0000000000000000 .LASF18 +00000000000009d6 l .debug_str 0000000000000000 .LASF19 +000000000000089c l .debug_str 0000000000000000 .LASF20 +00000000000008ec l .debug_str 0000000000000000 .LASF21 +0000000000000bee l .debug_str 0000000000000000 .LASF22 +0000000000000c08 l .debug_str 0000000000000000 .LASF23 +0000000000000b84 l .debug_str 0000000000000000 .LASF24 +0000000000000a8b l .debug_str 0000000000000000 .LASF25 +0000000000000aa1 l .debug_str 0000000000000000 .LASF29 +0000000000000a91 l .debug_str 0000000000000000 .LASF26 +0000000000000852 l .debug_str 0000000000000000 .LASF27 +0000000000000bb8 l .debug_str 0000000000000000 .LASF28 +0000000000000c1c l .debug_str 0000000000000000 .LASF30 +00000000000009b3 l .debug_str 0000000000000000 .LASF31 +0000000000000b3b l .debug_str 0000000000000000 .LASF32 +0000000000000c2f l .debug_str 0000000000000000 .LASF33 +00000000000009e0 l .debug_str 0000000000000000 .LASF34 +0000000000000af8 l .debug_str 0000000000000000 .LASF35 +0000000000000b1e l .debug_str 0000000000000000 .LASF36 +00000000000008cb l .debug_str 0000000000000000 .LASF37 +00000000000009e6 l .debug_str 0000000000000000 .LASF38 +0000000000000b89 l .debug_str 0000000000000000 .LASF39 +0000000000000a47 l .debug_str 0000000000000000 .LASF40 +0000000000000a65 l .debug_str 0000000000000000 .LASF41 +0000000000000b15 l .debug_str 0000000000000000 .LASF42 +0000000000000b65 l .debug_str 0000000000000000 .LASF43 +0000000000000c0e l .debug_str 0000000000000000 .LASF44 +0000000000000c96 l .debug_str 0000000000000000 .LASF45 +0000000000000a17 l .debug_str 0000000000000000 .LASF46 +0000000000000aac l .debug_str 0000000000000000 .LASF47 +0000000000000baa l .debug_str 0000000000000000 .LASF48 +0000000000000a4e l .debug_str 0000000000000000 .LASF49 +00000000000008ac l .debug_str 0000000000000000 .LASF50 +0000000000000bcd l .debug_str 0000000000000000 .LASF51 +00000000000008d4 l .debug_str 0000000000000000 .LASF52 +00000000000009c0 l .debug_str 0000000000000000 .LASF53 +0000000000000a12 l .debug_str 0000000000000000 .LASF54 +0000000000000858 l .debug_str 0000000000000000 .LASF55 +00000000000009ae l .debug_str 0000000000000000 .LASF56 +000000000000083b l .debug_str 0000000000000000 .LASF57 +0000000000000a6d l .debug_str 0000000000000000 .LASF58 +0000000000000bb0 l .debug_str 0000000000000000 .LASF59 +0000000000000c27 l .debug_str 0000000000000000 .LASF60 +0000000000000bc3 l .debug_str 0000000000000000 .LASF61 +0000000000000bfe l .debug_str 0000000000000000 .LASF62 +0000000000000c3a l .debug_str 0000000000000000 .LASF63 +0000000000000a97 l .debug_str 0000000000000000 .LASF64 +00000000000009f7 l .debug_str 0000000000000000 .LASF65 +00000000000009ec l .debug_str 0000000000000000 .LASF66 +0000000000000be4 l .debug_str 0000000000000000 .LASF67 +0000000000000b5b l .debug_str 0000000000000000 .LASF68 +0000000000000c76 l .debug_str 0000000000000000 .LASF69 +0000000000000c50 l .debug_str 0000000000000000 .LASF70 +000000000000085e l .debug_str 0000000000000000 .LASF71 +0000000000000a0d l .debug_str 0000000000000000 .LASF72 +0000000000000a80 l .debug_str 0000000000000000 .LASF74 +000000000000020a l .text 0000000000000000 .LFB5 +0000000000000248 l .text 0000000000000000 .LFE5 +0000000000000207 l .debug_loc 0000000000000000 .LLST8 +0000000000000253 l .debug_loc 0000000000000000 .LLST9 +0000000000000a79 l .debug_str 0000000000000000 .LASF73 +000000000000029e l .debug_loc 0000000000000000 .LLST10 +00000000000002ea l .debug_loc 0000000000000000 .LLST11 +0000000000000222 l .text 0000000000000000 .LVL39 +0000000000000230 l .text 0000000000000000 .LVL40 +000000000000023c l .text 0000000000000000 .LVL42 +0000000000000b01 l .debug_str 0000000000000000 .LASF75 +00000000000000e0 l .text 0000000000000000 .LFB4 +000000000000020a l .text 0000000000000000 .LFE4 +0000000000000320 l .debug_loc 0000000000000000 .LLST0 +000000000000041a l .debug_loc 0000000000000000 .LLST1 +0000000000000599 l .debug_loc 0000000000000000 .LLST2 +0000000000000b6b l .debug_str 0000000000000000 .LASF76 +00000000000005f8 l .debug_loc 0000000000000000 .LLST3 +00000000000006f2 l .debug_loc 0000000000000000 .LLST4 +000000000000084b l .debug_loc 0000000000000000 .LLST5 +0000000000000bf4 l .debug_str 0000000000000000 .LASF77 +000000000000094d l .debug_loc 0000000000000000 .LLST6 +0000000000000834 l .debug_str 0000000000000000 .LASF87 +00000000000001d8 l .text 0000000000000000 .LDL1 +00000000000001ae l .text 0000000000000000 .LBB2 +00000000000001c2 l .text 0000000000000000 .LBE2 +0000000000000c7f l .debug_str 0000000000000000 .LASF78 +0000000000000983 l .debug_loc 0000000000000000 .LLST7 +00000000000001b8 l .text 0000000000000000 .LVL22 +00000000000000f8 l .text 0000000000000000 .LVL1 +0000000000000120 l .text 0000000000000000 .LVL5 +0000000000000148 l .text 0000000000000000 .LVL11 +0000000000000158 l .text 0000000000000000 .LVL13 +0000000000000164 l .text 0000000000000000 .LVL16 +0000000000000190 l .text 0000000000000000 .LVL19 +00000000000001ce l .text 0000000000000000 .LVL26 +00000000000001e8 l .text 0000000000000000 .LVL31 +00000000000001fc l .text 0000000000000000 .LVL33 +0000000000000ac1 l .debug_str 0000000000000000 .LASF79 +0000000000000c6a l .debug_str 0000000000000000 .LASF80 +0000000000000888 l .debug_str 0000000000000000 .LASF81 +0000000000000c8e l .debug_str 0000000000000000 .LASF82 +0000000000000873 l .debug_str 0000000000000000 .LASF83 +00000000000008c4 l .debug_str 0000000000000000 .LASF88 +0000000000000841 l .debug_str 0000000000000000 .LASF89 +000000000000020a l .text 0000000000000000 .LVL37 +0000000000000212 l .text 0000000000000000 .LVL38 +0000000000000232 l .text 0000000000000000 .LVL41 +0000000000000246 l .text 0000000000000000 .LVL45 +0000000000000240 l .text 0000000000000000 .LVL43 +0000000000000244 l .text 0000000000000000 .LVL44 +00000000000000e0 l .text 0000000000000000 .LVL0 +000000000000010e l .text 0000000000000000 .LVL3 +0000000000000134 l .text 0000000000000000 .LVL7 +0000000000000140 l .text 0000000000000000 .LVL8 +0000000000000146 l .text 0000000000000000 .LVL10 +000000000000014e l .text 0000000000000000 .LVL12 +000000000000015a l .text 0000000000000000 .LVL14 +000000000000015c l .text 0000000000000000 .LVL15 +00000000000000fe l .text 0000000000000000 .LVL2 +0000000000000124 l .text 0000000000000000 .LVL6 +0000000000000144 l .text 0000000000000000 .LVL9 +0000000000000198 l .text 0000000000000000 .LVL20 +00000000000001c0 l .text 0000000000000000 .LVL23 +00000000000001cc l .text 0000000000000000 .LVL25 +00000000000001d4 l .text 0000000000000000 .LVL28 +00000000000001de l .text 0000000000000000 .LVL30 +00000000000001ea l .text 0000000000000000 .LVL32 +0000000000000204 l .text 0000000000000000 .LVL35 +0000000000000118 l .text 0000000000000000 .LVL4 +000000000000019e l .text 0000000000000000 .LVL21 +00000000000001c2 l .text 0000000000000000 .LVL24 +00000000000001d0 l .text 0000000000000000 .LVL27 +0000000000000202 l .text 0000000000000000 .LVL34 +0000000000000208 l .text 0000000000000000 .LVL36 +00000000000001d8 l .text 0000000000000000 .LVL29 +0000000000000172 l .text 0000000000000000 .LVL17 +0000000000000955 l .debug_info 0000000000000000 .Ldebug_info0 +00000000000000e0 l .text 0000000000000000 .L0 +000000000000020a l .text 0000000000000000 .L0 +00000000000000e0 l .text 0000000000000000 .L0 +00000000000000e0 l .text 0000000000000000 .L0 +00000000000000e0 l .text 0000000000000000 .L0 +00000000000000e0 l .text 0000000000000000 .L0 +00000000000000e0 l .text 0000000000000000 .L0 +00000000000000e0 l .text 0000000000000000 .L0 +00000000000000ee l .text 0000000000000000 .L0 +00000000000000f0 l .text 0000000000000000 .L0 +00000000000000f0 l .text 0000000000000000 .L0 +00000000000000fc l .text 0000000000000000 .L0 +00000000000000fc l .text 0000000000000000 .L0 +00000000000000fc l .text 0000000000000000 .L0 +00000000000000fe l .text 0000000000000000 .L0 +000000000000010e l .text 0000000000000000 .L0 +0000000000000114 l .text 0000000000000000 .L0 +0000000000000114 l .text 0000000000000000 .L0 +0000000000000118 l .text 0000000000000000 .L0 +0000000000000118 l .text 0000000000000000 .L0 +0000000000000124 l .text 0000000000000000 .L0 +0000000000000124 l .text 0000000000000000 .L0 +0000000000000124 l .text 0000000000000000 .L0 +0000000000000124 l .text 0000000000000000 .L0 +0000000000000126 l .text 0000000000000000 .L0 +0000000000000126 l .text 0000000000000000 .L0 +0000000000000134 l .text 0000000000000000 .L0 +000000000000013a l .text 0000000000000000 .L0 +000000000000013a l .text 0000000000000000 .L0 +000000000000013c l .text 0000000000000000 .L0 +000000000000013c l .text 0000000000000000 .L0 +000000000000013e l .text 0000000000000000 .L0 +0000000000000144 l .text 0000000000000000 .L0 +0000000000000146 l .text 0000000000000000 .L0 +0000000000000146 l .text 0000000000000000 .L0 +0000000000000148 l .text 0000000000000000 .L0 +0000000000000148 l .text 0000000000000000 .L0 +000000000000014e l .text 0000000000000000 .L0 +000000000000014e l .text 0000000000000000 .L0 +000000000000015a l .text 0000000000000000 .L0 +000000000000015a l .text 0000000000000000 .L0 +0000000000000164 l .text 0000000000000000 .L0 +0000000000000168 l .text 0000000000000000 .L0 +0000000000000168 l .text 0000000000000000 .L0 +000000000000016a l .text 0000000000000000 .L0 +000000000000016c l .text 0000000000000000 .L0 +0000000000000170 l .text 0000000000000000 .L0 +0000000000000172 l .text 0000000000000000 .L0 +0000000000000172 l .text 0000000000000000 .L0 +0000000000000176 l .text 0000000000000000 .L0 +000000000000017e l .text 0000000000000000 .L0 +0000000000000184 l .text 0000000000000000 .L0 +0000000000000184 l .text 0000000000000000 .L0 +0000000000000190 l .text 0000000000000000 .L0 +0000000000000192 l .text 0000000000000000 .L0 +0000000000000194 l .text 0000000000000000 .L0 +0000000000000198 l .text 0000000000000000 .L0 +0000000000000198 l .text 0000000000000000 .L0 +0000000000000198 l .text 0000000000000000 .L0 +000000000000019c l .text 0000000000000000 .L0 +000000000000019c l .text 0000000000000000 .L0 +000000000000019e l .text 0000000000000000 .L0 +000000000000019e l .text 0000000000000000 .L0 +00000000000001a2 l .text 0000000000000000 .L0 +00000000000001a2 l .text 0000000000000000 .L0 +00000000000001ae l .text 0000000000000000 .L0 +00000000000001ae l .text 0000000000000000 .L0 +00000000000001b8 l .text 0000000000000000 .L0 +00000000000001b8 l .text 0000000000000000 .L0 +00000000000001c2 l .text 0000000000000000 .L0 +00000000000001c2 l .text 0000000000000000 .L0 +00000000000001c4 l .text 0000000000000000 .L0 +00000000000001ca l .text 0000000000000000 .L0 +00000000000001cc l .text 0000000000000000 .L0 +00000000000001cc l .text 0000000000000000 .L0 +00000000000001ce l .text 0000000000000000 .L0 +00000000000001ce l .text 0000000000000000 .L0 +00000000000001d0 l .text 0000000000000000 .L0 +00000000000001d4 l .text 0000000000000000 .L0 +00000000000001d4 l .text 0000000000000000 .L0 +00000000000001d8 l .text 0000000000000000 .L0 +00000000000001d8 l .text 0000000000000000 .L0 +00000000000001de l .text 0000000000000000 .L0 +00000000000001de l .text 0000000000000000 .L0 +00000000000001ea l .text 0000000000000000 .L0 +00000000000001ea l .text 0000000000000000 .L0 +00000000000001ee l .text 0000000000000000 .L0 +00000000000001fc l .text 0000000000000000 .L0 +00000000000001fc l .text 0000000000000000 .L0 +00000000000001fe l .text 0000000000000000 .L0 +0000000000000202 l .text 0000000000000000 .L0 +0000000000000208 l .text 0000000000000000 .L0 +000000000000020a l .text 0000000000000000 .L0 +000000000000020a l .text 0000000000000000 .L0 +000000000000020a l .text 0000000000000000 .L0 +000000000000020a l .text 0000000000000000 .L0 +0000000000000210 l .text 0000000000000000 .L0 +0000000000000212 l .text 0000000000000000 .L0 +0000000000000216 l .text 0000000000000000 .L0 +000000000000021a l .text 0000000000000000 .L0 +0000000000000222 l .text 0000000000000000 .L0 +0000000000000222 l .text 0000000000000000 .L0 +0000000000000232 l .text 0000000000000000 .L0 +000000000000023c l .text 0000000000000000 .L0 +000000000000023c l .text 0000000000000000 .L0 +0000000000000248 l .text 0000000000000000 .L0 +00000000000000c0 l .debug_frame 0000000000000000 .L0 +00000000000000e0 l .text 0000000000000000 .L0 +000000000000020a l .text 0000000000000000 .L0 +000000000000020a l .text 0000000000000000 .L0 +0000000000000248 l .text 0000000000000000 .L0 +0000000000000100 l .text 0000000000000000 .L0 +00000000000000ee l .text 0000000000000000 .L0 +000000000000023e l .text 0000000000000000 .L0 +0000000000000216 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_libfflush.c +00000000000002cc l .text 0000000000000000 .L8 +00000000000002a0 l .text 0000000000000000 .L1 +00000000000002c4 l .text 0000000000000000 .L3 +00000000000002ac l .text 0000000000000000 .L4 +00000000000002b8 l .text 0000000000000000 .L6 +0000000000000282 l .text 0000000000000000 .L5 +0000000000000276 l .text 0000000000000000 .L7 +000000000000054e l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000000d3e l .debug_str 0000000000000000 .LASF78 +0000000000000ecc l .debug_str 0000000000000000 .LASF79 +0000000000000e6b l .debug_str 0000000000000000 .LASF80 +00000000000000a0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +00000000000009e8 l .debug_line 0000000000000000 .Ldebug_line0 +0000000000000e47 l .debug_str 0000000000000000 .LASF0 +0000000000000cc6 l .debug_str 0000000000000000 .LASF2 +0000000000000f1a l .debug_str 0000000000000000 .LASF1 +0000000000000f28 l .debug_str 0000000000000000 .LASF3 +0000000000000d34 l .debug_str 0000000000000000 .LASF4 +000000000000105d l .debug_str 0000000000000000 .LASF5 +0000000000000f90 l .debug_str 0000000000000000 .LASF6 +0000000000000f07 l .debug_str 0000000000000000 .LASF7 +0000000000001074 l .debug_str 0000000000000000 .LASF8 +0000000000000fb0 l .debug_str 0000000000000000 .LASF9 +0000000000000f6e l .debug_str 0000000000000000 .LASF10 +00000000000010b2 l .debug_str 0000000000000000 .LASF11 +0000000000001031 l .debug_str 0000000000000000 .LASF12 +0000000000000f49 l .debug_str 0000000000000000 .LASF13 +0000000000000dfd l .debug_str 0000000000000000 .LASF14 +0000000000000fc1 l .debug_str 0000000000000000 .LASF15 +0000000000000f65 l .debug_str 0000000000000000 .LASF16 +0000000000000fb9 l .debug_str 0000000000000000 .LASF17 +0000000000000cea l .debug_str 0000000000000000 .LASF18 +0000000000000ce3 l .debug_str 0000000000000000 .LASF19 +0000000000000d2c l .debug_str 0000000000000000 .LASF20 +000000000000101b l .debug_str 0000000000000000 .LASF21 +0000000000000ec6 l .debug_str 0000000000000000 .LASF22 +0000000000000fa3 l .debug_str 0000000000000000 .LASF23 +0000000000000ef0 l .debug_str 0000000000000000 .LASF27 +0000000000000eea l .debug_str 0000000000000000 .LASF24 +0000000000000cae l .debug_str 0000000000000000 .LASF25 +0000000000000fd7 l .debug_str 0000000000000000 .LASF26 +0000000000001096 l .debug_str 0000000000000000 .LASF28 +0000000000000df8 l .debug_str 0000000000000000 .LASF29 +0000000000000f60 l .debug_str 0000000000000000 .LASF30 +0000000000001046 l .debug_str 0000000000000000 .LASF31 +0000000000000e26 l .debug_str 0000000000000000 .LASF32 +0000000000000f31 l .debug_str 0000000000000000 .LASF33 +0000000000000f43 l .debug_str 0000000000000000 .LASF34 +0000000000000d0b l .debug_str 0000000000000000 .LASF35 +0000000000000e2c l .debug_str 0000000000000000 .LASF36 +0000000000000fa8 l .debug_str 0000000000000000 .LASF37 +0000000000000e8d l .debug_str 0000000000000000 .LASF38 +0000000000000eab l .debug_str 0000000000000000 .LASF39 +0000000000000f3a l .debug_str 0000000000000000 .LASF40 +0000000000000f8a l .debug_str 0000000000000000 .LASF41 +000000000000102b l .debug_str 0000000000000000 .LASF42 +00000000000010a9 l .debug_str 0000000000000000 .LASF43 +0000000000000e5d l .debug_str 0000000000000000 .LASF44 +0000000000000efb l .debug_str 0000000000000000 .LASF45 +0000000000000fc9 l .debug_str 0000000000000000 .LASF46 +0000000000000e94 l .debug_str 0000000000000000 .LASF47 +0000000000000cf3 l .debug_str 0000000000000000 .LASF48 +0000000000000ffa l .debug_str 0000000000000000 .LASF49 +0000000000000d14 l .debug_str 0000000000000000 .LASF50 +0000000000000e10 l .debug_str 0000000000000000 .LASF51 +0000000000000e58 l .debug_str 0000000000000000 .LASF52 +0000000000000cb4 l .debug_str 0000000000000000 .LASF53 +0000000000001039 l .debug_str 0000000000000000 .LASF54 +0000000000000ca8 l .debug_str 0000000000000000 .LASF55 +0000000000000eb3 l .debug_str 0000000000000000 .LASF56 +0000000000000fcf l .debug_str 0000000000000000 .LASF57 +000000000000103e l .debug_str 0000000000000000 .LASF58 +0000000000000ff0 l .debug_str 0000000000000000 .LASF59 +0000000000001021 l .debug_str 0000000000000000 .LASF60 +0000000000001051 l .debug_str 0000000000000000 .LASF61 +0000000000000dee l .debug_str 0000000000000000 .LASF62 +0000000000000e3d l .debug_str 0000000000000000 .LASF63 +0000000000000e32 l .debug_str 0000000000000000 .LASF64 +0000000000001011 l .debug_str 0000000000000000 .LASF65 +0000000000000f80 l .debug_str 0000000000000000 .LASF66 +000000000000108d l .debug_str 0000000000000000 .LASF67 +0000000000001067 l .debug_str 0000000000000000 .LASF68 +0000000000000cba l .debug_str 0000000000000000 .LASF69 +0000000000000e53 l .debug_str 0000000000000000 .LASF70 +0000000000000e05 l .debug_str 0000000000000000 .LASF71 +00000000000002d0 l .text 0000000000000000 .LFB5 +0000000000000304 l .text 0000000000000000 .LFE5 +0000000000000ebf l .debug_str 0000000000000000 .LASF73 +00000000000009a6 l .debug_loc 0000000000000000 .LLST3 +00000000000009f2 l .debug_loc 0000000000000000 .LLST4 +00000000000002e2 l .text 0000000000000000 .LVL16 +00000000000002ec l .text 0000000000000000 .LVL17 +00000000000002f8 l .text 0000000000000000 .LVL19 +0000000000000ccf l .debug_str 0000000000000000 .LASF72 +0000000000000248 l .text 0000000000000000 .LFB4 +00000000000002d0 l .text 0000000000000000 .LFE4 +0000000000000a28 l .debug_loc 0000000000000000 .LLST0 +0000000000000ab0 l .debug_loc 0000000000000000 .LLST1 +0000000000000fe2 l .debug_str 0000000000000000 .LASF74 +0000000000000b4a l .debug_loc 0000000000000000 .LLST2 +0000000000000ee2 l .debug_str 0000000000000000 .LASF81 +0000000000000282 l .text 0000000000000000 .LVL4 +000000000000029a l .text 0000000000000000 .LVL5 +00000000000002b6 l .text 0000000000000000 .LVL9 +0000000000000f10 l .debug_str 0000000000000000 .LASF75 +0000000000001081 l .debug_str 0000000000000000 .LASF76 +00000000000010a1 l .debug_str 0000000000000000 .LASF77 +00000000000002d0 l .text 0000000000000000 .LVL15 +00000000000002fc l .text 0000000000000000 .LVL20 +00000000000002ee l .text 0000000000000000 .LVL18 +0000000000000300 l .text 0000000000000000 .LVL21 +0000000000000248 l .text 0000000000000000 .LVL0 +0000000000000262 l .text 0000000000000000 .LVL1 +00000000000002a4 l .text 0000000000000000 .LVL7 +00000000000002ac l .text 0000000000000000 .LVL8 +00000000000002cc l .text 0000000000000000 .LVL13 +00000000000002ce l .text 0000000000000000 .LVL14 +0000000000000276 l .text 0000000000000000 .LVL2 +0000000000000280 l .text 0000000000000000 .LVL3 +00000000000002a0 l .text 0000000000000000 .LVL6 +00000000000002b8 l .text 0000000000000000 .LVL10 +00000000000002bc l .text 0000000000000000 .LVL11 +00000000000002c4 l .text 0000000000000000 .LVL12 +0000000000001094 l .debug_info 0000000000000000 .Ldebug_info0 +0000000000000248 l .text 0000000000000000 .L0 +00000000000002d0 l .text 0000000000000000 .L0 +0000000000000248 l .text 0000000000000000 .L0 +0000000000000248 l .text 0000000000000000 .L0 +0000000000000248 l .text 0000000000000000 .L0 +0000000000000248 l .text 0000000000000000 .L0 +0000000000000248 l .text 0000000000000000 .L0 +0000000000000250 l .text 0000000000000000 .L0 +000000000000025a l .text 0000000000000000 .L0 +0000000000000260 l .text 0000000000000000 .L0 +0000000000000260 l .text 0000000000000000 .L0 +0000000000000262 l .text 0000000000000000 .L0 +0000000000000266 l .text 0000000000000000 .L0 +0000000000000266 l .text 0000000000000000 .L0 +0000000000000268 l .text 0000000000000000 .L0 +000000000000026c l .text 0000000000000000 .L0 +000000000000026c l .text 0000000000000000 .L0 +0000000000000272 l .text 0000000000000000 .L0 +0000000000000272 l .text 0000000000000000 .L0 +0000000000000276 l .text 0000000000000000 .L0 +0000000000000276 l .text 0000000000000000 .L0 +0000000000000276 l .text 0000000000000000 .L0 +0000000000000276 l .text 0000000000000000 .L0 +0000000000000278 l .text 0000000000000000 .L0 +000000000000027e l .text 0000000000000000 .L0 +0000000000000280 l .text 0000000000000000 .L0 +0000000000000280 l .text 0000000000000000 .L0 +0000000000000282 l .text 0000000000000000 .L0 +0000000000000282 l .text 0000000000000000 .L0 +0000000000000286 l .text 0000000000000000 .L0 +0000000000000286 l .text 0000000000000000 .L0 +0000000000000292 l .text 0000000000000000 .L0 +0000000000000292 l .text 0000000000000000 .L0 +00000000000002a0 l .text 0000000000000000 .L0 +00000000000002ac l .text 0000000000000000 .L0 +00000000000002ac l .text 0000000000000000 .L0 +00000000000002b8 l .text 0000000000000000 .L0 +00000000000002b8 l .text 0000000000000000 .L0 +00000000000002ba l .text 0000000000000000 .L0 +00000000000002bc l .text 0000000000000000 .L0 +00000000000002bc l .text 0000000000000000 .L0 +00000000000002bc l .text 0000000000000000 .L0 +00000000000002c0 l .text 0000000000000000 .L0 +00000000000002c0 l .text 0000000000000000 .L0 +00000000000002c4 l .text 0000000000000000 .L0 +00000000000002c4 l .text 0000000000000000 .L0 +00000000000002c4 l .text 0000000000000000 .L0 +00000000000002c4 l .text 0000000000000000 .L0 +00000000000002cc l .text 0000000000000000 .L0 +00000000000002ce l .text 0000000000000000 .L0 +00000000000002d0 l .text 0000000000000000 .L0 +00000000000002d0 l .text 0000000000000000 .L0 +00000000000002d0 l .text 0000000000000000 .L0 +00000000000002d0 l .text 0000000000000000 .L0 +00000000000002d8 l .text 0000000000000000 .L0 +00000000000002da l .text 0000000000000000 .L0 +00000000000002e2 l .text 0000000000000000 .L0 +00000000000002e2 l .text 0000000000000000 .L0 +00000000000002ee l .text 0000000000000000 .L0 +00000000000002f8 l .text 0000000000000000 .L0 +00000000000002f8 l .text 0000000000000000 .L0 +0000000000000304 l .text 0000000000000000 .L0 +0000000000000140 l .debug_frame 0000000000000000 .L0 +0000000000000248 l .text 0000000000000000 .L0 +00000000000002d0 l .text 0000000000000000 .L0 +00000000000002d0 l .text 0000000000000000 .L0 +0000000000000304 l .text 0000000000000000 .L0 +0000000000000252 l .text 0000000000000000 .L0 +00000000000002a2 l .text 0000000000000000 .L0 +000000000000025a l .text 0000000000000000 .L0 +00000000000002cc l .text 0000000000000000 .L0 +00000000000002ac l .text 0000000000000000 .L0 +00000000000002fa l .text 0000000000000000 .L0 +00000000000002d8 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_rdflush_unlocked.c +000000000000031a l .text 0000000000000000 .L2 +0000000000000352 l .text 0000000000000000 .L3 +0000000000000358 l .text 0000000000000000 .L4 +0000000000000316 l .text 0000000000000000 .L11 +000000000000034a l .text 0000000000000000 .L10 +00000000000006ed l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000001178 l .debug_str 0000000000000000 .LASF75 +0000000000001111 l .debug_str 0000000000000000 .LASF76 +000000000000129a l .debug_str 0000000000000000 .LASF77 +00000000000000d0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000000d56 l .debug_line 0000000000000000 .Ldebug_line0 +0000000000001276 l .debug_str 0000000000000000 .LASF0 +00000000000010d9 l .debug_str 0000000000000000 .LASF2 +0000000000001327 l .debug_str 0000000000000000 .LASF1 +0000000000001335 l .debug_str 0000000000000000 .LASF3 +00000000000010f7 l .debug_str 0000000000000000 .LASF4 +0000000000001462 l .debug_str 0000000000000000 .LASF5 +000000000000139d l .debug_str 0000000000000000 .LASF6 +000000000000131e l .debug_str 0000000000000000 .LASF7 +0000000000001479 l .debug_str 0000000000000000 .LASF8 +00000000000013bd l .debug_str 0000000000000000 .LASF9 +000000000000137b l .debug_str 0000000000000000 .LASF10 +00000000000014ab l .debug_str 0000000000000000 .LASF11 +0000000000001436 l .debug_str 0000000000000000 .LASF12 +0000000000001356 l .debug_str 0000000000000000 .LASF13 +0000000000001237 l .debug_str 0000000000000000 .LASF14 +00000000000013ce l .debug_str 0000000000000000 .LASF15 +0000000000001372 l .debug_str 0000000000000000 .LASF16 +00000000000013c6 l .debug_str 0000000000000000 .LASF17 +0000000000001108 l .debug_str 0000000000000000 .LASF18 +0000000000001101 l .debug_str 0000000000000000 .LASF19 +0000000000001170 l .debug_str 0000000000000000 .LASF20 +000000000000141a l .debug_str 0000000000000000 .LASF21 +000000000000142a l .debug_str 0000000000000000 .LASF22 +00000000000013b0 l .debug_str 0000000000000000 .LASF23 +00000000000012fb l .debug_str 0000000000000000 .LASF24 +0000000000001307 l .debug_str 0000000000000000 .LASF28 +0000000000001301 l .debug_str 0000000000000000 .LASF25 +00000000000010c1 l .debug_str 0000000000000000 .LASF26 +00000000000013e4 l .debug_str 0000000000000000 .LASF27 +000000000000148f l .debug_str 0000000000000000 .LASF29 +0000000000001232 l .debug_str 0000000000000000 .LASF30 +000000000000136d l .debug_str 0000000000000000 .LASF31 +000000000000144b l .debug_str 0000000000000000 .LASF32 +0000000000001255 l .debug_str 0000000000000000 .LASF33 +000000000000133e l .debug_str 0000000000000000 .LASF34 +0000000000001350 l .debug_str 0000000000000000 .LASF35 +0000000000001146 l .debug_str 0000000000000000 .LASF36 +000000000000125b l .debug_str 0000000000000000 .LASF37 +00000000000013b5 l .debug_str 0000000000000000 .LASF38 +00000000000012bc l .debug_str 0000000000000000 .LASF39 +00000000000012da l .debug_str 0000000000000000 .LASF40 +0000000000001347 l .debug_str 0000000000000000 .LASF41 +0000000000001397 l .debug_str 0000000000000000 .LASF42 +0000000000001430 l .debug_str 0000000000000000 .LASF43 +00000000000014a2 l .debug_str 0000000000000000 .LASF44 +000000000000128c l .debug_str 0000000000000000 .LASF45 +0000000000001312 l .debug_str 0000000000000000 .LASF46 +00000000000013d6 l .debug_str 0000000000000000 .LASF47 +00000000000012c3 l .debug_str 0000000000000000 .LASF48 +000000000000112e l .debug_str 0000000000000000 .LASF49 +00000000000013f9 l .debug_str 0000000000000000 .LASF50 +0000000000001158 l .debug_str 0000000000000000 .LASF51 +000000000000123f l .debug_str 0000000000000000 .LASF52 +0000000000001287 l .debug_str 0000000000000000 .LASF53 +00000000000010c7 l .debug_str 0000000000000000 .LASF54 +000000000000143e l .debug_str 0000000000000000 .LASF55 +00000000000010bb l .debug_str 0000000000000000 .LASF56 +00000000000012e2 l .debug_str 0000000000000000 .LASF57 +00000000000013dc l .debug_str 0000000000000000 .LASF58 +0000000000001443 l .debug_str 0000000000000000 .LASF59 +00000000000013ef l .debug_str 0000000000000000 .LASF60 +0000000000001420 l .debug_str 0000000000000000 .LASF61 +0000000000001456 l .debug_str 0000000000000000 .LASF62 +0000000000001228 l .debug_str 0000000000000000 .LASF63 +000000000000126c l .debug_str 0000000000000000 .LASF64 +0000000000001261 l .debug_str 0000000000000000 .LASF65 +0000000000001410 l .debug_str 0000000000000000 .LASF66 +000000000000138d l .debug_str 0000000000000000 .LASF67 +0000000000001486 l .debug_str 0000000000000000 .LASF68 +000000000000146c l .debug_str 0000000000000000 .LASF69 +00000000000010cd l .debug_str 0000000000000000 .LASF70 +0000000000001282 l .debug_str 0000000000000000 .LASF71 +00000000000010e2 l .debug_str 0000000000000000 .LASF78 +0000000000000304 l .text 0000000000000000 .LFB4 +0000000000000364 l .text 0000000000000000 .LFE4 +00000000000012ee l .debug_str 0000000000000000 .LASF79 +0000000000000b80 l .debug_loc 0000000000000000 .LLST0 +0000000000000c1e l .debug_loc 0000000000000000 .LLST1 +000000000000114f l .debug_str 0000000000000000 .LASF72 +000000000000034a l .text 0000000000000000 .LVL4 +0000000000000362 l .text 0000000000000000 .LVL8 +0000000000000312 l .text 0000000000000000 .LVL1 +00000000000012f5 l .debug_str 0000000000000000 .LASF73 +000000000000149a l .debug_str 0000000000000000 .LASF74 +0000000000000304 l .text 0000000000000000 .LVL0 +000000000000031a l .text 0000000000000000 .LVL2 +0000000000000320 l .text 0000000000000000 .LVL3 +0000000000000358 l .text 0000000000000000 .LVL7 +000000000000034c l .text 0000000000000000 .LVL5 +0000000000000352 l .text 0000000000000000 .LVL6 +0000000000001653 l .debug_info 0000000000000000 .Ldebug_info0 +0000000000000316 l .text 0000000000000000 .LBB2 +000000000000031a l .text 0000000000000000 .LBE2 +0000000000000328 l .text 0000000000000000 .LBB3 +000000000000034c l .text 0000000000000000 .LBE3 +000000000000034e l .text 0000000000000000 .LBB4 +0000000000000352 l .text 0000000000000000 .LBE4 +0000000000000358 l .text 0000000000000000 .LBB5 +0000000000000364 l .text 0000000000000000 .LBE5 +0000000000000304 l .text 0000000000000000 .L0 +0000000000000304 l .text 0000000000000000 .L0 +0000000000000304 l .text 0000000000000000 .L0 +0000000000000304 l .text 0000000000000000 .L0 +0000000000000308 l .text 0000000000000000 .L0 +000000000000030a l .text 0000000000000000 .L0 +000000000000030a l .text 0000000000000000 .L0 +0000000000000316 l .text 0000000000000000 .L0 +0000000000000316 l .text 0000000000000000 .L0 +0000000000000316 l .text 0000000000000000 .L0 +0000000000000316 l .text 0000000000000000 .L0 +000000000000031a l .text 0000000000000000 .L0 +000000000000031e l .text 0000000000000000 .L0 +000000000000031e l .text 0000000000000000 .L0 +0000000000000320 l .text 0000000000000000 .L0 +0000000000000322 l .text 0000000000000000 .L0 +0000000000000322 l .text 0000000000000000 .L0 +0000000000000324 l .text 0000000000000000 .L0 +0000000000000328 l .text 0000000000000000 .L0 +0000000000000328 l .text 0000000000000000 .L0 +000000000000032a l .text 0000000000000000 .L0 +000000000000032e l .text 0000000000000000 .L0 +0000000000000330 l .text 0000000000000000 .L0 +0000000000000332 l .text 0000000000000000 .L0 +0000000000000332 l .text 0000000000000000 .L0 +0000000000000336 l .text 0000000000000000 .L0 +0000000000000338 l .text 0000000000000000 .L0 +000000000000033a l .text 0000000000000000 .L0 +000000000000033a l .text 0000000000000000 .L0 +000000000000033e l .text 0000000000000000 .L0 +000000000000033e l .text 0000000000000000 .L0 +0000000000000340 l .text 0000000000000000 .L0 +0000000000000340 l .text 0000000000000000 .L0 +0000000000000344 l .text 0000000000000000 .L0 +0000000000000346 l .text 0000000000000000 .L0 +0000000000000346 l .text 0000000000000000 .L0 +000000000000034a l .text 0000000000000000 .L0 +000000000000034c l .text 0000000000000000 .L0 +000000000000034c l .text 0000000000000000 .L0 +000000000000034e l .text 0000000000000000 .L0 +0000000000000352 l .text 0000000000000000 .L0 +0000000000000358 l .text 0000000000000000 .L0 +0000000000000358 l .text 0000000000000000 .L0 +0000000000000364 l .text 0000000000000000 .L0 +00000000000001c0 l .debug_frame 0000000000000000 .L0 +0000000000000304 l .text 0000000000000000 .L0 +0000000000000364 l .text 0000000000000000 .L0 +0000000000000354 l .text 0000000000000000 .L0 +0000000000000308 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_fputs.c +00000000000003f0 l .text 0000000000000000 .L11 +00000000000003d0 l .text 0000000000000000 .L5 +00000000000003a0 l .text 0000000000000000 .L10 +00000000000003de l .text 0000000000000000 .L6 +00000000000003a6 l .text 0000000000000000 .L4 +00000000000003ae l .text 0000000000000000 .L8 +00000000000003ce l .text 0000000000000000 .L7 +00000000000003b0 l .text 0000000000000000 .L2 +0000000000000880 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000001552 l .debug_str 0000000000000000 .LASF78 +0000000000001897 l .debug_str 0000000000000000 .LASF79 +0000000000001671 l .debug_str 0000000000000000 .LASF80 +0000000000000140 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000000102d l .debug_line 0000000000000000 .Ldebug_line0 +0000000000001736 l .debug_str 0000000000000000 .LASF0 +00000000000014d2 l .debug_str 0000000000000000 .LASF2 +0000000000001702 l .debug_str 0000000000000000 .LASF1 +0000000000001710 l .debug_str 0000000000000000 .LASF3 +0000000000001548 l .debug_str 0000000000000000 .LASF4 +0000000000001867 l .debug_str 0000000000000000 .LASF5 +000000000000178f l .debug_str 0000000000000000 .LASF6 +00000000000016ef l .debug_str 0000000000000000 .LASF7 +000000000000187e l .debug_str 0000000000000000 .LASF8 +00000000000017af l .debug_str 0000000000000000 .LASF9 +000000000000176d l .debug_str 0000000000000000 .LASF10 +00000000000018c6 l .debug_str 0000000000000000 .LASF11 +0000000000001517 l .debug_str 0000000000000000 .LASF12 +0000000000001748 l .debug_str 0000000000000000 .LASF13 +0000000000001611 l .debug_str 0000000000000000 .LASF14 +00000000000017c7 l .debug_str 0000000000000000 .LASF15 +0000000000001764 l .debug_str 0000000000000000 .LASF16 +00000000000017bf l .debug_str 0000000000000000 .LASF17 +00000000000014ef l .debug_str 0000000000000000 .LASF18 +0000000000001540 l .debug_str 0000000000000000 .LASF19 +0000000000001828 l .debug_str 0000000000000000 .LASF20 +00000000000016cc l .debug_str 0000000000000000 .LASF21 +00000000000017a2 l .debug_str 0000000000000000 .LASF22 +00000000000016d8 l .debug_str 0000000000000000 .LASF26 +00000000000016d2 l .debug_str 0000000000000000 .LASF23 +00000000000014ba l .debug_str 0000000000000000 .LASF24 +00000000000017dd l .debug_str 0000000000000000 .LASF25 +00000000000018a9 l .debug_str 0000000000000000 .LASF27 +000000000000160c l .debug_str 0000000000000000 .LASF28 +000000000000175f l .debug_str 0000000000000000 .LASF29 +0000000000001857 l .debug_str 0000000000000000 .LASF30 +000000000000162f l .debug_str 0000000000000000 .LASF31 +0000000000001719 l .debug_str 0000000000000000 .LASF32 +0000000000001742 l .debug_str 0000000000000000 .LASF33 +000000000000151f l .debug_str 0000000000000000 .LASF34 +0000000000001635 l .debug_str 0000000000000000 .LASF35 +00000000000017a7 l .debug_str 0000000000000000 .LASF36 +0000000000001693 l .debug_str 0000000000000000 .LASF37 +00000000000016b1 l .debug_str 0000000000000000 .LASF38 +00000000000018b4 l .debug_str 0000000000000000 .LASF39 +0000000000001789 l .debug_str 0000000000000000 .LASF40 +0000000000001838 l .debug_str 0000000000000000 .LASF41 +00000000000018bd l .debug_str 0000000000000000 .LASF42 +0000000000001663 l .debug_str 0000000000000000 .LASF43 +00000000000016e3 l .debug_str 0000000000000000 .LASF44 +00000000000017cf l .debug_str 0000000000000000 .LASF45 +000000000000169a l .debug_str 0000000000000000 .LASF46 +00000000000014ff l .debug_str 0000000000000000 .LASF47 +0000000000001807 l .debug_str 0000000000000000 .LASF48 +0000000000001528 l .debug_str 0000000000000000 .LASF49 +0000000000001619 l .debug_str 0000000000000000 .LASF50 +000000000000165e l .debug_str 0000000000000000 .LASF51 +00000000000014c0 l .debug_str 0000000000000000 .LASF52 +000000000000184a l .debug_str 0000000000000000 .LASF53 +00000000000014b4 l .debug_str 0000000000000000 .LASF54 +00000000000016b9 l .debug_str 0000000000000000 .LASF55 +00000000000017d5 l .debug_str 0000000000000000 .LASF56 +000000000000184f l .debug_str 0000000000000000 .LASF57 +00000000000017e8 l .debug_str 0000000000000000 .LASF58 +000000000000182e l .debug_str 0000000000000000 .LASF59 +000000000000183e l .debug_str 0000000000000000 .LASF60 +0000000000001602 l .debug_str 0000000000000000 .LASF61 +0000000000001646 l .debug_str 0000000000000000 .LASF62 +000000000000163b l .debug_str 0000000000000000 .LASF63 +000000000000181e l .debug_str 0000000000000000 .LASF64 +000000000000177f l .debug_str 0000000000000000 .LASF65 +0000000000001650 l .debug_str 0000000000000000 .LASF66 +0000000000001871 l .debug_str 0000000000000000 .LASF67 +00000000000014c6 l .debug_str 0000000000000000 .LASF68 +0000000000001659 l .debug_str 0000000000000000 .LASF69 +00000000000017f2 l .debug_str 0000000000000000 .LASF81 +00000000000003f6 l .text 0000000000000000 .LFB5 +0000000000000430 l .text 0000000000000000 .LFE5 +0000000000000c41 l .debug_loc 0000000000000000 .LLST7 +00000000000016c5 l .debug_str 0000000000000000 .LASF70 +0000000000000c8d l .debug_loc 0000000000000000 .LLST8 +0000000000000cd9 l .debug_loc 0000000000000000 .LLST9 +000000000000040c l .text 0000000000000000 .LVL23 +0000000000000418 l .text 0000000000000000 .LVL24 +0000000000000424 l .text 0000000000000000 .LVL26 +00000000000017f8 l .debug_str 0000000000000000 .LASF82 +0000000000001862 l .debug_str 0000000000000000 .LASF71 +00000000000014f6 l .debug_str 0000000000000000 .LASF72 +0000000000000384 l .text 0000000000000000 .LVL1 +0000000000000396 l .text 0000000000000000 .LVL4 +0000000000000364 l .text 0000000000000000 .LFB4 +00000000000003f6 l .text 0000000000000000 .LFE4 +0000000000000cfc l .debug_loc 0000000000000000 .LLST0 +0000000000000d6e l .debug_loc 0000000000000000 .LLST1 +0000000000000dcd l .debug_loc 0000000000000000 .LLST2 +000000000000037c l .text 0000000000000000 .LBB10 +00000000000003a6 l .text 0000000000000000 .LBE10 +0000000000000e16 l .debug_loc 0000000000000000 .LLST3 +00000000000003a6 l .text 0000000000000000 .LBB11 +0000000000000e4c l .debug_loc 0000000000000000 .LLST4 +0000000000000e95 l .debug_loc 0000000000000000 .LLST5 +0000000000000f07 l .debug_loc 0000000000000000 .LLST6 +00000000000003c8 l .text 0000000000000000 .LVL12 +00000000000003e8 l .text 0000000000000000 .LVL19 +00000000000016f8 l .debug_str 0000000000000000 .LASF73 +000000000000188b l .debug_str 0000000000000000 .LASF74 +00000000000017b8 l .debug_str 0000000000000000 .LASF75 +0000000000001722 l .debug_str 0000000000000000 .LASF76 +00000000000014db l .debug_str 0000000000000000 .LASF77 +00000000000003f6 l .text 0000000000000000 .LVL21 +00000000000003fe l .text 0000000000000000 .LVL22 +000000000000041a l .text 0000000000000000 .LVL25 +0000000000000428 l .text 0000000000000000 .LVL27 +000000000000042c l .text 0000000000000000 .LVL28 +0000000000000364 l .text 0000000000000000 .LVL0 +00000000000003d8 l .text 0000000000000000 .LVL16 +00000000000003de l .text 0000000000000000 .LVL17 +00000000000003f0 l .text 0000000000000000 .LVL20 +00000000000003d4 l .text 0000000000000000 .LVL15 +000000000000039a l .text 0000000000000000 .LVL5 +00000000000003a0 l .text 0000000000000000 .LVL6 +00000000000003a4 l .text 0000000000000000 .LVL7 +0000000000000386 l .text 0000000000000000 .LVL2 +000000000000038e l .text 0000000000000000 .LVL3 +00000000000003a6 l .text 0000000000000000 .LVL8 +00000000000003b0 l .text 0000000000000000 .LVL10 +00000000000003b8 l .text 0000000000000000 .LVL11 +00000000000003d0 l .text 0000000000000000 .LVL14 +00000000000003ae l .text 0000000000000000 .LVL9 +00000000000003ce l .text 0000000000000000 .LVL13 +00000000000003e0 l .text 0000000000000000 .LVL18 +0000000000001b8a l .debug_info 0000000000000000 .Ldebug_info0 +00000000000003d0 l .text 0000000000000000 .LBE11 +00000000000003de l .text 0000000000000000 .LBB18 +00000000000003f0 l .text 0000000000000000 .LBE18 +00000000000003f2 l .text 0000000000000000 .LBB19 +00000000000003f6 l .text 0000000000000000 .LBE19 +0000000000000364 l .text 0000000000000000 .L0 +00000000000003f6 l .text 0000000000000000 .L0 +0000000000000364 l .text 0000000000000000 .L0 +0000000000000364 l .text 0000000000000000 .L0 +0000000000000364 l .text 0000000000000000 .L0 +0000000000000370 l .text 0000000000000000 .L0 +0000000000000374 l .text 0000000000000000 .L0 +0000000000000378 l .text 0000000000000000 .L0 +000000000000037c l .text 0000000000000000 .L0 +000000000000037c l .text 0000000000000000 .L0 +000000000000037c l .text 0000000000000000 .L0 +0000000000000384 l .text 0000000000000000 .L0 +0000000000000386 l .text 0000000000000000 .L0 +0000000000000386 l .text 0000000000000000 .L0 +0000000000000388 l .text 0000000000000000 .L0 +0000000000000388 l .text 0000000000000000 .L0 +0000000000000396 l .text 0000000000000000 .L0 +0000000000000396 l .text 0000000000000000 .L0 +00000000000003a6 l .text 0000000000000000 .L0 +00000000000003a6 l .text 0000000000000000 .L0 +00000000000003ae l .text 0000000000000000 .L0 +00000000000003ae l .text 0000000000000000 .L0 +00000000000003b0 l .text 0000000000000000 .L0 +00000000000003b8 l .text 0000000000000000 .L0 +00000000000003b8 l .text 0000000000000000 .L0 +00000000000003ba l .text 0000000000000000 .L0 +00000000000003ba l .text 0000000000000000 .L0 +00000000000003c8 l .text 0000000000000000 .L0 +00000000000003c8 l .text 0000000000000000 .L0 +00000000000003ce l .text 0000000000000000 .L0 +00000000000003d0 l .text 0000000000000000 .L0 +00000000000003de l .text 0000000000000000 .L0 +00000000000003de l .text 0000000000000000 .L0 +00000000000003e8 l .text 0000000000000000 .L0 +00000000000003e8 l .text 0000000000000000 .L0 +00000000000003f2 l .text 0000000000000000 .L0 +00000000000003f6 l .text 0000000000000000 .L0 +00000000000003f6 l .text 0000000000000000 .L0 +00000000000003f6 l .text 0000000000000000 .L0 +00000000000003f6 l .text 0000000000000000 .L0 +00000000000003fc l .text 0000000000000000 .L0 +00000000000003fe l .text 0000000000000000 .L0 +0000000000000402 l .text 0000000000000000 .L0 +0000000000000404 l .text 0000000000000000 .L0 +000000000000040c l .text 0000000000000000 .L0 +000000000000040c l .text 0000000000000000 .L0 +000000000000041a l .text 0000000000000000 .L0 +0000000000000424 l .text 0000000000000000 .L0 +0000000000000424 l .text 0000000000000000 .L0 +0000000000000430 l .text 0000000000000000 .L0 +00000000000001f8 l .debug_frame 0000000000000000 .L0 +0000000000000364 l .text 0000000000000000 .L0 +00000000000003f6 l .text 0000000000000000 .L0 +00000000000003f6 l .text 0000000000000000 .L0 +0000000000000430 l .text 0000000000000000 .L0 +00000000000003d2 l .text 0000000000000000 .L0 +0000000000000370 l .text 0000000000000000 .L0 +0000000000000426 l .text 0000000000000000 .L0 +0000000000000402 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_libfilelock.c +0000000000000a9f l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000001948 l .debug_str 0000000000000000 .LASF75 +0000000000001aca l .debug_str 0000000000000000 .LASF76 +0000000000001a59 l .debug_str 0000000000000000 .LASF77 +00000000000001b0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000001357 l .debug_line 0000000000000000 .Ldebug_line0 +0000000000001b4c l .debug_str 0000000000000000 .LASF0 +00000000000018ed l .debug_str 0000000000000000 .LASF2 +0000000000001b1f l .debug_str 0000000000000000 .LASF1 +0000000000001bfc l .debug_str 0000000000000000 .LASF3 +00000000000018f6 l .debug_str 0000000000000000 .LASF4 +0000000000001c76 l .debug_str 0000000000000000 .LASF5 +0000000000001ba0 l .debug_str 0000000000000000 .LASF6 +0000000000001a7b l .debug_str 0000000000000000 .LASF7 +0000000000001c8d l .debug_str 0000000000000000 .LASF8 +0000000000001bc0 l .debug_str 0000000000000000 .LASF9 +0000000000001b7e l .debug_str 0000000000000000 .LASF10 +0000000000001ccc l .debug_str 0000000000000000 .LASF11 +0000000000001c4a l .debug_str 0000000000000000 .LASF12 +0000000000001b5e l .debug_str 0000000000000000 .LASF13 +0000000000001a07 l .debug_str 0000000000000000 .LASF14 +0000000000001bd1 l .debug_str 0000000000000000 .LASF15 +0000000000001b75 l .debug_str 0000000000000000 .LASF16 +0000000000001bc9 l .debug_str 0000000000000000 .LASF17 +0000000000001900 l .debug_str 0000000000000000 .LASF18 +0000000000001940 l .debug_str 0000000000000000 .LASF19 +0000000000001c34 l .debug_str 0000000000000000 .LASF20 +0000000000001ae2 l .debug_str 0000000000000000 .LASF21 +0000000000001bb3 l .debug_str 0000000000000000 .LASF22 +0000000000001aee l .debug_str 0000000000000000 .LASF26 +0000000000001ae8 l .debug_str 0000000000000000 .LASF23 +00000000000018d5 l .debug_str 0000000000000000 .LASF24 +0000000000001be7 l .debug_str 0000000000000000 .LASF25 +0000000000001caf l .debug_str 0000000000000000 .LASF27 +0000000000001a02 l .debug_str 0000000000000000 .LASF28 +0000000000001b3e l .debug_str 0000000000000000 .LASF29 +0000000000001c5f l .debug_str 0000000000000000 .LASF30 +0000000000001a25 l .debug_str 0000000000000000 .LASF31 +0000000000001b43 l .debug_str 0000000000000000 .LASF32 +0000000000001b58 l .debug_str 0000000000000000 .LASF33 +000000000000191f l .debug_str 0000000000000000 .LASF34 +0000000000001a2b l .debug_str 0000000000000000 .LASF35 +0000000000001bb8 l .debug_str 0000000000000000 .LASF36 +0000000000001a84 l .debug_str 0000000000000000 .LASF37 +0000000000001aa2 l .debug_str 0000000000000000 .LASF38 +0000000000001cba l .debug_str 0000000000000000 .LASF39 +0000000000001b9a l .debug_str 0000000000000000 .LASF40 +0000000000001c44 l .debug_str 0000000000000000 .LASF41 +0000000000001cc3 l .debug_str 0000000000000000 .LASF42 +0000000000001a4b l .debug_str 0000000000000000 .LASF43 +0000000000001af9 l .debug_str 0000000000000000 .LASF44 +0000000000001bd9 l .debug_str 0000000000000000 .LASF45 +0000000000001a8b l .debug_str 0000000000000000 .LASF46 +0000000000001907 l .debug_str 0000000000000000 .LASF47 +0000000000001c05 l .debug_str 0000000000000000 .LASF48 +0000000000001928 l .debug_str 0000000000000000 .LASF49 +0000000000001a0f l .debug_str 0000000000000000 .LASF50 +0000000000001a46 l .debug_str 0000000000000000 .LASF51 +00000000000018db l .debug_str 0000000000000000 .LASF52 +0000000000001c52 l .debug_str 0000000000000000 .LASF53 +00000000000018cf l .debug_str 0000000000000000 .LASF54 +0000000000001aaa l .debug_str 0000000000000000 .LASF55 +0000000000001bdf l .debug_str 0000000000000000 .LASF56 +0000000000001c57 l .debug_str 0000000000000000 .LASF57 +0000000000001bf2 l .debug_str 0000000000000000 .LASF58 +0000000000001c3a l .debug_str 0000000000000000 .LASF59 +0000000000001c6a l .debug_str 0000000000000000 .LASF60 +00000000000019f8 l .debug_str 0000000000000000 .LASF61 +0000000000001a3c l .debug_str 0000000000000000 .LASF62 +0000000000001a31 l .debug_str 0000000000000000 .LASF63 +0000000000001c1c l .debug_str 0000000000000000 .LASF64 +0000000000001b90 l .debug_str 0000000000000000 .LASF65 +0000000000001ca6 l .debug_str 0000000000000000 .LASF66 +0000000000001c80 l .debug_str 0000000000000000 .LASF67 +00000000000018e1 l .debug_str 0000000000000000 .LASF68 +0000000000001c9a l .debug_str 0000000000000000 .LASF70 +0000000000000444 l .text 0000000000000000 .LFB6 +000000000000044e l .text 0000000000000000 .LFE6 +0000000000001ab6 l .debug_str 0000000000000000 .LASF69 +0000000000000f63 l .debug_loc 0000000000000000 .LLST2 +000000000000044e l .text 0000000000000000 .LVL8 +0000000000001abd l .debug_str 0000000000000000 .LASF78 +000000000000043a l .text 0000000000000000 .LFB5 +0000000000000444 l .text 0000000000000000 .LFE5 +0000000000000fb1 l .debug_loc 0000000000000000 .LLST1 +0000000000000444 l .text 0000000000000000 .LVL5 +0000000000001b15 l .debug_str 0000000000000000 .LASF71 +0000000000000430 l .text 0000000000000000 .LFB4 +000000000000043a l .text 0000000000000000 .LFE4 +0000000000000fff l .debug_loc 0000000000000000 .LLST0 +000000000000043a l .text 0000000000000000 .LVL2 +0000000000001b05 l .debug_str 0000000000000000 .LASF72 +0000000000001b2d l .debug_str 0000000000000000 .LASF73 +0000000000001c26 l .debug_str 0000000000000000 .LASF74 +0000000000000444 l .text 0000000000000000 .LVL6 +0000000000000446 l .text 0000000000000000 .LVL7 +000000000000043a l .text 0000000000000000 .LVL3 +000000000000043c l .text 0000000000000000 .LVL4 +0000000000000430 l .text 0000000000000000 .LVL0 +0000000000000432 l .text 0000000000000000 .LVL1 +0000000000002224 l .debug_info 0000000000000000 .Ldebug_info0 +0000000000000430 l .text 0000000000000000 .L0 +000000000000043a l .text 0000000000000000 .L0 +0000000000000444 l .text 0000000000000000 .L0 +0000000000000430 l .text 0000000000000000 .L0 +000000000000043a l .text 0000000000000000 .L0 +000000000000043a l .text 0000000000000000 .L0 +000000000000043a l .text 0000000000000000 .L0 +0000000000000444 l .text 0000000000000000 .L0 +0000000000000444 l .text 0000000000000000 .L0 +000000000000044e l .text 0000000000000000 .L0 +0000000000000270 l .debug_frame 0000000000000000 .L0 +0000000000000430 l .text 0000000000000000 .L0 +000000000000043a l .text 0000000000000000 .L0 +000000000000043a l .text 0000000000000000 .L0 +0000000000000444 l .text 0000000000000000 .L0 +0000000000000444 l .text 0000000000000000 .L0 +000000000000044e l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_libgetstreams.c +0000000000000bf6 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000001d73 l .debug_str 0000000000000000 .LASF78 +0000000000001eac l .debug_str 0000000000000000 .LASF79 +0000000000001e8a l .debug_str 0000000000000000 .LASF80 +00000000000001f0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000001504 l .debug_line 0000000000000000 .Ldebug_line0 +0000000000001f59 l .debug_str 0000000000000000 .LASF0 +0000000000001cfe l .debug_str 0000000000000000 .LASF2 +0000000000001f39 l .debug_str 0000000000000000 .LASF1 +0000000000001f47 l .debug_str 0000000000000000 .LASF3 +0000000000001d0e l .debug_str 0000000000000000 .LASF4 +00000000000020b4 l .debug_str 0000000000000000 .LASF5 +0000000000002000 l .debug_str 0000000000000000 .LASF6 +0000000000001f28 l .debug_str 0000000000000000 .LASF7 +00000000000020cb l .debug_str 0000000000000000 .LASF8 +0000000000001fef l .debug_str 0000000000000000 .LASF9 +0000000000001f95 l .debug_str 0000000000000000 .LASF10 +00000000000020fe l .debug_str 0000000000000000 .LASF11 +0000000000002088 l .debug_str 0000000000000000 .LASF12 +0000000000001f6b l .debug_str 0000000000000000 .LASF13 +0000000000001e32 l .debug_str 0000000000000000 .LASF14 +0000000000002013 l .debug_str 0000000000000000 .LASF15 +0000000000001fe6 l .debug_str 0000000000000000 .LASF16 +0000000000001ff8 l .debug_str 0000000000000000 .LASF17 +0000000000001d18 l .debug_str 0000000000000000 .LASF18 +0000000000001d63 l .debug_str 0000000000000000 .LASF19 +0000000000002067 l .debug_str 0000000000000000 .LASF20 +0000000000001efd l .debug_str 0000000000000000 .LASF21 +0000000000001ec6 l .debug_str 0000000000000000 .LASF22 +0000000000001e7c l .debug_str 0000000000000000 .LASF23 +0000000000001f1c l .debug_str 0000000000000000 .LASF24 +0000000000001f11 l .debug_str 0000000000000000 .LASF28 +0000000000001f03 l .debug_str 0000000000000000 .LASF25 +0000000000001e50 l .debug_str 0000000000000000 .LASF26 +0000000000002029 l .debug_str 0000000000000000 .LASF27 +00000000000020e1 l .debug_str 0000000000000000 .LASF29 +0000000000001e2d l .debug_str 0000000000000000 .LASF30 +0000000000001f82 l .debug_str 0000000000000000 .LASF31 +000000000000209d l .debug_str 0000000000000000 .LASF32 +0000000000001e56 l .debug_str 0000000000000000 .LASF33 +0000000000001f50 l .debug_str 0000000000000000 .LASF34 +0000000000001f65 l .debug_str 0000000000000000 .LASF35 +0000000000001d42 l .debug_str 0000000000000000 .LASF36 +0000000000001e5c l .debug_str 0000000000000000 .LASF37 +000000000000201b l .debug_str 0000000000000000 .LASF38 +0000000000001f09 l .debug_str 0000000000000000 .LASF39 +0000000000001ecb l .debug_str 0000000000000000 .LASF40 +0000000000001ee9 l .debug_str 0000000000000000 .LASF41 +00000000000020ec l .debug_str 0000000000000000 .LASF42 +0000000000001fb6 l .debug_str 0000000000000000 .LASF43 +0000000000002077 l .debug_str 0000000000000000 .LASF44 +00000000000020f5 l .debug_str 0000000000000000 .LASF45 +0000000000001ed2 l .debug_str 0000000000000000 .LASF46 +0000000000001d2a l .debug_str 0000000000000000 .LASF47 +000000000000203e l .debug_str 0000000000000000 .LASF48 +0000000000001d4b l .debug_str 0000000000000000 .LASF49 +0000000000001e3a l .debug_str 0000000000000000 .LASF50 +0000000000001e77 l .debug_str 0000000000000000 .LASF51 +0000000000002082 l .debug_str 0000000000000000 .LASF52 +0000000000002090 l .debug_str 0000000000000000 .LASF53 +0000000000001cd5 l .debug_str 0000000000000000 .LASF54 +0000000000001ef1 l .debug_str 0000000000000000 .LASF55 +0000000000002021 l .debug_str 0000000000000000 .LASF56 +0000000000002095 l .debug_str 0000000000000000 .LASF57 +0000000000002034 l .debug_str 0000000000000000 .LASF58 +000000000000206d l .debug_str 0000000000000000 .LASF59 +00000000000020a8 l .debug_str 0000000000000000 .LASF60 +0000000000001e23 l .debug_str 0000000000000000 .LASF61 +0000000000001e6d l .debug_str 0000000000000000 .LASF62 +0000000000001e62 l .debug_str 0000000000000000 .LASF63 +0000000000002055 l .debug_str 0000000000000000 .LASF64 +0000000000001fa7 l .debug_str 0000000000000000 .LASF65 +00000000000020d8 l .debug_str 0000000000000000 .LASF66 +00000000000020be l .debug_str 0000000000000000 .LASF67 +0000000000001cf2 l .debug_str 0000000000000000 .LASF68 +0000000000001d1f l .debug_str 0000000000000000 .LASF69 +0000000000001f31 l .debug_str 0000000000000000 .LASF70 +0000000000001d07 l .debug_str 0000000000000000 .LASF71 +0000000000001cdb l .debug_str 0000000000000000 .LASF72 +000000000000205f l .debug_str 0000000000000000 .LASF73 +0000000000001fbc l .debug_str 0000000000000000 .LASF74 +0000000000001d6b l .debug_str 0000000000000000 .LASF75 +0000000000001fb1 l .debug_str 0000000000000000 .LASF76 +0000000000001fc8 l .debug_str 0000000000000000 .LASF77 +0000000000001ce3 l .debug_str 0000000000000000 .LASF81 +0000000000000464 l .text 0000000000000000 .LFB8 +000000000000048a l .text 0000000000000000 .LFE8 +000000000000104d l .debug_loc 0000000000000000 .LLST1 +0000000000000464 l .text 0000000000000000 .LBB4 +0000000000000474 l .text 0000000000000000 .LVL3 +0000000000001fd6 l .debug_str 0000000000000000 .LASF82 +000000000000207d l .debug_str 0000000000000000 .LASF83 +000000000000044e l .text 0000000000000000 .LFB7 +0000000000000464 l .text 0000000000000000 .LFE7 +0000000000001086 l .debug_loc 0000000000000000 .LLST0 +000000000000045a l .text 0000000000000000 .LVL0 +0000000000001f87 l .debug_str 0000000000000000 .LASF84 +0000000000000464 l .text 0000000000000000 .LVL2 +0000000000000460 l .text 0000000000000000 .LVL1 +0000000000002776 l .debug_info 0000000000000000 .Ldebug_info0 +0000000000000464 l .text 0000000000000000 .LBE4 +000000000000046c l .text 0000000000000000 .LBB7 +0000000000000474 l .text 0000000000000000 .LBE7 +000000000000044e l .text 0000000000000000 .L0 +0000000000000464 l .text 0000000000000000 .L0 +000000000000044e l .text 0000000000000000 .L0 +000000000000044e l .text 0000000000000000 .L0 +000000000000044e l .text 0000000000000000 .L0 +0000000000000452 l .text 0000000000000000 .L0 +000000000000045a l .text 0000000000000000 .L0 +000000000000045a l .text 0000000000000000 .L0 +0000000000000464 l .text 0000000000000000 .L0 +0000000000000464 l .text 0000000000000000 .L0 +0000000000000464 l .text 0000000000000000 .L0 +0000000000000464 l .text 0000000000000000 .L0 +0000000000000464 l .text 0000000000000000 .L0 +000000000000046a l .text 0000000000000000 .L0 +000000000000046c l .text 0000000000000000 .L0 +0000000000000474 l .text 0000000000000000 .L0 +0000000000000474 l .text 0000000000000000 .L0 +000000000000047c l .text 0000000000000000 .L0 +000000000000047e l .text 0000000000000000 .L0 +0000000000000480 l .text 0000000000000000 .L0 +000000000000048a l .text 0000000000000000 .L0 +00000000000002c8 l .debug_frame 0000000000000000 .L0 +000000000000044e l .text 0000000000000000 .L0 +0000000000000464 l .text 0000000000000000 .L0 +0000000000000464 l .text 0000000000000000 .L0 +000000000000048a l .text 0000000000000000 .L0 +000000000000045c l .text 0000000000000000 .L0 +0000000000000452 l .text 0000000000000000 .L0 +000000000000047e l .text 0000000000000000 .L0 +000000000000046a l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_exit.c +0000000000000db5 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000002221 l .debug_str 0000000000000000 .LASF19 +0000000000002128 l .debug_str 0000000000000000 .LASF20 +00000000000021ff l .debug_str 0000000000000000 .LASF21 +0000000000000250 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000000173a l .debug_line 0000000000000000 .Ldebug_line0 +00000000000021d8 l .debug_str 0000000000000000 .LASF0 +0000000000002191 l .debug_str 0000000000000000 .LASF1 +00000000000021f5 l .debug_str 0000000000000000 .LASF2 +00000000000021c5 l .debug_str 0000000000000000 .LASF3 +0000000000002115 l .debug_str 0000000000000000 .LASF4 +00000000000021b6 l .debug_str 0000000000000000 .LASF5 +0000000000002141 l .debug_str 0000000000000000 .LASF6 +0000000000002167 l .debug_str 0000000000000000 .LASF7 +00000000000021aa l .debug_str 0000000000000000 .LASF8 +0000000000002107 l .debug_str 0000000000000000 .LASF9 +00000000000021e4 l .debug_str 0000000000000000 .LASF10 +00000000000021bf l .debug_str 0000000000000000 .LASF11 +0000000000002184 l .debug_str 0000000000000000 .LASF22 +0000000000002122 l .debug_str 0000000000000000 .LASF12 +00000000000004d0 l .text 0000000000000000 .LFB9 +00000000000004dc l .text 0000000000000000 .LFE9 +000000000000213a l .debug_str 0000000000000000 .LASF14 +00000000000010be l .debug_loc 0000000000000000 .LLST2 +00000000000004dc l .text 0000000000000000 .LVL10 +000000000000219f l .debug_str 0000000000000000 .LASF13 +00000000000004b2 l .text 0000000000000000 .LFB8 +00000000000004d0 l .text 0000000000000000 .LFE8 +00000000000010f7 l .debug_loc 0000000000000000 .LLST1 +00000000000004c6 l .text 0000000000000000 .LVL7 +00000000000004d0 l .text 0000000000000000 .LVL8 +00000000000021f0 l .debug_str 0000000000000000 .LASF15 +000000000000048a l .text 0000000000000000 .LFB7 +00000000000004b2 l .text 0000000000000000 .LFE7 +0000000000001130 l .debug_loc 0000000000000000 .LLST0 +000000000000049e l .text 0000000000000000 .LVL2 +00000000000004a8 l .text 0000000000000000 .LVL3 +00000000000004b2 l .text 0000000000000000 .LVL4 +000000000000217e l .debug_str 0000000000000000 .LASF16 +0000000000002153 l .debug_str 0000000000000000 .LASF17 +00000000000021af l .debug_str 0000000000000000 .LASF18 +00000000000004d0 l .text 0000000000000000 .LVL9 +00000000000004b2 l .text 0000000000000000 .LVL5 +00000000000004bc l .text 0000000000000000 .LVL6 +000000000000048a l .text 0000000000000000 .LVL0 +0000000000000494 l .text 0000000000000000 .LVL1 +0000000000002d29 l .debug_info 0000000000000000 .Ldebug_info0 +000000000000048a l .text 0000000000000000 .L0 +00000000000004b2 l .text 0000000000000000 .L0 +00000000000004d0 l .text 0000000000000000 .L0 +000000000000048a l .text 0000000000000000 .L0 +000000000000048a l .text 0000000000000000 .L0 +000000000000048e l .text 0000000000000000 .L0 +0000000000000490 l .text 0000000000000000 .L0 +0000000000000492 l .text 0000000000000000 .L0 +0000000000000494 l .text 0000000000000000 .L0 +0000000000000496 l .text 0000000000000000 .L0 +000000000000049e l .text 0000000000000000 .L0 +000000000000049e l .text 0000000000000000 .L0 +00000000000004a8 l .text 0000000000000000 .L0 +00000000000004b2 l .text 0000000000000000 .L0 +00000000000004b2 l .text 0000000000000000 .L0 +00000000000004b2 l .text 0000000000000000 .L0 +00000000000004b6 l .text 0000000000000000 .L0 +00000000000004b8 l .text 0000000000000000 .L0 +00000000000004ba l .text 0000000000000000 .L0 +00000000000004bc l .text 0000000000000000 .L0 +00000000000004be l .text 0000000000000000 .L0 +00000000000004c6 l .text 0000000000000000 .L0 +00000000000004c6 l .text 0000000000000000 .L0 +00000000000004d0 l .text 0000000000000000 .L0 +00000000000004d0 l .text 0000000000000000 .L0 +00000000000004d0 l .text 0000000000000000 .L0 +00000000000004d4 l .text 0000000000000000 .L0 +00000000000004dc l .text 0000000000000000 .L0 +0000000000000328 l .debug_frame 0000000000000000 .L0 +000000000000048a l .text 0000000000000000 .L0 +00000000000004b2 l .text 0000000000000000 .L0 +00000000000004b2 l .text 0000000000000000 .L0 +00000000000004d0 l .text 0000000000000000 .L0 +00000000000004d0 l .text 0000000000000000 .L0 +00000000000004dc l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_strlen.c +00000000000004ea l .text 0000000000000000 .L3 +00000000000004de l .text 0000000000000000 .L2 +0000000000000e8b l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000000233d l .debug_str 0000000000000000 .LASF14 +00000000000022e6 l .debug_str 0000000000000000 .LASF15 +0000000000002446 l .debug_str 0000000000000000 .LASF16 +0000000000000290 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +00000000000018b2 l .debug_line 0000000000000000 .Ldebug_line0 +000000000000240f l .debug_str 0000000000000000 .LASF0 +000000000000232a l .debug_str 0000000000000000 .LASF1 +000000000000242f l .debug_str 0000000000000000 .LASF2 +00000000000023fc l .debug_str 0000000000000000 .LASF3 +0000000000002439 l .debug_str 0000000000000000 .LASF4 +00000000000023ed l .debug_str 0000000000000000 .LASF5 +0000000000002301 l .debug_str 0000000000000000 .LASF6 +0000000000002427 l .debug_str 0000000000000000 .LASF8 +0000000000002313 l .debug_str 0000000000000000 .LASF7 +00000000000022fa l .debug_str 0000000000000000 .LASF9 +0000000000002338 l .debug_str 0000000000000000 .LASF10 +00000000000022d1 l .debug_str 0000000000000000 .LASF11 +000000000000241b l .debug_str 0000000000000000 .LASF12 +00000000000023f6 l .debug_str 0000000000000000 .LASF13 +00000000000022df l .debug_str 0000000000000000 .LASF17 +00000000000004dc l .text 0000000000000000 .LFB4 +00000000000004ee l .text 0000000000000000 .LFE4 +0000000000001169 l .debug_loc 0000000000000000 .LLST0 +00000000000011b5 l .debug_loc 0000000000000000 .LLST1 +00000000000004dc l .text 0000000000000000 .LVL0 +00000000000004e8 l .text 0000000000000000 .LVL2 +00000000000004ea l .text 0000000000000000 .LVL3 +00000000000004de l .text 0000000000000000 .LVL1 +0000000000002f03 l .debug_info 0000000000000000 .Ldebug_info0 +00000000000004dc l .text 0000000000000000 .L0 +00000000000004dc l .text 0000000000000000 .L0 +00000000000004dc l .text 0000000000000000 .L0 +00000000000004dc l .text 0000000000000000 .L0 +00000000000004de l .text 0000000000000000 .L0 +00000000000004de l .text 0000000000000000 .L0 +00000000000004e4 l .text 0000000000000000 .L0 +00000000000004e4 l .text 0000000000000000 .L0 +00000000000004ea l .text 0000000000000000 .L0 +00000000000004ea l .text 0000000000000000 .L0 +00000000000004ee l .text 0000000000000000 .L0 +00000000000003a8 l .debug_frame 0000000000000000 .L0 +00000000000004dc l .text 0000000000000000 .L0 +00000000000004ee l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_memcpy.c +00000000000004f6 l .text 0000000000000000 .L3 +00000000000004f0 l .text 0000000000000000 .L2 +0000000000000f12 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000002559 l .debug_str 0000000000000000 .LASF16 +00000000000024db l .debug_str 0000000000000000 .LASF17 +0000000000002537 l .debug_str 0000000000000000 .LASF18 +00000000000002b0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +00000000000019e3 l .debug_line 0000000000000000 .Ldebug_line0 +000000000000250d l .debug_str 0000000000000000 .LASF0 +00000000000024bf l .debug_str 0000000000000000 .LASF1 +000000000000252d l .debug_str 0000000000000000 .LASF2 +00000000000024fa l .debug_str 0000000000000000 .LASF3 +000000000000247d l .debug_str 0000000000000000 .LASF4 +00000000000024d2 l .debug_str 0000000000000000 .LASF5 +0000000000002496 l .debug_str 0000000000000000 .LASF6 +0000000000002525 l .debug_str 0000000000000000 .LASF8 +00000000000024a8 l .debug_str 0000000000000000 .LASF7 +000000000000248f l .debug_str 0000000000000000 .LASF9 +00000000000024cd l .debug_str 0000000000000000 .LASF10 +0000000000002468 l .debug_str 0000000000000000 .LASF11 +0000000000002519 l .debug_str 0000000000000000 .LASF12 +00000000000024ef l .debug_str 0000000000000000 .LASF13 +0000000000002476 l .debug_str 0000000000000000 .LASF19 +00000000000004ee l .text 0000000000000000 .LFB4 +000000000000050a l .text 0000000000000000 .LFE4 +000000000000248a l .debug_str 0000000000000000 .LASF14 +00000000000011eb l .debug_loc 0000000000000000 .LLST0 +00000000000024f5 l .debug_str 0000000000000000 .LASF15 +000000000000123f l .debug_loc 0000000000000000 .LLST1 +00000000000012ac l .debug_loc 0000000000000000 .LLST2 +00000000000004ee l .text 0000000000000000 .LVL0 +00000000000004f0 l .text 0000000000000000 .LVL1 +0000000000000504 l .text 0000000000000000 .LVL3 +00000000000004f6 l .text 0000000000000000 .LVL2 +0000000000002fe7 l .debug_info 0000000000000000 .Ldebug_info0 +00000000000004ee l .text 0000000000000000 .L0 +00000000000004ee l .text 0000000000000000 .L0 +00000000000004ee l .text 0000000000000000 .L0 +00000000000004ee l .text 0000000000000000 .L0 +00000000000004ee l .text 0000000000000000 .L0 +00000000000004f0 l .text 0000000000000000 .L0 +00000000000004f4 l .text 0000000000000000 .L0 +00000000000004f4 l .text 0000000000000000 .L0 +00000000000004f6 l .text 0000000000000000 .L0 +00000000000004f6 l .text 0000000000000000 .L0 +00000000000004fe l .text 0000000000000000 .L0 +000000000000050a l .text 0000000000000000 .L0 +00000000000003d0 l .debug_frame 0000000000000000 .L0 +00000000000004ee l .text 0000000000000000 .L0 +000000000000050a l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 task_getinfo.c +0000000000000fd1 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +00000000000026a6 l .debug_str 0000000000000000 .LASF83 +00000000000027aa l .debug_str 0000000000000000 .LASF84 +0000000000002819 l .debug_str 0000000000000000 .LASF85 +00000000000002d0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000001b09 l .debug_line 0000000000000000 .Ldebug_line0 +00000000000028a5 l .debug_str 0000000000000000 .LASF0 +0000000000002629 l .debug_str 0000000000000000 .LASF2 +0000000000002877 l .debug_str 0000000000000000 .LASF1 +0000000000002885 l .debug_str 0000000000000000 .LASF3 +0000000000002639 l .debug_str 0000000000000000 .LASF4 +00000000000029fc l .debug_str 0000000000000000 .LASF5 +0000000000002939 l .debug_str 0000000000000000 .LASF6 +0000000000002866 l .debug_str 0000000000000000 .LASF7 +0000000000002a13 l .debug_str 0000000000000000 .LASF8 +0000000000002928 l .debug_str 0000000000000000 .LASF9 +00000000000028d9 l .debug_str 0000000000000000 .LASF10 +0000000000002a46 l .debug_str 0000000000000000 .LASF11 +00000000000029d0 l .debug_str 0000000000000000 .LASF12 +00000000000027d0 l .debug_str 0000000000000000 .LASF13 +0000000000002765 l .debug_str 0000000000000000 .LASF14 +000000000000294c l .debug_str 0000000000000000 .LASF15 +000000000000291f l .debug_str 0000000000000000 .LASF16 +0000000000002931 l .debug_str 0000000000000000 .LASF17 +00000000000029a6 l .debug_str 0000000000000000 .LASF18 +0000000000002643 l .debug_str 0000000000000000 .LASF19 +0000000000002696 l .debug_str 0000000000000000 .LASF20 +00000000000029a0 l .debug_str 0000000000000000 .LASF21 +000000000000283b l .debug_str 0000000000000000 .LASF22 +000000000000291a l .debug_str 0000000000000000 .LASF23 +00000000000027c2 l .debug_str 0000000000000000 .LASF24 +000000000000285a l .debug_str 0000000000000000 .LASF25 +000000000000284f l .debug_str 0000000000000000 .LASF29 +0000000000002841 l .debug_str 0000000000000000 .LASF26 +0000000000002783 l .debug_str 0000000000000000 .LASF27 +0000000000002962 l .debug_str 0000000000000000 .LASF28 +0000000000002a29 l .debug_str 0000000000000000 .LASF30 +0000000000002760 l .debug_str 0000000000000000 .LASF31 +000000000000288e l .debug_str 0000000000000000 .LASF32 +00000000000029e5 l .debug_str 0000000000000000 .LASF33 +0000000000002789 l .debug_str 0000000000000000 .LASF34 +0000000000002893 l .debug_str 0000000000000000 .LASF35 +00000000000028b1 l .debug_str 0000000000000000 .LASF36 +000000000000266d l .debug_str 0000000000000000 .LASF37 +000000000000278f l .debug_str 0000000000000000 .LASF38 +0000000000002954 l .debug_str 0000000000000000 .LASF39 +0000000000002847 l .debug_str 0000000000000000 .LASF40 +00000000000027e7 l .debug_str 0000000000000000 .LASF41 +0000000000002805 l .debug_str 0000000000000000 .LASF42 +0000000000002a34 l .debug_str 0000000000000000 .LASF43 +00000000000028fa l .debug_str 0000000000000000 .LASF44 +00000000000029ba l .debug_str 0000000000000000 .LASF45 +0000000000002a3d l .debug_str 0000000000000000 .LASF46 +00000000000027ee l .debug_str 0000000000000000 .LASF47 +0000000000002655 l .debug_str 0000000000000000 .LASF48 +0000000000002977 l .debug_str 0000000000000000 .LASF49 +000000000000267e l .debug_str 0000000000000000 .LASF50 +000000000000276d l .debug_str 0000000000000000 .LASF51 +00000000000027bd l .debug_str 0000000000000000 .LASF52 +0000000000002617 l .debug_str 0000000000000000 .LASF53 +00000000000029d8 l .debug_str 0000000000000000 .LASF54 +0000000000002609 l .debug_str 0000000000000000 .LASF55 +000000000000280d l .debug_str 0000000000000000 .LASF56 +000000000000295a l .debug_str 0000000000000000 .LASF57 +00000000000029dd l .debug_str 0000000000000000 .LASF58 +000000000000296d l .debug_str 0000000000000000 .LASF59 +00000000000029b0 l .debug_str 0000000000000000 .LASF60 +00000000000029f0 l .debug_str 0000000000000000 .LASF61 +0000000000002756 l .debug_str 0000000000000000 .LASF62 +00000000000027a0 l .debug_str 0000000000000000 .LASF63 +0000000000002795 l .debug_str 0000000000000000 .LASF64 +000000000000298e l .debug_str 0000000000000000 .LASF65 +00000000000028eb l .debug_str 0000000000000000 .LASF66 +0000000000002a20 l .debug_str 0000000000000000 .LASF67 +0000000000002a06 l .debug_str 0000000000000000 .LASF68 +000000000000261d l .debug_str 0000000000000000 .LASF69 +000000000000264a l .debug_str 0000000000000000 .LASF70 +000000000000286f l .debug_str 0000000000000000 .LASF71 +0000000000002632 l .debug_str 0000000000000000 .LASF72 +000000000000260f l .debug_str 0000000000000000 .LASF73 +0000000000002998 l .debug_str 0000000000000000 .LASF74 +0000000000002900 l .debug_str 0000000000000000 .LASF75 +000000000000269e l .debug_str 0000000000000000 .LASF76 +00000000000028f5 l .debug_str 0000000000000000 .LASF77 +000000000000290c l .debug_str 0000000000000000 .LASF78 +00000000000028b7 l .debug_str 0000000000000000 .LASF79 +0000000000002676 l .debug_str 0000000000000000 .LASF80 +00000000000029c5 l .debug_str 0000000000000000 .LASF81 +00000000000028d0 l .debug_str 0000000000000000 .LASF82 +00000000000028c2 l .debug_str 0000000000000000 .LASF86 +000000000000050a l .text 0000000000000000 .LFB7 +0000000000000514 l .text 0000000000000000 .LFE7 +00000000000029c0 l .debug_str 0000000000000000 .LASF87 +0000000000001319 l .debug_loc 0000000000000000 .LLST0 +000000000000050a l .text 0000000000000000 .LBB4 +000000000000289c l .debug_str 0000000000000000 .LASF88 +000000000000050e l .text 0000000000000000 .LVL0 +0000000000000510 l .text 0000000000000000 .LVL1 +00000000000030fc l .debug_info 0000000000000000 .Ldebug_info0 +000000000000050a l .text 0000000000000000 .LBE4 +000000000000050c l .text 0000000000000000 .LBB7 +000000000000050e l .text 0000000000000000 .LBE7 +000000000000050a l .text 0000000000000000 .L0 +000000000000050a l .text 0000000000000000 .L0 +000000000000050a l .text 0000000000000000 .L0 +000000000000050a l .text 0000000000000000 .L0 +000000000000050a l .text 0000000000000000 .L0 +000000000000050c l .text 0000000000000000 .L0 +000000000000050e l .text 0000000000000000 .L0 +000000000000050e l .text 0000000000000000 .L0 +000000000000050e l .text 0000000000000000 .L0 +0000000000000510 l .text 0000000000000000 .L0 +0000000000000514 l .text 0000000000000000 .L0 +00000000000003f8 l .debug_frame 0000000000000000 .L0 +000000000000050a l .text 0000000000000000 .L0 +0000000000000514 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_errno.c +0000000000000008 l O .bss 0000000000000004 g_errno +0000000000000008 l .bss 0000000000000000 .LANCHOR0 +000000000000051a l .text 0000000000000000 .L0 +0000000000000528 l .text 0000000000000000 .L1 +0000000000001153 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000002af4 l .debug_str 0000000000000000 .LASF85 +0000000000002e29 l .debug_str 0000000000000000 .LASF86 +0000000000002c68 l .debug_str 0000000000000000 .LASF87 +0000000000000320 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000001cbc l .debug_line 0000000000000000 .Ldebug_line0 +0000000000002bf8 l .debug_str 0000000000000000 .LASF0 +0000000000002a6f l .debug_str 0000000000000000 .LASF2 +0000000000002cbe l .debug_str 0000000000000000 .LASF1 +0000000000002ccc l .debug_str 0000000000000000 .LASF3 +0000000000002a7f l .debug_str 0000000000000000 .LASF4 +0000000000002e47 l .debug_str 0000000000000000 .LASF5 +0000000000002d77 l .debug_str 0000000000000000 .LASF6 +0000000000002cad l .debug_str 0000000000000000 .LASF7 +0000000000002e5e l .debug_str 0000000000000000 .LASF8 +0000000000002d66 l .debug_str 0000000000000000 .LASF9 +0000000000002d18 l .debug_str 0000000000000000 .LASF10 +0000000000002e90 l .debug_str 0000000000000000 .LASF11 +0000000000002e09 l .debug_str 0000000000000000 .LASF12 +0000000000002c1f l .debug_str 0000000000000000 .LASF13 +0000000000002bb3 l .debug_str 0000000000000000 .LASF14 +0000000000002d8a l .debug_str 0000000000000000 .LASF15 +0000000000002d06 l .debug_str 0000000000000000 .LASF16 +0000000000002d6f l .debug_str 0000000000000000 .LASF17 +0000000000002de4 l .debug_str 0000000000000000 .LASF18 +0000000000002a89 l .debug_str 0000000000000000 .LASF19 +0000000000002adc l .debug_str 0000000000000000 .LASF20 +0000000000002dde l .debug_str 0000000000000000 .LASF21 +0000000000002c8a l .debug_str 0000000000000000 .LASF22 +0000000000002d59 l .debug_str 0000000000000000 .LASF23 +0000000000002c11 l .debug_str 0000000000000000 .LASF24 +0000000000002ca1 l .debug_str 0000000000000000 .LASF25 +0000000000002c96 l .debug_str 0000000000000000 .LASF29 +0000000000002c90 l .debug_str 0000000000000000 .LASF26 +0000000000002bd1 l .debug_str 0000000000000000 .LASF27 +0000000000002da0 l .debug_str 0000000000000000 .LASF28 +0000000000002e74 l .debug_str 0000000000000000 .LASF30 +0000000000002bae l .debug_str 0000000000000000 .LASF31 +0000000000002cd5 l .debug_str 0000000000000000 .LASF32 +0000000000002e1e l .debug_str 0000000000000000 .LASF33 +0000000000002bd7 l .debug_str 0000000000000000 .LASF34 +0000000000002cda l .debug_str 0000000000000000 .LASF35 +0000000000002cf5 l .debug_str 0000000000000000 .LASF36 +0000000000002ab3 l .debug_str 0000000000000000 .LASF37 +0000000000002bdd l .debug_str 0000000000000000 .LASF38 +0000000000002d92 l .debug_str 0000000000000000 .LASF39 +0000000000002d5e l .debug_str 0000000000000000 .LASF40 +0000000000002c36 l .debug_str 0000000000000000 .LASF41 +0000000000002c54 l .debug_str 0000000000000000 .LASF42 +0000000000002cec l .debug_str 0000000000000000 .LASF43 +0000000000002d39 l .debug_str 0000000000000000 .LASF44 +0000000000002df8 l .debug_str 0000000000000000 .LASF45 +0000000000002e87 l .debug_str 0000000000000000 .LASF46 +0000000000002c3d l .debug_str 0000000000000000 .LASF47 +0000000000002a9b l .debug_str 0000000000000000 .LASF48 +0000000000002db5 l .debug_str 0000000000000000 .LASF49 +0000000000002ac4 l .debug_str 0000000000000000 .LASF50 +0000000000002bbb l .debug_str 0000000000000000 .LASF51 +0000000000002c0c l .debug_str 0000000000000000 .LASF52 +0000000000002a5d l .debug_str 0000000000000000 .LASF53 +0000000000002e11 l .debug_str 0000000000000000 .LASF54 +0000000000002a4f l .debug_str 0000000000000000 .LASF55 +0000000000002c5c l .debug_str 0000000000000000 .LASF56 +0000000000002d98 l .debug_str 0000000000000000 .LASF57 +0000000000002e16 l .debug_str 0000000000000000 .LASF58 +0000000000002dab l .debug_str 0000000000000000 .LASF59 +0000000000002dee l .debug_str 0000000000000000 .LASF60 +0000000000002e3b l .debug_str 0000000000000000 .LASF61 +0000000000002ba4 l .debug_str 0000000000000000 .LASF62 +0000000000002bee l .debug_str 0000000000000000 .LASF63 +0000000000002be3 l .debug_str 0000000000000000 .LASF64 +0000000000002dcc l .debug_str 0000000000000000 .LASF65 +0000000000002d2a l .debug_str 0000000000000000 .LASF66 +0000000000002e6b l .debug_str 0000000000000000 .LASF67 +0000000000002e51 l .debug_str 0000000000000000 .LASF68 +0000000000002a63 l .debug_str 0000000000000000 .LASF69 +0000000000002a90 l .debug_str 0000000000000000 .LASF70 +0000000000002cb6 l .debug_str 0000000000000000 .LASF71 +0000000000002a78 l .debug_str 0000000000000000 .LASF72 +0000000000002a55 l .debug_str 0000000000000000 .LASF73 +0000000000002dd6 l .debug_str 0000000000000000 .LASF74 +0000000000002d3f l .debug_str 0000000000000000 .LASF75 +0000000000002aec l .debug_str 0000000000000000 .LASF76 +0000000000002d34 l .debug_str 0000000000000000 .LASF77 +0000000000002d4b l .debug_str 0000000000000000 .LASF78 +0000000000002cfb l .debug_str 0000000000000000 .LASF79 +0000000000002abc l .debug_str 0000000000000000 .LASF80 +0000000000002dfe l .debug_str 0000000000000000 .LASF81 +0000000000002d0f l .debug_str 0000000000000000 .LASF82 +0000000000002c04 l .debug_str 0000000000000000 .LASF83 +0000000000002e7f l .debug_str 0000000000000000 .LASF88 +0000000000000514 l .text 0000000000000000 .LFB7 +000000000000052a l .text 0000000000000000 .LFE7 +0000000000002ae4 l .debug_str 0000000000000000 .LASF84 +0000000000000514 l .text 0000000000000000 .LBB4 +0000000000002ce3 l .debug_str 0000000000000000 .LASF89 +00000000000036a3 l .debug_info 0000000000000000 .Ldebug_info0 +0000000000000514 l .text 0000000000000000 .LBE4 +0000000000000516 l .text 0000000000000000 .LBB7 +0000000000000518 l .text 0000000000000000 .LBE7 +0000000000000514 l .text 0000000000000000 .L0 +0000000000000514 l .text 0000000000000000 .L0 +0000000000000514 l .text 0000000000000000 .L0 +0000000000000514 l .text 0000000000000000 .L0 +0000000000000514 l .text 0000000000000000 .L0 +0000000000000516 l .text 0000000000000000 .L0 +0000000000000518 l .text 0000000000000000 .L0 +0000000000000518 l .text 0000000000000000 .L0 +000000000000051a l .text 0000000000000000 .L0 +000000000000051a l .text 0000000000000000 .L0 +0000000000000524 l .text 0000000000000000 .L0 +0000000000000528 l .text 0000000000000000 .L0 +000000000000052a l .text 0000000000000000 .L0 +0000000000000420 l .debug_frame 0000000000000000 .L0 +0000000000000514 l .text 0000000000000000 .L0 +000000000000052a l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_mutex.c +0000000000000556 l .text 0000000000000000 .L2 +000000000000057a l .text 0000000000000000 .L5 +00000000000005c0 l .text 0000000000000000 .L11 +00000000000005ba l .text 0000000000000000 .L10 +0000000000000e30 l .rodata 0000000000000000 .LC0 +000000000000060c l .text 0000000000000000 .L0 +0000000000000e48 l .rodata 0000000000000000 .LC1 +0000000000000618 l .text 0000000000000000 .L0 +000000000000060c l .text 0000000000000000 .L20 +0000000000000628 l .text 0000000000000000 .L15 +00000000000005e2 l .text 0000000000000000 .L18 +00000000000005fc l .text 0000000000000000 .L16 +0000000000000646 l .text 0000000000000000 .L0 +0000000000000652 l .text 0000000000000000 .L0 +0000000000000662 l .text 0000000000000000 .L23 +000000000000067c l .text 0000000000000000 .L24 +00000000000006c4 l .text 0000000000000000 .L29 +00000000000006ea l .text 0000000000000000 .L28 +0000000000000e60 l .rodata 0000000000000000 .LC2 +0000000000000716 l .text 0000000000000000 .L0 +0000000000000722 l .text 0000000000000000 .L0 +000000000000075c l .text 0000000000000000 .L34 +0000000000000732 l .text 0000000000000000 .L33 +0000000000000750 l .text 0000000000000000 .L32 +0000000000000798 l .text 0000000000000000 .L38 +000000000000078e l .text 0000000000000000 .L37 +00000000000007a6 l .text 0000000000000000 .L41 +00000000000007ce l .text 0000000000000000 .L44 +0000000000000e78 l .rodata 0000000000000000 .LC3 +0000000000000812 l .text 0000000000000000 .L0 +000000000000081e l .text 0000000000000000 .L0 +000000000000080a l .text 0000000000000000 .L49 +0000000000000832 l .text 0000000000000000 .L50 +000000000000082e l .text 0000000000000000 .L51 +0000000000000866 l .text 0000000000000000 .L0 +0000000000000872 l .text 0000000000000000 .L0 +000000000000085e l .text 0000000000000000 .L56 +0000000000000886 l .text 0000000000000000 .L57 +0000000000000882 l .text 0000000000000000 .L58 +00000000000008be l .text 0000000000000000 .L0 +00000000000008ca l .text 0000000000000000 .L0 +00000000000008b6 l .text 0000000000000000 .L63 +00000000000008de l .text 0000000000000000 .L64 +00000000000008da l .text 0000000000000000 .L65 +0000000000000e98 l .rodata 0000000000000000 .LC4 +00000000000008f0 l .text 0000000000000000 .L0 +00000000000008fc l .text 0000000000000000 .L0 +000000000000090c l .text 0000000000000000 .L70 +000000000000092c l .text 0000000000000000 .L71 +0000000000000974 l .text 0000000000000000 .L76 +000000000000096a l .text 0000000000000000 .L75 +000000000000099e l .text 0000000000000000 .L80 +0000000000000994 l .text 0000000000000000 .L79 +00000000000012d5 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000002f26 l .debug_str 0000000000000000 .LASF82 +00000000000032cd l .debug_str 0000000000000000 .LASF83 +0000000000003043 l .debug_str 0000000000000000 .LASF84 +0000000000000370 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000001e8f l .debug_line 0000000000000000 .Ldebug_line0 +000000000000311a l .debug_str 0000000000000000 .LASF0 +0000000000002ea7 l .debug_str 0000000000000000 .LASF2 +00000000000030eb l .debug_str 0000000000000000 .LASF1 +00000000000031f9 l .debug_str 0000000000000000 .LASF3 +0000000000002f1c l .debug_str 0000000000000000 .LASF4 +000000000000319a l .debug_str 0000000000000000 .LASF5 +00000000000032e7 l .debug_str 0000000000000000 .LASF6 +0000000000003304 l .debug_str 0000000000000000 .LASF7 +00000000000031cc l .debug_str 0000000000000000 .LASF8 +0000000000003224 l .debug_str 0000000000000000 .LASF9 +000000000000312c l .debug_str 0000000000000000 .LASF10 +0000000000002fee l .debug_str 0000000000000000 .LASF11 +00000000000031d5 l .debug_str 0000000000000000 .LASF12 +000000000000314c l .debug_str 0000000000000000 .LASF13 +0000000000003244 l .debug_str 0000000000000000 .LASF14 +000000000000310a l .debug_str 0000000000000000 .LASF15 +00000000000031c0 l .debug_str 0000000000000000 .LASF16 +00000000000030a1 l .debug_str 0000000000000000 .LASF17 +0000000000003035 l .debug_str 0000000000000000 .LASF18 +0000000000002ef9 l .debug_str 0000000000000000 .LASF19 +00000000000032de l .debug_str 0000000000000000 .LASF22 +0000000000002eb5 l .debug_str 0000000000000000 .LASF20 +0000000000002e99 l .debug_str 0000000000000000 .LASF21 +00000000000031e3 l .debug_str 0000000000000000 .LASF23 +00000000000030a7 l .debug_str 0000000000000000 .LASF24 +0000000000002ea1 l .debug_str 0000000000000000 .LASF25 +00000000000031ee l .debug_str 0000000000000000 .LASF26 +0000000000003329 l .debug_str 0000000000000000 .LASF27 +0000000000002fe9 l .debug_str 0000000000000000 .LASF28 +000000000000318f l .debug_str 0000000000000000 .LASF29 +00000000000032c2 l .debug_str 0000000000000000 .LASF30 +0000000000002ff6 l .debug_str 0000000000000000 .LASF31 +0000000000003111 l .debug_str 0000000000000000 .LASF32 +0000000000003126 l .debug_str 0000000000000000 .LASF33 +0000000000002f05 l .debug_str 0000000000000000 .LASF34 +0000000000002ffc l .debug_str 0000000000000000 .LASF35 +00000000000031dd l .debug_str 0000000000000000 .LASF36 +0000000000003002 l .debug_str 0000000000000000 .LASF37 +0000000000003076 l .debug_str 0000000000000000 .LASF38 +0000000000003092 l .debug_str 0000000000000000 .LASF39 +0000000000003334 l .debug_str 0000000000000000 .LASF40 +0000000000003194 l .debug_str 0000000000000000 .LASF41 +0000000000003278 l .debug_str 0000000000000000 .LASF42 +000000000000333d l .debug_str 0000000000000000 .LASF43 +000000000000307d l .debug_str 0000000000000000 .LASF45 +0000000000000978 l .text 0000000000000000 .LFB24 +00000000000009a2 l .text 0000000000000000 .LFE24 +000000000000309a l .debug_str 0000000000000000 .LASF44 +0000000000001355 l .debug_loc 0000000000000000 .LLST43 +00000000000013ca l .debug_loc 0000000000000000 .LLST44 +0000000000001416 l .debug_loc 0000000000000000 .LLST45 +000000000000098e l .text 0000000000000000 .LVL108 +00000000000032f1 l .debug_str 0000000000000000 .LASF46 +0000000000000936 l .text 0000000000000000 .LFB23 +0000000000000978 l .text 0000000000000000 .LFE23 +0000000000001474 l .debug_loc 0000000000000000 .LLST39 +00000000000014d3 l .debug_loc 0000000000000000 .LLST40 +0000000000001532 l .debug_loc 0000000000000000 .LLST41 +0000000000000944 l .text 0000000000000000 .LBB38 +000000000000157d l .debug_loc 0000000000000000 .LLST42 +000000000000094e l .text 0000000000000000 .LVL101 +0000000000000962 l .text 0000000000000000 .LVL102 +00000000000030db l .debug_str 0000000000000000 .LASF47 +00000000000008e6 l .text 0000000000000000 .LFB22 +0000000000000936 l .text 0000000000000000 .LFE22 +00000000000015b3 l .debug_loc 0000000000000000 .LLST37 +0000000000001628 l .debug_loc 0000000000000000 .LLST38 +000000000000090c l .text 0000000000000000 .LVL93 +0000000000000920 l .text 0000000000000000 .LVL95 +0000000000003022 l .debug_str 0000000000000000 .LASF48 +000000000000088e l .text 0000000000000000 .LFB21 +00000000000008e6 l .text 0000000000000000 .LFE21 +0000000000001672 l .debug_loc 0000000000000000 .LLST33 +0000000000003321 l .debug_str 0000000000000000 .LASF49 +00000000000016be l .debug_loc 0000000000000000 .LLST34 +00000000000016f7 l .debug_loc 0000000000000000 .LLST35 +0000000000000898 l .text 0000000000000000 .LBB36 +00000000000008a2 l .text 0000000000000000 .LBE36 +000000000000172e l .debug_loc 0000000000000000 .LLST36 +00000000000008a0 l .text 0000000000000000 .LVL86 +00000000000008b2 l .text 0000000000000000 .LVL87 +00000000000008da l .text 0000000000000000 .LVL89 +00000000000030f9 l .debug_str 0000000000000000 .LASF50 +000000000000083a l .text 0000000000000000 .LFB20 +000000000000088e l .text 0000000000000000 .LFE20 +0000000000001764 l .debug_loc 0000000000000000 .LLST30 +00000000000017b0 l .debug_loc 0000000000000000 .LLST31 +0000000000000842 l .text 0000000000000000 .LBB34 +000000000000084e l .text 0000000000000000 .LBE34 +00000000000017e7 l .debug_loc 0000000000000000 .LLST32 +000000000000084a l .text 0000000000000000 .LVL79 +000000000000085a l .text 0000000000000000 .LVL80 +0000000000000882 l .text 0000000000000000 .LVL82 +0000000000003236 l .debug_str 0000000000000000 .LASF51 +00000000000007e6 l .text 0000000000000000 .LFB19 +000000000000083a l .text 0000000000000000 .LFE19 +000000000000181d l .debug_loc 0000000000000000 .LLST27 +0000000000001869 l .debug_loc 0000000000000000 .LLST28 +00000000000007ee l .text 0000000000000000 .LBB32 +00000000000007fa l .text 0000000000000000 .LBE32 +00000000000018a0 l .debug_loc 0000000000000000 .LLST29 +00000000000007f6 l .text 0000000000000000 .LVL72 +0000000000000806 l .text 0000000000000000 .LVL73 +000000000000082e l .text 0000000000000000 .LVL75 +0000000000002fd6 l .debug_str 0000000000000000 .LASF52 +00000000000007de l .text 0000000000000000 .LFB18 +00000000000007e6 l .text 0000000000000000 .LFE18 +00000000000018d6 l .debug_loc 0000000000000000 .LLST26 +00000000000007e6 l .text 0000000000000000 .LVL69 +0000000000003202 l .debug_str 0000000000000000 .LASF58 +000000000000324a l .debug_str 0000000000000000 .LASF53 +00000000000007b6 l .text 0000000000000000 .LFB16 +00000000000007d6 l .text 0000000000000000 .LFE16 +000000000000190f l .debug_loc 0000000000000000 .LLST24 +00000000000007c6 l .text 0000000000000000 .LVL64 +0000000000002f0e l .debug_str 0000000000000000 .LASF54 +00000000000007aa l .text 0000000000000000 .LFB15 +00000000000007b6 l .text 0000000000000000 .LFE15 +000000000000195b l .debug_loc 0000000000000000 .LLST23 +00000000000007b6 l .text 0000000000000000 .LVL62 +000000000000327e l .debug_str 0000000000000000 .LASF55 +000000000000079c l .text 0000000000000000 .LFB14 +00000000000007aa l .text 0000000000000000 .LFE14 +0000000000001994 l .debug_loc 0000000000000000 .LLST21 +00000000000031c5 l .debug_str 0000000000000000 .LASF56 +00000000000019f6 l .debug_loc 0000000000000000 .LLST22 +00000000000007a6 l .text 0000000000000000 .LVL59 +00000000000032b0 l .debug_str 0000000000000000 .LASF57 +0000000000000760 l .text 0000000000000000 .LFB13 +000000000000079c l .text 0000000000000000 .LFE13 +0000000000001a42 l .debug_loc 0000000000000000 .LLST18 +0000000000001aa1 l .debug_loc 0000000000000000 .LLST19 +0000000000001b00 l .debug_loc 0000000000000000 .LLST20 +0000000000000778 l .text 0000000000000000 .LVL52 +0000000000000784 l .text 0000000000000000 .LVL53 +000000000000325b l .debug_str 0000000000000000 .LASF59 +0000000000003155 l .debug_str 0000000000000000 .LASF60 +0000000000000688 l .text 0000000000000000 .LFB11 +00000000000006fa l .text 0000000000000000 .LFE11 +0000000000001b4b l .debug_loc 0000000000000000 .LLST12 +0000000000001b97 l .debug_loc 0000000000000000 .LLST13 +0000000000001bd0 l .debug_loc 0000000000000000 .LLST14 +000000000000301c l .debug_str 0000000000000000 .LASF61 +0000000000002eb0 l .debug_str 0000000000000000 .LASF62 +00000000000006a4 l .text 0000000000000000 .LVL35 +00000000000006b0 l .text 0000000000000000 .LVL36 +00000000000006be l .text 0000000000000000 .LVL37 +00000000000006d2 l .text 0000000000000000 .LVL38 +00000000000006e8 l .text 0000000000000000 .LVL40 +0000000000003292 l .debug_str 0000000000000000 .LASF63 +0000000000003182 l .debug_str 0000000000000000 .LASF64 +000000000000300a l .debug_str 0000000000000000 .LASF65 +00000000000005a2 l .text 0000000000000000 .LFB8 +00000000000005c4 l .text 0000000000000000 .LFE8 +0000000000001bf3 l .debug_loc 0000000000000000 .LLST4 +0000000000001c2c l .debug_loc 0000000000000000 .LLST5 +00000000000005b0 l .text 0000000000000000 .LVL12 +0000000000002ebc l .debug_str 0000000000000000 .LASF66 +0000000000000582 l .text 0000000000000000 .LFB7 +00000000000005a2 l .text 0000000000000000 .LFE7 +0000000000001c62 l .debug_loc 0000000000000000 .LLST3 +0000000000000592 l .text 0000000000000000 .LVL10 +0000000000002ede l .debug_str 0000000000000000 .LASF67 +0000000000000562 l .text 0000000000000000 .LFB6 +0000000000000582 l .text 0000000000000000 .LFE6 +0000000000001c9b l .debug_loc 0000000000000000 .LLST2 +0000000000000572 l .text 0000000000000000 .LVL7 +0000000000003175 l .debug_str 0000000000000000 .LASF68 +000000000000052a l .text 0000000000000000 .LFB5 +0000000000000562 l .text 0000000000000000 .LFE5 +0000000000001ce7 l .debug_loc 0000000000000000 .LLST0 +0000000000001d33 l .debug_loc 0000000000000000 .LLST1 +0000000000000540 l .text 0000000000000000 .LVL1 +0000000000000556 l .text 0000000000000000 .LVL4 +0000000000003065 l .debug_str 0000000000000000 .LASF85 +00000000000005c4 l .text 0000000000000000 .LFB9 +0000000000000632 l .text 0000000000000000 .LFE9 +0000000000001d56 l .debug_loc 0000000000000000 .LLST6 +0000000000001db5 l .debug_loc 0000000000000000 .LLST7 +000000000000060c l .text 0000000000000000 .LBB16 +0000000000000628 l .text 0000000000000000 .LBE16 +0000000000001deb l .debug_loc 0000000000000000 .LLST8 +0000000000000628 l .text 0000000000000000 .LVL23 +00000000000005da l .text 0000000000000000 .LVL17 +00000000000005ec l .text 0000000000000000 .LVL18 +00000000000005fa l .text 0000000000000000 .LVL20 +0000000000000632 l .text 0000000000000000 .LFB10 +0000000000000688 l .text 0000000000000000 .LFE10 +0000000000001e0e l .debug_loc 0000000000000000 .LLST9 +0000000000001e5a l .debug_loc 0000000000000000 .LLST10 +0000000000000646 l .text 0000000000000000 .LBB20 +0000000000000662 l .text 0000000000000000 .LBE20 +0000000000001e7d l .debug_loc 0000000000000000 .LLST11 +0000000000000662 l .text 0000000000000000 .LVL27 +0000000000000644 l .text 0000000000000000 .LVL25 +000000000000066c l .text 0000000000000000 .LVL28 +000000000000067a l .text 0000000000000000 .LVL30 +00000000000006fa l .text 0000000000000000 .LFB12 +0000000000000760 l .text 0000000000000000 .LFE12 +0000000000001ea0 l .debug_loc 0000000000000000 .LLST15 +0000000000001eff l .debug_loc 0000000000000000 .LLST16 +00000000000006fa l .text 0000000000000000 .LBB28 +00000000000006fa l .text 0000000000000000 .LBE28 +0000000000000716 l .text 0000000000000000 .LBB30 +0000000000000732 l .text 0000000000000000 .LBE30 +0000000000001f22 l .debug_loc 0000000000000000 .LLST17 +0000000000000732 l .text 0000000000000000 .LVL45 +0000000000000714 l .text 0000000000000000 .LVL43 +0000000000000740 l .text 0000000000000000 .LVL46 +000000000000074e l .text 0000000000000000 .LVL48 +00000000000007d6 l .text 0000000000000000 .LFB17 +00000000000007de l .text 0000000000000000 .LFE17 +0000000000001f45 l .debug_loc 0000000000000000 .LLST25 +00000000000007de l .text 0000000000000000 .LVL67 +0000000000003143 l .debug_str 0000000000000000 .LASF69 +0000000000003167 l .debug_str 0000000000000000 .LASF70 +0000000000003213 l .debug_str 0000000000000000 .LASF71 +00000000000031ad l .debug_str 0000000000000000 .LASF72 +0000000000003311 l .debug_str 0000000000000000 .LASF73 +0000000000002ed7 l .debug_str 0000000000000000 .LASF74 +00000000000030cb l .debug_str 0000000000000000 .LASF75 +00000000000032a2 l .debug_str 0000000000000000 .LASF76 +0000000000002ecc l .debug_str 0000000000000000 .LASF77 +00000000000030b8 l .debug_str 0000000000000000 .LASF78 +0000000000002eee l .debug_str 0000000000000000 .LASF79 +000000000000326a l .debug_str 0000000000000000 .LASF80 +00000000000030ad l .debug_str 0000000000000000 .LASF81 +0000000000000978 l .text 0000000000000000 .LVL107 +000000000000099a l .text 0000000000000000 .LVL109 +000000000000099e l .text 0000000000000000 .LVL110 +00000000000009a0 l .text 0000000000000000 .LVL111 +0000000000000936 l .text 0000000000000000 .LVL99 +000000000000096e l .text 0000000000000000 .LVL104 +0000000000000974 l .text 0000000000000000 .LVL106 +0000000000000970 l .text 0000000000000000 .LVL105 +0000000000000944 l .text 0000000000000000 .LVL100 +00000000000008e6 l .text 0000000000000000 .LVL91 +0000000000000904 l .text 0000000000000000 .LVL92 +0000000000000918 l .text 0000000000000000 .LVL94 +0000000000000930 l .text 0000000000000000 .LVL98 +0000000000000922 l .text 0000000000000000 .LVL96 +000000000000092c l .text 0000000000000000 .LVL97 +000000000000088e l .text 0000000000000000 .LVL84 +00000000000008e2 l .text 0000000000000000 .LVL90 +00000000000008b6 l .text 0000000000000000 .LVL88 +0000000000000898 l .text 0000000000000000 .LVL85 +000000000000083a l .text 0000000000000000 .LVL77 +000000000000088a l .text 0000000000000000 .LVL83 +000000000000085e l .text 0000000000000000 .LVL81 +0000000000000842 l .text 0000000000000000 .LVL78 +00000000000007e6 l .text 0000000000000000 .LVL70 +0000000000000836 l .text 0000000000000000 .LVL76 +000000000000080a l .text 0000000000000000 .LVL74 +00000000000007ee l .text 0000000000000000 .LVL71 +00000000000007de l .text 0000000000000000 .LVL68 +00000000000007b6 l .text 0000000000000000 .LVL63 +00000000000007d2 l .text 0000000000000000 .LVL65 +00000000000007aa l .text 0000000000000000 .LVL61 +000000000000079c l .text 0000000000000000 .LVL58 +00000000000007a8 l .text 0000000000000000 .LVL60 +0000000000000760 l .text 0000000000000000 .LVL51 +0000000000000794 l .text 0000000000000000 .LVL56 +0000000000000798 l .text 0000000000000000 .LVL57 +0000000000000792 l .text 0000000000000000 .LVL55 +0000000000000688 l .text 0000000000000000 .LVL32 +0000000000000696 l .text 0000000000000000 .LVL34 +00000000000006f2 l .text 0000000000000000 .LVL41 +0000000000000694 l .text 0000000000000000 .LVL33 +00000000000006d4 l .text 0000000000000000 .LVL39 +00000000000005a2 l .text 0000000000000000 .LVL11 +00000000000005b6 l .text 0000000000000000 .LVL13 +00000000000005c0 l .text 0000000000000000 .LVL14 +00000000000005c2 l .text 0000000000000000 .LVL15 +0000000000000582 l .text 0000000000000000 .LVL9 +0000000000000562 l .text 0000000000000000 .LVL6 +000000000000057e l .text 0000000000000000 .LVL8 +000000000000052a l .text 0000000000000000 .LVL0 +000000000000055e l .text 0000000000000000 .LVL5 +0000000000000542 l .text 0000000000000000 .LVL2 +000000000000054e l .text 0000000000000000 .LVL3 +00000000000005c4 l .text 0000000000000000 .LVL16 +0000000000000604 l .text 0000000000000000 .LVL21 +000000000000060c l .text 0000000000000000 .LVL22 +00000000000005ee l .text 0000000000000000 .LVL19 +0000000000000632 l .text 0000000000000000 .LVL24 +0000000000000684 l .text 0000000000000000 .LVL31 +000000000000066e l .text 0000000000000000 .LVL29 +0000000000000646 l .text 0000000000000000 .LVL26 +00000000000006fa l .text 0000000000000000 .LVL42 +0000000000000750 l .text 0000000000000000 .LVL49 +000000000000075c l .text 0000000000000000 .LVL50 +0000000000000742 l .text 0000000000000000 .LVL47 +0000000000000716 l .text 0000000000000000 .LVL44 +00000000000007d6 l .text 0000000000000000 .LVL66 +0000000000003c64 l .debug_info 0000000000000000 .Ldebug_info0 +0000000000000944 l .text 0000000000000000 .LBE38 +0000000000000946 l .text 0000000000000000 .LBB41 +000000000000094e l .text 0000000000000000 .LBE41 +000000000000052a l .text 0000000000000000 .L0 +0000000000000562 l .text 0000000000000000 .L0 +0000000000000582 l .text 0000000000000000 .L0 +00000000000005a2 l .text 0000000000000000 .L0 +00000000000005c4 l .text 0000000000000000 .L0 +0000000000000632 l .text 0000000000000000 .L0 +0000000000000688 l .text 0000000000000000 .L0 +00000000000006fa l .text 0000000000000000 .L0 +0000000000000760 l .text 0000000000000000 .L0 +000000000000079c l .text 0000000000000000 .L0 +00000000000007aa l .text 0000000000000000 .L0 +00000000000007b6 l .text 0000000000000000 .L0 +00000000000007d6 l .text 0000000000000000 .L0 +00000000000007de l .text 0000000000000000 .L0 +00000000000007e6 l .text 0000000000000000 .L0 +000000000000083a l .text 0000000000000000 .L0 +000000000000088e l .text 0000000000000000 .L0 +00000000000008e6 l .text 0000000000000000 .L0 +0000000000000936 l .text 0000000000000000 .L0 +0000000000000978 l .text 0000000000000000 .L0 +000000000000052a l .text 0000000000000000 .L0 +000000000000052a l .text 0000000000000000 .L0 +000000000000052c l .text 0000000000000000 .L0 +0000000000000530 l .text 0000000000000000 .L0 +0000000000000536 l .text 0000000000000000 .L0 +0000000000000538 l .text 0000000000000000 .L0 +0000000000000542 l .text 0000000000000000 .L0 +0000000000000542 l .text 0000000000000000 .L0 +0000000000000546 l .text 0000000000000000 .L0 +0000000000000546 l .text 0000000000000000 .L0 +000000000000054a l .text 0000000000000000 .L0 +0000000000000556 l .text 0000000000000000 .L0 +0000000000000556 l .text 0000000000000000 .L0 +0000000000000562 l .text 0000000000000000 .L0 +0000000000000562 l .text 0000000000000000 .L0 +0000000000000562 l .text 0000000000000000 .L0 +0000000000000568 l .text 0000000000000000 .L0 +000000000000056a l .text 0000000000000000 .L0 +0000000000000572 l .text 0000000000000000 .L0 +0000000000000572 l .text 0000000000000000 .L0 +0000000000000576 l .text 0000000000000000 .L0 +0000000000000576 l .text 0000000000000000 .L0 +000000000000057a l .text 0000000000000000 .L0 +000000000000057a l .text 0000000000000000 .L0 +0000000000000582 l .text 0000000000000000 .L0 +0000000000000582 l .text 0000000000000000 .L0 +0000000000000582 l .text 0000000000000000 .L0 +0000000000000588 l .text 0000000000000000 .L0 +000000000000058a l .text 0000000000000000 .L0 +0000000000000592 l .text 0000000000000000 .L0 +0000000000000594 l .text 0000000000000000 .L0 +0000000000000598 l .text 0000000000000000 .L0 +00000000000005a2 l .text 0000000000000000 .L0 +00000000000005a2 l .text 0000000000000000 .L0 +00000000000005a2 l .text 0000000000000000 .L0 +00000000000005a2 l .text 0000000000000000 .L0 +00000000000005a2 l .text 0000000000000000 .L0 +00000000000005a4 l .text 0000000000000000 .L0 +00000000000005a6 l .text 0000000000000000 .L0 +00000000000005a8 l .text 0000000000000000 .L0 +00000000000005b0 l .text 0000000000000000 .L0 +00000000000005b0 l .text 0000000000000000 .L0 +00000000000005b4 l .text 0000000000000000 .L0 +00000000000005ba l .text 0000000000000000 .L0 +00000000000005c0 l .text 0000000000000000 .L0 +00000000000005c4 l .text 0000000000000000 .L0 +00000000000005c4 l .text 0000000000000000 .L0 +00000000000005c4 l .text 0000000000000000 .L0 +00000000000005c4 l .text 0000000000000000 .L0 +00000000000005c4 l .text 0000000000000000 .L0 +00000000000005d0 l .text 0000000000000000 .L0 +00000000000005d2 l .text 0000000000000000 .L0 +00000000000005dc l .text 0000000000000000 .L0 +00000000000005de l .text 0000000000000000 .L0 +00000000000005e2 l .text 0000000000000000 .L0 +00000000000005e2 l .text 0000000000000000 .L0 +00000000000005e2 l .text 0000000000000000 .L0 +00000000000005e2 l .text 0000000000000000 .L0 +00000000000005ee l .text 0000000000000000 .L0 +00000000000005ee l .text 0000000000000000 .L0 +00000000000005f2 l .text 0000000000000000 .L0 +00000000000005f2 l .text 0000000000000000 .L0 +00000000000005fa l .text 0000000000000000 .L0 +00000000000005fc l .text 0000000000000000 .L0 +00000000000005fc l .text 0000000000000000 .L0 +00000000000005fc l .text 0000000000000000 .L0 +000000000000060c l .text 0000000000000000 .L0 +0000000000000628 l .text 0000000000000000 .L0 +0000000000000628 l .text 0000000000000000 .L0 +000000000000062c l .text 0000000000000000 .L0 +0000000000000632 l .text 0000000000000000 .L0 +0000000000000632 l .text 0000000000000000 .L0 +0000000000000632 l .text 0000000000000000 .L0 +0000000000000632 l .text 0000000000000000 .L0 +0000000000000632 l .text 0000000000000000 .L0 +000000000000063a l .text 0000000000000000 .L0 +000000000000063c l .text 0000000000000000 .L0 +0000000000000646 l .text 0000000000000000 .L0 +0000000000000662 l .text 0000000000000000 .L0 +0000000000000662 l .text 0000000000000000 .L0 +0000000000000662 l .text 0000000000000000 .L0 +000000000000066e l .text 0000000000000000 .L0 +000000000000066e l .text 0000000000000000 .L0 +0000000000000672 l .text 0000000000000000 .L0 +0000000000000672 l .text 0000000000000000 .L0 +000000000000067a l .text 0000000000000000 .L0 +000000000000067c l .text 0000000000000000 .L0 +000000000000067c l .text 0000000000000000 .L0 +0000000000000688 l .text 0000000000000000 .L0 +0000000000000688 l .text 0000000000000000 .L0 +0000000000000688 l .text 0000000000000000 .L0 +0000000000000688 l .text 0000000000000000 .L0 +0000000000000688 l .text 0000000000000000 .L0 +0000000000000688 l .text 0000000000000000 .L0 +0000000000000688 l .text 0000000000000000 .L0 +0000000000000692 l .text 0000000000000000 .L0 +0000000000000696 l .text 0000000000000000 .L0 +000000000000069c l .text 0000000000000000 .L0 +00000000000006a4 l .text 0000000000000000 .L0 +00000000000006b0 l .text 0000000000000000 .L0 +00000000000006be l .text 0000000000000000 .L0 +00000000000006c0 l .text 0000000000000000 .L0 +00000000000006c4 l .text 0000000000000000 .L0 +00000000000006c4 l .text 0000000000000000 .L0 +00000000000006c4 l .text 0000000000000000 .L0 +00000000000006d4 l .text 0000000000000000 .L0 +00000000000006d4 l .text 0000000000000000 .L0 +00000000000006d8 l .text 0000000000000000 .L0 +00000000000006dc l .text 0000000000000000 .L0 +00000000000006dc l .text 0000000000000000 .L0 +00000000000006e0 l .text 0000000000000000 .L0 +00000000000006e0 l .text 0000000000000000 .L0 +00000000000006e8 l .text 0000000000000000 .L0 +00000000000006ea l .text 0000000000000000 .L0 +00000000000006ea l .text 0000000000000000 .L0 +00000000000006fa l .text 0000000000000000 .L0 +00000000000006fa l .text 0000000000000000 .L0 +00000000000006fa l .text 0000000000000000 .L0 +00000000000006fa l .text 0000000000000000 .L0 +00000000000006fa l .text 0000000000000000 .L0 +0000000000000702 l .text 0000000000000000 .L0 +000000000000070c l .text 0000000000000000 .L0 +000000000000070c l .text 0000000000000000 .L0 +0000000000000716 l .text 0000000000000000 .L0 +0000000000000732 l .text 0000000000000000 .L0 +0000000000000732 l .text 0000000000000000 .L0 +0000000000000732 l .text 0000000000000000 .L0 +0000000000000736 l .text 0000000000000000 .L0 +0000000000000736 l .text 0000000000000000 .L0 +0000000000000742 l .text 0000000000000000 .L0 +0000000000000742 l .text 0000000000000000 .L0 +0000000000000746 l .text 0000000000000000 .L0 +0000000000000746 l .text 0000000000000000 .L0 +000000000000074e l .text 0000000000000000 .L0 +0000000000000750 l .text 0000000000000000 .L0 +000000000000075c l .text 0000000000000000 .L0 +0000000000000760 l .text 0000000000000000 .L0 +0000000000000760 l .text 0000000000000000 .L0 +0000000000000760 l .text 0000000000000000 .L0 +0000000000000760 l .text 0000000000000000 .L0 +0000000000000762 l .text 0000000000000000 .L0 +0000000000000766 l .text 0000000000000000 .L0 +0000000000000766 l .text 0000000000000000 .L0 +000000000000076c l .text 0000000000000000 .L0 +0000000000000770 l .text 0000000000000000 .L0 +0000000000000778 l .text 0000000000000000 .L0 +000000000000077a l .text 0000000000000000 .L0 +000000000000077a l .text 0000000000000000 .L0 +0000000000000784 l .text 0000000000000000 .L0 +0000000000000784 l .text 0000000000000000 .L0 +0000000000000788 l .text 0000000000000000 .L0 +0000000000000788 l .text 0000000000000000 .L0 +000000000000078e l .text 0000000000000000 .L0 +000000000000078e l .text 0000000000000000 .L0 +0000000000000798 l .text 0000000000000000 .L0 +000000000000079c l .text 0000000000000000 .L0 +000000000000079c l .text 0000000000000000 .L0 +000000000000079c l .text 0000000000000000 .L0 +000000000000079e l .text 0000000000000000 .L0 +00000000000007a6 l .text 0000000000000000 .L0 +00000000000007aa l .text 0000000000000000 .L0 +00000000000007aa l .text 0000000000000000 .L0 +00000000000007aa l .text 0000000000000000 .L0 +00000000000007ae l .text 0000000000000000 .L0 +00000000000007ae l .text 0000000000000000 .L0 +00000000000007b6 l .text 0000000000000000 .L0 +00000000000007b6 l .text 0000000000000000 .L0 +00000000000007b6 l .text 0000000000000000 .L0 +00000000000007bc l .text 0000000000000000 .L0 +00000000000007be l .text 0000000000000000 .L0 +00000000000007c6 l .text 0000000000000000 .L0 +00000000000007c6 l .text 0000000000000000 .L0 +00000000000007ca l .text 0000000000000000 .L0 +00000000000007ca l .text 0000000000000000 .L0 +00000000000007ce l .text 0000000000000000 .L0 +00000000000007ce l .text 0000000000000000 .L0 +00000000000007d6 l .text 0000000000000000 .L0 +00000000000007d6 l .text 0000000000000000 .L0 +00000000000007d6 l .text 0000000000000000 .L0 +00000000000007de l .text 0000000000000000 .L0 +00000000000007de l .text 0000000000000000 .L0 +00000000000007de l .text 0000000000000000 .L0 +00000000000007e6 l .text 0000000000000000 .L0 +00000000000007e6 l .text 0000000000000000 .L0 +00000000000007e6 l .text 0000000000000000 .L0 +00000000000007e6 l .text 0000000000000000 .L0 +00000000000007ec l .text 0000000000000000 .L0 +00000000000007ee l .text 0000000000000000 .L0 +00000000000007ee l .text 0000000000000000 .L0 +00000000000007fa l .text 0000000000000000 .L0 +00000000000007fc l .text 0000000000000000 .L0 +00000000000007fc l .text 0000000000000000 .L0 +0000000000000806 l .text 0000000000000000 .L0 +0000000000000806 l .text 0000000000000000 .L0 +000000000000080a l .text 0000000000000000 .L0 +000000000000080a l .text 0000000000000000 .L0 +0000000000000812 l .text 0000000000000000 .L0 +000000000000082e l .text 0000000000000000 .L0 +000000000000082e l .text 0000000000000000 .L0 +0000000000000832 l .text 0000000000000000 .L0 +0000000000000832 l .text 0000000000000000 .L0 +000000000000083a l .text 0000000000000000 .L0 +000000000000083a l .text 0000000000000000 .L0 +000000000000083a l .text 0000000000000000 .L0 +000000000000083a l .text 0000000000000000 .L0 +0000000000000840 l .text 0000000000000000 .L0 +0000000000000842 l .text 0000000000000000 .L0 +0000000000000842 l .text 0000000000000000 .L0 +000000000000084e l .text 0000000000000000 .L0 +0000000000000850 l .text 0000000000000000 .L0 +0000000000000850 l .text 0000000000000000 .L0 +000000000000085a l .text 0000000000000000 .L0 +000000000000085a l .text 0000000000000000 .L0 +000000000000085e l .text 0000000000000000 .L0 +000000000000085e l .text 0000000000000000 .L0 +0000000000000866 l .text 0000000000000000 .L0 +0000000000000882 l .text 0000000000000000 .L0 +0000000000000882 l .text 0000000000000000 .L0 +0000000000000886 l .text 0000000000000000 .L0 +0000000000000886 l .text 0000000000000000 .L0 +000000000000088e l .text 0000000000000000 .L0 +000000000000088e l .text 0000000000000000 .L0 +000000000000088e l .text 0000000000000000 .L0 +000000000000088e l .text 0000000000000000 .L0 +0000000000000896 l .text 0000000000000000 .L0 +0000000000000898 l .text 0000000000000000 .L0 +0000000000000898 l .text 0000000000000000 .L0 +00000000000008a2 l .text 0000000000000000 .L0 +00000000000008a8 l .text 0000000000000000 .L0 +00000000000008a8 l .text 0000000000000000 .L0 +00000000000008b2 l .text 0000000000000000 .L0 +00000000000008b2 l .text 0000000000000000 .L0 +00000000000008b6 l .text 0000000000000000 .L0 +00000000000008b6 l .text 0000000000000000 .L0 +00000000000008be l .text 0000000000000000 .L0 +00000000000008da l .text 0000000000000000 .L0 +00000000000008da l .text 0000000000000000 .L0 +00000000000008de l .text 0000000000000000 .L0 +00000000000008de l .text 0000000000000000 .L0 +00000000000008e6 l .text 0000000000000000 .L0 +00000000000008e6 l .text 0000000000000000 .L0 +00000000000008e6 l .text 0000000000000000 .L0 +00000000000008e6 l .text 0000000000000000 .L0 +00000000000008e6 l .text 0000000000000000 .L0 +00000000000008ec l .text 0000000000000000 .L0 +00000000000008f0 l .text 0000000000000000 .L0 +000000000000090c l .text 0000000000000000 .L0 +0000000000000910 l .text 0000000000000000 .L0 +0000000000000914 l .text 0000000000000000 .L0 +0000000000000914 l .text 0000000000000000 .L0 +0000000000000914 l .text 0000000000000000 .L0 +0000000000000916 l .text 0000000000000000 .L0 +0000000000000918 l .text 0000000000000000 .L0 +0000000000000918 l .text 0000000000000000 .L0 +0000000000000922 l .text 0000000000000000 .L0 +0000000000000922 l .text 0000000000000000 .L0 +0000000000000926 l .text 0000000000000000 .L0 +000000000000092c l .text 0000000000000000 .L0 +000000000000092c l .text 0000000000000000 .L0 +0000000000000936 l .text 0000000000000000 .L0 +0000000000000936 l .text 0000000000000000 .L0 +0000000000000936 l .text 0000000000000000 .L0 +0000000000000936 l .text 0000000000000000 .L0 +0000000000000938 l .text 0000000000000000 .L0 +000000000000093c l .text 0000000000000000 .L0 +000000000000093c l .text 0000000000000000 .L0 +0000000000000942 l .text 0000000000000000 .L0 +0000000000000944 l .text 0000000000000000 .L0 +0000000000000944 l .text 0000000000000000 .L0 +0000000000000946 l .text 0000000000000000 .L0 +000000000000094e l .text 0000000000000000 .L0 +0000000000000950 l .text 0000000000000000 .L0 +0000000000000950 l .text 0000000000000000 .L0 +0000000000000952 l .text 0000000000000000 .L0 +0000000000000954 l .text 0000000000000000 .L0 +0000000000000956 l .text 0000000000000000 .L0 +0000000000000956 l .text 0000000000000000 .L0 +000000000000095a l .text 0000000000000000 .L0 +000000000000095a l .text 0000000000000000 .L0 +0000000000000962 l .text 0000000000000000 .L0 +0000000000000962 l .text 0000000000000000 .L0 +0000000000000966 l .text 0000000000000000 .L0 +0000000000000966 l .text 0000000000000000 .L0 +0000000000000968 l .text 0000000000000000 .L0 +000000000000096a l .text 0000000000000000 .L0 +000000000000096a l .text 0000000000000000 .L0 +0000000000000974 l .text 0000000000000000 .L0 +0000000000000978 l .text 0000000000000000 .L0 +0000000000000978 l .text 0000000000000000 .L0 +0000000000000978 l .text 0000000000000000 .L0 +0000000000000978 l .text 0000000000000000 .L0 +000000000000097a l .text 0000000000000000 .L0 +0000000000000986 l .text 0000000000000000 .L0 +0000000000000986 l .text 0000000000000000 .L0 +000000000000098e l .text 0000000000000000 .L0 +000000000000098e l .text 0000000000000000 .L0 +0000000000000992 l .text 0000000000000000 .L0 +0000000000000992 l .text 0000000000000000 .L0 +0000000000000994 l .text 0000000000000000 .L0 +0000000000000994 l .text 0000000000000000 .L0 +000000000000099e l .text 0000000000000000 .L0 +00000000000009a0 l .text 0000000000000000 .L0 +00000000000009a0 l .text 0000000000000000 .L0 +00000000000009a2 l .text 0000000000000000 .L0 +0000000000000448 l .debug_frame 0000000000000000 .L0 +000000000000052a l .text 0000000000000000 .L0 +0000000000000562 l .text 0000000000000000 .L0 +0000000000000562 l .text 0000000000000000 .L0 +0000000000000582 l .text 0000000000000000 .L0 +0000000000000582 l .text 0000000000000000 .L0 +00000000000005a2 l .text 0000000000000000 .L0 +00000000000005a2 l .text 0000000000000000 .L0 +00000000000005c4 l .text 0000000000000000 .L0 +00000000000005c4 l .text 0000000000000000 .L0 +0000000000000632 l .text 0000000000000000 .L0 +0000000000000632 l .text 0000000000000000 .L0 +0000000000000688 l .text 0000000000000000 .L0 +0000000000000688 l .text 0000000000000000 .L0 +00000000000006fa l .text 0000000000000000 .L0 +00000000000006fa l .text 0000000000000000 .L0 +0000000000000760 l .text 0000000000000000 .L0 +0000000000000760 l .text 0000000000000000 .L0 +000000000000079c l .text 0000000000000000 .L0 +000000000000079c l .text 0000000000000000 .L0 +00000000000007aa l .text 0000000000000000 .L0 +00000000000007aa l .text 0000000000000000 .L0 +00000000000007b6 l .text 0000000000000000 .L0 +00000000000007b6 l .text 0000000000000000 .L0 +00000000000007d6 l .text 0000000000000000 .L0 +00000000000007d6 l .text 0000000000000000 .L0 +00000000000007de l .text 0000000000000000 .L0 +00000000000007de l .text 0000000000000000 .L0 +00000000000007e6 l .text 0000000000000000 .L0 +00000000000007e6 l .text 0000000000000000 .L0 +000000000000083a l .text 0000000000000000 .L0 +000000000000083a l .text 0000000000000000 .L0 +000000000000088e l .text 0000000000000000 .L0 +000000000000088e l .text 0000000000000000 .L0 +00000000000008e6 l .text 0000000000000000 .L0 +00000000000008e6 l .text 0000000000000000 .L0 +0000000000000936 l .text 0000000000000000 .L0 +0000000000000936 l .text 0000000000000000 .L0 +0000000000000978 l .text 0000000000000000 .L0 +0000000000000978 l .text 0000000000000000 .L0 +00000000000009a2 l .text 0000000000000000 .L0 +0000000000000558 l .text 0000000000000000 .L0 +0000000000000536 l .text 0000000000000000 .L0 +000000000000057c l .text 0000000000000000 .L0 +0000000000000568 l .text 0000000000000000 .L0 +0000000000000594 l .text 0000000000000000 .L0 +0000000000000588 l .text 0000000000000000 .L0 +00000000000005bc l .text 0000000000000000 .L0 +00000000000005a8 l .text 0000000000000000 .L0 +00000000000005fe l .text 0000000000000000 .L0 +00000000000005d0 l .text 0000000000000000 .L0 +000000000000067e l .text 0000000000000000 .L0 +000000000000063a l .text 0000000000000000 .L0 +00000000000006ec l .text 0000000000000000 .L0 +000000000000069c l .text 0000000000000000 .L0 +0000000000000752 l .text 0000000000000000 .L0 +0000000000000702 l .text 0000000000000000 .L0 +0000000000000790 l .text 0000000000000000 .L0 +000000000000076c l .text 0000000000000000 .L0 +00000000000007d0 l .text 0000000000000000 .L0 +00000000000007bc l .text 0000000000000000 .L0 +0000000000000834 l .text 0000000000000000 .L0 +00000000000007ec l .text 0000000000000000 .L0 +0000000000000888 l .text 0000000000000000 .L0 +0000000000000840 l .text 0000000000000000 .L0 +00000000000008e0 l .text 0000000000000000 .L0 +0000000000000896 l .text 0000000000000000 .L0 +000000000000092e l .text 0000000000000000 .L0 +00000000000008ec l .text 0000000000000000 .L0 +000000000000096c l .text 0000000000000000 .L0 +0000000000000942 l .text 0000000000000000 .L0 +000000000000097c l .text 0000000000000000 .L0 +0000000000000996 l .text 0000000000000000 .L0 +0000000000000982 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 clock_ticks2time.c +00000000000015a7 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000003477 l .debug_str 0000000000000000 .LASF20 +00000000000033e6 l .debug_str 0000000000000000 .LASF21 +0000000000003450 l .debug_str 0000000000000000 .LASF22 +00000000000004f0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000002b60 l .debug_line 0000000000000000 .Ldebug_line0 +0000000000003419 l .debug_str 0000000000000000 .LASF0 +00000000000033a7 l .debug_str 0000000000000000 .LASF1 +000000000000343e l .debug_str 0000000000000000 .LASF2 +0000000000003406 l .debug_str 0000000000000000 .LASF3 +0000000000003375 l .debug_str 0000000000000000 .LASF4 +0000000000003346 l .debug_str 0000000000000000 .LASF5 +0000000000003350 l .debug_str 0000000000000000 .LASF6 +00000000000033c5 l .debug_str 0000000000000000 .LASF7 +00000000000033d4 l .debug_str 0000000000000000 .LASF8 +0000000000003388 l .debug_str 0000000000000000 .LASF9 +0000000000003448 l .debug_str 0000000000000000 .LASF10 +00000000000033bc l .debug_str 0000000000000000 .LASF11 +00000000000033b5 l .debug_str 0000000000000000 .LASF12 +0000000000003472 l .debug_str 0000000000000000 .LASF13 +000000000000336f l .debug_str 0000000000000000 .LASF14 +0000000000003366 l .debug_str 0000000000000000 .LASF23 +00000000000033ff l .debug_str 0000000000000000 .LASF15 +0000000000003436 l .debug_str 0000000000000000 .LASF16 +000000000000335d l .debug_str 0000000000000000 .LASF17 +0000000000003425 l .debug_str 0000000000000000 .LASF24 +00000000000009a2 l .text 0000000000000000 .LFB0 +00000000000009c8 l .text 0000000000000000 .LFE0 +00000000000033ce l .debug_str 0000000000000000 .LASF18 +0000000000001f7e l .debug_loc 0000000000000000 .LLST0 +000000000000339f l .debug_str 0000000000000000 .LASF19 +000000000000337e l .debug_str 0000000000000000 .LASF25 +0000000000001fb7 l .debug_loc 0000000000000000 .LLST1 +00000000000009a2 l .text 0000000000000000 .LVL0 +00000000000009b6 l .text 0000000000000000 .LVL2 +00000000000009b4 l .text 0000000000000000 .LVL1 +00000000000009c2 l .text 0000000000000000 .LVL3 +0000000000004b47 l .debug_info 0000000000000000 .Ldebug_info0 +00000000000009a2 l .text 0000000000000000 .L0 +00000000000009a2 l .text 0000000000000000 .L0 +00000000000009a2 l .text 0000000000000000 .L0 +00000000000009a2 l .text 0000000000000000 .L0 +00000000000009aa l .text 0000000000000000 .L0 +00000000000009b2 l .text 0000000000000000 .L0 +00000000000009b4 l .text 0000000000000000 .L0 +00000000000009b4 l .text 0000000000000000 .L0 +00000000000009b4 l .text 0000000000000000 .L0 +00000000000009b6 l .text 0000000000000000 .L0 +00000000000009c4 l .text 0000000000000000 .L0 +00000000000009c4 l .text 0000000000000000 .L0 +00000000000009c8 l .text 0000000000000000 .L0 +0000000000000788 l .debug_frame 0000000000000000 .L0 +00000000000009a2 l .text 0000000000000000 .L0 +00000000000009c8 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 clock_timespec_add.c +00000000000009ee l .text 0000000000000000 .L2 +0000000000001690 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000003629 l .debug_str 0000000000000000 .LASF15 +000000000000353e l .debug_str 0000000000000000 .LASF16 +0000000000003590 l .debug_str 0000000000000000 .LASF17 +0000000000000510 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000002cce l .debug_line 0000000000000000 .Ldebug_line0 +0000000000003606 l .debug_str 0000000000000000 .LASF0 +00000000000035b2 l .debug_str 0000000000000000 .LASF1 +000000000000361a l .debug_str 0000000000000000 .LASF2 +00000000000035f3 l .debug_str 0000000000000000 .LASF3 +0000000000003527 l .debug_str 0000000000000000 .LASF8 +0000000000003531 l .debug_str 0000000000000000 .LASF4 +00000000000035d0 l .debug_str 0000000000000000 .LASF5 +0000000000003567 l .debug_str 0000000000000000 .LASF6 +0000000000003579 l .debug_str 0000000000000000 .LASF7 +00000000000035c7 l .debug_str 0000000000000000 .LASF9 +00000000000035c0 l .debug_str 0000000000000000 .LASF10 +0000000000003624 l .debug_str 0000000000000000 .LASF11 +000000000000355e l .debug_str 0000000000000000 .LASF18 +00000000000035ec l .debug_str 0000000000000000 .LASF12 +0000000000003612 l .debug_str 0000000000000000 .LASF13 +00000000000035d9 l .debug_str 0000000000000000 .LASF19 +00000000000009c8 l .text 0000000000000000 .LFB0 +00000000000009f6 l .text 0000000000000000 .LFE0 +0000000000003559 l .debug_str 0000000000000000 .LASF14 +0000000000004c9b l .debug_info 0000000000000000 .Ldebug_info0 +00000000000009c8 l .text 0000000000000000 .L0 +00000000000009c8 l .text 0000000000000000 .L0 +00000000000009c8 l .text 0000000000000000 .L0 +00000000000009cc l .text 0000000000000000 .L0 +00000000000009ce l .text 0000000000000000 .L0 +00000000000009d2 l .text 0000000000000000 .L0 +00000000000009d2 l .text 0000000000000000 .L0 +00000000000009d6 l .text 0000000000000000 .L0 +00000000000009d6 l .text 0000000000000000 .L0 +00000000000009e2 l .text 0000000000000000 .L0 +00000000000009e2 l .text 0000000000000000 .L0 +00000000000009ec l .text 0000000000000000 .L0 +00000000000009ec l .text 0000000000000000 .L0 +00000000000009ee l .text 0000000000000000 .L0 +00000000000009ee l .text 0000000000000000 .L0 +00000000000009f2 l .text 0000000000000000 .L0 +00000000000009f2 l .text 0000000000000000 .L0 +00000000000009f4 l .text 0000000000000000 .L0 +00000000000009f6 l .text 0000000000000000 .L0 +00000000000007b0 l .debug_frame 0000000000000000 .L0 +00000000000009c8 l .text 0000000000000000 .L0 +00000000000009f6 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 task_setcancelstate.c +0000000000000a0e l .text 0000000000000000 .L2 +0000000000000a32 l .text 0000000000000000 .L3 +0000000000000a38 l .text 0000000000000000 .L4 +0000000000000a4c l .text 0000000000000000 .L5 +0000000000000a52 l .text 0000000000000000 .L6 +000000000000174a l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000003789 l .debug_str 0000000000000000 .LASF88 +0000000000003a74 l .debug_str 0000000000000000 .LASF89 +00000000000038f1 l .debug_str 0000000000000000 .LASF90 +0000000000000530 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000002e7a l .debug_line 0000000000000000 .Ldebug_line0 +000000000000388d l .debug_str 0000000000000000 .LASF0 +0000000000003706 l .debug_str 0000000000000000 .LASF2 +0000000000003947 l .debug_str 0000000000000000 .LASF1 +0000000000003955 l .debug_str 0000000000000000 .LASF3 +000000000000371c l .debug_str 0000000000000000 .LASF4 +0000000000003b01 l .debug_str 0000000000000000 .LASF5 +0000000000003a00 l .debug_str 0000000000000000 .LASF6 +0000000000003936 l .debug_str 0000000000000000 .LASF7 +0000000000003b18 l .debug_str 0000000000000000 .LASF8 +00000000000039ef l .debug_str 0000000000000000 .LASF9 +00000000000039a1 l .debug_str 0000000000000000 .LASF10 +0000000000003b4a l .debug_str 0000000000000000 .LASF11 +0000000000003ad5 l .debug_str 0000000000000000 .LASF12 +00000000000038ac l .debug_str 0000000000000000 .LASF13 +0000000000003848 l .debug_str 0000000000000000 .LASF14 +0000000000003a13 l .debug_str 0000000000000000 .LASF15 +000000000000398f l .debug_str 0000000000000000 .LASF16 +00000000000039f8 l .debug_str 0000000000000000 .LASF17 +0000000000003a96 l .debug_str 0000000000000000 .LASF18 +0000000000003726 l .debug_str 0000000000000000 .LASF19 +0000000000003779 l .debug_str 0000000000000000 .LASF20 +0000000000003a90 l .debug_str 0000000000000000 .LASF21 +0000000000003aaa l .debug_str 0000000000000000 .LASF22 +00000000000039e2 l .debug_str 0000000000000000 .LASF23 +0000000000003913 l .debug_str 0000000000000000 .LASF24 +000000000000389e l .debug_str 0000000000000000 .LASF25 +000000000000392a l .debug_str 0000000000000000 .LASF26 +000000000000391f l .debug_str 0000000000000000 .LASF30 +0000000000003919 l .debug_str 0000000000000000 .LASF27 +0000000000003866 l .debug_str 0000000000000000 .LASF28 +0000000000003a29 l .debug_str 0000000000000000 .LASF29 +0000000000003b2e l .debug_str 0000000000000000 .LASF31 +0000000000003843 l .debug_str 0000000000000000 .LASF32 +000000000000398a l .debug_str 0000000000000000 .LASF33 +0000000000003aea l .debug_str 0000000000000000 .LASF34 +000000000000386c l .debug_str 0000000000000000 .LASF35 +0000000000003969 l .debug_str 0000000000000000 .LASF36 +0000000000003984 l .debug_str 0000000000000000 .LASF37 +0000000000003750 l .debug_str 0000000000000000 .LASF38 +0000000000003872 l .debug_str 0000000000000000 .LASF39 +0000000000003a1b l .debug_str 0000000000000000 .LASF40 +00000000000039e7 l .debug_str 0000000000000000 .LASF41 +00000000000038c3 l .debug_str 0000000000000000 .LASF42 +00000000000038e1 l .debug_str 0000000000000000 .LASF43 +000000000000397b l .debug_str 0000000000000000 .LASF44 +00000000000039c2 l .debug_str 0000000000000000 .LASF45 +0000000000003ab0 l .debug_str 0000000000000000 .LASF46 +0000000000003b41 l .debug_str 0000000000000000 .LASF47 +00000000000038ca l .debug_str 0000000000000000 .LASF48 +0000000000003738 l .debug_str 0000000000000000 .LASF49 +0000000000003a4a l .debug_str 0000000000000000 .LASF50 +0000000000003761 l .debug_str 0000000000000000 .LASF51 +0000000000003850 l .debug_str 0000000000000000 .LASF52 +0000000000003899 l .debug_str 0000000000000000 .LASF53 +00000000000036f4 l .debug_str 0000000000000000 .LASF54 +0000000000003add l .debug_str 0000000000000000 .LASF55 +00000000000036d9 l .debug_str 0000000000000000 .LASF56 +0000000000003a3e l .debug_str 0000000000000000 .LASF57 +0000000000003a21 l .debug_str 0000000000000000 .LASF58 +0000000000003ae2 l .debug_str 0000000000000000 .LASF59 +0000000000003a34 l .debug_str 0000000000000000 .LASF60 +0000000000003aa0 l .debug_str 0000000000000000 .LASF61 +0000000000003af5 l .debug_str 0000000000000000 .LASF62 +0000000000003839 l .debug_str 0000000000000000 .LASF63 +0000000000003883 l .debug_str 0000000000000000 .LASF64 +0000000000003878 l .debug_str 0000000000000000 .LASF65 +0000000000003a61 l .debug_str 0000000000000000 .LASF66 +00000000000039b3 l .debug_str 0000000000000000 .LASF67 +0000000000003b25 l .debug_str 0000000000000000 .LASF68 +0000000000003b0b l .debug_str 0000000000000000 .LASF69 +00000000000036fa l .debug_str 0000000000000000 .LASF70 +000000000000372d l .debug_str 0000000000000000 .LASF71 +000000000000393f l .debug_str 0000000000000000 .LASF72 +0000000000003715 l .debug_str 0000000000000000 .LASF73 +00000000000036ec l .debug_str 0000000000000000 .LASF74 +00000000000038e9 l .debug_str 0000000000000000 .LASF75 +00000000000039c8 l .debug_str 0000000000000000 .LASF76 +0000000000003781 l .debug_str 0000000000000000 .LASF77 +00000000000039bd l .debug_str 0000000000000000 .LASF78 +00000000000039d4 l .debug_str 0000000000000000 .LASF79 +000000000000395e l .debug_str 0000000000000000 .LASF80 +0000000000003759 l .debug_str 0000000000000000 .LASF81 +0000000000003aca l .debug_str 0000000000000000 .LASF82 +0000000000003998 l .debug_str 0000000000000000 .LASF83 +0000000000003ab6 l .debug_str 0000000000000000 .LASF91 +00000000000009f6 l .text 0000000000000000 .LFB7 +0000000000000a62 l .text 0000000000000000 .LFE7 +000000000000370f l .debug_str 0000000000000000 .LASF84 +0000000000002013 l .debug_loc 0000000000000000 .LLST0 +0000000000003a6b l .debug_str 0000000000000000 .LASF85 +000000000000209e l .debug_loc 0000000000000000 .LLST1 +0000000000002129 l .debug_loc 0000000000000000 .LLST2 +0000000000002172 l .debug_loc 0000000000000000 .LLST3 +00000000000009f6 l .text 0000000000000000 .LBB4 +0000000000000a32 l .text 0000000000000000 .LVL4 +0000000000000a5a l .text 0000000000000000 .LVL8 +0000000000003972 l .debug_str 0000000000000000 .LASF92 +00000000000036df l .debug_str 0000000000000000 .LASF86 +0000000000003b39 l .debug_str 0000000000000000 .LASF87 +00000000000009f6 l .text 0000000000000000 .LVL0 +0000000000000a2a l .text 0000000000000000 .LVL3 +0000000000000a44 l .text 0000000000000000 .LVL5 +0000000000000a52 l .text 0000000000000000 .LVL7 +0000000000000a4c l .text 0000000000000000 .LVL6 +0000000000000a00 l .text 0000000000000000 .LVL2 +0000000000000a5e l .text 0000000000000000 .LVL9 +0000000000004dce l .debug_info 0000000000000000 .Ldebug_info0 +00000000000009f6 l .text 0000000000000000 .LBE4 +00000000000009fc l .text 0000000000000000 .LBB7 +00000000000009fe l .text 0000000000000000 .LBE7 +00000000000009f6 l .text 0000000000000000 .L0 +00000000000009f6 l .text 0000000000000000 .L0 +00000000000009f6 l .text 0000000000000000 .L0 +00000000000009f6 l .text 0000000000000000 .L0 +00000000000009f6 l .text 0000000000000000 .L0 +00000000000009f8 l .text 0000000000000000 .L0 +00000000000009fa l .text 0000000000000000 .L0 +00000000000009fc l .text 0000000000000000 .L0 +00000000000009fe l .text 0000000000000000 .L0 +00000000000009fe l .text 0000000000000000 .L0 +0000000000000a00 l .text 0000000000000000 .L0 +0000000000000a00 l .text 0000000000000000 .L0 +0000000000000a00 l .text 0000000000000000 .L0 +0000000000000a02 l .text 0000000000000000 .L0 +0000000000000a02 l .text 0000000000000000 .L0 +0000000000000a0a l .text 0000000000000000 .L0 +0000000000000a0a l .text 0000000000000000 .L0 +0000000000000a0e l .text 0000000000000000 .L0 +0000000000000a0e l .text 0000000000000000 .L0 +0000000000000a10 l .text 0000000000000000 .L0 +0000000000000a10 l .text 0000000000000000 .L0 +0000000000000a1c l .text 0000000000000000 .L0 +0000000000000a1c l .text 0000000000000000 .L0 +0000000000000a22 l .text 0000000000000000 .L0 +0000000000000a22 l .text 0000000000000000 .L0 +0000000000000a28 l .text 0000000000000000 .L0 +0000000000000a32 l .text 0000000000000000 .L0 +0000000000000a32 l .text 0000000000000000 .L0 +0000000000000a38 l .text 0000000000000000 .L0 +0000000000000a38 l .text 0000000000000000 .L0 +0000000000000a3e l .text 0000000000000000 .L0 +0000000000000a3e l .text 0000000000000000 .L0 +0000000000000a42 l .text 0000000000000000 .L0 +0000000000000a44 l .text 0000000000000000 .L0 +0000000000000a4c l .text 0000000000000000 .L0 +0000000000000a4c l .text 0000000000000000 .L0 +0000000000000a52 l .text 0000000000000000 .L0 +0000000000000a52 l .text 0000000000000000 .L0 +0000000000000a5e l .text 0000000000000000 .L0 +0000000000000a5e l .text 0000000000000000 .L0 +0000000000000a5e l .text 0000000000000000 .L0 +0000000000000a62 l .text 0000000000000000 .L0 +00000000000007d8 l .debug_frame 0000000000000000 .L0 +00000000000009f6 l .text 0000000000000000 .L0 +0000000000000a62 l .text 0000000000000000 .L0 +0000000000000a4e l .text 0000000000000000 .L0 +00000000000009fc l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 sem_init.c +0000000000000eb0 l .rodata 0000000000000000 .LC0 +0000000000000a6c l .text 0000000000000000 .L0 +0000000000000ed8 l .rodata 0000000000000000 .LC1 +0000000000000a78 l .text 0000000000000000 .L0 +0000000000000a6a l .text 0000000000000000 .L2 +0000000000000a8a l .text 0000000000000000 .L3 +0000000000000ab4 l .text 0000000000000000 .L10 +0000000000000acc l .text 0000000000000000 .L11 +0000000000000ac2 l .text 0000000000000000 .L12 +0000000000000ac0 l .text 0000000000000000 .L17 +000000000000193d l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000003ba4 l .debug_str 0000000000000000 .LASF31 +0000000000003b53 l .debug_str 0000000000000000 .LASF32 +0000000000003d41 l .debug_str 0000000000000000 .LASF33 +0000000000000580 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000003163 l .debug_line 0000000000000000 .Ldebug_line0 +0000000000003c9e l .debug_str 0000000000000000 .LASF0 +0000000000003b77 l .debug_str 0000000000000000 .LASF2 +0000000000003c87 l .debug_str 0000000000000000 .LASF1 +0000000000003c95 l .debug_str 0000000000000000 .LASF3 +0000000000003b8b l .debug_str 0000000000000000 .LASF4 +0000000000003ce0 l .debug_str 0000000000000000 .LASF5 +0000000000003cd3 l .debug_str 0000000000000000 .LASF6 +0000000000003c67 l .debug_str 0000000000000000 .LASF7 +0000000000003d16 l .debug_str 0000000000000000 .LASF8 +0000000000003cb3 l .debug_str 0000000000000000 .LASF9 +0000000000003c59 l .debug_str 0000000000000000 .LASF10 +0000000000003cf8 l .debug_str 0000000000000000 .LASF11 +0000000000003cf3 l .debug_str 0000000000000000 .LASF12 +0000000000003c70 l .debug_str 0000000000000000 .LASF13 +0000000000003d00 l .debug_str 0000000000000000 .LASF17 +0000000000003c76 l .debug_str 0000000000000000 .LASF14 +0000000000003b68 l .debug_str 0000000000000000 .LASF15 +0000000000003d0b l .debug_str 0000000000000000 .LASF16 +0000000000003d30 l .debug_str 0000000000000000 .LASF18 +0000000000003c54 l .debug_str 0000000000000000 .LASF19 +0000000000003c82 l .debug_str 0000000000000000 .LASF20 +0000000000003d63 l .debug_str 0000000000000000 .LASF21 +0000000000003c61 l .debug_str 0000000000000000 .LASF22 +0000000000003caa l .debug_str 0000000000000000 .LASF23 +0000000000003c7c l .debug_str 0000000000000000 .LASF24 +0000000000003b9b l .debug_str 0000000000000000 .LASF25 +0000000000003b95 l .debug_str 0000000000000000 .LASF26 +0000000000003b6e l .debug_str 0000000000000000 .LASF34 +0000000000000aa6 l .text 0000000000000000 .LFB1 +0000000000000aea l .text 0000000000000000 .LFE1 +00000000000021d2 l .debug_loc 0000000000000000 .LLST6 +0000000000003d28 l .debug_str 0000000000000000 .LASF27 +0000000000002234 l .debug_loc 0000000000000000 .LLST7 +0000000000003d3b l .debug_str 0000000000000000 .LASF28 +0000000000002296 l .debug_loc 0000000000000000 .LLST8 +00000000000022f8 l .debug_loc 0000000000000000 .LLST9 +0000000000000abc l .text 0000000000000000 .LVL9 +0000000000000ad4 l .text 0000000000000000 .LVL13 +0000000000000ae2 l .text 0000000000000000 .LVL15 +0000000000003b80 l .debug_str 0000000000000000 .LASF35 +0000000000000a62 l .text 0000000000000000 .LFB0 +0000000000000aa6 l .text 0000000000000000 .LFE0 +0000000000002330 l .debug_loc 0000000000000000 .LLST0 +0000000000002392 l .debug_loc 0000000000000000 .LLST1 +00000000000023de l .debug_loc 0000000000000000 .LLST2 +0000000000000a6a l .text 0000000000000000 .LBB4 +0000000000002440 l .debug_loc 0000000000000000 .LLST3 +0000000000002479 l .debug_loc 0000000000000000 .LLST4 +000000000000249f l .debug_loc 0000000000000000 .LLST5 +0000000000000a8a l .text 0000000000000000 .LVL5 +0000000000003d6e l .debug_str 0000000000000000 .LASF29 +0000000000003cca l .debug_str 0000000000000000 .LASF30 +0000000000000aa6 l .text 0000000000000000 .LVL8 +0000000000000acc l .text 0000000000000000 .LVL12 +0000000000000ac0 l .text 0000000000000000 .LVL10 +0000000000000ac2 l .text 0000000000000000 .LVL11 +0000000000000ad6 l .text 0000000000000000 .LVL14 +0000000000000a62 l .text 0000000000000000 .LVL0 +0000000000000a80 l .text 0000000000000000 .LVL4 +0000000000000aa4 l .text 0000000000000000 .LVL7 +0000000000000a78 l .text 0000000000000000 .LVL3 +0000000000000a74 l .text 0000000000000000 .LVL2 +0000000000000a8e l .text 0000000000000000 .LVL6 +0000000000000a6a l .text 0000000000000000 .LVL1 +000000000000540c l .debug_info 0000000000000000 .Ldebug_info0 +0000000000000a6a l .text 0000000000000000 .LBE4 +0000000000000a6c l .text 0000000000000000 .LBB8 +0000000000000a80 l .text 0000000000000000 .LBE8 +0000000000000a82 l .text 0000000000000000 .LBB9 +0000000000000a8a l .text 0000000000000000 .LBE9 +0000000000000a62 l .text 0000000000000000 .L0 +0000000000000aa6 l .text 0000000000000000 .L0 +0000000000000a62 l .text 0000000000000000 .L0 +0000000000000a62 l .text 0000000000000000 .L0 +0000000000000a62 l .text 0000000000000000 .L0 +0000000000000a64 l .text 0000000000000000 .L0 +0000000000000a6a l .text 0000000000000000 .L0 +0000000000000a6a l .text 0000000000000000 .L0 +0000000000000a6c l .text 0000000000000000 .L0 +0000000000000a80 l .text 0000000000000000 .L0 +0000000000000a82 l .text 0000000000000000 .L0 +0000000000000a8a l .text 0000000000000000 .L0 +0000000000000a8a l .text 0000000000000000 .L0 +0000000000000a8a l .text 0000000000000000 .L0 +0000000000000a92 l .text 0000000000000000 .L0 +0000000000000a96 l .text 0000000000000000 .L0 +0000000000000a96 l .text 0000000000000000 .L0 +0000000000000a9a l .text 0000000000000000 .L0 +0000000000000a9e l .text 0000000000000000 .L0 +0000000000000a9e l .text 0000000000000000 .L0 +0000000000000a9e l .text 0000000000000000 .L0 +0000000000000aa2 l .text 0000000000000000 .L0 +0000000000000aa2 l .text 0000000000000000 .L0 +0000000000000aa6 l .text 0000000000000000 .L0 +0000000000000aa6 l .text 0000000000000000 .L0 +0000000000000aa6 l .text 0000000000000000 .L0 +0000000000000aa6 l .text 0000000000000000 .L0 +0000000000000aac l .text 0000000000000000 .L0 +0000000000000aae l .text 0000000000000000 .L0 +0000000000000ab4 l .text 0000000000000000 .L0 +0000000000000ab4 l .text 0000000000000000 .L0 +0000000000000ac0 l .text 0000000000000000 .L0 +0000000000000ac0 l .text 0000000000000000 .L0 +0000000000000ac0 l .text 0000000000000000 .L0 +0000000000000ac0 l .text 0000000000000000 .L0 +0000000000000ac0 l .text 0000000000000000 .L0 +0000000000000ac2 l .text 0000000000000000 .L0 +0000000000000acc l .text 0000000000000000 .L0 +0000000000000acc l .text 0000000000000000 .L0 +0000000000000ad6 l .text 0000000000000000 .L0 +0000000000000ad6 l .text 0000000000000000 .L0 +0000000000000ada l .text 0000000000000000 .L0 +0000000000000ada l .text 0000000000000000 .L0 +0000000000000aea l .text 0000000000000000 .L0 +0000000000000810 l .debug_frame 0000000000000000 .L0 +0000000000000a62 l .text 0000000000000000 .L0 +0000000000000aa6 l .text 0000000000000000 .L0 +0000000000000aa6 l .text 0000000000000000 .L0 +0000000000000aea l .text 0000000000000000 .L0 +0000000000000a6c l .text 0000000000000000 .L0 +0000000000000a82 l .text 0000000000000000 .L0 +0000000000000a8a l .text 0000000000000000 .L0 +0000000000000ac4 l .text 0000000000000000 .L0 +0000000000000aac l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 sem_setprotocol.c +0000000000000ef0 l .rodata 0000000000000000 .LC0 +0000000000000aee l .text 0000000000000000 .L0 +0000000000000f08 l .rodata 0000000000000000 .LC1 +0000000000000afa l .text 0000000000000000 .L0 +0000000000000b0c l .text 0000000000000000 .L2 +0000000000000b26 l .text 0000000000000000 .L3 +0000000000000b2a l .text 0000000000000000 .L4 +0000000000000b50 l .text 0000000000000000 .L10 +0000000000001af8 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000003d9e l .debug_str 0000000000000000 .LASF30 +0000000000003f86 l .debug_str 0000000000000000 .LASF31 +0000000000003f64 l .debug_str 0000000000000000 .LASF32 +00000000000005f0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000000341d l .debug_line 0000000000000000 .Ldebug_line0 +0000000000003ec4 l .debug_str 0000000000000000 .LASF0 +0000000000003d7c l .debug_str 0000000000000000 .LASF2 +0000000000003ead l .debug_str 0000000000000000 .LASF1 +0000000000003ebb l .debug_str 0000000000000000 .LASF3 +0000000000003d85 l .debug_str 0000000000000000 .LASF4 +0000000000003f06 l .debug_str 0000000000000000 .LASF5 +0000000000003ef9 l .debug_str 0000000000000000 .LASF6 +0000000000003e6a l .debug_str 0000000000000000 .LASF7 +0000000000003f3c l .debug_str 0000000000000000 .LASF8 +0000000000003ed9 l .debug_str 0000000000000000 .LASF9 +0000000000003e53 l .debug_str 0000000000000000 .LASF10 +0000000000003f1e l .debug_str 0000000000000000 .LASF11 +0000000000003f19 l .debug_str 0000000000000000 .LASF12 +0000000000003e73 l .debug_str 0000000000000000 .LASF13 +0000000000003f26 l .debug_str 0000000000000000 .LASF17 +0000000000003e79 l .debug_str 0000000000000000 .LASF14 +0000000000003d76 l .debug_str 0000000000000000 .LASF15 +0000000000003f31 l .debug_str 0000000000000000 .LASF16 +0000000000003f4e l .debug_str 0000000000000000 .LASF18 +0000000000003e4e l .debug_str 0000000000000000 .LASF19 +0000000000003e98 l .debug_str 0000000000000000 .LASF20 +0000000000003f59 l .debug_str 0000000000000000 .LASF21 +0000000000003e5b l .debug_str 0000000000000000 .LASF22 +0000000000003ed0 l .debug_str 0000000000000000 .LASF23 +0000000000003e7f l .debug_str 0000000000000000 .LASF24 +0000000000003d95 l .debug_str 0000000000000000 .LASF25 +0000000000003d8f l .debug_str 0000000000000000 .LASF26 +0000000000003e9d l .debug_str 0000000000000000 .LASF33 +0000000000000b2c l .text 0000000000000000 .LFB1 +0000000000000b5a l .text 0000000000000000 .LFE1 +00000000000024c2 l .debug_loc 0000000000000000 .LLST4 +0000000000003e61 l .debug_str 0000000000000000 .LASF27 +00000000000024fb l .debug_loc 0000000000000000 .LLST5 +0000000000002534 l .debug_loc 0000000000000000 .LLST6 +0000000000000b3a l .text 0000000000000000 .LVL10 +0000000000000b4c l .text 0000000000000000 .LVL12 +0000000000003e85 l .debug_str 0000000000000000 .LASF34 +0000000000000aea l .text 0000000000000000 .LFB0 +0000000000000b2c l .text 0000000000000000 .LFE0 +000000000000257f l .debug_loc 0000000000000000 .LLST0 +000000000000261d l .debug_loc 0000000000000000 .LLST1 +0000000000000aec l .text 0000000000000000 .LBB4 +0000000000002669 l .debug_loc 0000000000000000 .LLST2 +000000000000268d l .debug_loc 0000000000000000 .LLST3 +0000000000000b0c l .text 0000000000000000 .LVL4 +0000000000003fa2 l .debug_str 0000000000000000 .LASF28 +0000000000003ef0 l .debug_str 0000000000000000 .LASF29 +0000000000000b2c l .text 0000000000000000 .LVL9 +0000000000000b3c l .text 0000000000000000 .LVL11 +0000000000000b4e l .text 0000000000000000 .LVL13 +0000000000000b50 l .text 0000000000000000 .LVL14 +0000000000000b56 l .text 0000000000000000 .LVL15 +0000000000000aea l .text 0000000000000000 .LVL0 +0000000000000b02 l .text 0000000000000000 .LVL3 +0000000000000b12 l .text 0000000000000000 .LVL5 +0000000000000b1a l .text 0000000000000000 .LVL6 +0000000000000b26 l .text 0000000000000000 .LVL7 +0000000000000b2a l .text 0000000000000000 .LVL8 +0000000000000afa l .text 0000000000000000 .LVL2 +0000000000000aec l .text 0000000000000000 .LVL1 +00000000000056fd l .debug_info 0000000000000000 .Ldebug_info0 +0000000000000aec l .text 0000000000000000 .LBE4 +0000000000000aee l .text 0000000000000000 .LBB8 +0000000000000b02 l .text 0000000000000000 .LBE8 +0000000000000b04 l .text 0000000000000000 .LBB9 +0000000000000b0e l .text 0000000000000000 .LBE9 +0000000000000aea l .text 0000000000000000 .L0 +0000000000000b2c l .text 0000000000000000 .L0 +0000000000000aea l .text 0000000000000000 .L0 +0000000000000aea l .text 0000000000000000 .L0 +0000000000000aec l .text 0000000000000000 .L0 +0000000000000aec l .text 0000000000000000 .L0 +0000000000000aee l .text 0000000000000000 .L0 +0000000000000b02 l .text 0000000000000000 .L0 +0000000000000b04 l .text 0000000000000000 .L0 +0000000000000b0e l .text 0000000000000000 .L0 +0000000000000b0e l .text 0000000000000000 .L0 +0000000000000b0e l .text 0000000000000000 .L0 +0000000000000b12 l .text 0000000000000000 .L0 +0000000000000b14 l .text 0000000000000000 .L0 +0000000000000b1a l .text 0000000000000000 .L0 +0000000000000b1e l .text 0000000000000000 .L0 +0000000000000b26 l .text 0000000000000000 .L0 +0000000000000b26 l .text 0000000000000000 .L0 +0000000000000b26 l .text 0000000000000000 .L0 +0000000000000b2a l .text 0000000000000000 .L0 +0000000000000b2a l .text 0000000000000000 .L0 +0000000000000b2c l .text 0000000000000000 .L0 +0000000000000b2c l .text 0000000000000000 .L0 +0000000000000b2c l .text 0000000000000000 .L0 +0000000000000b2c l .text 0000000000000000 .L0 +0000000000000b32 l .text 0000000000000000 .L0 +0000000000000b3c l .text 0000000000000000 .L0 +0000000000000b3c l .text 0000000000000000 .L0 +0000000000000b40 l .text 0000000000000000 .L0 +0000000000000b40 l .text 0000000000000000 .L0 +0000000000000b4e l .text 0000000000000000 .L0 +0000000000000b4e l .text 0000000000000000 .L0 +0000000000000b4e l .text 0000000000000000 .L0 +0000000000000b50 l .text 0000000000000000 .L0 +0000000000000b50 l .text 0000000000000000 .L0 +0000000000000b5a l .text 0000000000000000 .L0 +0000000000000878 l .debug_frame 0000000000000000 .L0 +0000000000000aea l .text 0000000000000000 .L0 +0000000000000b2c l .text 0000000000000000 .L0 +0000000000000b2c l .text 0000000000000000 .L0 +0000000000000b5a l .text 0000000000000000 .L0 +0000000000000aee l .text 0000000000000000 .L0 +0000000000000b04 l .text 0000000000000000 .L0 +0000000000000b0c l .text 0000000000000000 .L0 +0000000000000b52 l .text 0000000000000000 .L0 +0000000000000b32 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 sem_getvalue.c +0000000000000b74 l .text 0000000000000000 .L2 +0000000000000b9a l .text 0000000000000000 .L6 +0000000000001cc0 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000003fd2 l .debug_str 0000000000000000 .LASF30 +00000000000040ab l .debug_str 0000000000000000 .LASF31 +0000000000004193 l .debug_str 0000000000000000 .LASF32 +0000000000000660 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000003684 l .debug_line 0000000000000000 .Ldebug_line0 +0000000000004102 l .debug_str 0000000000000000 .LASF0 +0000000000003fb0 l .debug_str 0000000000000000 .LASF2 +00000000000040eb l .debug_str 0000000000000000 .LASF1 +00000000000040f9 l .debug_str 0000000000000000 .LASF3 +0000000000003fb9 l .debug_str 0000000000000000 .LASF4 +000000000000413b l .debug_str 0000000000000000 .LASF5 +000000000000412e l .debug_str 0000000000000000 .LASF6 +00000000000040a2 l .debug_str 0000000000000000 .LASF7 +0000000000004176 l .debug_str 0000000000000000 .LASF8 +0000000000004117 l .debug_str 0000000000000000 .LASF9 +0000000000004094 l .debug_str 0000000000000000 .LASF10 +0000000000004158 l .debug_str 0000000000000000 .LASF11 +000000000000414e l .debug_str 0000000000000000 .LASF12 +00000000000040c4 l .debug_str 0000000000000000 .LASF13 +0000000000004160 l .debug_str 0000000000000000 .LASF17 +00000000000040ca l .debug_str 0000000000000000 .LASF14 +0000000000003faa l .debug_str 0000000000000000 .LASF15 +000000000000416b l .debug_str 0000000000000000 .LASF16 +0000000000004188 l .debug_str 0000000000000000 .LASF18 +000000000000408f l .debug_str 0000000000000000 .LASF19 +00000000000040e6 l .debug_str 0000000000000000 .LASF20 +00000000000041b5 l .debug_str 0000000000000000 .LASF21 +000000000000409c l .debug_str 0000000000000000 .LASF22 +000000000000410e l .debug_str 0000000000000000 .LASF23 +00000000000040d0 l .debug_str 0000000000000000 .LASF24 +0000000000003fc9 l .debug_str 0000000000000000 .LASF25 +0000000000003fc3 l .debug_str 0000000000000000 .LASF26 +0000000000004082 l .debug_str 0000000000000000 .LASF28 +0000000000000b76 l .text 0000000000000000 .LFB1 +0000000000000ba4 l .text 0000000000000000 .LFE1 +00000000000026b0 l .debug_loc 0000000000000000 .LLST1 +0000000000004153 l .debug_str 0000000000000000 .LASF27 +00000000000026e9 l .debug_loc 0000000000000000 .LLST2 +0000000000002722 l .debug_loc 0000000000000000 .LLST3 +0000000000000b84 l .text 0000000000000000 .LVL5 +0000000000000b96 l .text 0000000000000000 .LVL7 +00000000000040d6 l .debug_str 0000000000000000 .LASF29 +0000000000000b5a l .text 0000000000000000 .LFB0 +0000000000000b76 l .text 0000000000000000 .LFE0 +000000000000276d l .debug_loc 0000000000000000 .LLST0 +00000000000041c0 l .debug_str 0000000000000000 .LASF33 +0000000000000b76 l .text 0000000000000000 .LVL4 +0000000000000b86 l .text 0000000000000000 .LVL6 +0000000000000b98 l .text 0000000000000000 .LVL8 +0000000000000b9a l .text 0000000000000000 .LVL9 +0000000000000ba0 l .text 0000000000000000 .LVL10 +0000000000000b5a l .text 0000000000000000 .LVL0 +0000000000000b5e l .text 0000000000000000 .LVL1 +0000000000000b66 l .text 0000000000000000 .LVL2 +0000000000000b74 l .text 0000000000000000 .LVL3 +00000000000059c1 l .debug_info 0000000000000000 .Ldebug_info0 +0000000000000b5a l .text 0000000000000000 .L0 +0000000000000b76 l .text 0000000000000000 .L0 +0000000000000b5a l .text 0000000000000000 .L0 +0000000000000b5a l .text 0000000000000000 .L0 +0000000000000b5c l .text 0000000000000000 .L0 +0000000000000b5e l .text 0000000000000000 .L0 +0000000000000b60 l .text 0000000000000000 .L0 +0000000000000b62 l .text 0000000000000000 .L0 +0000000000000b62 l .text 0000000000000000 .L0 +0000000000000b66 l .text 0000000000000000 .L0 +0000000000000b68 l .text 0000000000000000 .L0 +0000000000000b72 l .text 0000000000000000 .L0 +0000000000000b72 l .text 0000000000000000 .L0 +0000000000000b74 l .text 0000000000000000 .L0 +0000000000000b76 l .text 0000000000000000 .L0 +0000000000000b76 l .text 0000000000000000 .L0 +0000000000000b76 l .text 0000000000000000 .L0 +0000000000000b76 l .text 0000000000000000 .L0 +0000000000000b7c l .text 0000000000000000 .L0 +0000000000000b86 l .text 0000000000000000 .L0 +0000000000000b86 l .text 0000000000000000 .L0 +0000000000000b8a l .text 0000000000000000 .L0 +0000000000000b8a l .text 0000000000000000 .L0 +0000000000000b98 l .text 0000000000000000 .L0 +0000000000000b98 l .text 0000000000000000 .L0 +0000000000000b98 l .text 0000000000000000 .L0 +0000000000000b9a l .text 0000000000000000 .L0 +0000000000000b9a l .text 0000000000000000 .L0 +0000000000000ba4 l .text 0000000000000000 .L0 +00000000000008d8 l .debug_frame 0000000000000000 .L0 +0000000000000b5a l .text 0000000000000000 .L0 +0000000000000b76 l .text 0000000000000000 .L0 +0000000000000b76 l .text 0000000000000000 .L0 +0000000000000ba4 l .text 0000000000000000 .L0 +0000000000000b9c l .text 0000000000000000 .L0 +0000000000000b7c l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_fflush.c +0000000000000bdc l .text 0000000000000000 .L2 +0000000000000bd4 l .text 0000000000000000 .L4 +0000000000000bbe l .text 0000000000000000 .L3 +0000000000000c22 l .text 0000000000000000 .L8 +0000000000000c1a l .text 0000000000000000 .L10 +0000000000000c04 l .text 0000000000000000 .L9 +0000000000001e38 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000004275 l .debug_str 0000000000000000 .LASF80 +00000000000044c4 l .debug_str 0000000000000000 .LASF81 +00000000000043a8 l .debug_str 0000000000000000 .LASF82 +0000000000000690 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000000389f l .debug_line 0000000000000000 .Ldebug_line0 +0000000000004384 l .debug_str 0000000000000000 .LASF0 +00000000000041f0 l .debug_str 0000000000000000 .LASF2 +000000000000443b l .debug_str 0000000000000000 .LASF1 +0000000000004449 l .debug_str 0000000000000000 .LASF3 +000000000000426b l .debug_str 0000000000000000 .LASF4 +00000000000045a1 l .debug_str 0000000000000000 .LASF5 +00000000000044b1 l .debug_str 0000000000000000 .LASF6 +0000000000004432 l .debug_str 0000000000000000 .LASF7 +00000000000045b8 l .debug_str 0000000000000000 .LASF8 +00000000000044ef l .debug_str 0000000000000000 .LASF9 +000000000000448f l .debug_str 0000000000000000 .LASF10 +00000000000045ea l .debug_str 0000000000000000 .LASF11 +0000000000004575 l .debug_str 0000000000000000 .LASF12 +000000000000446a l .debug_str 0000000000000000 .LASF13 +0000000000004334 l .debug_str 0000000000000000 .LASF14 +0000000000004500 l .debug_str 0000000000000000 .LASF15 +0000000000004486 l .debug_str 0000000000000000 .LASF16 +00000000000044f8 l .debug_str 0000000000000000 .LASF17 +000000000000420d l .debug_str 0000000000000000 .LASF18 +0000000000004263 l .debug_str 0000000000000000 .LASF19 +0000000000004559 l .debug_str 0000000000000000 .LASF20 +0000000000004569 l .debug_str 0000000000000000 .LASF21 +00000000000043ca l .debug_str 0000000000000000 .LASF22 +0000000000004408 l .debug_str 0000000000000000 .LASF23 +000000000000441b l .debug_str 0000000000000000 .LASF27 +000000000000440e l .debug_str 0000000000000000 .LASF24 +000000000000435d l .debug_str 0000000000000000 .LASF25 +0000000000004516 l .debug_str 0000000000000000 .LASF26 +00000000000045ce l .debug_str 0000000000000000 .LASF28 +000000000000432f l .debug_str 0000000000000000 .LASF29 +0000000000004481 l .debug_str 0000000000000000 .LASF30 +000000000000458a l .debug_str 0000000000000000 .LASF31 +0000000000004363 l .debug_str 0000000000000000 .LASF32 +0000000000004452 l .debug_str 0000000000000000 .LASF33 +0000000000004464 l .debug_str 0000000000000000 .LASF34 +0000000000004242 l .debug_str 0000000000000000 .LASF35 +0000000000004369 l .debug_str 0000000000000000 .LASF36 +00000000000044e7 l .debug_str 0000000000000000 .LASF37 +00000000000043cf l .debug_str 0000000000000000 .LASF38 +00000000000043ed l .debug_str 0000000000000000 .LASF39 +000000000000445b l .debug_str 0000000000000000 .LASF40 +00000000000044ab l .debug_str 0000000000000000 .LASF41 +000000000000456f l .debug_str 0000000000000000 .LASF42 +00000000000045e1 l .debug_str 0000000000000000 .LASF43 +000000000000439a l .debug_str 0000000000000000 .LASF44 +0000000000004426 l .debug_str 0000000000000000 .LASF45 +0000000000004508 l .debug_str 0000000000000000 .LASF46 +00000000000043d6 l .debug_str 0000000000000000 .LASF47 +000000000000422a l .debug_str 0000000000000000 .LASF48 +000000000000452b l .debug_str 0000000000000000 .LASF49 +000000000000424b l .debug_str 0000000000000000 .LASF50 +0000000000004347 l .debug_str 0000000000000000 .LASF51 +0000000000004395 l .debug_str 0000000000000000 .LASF52 +00000000000041de l .debug_str 0000000000000000 .LASF53 +000000000000457d l .debug_str 0000000000000000 .LASF54 +00000000000041c8 l .debug_str 0000000000000000 .LASF55 +00000000000043f5 l .debug_str 0000000000000000 .LASF56 +000000000000450e l .debug_str 0000000000000000 .LASF57 +0000000000004582 l .debug_str 0000000000000000 .LASF58 +0000000000004521 l .debug_str 0000000000000000 .LASF59 +000000000000455f l .debug_str 0000000000000000 .LASF60 +0000000000004595 l .debug_str 0000000000000000 .LASF61 +0000000000004325 l .debug_str 0000000000000000 .LASF62 +000000000000437a l .debug_str 0000000000000000 .LASF63 +000000000000436f l .debug_str 0000000000000000 .LASF64 +0000000000004542 l .debug_str 0000000000000000 .LASF65 +00000000000044a1 l .debug_str 0000000000000000 .LASF66 +00000000000045c5 l .debug_str 0000000000000000 .LASF67 +00000000000045ab l .debug_str 0000000000000000 .LASF68 +00000000000041e4 l .debug_str 0000000000000000 .LASF69 +0000000000004390 l .debug_str 0000000000000000 .LASF70 +0000000000004414 l .debug_str 0000000000000000 .LASF71 +0000000000000bea l .text 0000000000000000 .LFB5 +0000000000000c30 l .text 0000000000000000 .LFE5 +0000000000004401 l .debug_str 0000000000000000 .LASF73 +00000000000027cc l .debug_loc 0000000000000000 .LLST2 +000000000000282e l .debug_loc 0000000000000000 .LLST3 +0000000000000bfa l .text 0000000000000000 .LVL11 +0000000000000c02 l .text 0000000000000000 .LVL12 +0000000000000c12 l .text 0000000000000000 .LVL14 +0000000000000c2a l .text 0000000000000000 .LVL18 +00000000000041ce l .debug_str 0000000000000000 .LASF72 +0000000000000ba4 l .text 0000000000000000 .LFB4 +0000000000000bea l .text 0000000000000000 .LFE4 +000000000000287a l .debug_loc 0000000000000000 .LLST0 +00000000000028dc l .debug_loc 0000000000000000 .LLST1 +0000000000000bb4 l .text 0000000000000000 .LVL1 +0000000000000bbc l .text 0000000000000000 .LVL2 +0000000000000bcc l .text 0000000000000000 .LVL4 +0000000000000be4 l .text 0000000000000000 .LVL8 +00000000000044d7 l .debug_str 0000000000000000 .LASF74 +000000000000454c l .debug_str 0000000000000000 .LASF75 +00000000000045d9 l .debug_str 0000000000000000 .LASF76 +000000000000433c l .debug_str 0000000000000000 .LASF77 +0000000000004214 l .debug_str 0000000000000000 .LASF78 +00000000000041f9 l .debug_str 0000000000000000 .LASF79 +0000000000000bea l .text 0000000000000000 .LVL10 +0000000000000c22 l .text 0000000000000000 .LVL17 +0000000000000c04 l .text 0000000000000000 .LVL13 +0000000000000c16 l .text 0000000000000000 .LVL15 +0000000000000c1a l .text 0000000000000000 .LVL16 +0000000000000c2e l .text 0000000000000000 .LVL19 +0000000000000ba4 l .text 0000000000000000 .LVL0 +0000000000000bdc l .text 0000000000000000 .LVL7 +0000000000000bbe l .text 0000000000000000 .LVL3 +0000000000000bd0 l .text 0000000000000000 .LVL5 +0000000000000bd4 l .text 0000000000000000 .LVL6 +0000000000000be8 l .text 0000000000000000 .LVL9 +0000000000005c19 l .debug_info 0000000000000000 .Ldebug_info0 +0000000000000ba4 l .text 0000000000000000 .L0 +0000000000000bea l .text 0000000000000000 .L0 +0000000000000ba4 l .text 0000000000000000 .L0 +0000000000000ba4 l .text 0000000000000000 .L0 +0000000000000ba4 l .text 0000000000000000 .L0 +0000000000000baa l .text 0000000000000000 .L0 +0000000000000bac l .text 0000000000000000 .L0 +0000000000000bac l .text 0000000000000000 .L0 +0000000000000bbe l .text 0000000000000000 .L0 +0000000000000bbe l .text 0000000000000000 .L0 +0000000000000bc0 l .text 0000000000000000 .L0 +0000000000000bc4 l .text 0000000000000000 .L0 +0000000000000bc4 l .text 0000000000000000 .L0 +0000000000000bd2 l .text 0000000000000000 .L0 +0000000000000bd2 l .text 0000000000000000 .L0 +0000000000000bd2 l .text 0000000000000000 .L0 +0000000000000bd4 l .text 0000000000000000 .L0 +0000000000000bdc l .text 0000000000000000 .L0 +0000000000000bdc l .text 0000000000000000 .L0 +0000000000000be4 l .text 0000000000000000 .L0 +0000000000000bea l .text 0000000000000000 .L0 +0000000000000bea l .text 0000000000000000 .L0 +0000000000000bea l .text 0000000000000000 .L0 +0000000000000bea l .text 0000000000000000 .L0 +0000000000000bf0 l .text 0000000000000000 .L0 +0000000000000bf2 l .text 0000000000000000 .L0 +0000000000000bf2 l .text 0000000000000000 .L0 +0000000000000c04 l .text 0000000000000000 .L0 +0000000000000c04 l .text 0000000000000000 .L0 +0000000000000c06 l .text 0000000000000000 .L0 +0000000000000c0a l .text 0000000000000000 .L0 +0000000000000c0a l .text 0000000000000000 .L0 +0000000000000c18 l .text 0000000000000000 .L0 +0000000000000c18 l .text 0000000000000000 .L0 +0000000000000c18 l .text 0000000000000000 .L0 +0000000000000c1a l .text 0000000000000000 .L0 +0000000000000c22 l .text 0000000000000000 .L0 +0000000000000c22 l .text 0000000000000000 .L0 +0000000000000c2a l .text 0000000000000000 .L0 +0000000000000c30 l .text 0000000000000000 .L0 +0000000000000928 l .debug_frame 0000000000000000 .L0 +0000000000000ba4 l .text 0000000000000000 .L0 +0000000000000bea l .text 0000000000000000 .L0 +0000000000000bea l .text 0000000000000000 .L0 +0000000000000c30 l .text 0000000000000000 .L0 +0000000000000bd6 l .text 0000000000000000 .L0 +0000000000000baa l .text 0000000000000000 .L0 +0000000000000c1c l .text 0000000000000000 .L0 +0000000000000bf0 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_libflushall.c +0000000000000c6a l .text 0000000000000000 .L2 +0000000000000c76 l .text 0000000000000000 .L5 +0000000000000c90 l .text 0000000000000000 .L4 +0000000000000c68 l .text 0000000000000000 .L3 +0000000000000ce2 l .text 0000000000000000 .L12 +0000000000000cf0 l .text 0000000000000000 .L15 +0000000000000d0a l .text 0000000000000000 .L14 +0000000000000cd6 l .text 0000000000000000 .L13 +0000000000001fad l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +00000000000046aa l .debug_str 0000000000000000 .LASF85 +000000000000497a l .debug_str 0000000000000000 .LASF86 +00000000000047d1 l .debug_str 0000000000000000 .LASF87 +00000000000006c0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000003b9d l .debug_line 0000000000000000 .Ldebug_line0 +0000000000004886 l .debug_str 0000000000000000 .LASF0 +0000000000004613 l .debug_str 0000000000000000 .LASF2 +000000000000485c l .debug_str 0000000000000000 .LASF1 +000000000000486a l .debug_str 0000000000000000 .LASF3 +00000000000046a0 l .debug_str 0000000000000000 .LASF4 +00000000000049f6 l .debug_str 0000000000000000 .LASF5 +00000000000048ec l .debug_str 0000000000000000 .LASF6 +000000000000484b l .debug_str 0000000000000000 .LASF7 +0000000000004a0d l .debug_str 0000000000000000 .LASF8 +000000000000490c l .debug_str 0000000000000000 .LASF9 +00000000000048bd l .debug_str 0000000000000000 .LASF10 +0000000000004a40 l .debug_str 0000000000000000 .LASF11 +00000000000049ca l .debug_str 0000000000000000 .LASF12 +0000000000004898 l .debug_str 0000000000000000 .LASF13 +0000000000004769 l .debug_str 0000000000000000 .LASF14 +0000000000004922 l .debug_str 0000000000000000 .LASF15 +00000000000048b4 l .debug_str 0000000000000000 .LASF16 +0000000000004915 l .debug_str 0000000000000000 .LASF17 +0000000000004637 l .debug_str 0000000000000000 .LASF18 +0000000000004698 l .debug_str 0000000000000000 .LASF19 +000000000000499f l .debug_str 0000000000000000 .LASF20 +00000000000049be l .debug_str 0000000000000000 .LASF21 +00000000000048ff l .debug_str 0000000000000000 .LASF22 +0000000000004828 l .debug_str 0000000000000000 .LASF23 +0000000000004834 l .debug_str 0000000000000000 .LASF27 +000000000000482e l .debug_str 0000000000000000 .LASF24 +0000000000004792 l .debug_str 0000000000000000 .LASF25 +0000000000004938 l .debug_str 0000000000000000 .LASF26 +0000000000004a23 l .debug_str 0000000000000000 .LASF28 +0000000000004764 l .debug_str 0000000000000000 .LASF29 +00000000000048af l .debug_str 0000000000000000 .LASF30 +00000000000049df l .debug_str 0000000000000000 .LASF31 +0000000000004798 l .debug_str 0000000000000000 .LASF32 +000000000000487d l .debug_str 0000000000000000 .LASF33 +0000000000004892 l .debug_str 0000000000000000 .LASF34 +0000000000004677 l .debug_str 0000000000000000 .LASF35 +000000000000479e l .debug_str 0000000000000000 .LASF36 +0000000000004904 l .debug_str 0000000000000000 .LASF37 +00000000000047f3 l .debug_str 0000000000000000 .LASF38 +0000000000004811 l .debug_str 0000000000000000 .LASF39 +0000000000004a2e l .debug_str 0000000000000000 .LASF40 +00000000000048e6 l .debug_str 0000000000000000 .LASF41 +00000000000049c4 l .debug_str 0000000000000000 .LASF42 +0000000000004a37 l .debug_str 0000000000000000 .LASF43 +00000000000047c3 l .debug_str 0000000000000000 .LASF44 +000000000000483f l .debug_str 0000000000000000 .LASF45 +000000000000492a l .debug_str 0000000000000000 .LASF46 +00000000000047fa l .debug_str 0000000000000000 .LASF47 +000000000000465f l .debug_str 0000000000000000 .LASF48 +0000000000004959 l .debug_str 0000000000000000 .LASF49 +0000000000004680 l .debug_str 0000000000000000 .LASF50 +000000000000477c l .debug_str 0000000000000000 .LASF51 +00000000000047be l .debug_str 0000000000000000 .LASF52 +0000000000004601 l .debug_str 0000000000000000 .LASF53 +00000000000049d2 l .debug_str 0000000000000000 .LASF54 +00000000000045f3 l .debug_str 0000000000000000 .LASF55 +000000000000494d l .debug_str 0000000000000000 .LASF56 +0000000000004930 l .debug_str 0000000000000000 .LASF57 +00000000000049d7 l .debug_str 0000000000000000 .LASF58 +0000000000004943 l .debug_str 0000000000000000 .LASF59 +00000000000049b4 l .debug_str 0000000000000000 .LASF60 +00000000000049ea l .debug_str 0000000000000000 .LASF61 +000000000000475a l .debug_str 0000000000000000 .LASF62 +00000000000047af l .debug_str 0000000000000000 .LASF63 +00000000000047a4 l .debug_str 0000000000000000 .LASF64 +0000000000004970 l .debug_str 0000000000000000 .LASF65 +00000000000048cf l .debug_str 0000000000000000 .LASF66 +0000000000004a1a l .debug_str 0000000000000000 .LASF67 +0000000000004a00 l .debug_str 0000000000000000 .LASF68 +0000000000004607 l .debug_str 0000000000000000 .LASF69 +000000000000463e l .debug_str 0000000000000000 .LASF70 +0000000000004854 l .debug_str 0000000000000000 .LASF71 +000000000000461c l .debug_str 0000000000000000 .LASF72 +00000000000045f9 l .debug_str 0000000000000000 .LASF73 +0000000000004819 l .debug_str 0000000000000000 .LASF74 +00000000000047b9 l .debug_str 0000000000000000 .LASF75 +0000000000004992 l .debug_str 0000000000000000 .LASF78 +0000000000000c94 l .text 0000000000000000 .LFB5 +0000000000000d0e l .text 0000000000000000 .LFE5 +000000000000491d l .debug_str 0000000000000000 .LASF80 +0000000000002928 l .debug_loc 0000000000000000 .LLST5 +0000000000004873 l .debug_str 0000000000000000 .LASF76 +0000000000002987 l .debug_loc 0000000000000000 .LLST6 +00000000000029d1 l .debug_loc 0000000000000000 .LLST7 +0000000000004821 l .debug_str 0000000000000000 .LASF77 +00000000000029f4 l .debug_loc 0000000000000000 .LLST8 +0000000000002a2a l .debug_loc 0000000000000000 .LLST9 +0000000000000cac l .text 0000000000000000 .LVL16 +0000000000000cb8 l .text 0000000000000000 .LVL17 +0000000000000cc4 l .text 0000000000000000 .LVL18 +0000000000000cd0 l .text 0000000000000000 .LVL19 +0000000000000ce2 l .text 0000000000000000 .LVL22 +0000000000000d02 l .text 0000000000000000 .LVL25 +0000000000004649 l .debug_str 0000000000000000 .LASF79 +0000000000000c30 l .text 0000000000000000 .LFB4 +0000000000000c94 l .text 0000000000000000 .LFE4 +0000000000002a9e l .debug_loc 0000000000000000 .LLST0 +0000000000002aea l .debug_loc 0000000000000000 .LLST1 +0000000000002b34 l .debug_loc 0000000000000000 .LLST2 +0000000000002b57 l .debug_loc 0000000000000000 .LLST3 +0000000000002b8d l .debug_loc 0000000000000000 .LLST4 +0000000000000c4a l .text 0000000000000000 .LVL3 +0000000000000c56 l .text 0000000000000000 .LVL4 +0000000000000c62 l .text 0000000000000000 .LVL5 +0000000000000c88 l .text 0000000000000000 .LVL11 +00000000000048d9 l .debug_str 0000000000000000 .LASF81 +0000000000004771 l .debug_str 0000000000000000 .LASF82 +00000000000049a5 l .debug_str 0000000000000000 .LASF83 +0000000000004623 l .debug_str 0000000000000000 .LASF84 +0000000000000c94 l .text 0000000000000000 .LVL15 +0000000000000cf0 l .text 0000000000000000 .LVL24 +0000000000000cd6 l .text 0000000000000000 .LVL21 +0000000000000cec l .text 0000000000000000 .LVL23 +0000000000000d04 l .text 0000000000000000 .LVL26 +0000000000000d0a l .text 0000000000000000 .LVL27 +0000000000000cd4 l .text 0000000000000000 .LVL20 +0000000000000c30 l .text 0000000000000000 .LVL0 +0000000000000c42 l .text 0000000000000000 .LVL2 +0000000000000c66 l .text 0000000000000000 .LVL6 +0000000000000c68 l .text 0000000000000000 .LVL7 +0000000000000c72 l .text 0000000000000000 .LVL9 +0000000000000c76 l .text 0000000000000000 .LVL10 +0000000000000c8a l .text 0000000000000000 .LVL12 +0000000000000c90 l .text 0000000000000000 .LVL13 +0000000000000c6a l .text 0000000000000000 .LVL8 +0000000000000c3e l .text 0000000000000000 .LVL1 +00000000000061d2 l .debug_info 0000000000000000 .Ldebug_info0 +0000000000000c3e l .text 0000000000000000 .LBB2 +0000000000000c66 l .text 0000000000000000 .LBE2 +0000000000000c68 l .text 0000000000000000 .LBB3 +0000000000000c6a l .text 0000000000000000 .LBE3 +0000000000000c76 l .text 0000000000000000 .LBB4 +0000000000000c94 l .text 0000000000000000 .LBE4 +0000000000000ca4 l .text 0000000000000000 .LBB5 +0000000000000cd4 l .text 0000000000000000 .LBE5 +0000000000000cd6 l .text 0000000000000000 .LBB6 +0000000000000ce2 l .text 0000000000000000 .LBE6 +0000000000000cf0 l .text 0000000000000000 .LBB7 +0000000000000d0e l .text 0000000000000000 .LBE7 +0000000000000c30 l .text 0000000000000000 .L0 +0000000000000c94 l .text 0000000000000000 .L0 +0000000000000c30 l .text 0000000000000000 .L0 +0000000000000c30 l .text 0000000000000000 .L0 +0000000000000c30 l .text 0000000000000000 .L0 +0000000000000c30 l .text 0000000000000000 .L0 +0000000000000c38 l .text 0000000000000000 .L0 +0000000000000c3a l .text 0000000000000000 .L0 +0000000000000c3e l .text 0000000000000000 .L0 +0000000000000c3e l .text 0000000000000000 .L0 +0000000000000c4a l .text 0000000000000000 .L0 +0000000000000c4a l .text 0000000000000000 .L0 +0000000000000c4a l .text 0000000000000000 .L0 +0000000000000c56 l .text 0000000000000000 .L0 +0000000000000c56 l .text 0000000000000000 .L0 +0000000000000c56 l .text 0000000000000000 .L0 +0000000000000c62 l .text 0000000000000000 .L0 +0000000000000c62 l .text 0000000000000000 .L0 +0000000000000c62 l .text 0000000000000000 .L0 +0000000000000c62 l .text 0000000000000000 .L0 +0000000000000c66 l .text 0000000000000000 .L0 +0000000000000c68 l .text 0000000000000000 .L0 +0000000000000c68 l .text 0000000000000000 .L0 +0000000000000c6a l .text 0000000000000000 .L0 +0000000000000c6a l .text 0000000000000000 .L0 +0000000000000c76 l .text 0000000000000000 .L0 +0000000000000c76 l .text 0000000000000000 .L0 +0000000000000c7e l .text 0000000000000000 .L0 +0000000000000c7e l .text 0000000000000000 .L0 +0000000000000c88 l .text 0000000000000000 .L0 +0000000000000c8a l .text 0000000000000000 .L0 +0000000000000c8a l .text 0000000000000000 .L0 +0000000000000c90 l .text 0000000000000000 .L0 +0000000000000c90 l .text 0000000000000000 .L0 +0000000000000c94 l .text 0000000000000000 .L0 +0000000000000c94 l .text 0000000000000000 .L0 +0000000000000c94 l .text 0000000000000000 .L0 +0000000000000c94 l .text 0000000000000000 .L0 +0000000000000c94 l .text 0000000000000000 .L0 +0000000000000c9e l .text 0000000000000000 .L0 +0000000000000ca0 l .text 0000000000000000 .L0 +0000000000000ca4 l .text 0000000000000000 .L0 +0000000000000ca4 l .text 0000000000000000 .L0 +0000000000000ca4 l .text 0000000000000000 .L0 +0000000000000cac l .text 0000000000000000 .L0 +0000000000000cac l .text 0000000000000000 .L0 +0000000000000cac l .text 0000000000000000 .L0 +0000000000000cb8 l .text 0000000000000000 .L0 +0000000000000cb8 l .text 0000000000000000 .L0 +0000000000000cb8 l .text 0000000000000000 .L0 +0000000000000cc4 l .text 0000000000000000 .L0 +0000000000000cc4 l .text 0000000000000000 .L0 +0000000000000cc4 l .text 0000000000000000 .L0 +0000000000000cd0 l .text 0000000000000000 .L0 +0000000000000cd0 l .text 0000000000000000 .L0 +0000000000000cd0 l .text 0000000000000000 .L0 +0000000000000cd0 l .text 0000000000000000 .L0 +0000000000000cd4 l .text 0000000000000000 .L0 +0000000000000cd6 l .text 0000000000000000 .L0 +0000000000000cd6 l .text 0000000000000000 .L0 +0000000000000cd8 l .text 0000000000000000 .L0 +0000000000000ce2 l .text 0000000000000000 .L0 +0000000000000ce2 l .text 0000000000000000 .L0 +0000000000000cf0 l .text 0000000000000000 .L0 +0000000000000cf0 l .text 0000000000000000 .L0 +0000000000000cf8 l .text 0000000000000000 .L0 +0000000000000cf8 l .text 0000000000000000 .L0 +0000000000000d02 l .text 0000000000000000 .L0 +0000000000000d04 l .text 0000000000000000 .L0 +0000000000000d04 l .text 0000000000000000 .L0 +0000000000000d0a l .text 0000000000000000 .L0 +0000000000000d0a l .text 0000000000000000 .L0 +0000000000000d0e l .text 0000000000000000 .L0 +0000000000000998 l .debug_frame 0000000000000000 .L0 +0000000000000c30 l .text 0000000000000000 .L0 +0000000000000c94 l .text 0000000000000000 .L0 +0000000000000c94 l .text 0000000000000000 .L0 +0000000000000d0e l .text 0000000000000000 .L0 +0000000000000c6c l .text 0000000000000000 .L0 +0000000000000c38 l .text 0000000000000000 .L0 +0000000000000ce4 l .text 0000000000000000 .L0 +0000000000000c9e l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_assert.c +0000000000002162 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000004b42 l .debug_str 0000000000000000 .LASF16 +0000000000004a95 l .debug_str 0000000000000000 .LASF17 +0000000000004b20 l .debug_str 0000000000000000 .LASF18 +0000000000000770 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000003f98 l .debug_line 0000000000000000 .Ldebug_line0 +0000000000004ae6 l .debug_str 0000000000000000 .LASF0 +0000000000004ab1 l .debug_str 0000000000000000 .LASF1 +0000000000004b0d l .debug_str 0000000000000000 .LASF2 +0000000000004ad3 l .debug_str 0000000000000000 .LASF3 +0000000000004a57 l .debug_str 0000000000000000 .LASF4 +0000000000004ac4 l .debug_str 0000000000000000 .LASF5 +0000000000004a6c l .debug_str 0000000000000000 .LASF6 +0000000000004a7e l .debug_str 0000000000000000 .LASF7 +0000000000004abf l .debug_str 0000000000000000 .LASF8 +0000000000004a49 l .debug_str 0000000000000000 .LASF9 +0000000000004afb l .debug_str 0000000000000000 .LASF10 +0000000000004acd l .debug_str 0000000000000000 .LASF11 +0000000000004af2 l .debug_str 0000000000000000 .LASF19 +0000000000000d0e l .text 0000000000000000 .LFB4 +0000000000000d24 l .text 0000000000000000 .LFE4 +0000000000004b17 l .debug_str 0000000000000000 .LASF12 +0000000000002c01 l .debug_loc 0000000000000000 .LLST0 +0000000000004a64 l .debug_str 0000000000000000 .LASF13 +0000000000002c3a l .debug_loc 0000000000000000 .LLST1 +0000000000002c73 l .debug_loc 0000000000000000 .LLST2 +0000000000000d1c l .text 0000000000000000 .LVL1 +0000000000000d24 l .text 0000000000000000 .LVL2 +0000000000004aa9 l .debug_str 0000000000000000 .LASF14 +0000000000004b07 l .debug_str 0000000000000000 .LASF15 +0000000000000d0e l .text 0000000000000000 .LVL0 +00000000000068be l .debug_info 0000000000000000 .Ldebug_info0 +0000000000000d0e l .text 0000000000000000 .L0 +0000000000000d0e l .text 0000000000000000 .L0 +0000000000000d0e l .text 0000000000000000 .L0 +0000000000000d10 l .text 0000000000000000 .L0 +0000000000000d12 l .text 0000000000000000 .L0 +0000000000000d14 l .text 0000000000000000 .L0 +0000000000000d1c l .text 0000000000000000 .L0 +0000000000000d24 l .text 0000000000000000 .L0 +0000000000000a10 l .debug_frame 0000000000000000 .L0 +0000000000000d0e l .text 0000000000000000 .L0 +0000000000000d24 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 pthread_exit.c +0000000000002214 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000004d02 l .debug_str 0000000000000000 .LASF14 +0000000000004cbf l .debug_str 0000000000000000 .LASF15 +0000000000004ce0 l .debug_str 0000000000000000 .LASF16 +0000000000000790 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000000404a l .debug_line 0000000000000000 .Ldebug_line0 +0000000000004ca7 l .debug_str 0000000000000000 .LASF0 +0000000000004c64 l .debug_str 0000000000000000 .LASF1 +0000000000004cd6 l .debug_str 0000000000000000 .LASF2 +0000000000004c94 l .debug_str 0000000000000000 .LASF3 +0000000000004bfd l .debug_str 0000000000000000 .LASF4 +0000000000004c77 l .debug_str 0000000000000000 .LASF5 +0000000000004c1a l .debug_str 0000000000000000 .LASF6 +0000000000004c40 l .debug_str 0000000000000000 .LASF7 +0000000000004c72 l .debug_str 0000000000000000 .LASF8 +0000000000004c86 l .debug_str 0000000000000000 .LASF9 +0000000000004cb3 l .debug_str 0000000000000000 .LASF10 +0000000000004c80 l .debug_str 0000000000000000 .LASF11 +0000000000004c57 l .debug_str 0000000000000000 .LASF17 +0000000000000d24 l .text 0000000000000000 .LFB7 +0000000000000d42 l .text 0000000000000000 .LFE7 +0000000000004bf2 l .debug_str 0000000000000000 .LASF18 +0000000000002cac l .debug_loc 0000000000000000 .LLST0 +0000000000000d38 l .text 0000000000000000 .LVL2 +0000000000000d42 l .text 0000000000000000 .LVL3 +0000000000004c2c l .debug_str 0000000000000000 .LASF12 +0000000000004c0a l .debug_str 0000000000000000 .LASF13 +0000000000000d24 l .text 0000000000000000 .LVL0 +0000000000000d2e l .text 0000000000000000 .LVL1 +00000000000069e7 l .debug_info 0000000000000000 .Ldebug_info0 +0000000000000d24 l .text 0000000000000000 .L0 +0000000000000d24 l .text 0000000000000000 .L0 +0000000000000d24 l .text 0000000000000000 .L0 +0000000000000d28 l .text 0000000000000000 .L0 +0000000000000d2a l .text 0000000000000000 .L0 +0000000000000d2c l .text 0000000000000000 .L0 +0000000000000d2e l .text 0000000000000000 .L0 +0000000000000d30 l .text 0000000000000000 .L0 +0000000000000d38 l .text 0000000000000000 .L0 +0000000000000d42 l .text 0000000000000000 .L0 +0000000000000a40 l .debug_frame 0000000000000000 .L0 +0000000000000d24 l .text 0000000000000000 .L0 +0000000000000d42 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_abort.c +00000000000022ac l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000004e01 l .debug_str 0000000000000000 .LASF10 +0000000000004ec0 l .debug_str 0000000000000000 .LASF11 +0000000000004f02 l .debug_str 0000000000000000 .LASF12 +00000000000007b0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000004142 l .debug_line 0000000000000000 .Ldebug_line0 +0000000000004ee6 l .debug_str 0000000000000000 .LASF0 +0000000000004dee l .debug_str 0000000000000000 .LASF1 +0000000000004ef8 l .debug_str 0000000000000000 .LASF2 +0000000000004ed3 l .debug_str 0000000000000000 .LASF3 +0000000000004db2 l .debug_str 0000000000000000 .LASF4 +0000000000004eb1 l .debug_str 0000000000000000 .LASF5 +0000000000004dbf l .debug_str 0000000000000000 .LASF6 +0000000000004dd1 l .debug_str 0000000000000000 .LASF7 +0000000000004dfc l .debug_str 0000000000000000 .LASF8 +0000000000004eba l .debug_str 0000000000000000 .LASF9 +0000000000004ef2 l .debug_str 0000000000000000 .LASF13 +0000000000000d42 l .text 0000000000000000 .LFB0 +0000000000000d50 l .text 0000000000000000 .LFE0 +0000000000000d50 l .text 0000000000000000 .LVL0 +0000000000004de8 l .debug_str 0000000000000000 .LASF14 +0000000000006ae6 l .debug_info 0000000000000000 .Ldebug_info0 +0000000000000d42 l .text 0000000000000000 .L0 +0000000000000d42 l .text 0000000000000000 .L0 +0000000000000d42 l .text 0000000000000000 .L0 +0000000000000d44 l .text 0000000000000000 .L0 +0000000000000d46 l .text 0000000000000000 .L0 +0000000000000d48 l .text 0000000000000000 .L0 +0000000000000d50 l .text 0000000000000000 .L0 +0000000000000a78 l .debug_frame 0000000000000000 .L0 +0000000000000d42 l .text 0000000000000000 .L0 +0000000000000d50 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 PROXY__assert.c +000000000000231f l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000005777 l .debug_str 0000000000000000 .LASF153 +000000000000510b l .debug_str 0000000000000000 .LASF154 +00000000000055bb l .debug_str 0000000000000000 .LASF155 +00000000000007d0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +00000000000041ec l .debug_line 0000000000000000 .Ldebug_line0 +000000000000509e l .debug_str 0000000000000000 .LASF0 +00000000000054ce l .debug_str 0000000000000000 .LASF1 +000000000000550b l .debug_str 0000000000000000 .LASF2 +0000000000005290 l .debug_str 0000000000000000 .LASF3 +000000000000522c l .debug_str 0000000000000000 .LASF4 +0000000000004fe3 l .debug_str 0000000000000000 .LASF5 +0000000000005254 l .debug_str 0000000000000000 .LASF6 +000000000000533f l .debug_str 0000000000000000 .LASF8 +0000000000005005 l .debug_str 0000000000000000 .LASF7 +0000000000004f77 l .debug_str 0000000000000000 .LASF9 +00000000000053b7 l .debug_str 0000000000000000 .LASF10 +0000000000005578 l .debug_str 0000000000000000 .LASF11 +00000000000051fb l .debug_str 0000000000000000 .LASF12 +000000000000546e l .debug_str 0000000000000000 .LASF13 +00000000000058d6 l .debug_str 0000000000000000 .LASF14 +0000000000005060 l .debug_str 0000000000000000 .LASF15 +00000000000058bf l .debug_str 0000000000000000 .LASF16 +00000000000053e9 l .debug_str 0000000000000000 .LASF17 +0000000000005743 l .debug_str 0000000000000000 .LASF18 +0000000000005685 l .debug_str 0000000000000000 .LASF19 +0000000000005672 l .debug_str 0000000000000000 .LASF20 +0000000000005355 l .debug_str 0000000000000000 .LASF21 +000000000000587b l .debug_str 0000000000000000 .LASF22 +0000000000004f8b l .debug_str 0000000000000000 .LASF23 +00000000000055a1 l .debug_str 0000000000000000 .LASF24 +000000000000540c l .debug_str 0000000000000000 .LASF25 +0000000000005591 l .debug_str 0000000000000000 .LASF26 +0000000000005210 l .debug_str 0000000000000000 .LASF27 +00000000000052cc l .debug_str 0000000000000000 .LASF28 +000000000000548c l .debug_str 0000000000000000 .LASF29 +00000000000050f7 l .debug_str 0000000000000000 .LASF30 +00000000000052f7 l .debug_str 0000000000000000 .LASF31 +0000000000005385 l .debug_str 0000000000000000 .LASF32 +0000000000004fa6 l .debug_str 0000000000000000 .LASF33 +0000000000005757 l .debug_str 0000000000000000 .LASF34 +000000000000556c l .debug_str 0000000000000000 .LASF35 +000000000000561c l .debug_str 0000000000000000 .LASF36 +0000000000005050 l .debug_str 0000000000000000 .LASF37 +0000000000005561 l .debug_str 0000000000000000 .LASF38 +00000000000054f7 l .debug_str 0000000000000000 .LASF39 +0000000000004f41 l .debug_str 0000000000000000 .LASF40 +0000000000005239 l .debug_str 0000000000000000 .LASF41 +00000000000054dc l .debug_str 0000000000000000 .LASF42 +000000000000516a l .debug_str 0000000000000000 .LASF43 +0000000000005719 l .debug_str 0000000000000000 .LASF44 +00000000000053a8 l .debug_str 0000000000000000 .LASF45 +00000000000050c2 l .debug_str 0000000000000000 .LASF46 +0000000000005040 l .debug_str 0000000000000000 .LASF47 +00000000000053f8 l .debug_str 0000000000000000 .LASF48 +0000000000005130 l .debug_str 0000000000000000 .LASF49 +00000000000056b4 l .debug_str 0000000000000000 .LASF50 +00000000000051df l .debug_str 0000000000000000 .LASF51 +0000000000004f66 l .debug_str 0000000000000000 .LASF52 +0000000000005397 l .debug_str 0000000000000000 .LASF53 +00000000000052ad l .debug_str 0000000000000000 .LASF54 +0000000000005827 l .debug_str 0000000000000000 .LASF55 +0000000000005270 l .debug_str 0000000000000000 .LASF56 +0000000000005347 l .debug_str 0000000000000000 .LASF57 +000000000000518d l .debug_str 0000000000000000 .LASF58 +000000000000530b l .debug_str 0000000000000000 .LASF59 +00000000000050d3 l .debug_str 0000000000000000 .LASF60 +0000000000005871 l .debug_str 0000000000000000 .LASF61 +0000000000005095 l .debug_str 0000000000000000 .LASF62 +00000000000051f1 l .debug_str 0000000000000000 .LASF63 +0000000000005036 l .debug_str 0000000000000000 .LASF64 +0000000000005433 l .debug_str 0000000000000000 .LASF65 +0000000000004f38 l .debug_str 0000000000000000 .LASF66 +0000000000004ffa l .debug_str 0000000000000000 .LASF67 +0000000000004fb5 l .debug_str 0000000000000000 .LASF68 +000000000000531a l .debug_str 0000000000000000 .LASF69 +0000000000005123 l .debug_str 0000000000000000 .LASF70 +0000000000005484 l .debug_str 0000000000000000 .LASF71 +0000000000005515 l .debug_str 0000000000000000 .LASF72 +0000000000005266 l .debug_str 0000000000000000 .LASF73 +0000000000005863 l .debug_str 0000000000000000 .LASF74 +000000000000508b l .debug_str 0000000000000000 .LASF75 +00000000000051a5 l .debug_str 0000000000000000 .LASF76 +0000000000005710 l .debug_str 0000000000000000 .LASF77 +0000000000005479 l .debug_str 0000000000000000 .LASF78 +000000000000589d l .debug_str 0000000000000000 .LASF79 +00000000000056aa l .debug_str 0000000000000000 .LASF80 +0000000000004f81 l .debug_str 0000000000000000 .LASF81 +0000000000005334 l .debug_str 0000000000000000 .LASF82 +00000000000054eb l .debug_str 0000000000000000 .LASF83 +00000000000056c6 l .debug_str 0000000000000000 .LASF84 +000000000000551e l .debug_str 0000000000000000 .LASF85 +0000000000005206 l .debug_str 0000000000000000 .LASF86 +00000000000052ed l .debug_str 0000000000000000 .LASF87 +0000000000005858 l .debug_str 0000000000000000 .LASF88 +0000000000005463 l .debug_str 0000000000000000 .LASF89 +00000000000050b8 l .debug_str 0000000000000000 .LASF90 +00000000000054af l .debug_str 0000000000000000 .LASF91 +00000000000051c5 l .debug_str 0000000000000000 .LASF92 +0000000000005220 l .debug_str 0000000000000000 .LASF93 +000000000000584b l .debug_str 0000000000000000 .LASF94 +0000000000005584 l .debug_str 0000000000000000 .LASF95 +000000000000569f l .debug_str 0000000000000000 .LASF96 +00000000000052c2 l .debug_str 0000000000000000 .LASF97 +000000000000519b l .debug_str 0000000000000000 .LASF98 +00000000000052a3 l .debug_str 0000000000000000 .LASF99 +0000000000005666 l .debug_str 0000000000000000 .LASF100 +00000000000058e0 l .debug_str 0000000000000000 .LASF101 +000000000000544a l .debug_str 0000000000000000 .LASF102 +000000000000517a l .debug_str 0000000000000000 .LASF103 +0000000000005418 l .debug_str 0000000000000000 .LASF104 +0000000000005073 l .debug_str 0000000000000000 .LASF105 +00000000000056fa l .debug_str 0000000000000000 .LASF106 +0000000000005149 l .debug_str 0000000000000000 .LASF107 +0000000000004fd0 l .debug_str 0000000000000000 .LASF108 +00000000000054ba l .debug_str 0000000000000000 .LASF109 +0000000000005527 l .debug_str 0000000000000000 .LASF110 +000000000000588c l .debug_str 0000000000000000 .LASF111 +000000000000501c l .debug_str 0000000000000000 .LASF112 +000000000000564f l .debug_str 0000000000000000 .LASF113 +0000000000005600 l .debug_str 0000000000000000 .LASF114 +0000000000004f4c l .debug_str 0000000000000000 .LASF115 +000000000000536c l .debug_str 0000000000000000 .LASF116 +0000000000005726 l .debug_str 0000000000000000 .LASF117 +00000000000050dd l .debug_str 0000000000000000 .LASF118 +00000000000053d0 l .debug_str 0000000000000000 .LASF119 +00000000000056d3 l .debug_str 0000000000000000 .LASF120 +0000000000005763 l .debug_str 0000000000000000 .LASF121 +0000000000005247 l .debug_str 0000000000000000 .LASF122 +000000000000513a l .debug_str 0000000000000000 .LASF123 +0000000000005326 l .debug_str 0000000000000000 .LASF124 +00000000000056ee l .debug_str 0000000000000000 .LASF125 +00000000000051d0 l .debug_str 0000000000000000 .LASF126 +000000000000543e l .debug_str 0000000000000000 .LASF127 +0000000000005552 l .debug_str 0000000000000000 .LASF128 +000000000000549b l .debug_str 0000000000000000 .LASF129 +0000000000004fbf l .debug_str 0000000000000000 .LASF130 +0000000000005282 l .debug_str 0000000000000000 .LASF131 +00000000000055ec l .debug_str 0000000000000000 .LASF132 +0000000000005642 l .debug_str 0000000000000000 .LASF133 +00000000000058a6 l .debug_str 0000000000000000 .LASF134 +0000000000004f9b l .debug_str 0000000000000000 .LASF135 +0000000000005500 l .debug_str 0000000000000000 .LASF136 +00000000000051ae l .debug_str 0000000000000000 .LASF137 +00000000000058b1 l .debug_str 0000000000000000 .LASF138 +00000000000050aa l .debug_str 0000000000000000 .LASF139 +0000000000005839 l .debug_str 0000000000000000 .LASF140 +0000000000004fec l .debug_str 0000000000000000 .LASF141 +00000000000053c1 l .debug_str 0000000000000000 .LASF142 +0000000000005628 l .debug_str 0000000000000000 .LASF143 +0000000000005631 l .debug_str 0000000000000000 .LASF144 +0000000000005541 l .debug_str 0000000000000000 .LASF145 +000000000000515f l .debug_str 0000000000000000 .LASF146 +00000000000052de l .debug_str 0000000000000000 .LASF147 +00000000000055e7 l .debug_str 0000000000000000 .LASF148 +0000000000004f30 l .debug_str 0000000000000000 .LASF156 +0000000000000d50 l .text 0000000000000000 .LFB7 +0000000000000d68 l .text 0000000000000000 .LFE7 +00000000000055db l .debug_str 0000000000000000 .LASF149 +0000000000002ce2 l .debug_loc 0000000000000000 .LLST0 +00000000000055e1 l .debug_str 0000000000000000 .LASF150 +0000000000002d18 l .debug_loc 0000000000000000 .LLST1 +0000000000004f24 l .debug_str 0000000000000000 .LASF151 +0000000000002d51 l .debug_loc 0000000000000000 .LLST2 +0000000000004f2a l .debug_str 0000000000000000 .LASF152 +0000000000002d87 l .debug_loc 0000000000000000 .LLST3 +0000000000000d58 l .text 0000000000000000 .LBB4 +0000000000000d66 l .text 0000000000000000 .LBE4 +0000000000002dbd l .debug_loc 0000000000000000 .LLST4 +0000000000002de1 l .debug_loc 0000000000000000 .LLST5 +0000000000002e17 l .debug_loc 0000000000000000 .LLST6 +0000000000002e4d l .debug_loc 0000000000000000 .LLST7 +0000000000002e78 l .debug_loc 0000000000000000 .LLST8 +00000000000051bb l .debug_str 0000000000000000 .LASF157 +0000000000000d50 l .text 0000000000000000 .LVL0 +0000000000000d5a l .text 0000000000000000 .LVL5 +0000000000000d5c l .text 0000000000000000 .LVL6 +0000000000000d5e l .text 0000000000000000 .LVL7 +0000000000000d60 l .text 0000000000000000 .LVL8 +0000000000000d58 l .text 0000000000000000 .LVL4 +0000000000000d66 l .text 0000000000000000 .LVL9 +0000000000000d56 l .text 0000000000000000 .LVL3 +0000000000000d54 l .text 0000000000000000 .LVL2 +0000000000000d52 l .text 0000000000000000 .LVL1 +0000000000006b9c l .debug_info 0000000000000000 .Ldebug_info0 +0000000000000d50 l .text 0000000000000000 .L0 +0000000000000d50 l .text 0000000000000000 .L0 +0000000000000d50 l .text 0000000000000000 .L0 +0000000000000d58 l .text 0000000000000000 .L0 +0000000000000d58 l .text 0000000000000000 .L0 +0000000000000d5a l .text 0000000000000000 .L0 +0000000000000d5a l .text 0000000000000000 .L0 +0000000000000d5c l .text 0000000000000000 .L0 +0000000000000d5c l .text 0000000000000000 .L0 +0000000000000d5e l .text 0000000000000000 .L0 +0000000000000d5e l .text 0000000000000000 .L0 +0000000000000d60 l .text 0000000000000000 .L0 +0000000000000d60 l .text 0000000000000000 .L0 +0000000000000d64 l .text 0000000000000000 .L0 +0000000000000d66 l .text 0000000000000000 .L0 +0000000000000d66 l .text 0000000000000000 .L0 +0000000000000d68 l .text 0000000000000000 .L0 +0000000000000aa8 l .debug_frame 0000000000000000 .L0 +0000000000000d50 l .text 0000000000000000 .L0 +0000000000000d68 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 PROXY__exit.c +0000000000000d72 l .text 0000000000000000 .L2 +000000000000241b l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000006128 l .debug_str 0000000000000000 .LASF150 +0000000000005e27 l .debug_str 0000000000000000 .LASF151 +0000000000005f6c l .debug_str 0000000000000000 .LASF152 +00000000000007f0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000004355 l .debug_line 0000000000000000 .Ldebug_line0 +0000000000005a52 l .debug_str 0000000000000000 .LASF0 +0000000000005e7f l .debug_str 0000000000000000 .LASF1 +0000000000005ebc l .debug_str 0000000000000000 .LASF2 +0000000000005c44 l .debug_str 0000000000000000 .LASF3 +0000000000005be0 l .debug_str 0000000000000000 .LASF4 +0000000000005abf l .debug_str 0000000000000000 .LASF5 +0000000000005c08 l .debug_str 0000000000000000 .LASF6 +0000000000005cfb l .debug_str 0000000000000000 .LASF8 +00000000000059b9 l .debug_str 0000000000000000 .LASF7 +000000000000592a l .debug_str 0000000000000000 .LASF9 +0000000000005f92 l .debug_str 0000000000000000 .LASF10 +0000000000005d73 l .debug_str 0000000000000000 .LASF11 +0000000000005f29 l .debug_str 0000000000000000 .LASF12 +0000000000005baf l .debug_str 0000000000000000 .LASF13 +0000000000005e11 l .debug_str 0000000000000000 .LASF14 +0000000000006287 l .debug_str 0000000000000000 .LASF15 +0000000000005a14 l .debug_str 0000000000000000 .LASF16 +0000000000006270 l .debug_str 0000000000000000 .LASF17 +0000000000005d8c l .debug_str 0000000000000000 .LASF18 +00000000000060ee l .debug_str 0000000000000000 .LASF19 +0000000000006030 l .debug_str 0000000000000000 .LASF20 +000000000000601d l .debug_str 0000000000000000 .LASF21 +0000000000005d11 l .debug_str 0000000000000000 .LASF22 +000000000000622c l .debug_str 0000000000000000 .LASF23 +000000000000593e l .debug_str 0000000000000000 .LASF24 +0000000000005f52 l .debug_str 0000000000000000 .LASF25 +0000000000005daf l .debug_str 0000000000000000 .LASF26 +0000000000005f42 l .debug_str 0000000000000000 .LASF27 +0000000000005bc4 l .debug_str 0000000000000000 .LASF28 +0000000000005c88 l .debug_str 0000000000000000 .LASF29 +0000000000005e3d l .debug_str 0000000000000000 .LASF30 +0000000000005aab l .debug_str 0000000000000000 .LASF31 +0000000000005cb3 l .debug_str 0000000000000000 .LASF32 +0000000000005d41 l .debug_str 0000000000000000 .LASF33 +0000000000005959 l .debug_str 0000000000000000 .LASF34 +0000000000006102 l .debug_str 0000000000000000 .LASF35 +0000000000005f1d l .debug_str 0000000000000000 .LASF36 +0000000000005fc7 l .debug_str 0000000000000000 .LASF37 +0000000000005a04 l .debug_str 0000000000000000 .LASF38 +0000000000005f12 l .debug_str 0000000000000000 .LASF39 +0000000000005ea8 l .debug_str 0000000000000000 .LASF40 +00000000000058f4 l .debug_str 0000000000000000 .LASF41 +0000000000005bed l .debug_str 0000000000000000 .LASF42 +0000000000005e8d l .debug_str 0000000000000000 .LASF43 +0000000000005b1e l .debug_str 0000000000000000 .LASF44 +00000000000060c4 l .debug_str 0000000000000000 .LASF45 +0000000000005d64 l .debug_str 0000000000000000 .LASF46 +0000000000005a76 l .debug_str 0000000000000000 .LASF47 +00000000000059f4 l .debug_str 0000000000000000 .LASF48 +0000000000005d9b l .debug_str 0000000000000000 .LASF49 +0000000000005996 l .debug_str 0000000000000000 .LASF50 +000000000000605f l .debug_str 0000000000000000 .LASF51 +0000000000005b93 l .debug_str 0000000000000000 .LASF52 +0000000000005919 l .debug_str 0000000000000000 .LASF53 +0000000000005d53 l .debug_str 0000000000000000 .LASF54 +0000000000005c61 l .debug_str 0000000000000000 .LASF55 +00000000000061d8 l .debug_str 0000000000000000 .LASF56 +0000000000005c24 l .debug_str 0000000000000000 .LASF57 +0000000000005d03 l .debug_str 0000000000000000 .LASF58 +0000000000005b41 l .debug_str 0000000000000000 .LASF59 +0000000000005cc7 l .debug_str 0000000000000000 .LASF60 +0000000000005a87 l .debug_str 0000000000000000 .LASF61 +0000000000006222 l .debug_str 0000000000000000 .LASF62 +0000000000005a49 l .debug_str 0000000000000000 .LASF63 +0000000000005ba5 l .debug_str 0000000000000000 .LASF64 +00000000000059ea l .debug_str 0000000000000000 .LASF65 +0000000000005dd6 l .debug_str 0000000000000000 .LASF66 +00000000000058eb l .debug_str 0000000000000000 .LASF67 +00000000000059ae l .debug_str 0000000000000000 .LASF68 +0000000000005968 l .debug_str 0000000000000000 .LASF69 +0000000000005cd6 l .debug_str 0000000000000000 .LASF70 +0000000000005ac8 l .debug_str 0000000000000000 .LASF71 +0000000000005c80 l .debug_str 0000000000000000 .LASF72 +0000000000005ec6 l .debug_str 0000000000000000 .LASF73 +0000000000005c1a l .debug_str 0000000000000000 .LASF74 +0000000000006214 l .debug_str 0000000000000000 .LASF75 +0000000000005a3f l .debug_str 0000000000000000 .LASF76 +0000000000005b59 l .debug_str 0000000000000000 .LASF77 +00000000000060bb l .debug_str 0000000000000000 .LASF78 +0000000000005e1c l .debug_str 0000000000000000 .LASF79 +000000000000624e l .debug_str 0000000000000000 .LASF80 +0000000000006055 l .debug_str 0000000000000000 .LASF81 +0000000000005934 l .debug_str 0000000000000000 .LASF82 +0000000000005cf0 l .debug_str 0000000000000000 .LASF83 +0000000000005e9c l .debug_str 0000000000000000 .LASF84 +0000000000006071 l .debug_str 0000000000000000 .LASF85 +0000000000005ecf l .debug_str 0000000000000000 .LASF86 +0000000000005bba l .debug_str 0000000000000000 .LASF87 +0000000000005ca9 l .debug_str 0000000000000000 .LASF88 +0000000000006209 l .debug_str 0000000000000000 .LASF89 +0000000000005e06 l .debug_str 0000000000000000 .LASF90 +0000000000005a6c l .debug_str 0000000000000000 .LASF91 +0000000000005e60 l .debug_str 0000000000000000 .LASF92 +0000000000005b79 l .debug_str 0000000000000000 .LASF93 +0000000000005bd4 l .debug_str 0000000000000000 .LASF94 +00000000000061fc l .debug_str 0000000000000000 .LASF95 +0000000000005f35 l .debug_str 0000000000000000 .LASF96 +000000000000604a l .debug_str 0000000000000000 .LASF97 +0000000000005c76 l .debug_str 0000000000000000 .LASF98 +0000000000005b4f l .debug_str 0000000000000000 .LASF99 +0000000000005c57 l .debug_str 0000000000000000 .LASF100 +0000000000006011 l .debug_str 0000000000000000 .LASF101 +0000000000006291 l .debug_str 0000000000000000 .LASF102 +0000000000005ded l .debug_str 0000000000000000 .LASF103 +0000000000005b2e l .debug_str 0000000000000000 .LASF104 +0000000000005dbb l .debug_str 0000000000000000 .LASF105 +0000000000005a27 l .debug_str 0000000000000000 .LASF106 +00000000000060a5 l .debug_str 0000000000000000 .LASF107 +0000000000005afd l .debug_str 0000000000000000 .LASF108 +0000000000005983 l .debug_str 0000000000000000 .LASF109 +0000000000005e6b l .debug_str 0000000000000000 .LASF110 +0000000000005ed8 l .debug_str 0000000000000000 .LASF111 +000000000000623d l .debug_str 0000000000000000 .LASF112 +00000000000059d0 l .debug_str 0000000000000000 .LASF113 +0000000000005ffa l .debug_str 0000000000000000 .LASF114 +0000000000005fab l .debug_str 0000000000000000 .LASF115 +00000000000058ff l .debug_str 0000000000000000 .LASF116 +0000000000005d28 l .debug_str 0000000000000000 .LASF117 +00000000000060d1 l .debug_str 0000000000000000 .LASF118 +0000000000005a91 l .debug_str 0000000000000000 .LASF119 +0000000000005ad5 l .debug_str 0000000000000000 .LASF120 +000000000000607e l .debug_str 0000000000000000 .LASF121 +000000000000610e l .debug_str 0000000000000000 .LASF122 +0000000000005bfb l .debug_str 0000000000000000 .LASF123 +0000000000005aee l .debug_str 0000000000000000 .LASF124 +0000000000005ce2 l .debug_str 0000000000000000 .LASF125 +0000000000006099 l .debug_str 0000000000000000 .LASF126 +0000000000005b84 l .debug_str 0000000000000000 .LASF127 +0000000000005de1 l .debug_str 0000000000000000 .LASF128 +0000000000005f03 l .debug_str 0000000000000000 .LASF129 +0000000000005e4c l .debug_str 0000000000000000 .LASF130 +0000000000005972 l .debug_str 0000000000000000 .LASF131 +0000000000005c36 l .debug_str 0000000000000000 .LASF132 +0000000000005f97 l .debug_str 0000000000000000 .LASF133 +0000000000005fed l .debug_str 0000000000000000 .LASF134 +0000000000006257 l .debug_str 0000000000000000 .LASF135 +000000000000594e l .debug_str 0000000000000000 .LASF136 +0000000000005eb1 l .debug_str 0000000000000000 .LASF137 +0000000000005b62 l .debug_str 0000000000000000 .LASF138 +0000000000006262 l .debug_str 0000000000000000 .LASF139 +0000000000005a5e l .debug_str 0000000000000000 .LASF140 +00000000000061ea l .debug_str 0000000000000000 .LASF141 +00000000000059a0 l .debug_str 0000000000000000 .LASF142 +0000000000005d7d l .debug_str 0000000000000000 .LASF143 +0000000000005fd3 l .debug_str 0000000000000000 .LASF144 +0000000000005fdc l .debug_str 0000000000000000 .LASF145 +0000000000005ef2 l .debug_str 0000000000000000 .LASF146 +0000000000005b13 l .debug_str 0000000000000000 .LASF147 +0000000000005c9a l .debug_str 0000000000000000 .LASF148 +0000000000006122 l .debug_str 0000000000000000 .LASF153 +0000000000000d68 l .text 0000000000000000 .LFB7 +0000000000000d74 l .text 0000000000000000 .LFE7 +0000000000005f8c l .debug_str 0000000000000000 .LASF149 +0000000000002eae l .debug_loc 0000000000000000 .LLST0 +0000000000000d6a l .text 0000000000000000 .LBB4 +0000000000000d72 l .text 0000000000000000 .LBE4 +0000000000002ee7 l .debug_loc 0000000000000000 .LLST1 +0000000000002f0b l .debug_loc 0000000000000000 .LLST2 +0000000000005b6f l .debug_str 0000000000000000 .LASF154 +0000000000000d68 l .text 0000000000000000 .LVL0 +0000000000000d6c l .text 0000000000000000 .LVL2 +0000000000000d6a l .text 0000000000000000 .LVL1 +0000000000000d72 l .text 0000000000000000 .LVL3 +00000000000070d0 l .debug_info 0000000000000000 .Ldebug_info0 +0000000000000d68 l .text 0000000000000000 .L0 +0000000000000d68 l .text 0000000000000000 .L0 +0000000000000d68 l .text 0000000000000000 .L0 +0000000000000d6a l .text 0000000000000000 .L0 +0000000000000d6a l .text 0000000000000000 .L0 +0000000000000d6c l .text 0000000000000000 .L0 +0000000000000d6c l .text 0000000000000000 .L0 +0000000000000d70 l .text 0000000000000000 .L0 +0000000000000d72 l .text 0000000000000000 .L0 +0000000000000d72 l .text 0000000000000000 .L0 +0000000000000d72 l .text 0000000000000000 .L0 +0000000000000d72 l .text 0000000000000000 .L0 +0000000000000d74 l .text 0000000000000000 .L0 +0000000000000ad0 l .debug_frame 0000000000000000 .L0 +0000000000000d68 l .text 0000000000000000 .L0 +0000000000000d74 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 PROXY_clock_gettime.c +0000000000002503 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000006b28 l .debug_str 0000000000000000 .LASF157 +000000000000639f l .debug_str 0000000000000000 .LASF158 +000000000000696c l .debug_str 0000000000000000 .LASF159 +0000000000000810 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +00000000000044ab l .debug_line 0000000000000000 .Ldebug_line0 +000000000000641b l .debug_str 0000000000000000 .LASF0 +000000000000686d l .debug_str 0000000000000000 .LASF1 +00000000000068aa l .debug_str 0000000000000000 .LASF2 +000000000000662b l .debug_str 0000000000000000 .LASF3 +00000000000062ef l .debug_str 0000000000000000 .LASF7 +00000000000065a9 l .debug_str 0000000000000000 .LASF4 +0000000000006488 l .debug_str 0000000000000000 .LASF5 +00000000000065d1 l .debug_str 0000000000000000 .LASF6 +00000000000066ec l .debug_str 0000000000000000 .LASF8 +0000000000006364 l .debug_str 0000000000000000 .LASF9 +0000000000006949 l .debug_str 0000000000000000 .LASF10 +00000000000062db l .debug_str 0000000000000000 .LASF11 +0000000000006811 l .debug_str 0000000000000000 .LASF12 +0000000000006c47 l .debug_str 0000000000000000 .LASF13 +0000000000006998 l .debug_str 0000000000000000 .LASF14 +00000000000068bd l .debug_str 0000000000000000 .LASF160 +0000000000006785 l .debug_str 0000000000000000 .LASF15 +0000000000006764 l .debug_str 0000000000000000 .LASF16 +000000000000676c l .debug_str 0000000000000000 .LASF17 +0000000000006920 l .debug_str 0000000000000000 .LASF18 +0000000000006578 l .debug_str 0000000000000000 .LASF19 +0000000000006bea l .debug_str 0000000000000000 .LASF20 +0000000000006c8a l .debug_str 0000000000000000 .LASF21 +00000000000063dd l .debug_str 0000000000000000 .LASF22 +0000000000006c73 l .debug_str 0000000000000000 .LASF23 +000000000000678c l .debug_str 0000000000000000 .LASF24 +0000000000006af4 l .debug_str 0000000000000000 .LASF25 +0000000000006a36 l .debug_str 0000000000000000 .LASF26 +0000000000006a23 l .debug_str 0000000000000000 .LASF27 +0000000000006702 l .debug_str 0000000000000000 .LASF28 +0000000000006c25 l .debug_str 0000000000000000 .LASF29 +00000000000065e3 l .debug_str 0000000000000000 .LASF30 +0000000000006952 l .debug_str 0000000000000000 .LASF31 +00000000000067af l .debug_str 0000000000000000 .LASF32 +0000000000006939 l .debug_str 0000000000000000 .LASF33 +000000000000658d l .debug_str 0000000000000000 .LASF34 +0000000000006679 l .debug_str 0000000000000000 .LASF35 +000000000000682b l .debug_str 0000000000000000 .LASF36 +0000000000006474 l .debug_str 0000000000000000 .LASF37 +00000000000066a4 l .debug_str 0000000000000000 .LASF38 +0000000000006732 l .debug_str 0000000000000000 .LASF39 +0000000000006304 l .debug_str 0000000000000000 .LASF40 +0000000000006b08 l .debug_str 0000000000000000 .LASF41 +0000000000006914 l .debug_str 0000000000000000 .LASF42 +00000000000069cd l .debug_str 0000000000000000 .LASF43 +00000000000063cd l .debug_str 0000000000000000 .LASF44 +0000000000006909 l .debug_str 0000000000000000 .LASF45 +0000000000006896 l .debug_str 0000000000000000 .LASF46 +00000000000062a5 l .debug_str 0000000000000000 .LASF47 +00000000000065b6 l .debug_str 0000000000000000 .LASF48 +000000000000687b l .debug_str 0000000000000000 .LASF49 +00000000000064e7 l .debug_str 0000000000000000 .LASF50 +0000000000006aca l .debug_str 0000000000000000 .LASF51 +0000000000006755 l .debug_str 0000000000000000 .LASF52 +000000000000643f l .debug_str 0000000000000000 .LASF53 +00000000000063bd l .debug_str 0000000000000000 .LASF54 +000000000000679b l .debug_str 0000000000000000 .LASF55 +0000000000006341 l .debug_str 0000000000000000 .LASF56 +0000000000006a65 l .debug_str 0000000000000000 .LASF57 +000000000000655c l .debug_str 0000000000000000 .LASF58 +00000000000062ca l .debug_str 0000000000000000 .LASF59 +0000000000006744 l .debug_str 0000000000000000 .LASF60 +000000000000665a l .debug_str 0000000000000000 .LASF61 +0000000000006bd8 l .debug_str 0000000000000000 .LASF62 +000000000000660b l .debug_str 0000000000000000 .LASF63 +00000000000066f4 l .debug_str 0000000000000000 .LASF64 +000000000000650a l .debug_str 0000000000000000 .LASF65 +00000000000066b8 l .debug_str 0000000000000000 .LASF66 +0000000000006450 l .debug_str 0000000000000000 .LASF67 +0000000000006c1b l .debug_str 0000000000000000 .LASF68 +0000000000006412 l .debug_str 0000000000000000 .LASF69 +000000000000656e l .debug_str 0000000000000000 .LASF70 +0000000000006395 l .debug_str 0000000000000000 .LASF71 +00000000000067d6 l .debug_str 0000000000000000 .LASF72 +000000000000629c l .debug_str 0000000000000000 .LASF73 +0000000000006359 l .debug_str 0000000000000000 .LASF74 +0000000000006313 l .debug_str 0000000000000000 .LASF75 +00000000000066c7 l .debug_str 0000000000000000 .LASF76 +0000000000006491 l .debug_str 0000000000000000 .LASF77 +0000000000006823 l .debug_str 0000000000000000 .LASF78 +00000000000068b4 l .debug_str 0000000000000000 .LASF79 +0000000000006601 l .debug_str 0000000000000000 .LASF80 +0000000000006c0d l .debug_str 0000000000000000 .LASF81 +0000000000006408 l .debug_str 0000000000000000 .LASF82 +0000000000006522 l .debug_str 0000000000000000 .LASF83 +0000000000006ac1 l .debug_str 0000000000000000 .LASF84 +0000000000006818 l .debug_str 0000000000000000 .LASF85 +0000000000006c51 l .debug_str 0000000000000000 .LASF86 +0000000000006a5b l .debug_str 0000000000000000 .LASF87 +00000000000062e5 l .debug_str 0000000000000000 .LASF88 +00000000000066e1 l .debug_str 0000000000000000 .LASF89 +000000000000688a l .debug_str 0000000000000000 .LASF90 +0000000000006a77 l .debug_str 0000000000000000 .LASF91 +00000000000068c6 l .debug_str 0000000000000000 .LASF92 +0000000000006583 l .debug_str 0000000000000000 .LASF93 +000000000000669a l .debug_str 0000000000000000 .LASF94 +0000000000006c02 l .debug_str 0000000000000000 .LASF95 +0000000000006806 l .debug_str 0000000000000000 .LASF96 +0000000000006435 l .debug_str 0000000000000000 .LASF97 +000000000000684e l .debug_str 0000000000000000 .LASF98 +0000000000006542 l .debug_str 0000000000000000 .LASF99 +000000000000659d l .debug_str 0000000000000000 .LASF100 +0000000000006bf5 l .debug_str 0000000000000000 .LASF101 +000000000000692c l .debug_str 0000000000000000 .LASF102 +0000000000006a50 l .debug_str 0000000000000000 .LASF103 +000000000000666f l .debug_str 0000000000000000 .LASF104 +0000000000006518 l .debug_str 0000000000000000 .LASF105 +0000000000006650 l .debug_str 0000000000000000 .LASF106 +0000000000006a17 l .debug_str 0000000000000000 .LASF107 +0000000000006c94 l .debug_str 0000000000000000 .LASF108 +00000000000067ed l .debug_str 0000000000000000 .LASF109 +00000000000064f7 l .debug_str 0000000000000000 .LASF110 +00000000000067bb l .debug_str 0000000000000000 .LASF111 +00000000000063f0 l .debug_str 0000000000000000 .LASF112 +0000000000006aab l .debug_str 0000000000000000 .LASF113 +00000000000064c6 l .debug_str 0000000000000000 .LASF114 +000000000000632e l .debug_str 0000000000000000 .LASF115 +0000000000006859 l .debug_str 0000000000000000 .LASF116 +00000000000068cf l .debug_str 0000000000000000 .LASF117 +0000000000006c36 l .debug_str 0000000000000000 .LASF118 +000000000000637b l .debug_str 0000000000000000 .LASF119 +0000000000006a00 l .debug_str 0000000000000000 .LASF120 +00000000000069b1 l .debug_str 0000000000000000 .LASF121 +00000000000062b0 l .debug_str 0000000000000000 .LASF122 +0000000000006719 l .debug_str 0000000000000000 .LASF123 +0000000000006ad7 l .debug_str 0000000000000000 .LASF124 +000000000000645a l .debug_str 0000000000000000 .LASF125 +000000000000649e l .debug_str 0000000000000000 .LASF126 +0000000000006a84 l .debug_str 0000000000000000 .LASF127 +0000000000006b14 l .debug_str 0000000000000000 .LASF128 +00000000000065c4 l .debug_str 0000000000000000 .LASF129 +00000000000064b7 l .debug_str 0000000000000000 .LASF130 +00000000000066d3 l .debug_str 0000000000000000 .LASF131 +0000000000006a9f l .debug_str 0000000000000000 .LASF132 +000000000000654d l .debug_str 0000000000000000 .LASF133 +00000000000067e1 l .debug_str 0000000000000000 .LASF134 +00000000000068fa l .debug_str 0000000000000000 .LASF135 +000000000000683a l .debug_str 0000000000000000 .LASF136 +000000000000631d l .debug_str 0000000000000000 .LASF137 +000000000000661d l .debug_str 0000000000000000 .LASF138 +000000000000699d l .debug_str 0000000000000000 .LASF139 +00000000000069f3 l .debug_str 0000000000000000 .LASF140 +0000000000006c5a l .debug_str 0000000000000000 .LASF141 +00000000000062f9 l .debug_str 0000000000000000 .LASF142 +000000000000689f l .debug_str 0000000000000000 .LASF143 +000000000000652b l .debug_str 0000000000000000 .LASF144 +0000000000006c65 l .debug_str 0000000000000000 .LASF145 +0000000000006427 l .debug_str 0000000000000000 .LASF146 +000000000000663e l .debug_str 0000000000000000 .LASF147 +000000000000634b l .debug_str 0000000000000000 .LASF148 +0000000000006776 l .debug_str 0000000000000000 .LASF149 +00000000000069d9 l .debug_str 0000000000000000 .LASF150 +00000000000069e2 l .debug_str 0000000000000000 .LASF151 +00000000000068e9 l .debug_str 0000000000000000 .LASF152 +00000000000064dc l .debug_str 0000000000000000 .LASF153 +000000000000668b l .debug_str 0000000000000000 .LASF154 +00000000000065f3 l .debug_str 0000000000000000 .LASF161 +0000000000000d74 l .text 0000000000000000 .LFB7 +0000000000000d88 l .text 0000000000000000 .LFE7 +000000000000698c l .debug_str 0000000000000000 .LASF155 +0000000000002f36 l .debug_loc 0000000000000000 .LLST0 +0000000000006992 l .debug_str 0000000000000000 .LASF156 +0000000000002f6f l .debug_loc 0000000000000000 .LLST1 +0000000000000d78 l .text 0000000000000000 .LBB4 +0000000000000d84 l .text 0000000000000000 .LBE4 +0000000000002fa5 l .debug_loc 0000000000000000 .LLST2 +0000000000002fca l .debug_loc 0000000000000000 .LLST3 +0000000000003000 l .debug_loc 0000000000000000 .LLST4 +0000000000006538 l .debug_str 0000000000000000 .LASF162 +0000000000000d74 l .text 0000000000000000 .LVL0 +0000000000000d7c l .text 0000000000000000 .LVL3 +0000000000000d7e l .text 0000000000000000 .LVL4 +0000000000000d78 l .text 0000000000000000 .LVL2 +0000000000000d84 l .text 0000000000000000 .LVL5 +0000000000000d76 l .text 0000000000000000 .LVL1 +0000000000007548 l .debug_info 0000000000000000 .Ldebug_info0 +0000000000000d74 l .text 0000000000000000 .L0 +0000000000000d74 l .text 0000000000000000 .L0 +0000000000000d74 l .text 0000000000000000 .L0 +0000000000000d78 l .text 0000000000000000 .L0 +0000000000000d78 l .text 0000000000000000 .L0 +0000000000000d7c l .text 0000000000000000 .L0 +0000000000000d7c l .text 0000000000000000 .L0 +0000000000000d7e l .text 0000000000000000 .L0 +0000000000000d7e l .text 0000000000000000 .L0 +0000000000000d82 l .text 0000000000000000 .L0 +0000000000000d84 l .text 0000000000000000 .L0 +0000000000000d84 l .text 0000000000000000 .L0 +0000000000000d88 l .text 0000000000000000 .L0 +0000000000000af8 l .debug_frame 0000000000000000 .L0 +0000000000000d74 l .text 0000000000000000 .L0 +0000000000000d88 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 PROXY_gettid.c +0000000000002624 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +00000000000074d8 l .debug_str 0000000000000000 .LASF150 +0000000000007205 l .debug_str 0000000000000000 .LASF151 +0000000000007328 l .debug_str 0000000000000000 .LASF152 +0000000000000830 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000000460b l .debug_line 0000000000000000 .Ldebug_line0 +0000000000006e0d l .debug_str 0000000000000000 .LASF0 +000000000000723b l .debug_str 0000000000000000 .LASF1 +0000000000007278 l .debug_str 0000000000000000 .LASF2 +0000000000006fff l .debug_str 0000000000000000 .LASF3 +0000000000006f9b l .debug_str 0000000000000000 .LASF4 +0000000000006e7a l .debug_str 0000000000000000 .LASF5 +0000000000006fc3 l .debug_str 0000000000000000 .LASF6 +00000000000070ae l .debug_str 0000000000000000 .LASF8 +0000000000006d74 l .debug_str 0000000000000000 .LASF7 +0000000000006cde l .debug_str 0000000000000000 .LASF9 +00000000000075dc l .debug_str 0000000000000000 .LASF10 +0000000000007348 l .debug_str 0000000000000000 .LASF11 +0000000000007126 l .debug_str 0000000000000000 .LASF12 +00000000000072e5 l .debug_str 0000000000000000 .LASF13 +0000000000006f6a l .debug_str 0000000000000000 .LASF14 +00000000000071c4 l .debug_str 0000000000000000 .LASF15 +000000000000763d l .debug_str 0000000000000000 .LASF16 +0000000000006dcf l .debug_str 0000000000000000 .LASF17 +0000000000007626 l .debug_str 0000000000000000 .LASF18 +000000000000713f l .debug_str 0000000000000000 .LASF19 +00000000000074a4 l .debug_str 0000000000000000 .LASF20 +00000000000073e6 l .debug_str 0000000000000000 .LASF21 +00000000000073d3 l .debug_str 0000000000000000 .LASF22 +00000000000070c4 l .debug_str 0000000000000000 .LASF23 +00000000000075e2 l .debug_str 0000000000000000 .LASF24 +0000000000006cf2 l .debug_str 0000000000000000 .LASF25 +000000000000730e l .debug_str 0000000000000000 .LASF26 +0000000000007162 l .debug_str 0000000000000000 .LASF27 +00000000000072fe l .debug_str 0000000000000000 .LASF28 +0000000000006f7f l .debug_str 0000000000000000 .LASF29 +000000000000703b l .debug_str 0000000000000000 .LASF30 +00000000000071e2 l .debug_str 0000000000000000 .LASF31 +0000000000006e66 l .debug_str 0000000000000000 .LASF32 +0000000000007066 l .debug_str 0000000000000000 .LASF33 +00000000000070f4 l .debug_str 0000000000000000 .LASF34 +0000000000006d0d l .debug_str 0000000000000000 .LASF35 +00000000000074b8 l .debug_str 0000000000000000 .LASF36 +00000000000072d9 l .debug_str 0000000000000000 .LASF37 +000000000000737d l .debug_str 0000000000000000 .LASF38 +0000000000006dbf l .debug_str 0000000000000000 .LASF39 +00000000000072ce l .debug_str 0000000000000000 .LASF40 +0000000000007264 l .debug_str 0000000000000000 .LASF41 +0000000000006ca8 l .debug_str 0000000000000000 .LASF42 +0000000000006fa8 l .debug_str 0000000000000000 .LASF43 +0000000000007249 l .debug_str 0000000000000000 .LASF44 +0000000000006ed9 l .debug_str 0000000000000000 .LASF45 +000000000000747a l .debug_str 0000000000000000 .LASF46 +0000000000007117 l .debug_str 0000000000000000 .LASF47 +0000000000006e31 l .debug_str 0000000000000000 .LASF48 +0000000000006daf l .debug_str 0000000000000000 .LASF49 +000000000000714e l .debug_str 0000000000000000 .LASF50 +0000000000006d4a l .debug_str 0000000000000000 .LASF51 +0000000000007415 l .debug_str 0000000000000000 .LASF52 +0000000000006f4e l .debug_str 0000000000000000 .LASF53 +0000000000006ccd l .debug_str 0000000000000000 .LASF54 +0000000000007106 l .debug_str 0000000000000000 .LASF55 +000000000000701c l .debug_str 0000000000000000 .LASF56 +0000000000007588 l .debug_str 0000000000000000 .LASF57 +0000000000006fdf l .debug_str 0000000000000000 .LASF58 +00000000000070b6 l .debug_str 0000000000000000 .LASF59 +0000000000006efc l .debug_str 0000000000000000 .LASF60 +000000000000707a l .debug_str 0000000000000000 .LASF61 +0000000000006e42 l .debug_str 0000000000000000 .LASF62 +00000000000075d2 l .debug_str 0000000000000000 .LASF63 +0000000000006e04 l .debug_str 0000000000000000 .LASF64 +0000000000006f60 l .debug_str 0000000000000000 .LASF65 +0000000000006da5 l .debug_str 0000000000000000 .LASF66 +0000000000007189 l .debug_str 0000000000000000 .LASF67 +0000000000006c9f l .debug_str 0000000000000000 .LASF68 +0000000000006d69 l .debug_str 0000000000000000 .LASF69 +0000000000006d1c l .debug_str 0000000000000000 .LASF70 +0000000000007089 l .debug_str 0000000000000000 .LASF71 +0000000000006e83 l .debug_str 0000000000000000 .LASF72 +00000000000071da l .debug_str 0000000000000000 .LASF73 +0000000000007282 l .debug_str 0000000000000000 .LASF74 +0000000000006fd5 l .debug_str 0000000000000000 .LASF75 +00000000000075c4 l .debug_str 0000000000000000 .LASF76 +0000000000006dfa l .debug_str 0000000000000000 .LASF77 +0000000000006f14 l .debug_str 0000000000000000 .LASF78 +0000000000007471 l .debug_str 0000000000000000 .LASF79 +00000000000071cf l .debug_str 0000000000000000 .LASF80 +0000000000007604 l .debug_str 0000000000000000 .LASF81 +000000000000740b l .debug_str 0000000000000000 .LASF82 +0000000000006ce8 l .debug_str 0000000000000000 .LASF83 +00000000000070a3 l .debug_str 0000000000000000 .LASF84 +0000000000007258 l .debug_str 0000000000000000 .LASF85 +0000000000007427 l .debug_str 0000000000000000 .LASF86 +000000000000728b l .debug_str 0000000000000000 .LASF87 +0000000000006f75 l .debug_str 0000000000000000 .LASF88 +000000000000705c l .debug_str 0000000000000000 .LASF89 +00000000000075b9 l .debug_str 0000000000000000 .LASF90 +00000000000071b9 l .debug_str 0000000000000000 .LASF91 +0000000000006e27 l .debug_str 0000000000000000 .LASF92 +000000000000721c l .debug_str 0000000000000000 .LASF93 +0000000000006f34 l .debug_str 0000000000000000 .LASF94 +0000000000006f8f l .debug_str 0000000000000000 .LASF95 +00000000000075ac l .debug_str 0000000000000000 .LASF96 +00000000000072f1 l .debug_str 0000000000000000 .LASF97 +0000000000007400 l .debug_str 0000000000000000 .LASF98 +0000000000007031 l .debug_str 0000000000000000 .LASF99 +0000000000006f0a l .debug_str 0000000000000000 .LASF100 +0000000000007012 l .debug_str 0000000000000000 .LASF101 +00000000000073c7 l .debug_str 0000000000000000 .LASF102 +0000000000007647 l .debug_str 0000000000000000 .LASF103 +00000000000071a0 l .debug_str 0000000000000000 .LASF104 +0000000000006ee9 l .debug_str 0000000000000000 .LASF105 +000000000000716e l .debug_str 0000000000000000 .LASF106 +0000000000006de2 l .debug_str 0000000000000000 .LASF107 +000000000000745b l .debug_str 0000000000000000 .LASF108 +0000000000006eb8 l .debug_str 0000000000000000 .LASF109 +0000000000006d37 l .debug_str 0000000000000000 .LASF110 +0000000000007227 l .debug_str 0000000000000000 .LASF111 +0000000000007294 l .debug_str 0000000000000000 .LASF112 +00000000000075f3 l .debug_str 0000000000000000 .LASF113 +0000000000006d8b l .debug_str 0000000000000000 .LASF114 +00000000000073b0 l .debug_str 0000000000000000 .LASF115 +0000000000007361 l .debug_str 0000000000000000 .LASF116 +0000000000006cb3 l .debug_str 0000000000000000 .LASF117 +00000000000070db l .debug_str 0000000000000000 .LASF118 +0000000000007487 l .debug_str 0000000000000000 .LASF119 +0000000000006e4c l .debug_str 0000000000000000 .LASF120 +0000000000006e90 l .debug_str 0000000000000000 .LASF121 +0000000000007434 l .debug_str 0000000000000000 .LASF122 +00000000000074c4 l .debug_str 0000000000000000 .LASF123 +0000000000006fb6 l .debug_str 0000000000000000 .LASF124 +0000000000006ea9 l .debug_str 0000000000000000 .LASF125 +0000000000007095 l .debug_str 0000000000000000 .LASF126 +000000000000744f l .debug_str 0000000000000000 .LASF127 +0000000000006f3f l .debug_str 0000000000000000 .LASF128 +0000000000007194 l .debug_str 0000000000000000 .LASF129 +00000000000072bf l .debug_str 0000000000000000 .LASF130 +00000000000071f1 l .debug_str 0000000000000000 .LASF131 +0000000000006d26 l .debug_str 0000000000000000 .LASF132 +0000000000006ff1 l .debug_str 0000000000000000 .LASF133 +000000000000734d l .debug_str 0000000000000000 .LASF134 +00000000000073a3 l .debug_str 0000000000000000 .LASF135 +000000000000760d l .debug_str 0000000000000000 .LASF136 +0000000000006d02 l .debug_str 0000000000000000 .LASF137 +000000000000726d l .debug_str 0000000000000000 .LASF138 +0000000000006f1d l .debug_str 0000000000000000 .LASF139 +0000000000007618 l .debug_str 0000000000000000 .LASF140 +0000000000006e19 l .debug_str 0000000000000000 .LASF141 +000000000000759a l .debug_str 0000000000000000 .LASF142 +0000000000006d5b l .debug_str 0000000000000000 .LASF143 +0000000000007130 l .debug_str 0000000000000000 .LASF144 +0000000000007389 l .debug_str 0000000000000000 .LASF145 +0000000000007392 l .debug_str 0000000000000000 .LASF146 +00000000000072ae l .debug_str 0000000000000000 .LASF147 +0000000000006ece l .debug_str 0000000000000000 .LASF148 +000000000000704d l .debug_str 0000000000000000 .LASF149 +0000000000006d54 l .debug_str 0000000000000000 .LASF153 +0000000000000d88 l .text 0000000000000000 .LFB7 +0000000000000d94 l .text 0000000000000000 .LFE7 +0000000000000d88 l .text 0000000000000000 .LBB4 +0000000000000d90 l .text 0000000000000000 .LBE4 +000000000000302b l .debug_loc 0000000000000000 .LLST0 +0000000000006f2a l .debug_str 0000000000000000 .LASF154 +0000000000000d88 l .text 0000000000000000 .LVL0 +0000000000000d90 l .text 0000000000000000 .LVL1 +0000000000007a59 l .debug_info 0000000000000000 .Ldebug_info0 +0000000000000d88 l .text 0000000000000000 .L0 +0000000000000d88 l .text 0000000000000000 .L0 +0000000000000d88 l .text 0000000000000000 .L0 +0000000000000d88 l .text 0000000000000000 .L0 +0000000000000d8a l .text 0000000000000000 .L0 +0000000000000d8e l .text 0000000000000000 .L0 +0000000000000d90 l .text 0000000000000000 .L0 +0000000000000d90 l .text 0000000000000000 .L0 +0000000000000d94 l .text 0000000000000000 .L0 +0000000000000b20 l .debug_frame 0000000000000000 .L0 +0000000000000d88 l .text 0000000000000000 .L0 +0000000000000d94 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 PROXY_lseek.c +00000000000026eb l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000007e96 l .debug_str 0000000000000000 .LASF155 +0000000000007fa0 l .debug_str 0000000000000000 .LASF156 +0000000000007cda l .debug_str 0000000000000000 .LASF157 +0000000000000850 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000004742 l .debug_line 0000000000000000 .Ldebug_line0 +00000000000077cc l .debug_str 0000000000000000 .LASF0 +0000000000007bed l .debug_str 0000000000000000 .LASF1 +0000000000007c2a l .debug_str 0000000000000000 .LASF2 +00000000000079b7 l .debug_str 0000000000000000 .LASF3 +0000000000007abe l .debug_str 0000000000000000 .LASF7 +0000000000007953 l .debug_str 0000000000000000 .LASF4 +0000000000007839 l .debug_str 0000000000000000 .LASF5 +000000000000797b l .debug_str 0000000000000000 .LASF6 +0000000000007a66 l .debug_str 0000000000000000 .LASF8 +0000000000007733 l .debug_str 0000000000000000 .LASF9 +0000000000007be5 l .debug_str 0000000000000000 .LASF10 +0000000000007697 l .debug_str 0000000000000000 .LASF11 +00000000000078dc l .debug_str 0000000000000000 .LASF12 +0000000000007d06 l .debug_str 0000000000000000 .LASF13 +0000000000007ae7 l .debug_str 0000000000000000 .LASF14 +0000000000007c97 l .debug_str 0000000000000000 .LASF15 +0000000000007922 l .debug_str 0000000000000000 .LASF16 +0000000000007b85 l .debug_str 0000000000000000 .LASF17 +0000000000008011 l .debug_str 0000000000000000 .LASF18 +000000000000778e l .debug_str 0000000000000000 .LASF19 +0000000000007ffa l .debug_str 0000000000000000 .LASF20 +0000000000007b00 l .debug_str 0000000000000000 .LASF21 +0000000000007e62 l .debug_str 0000000000000000 .LASF22 +0000000000007da4 l .debug_str 0000000000000000 .LASF23 +0000000000007d91 l .debug_str 0000000000000000 .LASF24 +0000000000007a7c l .debug_str 0000000000000000 .LASF25 +0000000000007fb6 l .debug_str 0000000000000000 .LASF26 +00000000000076ab l .debug_str 0000000000000000 .LASF27 +0000000000007cc0 l .debug_str 0000000000000000 .LASF28 +0000000000007b23 l .debug_str 0000000000000000 .LASF29 +0000000000007cb0 l .debug_str 0000000000000000 .LASF30 +0000000000007937 l .debug_str 0000000000000000 .LASF31 +00000000000079f3 l .debug_str 0000000000000000 .LASF32 +0000000000007ba3 l .debug_str 0000000000000000 .LASF33 +0000000000007825 l .debug_str 0000000000000000 .LASF34 +0000000000007a1e l .debug_str 0000000000000000 .LASF35 +0000000000007aac l .debug_str 0000000000000000 .LASF36 +00000000000076c6 l .debug_str 0000000000000000 .LASF37 +0000000000007e76 l .debug_str 0000000000000000 .LASF38 +0000000000007c8b l .debug_str 0000000000000000 .LASF39 +0000000000007d3b l .debug_str 0000000000000000 .LASF40 +000000000000777e l .debug_str 0000000000000000 .LASF41 +0000000000007c80 l .debug_str 0000000000000000 .LASF42 +0000000000007c16 l .debug_str 0000000000000000 .LASF43 +0000000000007661 l .debug_str 0000000000000000 .LASF44 +0000000000007960 l .debug_str 0000000000000000 .LASF45 +0000000000007bfb l .debug_str 0000000000000000 .LASF46 +0000000000007898 l .debug_str 0000000000000000 .LASF47 +0000000000007e38 l .debug_str 0000000000000000 .LASF48 +0000000000007ad8 l .debug_str 0000000000000000 .LASF49 +00000000000077f0 l .debug_str 0000000000000000 .LASF50 +000000000000776e l .debug_str 0000000000000000 .LASF51 +0000000000007b0f l .debug_str 0000000000000000 .LASF52 +0000000000007710 l .debug_str 0000000000000000 .LASF53 +0000000000007dd3 l .debug_str 0000000000000000 .LASF54 +0000000000007906 l .debug_str 0000000000000000 .LASF55 +0000000000007686 l .debug_str 0000000000000000 .LASF56 +0000000000007ac7 l .debug_str 0000000000000000 .LASF57 +00000000000079d4 l .debug_str 0000000000000000 .LASF58 +0000000000007f46 l .debug_str 0000000000000000 .LASF59 +0000000000007997 l .debug_str 0000000000000000 .LASF60 +0000000000007a6e l .debug_str 0000000000000000 .LASF61 +00000000000078bb l .debug_str 0000000000000000 .LASF62 +0000000000007a32 l .debug_str 0000000000000000 .LASF63 +0000000000007801 l .debug_str 0000000000000000 .LASF64 +0000000000007f96 l .debug_str 0000000000000000 .LASF65 +00000000000077c3 l .debug_str 0000000000000000 .LASF66 +0000000000007918 l .debug_str 0000000000000000 .LASF67 +0000000000007764 l .debug_str 0000000000000000 .LASF68 +0000000000007b4a l .debug_str 0000000000000000 .LASF69 +0000000000007658 l .debug_str 0000000000000000 .LASF70 +0000000000007728 l .debug_str 0000000000000000 .LASF71 +00000000000076d5 l .debug_str 0000000000000000 .LASF72 +0000000000007a41 l .debug_str 0000000000000000 .LASF73 +0000000000007842 l .debug_str 0000000000000000 .LASF74 +0000000000007b9b l .debug_str 0000000000000000 .LASF75 +0000000000007c34 l .debug_str 0000000000000000 .LASF76 +000000000000798d l .debug_str 0000000000000000 .LASF77 +0000000000007f88 l .debug_str 0000000000000000 .LASF78 +00000000000077b9 l .debug_str 0000000000000000 .LASF79 +00000000000078d3 l .debug_str 0000000000000000 .LASF80 +0000000000007e2f l .debug_str 0000000000000000 .LASF81 +0000000000007b90 l .debug_str 0000000000000000 .LASF82 +0000000000007fd8 l .debug_str 0000000000000000 .LASF83 +0000000000007dc9 l .debug_str 0000000000000000 .LASF84 +00000000000076a1 l .debug_str 0000000000000000 .LASF85 +0000000000007a5b l .debug_str 0000000000000000 .LASF86 +0000000000007c0a l .debug_str 0000000000000000 .LASF87 +0000000000007de5 l .debug_str 0000000000000000 .LASF88 +0000000000007c3d l .debug_str 0000000000000000 .LASF89 +000000000000792d l .debug_str 0000000000000000 .LASF90 +0000000000007a14 l .debug_str 0000000000000000 .LASF91 +0000000000007f7d l .debug_str 0000000000000000 .LASF92 +0000000000007b7a l .debug_str 0000000000000000 .LASF93 +00000000000077e6 l .debug_str 0000000000000000 .LASF94 +0000000000007bc6 l .debug_str 0000000000000000 .LASF95 +00000000000078ec l .debug_str 0000000000000000 .LASF96 +0000000000007947 l .debug_str 0000000000000000 .LASF97 +0000000000007f6a l .debug_str 0000000000000000 .LASF98 +0000000000007ca3 l .debug_str 0000000000000000 .LASF99 +0000000000007dbe l .debug_str 0000000000000000 .LASF100 +00000000000079e9 l .debug_str 0000000000000000 .LASF101 +00000000000078c9 l .debug_str 0000000000000000 .LASF102 +00000000000079ca l .debug_str 0000000000000000 .LASF103 +0000000000007d85 l .debug_str 0000000000000000 .LASF104 +000000000000801b l .debug_str 0000000000000000 .LASF105 +0000000000007b61 l .debug_str 0000000000000000 .LASF106 +00000000000078a8 l .debug_str 0000000000000000 .LASF107 +0000000000007b2f l .debug_str 0000000000000000 .LASF108 +00000000000077a1 l .debug_str 0000000000000000 .LASF109 +0000000000007e19 l .debug_str 0000000000000000 .LASF110 +0000000000007877 l .debug_str 0000000000000000 .LASF111 +00000000000076fd l .debug_str 0000000000000000 .LASF112 +0000000000007bd1 l .debug_str 0000000000000000 .LASF113 +0000000000007c46 l .debug_str 0000000000000000 .LASF114 +0000000000007fc7 l .debug_str 0000000000000000 .LASF115 +000000000000774a l .debug_str 0000000000000000 .LASF116 +0000000000007d6e l .debug_str 0000000000000000 .LASF117 +0000000000007d1f l .debug_str 0000000000000000 .LASF118 +000000000000766c l .debug_str 0000000000000000 .LASF119 +0000000000007a93 l .debug_str 0000000000000000 .LASF120 +0000000000007e45 l .debug_str 0000000000000000 .LASF121 +000000000000780b l .debug_str 0000000000000000 .LASF122 +000000000000784f l .debug_str 0000000000000000 .LASF123 +0000000000007df2 l .debug_str 0000000000000000 .LASF124 +0000000000007e82 l .debug_str 0000000000000000 .LASF125 +000000000000796e l .debug_str 0000000000000000 .LASF126 +0000000000007868 l .debug_str 0000000000000000 .LASF127 +0000000000007a4d l .debug_str 0000000000000000 .LASF128 +0000000000007e0d l .debug_str 0000000000000000 .LASF129 +00000000000078f7 l .debug_str 0000000000000000 .LASF130 +0000000000007b55 l .debug_str 0000000000000000 .LASF131 +0000000000007c71 l .debug_str 0000000000000000 .LASF132 +0000000000007bb2 l .debug_str 0000000000000000 .LASF133 +00000000000076ec l .debug_str 0000000000000000 .LASF134 +00000000000079a9 l .debug_str 0000000000000000 .LASF135 +0000000000007d0b l .debug_str 0000000000000000 .LASF136 +0000000000007d61 l .debug_str 0000000000000000 .LASF137 +0000000000007fe1 l .debug_str 0000000000000000 .LASF138 +00000000000076bb l .debug_str 0000000000000000 .LASF139 +0000000000007c1f l .debug_str 0000000000000000 .LASF140 +00000000000076df l .debug_str 0000000000000000 .LASF141 +0000000000007fec l .debug_str 0000000000000000 .LASF142 +00000000000077d8 l .debug_str 0000000000000000 .LASF143 +0000000000007f58 l .debug_str 0000000000000000 .LASF144 +000000000000771a l .debug_str 0000000000000000 .LASF145 +0000000000007af1 l .debug_str 0000000000000000 .LASF146 +0000000000007d47 l .debug_str 0000000000000000 .LASF147 +0000000000007d50 l .debug_str 0000000000000000 .LASF148 +0000000000007c60 l .debug_str 0000000000000000 .LASF149 +000000000000788d l .debug_str 0000000000000000 .LASF150 +0000000000007a05 l .debug_str 0000000000000000 .LASF151 +0000000000007f77 l .debug_str 0000000000000000 .LASF158 +0000000000000d94 l .text 0000000000000000 .LFB7 +0000000000000dac l .text 0000000000000000 .LFE7 +0000000000007cfa l .debug_str 0000000000000000 .LASF152 +000000000000304f l .debug_loc 0000000000000000 .LLST0 +0000000000007d00 l .debug_str 0000000000000000 .LASF153 +0000000000003088 l .debug_loc 0000000000000000 .LLST1 +0000000000007652 l .debug_str 0000000000000000 .LASF154 +00000000000030c1 l .debug_loc 0000000000000000 .LLST2 +0000000000000d9a l .text 0000000000000000 .LBB4 +0000000000000da8 l .text 0000000000000000 .LBE4 +00000000000030fa l .debug_loc 0000000000000000 .LLST3 +000000000000311f l .debug_loc 0000000000000000 .LLST4 +000000000000314a l .debug_loc 0000000000000000 .LLST5 +0000000000003175 l .debug_loc 0000000000000000 .LLST6 +00000000000078e2 l .debug_str 0000000000000000 .LASF159 +0000000000000d94 l .text 0000000000000000 .LVL0 +0000000000000d9e l .text 0000000000000000 .LVL4 +0000000000000da0 l .text 0000000000000000 .LVL5 +0000000000000da2 l .text 0000000000000000 .LVL6 +0000000000000d9a l .text 0000000000000000 .LVL3 +0000000000000da8 l .text 0000000000000000 .LVL7 +0000000000000d98 l .text 0000000000000000 .LVL2 +0000000000000d96 l .text 0000000000000000 .LVL1 +0000000000007eaa l .debug_info 0000000000000000 .Ldebug_info0 +0000000000000d94 l .text 0000000000000000 .L0 +0000000000000d94 l .text 0000000000000000 .L0 +0000000000000d94 l .text 0000000000000000 .L0 +0000000000000d9a l .text 0000000000000000 .L0 +0000000000000d9a l .text 0000000000000000 .L0 +0000000000000d9e l .text 0000000000000000 .L0 +0000000000000d9e l .text 0000000000000000 .L0 +0000000000000da0 l .text 0000000000000000 .L0 +0000000000000da0 l .text 0000000000000000 .L0 +0000000000000da2 l .text 0000000000000000 .L0 +0000000000000da2 l .text 0000000000000000 .L0 +0000000000000da6 l .text 0000000000000000 .L0 +0000000000000da8 l .text 0000000000000000 .L0 +0000000000000da8 l .text 0000000000000000 .L0 +0000000000000dac l .text 0000000000000000 .L0 +0000000000000b48 l .debug_frame 0000000000000000 .L0 +0000000000000d94 l .text 0000000000000000 .L0 +0000000000000dac l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 PROXY_nx_pthread_exit.c +0000000000000db8 l .text 0000000000000000 .L2 +00000000000027d2 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +00000000000088a6 l .debug_str 0000000000000000 .LASF154 +0000000000008533 l .debug_str 0000000000000000 .LASF155 +00000000000086e1 l .debug_str 0000000000000000 .LASF156 +0000000000000870 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +00000000000048ae l .debug_line 0000000000000000 .Ldebug_line0 +000000000000819b l .debug_str 0000000000000000 .LASF0 +00000000000085f4 l .debug_str 0000000000000000 .LASF1 +0000000000008631 l .debug_str 0000000000000000 .LASF2 +000000000000839d l .debug_str 0000000000000000 .LASF3 +0000000000008329 l .debug_str 0000000000000000 .LASF4 +0000000000008208 l .debug_str 0000000000000000 .LASF5 +0000000000008361 l .debug_str 0000000000000000 .LASF6 +000000000000844c l .debug_str 0000000000000000 .LASF8 +00000000000080f4 l .debug_str 0000000000000000 .LASF7 +0000000000008065 l .debug_str 0000000000000000 .LASF9 +0000000000008707 l .debug_str 0000000000000000 .LASF10 +00000000000087f3 l .debug_str 0000000000000000 .LASF11 +00000000000085ee l .debug_str 0000000000000000 .LASF12 +000000000000818d l .debug_str 0000000000000000 .LASF13 +00000000000084ce l .debug_str 0000000000000000 .LASF14 +00000000000084c4 l .debug_str 0000000000000000 .LASF15 +000000000000869e l .debug_str 0000000000000000 .LASF16 +00000000000082f8 l .debug_str 0000000000000000 .LASF17 +000000000000858e l .debug_str 0000000000000000 .LASF18 +0000000000008a05 l .debug_str 0000000000000000 .LASF19 +000000000000814f l .debug_str 0000000000000000 .LASF20 +00000000000089ee l .debug_str 0000000000000000 .LASF21 +00000000000084e9 l .debug_str 0000000000000000 .LASF22 +0000000000008872 l .debug_str 0000000000000000 .LASF23 +00000000000087a5 l .debug_str 0000000000000000 .LASF24 +0000000000008792 l .debug_str 0000000000000000 .LASF25 +0000000000008462 l .debug_str 0000000000000000 .LASF26 +00000000000089aa l .debug_str 0000000000000000 .LASF27 +0000000000008079 l .debug_str 0000000000000000 .LASF28 +00000000000086c7 l .debug_str 0000000000000000 .LASF29 +000000000000850c l .debug_str 0000000000000000 .LASF30 +00000000000086b7 l .debug_str 0000000000000000 .LASF31 +000000000000830d l .debug_str 0000000000000000 .LASF32 +00000000000083d9 l .debug_str 0000000000000000 .LASF33 +00000000000085ac l .debug_str 0000000000000000 .LASF34 +00000000000081f4 l .debug_str 0000000000000000 .LASF35 +0000000000008404 l .debug_str 0000000000000000 .LASF36 +0000000000008492 l .debug_str 0000000000000000 .LASF37 +0000000000008094 l .debug_str 0000000000000000 .LASF38 +0000000000008886 l .debug_str 0000000000000000 .LASF39 +0000000000008692 l .debug_str 0000000000000000 .LASF40 +000000000000873c l .debug_str 0000000000000000 .LASF41 +000000000000813f l .debug_str 0000000000000000 .LASF42 +0000000000008687 l .debug_str 0000000000000000 .LASF43 +000000000000861d l .debug_str 0000000000000000 .LASF44 +000000000000802f l .debug_str 0000000000000000 .LASF45 +0000000000008336 l .debug_str 0000000000000000 .LASF46 +0000000000008602 l .debug_str 0000000000000000 .LASF47 +0000000000008267 l .debug_str 0000000000000000 .LASF48 +0000000000008848 l .debug_str 0000000000000000 .LASF49 +00000000000084b5 l .debug_str 0000000000000000 .LASF50 +00000000000081bf l .debug_str 0000000000000000 .LASF51 +000000000000812f l .debug_str 0000000000000000 .LASF52 +00000000000084f8 l .debug_str 0000000000000000 .LASF53 +00000000000080d1 l .debug_str 0000000000000000 .LASF54 +00000000000087d4 l .debug_str 0000000000000000 .LASF55 +00000000000082dc l .debug_str 0000000000000000 .LASF56 +0000000000008054 l .debug_str 0000000000000000 .LASF57 +00000000000084a4 l .debug_str 0000000000000000 .LASF58 +00000000000083ba l .debug_str 0000000000000000 .LASF59 +0000000000008956 l .debug_str 0000000000000000 .LASF60 +000000000000837d l .debug_str 0000000000000000 .LASF61 +0000000000008454 l .debug_str 0000000000000000 .LASF62 +000000000000828a l .debug_str 0000000000000000 .LASF63 +0000000000008418 l .debug_str 0000000000000000 .LASF64 +00000000000081d0 l .debug_str 0000000000000000 .LASF65 +00000000000089a0 l .debug_str 0000000000000000 .LASF66 +0000000000008184 l .debug_str 0000000000000000 .LASF67 +00000000000082ee l .debug_str 0000000000000000 .LASF68 +0000000000008125 l .debug_str 0000000000000000 .LASF69 +0000000000008553 l .debug_str 0000000000000000 .LASF70 +0000000000008026 l .debug_str 0000000000000000 .LASF71 +00000000000080e9 l .debug_str 0000000000000000 .LASF72 +00000000000080a3 l .debug_str 0000000000000000 .LASF73 +0000000000008427 l .debug_str 0000000000000000 .LASF74 +0000000000008211 l .debug_str 0000000000000000 .LASF75 +00000000000085a4 l .debug_str 0000000000000000 .LASF76 +000000000000863b l .debug_str 0000000000000000 .LASF77 +0000000000008373 l .debug_str 0000000000000000 .LASF78 +0000000000008992 l .debug_str 0000000000000000 .LASF79 +000000000000817a l .debug_str 0000000000000000 .LASF80 +00000000000082a2 l .debug_str 0000000000000000 .LASF81 +000000000000883f l .debug_str 0000000000000000 .LASF82 +0000000000008599 l .debug_str 0000000000000000 .LASF83 +00000000000089cc l .debug_str 0000000000000000 .LASF84 +00000000000087ca l .debug_str 0000000000000000 .LASF85 +000000000000806f l .debug_str 0000000000000000 .LASF86 +0000000000008441 l .debug_str 0000000000000000 .LASF87 +0000000000008611 l .debug_str 0000000000000000 .LASF88 +00000000000087e6 l .debug_str 0000000000000000 .LASF89 +0000000000008644 l .debug_str 0000000000000000 .LASF90 +0000000000008303 l .debug_str 0000000000000000 .LASF91 +00000000000083fa l .debug_str 0000000000000000 .LASF92 +0000000000008987 l .debug_str 0000000000000000 .LASF93 +0000000000008583 l .debug_str 0000000000000000 .LASF94 +00000000000081b5 l .debug_str 0000000000000000 .LASF95 +00000000000085cf l .debug_str 0000000000000000 .LASF96 +00000000000082c2 l .debug_str 0000000000000000 .LASF97 +000000000000831d l .debug_str 0000000000000000 .LASF98 +000000000000897a l .debug_str 0000000000000000 .LASF99 +00000000000086aa l .debug_str 0000000000000000 .LASF100 +00000000000087bf l .debug_str 0000000000000000 .LASF101 +00000000000083cf l .debug_str 0000000000000000 .LASF102 +0000000000008298 l .debug_str 0000000000000000 .LASF103 +00000000000083b0 l .debug_str 0000000000000000 .LASF104 +0000000000008786 l .debug_str 0000000000000000 .LASF105 +0000000000008a0f l .debug_str 0000000000000000 .LASF106 +000000000000856a l .debug_str 0000000000000000 .LASF107 +0000000000008277 l .debug_str 0000000000000000 .LASF108 +0000000000008518 l .debug_str 0000000000000000 .LASF109 +0000000000008162 l .debug_str 0000000000000000 .LASF110 +0000000000008829 l .debug_str 0000000000000000 .LASF111 +0000000000008246 l .debug_str 0000000000000000 .LASF112 +00000000000080be l .debug_str 0000000000000000 .LASF113 +00000000000085da l .debug_str 0000000000000000 .LASF114 +000000000000864d l .debug_str 0000000000000000 .LASF115 +00000000000089bb l .debug_str 0000000000000000 .LASF116 +000000000000810b l .debug_str 0000000000000000 .LASF117 +000000000000876f l .debug_str 0000000000000000 .LASF118 +0000000000008720 l .debug_str 0000000000000000 .LASF119 +000000000000803a l .debug_str 0000000000000000 .LASF120 +0000000000008479 l .debug_str 0000000000000000 .LASF121 +0000000000008855 l .debug_str 0000000000000000 .LASF122 +00000000000081da l .debug_str 0000000000000000 .LASF123 +000000000000821e l .debug_str 0000000000000000 .LASF124 +0000000000008802 l .debug_str 0000000000000000 .LASF125 +0000000000008892 l .debug_str 0000000000000000 .LASF126 +0000000000008344 l .debug_str 0000000000000000 .LASF127 +0000000000008237 l .debug_str 0000000000000000 .LASF128 +0000000000008433 l .debug_str 0000000000000000 .LASF129 +000000000000881d l .debug_str 0000000000000000 .LASF130 +00000000000082cd l .debug_str 0000000000000000 .LASF131 +000000000000855e l .debug_str 0000000000000000 .LASF132 +0000000000008678 l .debug_str 0000000000000000 .LASF133 +00000000000085bb l .debug_str 0000000000000000 .LASF134 +00000000000080ad l .debug_str 0000000000000000 .LASF135 +000000000000838f l .debug_str 0000000000000000 .LASF136 +000000000000870c l .debug_str 0000000000000000 .LASF137 +0000000000008762 l .debug_str 0000000000000000 .LASF138 +00000000000089d5 l .debug_str 0000000000000000 .LASF139 +0000000000008089 l .debug_str 0000000000000000 .LASF140 +0000000000008626 l .debug_str 0000000000000000 .LASF141 +00000000000082ab l .debug_str 0000000000000000 .LASF142 +00000000000089e0 l .debug_str 0000000000000000 .LASF143 +00000000000081a7 l .debug_str 0000000000000000 .LASF144 +0000000000008968 l .debug_str 0000000000000000 .LASF145 +00000000000080db l .debug_str 0000000000000000 .LASF146 +00000000000084da l .debug_str 0000000000000000 .LASF147 +0000000000008748 l .debug_str 0000000000000000 .LASF148 +0000000000008751 l .debug_str 0000000000000000 .LASF149 +0000000000008667 l .debug_str 0000000000000000 .LASF150 +000000000000825c l .debug_str 0000000000000000 .LASF151 +00000000000083eb l .debug_str 0000000000000000 .LASF152 +0000000000008351 l .debug_str 0000000000000000 .LASF157 +0000000000000dac l .text 0000000000000000 .LFB7 +0000000000000dba l .text 0000000000000000 .LFE7 +0000000000008701 l .debug_str 0000000000000000 .LASF153 +00000000000031a0 l .debug_loc 0000000000000000 .LLST0 +0000000000000dae l .text 0000000000000000 .LBB4 +0000000000000db8 l .text 0000000000000000 .LBE4 +00000000000031d6 l .debug_loc 0000000000000000 .LLST1 +00000000000031fb l .debug_loc 0000000000000000 .LLST2 +00000000000082b8 l .debug_str 0000000000000000 .LASF158 +0000000000000dac l .text 0000000000000000 .LVL0 +0000000000000db2 l .text 0000000000000000 .LVL2 +0000000000000dae l .text 0000000000000000 .LVL1 +0000000000000db8 l .text 0000000000000000 .LVL3 +00000000000083b8 l .debug_info 0000000000000000 .Ldebug_info0 +0000000000000dac l .text 0000000000000000 .L0 +0000000000000dac l .text 0000000000000000 .L0 +0000000000000dac l .text 0000000000000000 .L0 +0000000000000dae l .text 0000000000000000 .L0 +0000000000000dae l .text 0000000000000000 .L0 +0000000000000db2 l .text 0000000000000000 .L0 +0000000000000db2 l .text 0000000000000000 .L0 +0000000000000db6 l .text 0000000000000000 .L0 +0000000000000db8 l .text 0000000000000000 .L0 +0000000000000db8 l .text 0000000000000000 .L0 +0000000000000db8 l .text 0000000000000000 .L0 +0000000000000db8 l .text 0000000000000000 .L0 +0000000000000dba l .text 0000000000000000 .L0 +0000000000000b70 l .debug_frame 0000000000000000 .L0 +0000000000000dac l .text 0000000000000000 .L0 +0000000000000dba l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 PROXY_nxsem_clockwait.c +00000000000028c1 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000000931e l .debug_str 0000000000000000 .LASF176 +0000000000009209 l .debug_str 0000000000000000 .LASF177 +000000000000914c l .debug_str 0000000000000000 .LASF178 +0000000000000890 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000004a44 l .debug_line 0000000000000000 .Ldebug_line0 +0000000000008bd9 l .debug_str 0000000000000000 .LASF0 +000000000000910b l .debug_str 0000000000000000 .LASF2 +000000000000905c l .debug_str 0000000000000000 .LASF1 +0000000000009461 l .debug_str 0000000000000000 .LASF3 +0000000000009099 l .debug_str 0000000000000000 .LASF4 +0000000000008e1e l .debug_str 0000000000000000 .LASF5 +0000000000008ab6 l .debug_str 0000000000000000 .LASF6 +0000000000008d9c l .debug_str 0000000000000000 .LASF7 +0000000000008c50 l .debug_str 0000000000000000 .LASF8 +0000000000008dc4 l .debug_str 0000000000000000 .LASF9 +0000000000008ed6 l .debug_str 0000000000000000 .LASF10 +0000000000008b38 l .debug_str 0000000000000000 .LASF11 +00000000000093ce l .debug_str 0000000000000000 .LASF12 +0000000000008bc8 l .debug_str 0000000000000000 .LASF13 +0000000000009129 l .debug_str 0000000000000000 .LASF14 +0000000000008a88 l .debug_str 0000000000000000 .LASF15 +0000000000009000 l .debug_str 0000000000000000 .LASF16 +000000000000944e l .debug_str 0000000000000000 .LASF17 +000000000000917e l .debug_str 0000000000000000 .LASF18 +00000000000090ac l .debug_str 0000000000000000 .LASF21 +0000000000008f81 l .debug_str 0000000000000000 .LASF19 +0000000000008f60 l .debug_str 0000000000000000 .LASF20 +00000000000093e7 l .debug_str 0000000000000000 .LASF22 +0000000000008de6 l .debug_str 0000000000000000 .LASF23 +00000000000092b1 l .debug_str 0000000000000000 .LASF24 +00000000000093f2 l .debug_str 0000000000000000 .LASF25 +00000000000090be l .debug_str 0000000000000000 .LASF26 +0000000000009114 l .debug_str 0000000000000000 .LASF27 +0000000000008f5b l .debug_str 0000000000000000 .LASF28 +00000000000090c9 l .debug_str 0000000000000000 .LASF29 +0000000000009420 l .debug_str 0000000000000000 .LASF30 +0000000000008e6c l .debug_str 0000000000000000 .LASF31 +00000000000093d6 l .debug_str 0000000000000000 .LASF32 +0000000000008c66 l .debug_str 0000000000000000 .LASF33 +0000000000009426 l .debug_str 0000000000000000 .LASF34 +0000000000008f68 l .debug_str 0000000000000000 .LASF35 +0000000000008fe9 l .debug_str 0000000000000000 .LASF36 +0000000000008d6b l .debug_str 0000000000000000 .LASF37 +00000000000093dc l .debug_str 0000000000000000 .LASF38 +000000000000949a l .debug_str 0000000000000000 .LASF39 +0000000000008b93 l .debug_str 0000000000000000 .LASF40 +0000000000009483 l .debug_str 0000000000000000 .LASF41 +0000000000008f88 l .debug_str 0000000000000000 .LASF42 +00000000000092ea l .debug_str 0000000000000000 .LASF43 +000000000000923c l .debug_str 0000000000000000 .LASF44 +0000000000009229 l .debug_str 0000000000000000 .LASF45 +0000000000008eec l .debug_str 0000000000000000 .LASF46 +000000000000942c l .debug_str 0000000000000000 .LASF47 +0000000000008dd6 l .debug_str 0000000000000000 .LASF48 +0000000000009132 l .debug_str 0000000000000000 .LASF49 +0000000000008fab l .debug_str 0000000000000000 .LASF50 +0000000000009119 l .debug_str 0000000000000000 .LASF51 +0000000000008d80 l .debug_str 0000000000000000 .LASF52 +0000000000008dfe l .debug_str 0000000000000000 .LASF53 +000000000000901a l .debug_str 0000000000000000 .LASF54 +0000000000008c32 l .debug_str 0000000000000000 .LASF55 +0000000000008e8e l .debug_str 0000000000000000 .LASF56 +0000000000008f29 l .debug_str 0000000000000000 .LASF57 +0000000000008acb l .debug_str 0000000000000000 .LASF58 +00000000000092fe l .debug_str 0000000000000000 .LASF59 +00000000000090ff l .debug_str 0000000000000000 .LASF60 +00000000000091b3 l .debug_str 0000000000000000 .LASF61 +0000000000008b83 l .debug_str 0000000000000000 .LASF62 +00000000000090f4 l .debug_str 0000000000000000 .LASF63 +0000000000009085 l .debug_str 0000000000000000 .LASF64 +0000000000008a39 l .debug_str 0000000000000000 .LASF65 +0000000000008da9 l .debug_str 0000000000000000 .LASF66 +000000000000906a l .debug_str 0000000000000000 .LASF67 +0000000000008cb8 l .debug_str 0000000000000000 .LASF68 +00000000000092c0 l .debug_str 0000000000000000 .LASF69 +0000000000008f4c l .debug_str 0000000000000000 .LASF70 +0000000000008bfd l .debug_str 0000000000000000 .LASF71 +0000000000008b73 l .debug_str 0000000000000000 .LASF72 +0000000000008f97 l .debug_str 0000000000000000 .LASF73 +0000000000008b15 l .debug_str 0000000000000000 .LASF74 +000000000000926b l .debug_str 0000000000000000 .LASF75 +0000000000008d4f l .debug_str 0000000000000000 .LASF76 +0000000000008a5e l .debug_str 0000000000000000 .LASF77 +0000000000008f3b l .debug_str 0000000000000000 .LASF78 +0000000000008e4d l .debug_str 0000000000000000 .LASF79 +0000000000008d19 l .debug_str 0000000000000000 .LASF80 +0000000000008dec l .debug_str 0000000000000000 .LASF81 +0000000000008ede l .debug_str 0000000000000000 .LASF82 +0000000000008cdb l .debug_str 0000000000000000 .LASF83 +0000000000008ea2 l .debug_str 0000000000000000 .LASF84 +0000000000008c0e l .debug_str 0000000000000000 .LASF85 +0000000000009416 l .debug_str 0000000000000000 .LASF86 +0000000000008bd0 l .debug_str 0000000000000000 .LASF87 +0000000000008d61 l .debug_str 0000000000000000 .LASF88 +0000000000008b69 l .debug_str 0000000000000000 .LASF89 +0000000000008fd2 l .debug_str 0000000000000000 .LASF90 +0000000000008a30 l .debug_str 0000000000000000 .LASF91 +0000000000008b2d l .debug_str 0000000000000000 .LASF92 +0000000000008ada l .debug_str 0000000000000000 .LASF93 +0000000000008eb1 l .debug_str 0000000000000000 .LASF94 +0000000000008c59 l .debug_str 0000000000000000 .LASF95 +0000000000009012 l .debug_str 0000000000000000 .LASF96 +00000000000090a3 l .debug_str 0000000000000000 .LASF97 +0000000000008bbe l .debug_str 0000000000000000 .LASF98 +0000000000009408 l .debug_str 0000000000000000 .LASF99 +0000000000008c46 l .debug_str 0000000000000000 .LASF100 +0000000000008cf3 l .debug_str 0000000000000000 .LASF101 +00000000000092b7 l .debug_str 0000000000000000 .LASF102 +0000000000009007 l .debug_str 0000000000000000 .LASF103 +0000000000009458 l .debug_str 0000000000000000 .LASF104 +0000000000009261 l .debug_str 0000000000000000 .LASF105 +0000000000008a92 l .debug_str 0000000000000000 .LASF106 +0000000000008ecb l .debug_str 0000000000000000 .LASF107 +0000000000009079 l .debug_str 0000000000000000 .LASF108 +000000000000927d l .debug_str 0000000000000000 .LASF109 +00000000000090b5 l .debug_str 0000000000000000 .LASF110 +0000000000008d76 l .debug_str 0000000000000000 .LASF111 +0000000000008e84 l .debug_str 0000000000000000 .LASF112 +00000000000093fd l .debug_str 0000000000000000 .LASF113 +0000000000008ff5 l .debug_str 0000000000000000 .LASF114 +0000000000008bf3 l .debug_str 0000000000000000 .LASF115 +000000000000903d l .debug_str 0000000000000000 .LASF116 +0000000000008d35 l .debug_str 0000000000000000 .LASF117 +0000000000008d90 l .debug_str 0000000000000000 .LASF118 +0000000000008f1c l .debug_str 0000000000000000 .LASF119 +0000000000008ae4 l .debug_str 0000000000000000 .LASF120 +0000000000009256 l .debug_str 0000000000000000 .LASF121 +0000000000008e62 l .debug_str 0000000000000000 .LASF122 +0000000000008ce9 l .debug_str 0000000000000000 .LASF123 +0000000000008e43 l .debug_str 0000000000000000 .LASF124 +00000000000091fd l .debug_str 0000000000000000 .LASF125 +00000000000094a4 l .debug_str 0000000000000000 .LASF126 +0000000000008a6f l .debug_str 0000000000000000 .LASF127 +0000000000008cc8 l .debug_str 0000000000000000 .LASF128 +0000000000008fb7 l .debug_str 0000000000000000 .LASF129 +0000000000008ba6 l .debug_str 0000000000000000 .LASF130 +0000000000008a1a l .debug_str 0000000000000000 .LASF131 +0000000000008c97 l .debug_str 0000000000000000 .LASF132 +0000000000008b02 l .debug_str 0000000000000000 .LASF133 +0000000000009048 l .debug_str 0000000000000000 .LASF134 +0000000000008a9c l .debug_str 0000000000000000 .LASF135 +000000000000943d l .debug_str 0000000000000000 .LASF136 +0000000000008b4f l .debug_str 0000000000000000 .LASF137 +00000000000091e6 l .debug_str 0000000000000000 .LASF138 +0000000000009197 l .debug_str 0000000000000000 .LASF139 +0000000000008a44 l .debug_str 0000000000000000 .LASF140 +0000000000008f03 l .debug_str 0000000000000000 .LASF141 +00000000000092cd l .debug_str 0000000000000000 .LASF142 +0000000000008c18 l .debug_str 0000000000000000 .LASF143 +0000000000008c6f l .debug_str 0000000000000000 .LASF144 +000000000000928a l .debug_str 0000000000000000 .LASF145 +000000000000930a l .debug_str 0000000000000000 .LASF146 +0000000000008db7 l .debug_str 0000000000000000 .LASF147 +0000000000008c88 l .debug_str 0000000000000000 .LASF148 +0000000000008ebd l .debug_str 0000000000000000 .LASF149 +00000000000092a5 l .debug_str 0000000000000000 .LASF150 +0000000000008d40 l .debug_str 0000000000000000 .LASF151 +0000000000008fdd l .debug_str 0000000000000000 .LASF152 +00000000000090e5 l .debug_str 0000000000000000 .LASF153 +0000000000009029 l .debug_str 0000000000000000 .LASF154 +0000000000008af1 l .debug_str 0000000000000000 .LASF155 +0000000000008e10 l .debug_str 0000000000000000 .LASF156 +0000000000009183 l .debug_str 0000000000000000 .LASF157 +00000000000091d9 l .debug_str 0000000000000000 .LASF158 +000000000000946a l .debug_str 0000000000000000 .LASF159 +0000000000008ac0 l .debug_str 0000000000000000 .LASF160 +000000000000908e l .debug_str 0000000000000000 .LASF161 +0000000000008d0c l .debug_str 0000000000000000 .LASF162 +0000000000009475 l .debug_str 0000000000000000 .LASF163 +0000000000008be5 l .debug_str 0000000000000000 .LASF164 +0000000000008e31 l .debug_str 0000000000000000 .LASF165 +0000000000008b1f l .debug_str 0000000000000000 .LASF166 +0000000000008f72 l .debug_str 0000000000000000 .LASF167 +00000000000091bf l .debug_str 0000000000000000 .LASF168 +00000000000091c8 l .debug_str 0000000000000000 .LASF169 +00000000000090d4 l .debug_str 0000000000000000 .LASF170 +0000000000008cad l .debug_str 0000000000000000 .LASF171 +0000000000008e75 l .debug_str 0000000000000000 .LASF172 +0000000000008cfc l .debug_str 0000000000000000 .LASF179 +0000000000000dba l .text 0000000000000000 .LFB7 +0000000000000dd0 l .text 0000000000000000 .LFE7 +000000000000916c l .debug_str 0000000000000000 .LASF173 +0000000000003231 l .debug_loc 0000000000000000 .LLST0 +0000000000009172 l .debug_str 0000000000000000 .LASF174 +0000000000003267 l .debug_loc 0000000000000000 .LLST1 +0000000000009178 l .debug_str 0000000000000000 .LASF175 +00000000000032a0 l .debug_loc 0000000000000000 .LLST2 +0000000000000dc0 l .text 0000000000000000 .LBB4 +0000000000000dcc l .text 0000000000000000 .LBE4 +00000000000032d6 l .debug_loc 0000000000000000 .LLST3 +00000000000032fa l .debug_loc 0000000000000000 .LLST4 +0000000000003330 l .debug_loc 0000000000000000 .LLST5 +000000000000335b l .debug_loc 0000000000000000 .LLST6 +0000000000008d2b l .debug_str 0000000000000000 .LASF180 +0000000000000dba l .text 0000000000000000 .LVL0 +0000000000000dc2 l .text 0000000000000000 .LVL4 +0000000000000dc4 l .text 0000000000000000 .LVL5 +0000000000000dc6 l .text 0000000000000000 .LVL6 +0000000000000dc0 l .text 0000000000000000 .LVL3 +0000000000000dcc l .text 0000000000000000 .LVL7 +0000000000000dbe l .text 0000000000000000 .LVL2 +0000000000000dbc l .text 0000000000000000 .LVL1 +0000000000008852 l .debug_info 0000000000000000 .Ldebug_info0 +0000000000000dba l .text 0000000000000000 .L0 +0000000000000dba l .text 0000000000000000 .L0 +0000000000000dba l .text 0000000000000000 .L0 +0000000000000dc0 l .text 0000000000000000 .L0 +0000000000000dc0 l .text 0000000000000000 .L0 +0000000000000dc2 l .text 0000000000000000 .L0 +0000000000000dc2 l .text 0000000000000000 .L0 +0000000000000dc4 l .text 0000000000000000 .L0 +0000000000000dc4 l .text 0000000000000000 .L0 +0000000000000dc6 l .text 0000000000000000 .L0 +0000000000000dc6 l .text 0000000000000000 .L0 +0000000000000dca l .text 0000000000000000 .L0 +0000000000000dcc l .text 0000000000000000 .L0 +0000000000000dcc l .text 0000000000000000 .L0 +0000000000000dd0 l .text 0000000000000000 .L0 +0000000000000b98 l .debug_frame 0000000000000000 .L0 +0000000000000dba l .text 0000000000000000 .L0 +0000000000000dd0 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 PROXY_nxsem_destroy.c +0000000000002a12 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000009d6a l .debug_str 0000000000000000 .LASF167 +00000000000098d4 l .debug_str 0000000000000000 .LASF168 +0000000000009bb5 l .debug_str 0000000000000000 .LASF169 +00000000000008b0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000004c07 l .debug_line 0000000000000000 .Ldebug_line0 +0000000000009674 l .debug_str 0000000000000000 .LASF0 +0000000000009b7d l .debug_str 0000000000000000 .LASF2 +0000000000009ad7 l .debug_str 0000000000000000 .LASF1 +0000000000009eaa l .debug_str 0000000000000000 .LASF3 +0000000000009b14 l .debug_str 0000000000000000 .LASF4 +000000000000988f l .debug_str 0000000000000000 .LASF5 +000000000000981d l .debug_str 0000000000000000 .LASF6 +00000000000096eb l .debug_str 0000000000000000 .LASF7 +0000000000009845 l .debug_str 0000000000000000 .LASF8 +0000000000009952 l .debug_str 0000000000000000 .LASF9 +00000000000095d3 l .debug_str 0000000000000000 .LASF10 +0000000000009e1a l .debug_str 0000000000000000 .LASF11 +0000000000009663 l .debug_str 0000000000000000 .LASF12 +000000000000951d l .debug_str 0000000000000000 .LASF13 +0000000000009bdb l .debug_str 0000000000000000 .LASF14 +0000000000009e3a l .debug_str 0000000000000000 .LASF18 +0000000000009857 l .debug_str 0000000000000000 .LASF15 +0000000000009cfd l .debug_str 0000000000000000 .LASF16 +0000000000009e45 l .debug_str 0000000000000000 .LASF17 +0000000000009b30 l .debug_str 0000000000000000 .LASF19 +0000000000009b86 l .debug_str 0000000000000000 .LASF20 +00000000000099d7 l .debug_str 0000000000000000 .LASF21 +0000000000009b3b l .debug_str 0000000000000000 .LASF22 +0000000000009e73 l .debug_str 0000000000000000 .LASF23 +00000000000098cb l .debug_str 0000000000000000 .LASF24 +0000000000009e22 l .debug_str 0000000000000000 .LASF25 +0000000000009701 l .debug_str 0000000000000000 .LASF26 +0000000000009e79 l .debug_str 0000000000000000 .LASF27 +00000000000099dc l .debug_str 0000000000000000 .LASF28 +0000000000009a60 l .debug_str 0000000000000000 .LASF29 +00000000000097ec l .debug_str 0000000000000000 .LASF30 +0000000000009a77 l .debug_str 0000000000000000 .LASF31 +0000000000009ee3 l .debug_str 0000000000000000 .LASF32 +000000000000962e l .debug_str 0000000000000000 .LASF33 +0000000000009ecc l .debug_str 0000000000000000 .LASF34 +00000000000099ff l .debug_str 0000000000000000 .LASF35 +0000000000009d36 l .debug_str 0000000000000000 .LASF36 +0000000000009c88 l .debug_str 0000000000000000 .LASF37 +0000000000009c75 l .debug_str 0000000000000000 .LASF38 +0000000000009968 l .debug_str 0000000000000000 .LASF39 +0000000000009e7f l .debug_str 0000000000000000 .LASF40 +000000000000954b l .debug_str 0000000000000000 .LASF41 +0000000000009b9b l .debug_str 0000000000000000 .LASF42 +0000000000009a22 l .debug_str 0000000000000000 .LASF43 +0000000000009b8b l .debug_str 0000000000000000 .LASF44 +0000000000009801 l .debug_str 0000000000000000 .LASF45 +000000000000986f l .debug_str 0000000000000000 .LASF46 +0000000000009a95 l .debug_str 0000000000000000 .LASF47 +00000000000096cd l .debug_str 0000000000000000 .LASF48 +000000000000990a l .debug_str 0000000000000000 .LASF49 +00000000000099a5 l .debug_str 0000000000000000 .LASF50 +0000000000009566 l .debug_str 0000000000000000 .LASF51 +0000000000009d4a l .debug_str 0000000000000000 .LASF52 +0000000000009b71 l .debug_str 0000000000000000 .LASF53 +0000000000009c1f l .debug_str 0000000000000000 .LASF54 +000000000000961e l .debug_str 0000000000000000 .LASF55 +0000000000009b66 l .debug_str 0000000000000000 .LASF56 +0000000000009b00 l .debug_str 0000000000000000 .LASF57 +00000000000094ce l .debug_str 0000000000000000 .LASF58 +000000000000982a l .debug_str 0000000000000000 .LASF59 +0000000000009ae5 l .debug_str 0000000000000000 .LASF60 +0000000000009753 l .debug_str 0000000000000000 .LASF61 +0000000000009d0c l .debug_str 0000000000000000 .LASF62 +00000000000099c8 l .debug_str 0000000000000000 .LASF63 +0000000000009698 l .debug_str 0000000000000000 .LASF64 +000000000000960e l .debug_str 0000000000000000 .LASF65 +0000000000009a0e l .debug_str 0000000000000000 .LASF66 +00000000000095b0 l .debug_str 0000000000000000 .LASF67 +0000000000009cb7 l .debug_str 0000000000000000 .LASF68 +00000000000097d0 l .debug_str 0000000000000000 .LASF69 +00000000000094f3 l .debug_str 0000000000000000 .LASF70 +00000000000099b7 l .debug_str 0000000000000000 .LASF71 +00000000000098ac l .debug_str 0000000000000000 .LASF72 +00000000000097a4 l .debug_str 0000000000000000 .LASF73 +000000000000985d l .debug_str 0000000000000000 .LASF74 +000000000000995a l .debug_str 0000000000000000 .LASF75 +0000000000009776 l .debug_str 0000000000000000 .LASF76 +000000000000991e l .debug_str 0000000000000000 .LASF77 +00000000000096a9 l .debug_str 0000000000000000 .LASF78 +0000000000009e69 l .debug_str 0000000000000000 .LASF79 +000000000000966b l .debug_str 0000000000000000 .LASF80 +00000000000097e2 l .debug_str 0000000000000000 .LASF81 +0000000000009604 l .debug_str 0000000000000000 .LASF82 +0000000000009a49 l .debug_str 0000000000000000 .LASF83 +00000000000094c5 l .debug_str 0000000000000000 .LASF84 +00000000000095c8 l .debug_str 0000000000000000 .LASF85 +0000000000009575 l .debug_str 0000000000000000 .LASF86 +000000000000992d l .debug_str 0000000000000000 .LASF87 +00000000000096f4 l .debug_str 0000000000000000 .LASF88 +0000000000009a8d l .debug_str 0000000000000000 .LASF89 +0000000000009b1e l .debug_str 0000000000000000 .LASF90 +0000000000009659 l .debug_str 0000000000000000 .LASF91 +0000000000009e5b l .debug_str 0000000000000000 .LASF92 +00000000000096e1 l .debug_str 0000000000000000 .LASF93 +000000000000978e l .debug_str 0000000000000000 .LASF94 +0000000000009d03 l .debug_str 0000000000000000 .LASF95 +0000000000009a82 l .debug_str 0000000000000000 .LASF96 +0000000000009ea1 l .debug_str 0000000000000000 .LASF97 +0000000000009cad l .debug_str 0000000000000000 .LASF98 +0000000000009527 l .debug_str 0000000000000000 .LASF99 +0000000000009947 l .debug_str 0000000000000000 .LASF100 +0000000000009af4 l .debug_str 0000000000000000 .LASF101 +0000000000009cc9 l .debug_str 0000000000000000 .LASF102 +0000000000009b27 l .debug_str 0000000000000000 .LASF103 +00000000000097f7 l .debug_str 0000000000000000 .LASF104 +0000000000009900 l .debug_str 0000000000000000 .LASF105 +0000000000009e50 l .debug_str 0000000000000000 .LASF106 +0000000000009a6c l .debug_str 0000000000000000 .LASF107 +000000000000968e l .debug_str 0000000000000000 .LASF108 +0000000000009ab8 l .debug_str 0000000000000000 .LASF109 +00000000000097b6 l .debug_str 0000000000000000 .LASF110 +0000000000009811 l .debug_str 0000000000000000 .LASF111 +0000000000009998 l .debug_str 0000000000000000 .LASF112 +000000000000957f l .debug_str 0000000000000000 .LASF113 +0000000000009ca2 l .debug_str 0000000000000000 .LASF114 +00000000000098c1 l .debug_str 0000000000000000 .LASF115 +0000000000009784 l .debug_str 0000000000000000 .LASF116 +00000000000098a2 l .debug_str 0000000000000000 .LASF117 +0000000000009c69 l .debug_str 0000000000000000 .LASF118 +0000000000009eed l .debug_str 0000000000000000 .LASF119 +0000000000009504 l .debug_str 0000000000000000 .LASF120 +0000000000009763 l .debug_str 0000000000000000 .LASF121 +0000000000009a2e l .debug_str 0000000000000000 .LASF122 +0000000000009641 l .debug_str 0000000000000000 .LASF123 +00000000000094af l .debug_str 0000000000000000 .LASF124 +0000000000009732 l .debug_str 0000000000000000 .LASF125 +000000000000959d l .debug_str 0000000000000000 .LASF126 +0000000000009ac3 l .debug_str 0000000000000000 .LASF127 +0000000000009531 l .debug_str 0000000000000000 .LASF128 +0000000000009e90 l .debug_str 0000000000000000 .LASF129 +00000000000095ea l .debug_str 0000000000000000 .LASF130 +0000000000009c52 l .debug_str 0000000000000000 .LASF131 +0000000000009c03 l .debug_str 0000000000000000 .LASF132 +00000000000094d9 l .debug_str 0000000000000000 .LASF133 +000000000000997f l .debug_str 0000000000000000 .LASF134 +0000000000009d19 l .debug_str 0000000000000000 .LASF135 +00000000000096b3 l .debug_str 0000000000000000 .LASF136 +000000000000970a l .debug_str 0000000000000000 .LASF137 +0000000000009cd6 l .debug_str 0000000000000000 .LASF138 +0000000000009d56 l .debug_str 0000000000000000 .LASF139 +0000000000009838 l .debug_str 0000000000000000 .LASF140 +0000000000009723 l .debug_str 0000000000000000 .LASF141 +0000000000009939 l .debug_str 0000000000000000 .LASF142 +0000000000009cf1 l .debug_str 0000000000000000 .LASF143 +00000000000097c1 l .debug_str 0000000000000000 .LASF144 +0000000000009a54 l .debug_str 0000000000000000 .LASF145 +0000000000009b57 l .debug_str 0000000000000000 .LASF146 +0000000000009aa4 l .debug_str 0000000000000000 .LASF147 +000000000000958c l .debug_str 0000000000000000 .LASF148 +0000000000009881 l .debug_str 0000000000000000 .LASF149 +0000000000009be0 l .debug_str 0000000000000000 .LASF150 +0000000000009c45 l .debug_str 0000000000000000 .LASF151 +0000000000009eb3 l .debug_str 0000000000000000 .LASF152 +000000000000955b l .debug_str 0000000000000000 .LASF153 +0000000000009b09 l .debug_str 0000000000000000 .LASF154 +0000000000009797 l .debug_str 0000000000000000 .LASF155 +0000000000009ebe l .debug_str 0000000000000000 .LASF156 +0000000000009680 l .debug_str 0000000000000000 .LASF157 +0000000000009e28 l .debug_str 0000000000000000 .LASF158 +00000000000095ba l .debug_str 0000000000000000 .LASF159 +00000000000099e6 l .debug_str 0000000000000000 .LASF160 +0000000000009c2b l .debug_str 0000000000000000 .LASF161 +0000000000009c34 l .debug_str 0000000000000000 .LASF162 +0000000000009b46 l .debug_str 0000000000000000 .LASF163 +0000000000009748 l .debug_str 0000000000000000 .LASF164 +0000000000009bf4 l .debug_str 0000000000000000 .LASF165 +00000000000098f2 l .debug_str 0000000000000000 .LASF170 +0000000000000dd0 l .text 0000000000000000 .LFB7 +0000000000000dde l .text 0000000000000000 .LFE7 +0000000000009bd5 l .debug_str 0000000000000000 .LASF166 +0000000000003391 l .debug_loc 0000000000000000 .LLST0 +0000000000000dd2 l .text 0000000000000000 .LBB4 +0000000000000dda l .text 0000000000000000 .LBE4 +00000000000033c7 l .debug_loc 0000000000000000 .LLST1 +00000000000033eb l .debug_loc 0000000000000000 .LLST2 +00000000000099f5 l .debug_str 0000000000000000 .LASF171 +0000000000000dd0 l .text 0000000000000000 .LVL0 +0000000000000dd4 l .text 0000000000000000 .LVL2 +0000000000000dd2 l .text 0000000000000000 .LVL1 +0000000000000dda l .text 0000000000000000 .LVL3 +0000000000008e98 l .debug_info 0000000000000000 .Ldebug_info0 +0000000000000dd0 l .text 0000000000000000 .L0 +0000000000000dd0 l .text 0000000000000000 .L0 +0000000000000dd0 l .text 0000000000000000 .L0 +0000000000000dd2 l .text 0000000000000000 .L0 +0000000000000dd2 l .text 0000000000000000 .L0 +0000000000000dd4 l .text 0000000000000000 .L0 +0000000000000dd4 l .text 0000000000000000 .L0 +0000000000000dd8 l .text 0000000000000000 .L0 +0000000000000dda l .text 0000000000000000 .L0 +0000000000000dda l .text 0000000000000000 .L0 +0000000000000dde l .text 0000000000000000 .L0 +0000000000000bc0 l .debug_frame 0000000000000000 .L0 +0000000000000dd0 l .text 0000000000000000 .L0 +0000000000000dde l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 PROXY_nxsem_post.c +0000000000002b5c l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000000a7ad l .debug_str 0000000000000000 .LASF167 +000000000000a6f1 l .debug_str 0000000000000000 .LASF168 +000000000000a5ec l .debug_str 0000000000000000 .LASF169 +00000000000008d0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000004d8f l .debug_line 0000000000000000 .Ldebug_line0 +000000000000a0bd l .debug_str 0000000000000000 .LASF0 +000000000000a5b4 l .debug_str 0000000000000000 .LASF2 +000000000000a50e l .debug_str 0000000000000000 .LASF1 +000000000000a8ed l .debug_str 0000000000000000 .LASF3 +000000000000a54b l .debug_str 0000000000000000 .LASF4 +000000000000a2d8 l .debug_str 0000000000000000 .LASF5 +000000000000a266 l .debug_str 0000000000000000 .LASF6 +000000000000a134 l .debug_str 0000000000000000 .LASF7 +000000000000a28e l .debug_str 0000000000000000 .LASF8 +000000000000a37e l .debug_str 0000000000000000 .LASF9 +000000000000a01c l .debug_str 0000000000000000 .LASF10 +000000000000a85d l .debug_str 0000000000000000 .LASF11 +000000000000a0ac l .debug_str 0000000000000000 .LASF12 +0000000000009f66 l .debug_str 0000000000000000 .LASF13 +000000000000a612 l .debug_str 0000000000000000 .LASF14 +000000000000a87d l .debug_str 0000000000000000 .LASF18 +000000000000a2a0 l .debug_str 0000000000000000 .LASF15 +000000000000a740 l .debug_str 0000000000000000 .LASF16 +000000000000a888 l .debug_str 0000000000000000 .LASF17 +000000000000a567 l .debug_str 0000000000000000 .LASF19 +000000000000a5bd l .debug_str 0000000000000000 .LASF20 +000000000000a403 l .debug_str 0000000000000000 .LASF21 +000000000000a572 l .debug_str 0000000000000000 .LASF22 +000000000000a8b6 l .debug_str 0000000000000000 .LASF23 +000000000000a314 l .debug_str 0000000000000000 .LASF24 +000000000000a865 l .debug_str 0000000000000000 .LASF25 +000000000000a14a l .debug_str 0000000000000000 .LASF26 +000000000000a8bc l .debug_str 0000000000000000 .LASF27 +000000000000a408 l .debug_str 0000000000000000 .LASF28 +000000000000a48c l .debug_str 0000000000000000 .LASF29 +000000000000a235 l .debug_str 0000000000000000 .LASF30 +000000000000a4a3 l .debug_str 0000000000000000 .LASF31 +000000000000a926 l .debug_str 0000000000000000 .LASF32 +000000000000a077 l .debug_str 0000000000000000 .LASF33 +000000000000a90f l .debug_str 0000000000000000 .LASF34 +000000000000a42b l .debug_str 0000000000000000 .LASF35 +000000000000a779 l .debug_str 0000000000000000 .LASF36 +000000000000a6b0 l .debug_str 0000000000000000 .LASF37 +000000000000a69d l .debug_str 0000000000000000 .LASF38 +000000000000a394 l .debug_str 0000000000000000 .LASF39 +000000000000a8c2 l .debug_str 0000000000000000 .LASF40 +0000000000009f94 l .debug_str 0000000000000000 .LASF41 +000000000000a5d2 l .debug_str 0000000000000000 .LASF42 +000000000000a44e l .debug_str 0000000000000000 .LASF43 +000000000000a5c2 l .debug_str 0000000000000000 .LASF44 +000000000000a24a l .debug_str 0000000000000000 .LASF45 +000000000000a2b8 l .debug_str 0000000000000000 .LASF46 +000000000000a4cc l .debug_str 0000000000000000 .LASF47 +000000000000a116 l .debug_str 0000000000000000 .LASF48 +000000000000a336 l .debug_str 0000000000000000 .LASF49 +000000000000a3d1 l .debug_str 0000000000000000 .LASF50 +0000000000009faf l .debug_str 0000000000000000 .LASF51 +000000000000a78d l .debug_str 0000000000000000 .LASF52 +000000000000a5a8 l .debug_str 0000000000000000 .LASF53 +000000000000a647 l .debug_str 0000000000000000 .LASF54 +000000000000a067 l .debug_str 0000000000000000 .LASF55 +000000000000a59d l .debug_str 0000000000000000 .LASF56 +000000000000a537 l .debug_str 0000000000000000 .LASF57 +0000000000009f17 l .debug_str 0000000000000000 .LASF58 +000000000000a273 l .debug_str 0000000000000000 .LASF59 +000000000000a51c l .debug_str 0000000000000000 .LASF60 +000000000000a19c l .debug_str 0000000000000000 .LASF61 +000000000000a74f l .debug_str 0000000000000000 .LASF62 +000000000000a3f4 l .debug_str 0000000000000000 .LASF63 +000000000000a0e1 l .debug_str 0000000000000000 .LASF64 +000000000000a057 l .debug_str 0000000000000000 .LASF65 +000000000000a43a l .debug_str 0000000000000000 .LASF66 +0000000000009ff9 l .debug_str 0000000000000000 .LASF67 +000000000000a6df l .debug_str 0000000000000000 .LASF68 +000000000000a219 l .debug_str 0000000000000000 .LASF69 +0000000000009f3c l .debug_str 0000000000000000 .LASF70 +000000000000a3e3 l .debug_str 0000000000000000 .LASF71 +000000000000a2f5 l .debug_str 0000000000000000 .LASF72 +000000000000a1ed l .debug_str 0000000000000000 .LASF73 +000000000000a2a6 l .debug_str 0000000000000000 .LASF74 +000000000000a386 l .debug_str 0000000000000000 .LASF75 +000000000000a1bf l .debug_str 0000000000000000 .LASF76 +000000000000a34a l .debug_str 0000000000000000 .LASF77 +000000000000a0f2 l .debug_str 0000000000000000 .LASF78 +000000000000a8ac l .debug_str 0000000000000000 .LASF79 +000000000000a0b4 l .debug_str 0000000000000000 .LASF80 +000000000000a22b l .debug_str 0000000000000000 .LASF81 +000000000000a04d l .debug_str 0000000000000000 .LASF82 +000000000000a475 l .debug_str 0000000000000000 .LASF83 +0000000000009f0e l .debug_str 0000000000000000 .LASF84 +000000000000a011 l .debug_str 0000000000000000 .LASF85 +0000000000009fbe l .debug_str 0000000000000000 .LASF86 +000000000000a359 l .debug_str 0000000000000000 .LASF87 +000000000000a13d l .debug_str 0000000000000000 .LASF88 +000000000000a4c4 l .debug_str 0000000000000000 .LASF89 +000000000000a555 l .debug_str 0000000000000000 .LASF90 +000000000000a0a2 l .debug_str 0000000000000000 .LASF91 +000000000000a89e l .debug_str 0000000000000000 .LASF92 +000000000000a12a l .debug_str 0000000000000000 .LASF93 +000000000000a1d7 l .debug_str 0000000000000000 .LASF94 +000000000000a746 l .debug_str 0000000000000000 .LASF95 +000000000000a4b9 l .debug_str 0000000000000000 .LASF96 +000000000000a8e4 l .debug_str 0000000000000000 .LASF97 +000000000000a6d5 l .debug_str 0000000000000000 .LASF98 +0000000000009f70 l .debug_str 0000000000000000 .LASF99 +000000000000a373 l .debug_str 0000000000000000 .LASF100 +000000000000a52b l .debug_str 0000000000000000 .LASF101 +000000000000a70c l .debug_str 0000000000000000 .LASF102 +000000000000a55e l .debug_str 0000000000000000 .LASF103 +000000000000a240 l .debug_str 0000000000000000 .LASF104 +000000000000a32c l .debug_str 0000000000000000 .LASF105 +000000000000a893 l .debug_str 0000000000000000 .LASF106 +000000000000a498 l .debug_str 0000000000000000 .LASF107 +000000000000a0d7 l .debug_str 0000000000000000 .LASF108 +000000000000a4ef l .debug_str 0000000000000000 .LASF109 +000000000000a1ff l .debug_str 0000000000000000 .LASF110 +000000000000a25a l .debug_str 0000000000000000 .LASF111 +000000000000a3c4 l .debug_str 0000000000000000 .LASF112 +0000000000009fc8 l .debug_str 0000000000000000 .LASF113 +000000000000a6ca l .debug_str 0000000000000000 .LASF114 +000000000000a30a l .debug_str 0000000000000000 .LASF115 +000000000000a1cd l .debug_str 0000000000000000 .LASF116 +000000000000a2eb l .debug_str 0000000000000000 .LASF117 +000000000000a691 l .debug_str 0000000000000000 .LASF118 +000000000000a930 l .debug_str 0000000000000000 .LASF119 +0000000000009f4d l .debug_str 0000000000000000 .LASF120 +000000000000a1ac l .debug_str 0000000000000000 .LASF121 +000000000000a45a l .debug_str 0000000000000000 .LASF122 +000000000000a08a l .debug_str 0000000000000000 .LASF123 +0000000000009ef8 l .debug_str 0000000000000000 .LASF124 +000000000000a17b l .debug_str 0000000000000000 .LASF125 +0000000000009fe6 l .debug_str 0000000000000000 .LASF126 +000000000000a4fa l .debug_str 0000000000000000 .LASF127 +0000000000009f7a l .debug_str 0000000000000000 .LASF128 +000000000000a8d3 l .debug_str 0000000000000000 .LASF129 +000000000000a033 l .debug_str 0000000000000000 .LASF130 +000000000000a67a l .debug_str 0000000000000000 .LASF131 +000000000000a62b l .debug_str 0000000000000000 .LASF132 +0000000000009f22 l .debug_str 0000000000000000 .LASF133 +000000000000a3ab l .debug_str 0000000000000000 .LASF134 +000000000000a75c l .debug_str 0000000000000000 .LASF135 +000000000000a0fc l .debug_str 0000000000000000 .LASF136 +000000000000a153 l .debug_str 0000000000000000 .LASF137 +000000000000a719 l .debug_str 0000000000000000 .LASF138 +000000000000a799 l .debug_str 0000000000000000 .LASF139 +000000000000a281 l .debug_str 0000000000000000 .LASF140 +000000000000a16c l .debug_str 0000000000000000 .LASF141 +000000000000a365 l .debug_str 0000000000000000 .LASF142 +000000000000a734 l .debug_str 0000000000000000 .LASF143 +000000000000a20a l .debug_str 0000000000000000 .LASF144 +000000000000a480 l .debug_str 0000000000000000 .LASF145 +000000000000a58e l .debug_str 0000000000000000 .LASF146 +000000000000a4db l .debug_str 0000000000000000 .LASF147 +0000000000009fd5 l .debug_str 0000000000000000 .LASF148 +000000000000a2ca l .debug_str 0000000000000000 .LASF149 +000000000000a617 l .debug_str 0000000000000000 .LASF150 +000000000000a66d l .debug_str 0000000000000000 .LASF151 +000000000000a8f6 l .debug_str 0000000000000000 .LASF152 +0000000000009fa4 l .debug_str 0000000000000000 .LASF153 +000000000000a540 l .debug_str 0000000000000000 .LASF154 +000000000000a1e0 l .debug_str 0000000000000000 .LASF155 +000000000000a901 l .debug_str 0000000000000000 .LASF156 +000000000000a0c9 l .debug_str 0000000000000000 .LASF157 +000000000000a86b l .debug_str 0000000000000000 .LASF158 +000000000000a003 l .debug_str 0000000000000000 .LASF159 +000000000000a412 l .debug_str 0000000000000000 .LASF160 +000000000000a653 l .debug_str 0000000000000000 .LASF161 +000000000000a65c l .debug_str 0000000000000000 .LASF162 +000000000000a57d l .debug_str 0000000000000000 .LASF163 +000000000000a191 l .debug_str 0000000000000000 .LASF164 +000000000000a31d l .debug_str 0000000000000000 .LASF165 +000000000000a4ae l .debug_str 0000000000000000 .LASF170 +0000000000000dde l .text 0000000000000000 .LFB7 +0000000000000dec l .text 0000000000000000 .LFE7 +000000000000a60c l .debug_str 0000000000000000 .LASF166 +0000000000003421 l .debug_loc 0000000000000000 .LLST0 +0000000000000de0 l .text 0000000000000000 .LBB4 +0000000000000de8 l .text 0000000000000000 .LBE4 +0000000000003457 l .debug_loc 0000000000000000 .LLST1 +000000000000347b l .debug_loc 0000000000000000 .LLST2 +000000000000a421 l .debug_str 0000000000000000 .LASF171 +0000000000000dde l .text 0000000000000000 .LVL0 +0000000000000de2 l .text 0000000000000000 .LVL2 +0000000000000de0 l .text 0000000000000000 .LVL1 +0000000000000de8 l .text 0000000000000000 .LVL3 +000000000000940b l .debug_info 0000000000000000 .Ldebug_info0 +0000000000000dde l .text 0000000000000000 .L0 +0000000000000dde l .text 0000000000000000 .L0 +0000000000000dde l .text 0000000000000000 .L0 +0000000000000de0 l .text 0000000000000000 .L0 +0000000000000de0 l .text 0000000000000000 .L0 +0000000000000de2 l .text 0000000000000000 .L0 +0000000000000de2 l .text 0000000000000000 .L0 +0000000000000de6 l .text 0000000000000000 .L0 +0000000000000de8 l .text 0000000000000000 .L0 +0000000000000de8 l .text 0000000000000000 .L0 +0000000000000dec l .text 0000000000000000 .L0 +0000000000000be8 l .debug_frame 0000000000000000 .L0 +0000000000000dde l .text 0000000000000000 .L0 +0000000000000dec l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 PROXY_nxsem_trywait.c +0000000000002ca6 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000000b1f6 l .debug_str 0000000000000000 .LASF167 +000000000000b137 l .debug_str 0000000000000000 .LASF168 +000000000000b032 l .debug_str 0000000000000000 .LASF169 +00000000000008f0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000004f14 l .debug_line 0000000000000000 .Ldebug_line0 +000000000000ab00 l .debug_str 0000000000000000 .LASF0 +000000000000affa l .debug_str 0000000000000000 .LASF2 +000000000000af54 l .debug_str 0000000000000000 .LASF1 +000000000000b336 l .debug_str 0000000000000000 .LASF3 +000000000000af91 l .debug_str 0000000000000000 .LASF4 +000000000000ad1b l .debug_str 0000000000000000 .LASF5 +000000000000aca9 l .debug_str 0000000000000000 .LASF6 +000000000000ab77 l .debug_str 0000000000000000 .LASF7 +000000000000acd1 l .debug_str 0000000000000000 .LASF8 +000000000000adc1 l .debug_str 0000000000000000 .LASF9 +000000000000aa5f l .debug_str 0000000000000000 .LASF10 +000000000000b2a6 l .debug_str 0000000000000000 .LASF11 +000000000000aaef l .debug_str 0000000000000000 .LASF12 +000000000000a9a9 l .debug_str 0000000000000000 .LASF13 +000000000000b058 l .debug_str 0000000000000000 .LASF14 +000000000000b2c6 l .debug_str 0000000000000000 .LASF18 +000000000000ace3 l .debug_str 0000000000000000 .LASF15 +000000000000b189 l .debug_str 0000000000000000 .LASF16 +000000000000b2d1 l .debug_str 0000000000000000 .LASF17 +000000000000afad l .debug_str 0000000000000000 .LASF19 +000000000000b003 l .debug_str 0000000000000000 .LASF20 +000000000000ae46 l .debug_str 0000000000000000 .LASF21 +000000000000afb8 l .debug_str 0000000000000000 .LASF22 +000000000000b2ff l .debug_str 0000000000000000 .LASF23 +000000000000ad57 l .debug_str 0000000000000000 .LASF24 +000000000000b2ae l .debug_str 0000000000000000 .LASF25 +000000000000ab8d l .debug_str 0000000000000000 .LASF26 +000000000000b305 l .debug_str 0000000000000000 .LASF27 +000000000000ae4b l .debug_str 0000000000000000 .LASF28 +000000000000aedd l .debug_str 0000000000000000 .LASF29 +000000000000ac78 l .debug_str 0000000000000000 .LASF30 +000000000000aef4 l .debug_str 0000000000000000 .LASF31 +000000000000b36f l .debug_str 0000000000000000 .LASF32 +000000000000aaba l .debug_str 0000000000000000 .LASF33 +000000000000b358 l .debug_str 0000000000000000 .LASF34 +000000000000ae6e l .debug_str 0000000000000000 .LASF35 +000000000000b1c2 l .debug_str 0000000000000000 .LASF36 +000000000000b0f6 l .debug_str 0000000000000000 .LASF37 +000000000000b0e3 l .debug_str 0000000000000000 .LASF38 +000000000000add7 l .debug_str 0000000000000000 .LASF39 +000000000000b30b l .debug_str 0000000000000000 .LASF40 +000000000000a9d7 l .debug_str 0000000000000000 .LASF41 +000000000000b018 l .debug_str 0000000000000000 .LASF42 +000000000000ae9f l .debug_str 0000000000000000 .LASF43 +000000000000b008 l .debug_str 0000000000000000 .LASF44 +000000000000ac8d l .debug_str 0000000000000000 .LASF45 +000000000000acfb l .debug_str 0000000000000000 .LASF46 +000000000000af12 l .debug_str 0000000000000000 .LASF47 +000000000000ab59 l .debug_str 0000000000000000 .LASF48 +000000000000ad79 l .debug_str 0000000000000000 .LASF49 +000000000000ae14 l .debug_str 0000000000000000 .LASF50 +000000000000a9f2 l .debug_str 0000000000000000 .LASF51 +000000000000b1d6 l .debug_str 0000000000000000 .LASF52 +000000000000afee l .debug_str 0000000000000000 .LASF53 +000000000000b08d l .debug_str 0000000000000000 .LASF54 +000000000000aaaa l .debug_str 0000000000000000 .LASF55 +000000000000afe3 l .debug_str 0000000000000000 .LASF56 +000000000000af7d l .debug_str 0000000000000000 .LASF57 +000000000000a95a l .debug_str 0000000000000000 .LASF58 +000000000000acb6 l .debug_str 0000000000000000 .LASF59 +000000000000af62 l .debug_str 0000000000000000 .LASF60 +000000000000abdf l .debug_str 0000000000000000 .LASF61 +000000000000b198 l .debug_str 0000000000000000 .LASF62 +000000000000ae37 l .debug_str 0000000000000000 .LASF63 +000000000000ab24 l .debug_str 0000000000000000 .LASF64 +000000000000aa9a l .debug_str 0000000000000000 .LASF65 +000000000000ae8b l .debug_str 0000000000000000 .LASF66 +000000000000aa3c l .debug_str 0000000000000000 .LASF67 +000000000000b125 l .debug_str 0000000000000000 .LASF68 +000000000000ac5c l .debug_str 0000000000000000 .LASF69 +000000000000a97f l .debug_str 0000000000000000 .LASF70 +000000000000ae26 l .debug_str 0000000000000000 .LASF71 +000000000000ad38 l .debug_str 0000000000000000 .LASF72 +000000000000ac30 l .debug_str 0000000000000000 .LASF73 +000000000000ace9 l .debug_str 0000000000000000 .LASF74 +000000000000adc9 l .debug_str 0000000000000000 .LASF75 +000000000000ac02 l .debug_str 0000000000000000 .LASF76 +000000000000ad8d l .debug_str 0000000000000000 .LASF77 +000000000000ab35 l .debug_str 0000000000000000 .LASF78 +000000000000b2f5 l .debug_str 0000000000000000 .LASF79 +000000000000aaf7 l .debug_str 0000000000000000 .LASF80 +000000000000ac6e l .debug_str 0000000000000000 .LASF81 +000000000000aa90 l .debug_str 0000000000000000 .LASF82 +000000000000aec6 l .debug_str 0000000000000000 .LASF83 +000000000000a951 l .debug_str 0000000000000000 .LASF84 +000000000000aa54 l .debug_str 0000000000000000 .LASF85 +000000000000aa01 l .debug_str 0000000000000000 .LASF86 +000000000000ad9c l .debug_str 0000000000000000 .LASF87 +000000000000ab80 l .debug_str 0000000000000000 .LASF88 +000000000000af0a l .debug_str 0000000000000000 .LASF89 +000000000000af9b l .debug_str 0000000000000000 .LASF90 +000000000000aae5 l .debug_str 0000000000000000 .LASF91 +000000000000b2e7 l .debug_str 0000000000000000 .LASF92 +000000000000ab6d l .debug_str 0000000000000000 .LASF93 +000000000000ac1a l .debug_str 0000000000000000 .LASF94 +000000000000b18f l .debug_str 0000000000000000 .LASF95 +000000000000aeff l .debug_str 0000000000000000 .LASF96 +000000000000b32d l .debug_str 0000000000000000 .LASF97 +000000000000b11b l .debug_str 0000000000000000 .LASF98 +000000000000a9b3 l .debug_str 0000000000000000 .LASF99 +000000000000adb6 l .debug_str 0000000000000000 .LASF100 +000000000000af71 l .debug_str 0000000000000000 .LASF101 +000000000000b155 l .debug_str 0000000000000000 .LASF102 +000000000000afa4 l .debug_str 0000000000000000 .LASF103 +000000000000ac83 l .debug_str 0000000000000000 .LASF104 +000000000000ad6f l .debug_str 0000000000000000 .LASF105 +000000000000b2dc l .debug_str 0000000000000000 .LASF106 +000000000000aee9 l .debug_str 0000000000000000 .LASF107 +000000000000ab1a l .debug_str 0000000000000000 .LASF108 +000000000000af35 l .debug_str 0000000000000000 .LASF109 +000000000000ac42 l .debug_str 0000000000000000 .LASF110 +000000000000ac9d l .debug_str 0000000000000000 .LASF111 +000000000000ae07 l .debug_str 0000000000000000 .LASF112 +000000000000aa0b l .debug_str 0000000000000000 .LASF113 +000000000000b110 l .debug_str 0000000000000000 .LASF114 +000000000000ad4d l .debug_str 0000000000000000 .LASF115 +000000000000ac10 l .debug_str 0000000000000000 .LASF116 +000000000000ad2e l .debug_str 0000000000000000 .LASF117 +000000000000b0d7 l .debug_str 0000000000000000 .LASF118 +000000000000b379 l .debug_str 0000000000000000 .LASF119 +000000000000a990 l .debug_str 0000000000000000 .LASF120 +000000000000abef l .debug_str 0000000000000000 .LASF121 +000000000000aeab l .debug_str 0000000000000000 .LASF122 +000000000000aacd l .debug_str 0000000000000000 .LASF123 +000000000000a93b l .debug_str 0000000000000000 .LASF124 +000000000000abbe l .debug_str 0000000000000000 .LASF125 +000000000000aa29 l .debug_str 0000000000000000 .LASF126 +000000000000af40 l .debug_str 0000000000000000 .LASF127 +000000000000a9bd l .debug_str 0000000000000000 .LASF128 +000000000000b31c l .debug_str 0000000000000000 .LASF129 +000000000000aa76 l .debug_str 0000000000000000 .LASF130 +000000000000b0c0 l .debug_str 0000000000000000 .LASF131 +000000000000b071 l .debug_str 0000000000000000 .LASF132 +000000000000a965 l .debug_str 0000000000000000 .LASF133 +000000000000adee l .debug_str 0000000000000000 .LASF134 +000000000000b1a5 l .debug_str 0000000000000000 .LASF135 +000000000000ab3f l .debug_str 0000000000000000 .LASF136 +000000000000ab96 l .debug_str 0000000000000000 .LASF137 +000000000000b162 l .debug_str 0000000000000000 .LASF138 +000000000000b1e2 l .debug_str 0000000000000000 .LASF139 +000000000000acc4 l .debug_str 0000000000000000 .LASF140 +000000000000abaf l .debug_str 0000000000000000 .LASF141 +000000000000ada8 l .debug_str 0000000000000000 .LASF142 +000000000000b17d l .debug_str 0000000000000000 .LASF143 +000000000000ac4d l .debug_str 0000000000000000 .LASF144 +000000000000aed1 l .debug_str 0000000000000000 .LASF145 +000000000000afd4 l .debug_str 0000000000000000 .LASF146 +000000000000af21 l .debug_str 0000000000000000 .LASF147 +000000000000aa18 l .debug_str 0000000000000000 .LASF148 +000000000000ad0d l .debug_str 0000000000000000 .LASF149 +000000000000b05d l .debug_str 0000000000000000 .LASF150 +000000000000b0b3 l .debug_str 0000000000000000 .LASF151 +000000000000b33f l .debug_str 0000000000000000 .LASF152 +000000000000a9e7 l .debug_str 0000000000000000 .LASF153 +000000000000af86 l .debug_str 0000000000000000 .LASF154 +000000000000ac23 l .debug_str 0000000000000000 .LASF155 +000000000000b34a l .debug_str 0000000000000000 .LASF156 +000000000000ab0c l .debug_str 0000000000000000 .LASF157 +000000000000b2b4 l .debug_str 0000000000000000 .LASF158 +000000000000aa46 l .debug_str 0000000000000000 .LASF159 +000000000000ae55 l .debug_str 0000000000000000 .LASF160 +000000000000b099 l .debug_str 0000000000000000 .LASF161 +000000000000b0a2 l .debug_str 0000000000000000 .LASF162 +000000000000afc3 l .debug_str 0000000000000000 .LASF163 +000000000000abd4 l .debug_str 0000000000000000 .LASF164 +000000000000ad60 l .debug_str 0000000000000000 .LASF165 +000000000000ae7d l .debug_str 0000000000000000 .LASF170 +0000000000000dec l .text 0000000000000000 .LFB7 +0000000000000dfa l .text 0000000000000000 .LFE7 +000000000000b052 l .debug_str 0000000000000000 .LASF166 +00000000000034b1 l .debug_loc 0000000000000000 .LLST0 +0000000000000dee l .text 0000000000000000 .LBB4 +0000000000000df6 l .text 0000000000000000 .LBE4 +00000000000034e7 l .debug_loc 0000000000000000 .LLST1 +000000000000350b l .debug_loc 0000000000000000 .LLST2 +000000000000ae64 l .debug_str 0000000000000000 .LASF171 +0000000000000dec l .text 0000000000000000 .LVL0 +0000000000000df0 l .text 0000000000000000 .LVL2 +0000000000000dee l .text 0000000000000000 .LVL1 +0000000000000df6 l .text 0000000000000000 .LVL3 +000000000000997f l .debug_info 0000000000000000 .Ldebug_info0 +0000000000000dec l .text 0000000000000000 .L0 +0000000000000dec l .text 0000000000000000 .L0 +0000000000000dec l .text 0000000000000000 .L0 +0000000000000dee l .text 0000000000000000 .L0 +0000000000000dee l .text 0000000000000000 .L0 +0000000000000df0 l .text 0000000000000000 .L0 +0000000000000df0 l .text 0000000000000000 .L0 +0000000000000df4 l .text 0000000000000000 .L0 +0000000000000df6 l .text 0000000000000000 .L0 +0000000000000df6 l .text 0000000000000000 .L0 +0000000000000dfa l .text 0000000000000000 .L0 +0000000000000c10 l .debug_frame 0000000000000000 .L0 +0000000000000dec l .text 0000000000000000 .L0 +0000000000000dfa l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 PROXY_nxsem_wait.c +0000000000002df0 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000000bc39 l .debug_str 0000000000000000 .LASF167 +000000000000b945 l .debug_str 0000000000000000 .LASF168 +000000000000ba93 l .debug_str 0000000000000000 .LASF169 +0000000000000910 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000000509c l .debug_line 0000000000000000 .Ldebug_line0 +000000000000b554 l .debug_str 0000000000000000 .LASF0 +000000000000ba5b l .debug_str 0000000000000000 .LASF2 +000000000000b9b5 l .debug_str 0000000000000000 .LASF1 +000000000000bd79 l .debug_str 0000000000000000 .LASF3 +000000000000b9f2 l .debug_str 0000000000000000 .LASF4 +000000000000b76f l .debug_str 0000000000000000 .LASF5 +000000000000b6fd l .debug_str 0000000000000000 .LASF6 +000000000000b5cb l .debug_str 0000000000000000 .LASF7 +000000000000b725 l .debug_str 0000000000000000 .LASF8 +000000000000b815 l .debug_str 0000000000000000 .LASF9 +000000000000b4b3 l .debug_str 0000000000000000 .LASF10 +000000000000bce9 l .debug_str 0000000000000000 .LASF11 +000000000000b543 l .debug_str 0000000000000000 .LASF12 +000000000000b3fd l .debug_str 0000000000000000 .LASF13 +000000000000bab9 l .debug_str 0000000000000000 .LASF14 +000000000000bd09 l .debug_str 0000000000000000 .LASF18 +000000000000b737 l .debug_str 0000000000000000 .LASF15 +000000000000bbcc l .debug_str 0000000000000000 .LASF16 +000000000000bd14 l .debug_str 0000000000000000 .LASF17 +000000000000ba0e l .debug_str 0000000000000000 .LASF19 +000000000000ba64 l .debug_str 0000000000000000 .LASF20 +000000000000b89a l .debug_str 0000000000000000 .LASF21 +000000000000ba19 l .debug_str 0000000000000000 .LASF22 +000000000000bd42 l .debug_str 0000000000000000 .LASF23 +000000000000b7ab l .debug_str 0000000000000000 .LASF24 +000000000000bcf1 l .debug_str 0000000000000000 .LASF25 +000000000000b5e1 l .debug_str 0000000000000000 .LASF26 +000000000000bd48 l .debug_str 0000000000000000 .LASF27 +000000000000b89f l .debug_str 0000000000000000 .LASF28 +000000000000b923 l .debug_str 0000000000000000 .LASF29 +000000000000b6cc l .debug_str 0000000000000000 .LASF30 +000000000000b93a l .debug_str 0000000000000000 .LASF31 +000000000000bdb2 l .debug_str 0000000000000000 .LASF32 +000000000000b50e l .debug_str 0000000000000000 .LASF33 +000000000000bd9b l .debug_str 0000000000000000 .LASF34 +000000000000b8c2 l .debug_str 0000000000000000 .LASF35 +000000000000bc05 l .debug_str 0000000000000000 .LASF36 +000000000000bb57 l .debug_str 0000000000000000 .LASF37 +000000000000bb44 l .debug_str 0000000000000000 .LASF38 +000000000000b82b l .debug_str 0000000000000000 .LASF39 +000000000000bd4e l .debug_str 0000000000000000 .LASF40 +000000000000b42b l .debug_str 0000000000000000 .LASF41 +000000000000ba79 l .debug_str 0000000000000000 .LASF42 +000000000000b8e5 l .debug_str 0000000000000000 .LASF43 +000000000000ba69 l .debug_str 0000000000000000 .LASF44 +000000000000b6e1 l .debug_str 0000000000000000 .LASF45 +000000000000b74f l .debug_str 0000000000000000 .LASF46 +000000000000b973 l .debug_str 0000000000000000 .LASF47 +000000000000b5ad l .debug_str 0000000000000000 .LASF48 +000000000000b7cd l .debug_str 0000000000000000 .LASF49 +000000000000b868 l .debug_str 0000000000000000 .LASF50 +000000000000b446 l .debug_str 0000000000000000 .LASF51 +000000000000bc19 l .debug_str 0000000000000000 .LASF52 +000000000000ba4f l .debug_str 0000000000000000 .LASF53 +000000000000baee l .debug_str 0000000000000000 .LASF54 +000000000000b4fe l .debug_str 0000000000000000 .LASF55 +000000000000ba44 l .debug_str 0000000000000000 .LASF56 +000000000000b9de l .debug_str 0000000000000000 .LASF57 +000000000000b3a3 l .debug_str 0000000000000000 .LASF58 +000000000000b70a l .debug_str 0000000000000000 .LASF59 +000000000000b9c3 l .debug_str 0000000000000000 .LASF60 +000000000000b633 l .debug_str 0000000000000000 .LASF61 +000000000000bbdb l .debug_str 0000000000000000 .LASF62 +000000000000b88b l .debug_str 0000000000000000 .LASF63 +000000000000b578 l .debug_str 0000000000000000 .LASF64 +000000000000b4ee l .debug_str 0000000000000000 .LASF65 +000000000000b8d1 l .debug_str 0000000000000000 .LASF66 +000000000000b490 l .debug_str 0000000000000000 .LASF67 +000000000000bb86 l .debug_str 0000000000000000 .LASF68 +000000000000b6b0 l .debug_str 0000000000000000 .LASF69 +000000000000b3d3 l .debug_str 0000000000000000 .LASF70 +000000000000b87a l .debug_str 0000000000000000 .LASF71 +000000000000b78c l .debug_str 0000000000000000 .LASF72 +000000000000b684 l .debug_str 0000000000000000 .LASF73 +000000000000b73d l .debug_str 0000000000000000 .LASF74 +000000000000b81d l .debug_str 0000000000000000 .LASF75 +000000000000b656 l .debug_str 0000000000000000 .LASF76 +000000000000b7e1 l .debug_str 0000000000000000 .LASF77 +000000000000b589 l .debug_str 0000000000000000 .LASF78 +000000000000bd38 l .debug_str 0000000000000000 .LASF79 +000000000000b54b l .debug_str 0000000000000000 .LASF80 +000000000000b6c2 l .debug_str 0000000000000000 .LASF81 +000000000000b4e4 l .debug_str 0000000000000000 .LASF82 +000000000000b90c l .debug_str 0000000000000000 .LASF83 +000000000000b39a l .debug_str 0000000000000000 .LASF84 +000000000000b4a8 l .debug_str 0000000000000000 .LASF85 +000000000000b455 l .debug_str 0000000000000000 .LASF86 +000000000000b7f0 l .debug_str 0000000000000000 .LASF87 +000000000000b5d4 l .debug_str 0000000000000000 .LASF88 +000000000000b96b l .debug_str 0000000000000000 .LASF89 +000000000000b9fc l .debug_str 0000000000000000 .LASF90 +000000000000b539 l .debug_str 0000000000000000 .LASF91 +000000000000bd2a l .debug_str 0000000000000000 .LASF92 +000000000000b5c1 l .debug_str 0000000000000000 .LASF93 +000000000000b66e l .debug_str 0000000000000000 .LASF94 +000000000000bbd2 l .debug_str 0000000000000000 .LASF95 +000000000000b960 l .debug_str 0000000000000000 .LASF96 +000000000000bd70 l .debug_str 0000000000000000 .LASF97 +000000000000bb7c l .debug_str 0000000000000000 .LASF98 +000000000000b407 l .debug_str 0000000000000000 .LASF99 +000000000000b80a l .debug_str 0000000000000000 .LASF100 +000000000000b9d2 l .debug_str 0000000000000000 .LASF101 +000000000000bb98 l .debug_str 0000000000000000 .LASF102 +000000000000ba05 l .debug_str 0000000000000000 .LASF103 +000000000000b6d7 l .debug_str 0000000000000000 .LASF104 +000000000000b7c3 l .debug_str 0000000000000000 .LASF105 +000000000000bd1f l .debug_str 0000000000000000 .LASF106 +000000000000b92f l .debug_str 0000000000000000 .LASF107 +000000000000b56e l .debug_str 0000000000000000 .LASF108 +000000000000b996 l .debug_str 0000000000000000 .LASF109 +000000000000b696 l .debug_str 0000000000000000 .LASF110 +000000000000b6f1 l .debug_str 0000000000000000 .LASF111 +000000000000b85b l .debug_str 0000000000000000 .LASF112 +000000000000b45f l .debug_str 0000000000000000 .LASF113 +000000000000bb71 l .debug_str 0000000000000000 .LASF114 +000000000000b7a1 l .debug_str 0000000000000000 .LASF115 +000000000000b664 l .debug_str 0000000000000000 .LASF116 +000000000000b782 l .debug_str 0000000000000000 .LASF117 +000000000000bb38 l .debug_str 0000000000000000 .LASF118 +000000000000bdbc l .debug_str 0000000000000000 .LASF119 +000000000000b3e4 l .debug_str 0000000000000000 .LASF120 +000000000000b643 l .debug_str 0000000000000000 .LASF121 +000000000000b8f1 l .debug_str 0000000000000000 .LASF122 +000000000000b521 l .debug_str 0000000000000000 .LASF123 +000000000000b384 l .debug_str 0000000000000000 .LASF124 +000000000000b612 l .debug_str 0000000000000000 .LASF125 +000000000000b47d l .debug_str 0000000000000000 .LASF126 +000000000000b9a1 l .debug_str 0000000000000000 .LASF127 +000000000000b411 l .debug_str 0000000000000000 .LASF128 +000000000000bd5f l .debug_str 0000000000000000 .LASF129 +000000000000b4ca l .debug_str 0000000000000000 .LASF130 +000000000000bb21 l .debug_str 0000000000000000 .LASF131 +000000000000bad2 l .debug_str 0000000000000000 .LASF132 +000000000000b3ae l .debug_str 0000000000000000 .LASF133 +000000000000b842 l .debug_str 0000000000000000 .LASF134 +000000000000bbe8 l .debug_str 0000000000000000 .LASF135 +000000000000b593 l .debug_str 0000000000000000 .LASF136 +000000000000b5ea l .debug_str 0000000000000000 .LASF137 +000000000000bba5 l .debug_str 0000000000000000 .LASF138 +000000000000bc25 l .debug_str 0000000000000000 .LASF139 +000000000000b718 l .debug_str 0000000000000000 .LASF140 +000000000000b603 l .debug_str 0000000000000000 .LASF141 +000000000000b7fc l .debug_str 0000000000000000 .LASF142 +000000000000bbc0 l .debug_str 0000000000000000 .LASF143 +000000000000b6a1 l .debug_str 0000000000000000 .LASF144 +000000000000b917 l .debug_str 0000000000000000 .LASF145 +000000000000ba35 l .debug_str 0000000000000000 .LASF146 +000000000000b982 l .debug_str 0000000000000000 .LASF147 +000000000000b46c l .debug_str 0000000000000000 .LASF148 +000000000000b761 l .debug_str 0000000000000000 .LASF149 +000000000000babe l .debug_str 0000000000000000 .LASF150 +000000000000bb14 l .debug_str 0000000000000000 .LASF151 +000000000000bd82 l .debug_str 0000000000000000 .LASF152 +000000000000b43b l .debug_str 0000000000000000 .LASF153 +000000000000b9e7 l .debug_str 0000000000000000 .LASF154 +000000000000b677 l .debug_str 0000000000000000 .LASF155 +000000000000bd8d l .debug_str 0000000000000000 .LASF156 +000000000000b560 l .debug_str 0000000000000000 .LASF157 +000000000000bcf7 l .debug_str 0000000000000000 .LASF158 +000000000000b49a l .debug_str 0000000000000000 .LASF159 +000000000000b8a9 l .debug_str 0000000000000000 .LASF160 +000000000000bafa l .debug_str 0000000000000000 .LASF161 +000000000000bb03 l .debug_str 0000000000000000 .LASF162 +000000000000ba24 l .debug_str 0000000000000000 .LASF163 +000000000000b628 l .debug_str 0000000000000000 .LASF164 +000000000000b7b4 l .debug_str 0000000000000000 .LASF165 +000000000000b3c8 l .debug_str 0000000000000000 .LASF170 +0000000000000dfa l .text 0000000000000000 .LFB7 +0000000000000e08 l .text 0000000000000000 .LFE7 +000000000000bab3 l .debug_str 0000000000000000 .LASF166 +0000000000003541 l .debug_loc 0000000000000000 .LLST0 +0000000000000dfc l .text 0000000000000000 .LBB4 +0000000000000e04 l .text 0000000000000000 .LBE4 +0000000000003577 l .debug_loc 0000000000000000 .LLST1 +000000000000359b l .debug_loc 0000000000000000 .LLST2 +000000000000b8b8 l .debug_str 0000000000000000 .LASF171 +0000000000000dfa l .text 0000000000000000 .LVL0 +0000000000000dfe l .text 0000000000000000 .LVL2 +0000000000000dfc l .text 0000000000000000 .LVL1 +0000000000000e04 l .text 0000000000000000 .LVL3 +0000000000009ef2 l .debug_info 0000000000000000 .Ldebug_info0 +0000000000000dfa l .text 0000000000000000 .L0 +0000000000000dfa l .text 0000000000000000 .L0 +0000000000000dfa l .text 0000000000000000 .L0 +0000000000000dfc l .text 0000000000000000 .L0 +0000000000000dfc l .text 0000000000000000 .L0 +0000000000000dfe l .text 0000000000000000 .L0 +0000000000000dfe l .text 0000000000000000 .L0 +0000000000000e02 l .text 0000000000000000 .L0 +0000000000000e04 l .text 0000000000000000 .L0 +0000000000000e04 l .text 0000000000000000 .L0 +0000000000000e08 l .text 0000000000000000 .L0 +0000000000000c38 l .debug_frame 0000000000000000 .L0 +0000000000000dfa l .text 0000000000000000 .L0 +0000000000000e08 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 PROXY_write.c +0000000000002f3a l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000000c631 l .debug_str 0000000000000000 .LASF155 +000000000000c178 l .debug_str 0000000000000000 .LASF156 +000000000000c464 l .debug_str 0000000000000000 .LASF157 +0000000000000930 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000005221 l .debug_line 0000000000000000 .Ldebug_line0 +000000000000bf38 l .debug_str 0000000000000000 .LASF0 +000000000000c377 l .debug_str 0000000000000000 .LASF1 +000000000000c3b4 l .debug_str 0000000000000000 .LASF2 +000000000000c13c l .debug_str 0000000000000000 .LASF3 +000000000000c0d8 l .debug_str 0000000000000000 .LASF4 +000000000000bfa5 l .debug_str 0000000000000000 .LASF5 +000000000000c100 l .debug_str 0000000000000000 .LASF6 +000000000000c6e1 l .debug_str 0000000000000000 .LASF7 +000000000000c201 l .debug_str 0000000000000000 .LASF8 +000000000000be9f l .debug_str 0000000000000000 .LASF9 +000000000000be02 l .debug_str 0000000000000000 .LASF10 +000000000000bdfb l .debug_str 0000000000000000 .LASF11 +000000000000be50 l .debug_str 0000000000000000 .LASF12 +000000000000c490 l .debug_str 0000000000000000 .LASF13 +000000000000c279 l .debug_str 0000000000000000 .LASF14 +000000000000c421 l .debug_str 0000000000000000 .LASF15 +000000000000c0a7 l .debug_str 0000000000000000 .LASF16 +000000000000c317 l .debug_str 0000000000000000 .LASF17 +000000000000c787 l .debug_str 0000000000000000 .LASF18 +000000000000befa l .debug_str 0000000000000000 .LASF19 +000000000000c770 l .debug_str 0000000000000000 .LASF20 +000000000000c292 l .debug_str 0000000000000000 .LASF21 +000000000000c5fd l .debug_str 0000000000000000 .LASF22 +000000000000c52e l .debug_str 0000000000000000 .LASF23 +000000000000c51b l .debug_str 0000000000000000 .LASF24 +000000000000c217 l .debug_str 0000000000000000 .LASF25 +000000000000c72c l .debug_str 0000000000000000 .LASF26 +000000000000be1c l .debug_str 0000000000000000 .LASF27 +000000000000c44a l .debug_str 0000000000000000 .LASF28 +000000000000c2b5 l .debug_str 0000000000000000 .LASF29 +000000000000c43a l .debug_str 0000000000000000 .LASF30 +000000000000c0bc l .debug_str 0000000000000000 .LASF31 +000000000000c18e l .debug_str 0000000000000000 .LASF32 +000000000000c335 l .debug_str 0000000000000000 .LASF33 +000000000000bf91 l .debug_str 0000000000000000 .LASF34 +000000000000c1b9 l .debug_str 0000000000000000 .LASF35 +000000000000c247 l .debug_str 0000000000000000 .LASF36 +000000000000be37 l .debug_str 0000000000000000 .LASF37 +000000000000c611 l .debug_str 0000000000000000 .LASF38 +000000000000c415 l .debug_str 0000000000000000 .LASF39 +000000000000c4c5 l .debug_str 0000000000000000 .LASF40 +000000000000beea l .debug_str 0000000000000000 .LASF41 +000000000000c40a l .debug_str 0000000000000000 .LASF42 +000000000000c3a0 l .debug_str 0000000000000000 .LASF43 +000000000000bdd6 l .debug_str 0000000000000000 .LASF44 +000000000000c0e5 l .debug_str 0000000000000000 .LASF45 +000000000000c385 l .debug_str 0000000000000000 .LASF46 +000000000000c004 l .debug_str 0000000000000000 .LASF47 +000000000000c5d3 l .debug_str 0000000000000000 .LASF48 +000000000000c26a l .debug_str 0000000000000000 .LASF49 +000000000000bf5c l .debug_str 0000000000000000 .LASF50 +000000000000beda l .debug_str 0000000000000000 .LASF51 +000000000000c2a1 l .debug_str 0000000000000000 .LASF52 +000000000000be7c l .debug_str 0000000000000000 .LASF53 +000000000000c55d l .debug_str 0000000000000000 .LASF54 +000000000000c08b l .debug_str 0000000000000000 .LASF55 +000000000000c5a3 l .debug_str 0000000000000000 .LASF56 +000000000000c259 l .debug_str 0000000000000000 .LASF57 +000000000000c159 l .debug_str 0000000000000000 .LASF58 +000000000000c055 l .debug_str 0000000000000000 .LASF59 +000000000000c11c l .debug_str 0000000000000000 .LASF60 +000000000000c209 l .debug_str 0000000000000000 .LASF61 +000000000000c027 l .debug_str 0000000000000000 .LASF62 +000000000000c1cd l .debug_str 0000000000000000 .LASF63 +000000000000bf6d l .debug_str 0000000000000000 .LASF64 +000000000000c722 l .debug_str 0000000000000000 .LASF65 +000000000000bf2f l .debug_str 0000000000000000 .LASF66 +000000000000c09d l .debug_str 0000000000000000 .LASF67 +000000000000bed0 l .debug_str 0000000000000000 .LASF68 +000000000000c2dc l .debug_str 0000000000000000 .LASF69 +000000000000bdcd l .debug_str 0000000000000000 .LASF70 +000000000000be94 l .debug_str 0000000000000000 .LASF71 +000000000000be46 l .debug_str 0000000000000000 .LASF72 +000000000000c1dc l .debug_str 0000000000000000 .LASF73 +000000000000bfae l .debug_str 0000000000000000 .LASF74 +000000000000c32d l .debug_str 0000000000000000 .LASF75 +000000000000c3be l .debug_str 0000000000000000 .LASF76 +000000000000c112 l .debug_str 0000000000000000 .LASF77 +000000000000c714 l .debug_str 0000000000000000 .LASF78 +000000000000bf25 l .debug_str 0000000000000000 .LASF79 +000000000000c03f l .debug_str 0000000000000000 .LASF80 +000000000000c5ca l .debug_str 0000000000000000 .LASF81 +000000000000c322 l .debug_str 0000000000000000 .LASF82 +000000000000c74e l .debug_str 0000000000000000 .LASF83 +000000000000c553 l .debug_str 0000000000000000 .LASF84 +000000000000be0c l .debug_str 0000000000000000 .LASF85 +000000000000c1f6 l .debug_str 0000000000000000 .LASF86 +000000000000c394 l .debug_str 0000000000000000 .LASF87 +000000000000c56f l .debug_str 0000000000000000 .LASF88 +000000000000c3c7 l .debug_str 0000000000000000 .LASF89 +000000000000c0b2 l .debug_str 0000000000000000 .LASF90 +000000000000c1af l .debug_str 0000000000000000 .LASF91 +000000000000c709 l .debug_str 0000000000000000 .LASF92 +000000000000c30c l .debug_str 0000000000000000 .LASF93 +000000000000bf52 l .debug_str 0000000000000000 .LASF94 +000000000000c358 l .debug_str 0000000000000000 .LASF95 +000000000000c071 l .debug_str 0000000000000000 .LASF96 +000000000000c0cc l .debug_str 0000000000000000 .LASF97 +000000000000c6fc l .debug_str 0000000000000000 .LASF98 +000000000000c42d l .debug_str 0000000000000000 .LASF99 +000000000000c548 l .debug_str 0000000000000000 .LASF100 +000000000000c16e l .debug_str 0000000000000000 .LASF101 +000000000000c035 l .debug_str 0000000000000000 .LASF102 +000000000000c14f l .debug_str 0000000000000000 .LASF103 +000000000000c50f l .debug_str 0000000000000000 .LASF104 +000000000000c791 l .debug_str 0000000000000000 .LASF105 +000000000000c2f3 l .debug_str 0000000000000000 .LASF106 +000000000000c014 l .debug_str 0000000000000000 .LASF107 +000000000000c2c1 l .debug_str 0000000000000000 .LASF108 +000000000000bf0d l .debug_str 0000000000000000 .LASF109 +000000000000c5b4 l .debug_str 0000000000000000 .LASF110 +000000000000bfe3 l .debug_str 0000000000000000 .LASF111 +000000000000be69 l .debug_str 0000000000000000 .LASF112 +000000000000c363 l .debug_str 0000000000000000 .LASF113 +000000000000c3d0 l .debug_str 0000000000000000 .LASF114 +000000000000c73d l .debug_str 0000000000000000 .LASF115 +000000000000beb6 l .debug_str 0000000000000000 .LASF116 +000000000000c4f8 l .debug_str 0000000000000000 .LASF117 +000000000000c4a9 l .debug_str 0000000000000000 .LASF118 +000000000000bde1 l .debug_str 0000000000000000 .LASF119 +000000000000c22e l .debug_str 0000000000000000 .LASF120 +000000000000c5e0 l .debug_str 0000000000000000 .LASF121 +000000000000bf77 l .debug_str 0000000000000000 .LASF122 +000000000000bfbb l .debug_str 0000000000000000 .LASF123 +000000000000c57c l .debug_str 0000000000000000 .LASF124 +000000000000c61d l .debug_str 0000000000000000 .LASF125 +000000000000c0f3 l .debug_str 0000000000000000 .LASF126 +000000000000bfd4 l .debug_str 0000000000000000 .LASF127 +000000000000c1e8 l .debug_str 0000000000000000 .LASF128 +000000000000c597 l .debug_str 0000000000000000 .LASF129 +000000000000c07c l .debug_str 0000000000000000 .LASF130 +000000000000c2e7 l .debug_str 0000000000000000 .LASF131 +000000000000c3fb l .debug_str 0000000000000000 .LASF132 +000000000000c344 l .debug_str 0000000000000000 .LASF133 +000000000000be58 l .debug_str 0000000000000000 .LASF134 +000000000000c12e l .debug_str 0000000000000000 .LASF135 +000000000000c495 l .debug_str 0000000000000000 .LASF136 +000000000000c4eb l .debug_str 0000000000000000 .LASF137 +000000000000c757 l .debug_str 0000000000000000 .LASF138 +000000000000be2c l .debug_str 0000000000000000 .LASF139 +000000000000c3a9 l .debug_str 0000000000000000 .LASF140 +000000000000c048 l .debug_str 0000000000000000 .LASF141 +000000000000c762 l .debug_str 0000000000000000 .LASF142 +000000000000bf44 l .debug_str 0000000000000000 .LASF143 +000000000000c6ea l .debug_str 0000000000000000 .LASF144 +000000000000be86 l .debug_str 0000000000000000 .LASF145 +000000000000c283 l .debug_str 0000000000000000 .LASF146 +000000000000c4d1 l .debug_str 0000000000000000 .LASF147 +000000000000c4da l .debug_str 0000000000000000 .LASF148 +000000000000c3ea l .debug_str 0000000000000000 .LASF149 +000000000000bff9 l .debug_str 0000000000000000 .LASF150 +000000000000c1a0 l .debug_str 0000000000000000 .LASF151 +000000000000be16 l .debug_str 0000000000000000 .LASF158 +0000000000000e08 l .text 0000000000000000 .LFB7 +0000000000000e1e l .text 0000000000000000 .LFE7 +000000000000c484 l .debug_str 0000000000000000 .LASF152 +00000000000035d1 l .debug_loc 0000000000000000 .LLST0 +000000000000c48a l .debug_str 0000000000000000 .LASF153 +000000000000360a l .debug_loc 0000000000000000 .LLST1 +000000000000bdc7 l .debug_str 0000000000000000 .LASF154 +0000000000003640 l .debug_loc 0000000000000000 .LLST2 +0000000000000e0e l .text 0000000000000000 .LBB4 +0000000000000e1c l .text 0000000000000000 .LBE4 +0000000000003676 l .debug_loc 0000000000000000 .LLST3 +000000000000369b l .debug_loc 0000000000000000 .LLST4 +00000000000036d1 l .debug_loc 0000000000000000 .LLST5 +0000000000003707 l .debug_loc 0000000000000000 .LLST6 +000000000000c067 l .debug_str 0000000000000000 .LASF159 +0000000000000e08 l .text 0000000000000000 .LVL0 +0000000000000e12 l .text 0000000000000000 .LVL4 +0000000000000e14 l .text 0000000000000000 .LVL5 +0000000000000e16 l .text 0000000000000000 .LVL6 +0000000000000e0e l .text 0000000000000000 .LVL3 +0000000000000e1c l .text 0000000000000000 .LVL7 +0000000000000e0c l .text 0000000000000000 .LVL2 +0000000000000e0a l .text 0000000000000000 .LVL1 +000000000000a465 l .debug_info 0000000000000000 .Ldebug_info0 +0000000000000e08 l .text 0000000000000000 .L0 +0000000000000e08 l .text 0000000000000000 .L0 +0000000000000e08 l .text 0000000000000000 .L0 +0000000000000e0e l .text 0000000000000000 .L0 +0000000000000e0e l .text 0000000000000000 .L0 +0000000000000e12 l .text 0000000000000000 .L0 +0000000000000e12 l .text 0000000000000000 .L0 +0000000000000e14 l .text 0000000000000000 .L0 +0000000000000e14 l .text 0000000000000000 .L0 +0000000000000e16 l .text 0000000000000000 .L0 +0000000000000e16 l .text 0000000000000000 .L0 +0000000000000e1a l .text 0000000000000000 .L0 +0000000000000e1c l .text 0000000000000000 .L0 +0000000000000e1c l .text 0000000000000000 .L0 +0000000000000e1e l .text 0000000000000000 .L0 +0000000000000c60 l .debug_frame 0000000000000000 .L0 +0000000000000e08 l .text 0000000000000000 .L0 +0000000000000e1e l .text 0000000000000000 .L0 +0000000000000d74 g F .text 0000000000000014 clock_gettime +0000000000000b5a g F .text 000000000000001c nxsem_get_value +0000000000000dac g F .text 000000000000000e nx_pthread_exit +00000000000002d0 g F .text 0000000000000034 lib_fflush +0000000000000dba g F .text 0000000000000016 nxsem_clockwait +000000000000050a g F .text 000000000000000a task_get_info +00000000000005a2 g F .text 0000000000000022 nxmutex_is_locked +0000000000000008 g .dtors 0000000000000000 _edtors +000000000000079c g F .text 000000000000000e nxmutex_restorelock +0000000000000d24 g F .text 000000000000001e pthread_exit +0000000000000d88 g F .text 000000000000000c gettid +0000000000000978 g F .text 000000000000002a nxrmutex_restorelock +0000000000000008 g .dtors 0000000000000000 _sdtors +0000000000000514 g F .text 0000000000000016 __errno +0000000000000e1e g .text 0000000000000000 _etext +000000000000000c g .bss 0000000000000000 _sbss +0000000000000248 g F .text 0000000000000088 lib_fflush_unlocked +00000000000009f6 g F .text 000000000000006c task_setcancelstate +00000000000004ee g F .text 000000000000001c memcpy +0000000000000a62 g F .text 0000000000000044 nxsem_init +000000000000005a g F .text 0000000000000086 puts +0000000000000f24 g .rodata 0000000000000000 _srodata +00000000000004b2 g F .text 000000000000001e quick_exit +0000000000000d50 g F .text 0000000000000018 _assert +00000000000007aa g F .text 000000000000000c nxrmutex_init +0000000000000dd0 g F .text 000000000000000e nxsem_destroy +0000000000000000 w O .sdata.__dso_handle 0000000000000008 __dso_handle +0000000000000632 g F .text 0000000000000056 nxmutex_trylock +0000000000000f24 g .data 0000000000000000 _sdata +00000000000009a2 g F .text 0000000000000026 clock_ticks2time +00000000000005c4 g F .text 000000000000006e nxmutex_lock +0000000000000936 g F .text 0000000000000042 nxrmutex_breaklock +0000000000000bea g F .text 0000000000000046 fflush +0000000000000562 g F .text 0000000000000020 nxmutex_destroy +0000000000000d94 g F .text 0000000000000018 lseek +00000000000004d0 g F .text 000000000000000c _Exit +0000000000000d42 g F .text 000000000000000e abort +000000000000043a g F .text 000000000000000a ftrylockfile +00000000000007de g F .text 0000000000000008 nxrmutex_is_locked +000000000000000c g .bss 0000000000000000 _ebss +0000000000000304 g F .text 0000000000000060 lib_rdflush_unlocked +0000000000000e08 g F .text 0000000000000016 write +0000000000000364 g F .text 0000000000000092 fputs_unlocked +00000000000008e6 g F .text 0000000000000050 nxrmutex_unlock +000000000000052a g F .text 0000000000000038 nxmutex_init +00000000000006fa g F .text 0000000000000066 nxmutex_unlock +0000000000000aa6 g F .text 0000000000000044 sem_init +000000000000001a g F .text 0000000000000024 _start +0000000000000688 g F .text 0000000000000072 nxmutex_timedlock +0000000000000dde g F .text 000000000000000e nxsem_post +0000000000000444 g F .text 000000000000000a funlockfile +0000000000000760 g F .text 000000000000003c nxmutex_breaklock +0000000000000dfa g F .text 000000000000000e nxsem_wait +0000000000000dec g F .text 000000000000000e nxsem_trywait +0000000000000464 g F .text 0000000000000026 lib_get_stream +0000000000000b2c g F .text 000000000000002e sem_setprotocol +000000000000020a g F .text 000000000000003e lib_fwrite +000000000000044e g F .text 0000000000000016 lib_get_streams +000000000000003e g F .text 000000000000001c main +00000000000009c8 g F .text 000000000000002e clock_timespec_add +0000000000000582 g F .text 0000000000000020 nxmutex_is_hold +0000000000000c30 g F .text 0000000000000064 lib_flushall_unlocked +000000000000088e g F .text 0000000000000058 nxrmutex_timedlock +00000000000007e6 g F .text 0000000000000054 nxrmutex_lock +0000000000000430 g F .text 000000000000000a flockfile +0000000000000008 g .ctors 0000000000000000 _sctors +0000000000000ba4 g F .text 0000000000000046 fflush_unlocked +00000000000007b6 g F .text 0000000000000020 nxrmutex_destroy +0000000000000f24 g .data 0000000000000000 _edata +00000000000007d6 g F .text 0000000000000008 nxrmutex_is_hold +0000000000000b76 g F .text 000000000000002e sem_getvalue +0000000000000aea g F .text 0000000000000042 nxsem_set_protocol +000000000000048a g F .text 0000000000000028 exit +0000000000000008 g .ctors 0000000000000000 _ectors +0000000000000c94 g F .text 000000000000007a lib_flushall +0000000000000d68 g F .text 000000000000000c _exit +000000000000083a g F .text 0000000000000054 nxrmutex_trylock +0000000000000e1e g .text 0000000000000000 _stext +00000000000004dc g F .text 0000000000000012 strlen +0000000000000d0e g F .text 0000000000000016 __assert +00000000000003f6 g F .text 000000000000003a fputs +00000000000000e0 g F .text 000000000000012a lib_fwrite_unlocked +0000000000000f24 g .rodata 0000000000000000 _erodata + + + +Disassembly of section .text: + +0000000000000000 : +sig_trampoline(): +/Users/Luppy/ox64/nuttx/arch/risc-v/src/common/crt0.c:70 + ****************************************************************************/ + +static void sig_trampoline(void) naked_function; +static void sig_trampoline(void) +{ + __asm__ __volatile__ + 0: 1141 addi sp,sp,-16 + 2: e006 sd ra,0(sp) + 4: 82aa mv t0,a0 + 6: 852e mv a0,a1 + 8: 85b2 mv a1,a2 + a: 8636 mv a2,a3 + c: 9282 jalr t0 + e: 6082 ld ra,0(sp) + 10: 0141 addi sp,sp,16 + 12: 451d li a0,7 + 14: 00000073 ecall + 18: 0001 nop + +000000000000001a <_start>: +_start(): +/Users/Luppy/ox64/nuttx/arch/risc-v/src/common/crt0.c:166 + * exit. + * + ****************************************************************************/ + +void _start(int argc, char *argv[]) +{ + 1a: 1141 addi sp,sp,-16 +/Users/Luppy/ox64/nuttx/arch/risc-v/src/common/crt0.c:173 + + /* Initialize the reserved area at the beginning of the .bss/.data region + * that is visible to the RTOS. + */ + + ARCH_DATA_RESERVE->ar_sigtramp = (addrenv_sigtramp_t)sig_trampoline; + 1c: 008017b7 lui a5,0x801 +/Users/Luppy/ox64/nuttx/arch/risc-v/src/common/crt0.c:166 +{ + 20: e406 sd ra,8(sp) +/Users/Luppy/ox64/nuttx/arch/risc-v/src/common/crt0.c:173 + ARCH_DATA_RESERVE->ar_sigtramp = (addrenv_sigtramp_t)sig_trampoline; + 22: 07a2 slli a5,a5,0x8 + 24: 00000717 auipc a4,0x0 24: R_RISCV_PCREL_HI20 sig_trampoline + 24: R_RISCV_RELAX *ABS* + 28: 00070713 mv a4,a4 28: R_RISCV_PCREL_LO12_I .L0 + 28: R_RISCV_RELAX *ABS* + 2c: e398 sd a4,0(a5) +/Users/Luppy/ox64/nuttx/arch/risc-v/src/common/crt0.c:187 + atexit(exec_dtors); +#endif + + /* Call the main() entry point passing argc and argv. */ + + ret = main(argc, argv); + 2e: 00000097 auipc ra,0x0 2e: R_RISCV_CALL main + 2e: R_RISCV_RELAX *ABS* + 32: 000080e7 jalr ra # 2e <_start+0x14> + +0000000000000036 <.LVL1>: +/Users/Luppy/ox64/nuttx/arch/risc-v/src/common/crt0.c:191 + + /* Call exit() if/when the main() returns */ + + exit(ret); + 36: 00000097 auipc ra,0x0 36: R_RISCV_CALL exit + 36: R_RISCV_RELAX *ABS* + 3a: 000080e7 jalr ra # 36 <.LVL1> + +000000000000003e
: +main(): +/Users/Luppy/ox64/apps/examples/hello/hello_main.c:37 +/**************************************************************************** + * hello_main + ****************************************************************************/ + +int main(int argc, FAR char *argv[]) +{ + 3e: 1141 addi sp,sp,-16 +/Users/Luppy/ox64/apps/examples/hello/hello_main.c:38 + printf("Hello, World!!\n"); + 40: 00000517 auipc a0,0x0 40: R_RISCV_PCREL_HI20 .LC0 + 40: R_RISCV_RELAX *ABS* + 44: 00050513 mv a0,a0 44: R_RISCV_PCREL_LO12_I .L0 + 44: R_RISCV_RELAX *ABS* + +0000000000000048 <.LVL1>: +/Users/Luppy/ox64/apps/examples/hello/hello_main.c:37 +{ + 48: e406 sd ra,8(sp) +/Users/Luppy/ox64/apps/examples/hello/hello_main.c:38 + printf("Hello, World!!\n"); + 4a: 00000097 auipc ra,0x0 4a: R_RISCV_CALL puts + 4a: R_RISCV_RELAX *ABS* + 4e: 000080e7 jalr ra # 4a <.LVL1+0x2> + +0000000000000052 <.LVL2>: +/Users/Luppy/ox64/apps/examples/hello/hello_main.c:40 + return 0; +} + 52: 60a2 ld ra,8(sp) + 54: 4501 li a0,0 + 56: 0141 addi sp,sp,16 + 58: 8082 ret + +000000000000005a : +puts(): +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_puts.c:44 + * puts() writes the string s and a trailing newline to stdout. + * + ****************************************************************************/ + +int puts(FAR const IPTR char *s) +{ + 5a: 7179 addi sp,sp,-48 + 5c: f022 sd s0,32(sp) + 5e: 842a mv s0,a0 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_puts.c:46 +#ifdef CONFIG_FILE_STREAM + FILE *stream = stdout; + 60: 4505 li a0,1 + +0000000000000062 <.LVL1>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_puts.c:44 +{ + 62: f406 sd ra,40(sp) + 64: ec26 sd s1,24(sp) +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_puts.c:46 + FILE *stream = stdout; + 66: 00000097 auipc ra,0x0 66: R_RISCV_CALL lib_get_stream + 66: R_RISCV_RELAX *ABS* + 6a: 000080e7 jalr ra # 66 <.LVL1+0x4> + +000000000000006e <.LVL2>: + 6e: 84aa mv s1,a0 + +0000000000000070 <.LVL3>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_puts.c:53 + int nput = EOF; + int ret; + + /* Write the string (the next two steps must be atomic) */ + + flockfile(stream); + 70: 00000097 auipc ra,0x0 70: R_RISCV_CALL flockfile + 70: R_RISCV_RELAX *ABS* + 74: 000080e7 jalr ra # 70 <.LVL3> + +0000000000000078 <.LVL4>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_puts.c:57 + + /* Write the string without its trailing '\0' */ + + nwritten = fputs_unlocked(s, stream); + 78: 85a6 mv a1,s1 + 7a: 8522 mv a0,s0 + 7c: 00000097 auipc ra,0x0 7c: R_RISCV_CALL fputs_unlocked + 7c: R_RISCV_RELAX *ABS* + 80: 000080e7 jalr ra # 7c <.LVL4+0x4> + +0000000000000084 <.LVL5>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_puts.c:58 + if (nwritten > 0) + 84: 02a05e63 blez a0,c0 <.L5> 84: R_RISCV_BRANCH .L5 + +0000000000000088 <.LBB2>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_puts.c:62 + { + /* Followed by a newline */ + + char newline = '\n'; + 88: 47a9 li a5,10 + 8a: 842a mv s0,a0 + +000000000000008c <.LVL6>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_puts.c:63 + ret = lib_fwrite_unlocked(&newline, 1, stream); + 8c: 8626 mv a2,s1 + 8e: 4585 li a1,1 + 90: 00f10513 addi a0,sp,15 + +0000000000000094 <.LVL7>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_puts.c:62 + char newline = '\n'; + 94: 00f107a3 sb a5,15(sp) +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_puts.c:63 + ret = lib_fwrite_unlocked(&newline, 1, stream); + 98: 00000097 auipc ra,0x0 98: R_RISCV_CALL lib_fwrite_unlocked + 98: R_RISCV_RELAX *ABS* + 9c: 000080e7 jalr ra # 98 <.LVL7+0x4> + +00000000000000a0 <.LVL8>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_puts.c:64 + if (ret > 0) + a0: 2501 sext.w a0,a0 + a2: 00a05f63 blez a0,c0 <.L5> a2: R_RISCV_BRANCH .L5 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_puts.c:72 + + /* Flush the buffer after the newline is output if line buffering + * is enabled. + */ + + if ((stream->fs_flags & __FS_FLAG_LBF) != 0) + a6: 0ba4c783 lbu a5,186(s1) +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_puts.c:66 + nput = nwritten + 1; + aa: 2405 addiw s0,s0,1 + +00000000000000ac <.LVL9>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_puts.c:72 + if ((stream->fs_flags & __FS_FLAG_LBF) != 0) + ac: 8b91 andi a5,a5,4 + ae: cb91 beqz a5,c2 <.L2> ae: R_RISCV_RVC_BRANCH .L2 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_puts.c:74 + { + ret = lib_fflush_unlocked(stream); + b0: 8526 mv a0,s1 + +00000000000000b2 <.LVL10>: + b2: 00000097 auipc ra,0x0 b2: R_RISCV_CALL lib_fflush_unlocked + b2: R_RISCV_RELAX *ABS* + b6: 000080e7 jalr ra # b2 <.LVL10> + +00000000000000ba <.LVL11>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_puts.c:75 + if (ret < 0) + ba: 2501 sext.w a0,a0 + bc: 00055363 bgez a0,c2 <.L2> bc: R_RISCV_BRANCH .L2 + +00000000000000c0 <.L5>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_puts.c:48 + int nput = EOF; + c0: 547d li s0,-1 + +00000000000000c2 <.L2>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_puts.c:83 + } + } + } + } + + funlockfile(stdout); + c2: 4505 li a0,1 + c4: 00000097 auipc ra,0x0 c4: R_RISCV_CALL lib_get_stream + c4: R_RISCV_RELAX *ABS* + c8: 000080e7 jalr ra # c4 <.L2+0x2> + +00000000000000cc <.LVL14>: + cc: 00000097 auipc ra,0x0 cc: R_RISCV_CALL funlockfile + cc: R_RISCV_RELAX *ABS* + d0: 000080e7 jalr ra # cc <.LVL14> + +00000000000000d4 <.LVL15>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_puts.c:96 + iov[1].iov_base = "\n"; + iov[1].iov_len = 1; + + return writev(STDOUT_FILENO, iov, 2) == ++len ? len : EOF; +#endif +} + d4: 70a2 ld ra,40(sp) + d6: 8522 mv a0,s0 + d8: 7402 ld s0,32(sp) + +00000000000000da <.LVL16>: + da: 64e2 ld s1,24(sp) + +00000000000000dc <.LVL17>: + dc: 6145 addi sp,sp,48 + de: 8082 ret + +00000000000000e0 : +lib_fwrite_unlocked(): +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfwrite.c:49 + ****************************************************************************/ + +ssize_t lib_fwrite_unlocked(FAR const void *ptr, size_t count, + FAR FILE *stream) +#ifndef CONFIG_STDIO_DISABLE_BUFFERING +{ + e0: 7179 addi sp,sp,-48 + e2: f406 sd ra,40(sp) + e4: f022 sd s0,32(sp) + e6: ec26 sd s1,24(sp) + e8: e84a sd s2,16(sp) + ea: e44e sd s3,8(sp) + ec: e052 sd s4,0(sp) +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfwrite.c:57 + ssize_t ret = ERROR; + size_t gulp_size; + + /* Make sure that writing to this stream is allowed */ + + if (stream == NULL) + ee: e205 bnez a2,10e <.L2> ee: R_RISCV_RVC_BRANCH .L2 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfwrite.c:59 + { + set_errno(EBADF); + f0: 00000097 auipc ra,0x0 f0: R_RISCV_CALL __errno + f0: R_RISCV_RELAX *ABS* + f4: 000080e7 jalr ra # f0 + +00000000000000f8 <.LVL1>: + f8: 47a5 li a5,9 + fa: c11c sw a5,0(a0) +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfwrite.c:60 + return ret; + fc: 557d li a0,-1 + +00000000000000fe <.L1>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfwrite.c:179 + { + stream->fs_flags |= __FS_FLAG_ERROR; + } + + return ret; +} + fe: 70a2 ld ra,40(sp) + 100: 7402 ld s0,32(sp) + 102: 64e2 ld s1,24(sp) + 104: 6942 ld s2,16(sp) + 106: 69a2 ld s3,8(sp) + 108: 6a02 ld s4,0(sp) + 10a: 6145 addi sp,sp,48 + 10c: 8082 ret + +000000000000010e <.L2>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfwrite.c:65 + if ((stream->fs_oflags & O_WROK) == 0) + 10e: 0b865783 lhu a5,184(a2) + 112: 84b2 mv s1,a2 + 114: 8b89 andi a5,a5,2 + 116: ef99 bnez a5,134 <.L4> 116: R_RISCV_RVC_BRANCH .L4 + +0000000000000118 <.LVL4>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfwrite.c:67 + set_errno(EBADF); + 118: 00000097 auipc ra,0x0 118: R_RISCV_CALL __errno + 118: R_RISCV_RELAX *ABS* + 11c: 000080e7 jalr ra # 118 <.LVL4> + +0000000000000120 <.LVL5>: + 120: 47a5 li a5,9 + 122: c11c sw a5,0(a0) + +0000000000000124 <.L9>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfwrite.c:87 + ret = ERROR; + 124: 557d li a0,-1 + +0000000000000126 <.L5>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfwrite.c:175 + stream->fs_flags |= __FS_FLAG_ERROR; + 126: 0ba4c783 lbu a5,186(s1) + 12a: 0027e793 ori a5,a5,2 + 12e: 0af48d23 sb a5,186(s1) + 132: b7f1 j fe <.L1> 132: R_RISCV_RVC_JUMP .L1 + +0000000000000134 <.L4>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfwrite.c:73 + if (stream->fs_bufstart == NULL) + 134: 6e3c ld a5,88(a2) + 136: 89aa mv s3,a0 + 138: 892e mv s2,a1 + 13a: e385 bnez a5,15a <.L6> 13a: R_RISCV_RVC_BRANCH .L6 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfwrite.c:75 + if (stream->fs_iofunc.write != NULL) + 13c: 7e1c ld a5,56(a2) +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfwrite.c:77 + ret = stream->fs_iofunc.write(stream->fs_cookie, ptr, count); + 13e: 6a28 ld a0,80(a2) + +0000000000000140 <.LVL8>: + 140: 862e mv a2,a1 + 142: 85ce mv a1,s3 + +0000000000000144 <.LVL9>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfwrite.c:75 + if (stream->fs_iofunc.write != NULL) + 144: c789 beqz a5,14e <.L7> 144: R_RISCV_RVC_BRANCH .L7 + +0000000000000146 <.LVL10>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfwrite.c:77 + ret = stream->fs_iofunc.write(stream->fs_cookie, ptr, count); + 146: 9782 jalr a5 + +0000000000000148 <.L8>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfwrite.c:84 + if (ret < 0) + 148: fa055be3 bgez a0,fe <.L1> 148: R_RISCV_BRANCH .L1 + 14c: bfe1 j 124 <.L9> 14c: R_RISCV_RVC_JUMP .L9 + +000000000000014e <.L7>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfwrite.c:81 + ret = _NX_WRITE((int)(intptr_t)stream->fs_cookie, ptr, count); + 14e: 2501 sext.w a0,a0 + 150: 00000097 auipc ra,0x0 150: R_RISCV_CALL write + 150: R_RISCV_RELAX *ABS* + 154: 000080e7 jalr ra # 150 <.L7+0x2> + +0000000000000158 <.LVL13>: + 158: bfc5 j 148 <.L8> 158: R_RISCV_RVC_JUMP .L8 + +000000000000015a <.L6>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfwrite.c:98 + if (lib_rdflush_unlocked(stream) < 0) + 15a: 8532 mv a0,a2 + +000000000000015c <.LVL15>: + 15c: 00000097 auipc ra,0x0 15c: R_RISCV_CALL lib_rdflush_unlocked + 15c: R_RISCV_RELAX *ABS* + 160: 000080e7 jalr ra # 15c <.LVL15> + +0000000000000164 <.LVL16>: + 164: fc0540e3 bltz a0,124 <.L9> 164: R_RISCV_BRANCH .L9 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfwrite.c:105 + gulp_size = stream->fs_bufend - stream->fs_bufpos; + 168: 74a8 ld a0,104(s1) + 16a: 70a0 ld s0,96(s1) +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfwrite.c:106 + if (gulp_size != CONFIG_STDIO_BUFFER_SIZE || count < gulp_size) + 16c: 04000793 li a5,64 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfwrite.c:105 + gulp_size = stream->fs_bufend - stream->fs_bufpos; + 170: 8c09 sub s0,s0,a0 + +0000000000000172 <.LVL17>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfwrite.c:106 + if (gulp_size != CONFIG_STDIO_BUFFER_SIZE || count < gulp_size) + 172: 00f41663 bne s0,a5,17e <.L10> 172: R_RISCV_BRANCH .L10 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfwrite.c:106 (discriminator 1) + 176: 03f00793 li a5,63 + 17a: 0527e363 bltu a5,s2,1c0 <.L19> 17a: R_RISCV_BRANCH .L19 + +000000000000017e <.L10>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfwrite.c:108 + if (gulp_size > count) + 17e: 00897363 bgeu s2,s0,184 <.L12> 17e: R_RISCV_BRANCH .L12 + 182: 844a mv s0,s2 + +0000000000000184 <.L12>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfwrite.c:123 + memcpy(stream->fs_bufpos, src, gulp_size); + 184: 8622 mv a2,s0 + 186: 85ce mv a1,s3 + 188: 00000097 auipc ra,0x0 188: R_RISCV_CALL memcpy + 188: R_RISCV_RELAX *ABS* + 18c: 000080e7 jalr ra # 188 <.L12+0x4> + +0000000000000190 <.LVL19>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfwrite.c:124 + stream->fs_bufpos += gulp_size; + 190: 74bc ld a5,104(s1) +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfwrite.c:129 + if (stream->fs_bufpos >= stream->fs_bufend) + 192: 70b8 ld a4,96(s1) +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfwrite.c:119 + count -= gulp_size; + 194: 40890a33 sub s4,s2,s0 + +0000000000000198 <.LVL20>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfwrite.c:124 + stream->fs_bufpos += gulp_size; + 198: 97a2 add a5,a5,s0 + 19a: f4bc sd a5,104(s1) +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfwrite.c:125 + src += gulp_size; + 19c: 944e add s0,s0,s3 + +000000000000019e <.LVL21>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfwrite.c:129 + if (stream->fs_bufpos >= stream->fs_bufend) + 19e: 00e7f863 bgeu a5,a4,1ae <.L13> 19e: R_RISCV_BRANCH .L13 + +00000000000001a2 <.L15>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfwrite.c:141 + if (count >= CONFIG_STDIO_BUFFER_SIZE) + 1a2: 03f00793 li a5,63 + 1a6: 0547f263 bgeu a5,s4,1ea <.L24> 1a6: R_RISCV_BRANCH .L24 + 1aa: 8952 mv s2,s4 + 1ac: a819 j 1c2 <.L11> 1ac: R_RISCV_RVC_JUMP .L11 + +00000000000001ae <.L13>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfwrite.c:133 + int bytes_buffered = lib_fflush_unlocked(stream); + 1ae: 8526 mv a0,s1 + 1b0: 00000097 auipc ra,0x0 1b0: R_RISCV_CALL lib_fflush_unlocked + 1b0: R_RISCV_RELAX *ABS* + 1b4: 000080e7 jalr ra # 1b0 <.L13+0x2> + +00000000000001b8 <.LVL22>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfwrite.c:134 + if (bytes_buffered < 0) + 1b8: 2501 sext.w a0,a0 + 1ba: fe0554e3 bgez a0,1a2 <.L15> 1ba: R_RISCV_BRANCH .L15 + 1be: b79d j 124 <.L9> 1be: R_RISCV_RVC_JUMP .L9 + +00000000000001c0 <.L19>: + 1c0: 844e mv s0,s3 + +00000000000001c2 <.L11>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfwrite.c:143 + if (stream->fs_iofunc.write != NULL) + 1c2: 7c9c ld a5,56(s1) +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfwrite.c:145 + ret = stream->fs_iofunc.write(stream->fs_cookie, src, count); + 1c4: 68a8 ld a0,80(s1) + 1c6: 864a mv a2,s2 + 1c8: 85a2 mv a1,s0 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfwrite.c:143 + if (stream->fs_iofunc.write != NULL) + 1ca: cb91 beqz a5,1de <.L16> 1ca: R_RISCV_RVC_BRANCH .L16 + +00000000000001cc <.LVL25>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfwrite.c:145 + ret = stream->fs_iofunc.write(stream->fs_cookie, src, count); + 1cc: 9782 jalr a5 + +00000000000001ce <.L17>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfwrite.c:159 + src += ret; + 1ce: 942a add s0,s0,a0 + +00000000000001d0 <.LVL27>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfwrite.c:152 + if (ret < 0) + 1d0: f4054ae3 bltz a0,124 <.L9> 1d0: R_RISCV_BRANCH .L9 + +00000000000001d4 <.L18>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfwrite.c:170 + ret = (uintptr_t)src - (uintptr_t)start; + 1d4: 41340533 sub a0,s0,s3 + +00000000000001d8 <.LDL1>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfwrite.c:173 + if (ret < 0) + 1d8: f40547e3 bltz a0,126 <.L5> 1d8: R_RISCV_BRANCH .L5 + 1dc: b70d j fe <.L1> 1dc: R_RISCV_RVC_JUMP .L1 + +00000000000001de <.L16>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfwrite.c:149 + ret = _NX_WRITE((int)(intptr_t)stream->fs_cookie, src, count); + 1de: 2501 sext.w a0,a0 + 1e0: 00000097 auipc ra,0x0 1e0: R_RISCV_CALL write + 1e0: R_RISCV_RELAX *ABS* + 1e4: 000080e7 jalr ra # 1e0 <.L16+0x2> + +00000000000001e8 <.LVL31>: + 1e8: b7dd j 1ce <.L17> 1e8: R_RISCV_RVC_JUMP .L17 + +00000000000001ea <.L24>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfwrite.c:161 + else if (count > 0) + 1ea: fe0a05e3 beqz s4,1d4 <.L18> 1ea: R_RISCV_BRANCH .L18 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfwrite.c:163 + memcpy(stream->fs_bufpos, src, count); + 1ee: 74a8 ld a0,104(s1) + 1f0: 8652 mv a2,s4 + 1f2: 85a2 mv a1,s0 + 1f4: 00000097 auipc ra,0x0 1f4: R_RISCV_CALL memcpy + 1f4: R_RISCV_RELAX *ABS* + 1f8: 000080e7 jalr ra # 1f4 <.L24+0xa> + +00000000000001fc <.LVL33>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfwrite.c:164 + stream->fs_bufpos += count; + 1fc: 74bc ld a5,104(s1) +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfwrite.c:165 + src += count; + 1fe: 01298433 add s0,s3,s2 + +0000000000000202 <.LVL34>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfwrite.c:164 + stream->fs_bufpos += count; + 202: 9a3e add s4,s4,a5 + +0000000000000204 <.LVL35>: + 204: 0744b423 sd s4,104(s1) + +0000000000000208 <.LVL36>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfwrite.c:165 + src += count; + 208: b7f1 j 1d4 <.L18> 208: R_RISCV_RVC_JUMP .L18 + +000000000000020a : +lib_fwrite(): +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfwrite.c:203 + return ret; +} +#endif /* CONFIG_STDIO_DISABLE_BUFFERING */ + +ssize_t lib_fwrite(FAR const void *ptr, size_t count, FAR FILE *stream) +{ + 20a: 7179 addi sp,sp,-48 + 20c: ec26 sd s1,24(sp) + 20e: 84aa mv s1,a0 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfwrite.c:206 + ssize_t ret; + + flockfile(stream); + 210: 8532 mv a0,a2 + +0000000000000212 <.LVL38>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfwrite.c:203 +{ + 212: f406 sd ra,40(sp) + 214: f022 sd s0,32(sp) + 216: e42e sd a1,8(sp) + 218: 8432 mv s0,a2 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfwrite.c:206 + flockfile(stream); + 21a: 00000097 auipc ra,0x0 21a: R_RISCV_CALL flockfile + 21a: R_RISCV_RELAX *ABS* + 21e: 000080e7 jalr ra # 21a <.LVL38+0x8> + +0000000000000222 <.LVL39>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfwrite.c:207 + ret = lib_fwrite_unlocked(ptr, count, stream); + 222: 65a2 ld a1,8(sp) + 224: 8622 mv a2,s0 + 226: 8526 mv a0,s1 + 228: 00000097 auipc ra,0x0 228: R_RISCV_CALL lib_fwrite_unlocked + 228: R_RISCV_RELAX *ABS* + 22c: 000080e7 jalr ra # 228 <.LVL39+0x6> + +0000000000000230 <.LVL40>: + 230: 84aa mv s1,a0 + +0000000000000232 <.LVL41>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfwrite.c:208 + funlockfile(stream); + 232: 8522 mv a0,s0 + 234: 00000097 auipc ra,0x0 234: R_RISCV_CALL funlockfile + 234: R_RISCV_RELAX *ABS* + 238: 000080e7 jalr ra # 234 <.LVL41+0x2> + +000000000000023c <.LVL42>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfwrite.c:211 + + return ret; +} + 23c: 70a2 ld ra,40(sp) + 23e: 7402 ld s0,32(sp) + +0000000000000240 <.LVL43>: + 240: 8526 mv a0,s1 + 242: 64e2 ld s1,24(sp) + +0000000000000244 <.LVL44>: + 244: 6145 addi sp,sp,48 + +0000000000000246 <.LVL45>: + 246: 8082 ret + +0000000000000248 : +lib_fflush_unlocked(): +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfflush.c:67 + ssize_t bytes_written; + ssize_t nbuffer; + + /* Return EBADF if the file is not opened for writing */ + + if ((stream->fs_oflags & O_WROK) == 0) + 248: 0b855783 lhu a5,184(a0) # f8 <.LVL1> + 24c: 8b89 andi a5,a5,2 + 24e: cfbd beqz a5,2cc <.L8> 24e: R_RISCV_RVC_BRANCH .L8 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfflush.c:59 +{ + 250: 1101 addi sp,sp,-32 + 252: e822 sd s0,16(sp) + 254: ec06 sd ra,24(sp) + 256: e426 sd s1,8(sp) + 258: e04a sd s2,0(sp) +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfflush.c:74 + return -EBADF; + } + + /* Check if there is an allocated I/O buffer */ + + if (stream->fs_bufstart == NULL) + 25a: 05853903 ld s2,88(a0) + 25e: 842a mv s0,a0 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfflush.c:78 + { + /* No, then there can be nothing remaining in the buffer. */ + + return 0; + 260: 4501 li a0,0 + +0000000000000262 <.LVL1>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfflush.c:74 + if (stream->fs_bufstart == NULL) + 262: 02090f63 beqz s2,2a0 <.L1> 262: R_RISCV_BRANCH .L1 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfflush.c:83 + } + + /* Make sure that the buffer holds valid data */ + + if (stream->fs_bufpos != stream->fs_bufstart) + 266: 7424 ld s1,104(s0) + 268: 04990e63 beq s2,s1,2c4 <.L3> 268: R_RISCV_BRANCH .L3 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfflush.c:89 + { + /* Make sure that the buffer holds buffered write data. We do not + * support concurrent read/write buffer usage. + */ + + if (stream->fs_bufread != stream->fs_bufstart) + 26c: 783c ld a5,112(s0) + 26e: 02f91963 bne s2,a5,2a0 <.L1> 26e: R_RISCV_BRANCH .L1 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfflush.c:100 + return 0; + } + + /* How many bytes of write data are used in the buffer now */ + + nbuffer = stream->fs_bufpos - stream->fs_bufstart; + 272: 412484b3 sub s1,s1,s2 + +0000000000000276 <.L7>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfflush.c:109 + src = stream->fs_bufstart; + do + { + /* Perform the write */ + + if (stream->fs_iofunc.write != NULL) + 276: 7c1c ld a5,56(s0) +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfflush.c:111 + { + bytes_written = stream->fs_iofunc.write(stream->fs_cookie, + 278: 6828 ld a0,80(s0) + 27a: 8626 mv a2,s1 + 27c: 85ca mv a1,s2 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfflush.c:109 + if (stream->fs_iofunc.write != NULL) + 27e: c79d beqz a5,2ac <.L4> 27e: R_RISCV_RVC_BRANCH .L4 + +0000000000000280 <.LVL3>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfflush.c:111 + bytes_written = stream->fs_iofunc.write(stream->fs_cookie, + 280: 9782 jalr a5 + +0000000000000282 <.L5>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfflush.c:121 + { + bytes_written = _NX_WRITE((int)(intptr_t)stream->fs_cookie, + src, nbuffer); + } + + if (bytes_written < 0) + 282: 02055b63 bgez a0,2b8 <.L6> 282: R_RISCV_BRANCH .L6 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfflush.c:127 + { + /* Write failed. The cause of the failure is in 'errno'. + * returned the negated errno value. + */ + + stream->fs_flags |= __FS_FLAG_ERROR; + 286: 0ba44783 lbu a5,186(s0) + 28a: 0027e793 ori a5,a5,2 + 28e: 0af40d23 sb a5,186(s0) +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfflush.c:128 + return _NX_GETERRVAL(bytes_written); + 292: 00000097 auipc ra,0x0 292: R_RISCV_CALL __errno + 292: R_RISCV_RELAX *ABS* + 296: 000080e7 jalr ra # 292 <.L5+0x10> + +000000000000029a <.LVL5>: + 29a: 4108 lw a0,0(a0) + 29c: 40a0053b negw a0,a0 + +00000000000002a0 <.L1>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfflush.c:168 +#else + /* Return no bytes remaining in the buffer */ + + return 0; +#endif +} + 2a0: 60e2 ld ra,24(sp) + 2a2: 6442 ld s0,16(sp) + +00000000000002a4 <.LVL7>: + 2a4: 64a2 ld s1,8(sp) + 2a6: 6902 ld s2,0(sp) + 2a8: 6105 addi sp,sp,32 + 2aa: 8082 ret + +00000000000002ac <.L4>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfflush.c:117 + bytes_written = _NX_WRITE((int)(intptr_t)stream->fs_cookie, + 2ac: 2501 sext.w a0,a0 + 2ae: 00000097 auipc ra,0x0 2ae: R_RISCV_CALL write + 2ae: R_RISCV_RELAX *ABS* + 2b2: 000080e7 jalr ra # 2ae <.L4+0x2> + +00000000000002b6 <.LVL9>: + 2b6: b7f1 j 282 <.L5> 2b6: R_RISCV_RVC_JUMP .L5 + +00000000000002b8 <.L6>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfflush.c:137 + nbuffer -= bytes_written; + 2b8: 8c89 sub s1,s1,a0 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfflush.c:136 + src += bytes_written; + 2ba: 992a add s2,s2,a0 + +00000000000002bc <.LVL11>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfflush.c:139 + while (nbuffer > 0); + 2bc: fa904de3 bgtz s1,276 <.L7> 2bc: R_RISCV_BRANCH .L7 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfflush.c:143 + stream->fs_bufpos = stream->fs_bufstart; + 2c0: 6c3c ld a5,88(s0) + 2c2: f43c sd a5,104(s0) + +00000000000002c4 <.L3>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfflush.c:161 + return stream->fs_bufpos - stream->fs_bufstart; + 2c4: 7428 ld a0,104(s0) + 2c6: 6c3c ld a5,88(s0) + 2c8: 8d1d sub a0,a0,a5 + 2ca: bfd9 j 2a0 <.L1> 2ca: R_RISCV_RVC_JUMP .L1 + +00000000000002cc <.L8>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfflush.c:69 + return -EBADF; + 2cc: 555d li a0,-9 + +00000000000002ce <.LVL14>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfflush.c:168 +} + 2ce: 8082 ret + +00000000000002d0 : +lib_fflush(): +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfflush.c:171 + +ssize_t lib_fflush(FAR FILE *stream) +{ + 2d0: 1101 addi sp,sp,-32 + 2d2: ec06 sd ra,24(sp) + 2d4: e822 sd s0,16(sp) + 2d6: e426 sd s1,8(sp) + 2d8: 842a mv s0,a0 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfflush.c:176 + ssize_t ret; + + /* Make sure that we have exclusive access to the stream */ + + flockfile(stream); + 2da: 00000097 auipc ra,0x0 2da: R_RISCV_CALL flockfile + 2da: R_RISCV_RELAX *ABS* + 2de: 000080e7 jalr ra # 2da + +00000000000002e2 <.LVL16>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfflush.c:177 + ret = lib_fflush_unlocked(stream); + 2e2: 8522 mv a0,s0 + 2e4: 00000097 auipc ra,0x0 2e4: R_RISCV_CALL lib_fflush_unlocked + 2e4: R_RISCV_RELAX *ABS* + 2e8: 000080e7 jalr ra # 2e4 <.LVL16+0x2> + +00000000000002ec <.LVL17>: + 2ec: 84aa mv s1,a0 + +00000000000002ee <.LVL18>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfflush.c:178 + funlockfile(stream); + 2ee: 8522 mv a0,s0 + 2f0: 00000097 auipc ra,0x0 2f0: R_RISCV_CALL funlockfile + 2f0: R_RISCV_RELAX *ABS* + 2f4: 000080e7 jalr ra # 2f0 <.LVL18+0x2> + +00000000000002f8 <.LVL19>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfflush.c:180 + return ret; +} + 2f8: 60e2 ld ra,24(sp) + 2fa: 6442 ld s0,16(sp) + +00000000000002fc <.LVL20>: + 2fc: 8526 mv a0,s1 + 2fe: 64a2 ld s1,8(sp) + +0000000000000300 <.LVL21>: + 300: 6105 addi sp,sp,32 + 302: 8082 ret + +0000000000000304 : +lib_rdflush_unlocked(): +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_rdflush_unlocked.c:50 + * account for the unread data + * + ****************************************************************************/ + +int lib_rdflush_unlocked(FAR FILE *stream) +{ + 304: 1101 addi sp,sp,-32 + 306: ec06 sd ra,24(sp) +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_rdflush_unlocked.c:55 + int ret; + + /* Sanity checking */ + + if (stream == NULL) + 308: e909 bnez a0,31a <.L2> 308: R_RISCV_RVC_BRANCH .L2 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_rdflush_unlocked.c:57 + { + set_errno(EBADF); + 30a: 00000097 auipc ra,0x0 30a: R_RISCV_CALL __errno + 30a: R_RISCV_RELAX *ABS* + 30e: 000080e7 jalr ra # 30a + +0000000000000312 <.LVL1>: + 312: 47a5 li a5,9 + 314: c11c sw a5,0(a0) + +0000000000000316 <.L11>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_rdflush_unlocked.c:110 + ret = lseek((int)(intptr_t)stream->fs_cookie, rdoffset, SEEK_CUR); + } + + if (ret < 0) + { + return ERROR; + 316: 557d li a0,-1 + 318: a82d j 352 <.L3> 318: R_RISCV_RVC_JUMP .L3 + +000000000000031a <.L2>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_rdflush_unlocked.c:63 + if (stream->fs_bufstart == NULL) + 31a: 6d34 ld a3,88(a0) + 31c: 87aa mv a5,a0 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_rdflush_unlocked.c:65 + return OK; + 31e: 4501 li a0,0 + +0000000000000320 <.LVL3>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_rdflush_unlocked.c:63 + if (stream->fs_bufstart == NULL) + 320: ca8d beqz a3,352 <.L3> 320: R_RISCV_RVC_BRANCH .L3 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_rdflush_unlocked.c:73 + if (stream->fs_bufread != stream->fs_bufstart) + 322: 7bb0 ld a2,112(a5) + 324: 02c68763 beq a3,a2,352 <.L3> 324: R_RISCV_BRANCH .L3 + +0000000000000328 <.LBB3>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_rdflush_unlocked.c:80 + off_t rdoffset = stream->fs_bufread - stream->fs_bufpos + + 328: 77b8 ld a4,104(a5) +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_rdflush_unlocked.c:81 + stream->fs_nungotten; + 32a: 0bb7c583 lbu a1,187(a5) # 8010bb <.LASF105+0x7f492a> +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_rdflush_unlocked.c:89 + stream->fs_bufpos = stream->fs_bufread = stream->fs_bufstart; + 32e: fbb4 sd a3,112(a5) +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_rdflush_unlocked.c:80 + off_t rdoffset = stream->fs_bufread - stream->fs_bufpos + + 330: 9f11 subw a4,a4,a2 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_rdflush_unlocked.c:97 + rdoffset = -rdoffset; + 332: 40b705bb subw a1,a4,a1 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_rdflush_unlocked.c:98 + if (stream->fs_iofunc.seek != NULL) + 336: 63b8 ld a4,64(a5) +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_rdflush_unlocked.c:89 + stream->fs_bufpos = stream->fs_bufread = stream->fs_bufstart; + 338: f7b4 sd a3,104(a5) +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_rdflush_unlocked.c:91 + stream->fs_nungotten = 0; + 33a: 0a078da3 sb zero,187(a5) +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_rdflush_unlocked.c:97 + rdoffset = -rdoffset; + 33e: c62e sw a1,12(sp) +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_rdflush_unlocked.c:100 + ret = stream->fs_iofunc.seek(stream->fs_cookie, &rdoffset, + 340: 6ba8 ld a0,80(a5) + 342: 4605 li a2,1 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_rdflush_unlocked.c:98 + if (stream->fs_iofunc.seek != NULL) + 344: cb11 beqz a4,358 <.L4> 344: R_RISCV_RVC_BRANCH .L4 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_rdflush_unlocked.c:100 + ret = stream->fs_iofunc.seek(stream->fs_cookie, &rdoffset, + 346: 006c addi a1,sp,12 + 348: 9702 jalr a4 + +000000000000034a <.L10>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_rdflush_unlocked.c:105 + ret = lseek((int)(intptr_t)stream->fs_cookie, rdoffset, SEEK_CUR); + 34a: 87aa mv a5,a0 + +000000000000034c <.LBE3>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_rdflush_unlocked.c:114 + } + } + + return OK; + 34c: 4501 li a0,0 + +000000000000034e <.LBB4>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_rdflush_unlocked.c:108 + if (ret < 0) + 34e: fc07c4e3 bltz a5,316 <.L11> 34e: R_RISCV_BRANCH .L11 + +0000000000000352 <.L3>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_rdflush_unlocked.c:115 +} + 352: 60e2 ld ra,24(sp) + 354: 6105 addi sp,sp,32 + 356: 8082 ret + +0000000000000358 <.L4>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_rdflush_unlocked.c:105 + ret = lseek((int)(intptr_t)stream->fs_cookie, rdoffset, SEEK_CUR); + 358: 2501 sext.w a0,a0 + 35a: 00000097 auipc ra,0x0 35a: R_RISCV_CALL lseek + 35a: R_RISCV_RELAX *ABS* + 35e: 000080e7 jalr ra # 35a <.L4+0x2> + +0000000000000362 <.LVL8>: + 362: b7e5 j 34a <.L10> 362: R_RISCV_RVC_JUMP .L10 + +0000000000000364 : +fputs_unlocked(): +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_fputs.c:83 + return nput; +} + +#else +int fputs_unlocked(FAR const IPTR char *s, FAR FILE *stream) +{ + 364: 7179 addi sp,sp,-48 + 366: f022 sd s0,32(sp) + 368: e84a sd s2,16(sp) + 36a: f406 sd ra,40(sp) + 36c: ec26 sd s1,24(sp) + 36e: e44e sd s3,8(sp) +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_fputs.c:90 + + /* If line buffering is enabled, then we will have to output one character + * at a time, checking for a newline character each time. + */ + + if ((stream->fs_flags & __FS_FLAG_LBF) != 0) + 370: 0ba5c783 lbu a5,186(a1) +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_fputs.c:83 +{ + 374: 892a mv s2,a0 + 376: 842e mv s0,a1 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_fputs.c:90 + if ((stream->fs_flags & __FS_FLAG_LBF) != 0) + 378: 8b91 andi a5,a5,4 + 37a: ebbd bnez a5,3f0 <.L11> 37a: R_RISCV_RVC_BRANCH .L11 + +000000000000037c <.LBB10>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_fputs.c:127 + { + int ntowrite; + + /* Get the length of the string. */ + + ntowrite = strlen(s); + 37c: 00000097 auipc ra,0x0 37c: R_RISCV_CALL strlen + 37c: R_RISCV_RELAX *ABS* + 380: 000080e7 jalr ra # 37c <.LBB10> + +0000000000000384 <.LVL1>: + 384: 2501 sext.w a0,a0 + +0000000000000386 <.LVL2>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_fputs.c:128 + if (ntowrite == 0) + 386: c529 beqz a0,3d0 <.L5> 386: R_RISCV_RVC_BRANCH .L5 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_fputs.c:135 + return 0; + } + + /* Write the string */ + + nput = lib_fwrite_unlocked(s, ntowrite, stream); + 388: 85aa mv a1,a0 + 38a: 8622 mv a2,s0 + 38c: 854a mv a0,s2 + +000000000000038e <.LVL3>: + 38e: 00000097 auipc ra,0x0 38e: R_RISCV_CALL lib_fwrite_unlocked + 38e: R_RISCV_RELAX *ABS* + 392: 000080e7 jalr ra # 38e <.LVL3> + +0000000000000396 <.LVL4>: + 396: 85aa mv a1,a0 + 398: 2501 sext.w a0,a0 + +000000000000039a <.LVL5>: + 39a: 00055363 bgez a0,3a0 <.L10> 39a: R_RISCV_BRANCH .L10 + 39e: 55fd li a1,-1 + +00000000000003a0 <.L10>: + 3a0: 0005851b sext.w a0,a1 + +00000000000003a4 <.LVL7>: + 3a4: a035 j 3d0 <.L5> 3a4: R_RISCV_RVC_JUMP .L5 + +00000000000003a6 <.L4>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_fputs.c:108 + if (*s == '\n') + 3a6: 0004c783 lbu a5,0(s1) + 3aa: 03378a63 beq a5,s3,3de <.L6> 3aa: R_RISCV_BRANCH .L6 + +00000000000003ae <.L8>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_fputs.c:96 + for (nput = 0; *s; nput++, s++) + 3ae: 0485 addi s1,s1,1 + +00000000000003b0 <.L2>: + 3b0: 0004c783 lbu a5,0(s1) + 3b4: 4124853b subw a0,s1,s2 + +00000000000003b8 <.LVL11>: + 3b8: cf81 beqz a5,3d0 <.L5> 3b8: R_RISCV_RVC_BRANCH .L5 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_fputs.c:100 + ret = lib_fwrite_unlocked(s, 1, stream); + 3ba: 8622 mv a2,s0 + 3bc: 4585 li a1,1 + 3be: 8526 mv a0,s1 + 3c0: 00000097 auipc ra,0x0 3c0: R_RISCV_CALL lib_fwrite_unlocked + 3c0: R_RISCV_RELAX *ABS* + 3c4: 000080e7 jalr ra # 3c0 <.LVL11+0x8> + +00000000000003c8 <.LVL12>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_fputs.c:101 + if (ret <= 0) + 3c8: 2501 sext.w a0,a0 + 3ca: fca04ee3 bgtz a0,3a6 <.L4> 3ca: R_RISCV_BRANCH .L4 + +00000000000003ce <.L7>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_fputs.c:103 + return EOF; + 3ce: 557d li a0,-1 + +00000000000003d0 <.L5>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_fputs.c:143 + return EOF; + } + } + + return nput; +} + 3d0: 70a2 ld ra,40(sp) + 3d2: 7402 ld s0,32(sp) + +00000000000003d4 <.LVL15>: + 3d4: 64e2 ld s1,24(sp) + 3d6: 6942 ld s2,16(sp) + +00000000000003d8 <.LVL16>: + 3d8: 69a2 ld s3,8(sp) + 3da: 6145 addi sp,sp,48 + 3dc: 8082 ret + +00000000000003de <.L6>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_fputs.c:110 + ret = lib_fflush_unlocked(stream); + 3de: 8522 mv a0,s0 + +00000000000003e0 <.LVL18>: + 3e0: 00000097 auipc ra,0x0 3e0: R_RISCV_CALL lib_fflush_unlocked + 3e0: R_RISCV_RELAX *ABS* + 3e4: 000080e7 jalr ra # 3e0 <.LVL18> + +00000000000003e8 <.LVL19>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_fputs.c:111 + if (ret < 0) + 3e8: 2501 sext.w a0,a0 + 3ea: fc0552e3 bgez a0,3ae <.L8> 3ea: R_RISCV_BRANCH .L8 + 3ee: b7c5 j 3ce <.L7> 3ee: R_RISCV_RVC_JUMP .L7 + +00000000000003f0 <.L11>: + 3f0: 84aa mv s1,a0 + +00000000000003f2 <.LBB19>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_fputs.c:108 + if (*s == '\n') + 3f2: 49a9 li s3,10 + 3f4: bf75 j 3b0 <.L2> 3f4: R_RISCV_RVC_JUMP .L2 + +00000000000003f6 : +fputs(): +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_fputs.c:147 +#endif + +int fputs(FAR const IPTR char *s, FAR FILE *stream) +{ + 3f6: 1101 addi sp,sp,-32 + 3f8: e426 sd s1,8(sp) + 3fa: 84aa mv s1,a0 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_fputs.c:150 + int ret; + + flockfile(stream); + 3fc: 852e mv a0,a1 + +00000000000003fe <.LVL22>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_fputs.c:147 +{ + 3fe: ec06 sd ra,24(sp) + 400: e822 sd s0,16(sp) + 402: 842e mv s0,a1 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_fputs.c:150 + flockfile(stream); + 404: 00000097 auipc ra,0x0 404: R_RISCV_CALL flockfile + 404: R_RISCV_RELAX *ABS* + 408: 000080e7 jalr ra # 404 <.LVL22+0x6> + +000000000000040c <.LVL23>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_fputs.c:151 + ret = fputs_unlocked(s, stream); + 40c: 85a2 mv a1,s0 + 40e: 8526 mv a0,s1 + 410: 00000097 auipc ra,0x0 410: R_RISCV_CALL fputs_unlocked + 410: R_RISCV_RELAX *ABS* + 414: 000080e7 jalr ra # 410 <.LVL23+0x4> + +0000000000000418 <.LVL24>: + 418: 84aa mv s1,a0 + +000000000000041a <.LVL25>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_fputs.c:152 + funlockfile(stream); + 41a: 8522 mv a0,s0 + 41c: 00000097 auipc ra,0x0 41c: R_RISCV_CALL funlockfile + 41c: R_RISCV_RELAX *ABS* + 420: 000080e7 jalr ra # 41c <.LVL25+0x2> + +0000000000000424 <.LVL26>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_fputs.c:155 + + return ret; +} + 424: 60e2 ld ra,24(sp) + 426: 6442 ld s0,16(sp) + +0000000000000428 <.LVL27>: + 428: 8526 mv a0,s1 + 42a: 64a2 ld s1,8(sp) + +000000000000042c <.LVL28>: + 42c: 6105 addi sp,sp,32 + 42e: 8082 ret + +0000000000000430 : +flockfile(): +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfilelock.c:46 + * flockfile + ****************************************************************************/ + +void flockfile(FAR struct file_struct *stream) +{ + nxrmutex_lock(&stream->fs_lock); + 430: 0521 addi a0,a0,8 + +0000000000000432 <.LVL1>: + 432: 00000317 auipc t1,0x0 432: R_RISCV_CALL nxrmutex_lock + 432: R_RISCV_RELAX *ABS* + 436: 00030067 jr t1 # 432 <.LVL1> + +000000000000043a : +ftrylockfile(): +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfilelock.c:55 + * flockfile + ****************************************************************************/ + +int ftrylockfile(FAR struct file_struct *stream) +{ + return nxrmutex_trylock(&stream->fs_lock); + 43a: 0521 addi a0,a0,8 + +000000000000043c <.LVL4>: + 43c: 00000317 auipc t1,0x0 43c: R_RISCV_CALL nxrmutex_trylock + 43c: R_RISCV_RELAX *ABS* + 440: 00030067 jr t1 # 43c <.LVL4> + +0000000000000444 : +funlockfile(): +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfilelock.c:64 + * funlockfile + ****************************************************************************/ + +void funlockfile(FAR struct file_struct *stream) +{ + nxrmutex_unlock(&stream->fs_lock); + 444: 0521 addi a0,a0,8 + +0000000000000446 <.LVL7>: + 446: 00000317 auipc t1,0x0 446: R_RISCV_CALL nxrmutex_unlock + 446: R_RISCV_RELAX *ABS* + 44a: 00030067 jr t1 # 446 <.LVL7> + +000000000000044e : +lib_get_streams(): +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libgetstreams.c:54 + * Assumptions: + * + ****************************************************************************/ + +FAR struct streamlist *lib_get_streams(void) +{ + 44e: 1141 addi sp,sp,-16 + 450: e406 sd ra,8(sp) +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libgetstreams.c:57 + FAR struct task_info_s *info; + + info = task_get_info(); + 452: 00000097 auipc ra,0x0 452: R_RISCV_CALL task_get_info + 452: R_RISCV_RELAX *ABS* + 456: 000080e7 jalr ra # 452 + +000000000000045a <.LVL0>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libgetstreams.c:59 + return &info->ta_streamlist; +} + 45a: 60a2 ld ra,8(sp) + 45c: 02850513 addi a0,a0,40 + +0000000000000460 <.LVL1>: + 460: 0141 addi sp,sp,16 + 462: 8082 ret + +0000000000000464 : +lib_get_stream(): +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libgetstreams.c:71 + * Note: only reserved fd number 0/1/2 is valid. + * + ****************************************************************************/ + +FAR struct file_struct *lib_get_stream(int fd) +{ + 464: 1141 addi sp,sp,-16 + 466: e022 sd s0,0(sp) + 468: e406 sd ra,8(sp) + 46a: 842a mv s0,a0 + +000000000000046c <.LBB7>: +lib_get_streams(): +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libgetstreams.c:57 + info = task_get_info(); + 46c: 00000097 auipc ra,0x0 46c: R_RISCV_CALL task_get_info + 46c: R_RISCV_RELAX *ABS* + 470: 000080e7 jalr ra # 46c <.LBB7> + +0000000000000474 <.LBE7>: +lib_get_stream(): +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libgetstreams.c:72 + return &lib_get_streams()->sl_std[fd]; + 474: 0c000793 li a5,192 + 478: 02f40433 mul s0,s0,a5 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libgetstreams.c:73 +} + 47c: 60a2 ld ra,8(sp) +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libgetstreams.c:72 + return &lib_get_streams()->sl_std[fd]; + 47e: 9522 add a0,a0,s0 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libgetstreams.c:73 +} + 480: 6402 ld s0,0(sp) + 482: 04850513 addi a0,a0,72 + 486: 0141 addi sp,sp,16 + 488: 8082 ret + +000000000000048a : +exit(): +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_exit.c:94 + * Does not return. + * + ****************************************************************************/ + +void exit(int status) +{ + 48a: 1141 addi sp,sp,-16 + 48c: e022 sd s0,0(sp) +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_exit.c:100 + /* Mark the pthread as non-cancelable to avoid additional calls to + * pthread_exit() due to any cancellation point logic that might get + * kicked off by actions taken during pthread_exit processing. + */ + + task_setcancelstate(TASK_CANCEL_DISABLE, NULL); + 48e: 4581 li a1,0 +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_exit.c:94 +{ + 490: 842a mv s0,a0 +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_exit.c:100 + task_setcancelstate(TASK_CANCEL_DISABLE, NULL); + 492: 4505 li a0,1 + +0000000000000494 <.LVL1>: +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_exit.c:94 +{ + 494: e406 sd ra,8(sp) +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_exit.c:100 + task_setcancelstate(TASK_CANCEL_DISABLE, NULL); + 496: 00000097 auipc ra,0x0 496: R_RISCV_CALL task_setcancelstate + 496: R_RISCV_RELAX *ABS* + 49a: 000080e7 jalr ra # 496 <.LVL1+0x2> + +000000000000049e <.LVL2>: +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_exit.c:121 +#endif + +#ifdef CONFIG_FILE_STREAM + /* Flush all streams */ + + fflush(NULL); + 49e: 4501 li a0,0 + 4a0: 00000097 auipc ra,0x0 4a0: R_RISCV_CALL fflush + 4a0: R_RISCV_RELAX *ABS* + 4a4: 000080e7 jalr ra # 4a0 <.LVL2+0x2> + +00000000000004a8 <.LVL3>: +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_exit.c:126 +#endif + + /* Then perform the exit */ + + _exit(status); + 4a8: 8522 mv a0,s0 + 4aa: 00000097 auipc ra,0x0 4aa: R_RISCV_CALL _exit + 4aa: R_RISCV_RELAX *ABS* + 4ae: 000080e7 jalr ra # 4aa <.LVL3+0x2> + +00000000000004b2 : +quick_exit(): +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_exit.c:147 + * Does not return. + * + ****************************************************************************/ + +void quick_exit(int status) +{ + 4b2: 1141 addi sp,sp,-16 + 4b4: e022 sd s0,0(sp) +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_exit.c:153 + /* Mark the pthread as non-cancelable to avoid additional calls to + * pthread_exit() due to any cancellation point logic that might get + * kicked off by actions taken during pthread_exit processing. + */ + + task_setcancelstate(TASK_CANCEL_DISABLE, NULL); + 4b6: 4581 li a1,0 +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_exit.c:147 +{ + 4b8: 842a mv s0,a0 +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_exit.c:153 + task_setcancelstate(TASK_CANCEL_DISABLE, NULL); + 4ba: 4505 li a0,1 + +00000000000004bc <.LVL6>: +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_exit.c:147 +{ + 4bc: e406 sd ra,8(sp) +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_exit.c:153 + task_setcancelstate(TASK_CANCEL_DISABLE, NULL); + 4be: 00000097 auipc ra,0x0 4be: R_RISCV_CALL task_setcancelstate + 4be: R_RISCV_RELAX *ABS* + 4c2: 000080e7 jalr ra # 4be <.LVL6+0x2> + +00000000000004c6 <.LVL7>: +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_exit.c:169 + + atexit_call_exitfuncs(status, true); + + /* Then perform the exit */ + + _exit(status); + 4c6: 8522 mv a0,s0 + 4c8: 00000097 auipc ra,0x0 4c8: R_RISCV_CALL _exit + 4c8: R_RISCV_RELAX *ABS* + 4cc: 000080e7 jalr ra # 4c8 <.LVL7+0x2> + +00000000000004d0 <_Exit>: +_Exit(): +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_exit.c:190 + * Does not return. + * + ****************************************************************************/ + +void _Exit(int status) +{ + 4d0: 1141 addi sp,sp,-16 + 4d2: e406 sd ra,8(sp) +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_exit.c:191 + _exit(status); + 4d4: 00000097 auipc ra,0x0 4d4: R_RISCV_CALL _exit + 4d4: R_RISCV_RELAX *ABS* + 4d8: 000080e7 jalr ra # 4d4 <_Exit+0x4> + +00000000000004dc : +strlen(): +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_strlen.c:40 +#if !defined(CONFIG_LIBC_ARCH_STRLEN) && defined(LIBC_BUILD_STRLEN) +#undef strlen /* See mm/README.txt */ +size_t strlen(FAR const char *s) +{ + FAR const char *sc; + for (sc = s; *sc != '\0'; ++sc); + 4dc: 87aa mv a5,a0 + +00000000000004de <.L2>: +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_strlen.c:40 (discriminator 1) + 4de: 0007c703 lbu a4,0(a5) + 4e2: e701 bnez a4,4ea <.L3> 4e2: R_RISCV_RVC_BRANCH .L3 +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_strlen.c:42 + return sc - s; +} + 4e4: 40a78533 sub a0,a5,a0 + +00000000000004e8 <.LVL2>: + 4e8: 8082 ret + +00000000000004ea <.L3>: +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_strlen.c:40 (discriminator 3) + for (sc = s; *sc != '\0'; ++sc); + 4ea: 0785 addi a5,a5,1 + 4ec: bfcd j 4de <.L2> 4ec: R_RISCV_RVC_JUMP .L2 + +00000000000004ee : +memcpy(): +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_memcpy.c:46 +no_builtin("memcpy") +FAR void *memcpy(FAR void *dest, FAR const void *src, size_t n) +{ + FAR unsigned char *pout = (FAR unsigned char *)dest; + FAR unsigned char *pin = (FAR unsigned char *)src; + while (n-- > 0) + 4ee: 4781 li a5,0 + +00000000000004f0 <.L2>: + 4f0: 00f61363 bne a2,a5,4f6 <.L3> 4f0: R_RISCV_BRANCH .L3 +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_memcpy.c:52 + { + *pout++ = *pin++; + } + + return dest; +} + 4f4: 8082 ret + +00000000000004f6 <.L3>: +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_memcpy.c:48 + *pout++ = *pin++; + 4f6: 00f58733 add a4,a1,a5 + 4fa: 00074683 lbu a3,0(a4) # 24 <_start+0xa> + 4fe: 00f50733 add a4,a0,a5 + 502: 0785 addi a5,a5,1 + +0000000000000504 <.LVL3>: + 504: 00d70023 sb a3,0(a4) + 508: b7e5 j 4f0 <.L2> 508: R_RISCV_RVC_JUMP .L2 + +000000000000050a : +task_get_info(): +/Users/Luppy/ox64/nuttx/libs/libc/tls/task_getinfo.c:50 + * + ****************************************************************************/ + +FAR struct task_info_s *task_get_info(void) +{ + FAR struct tls_info_s *info = tls_get_info(); + 50a: 7779 lui a4,0xffffe + +000000000000050c <.LBB7>: +up_getsp(): +/Users/Luppy/ox64/nuttx/include/arch/irq.h:601 +/* Return the current value of the stack pointer */ + +static inline uintptr_t up_getsp(void) +{ + register uintptr_t sp; + __asm__ + 50c: 878a mv a5,sp + +000000000000050e <.LBE7>: +task_get_info(): +/Users/Luppy/ox64/nuttx/libs/libc/tls/task_getinfo.c:50 + 50e: 8ff9 and a5,a5,a4 + +0000000000000510 <.LVL1>: +/Users/Luppy/ox64/nuttx/libs/libc/tls/task_getinfo.c:53 + + return info->tl_task; +} + 510: 6388 ld a0,0(a5) + 512: 8082 ret + +0000000000000514 <__errno>: +__errno(): +/Users/Luppy/ox64/nuttx/libs/libc/errno/lib_errno.c:59 + +FAR int *__errno(void) +{ + /* Get the TLS tls_info_s structure instance for this thread */ + + FAR struct tls_info_s *tlsinfo = tls_get_info(); + 514: 7779 lui a4,0xffffe + +0000000000000516 <.LBB7>: +up_getsp(): +/Users/Luppy/ox64/nuttx/include/arch/irq.h:601 + 516: 878a mv a5,sp + +0000000000000518 <.LBE7>: +__errno(): +/Users/Luppy/ox64/nuttx/libs/libc/errno/lib_errno.c:59 + 518: 8ff9 and a5,a5,a4 +/Users/Luppy/ox64/nuttx/libs/libc/errno/lib_errno.c:63 + + /* And return the return reference to the error number */ + + return tlsinfo ? &tlsinfo->tl_errno : &g_errno; + 51a: 00000517 auipc a0,0x0 51a: R_RISCV_PCREL_HI20 .LANCHOR0 + 51a: R_RISCV_RELAX *ABS* + 51e: 00050513 mv a0,a0 51e: R_RISCV_PCREL_LO12_I .L0 + 51e: R_RISCV_RELAX *ABS* + 522: c399 beqz a5,528 <.L1> 522: R_RISCV_RVC_BRANCH .L1 +/Users/Luppy/ox64/nuttx/libs/libc/errno/lib_errno.c:63 (discriminator 1) + 524: 00c78513 addi a0,a5,12 + +0000000000000528 <.L1>: +/Users/Luppy/ox64/nuttx/libs/libc/errno/lib_errno.c:64 +} + 528: 8082 ret + +000000000000052a : +nxmutex_init(): +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:84 + * returned on success. A negated errno value is returned on failure. + * + ****************************************************************************/ + +int nxmutex_init(FAR mutex_t *mutex) +{ + 52a: 1101 addi sp,sp,-32 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:85 + int ret = nxsem_init(&mutex->sem, 0, 1); + 52c: 4605 li a2,1 + 52e: 4581 li a1,0 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:84 +{ + 530: e822 sd s0,16(sp) + 532: e426 sd s1,8(sp) + 534: ec06 sd ra,24(sp) + 536: 84aa mv s1,a0 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:85 + int ret = nxsem_init(&mutex->sem, 0, 1); + 538: 00000097 auipc ra,0x0 538: R_RISCV_CALL nxsem_init + 538: R_RISCV_RELAX *ABS* + 53c: 000080e7 jalr ra # 538 + +0000000000000540 <.LVL1>: + 540: 842a mv s0,a0 + +0000000000000542 <.LVL2>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:87 + + if (ret < 0) + 542: 00054a63 bltz a0,556 <.L2> 542: R_RISCV_BRANCH .L2 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:92 + { + return ret; + } + + mutex->holder = NXMUTEX_NO_HOLDER; + 546: 57fd li a5,-1 + 548: cc9c sw a5,24(s1) +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:96 +#ifdef CONFIG_PRIORITY_INHERITANCE + nxsem_set_protocol(&mutex->sem, SEM_TYPE_MUTEX | SEM_PRIO_INHERIT); +#else + nxsem_set_protocol(&mutex->sem, SEM_TYPE_MUTEX); + 54a: 4591 li a1,4 + 54c: 8526 mv a0,s1 + +000000000000054e <.LVL3>: + 54e: 00000097 auipc ra,0x0 54e: R_RISCV_CALL nxsem_set_protocol + 54e: R_RISCV_RELAX *ABS* + 552: 000080e7 jalr ra # 54e <.LVL3> + +0000000000000556 <.L2>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:99 +#endif + return ret; +} + 556: 60e2 ld ra,24(sp) + 558: 8522 mv a0,s0 + 55a: 6442 ld s0,16(sp) + 55c: 64a2 ld s1,8(sp) + +000000000000055e <.LVL5>: + 55e: 6105 addi sp,sp,32 + 560: 8082 ret + +0000000000000562 : +nxmutex_destroy(): +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:121 + * returned on success. A negated errno value is returned on failure. + * + ****************************************************************************/ + +int nxmutex_destroy(FAR mutex_t *mutex) +{ + 562: 1141 addi sp,sp,-16 + 564: e022 sd s0,0(sp) + 566: e406 sd ra,8(sp) + 568: 842a mv s0,a0 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:122 + int ret = nxsem_destroy(&mutex->sem); + 56a: 00000097 auipc ra,0x0 56a: R_RISCV_CALL nxsem_destroy + 56a: R_RISCV_RELAX *ABS* + 56e: 000080e7 jalr ra # 56a + +0000000000000572 <.LVL7>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:124 + + if (ret < 0) + 572: 00054463 bltz a0,57a <.L5> 572: R_RISCV_BRANCH .L5 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:129 + { + return ret; + } + + mutex->holder = NXMUTEX_NO_HOLDER; + 576: 57fd li a5,-1 + 578: cc1c sw a5,24(s0) + +000000000000057a <.L5>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:131 + return ret; +} + 57a: 60a2 ld ra,8(sp) + 57c: 6402 ld s0,0(sp) + +000000000000057e <.LVL8>: + 57e: 0141 addi sp,sp,16 + 580: 8082 ret + +0000000000000582 : +nxmutex_is_hold(): +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:148 + * Return Value: + * + ****************************************************************************/ + +bool nxmutex_is_hold(FAR mutex_t *mutex) +{ + 582: 1141 addi sp,sp,-16 + 584: e406 sd ra,8(sp) + 586: e022 sd s0,0(sp) +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:149 + return mutex->holder == _SCHED_GETTID(); + 588: 4d00 lw s0,24(a0) + 58a: 00000097 auipc ra,0x0 58a: R_RISCV_CALL gettid + 58a: R_RISCV_RELAX *ABS* + 58e: 000080e7 jalr ra # 58a + +0000000000000592 <.LVL10>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:150 +} + 592: 60a2 ld ra,8(sp) +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:149 + return mutex->holder == _SCHED_GETTID(); + 594: 40a40533 sub a0,s0,a0 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:150 +} + 598: 6402 ld s0,0(sp) + 59a: 00153513 seqz a0,a0 + 59e: 0141 addi sp,sp,16 + 5a0: 8082 ret + +00000000000005a2 : +nxmutex_is_locked(): +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:166 + * Return Value: + * + ****************************************************************************/ + +bool nxmutex_is_locked(FAR mutex_t *mutex) +{ + 5a2: 1101 addi sp,sp,-32 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:170 + int cnt; + int ret; + + ret = nxsem_get_value(&mutex->sem, &cnt); + 5a4: 006c addi a1,sp,12 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:166 +{ + 5a6: ec06 sd ra,24(sp) +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:170 + ret = nxsem_get_value(&mutex->sem, &cnt); + 5a8: 00000097 auipc ra,0x0 5a8: R_RISCV_CALL nxsem_get_value + 5a8: R_RISCV_RELAX *ABS* + 5ac: 000080e7 jalr ra # 5a8 + +00000000000005b0 <.LVL12>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:172 + + return ret >= 0 && cnt < 1; + 5b0: 00054863 bltz a0,5c0 <.L11> 5b0: R_RISCV_BRANCH .L11 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:172 (discriminator 1) + 5b4: 4532 lw a0,12(sp) + +00000000000005b6 <.LVL13>: + 5b6: 00152513 slti a0,a0,1 + +00000000000005ba <.L10>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:173 (discriminator 6) +} + 5ba: 60e2 ld ra,24(sp) + 5bc: 6105 addi sp,sp,32 + 5be: 8082 ret + +00000000000005c0 <.L11>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:172 + return ret >= 0 && cnt < 1; + 5c0: 4501 li a0,0 + +00000000000005c2 <.LVL15>: + 5c2: bfe5 j 5ba <.L10> 5c2: R_RISCV_RVC_JUMP .L10 + +00000000000005c4 : +nxmutex_lock(): +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:196 + * Possible returned errors: + * + ****************************************************************************/ + +int nxmutex_lock(FAR mutex_t *mutex) +{ + 5c4: 7179 addi sp,sp,-48 + 5c6: ec26 sd s1,24(sp) + 5c8: f406 sd ra,40(sp) + 5ca: f022 sd s0,32(sp) + 5cc: e84a sd s2,16(sp) + 5ce: e44e sd s3,8(sp) + 5d0: 84aa mv s1,a0 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:199 + int ret; + + DEBUGASSERT(!nxmutex_is_hold(mutex)); + 5d2: 00000097 auipc ra,0x0 5d2: R_RISCV_CALL nxmutex_is_hold + 5d2: R_RISCV_RELAX *ABS* + 5d6: 000080e7 jalr ra # 5d2 + +00000000000005da <.LVL17>: + 5da: e90d bnez a0,60c <.L20> 5da: R_RISCV_RVC_BRANCH .L20 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:210 + if (ret >= 0) + { + mutex->holder = _SCHED_GETTID(); + break; + } + else if (ret != -EINTR && ret != -ECANCELED) + 5dc: 59f1 li s3,-4 + 5de: f8300913 li s2,-125 + +00000000000005e2 <.L18>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:204 (discriminator 2) + ret = nxsem_wait(&mutex->sem); + 5e2: 8526 mv a0,s1 + 5e4: 00000097 auipc ra,0x0 5e4: R_RISCV_CALL nxsem_wait + 5e4: R_RISCV_RELAX *ABS* + 5e8: 000080e7 jalr ra # 5e4 <.L18+0x2> + +00000000000005ec <.LVL18>: + 5ec: 842a mv s0,a0 + +00000000000005ee <.LVL19>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:205 (discriminator 2) + if (ret >= 0) + 5ee: 02054d63 bltz a0,628 <.L15> 5ee: R_RISCV_BRANCH .L15 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:207 + mutex->holder = _SCHED_GETTID(); + 5f2: 00000097 auipc ra,0x0 5f2: R_RISCV_CALL gettid + 5f2: R_RISCV_RELAX *ABS* + 5f6: 000080e7 jalr ra # 5f2 <.LVL19+0x4> + +00000000000005fa <.LVL20>: + 5fa: cc88 sw a0,24(s1) + +00000000000005fc <.L16>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:217 + break; + } + } + + return ret; +} + 5fc: 70a2 ld ra,40(sp) + 5fe: 8522 mv a0,s0 + 600: 7402 ld s0,32(sp) + 602: 64e2 ld s1,24(sp) + +0000000000000604 <.LVL21>: + 604: 6942 ld s2,16(sp) + 606: 69a2 ld s3,8(sp) + 608: 6145 addi sp,sp,48 + 60a: 8082 ret + +000000000000060c <.L20>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:199 + DEBUGASSERT(!nxmutex_is_hold(mutex)); + 60c: 00000617 auipc a2,0x0 60c: R_RISCV_PCREL_HI20 .LC0 + 60c: R_RISCV_RELAX *ABS* + 610: 00060613 mv a2,a2 610: R_RISCV_PCREL_LO12_I .L0 + 610: R_RISCV_RELAX *ABS* + 614: 0c700593 li a1,199 + 618: 00000517 auipc a0,0x0 618: R_RISCV_PCREL_HI20 .LC1 + 618: R_RISCV_RELAX *ABS* + 61c: 00050513 mv a0,a0 61c: R_RISCV_PCREL_LO12_I .L0 + 61c: R_RISCV_RELAX *ABS* + 620: 00000097 auipc ra,0x0 620: R_RISCV_CALL __assert + 620: R_RISCV_RELAX *ABS* + 624: 000080e7 jalr ra # 620 <.L20+0x14> + +0000000000000628 <.L15>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:210 + else if (ret != -EINTR && ret != -ECANCELED) + 628: fb350de3 beq a0,s3,5e2 <.L18> 628: R_RISCV_BRANCH .L18 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:210 (discriminator 1) + 62c: fb250be3 beq a0,s2,5e2 <.L18> 62c: R_RISCV_BRANCH .L18 + 630: b7f1 j 5fc <.L16> 630: R_RISCV_RVC_JUMP .L16 + +0000000000000632 : +nxmutex_trylock(): +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:241 + * -EAGAIN - The mutex is not available. + * + ****************************************************************************/ + +int nxmutex_trylock(FAR mutex_t *mutex) +{ + 632: 1101 addi sp,sp,-32 + 634: e426 sd s1,8(sp) + 636: ec06 sd ra,24(sp) + 638: e822 sd s0,16(sp) + 63a: 84aa mv s1,a0 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:244 + int ret; + + DEBUGASSERT(!nxmutex_is_hold(mutex)); + 63c: 00000097 auipc ra,0x0 63c: R_RISCV_CALL nxmutex_is_hold + 63c: R_RISCV_RELAX *ABS* + 640: 000080e7 jalr ra # 63c + +0000000000000644 <.LVL25>: + 644: cd19 beqz a0,662 <.L23> 644: R_RISCV_RVC_BRANCH .L23 + +0000000000000646 <.LBB20>: + 646: 00000617 auipc a2,0x0 646: R_RISCV_PCREL_HI20 .LC0 + 646: R_RISCV_RELAX *ABS* + 64a: 00060613 mv a2,a2 64a: R_RISCV_PCREL_LO12_I .L0 + 64a: R_RISCV_RELAX *ABS* + 64e: 0f400593 li a1,244 + 652: 00000517 auipc a0,0x0 652: R_RISCV_PCREL_HI20 .LC1 + 652: R_RISCV_RELAX *ABS* + 656: 00050513 mv a0,a0 656: R_RISCV_PCREL_LO12_I .L0 + 656: R_RISCV_RELAX *ABS* + 65a: 00000097 auipc ra,0x0 65a: R_RISCV_CALL __assert + 65a: R_RISCV_RELAX *ABS* + 65e: 000080e7 jalr ra # 65a <.LBB20+0x14> + +0000000000000662 <.L23>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:245 (discriminator 2) + ret = nxsem_trywait(&mutex->sem); + 662: 8526 mv a0,s1 + 664: 00000097 auipc ra,0x0 664: R_RISCV_CALL nxsem_trywait + 664: R_RISCV_RELAX *ABS* + 668: 000080e7 jalr ra # 664 <.L23+0x2> + +000000000000066c <.LVL28>: + 66c: 842a mv s0,a0 + +000000000000066e <.LVL29>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:246 (discriminator 2) + if (ret < 0) + 66e: 00054763 bltz a0,67c <.L24> 66e: R_RISCV_BRANCH .L24 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:251 + { + return ret; + } + + mutex->holder = _SCHED_GETTID(); + 672: 00000097 auipc ra,0x0 672: R_RISCV_CALL gettid + 672: R_RISCV_RELAX *ABS* + 676: 000080e7 jalr ra # 672 <.LVL29+0x4> + +000000000000067a <.LVL30>: + 67a: cc88 sw a0,24(s1) + +000000000000067c <.L24>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:253 + return ret; +} + 67c: 60e2 ld ra,24(sp) + 67e: 8522 mv a0,s0 + 680: 6442 ld s0,16(sp) + 682: 64a2 ld s1,8(sp) + +0000000000000684 <.LVL31>: + 684: 6105 addi sp,sp,32 + 686: 8082 ret + +0000000000000688 : +nxmutex_timedlock(): +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:280 + * EDEADLK A deadlock condition was detected. + * + ****************************************************************************/ + +int nxmutex_timedlock(FAR mutex_t *mutex, unsigned int timeout) +{ + 688: 711d addi sp,sp,-96 + 68a: e8a2 sd s0,80(sp) + 68c: e4a6 sd s1,72(sp) + 68e: 842e mv s0,a1 + 690: 84aa mv s1,a0 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:286 + int ret; + struct timespec now; + struct timespec delay; + struct timespec rqtp; + + clock_gettime(CLOCK_MONOTONIC, &now); + 692: 858a mv a1,sp + +0000000000000694 <.LVL33>: + 694: 4505 li a0,1 + +0000000000000696 <.LVL34>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:280 +{ + 696: ec86 sd ra,88(sp) + 698: e0ca sd s2,64(sp) + 69a: fc4e sd s3,56(sp) +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:286 + clock_gettime(CLOCK_MONOTONIC, &now); + 69c: 00000097 auipc ra,0x0 69c: R_RISCV_CALL clock_gettime + 69c: R_RISCV_RELAX *ABS* + 6a0: 000080e7 jalr ra # 69c <.LVL34+0x6> + +00000000000006a4 <.LVL35>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:287 + clock_ticks2time(MSEC2TICK(timeout), &delay); + 6a4: 080c addi a1,sp,16 + 6a6: 8522 mv a0,s0 + 6a8: 00000097 auipc ra,0x0 6a8: R_RISCV_CALL clock_ticks2time + 6a8: R_RISCV_RELAX *ABS* + 6ac: 000080e7 jalr ra # 6a8 <.LVL35+0x4> + +00000000000006b0 <.LVL36>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:288 + clock_timespec_add(&now, &delay, &rqtp); + 6b0: 1010 addi a2,sp,32 + 6b2: 080c addi a1,sp,16 + 6b4: 850a mv a0,sp + 6b6: 00000097 auipc ra,0x0 6b6: R_RISCV_CALL clock_timespec_add + 6b6: R_RISCV_RELAX *ABS* + 6ba: 000080e7 jalr ra # 6b6 <.LVL36+0x6> + +00000000000006be <.LVL37>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:296 + + do + { + ret = nxsem_clockwait(&mutex->sem, CLOCK_MONOTONIC, &rqtp); + } + while (ret == -EINTR || ret == -ECANCELED); + 6be: 59f1 li s3,-4 + 6c0: f8300913 li s2,-125 + +00000000000006c4 <.L29>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:294 (discriminator 3) + ret = nxsem_clockwait(&mutex->sem, CLOCK_MONOTONIC, &rqtp); + 6c4: 1010 addi a2,sp,32 + 6c6: 4585 li a1,1 + 6c8: 8526 mv a0,s1 + 6ca: 00000097 auipc ra,0x0 6ca: R_RISCV_CALL nxsem_clockwait + 6ca: R_RISCV_RELAX *ABS* + 6ce: 000080e7 jalr ra # 6ca <.L29+0x6> + +00000000000006d2 <.LVL38>: + 6d2: 842a mv s0,a0 + +00000000000006d4 <.LVL39>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:296 (discriminator 3) + while (ret == -EINTR || ret == -ECANCELED); + 6d4: ff3508e3 beq a0,s3,6c4 <.L29> 6d4: R_RISCV_BRANCH .L29 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:296 (discriminator 2) + 6d8: ff2506e3 beq a0,s2,6c4 <.L29> 6d8: R_RISCV_BRANCH .L29 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:298 + + if (ret >= 0) + 6dc: 00054763 bltz a0,6ea <.L28> 6dc: R_RISCV_BRANCH .L28 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:300 + { + mutex->holder = _SCHED_GETTID(); + 6e0: 00000097 auipc ra,0x0 6e0: R_RISCV_CALL gettid + 6e0: R_RISCV_RELAX *ABS* + 6e4: 000080e7 jalr ra # 6e0 <.LVL39+0xc> + +00000000000006e8 <.LVL40>: + 6e8: cc88 sw a0,24(s1) + +00000000000006ea <.L28>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:304 + } + + return ret; +} + 6ea: 60e6 ld ra,88(sp) + 6ec: 8522 mv a0,s0 + 6ee: 6446 ld s0,80(sp) + 6f0: 64a6 ld s1,72(sp) + +00000000000006f2 <.LVL41>: + 6f2: 6906 ld s2,64(sp) + 6f4: 79e2 ld s3,56(sp) + 6f6: 6125 addi sp,sp,96 + 6f8: 8082 ret + +00000000000006fa : +nxmutex_unlock(): +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:327 + * This function may be called from an interrupt handler. + * + ****************************************************************************/ + +int nxmutex_unlock(FAR mutex_t *mutex) +{ + 6fa: 1101 addi sp,sp,-32 + 6fc: ec06 sd ra,24(sp) + 6fe: e822 sd s0,16(sp) + 700: e426 sd s1,8(sp) +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:330 + int ret; + + if (nxmutex_is_reset(mutex)) + 702: 4d18 lw a4,24(a0) + 704: 57f9 li a5,-2 + 706: 04f70b63 beq a4,a5,75c <.L34> 706: R_RISCV_BRANCH .L34 + 70a: 842a mv s0,a0 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:335 + { + return OK; + } + + DEBUGASSERT(nxmutex_is_hold(mutex)); + 70c: 00000097 auipc ra,0x0 70c: R_RISCV_CALL nxmutex_is_hold + 70c: R_RISCV_RELAX *ABS* + 710: 000080e7 jalr ra # 70c + +0000000000000714 <.LVL43>: + 714: ed19 bnez a0,732 <.L33> 714: R_RISCV_RVC_BRANCH .L33 + +0000000000000716 <.LBB30>: + 716: 00000617 auipc a2,0x0 716: R_RISCV_PCREL_HI20 .LC2 + 716: R_RISCV_RELAX *ABS* + 71a: 00060613 mv a2,a2 71a: R_RISCV_PCREL_LO12_I .L0 + 71a: R_RISCV_RELAX *ABS* + 71e: 14f00593 li a1,335 + 722: 00000517 auipc a0,0x0 722: R_RISCV_PCREL_HI20 .LC1 + 722: R_RISCV_RELAX *ABS* + 726: 00050513 mv a0,a0 726: R_RISCV_PCREL_LO12_I .L0 + 726: R_RISCV_RELAX *ABS* + 72a: 00000097 auipc ra,0x0 72a: R_RISCV_CALL __assert + 72a: R_RISCV_RELAX *ABS* + 72e: 000080e7 jalr ra # 72a <.LBB30+0x14> + +0000000000000732 <.L33>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:337 (discriminator 2) + + mutex->holder = NXMUTEX_NO_HOLDER; + 732: 57fd li a5,-1 + 734: cc1c sw a5,24(s0) +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:339 (discriminator 2) + + ret = nxsem_post(&mutex->sem); + 736: 8522 mv a0,s0 + 738: 00000097 auipc ra,0x0 738: R_RISCV_CALL nxsem_post + 738: R_RISCV_RELAX *ABS* + 73c: 000080e7 jalr ra # 738 <.L33+0x6> + +0000000000000740 <.LVL46>: + 740: 84aa mv s1,a0 + +0000000000000742 <.LVL47>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:340 (discriminator 2) + if (ret < 0) + 742: 00055763 bgez a0,750 <.L32> 742: R_RISCV_BRANCH .L32 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:342 + { + mutex->holder = _SCHED_GETTID(); + 746: 00000097 auipc ra,0x0 746: R_RISCV_CALL gettid + 746: R_RISCV_RELAX *ABS* + 74a: 000080e7 jalr ra # 746 <.LVL47+0x4> + +000000000000074e <.LVL48>: + 74e: cc08 sw a0,24(s0) + +0000000000000750 <.L32>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:346 + } + + return ret; +} + 750: 60e2 ld ra,24(sp) + 752: 6442 ld s0,16(sp) + 754: 8526 mv a0,s1 + 756: 64a2 ld s1,8(sp) + 758: 6105 addi sp,sp,32 + 75a: 8082 ret + +000000000000075c <.L34>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:332 + return OK; + 75c: 4481 li s1,0 + 75e: bfcd j 750 <.L32> 75e: R_RISCV_RVC_JUMP .L32 + +0000000000000760 : +nxmutex_breaklock(): +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:387 + * Possible returned errors: + * + ****************************************************************************/ + +int nxmutex_breaklock(FAR mutex_t *mutex, FAR bool *locked) +{ + 760: 1101 addi sp,sp,-32 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:390 + int ret = OK; + + *locked = false; + 762: 00058023 sb zero,0(a1) +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:387 +{ + 766: e822 sd s0,16(sp) + 768: e426 sd s1,8(sp) + 76a: ec06 sd ra,24(sp) + 76c: 84aa mv s1,a0 + 76e: 842e mv s0,a1 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:391 + if (nxmutex_is_hold(mutex)) + 770: 00000097 auipc ra,0x0 770: R_RISCV_CALL nxmutex_is_hold + 770: R_RISCV_RELAX *ABS* + 774: 000080e7 jalr ra # 770 + +0000000000000778 <.LVL52>: + 778: c105 beqz a0,798 <.L38> 778: R_RISCV_RVC_BRANCH .L38 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:393 + { + ret = nxmutex_unlock(mutex); + 77a: 8526 mv a0,s1 + 77c: 00000097 auipc ra,0x0 77c: R_RISCV_CALL nxmutex_unlock + 77c: R_RISCV_RELAX *ABS* + 780: 000080e7 jalr ra # 77c <.LVL52+0x4> + +0000000000000784 <.LVL53>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:394 + if (ret >= 0) + 784: 00054563 bltz a0,78e <.L37> 784: R_RISCV_BRANCH .L37 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:396 + { + *locked = true; + 788: 4785 li a5,1 + 78a: 00f40023 sb a5,0(s0) + +000000000000078e <.L37>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:401 + } + } + + return ret; +} + 78e: 60e2 ld ra,24(sp) + 790: 6442 ld s0,16(sp) + +0000000000000792 <.LVL55>: + 792: 64a2 ld s1,8(sp) + +0000000000000794 <.LVL56>: + 794: 6105 addi sp,sp,32 + 796: 8082 ret + +0000000000000798 <.L38>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:388 + int ret = OK; + 798: 4501 li a0,0 + 79a: bfd5 j 78e <.L37> 79a: R_RISCV_RVC_JUMP .L37 + +000000000000079c : +nxmutex_restorelock(): +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:422 + * + ****************************************************************************/ + +int nxmutex_restorelock(FAR mutex_t *mutex, bool locked) +{ + return locked ? nxmutex_lock(mutex) : OK; + 79c: c589 beqz a1,7a6 <.L41> 79c: R_RISCV_RVC_BRANCH .L41 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:422 (discriminator 1) + 79e: 00000317 auipc t1,0x0 79e: R_RISCV_CALL nxmutex_lock + 79e: R_RISCV_RELAX *ABS* + 7a2: 00030067 jr t1 # 79e + +00000000000007a6 <.L41>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:423 (discriminator 4) +} + 7a6: 4501 li a0,0 + +00000000000007a8 <.LVL60>: + 7a8: 8082 ret + +00000000000007aa : +nxrmutex_init(): +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:447 + * + ****************************************************************************/ + +int nxrmutex_init(FAR rmutex_t *rmutex) +{ + rmutex->count = 0; + 7aa: 02052023 sw zero,32(a0) # 742 <.LVL47> +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:448 + return nxmutex_init(&rmutex->mutex); + 7ae: 00000317 auipc t1,0x0 7ae: R_RISCV_CALL nxmutex_init + 7ae: R_RISCV_RELAX *ABS* + 7b2: 00030067 jr t1 # 7ae + +00000000000007b6 : +nxrmutex_destroy(): +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:468 + * returned on success. A negated errno value is returned on failure. + * + ****************************************************************************/ + +int nxrmutex_destroy(FAR rmutex_t *rmutex) +{ + 7b6: 1141 addi sp,sp,-16 + 7b8: e022 sd s0,0(sp) + 7ba: e406 sd ra,8(sp) + 7bc: 842a mv s0,a0 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:469 + int ret = nxmutex_destroy(&rmutex->mutex); + 7be: 00000097 auipc ra,0x0 7be: R_RISCV_CALL nxmutex_destroy + 7be: R_RISCV_RELAX *ABS* + 7c2: 000080e7 jalr ra # 7be + +00000000000007c6 <.LVL64>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:471 + + if (ret >= 0) + 7c6: 00054463 bltz a0,7ce <.L44> 7c6: R_RISCV_BRANCH .L44 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:473 + { + rmutex->count = 0; + 7ca: 02042023 sw zero,32(s0) + +00000000000007ce <.L44>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:477 + } + + return ret; +} + 7ce: 60a2 ld ra,8(sp) + 7d0: 6402 ld s0,0(sp) + +00000000000007d2 <.LVL65>: + 7d2: 0141 addi sp,sp,16 + 7d4: 8082 ret + +00000000000007d6 : +nxrmutex_is_hold(): +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:495 + * + ****************************************************************************/ + +bool nxrmutex_is_hold(FAR rmutex_t *rmutex) +{ + return nxmutex_is_hold(&rmutex->mutex); + 7d6: 00000317 auipc t1,0x0 7d6: R_RISCV_CALL nxmutex_is_hold + 7d6: R_RISCV_RELAX *ABS* + 7da: 00030067 jr t1 # 7d6 + +00000000000007de : +nxrmutex_is_locked(): +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:514 + * + ****************************************************************************/ + +bool nxrmutex_is_locked(FAR rmutex_t *rmutex) +{ + return nxmutex_is_locked(&rmutex->mutex); + 7de: 00000317 auipc t1,0x0 7de: R_RISCV_CALL nxmutex_is_locked + 7de: R_RISCV_RELAX *ABS* + 7e2: 00030067 jr t1 # 7de + +00000000000007e6 : +nxrmutex_lock(): +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:537 + * Possible returned errors: + * + ****************************************************************************/ + +int nxrmutex_lock(FAR rmutex_t *rmutex) +{ + 7e6: 1141 addi sp,sp,-16 + 7e8: e022 sd s0,0(sp) + 7ea: e406 sd ra,8(sp) + 7ec: 842a mv s0,a0 + +00000000000007ee <.LBB32>: +nxrmutex_is_hold(): +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:495 + return nxmutex_is_hold(&rmutex->mutex); + 7ee: 00000097 auipc ra,0x0 7ee: R_RISCV_CALL nxmutex_is_hold + 7ee: R_RISCV_RELAX *ABS* + 7f2: 000080e7 jalr ra # 7ee <.LBB32> + +00000000000007f6 <.LVL72>: + 7f6: 87aa mv a5,a0 + 7f8: 4501 li a0,0 + +00000000000007fa <.LBE32>: +nxrmutex_lock(): +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:540 + int ret = OK; + + if (!nxrmutex_is_hold(rmutex)) + 7fa: eb81 bnez a5,80a <.L49> 7fa: R_RISCV_RVC_BRANCH .L49 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:542 + { + ret = nxmutex_lock(&rmutex->mutex); + 7fc: 8522 mv a0,s0 + 7fe: 00000097 auipc ra,0x0 7fe: R_RISCV_CALL nxmutex_lock + 7fe: R_RISCV_RELAX *ABS* + 802: 000080e7 jalr ra # 7fe <.LBE32+0x4> + +0000000000000806 <.LVL73>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:545 + } + + if (ret >= 0) + 806: 02054663 bltz a0,832 <.L50> 806: R_RISCV_BRANCH .L50 + +000000000000080a <.L49>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:547 + { + DEBUGASSERT(rmutex->count < UINT_MAX); + 80a: 501c lw a5,32(s0) + 80c: 577d li a4,-1 + 80e: 02e79063 bne a5,a4,82e <.L51> 80e: R_RISCV_BRANCH .L51 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:547 (discriminator 1) + 812: 00000617 auipc a2,0x0 812: R_RISCV_PCREL_HI20 .LC3 + 812: R_RISCV_RELAX *ABS* + 816: 00060613 mv a2,a2 816: R_RISCV_PCREL_LO12_I .L0 + 816: R_RISCV_RELAX *ABS* + 81a: 22300593 li a1,547 + 81e: 00000517 auipc a0,0x0 81e: R_RISCV_PCREL_HI20 .LC1 + 81e: R_RISCV_RELAX *ABS* + 822: 00050513 mv a0,a0 822: R_RISCV_PCREL_LO12_I .L0 + 822: R_RISCV_RELAX *ABS* + 826: 00000097 auipc ra,0x0 826: R_RISCV_CALL __assert + 826: R_RISCV_RELAX *ABS* + 82a: 000080e7 jalr ra # 826 <.L49+0x1c> + +000000000000082e <.L51>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:548 (discriminator 2) + ++rmutex->count; + 82e: 2785 addiw a5,a5,1 + 830: d01c sw a5,32(s0) + +0000000000000832 <.L50>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:552 + } + + return ret; +} + 832: 60a2 ld ra,8(sp) + 834: 6402 ld s0,0(sp) + +0000000000000836 <.LVL76>: + 836: 0141 addi sp,sp,16 + 838: 8082 ret + +000000000000083a : +nxrmutex_trylock(): +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:578 + * -EAGAIN - The recursive mutex is not available. + * + ****************************************************************************/ + +int nxrmutex_trylock(FAR rmutex_t *rmutex) +{ + 83a: 1141 addi sp,sp,-16 + 83c: e022 sd s0,0(sp) + 83e: e406 sd ra,8(sp) + 840: 842a mv s0,a0 + +0000000000000842 <.LBB34>: +nxrmutex_is_hold(): +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:495 + return nxmutex_is_hold(&rmutex->mutex); + 842: 00000097 auipc ra,0x0 842: R_RISCV_CALL nxmutex_is_hold + 842: R_RISCV_RELAX *ABS* + 846: 000080e7 jalr ra # 842 <.LBB34> + +000000000000084a <.LVL79>: + 84a: 87aa mv a5,a0 + 84c: 4501 li a0,0 + +000000000000084e <.LBE34>: +nxrmutex_trylock(): +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:581 + int ret = OK; + + if (!nxrmutex_is_hold(rmutex)) + 84e: eb81 bnez a5,85e <.L56> 84e: R_RISCV_RVC_BRANCH .L56 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:583 + { + ret = nxmutex_trylock(&rmutex->mutex); + 850: 8522 mv a0,s0 + 852: 00000097 auipc ra,0x0 852: R_RISCV_CALL nxmutex_trylock + 852: R_RISCV_RELAX *ABS* + 856: 000080e7 jalr ra # 852 <.LBE34+0x4> + +000000000000085a <.LVL80>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:586 + } + + if (ret >= 0) + 85a: 02054663 bltz a0,886 <.L57> 85a: R_RISCV_BRANCH .L57 + +000000000000085e <.L56>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:588 + { + DEBUGASSERT(rmutex->count < UINT_MAX); + 85e: 501c lw a5,32(s0) + 860: 577d li a4,-1 + 862: 02e79063 bne a5,a4,882 <.L58> 862: R_RISCV_BRANCH .L58 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:588 (discriminator 1) + 866: 00000617 auipc a2,0x0 866: R_RISCV_PCREL_HI20 .LC3 + 866: R_RISCV_RELAX *ABS* + 86a: 00060613 mv a2,a2 86a: R_RISCV_PCREL_LO12_I .L0 + 86a: R_RISCV_RELAX *ABS* + 86e: 24c00593 li a1,588 + 872: 00000517 auipc a0,0x0 872: R_RISCV_PCREL_HI20 .LC1 + 872: R_RISCV_RELAX *ABS* + 876: 00050513 mv a0,a0 876: R_RISCV_PCREL_LO12_I .L0 + 876: R_RISCV_RELAX *ABS* + 87a: 00000097 auipc ra,0x0 87a: R_RISCV_CALL __assert + 87a: R_RISCV_RELAX *ABS* + 87e: 000080e7 jalr ra # 87a <.L56+0x1c> + +0000000000000882 <.L58>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:589 (discriminator 2) + ++rmutex->count; + 882: 2785 addiw a5,a5,1 + 884: d01c sw a5,32(s0) + +0000000000000886 <.L57>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:593 + } + + return ret; +} + 886: 60a2 ld ra,8(sp) + 888: 6402 ld s0,0(sp) + +000000000000088a <.LVL83>: + 88a: 0141 addi sp,sp,16 + 88c: 8082 ret + +000000000000088e : +nxrmutex_timedlock(): +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:621 + * ECANCELED May be returned if the thread is canceled while waiting. + * + ****************************************************************************/ + +int nxrmutex_timedlock(FAR rmutex_t *rmutex, unsigned int timeout) +{ + 88e: 1101 addi sp,sp,-32 + 890: e822 sd s0,16(sp) + 892: e42e sd a1,8(sp) + 894: ec06 sd ra,24(sp) + 896: 842a mv s0,a0 + +0000000000000898 <.LBB36>: +nxrmutex_is_hold(): +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:495 + return nxmutex_is_hold(&rmutex->mutex); + 898: 00000097 auipc ra,0x0 898: R_RISCV_CALL nxmutex_is_hold + 898: R_RISCV_RELAX *ABS* + 89c: 000080e7 jalr ra # 898 <.LBB36> + +00000000000008a0 <.LVL86>: + 8a0: 87aa mv a5,a0 + +00000000000008a2 <.LBE36>: +nxrmutex_timedlock(): +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:624 + int ret = OK; + + if (!nxrmutex_is_hold(rmutex)) + 8a2: 65a2 ld a1,8(sp) + 8a4: 4501 li a0,0 + 8a6: eb81 bnez a5,8b6 <.L63> 8a6: R_RISCV_RVC_BRANCH .L63 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:626 + { + ret = nxmutex_timedlock(&rmutex->mutex, timeout); + 8a8: 8522 mv a0,s0 + 8aa: 00000097 auipc ra,0x0 8aa: R_RISCV_CALL nxmutex_timedlock + 8aa: R_RISCV_RELAX *ABS* + 8ae: 000080e7 jalr ra # 8aa <.LBE36+0x8> + +00000000000008b2 <.LVL87>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:629 + } + + if (ret >= 0) + 8b2: 02054663 bltz a0,8de <.L64> 8b2: R_RISCV_BRANCH .L64 + +00000000000008b6 <.L63>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:631 + { + DEBUGASSERT(rmutex->count < UINT_MAX); + 8b6: 501c lw a5,32(s0) + 8b8: 577d li a4,-1 + 8ba: 02e79063 bne a5,a4,8da <.L65> 8ba: R_RISCV_BRANCH .L65 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:631 (discriminator 1) + 8be: 00000617 auipc a2,0x0 8be: R_RISCV_PCREL_HI20 .LC3 + 8be: R_RISCV_RELAX *ABS* + 8c2: 00060613 mv a2,a2 8c2: R_RISCV_PCREL_LO12_I .L0 + 8c2: R_RISCV_RELAX *ABS* + 8c6: 27700593 li a1,631 + 8ca: 00000517 auipc a0,0x0 8ca: R_RISCV_PCREL_HI20 .LC1 + 8ca: R_RISCV_RELAX *ABS* + 8ce: 00050513 mv a0,a0 8ce: R_RISCV_PCREL_LO12_I .L0 + 8ce: R_RISCV_RELAX *ABS* + 8d2: 00000097 auipc ra,0x0 8d2: R_RISCV_CALL __assert + 8d2: R_RISCV_RELAX *ABS* + 8d6: 000080e7 jalr ra # 8d2 <.L63+0x1c> + +00000000000008da <.L65>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:632 (discriminator 2) + ++rmutex->count; + 8da: 2785 addiw a5,a5,1 + 8dc: d01c sw a5,32(s0) + +00000000000008de <.L64>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:636 + } + + return ret; +} + 8de: 60e2 ld ra,24(sp) + 8e0: 6442 ld s0,16(sp) + +00000000000008e2 <.LVL90>: + 8e2: 6105 addi sp,sp,32 + 8e4: 8082 ret + +00000000000008e6 : +nxrmutex_unlock(): +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:660 + * This function may be called from an interrupt handler. + * + ****************************************************************************/ + +int nxrmutex_unlock(FAR rmutex_t *rmutex) +{ + 8e6: 1141 addi sp,sp,-16 + 8e8: e406 sd ra,8(sp) + 8ea: e022 sd s0,0(sp) +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:663 + int ret = OK; + + DEBUGASSERT(rmutex->count > 0); + 8ec: 511c lw a5,32(a0) + 8ee: ef99 bnez a5,90c <.L70> 8ee: R_RISCV_RVC_BRANCH .L70 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:663 (discriminator 1) + 8f0: 00000617 auipc a2,0x0 8f0: R_RISCV_PCREL_HI20 .LC4 + 8f0: R_RISCV_RELAX *ABS* + 8f4: 00060613 mv a2,a2 8f4: R_RISCV_PCREL_LO12_I .L0 + 8f4: R_RISCV_RELAX *ABS* + 8f8: 29700593 li a1,663 + 8fc: 00000517 auipc a0,0x0 8fc: R_RISCV_PCREL_HI20 .LC1 + 8fc: R_RISCV_RELAX *ABS* + 900: 00050513 mv a0,a0 900: R_RISCV_PCREL_LO12_I .L0 + 900: R_RISCV_RELAX *ABS* + +0000000000000904 <.LVL92>: + 904: 00000097 auipc ra,0x0 904: R_RISCV_CALL __assert + 904: R_RISCV_RELAX *ABS* + 908: 000080e7 jalr ra # 904 <.LVL92> + +000000000000090c <.L70>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:665 (discriminator 2) + + if (--rmutex->count == 0) + 90c: fff7871b addiw a4,a5,-1 + 910: d118 sw a4,32(a0) + 912: 842a mv s0,a0 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:661 (discriminator 2) + int ret = OK; + 914: 4781 li a5,0 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:665 (discriminator 2) + if (--rmutex->count == 0) + 916: eb19 bnez a4,92c <.L71> 916: R_RISCV_RVC_BRANCH .L71 + +0000000000000918 <.LVL94>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:667 + { + ret = nxmutex_unlock(&rmutex->mutex); + 918: 00000097 auipc ra,0x0 918: R_RISCV_CALL nxmutex_unlock + 918: R_RISCV_RELAX *ABS* + 91c: 000080e7 jalr ra # 918 <.LVL94> + +0000000000000920 <.LVL95>: + 920: 87aa mv a5,a0 + +0000000000000922 <.LVL96>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:668 + if (ret < 0) + 922: 00055563 bgez a0,92c <.L71> 922: R_RISCV_BRANCH .L71 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:670 + { + ++rmutex->count; + 926: 5018 lw a4,32(s0) + 928: 2705 addiw a4,a4,1 + 92a: d018 sw a4,32(s0) + +000000000000092c <.L71>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:675 + } + } + + return ret; +} + 92c: 60a2 ld ra,8(sp) + 92e: 6402 ld s0,0(sp) + +0000000000000930 <.LVL98>: + 930: 853e mv a0,a5 + 932: 0141 addi sp,sp,16 + 934: 8082 ret + +0000000000000936 : +nxrmutex_breaklock(): +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:714 + * Possible returned errors: + * + ****************************************************************************/ + +int nxrmutex_breaklock(FAR rmutex_t *rmutex, FAR unsigned int *count) +{ + 936: 1101 addi sp,sp,-32 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:717 + int ret = OK; + + *count = 0; + 938: 0005a023 sw zero,0(a1) +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:714 +{ + 93c: e822 sd s0,16(sp) + 93e: e426 sd s1,8(sp) + 940: ec06 sd ra,24(sp) + 942: 842a mv s0,a0 + +0000000000000944 <.LBB38>: + 944: 84ae mv s1,a1 + +0000000000000946 <.LBB41>: +nxrmutex_is_hold(): +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:495 + return nxmutex_is_hold(&rmutex->mutex); + 946: 00000097 auipc ra,0x0 946: R_RISCV_CALL nxmutex_is_hold + 946: R_RISCV_RELAX *ABS* + 94a: 000080e7 jalr ra # 946 <.LBB41> + +000000000000094e <.LBE41>: +nxrmutex_breaklock(): +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:718 + if (nxrmutex_is_hold(rmutex)) + 94e: c11d beqz a0,974 <.L76> 94e: R_RISCV_RVC_BRANCH .L76 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:720 + { + *count = rmutex->count; + 950: 501c lw a5,32(s0) +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:722 + rmutex->count = 0; + ret = nxmutex_unlock(&rmutex->mutex); + 952: 8522 mv a0,s0 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:720 + *count = rmutex->count; + 954: c09c sw a5,0(s1) +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:721 + rmutex->count = 0; + 956: 02042023 sw zero,32(s0) +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:722 + ret = nxmutex_unlock(&rmutex->mutex); + 95a: 00000097 auipc ra,0x0 95a: R_RISCV_CALL nxmutex_unlock + 95a: R_RISCV_RELAX *ABS* + 95e: 000080e7 jalr ra # 95a <.LBE41+0xc> + +0000000000000962 <.LVL102>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:723 + if (ret < 0) + 962: 00055463 bgez a0,96a <.L75> 962: R_RISCV_BRANCH .L75 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:725 + { + rmutex->count = *count; + 966: 409c lw a5,0(s1) + 968: d01c sw a5,32(s0) + +000000000000096a <.L75>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:730 + } + } + + return ret; +} + 96a: 60e2 ld ra,24(sp) + 96c: 6442 ld s0,16(sp) + +000000000000096e <.LVL104>: + 96e: 64a2 ld s1,8(sp) + +0000000000000970 <.LVL105>: + 970: 6105 addi sp,sp,32 + 972: 8082 ret + +0000000000000974 <.L76>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:715 + int ret = OK; + 974: 4501 li a0,0 + 976: bfd5 j 96a <.L75> 976: R_RISCV_RVC_JUMP .L75 + +0000000000000978 : +nxrmutex_restorelock(): +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:753 + +int nxrmutex_restorelock(FAR rmutex_t *rmutex, unsigned int count) +{ + int ret = OK; + + if (count != 0) + 978: c19d beqz a1,99e <.L80> 978: R_RISCV_RVC_BRANCH .L80 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:750 +{ + 97a: 1101 addi sp,sp,-32 + 97c: e822 sd s0,16(sp) + 97e: e426 sd s1,8(sp) + 980: ec06 sd ra,24(sp) + 982: 84aa mv s1,a0 + 984: 842e mv s0,a1 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:755 + { + ret = nxmutex_lock(&rmutex->mutex); + 986: 00000097 auipc ra,0x0 986: R_RISCV_CALL nxmutex_lock + 986: R_RISCV_RELAX *ABS* + 98a: 000080e7 jalr ra # 986 + +000000000000098e <.LVL108>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:756 + if (ret >= 0) + 98e: 00054363 bltz a0,994 <.L79> 98e: R_RISCV_BRANCH .L79 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:758 + { + rmutex->count = count; + 992: d080 sw s0,32(s1) + +0000000000000994 <.L79>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:763 + } + } + + return ret; +} + 994: 60e2 ld ra,24(sp) + 996: 6442 ld s0,16(sp) + 998: 64a2 ld s1,8(sp) + +000000000000099a <.LVL109>: + 99a: 6105 addi sp,sp,32 + 99c: 8082 ret + +000000000000099e <.L80>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:751 + int ret = OK; + 99e: 4501 li a0,0 + +00000000000009a0 <.LVL111>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:763 +} + 9a0: 8082 ret + +00000000000009a2 : +clock_ticks2time(): +/Users/Luppy/ox64/nuttx/libs/libc/sched/clock_ticks2time.c:55 + +int clock_ticks2time(sclock_t ticks, FAR struct timespec *reltime) +{ + sclock_t remainder; + + reltime->tv_sec = ticks / TICK_PER_SEC; + 9a2: 3e800793 li a5,1000 + 9a6: 02f5473b divw a4,a0,a5 +/Users/Luppy/ox64/nuttx/libs/libc/sched/clock_ticks2time.c:56 + remainder = ticks - TICK_PER_SEC * reltime->tv_sec; + 9aa: c1800793 li a5,-1000 + 9ae: 02e787bb mulw a5,a5,a4 +/Users/Luppy/ox64/nuttx/libs/libc/sched/clock_ticks2time.c:55 + reltime->tv_sec = ticks / TICK_PER_SEC; + 9b2: c198 sw a4,0(a1) + +00000000000009b4 <.LVL1>: +/Users/Luppy/ox64/nuttx/libs/libc/sched/clock_ticks2time.c:56 + remainder = ticks - TICK_PER_SEC * reltime->tv_sec; + 9b4: 9d3d addw a0,a0,a5 + +00000000000009b6 <.LVL2>: +/Users/Luppy/ox64/nuttx/libs/libc/sched/clock_ticks2time.c:57 + reltime->tv_nsec = remainder * NSEC_PER_TICK; + 9b6: 000f47b7 lui a5,0xf4 + 9ba: 2407879b addiw a5,a5,576 + 9be: 02f5053b mulw a0,a0,a5 + +00000000000009c2 <.LVL3>: + 9c2: e588 sd a0,8(a1) +/Users/Luppy/ox64/nuttx/libs/libc/sched/clock_ticks2time.c:59 + return OK; +} + 9c4: 4501 li a0,0 + 9c6: 8082 ret + +00000000000009c8 : +clock_timespec_add(): +/Users/Luppy/ox64/nuttx/libs/libc/sched/clock_timespec_add.c:55 + +void clock_timespec_add(FAR const struct timespec *ts1, + FAR const struct timespec *ts2, + FAR struct timespec *ts3) +{ + time_t sec = ts1->tv_sec + ts2->tv_sec; + 9c8: 419c lw a5,0(a1) + 9ca: 4118 lw a4,0(a0) +/Users/Luppy/ox64/nuttx/libs/libc/sched/clock_timespec_add.c:56 + long nsec = ts1->tv_nsec + ts2->tv_nsec; + 9cc: 6594 ld a3,8(a1) +/Users/Luppy/ox64/nuttx/libs/libc/sched/clock_timespec_add.c:55 + time_t sec = ts1->tv_sec + ts2->tv_sec; + 9ce: 00f7083b addw a6,a4,a5 +/Users/Luppy/ox64/nuttx/libs/libc/sched/clock_timespec_add.c:56 + long nsec = ts1->tv_nsec + ts2->tv_nsec; + 9d2: 651c ld a5,8(a0) + 9d4: 97b6 add a5,a5,a3 +/Users/Luppy/ox64/nuttx/libs/libc/sched/clock_timespec_add.c:58 + + if (nsec >= NSEC_PER_SEC) + 9d6: 3b9ad6b7 lui a3,0x3b9ad + 9da: 9ff68693 addi a3,a3,-1537 # 3b9ac9ff <.LASF105+0x3b9a026e> + 9de: 00f6d863 bge a3,a5,9ee <.L2> 9de: R_RISCV_BRANCH .L2 +/Users/Luppy/ox64/nuttx/libs/libc/sched/clock_timespec_add.c:60 + { + nsec -= NSEC_PER_SEC; + 9e2: c46536b7 lui a3,0xc4653 + 9e6: 60068693 addi a3,a3,1536 # ffffffffc4653600 <.LASF105+0xffffffffc4646e6f> + 9ea: 97b6 add a5,a5,a3 +/Users/Luppy/ox64/nuttx/libs/libc/sched/clock_timespec_add.c:61 + sec++; + 9ec: 2805 addiw a6,a6,1 + +00000000000009ee <.L2>: +/Users/Luppy/ox64/nuttx/libs/libc/sched/clock_timespec_add.c:64 + } + + ts3->tv_sec = sec; + 9ee: 01062023 sw a6,0(a2) # 8f0 +/Users/Luppy/ox64/nuttx/libs/libc/sched/clock_timespec_add.c:65 + ts3->tv_nsec = nsec; + 9f2: e61c sd a5,8(a2) +/Users/Luppy/ox64/nuttx/libs/libc/sched/clock_timespec_add.c:66 +} + 9f4: 8082 ret + +00000000000009f6 : +task_setcancelstate(): +/Users/Luppy/ox64/nuttx/libs/libc/sched/task_setcancelstate.c:64 + * errno value set appropriately. + * + ****************************************************************************/ + +int task_setcancelstate(int state, FAR int *oldstate) +{ + 9f6: 1141 addi sp,sp,-16 +/Users/Luppy/ox64/nuttx/libs/libc/sched/task_setcancelstate.c:65 + FAR struct tls_info_s *tls = tls_get_info(); + 9f8: 7779 lui a4,0xffffe +/Users/Luppy/ox64/nuttx/libs/libc/sched/task_setcancelstate.c:64 +{ + 9fa: e406 sd ra,8(sp) + +00000000000009fc <.LBB7>: +up_getsp(): +/Users/Luppy/ox64/nuttx/include/arch/irq.h:601 + 9fc: 878a mv a5,sp + +00000000000009fe <.LBE7>: +task_setcancelstate(): +/Users/Luppy/ox64/nuttx/libs/libc/sched/task_setcancelstate.c:65 + FAR struct tls_info_s *tls = tls_get_info(); + 9fe: 8ff9 and a5,a5,a4 + +0000000000000a00 <.LVL2>: +/Users/Luppy/ox64/nuttx/libs/libc/sched/task_setcancelstate.c:70 + int ret = OK; + + /* Return the current state if so requested */ + + if (oldstate != NULL) + a00: c599 beqz a1,a0e <.L2> a00: R_RISCV_RVC_BRANCH .L2 +/Users/Luppy/ox64/nuttx/libs/libc/sched/task_setcancelstate.c:72 + { + if ((tls->tl_cpstate & CANCEL_FLAG_NONCANCELABLE) != 0) + a02: 0087c703 lbu a4,8(a5) # f4008 <.LASF105+0xe7877> + a06: 8b05 andi a4,a4,1 + a08: c70d beqz a4,a32 <.L3> a08: R_RISCV_RVC_BRANCH .L3 +/Users/Luppy/ox64/nuttx/libs/libc/sched/task_setcancelstate.c:74 + { + *oldstate = TASK_CANCEL_DISABLE; + a0a: 4705 li a4,1 + a0c: c198 sw a4,0(a1) + +0000000000000a0e <.L2>: +/Users/Luppy/ox64/nuttx/libs/libc/sched/task_setcancelstate.c:84 + } + } + + /* Set the new cancellation state */ + + if (state == TASK_CANCEL_ENABLE) + a0e: e50d bnez a0,a38 <.L4> a0e: R_RISCV_RVC_BRANCH .L4 +/Users/Luppy/ox64/nuttx/libs/libc/sched/task_setcancelstate.c:88 + { + /* Clear the non-cancelable flag */ + + tls->tl_cpstate &= ~CANCEL_FLAG_NONCANCELABLE; + a10: 0087c703 lbu a4,8(a5) + a14: ffe77693 andi a3,a4,-2 + a18: 00d78423 sb a3,8(a5) +/Users/Luppy/ox64/nuttx/libs/libc/sched/task_setcancelstate.c:92 + + /* Check if a cancellation was pending */ + + if ((tls->tl_cpstate & CANCEL_FLAG_CANCEL_PENDING) != 0) + a1c: 00477693 andi a3,a4,4 + a20: c695 beqz a3,a4c <.L5> a20: R_RISCV_RVC_BRANCH .L5 +/Users/Luppy/ox64/nuttx/libs/libc/sched/task_setcancelstate.c:104 + { + /* No.. We are using asynchronous cancellation. If the + * cancellation was pending in this case, then just exit. + */ + + tls->tl_cpstate &= ~CANCEL_FLAG_CANCEL_PENDING; + a22: 9b69 andi a4,a4,-6 + a24: 00e78423 sb a4,8(a5) +/Users/Luppy/ox64/nuttx/libs/libc/sched/task_setcancelstate.c:107 + +#ifndef CONFIG_DISABLE_PTHREAD + pthread_exit(PTHREAD_CANCELED); + a28: 557d li a0,-1 + +0000000000000a2a <.LVL3>: + a2a: 00000097 auipc ra,0x0 a2a: R_RISCV_CALL pthread_exit + a2a: R_RISCV_RELAX *ABS* + a2e: 000080e7 jalr ra # a2a <.LVL3> + +0000000000000a32 <.L3>: +/Users/Luppy/ox64/nuttx/libs/libc/sched/task_setcancelstate.c:78 + *oldstate = TASK_CANCEL_ENABLE; + a32: 0005a023 sw zero,0(a1) + a36: bfe1 j a0e <.L2> a36: R_RISCV_RVC_JUMP .L2 + +0000000000000a38 <.L4>: +/Users/Luppy/ox64/nuttx/libs/libc/sched/task_setcancelstate.c:114 + exit(EXIT_FAILURE); +#endif + } + } + } + else if (state == TASK_CANCEL_DISABLE) + a38: 4705 li a4,1 + a3a: 00e51c63 bne a0,a4,a52 <.L6> a3a: R_RISCV_BRANCH .L6 +/Users/Luppy/ox64/nuttx/libs/libc/sched/task_setcancelstate.c:118 + { + /* Set the non-cancelable state */ + + tls->tl_cpstate |= CANCEL_FLAG_NONCANCELABLE; + a3e: 0087c703 lbu a4,8(a5) +/Users/Luppy/ox64/nuttx/libs/libc/sched/task_setcancelstate.c:66 + int ret = OK; + a42: 4501 li a0,0 + +0000000000000a44 <.LVL5>: +/Users/Luppy/ox64/nuttx/libs/libc/sched/task_setcancelstate.c:118 + tls->tl_cpstate |= CANCEL_FLAG_NONCANCELABLE; + a44: 00176713 ori a4,a4,1 + a48: 00e78423 sb a4,8(a5) + +0000000000000a4c <.L5>: +/Users/Luppy/ox64/nuttx/libs/libc/sched/task_setcancelstate.c:127 + set_errno(EINVAL); + ret = ERROR; + } + + return ret; +} + a4c: 60a2 ld ra,8(sp) + a4e: 0141 addi sp,sp,16 + a50: 8082 ret + +0000000000000a52 <.L6>: +/Users/Luppy/ox64/nuttx/libs/libc/sched/task_setcancelstate.c:122 + set_errno(EINVAL); + a52: 00000097 auipc ra,0x0 a52: R_RISCV_CALL __errno + a52: R_RISCV_RELAX *ABS* + a56: 000080e7 jalr ra # a52 <.L6> + +0000000000000a5a <.LVL8>: + a5a: 47d9 li a5,22 + a5c: c11c sw a5,0(a0) + +0000000000000a5e <.LVL9>: +/Users/Luppy/ox64/nuttx/libs/libc/sched/task_setcancelstate.c:123 + ret = ERROR; + a5e: 557d li a0,-1 + a60: b7f5 j a4c <.L5> a60: R_RISCV_RVC_JUMP .L5 + +0000000000000a62 : +nxsem_init(): +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_init.c:67 + +int nxsem_init(FAR sem_t *sem, int pshared, unsigned int value) +{ + UNUSED(pshared); + + DEBUGASSERT(sem != NULL && value <= SEM_VALUE_MAX); + a62: c501 beqz a0,a6a <.L2> a62: R_RISCV_RVC_BRANCH .L2 +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_init.c:67 (discriminator 2) + a64: 67a1 lui a5,0x8 + a66: 02f66263 bltu a2,a5,a8a <.L3> a66: R_RISCV_BRANCH .L3 + +0000000000000a6a <.L2>: +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_init.c:64 +{ + a6a: 1141 addi sp,sp,-16 + +0000000000000a6c <.LBB8>: +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_init.c:67 + DEBUGASSERT(sem != NULL && value <= SEM_VALUE_MAX); + a6c: 00000617 auipc a2,0x0 a6c: R_RISCV_PCREL_HI20 .LC0 + a6c: R_RISCV_RELAX *ABS* + a70: 00060613 mv a2,a2 a70: R_RISCV_PCREL_LO12_I .L0 + a70: R_RISCV_RELAX *ABS* + +0000000000000a74 <.LVL2>: + a74: 04300593 li a1,67 + +0000000000000a78 <.LVL3>: + a78: 00000517 auipc a0,0x0 a78: R_RISCV_PCREL_HI20 .LC1 + a78: R_RISCV_RELAX *ABS* + a7c: 00050513 mv a0,a0 a7c: R_RISCV_PCREL_LO12_I .L0 + a7c: R_RISCV_RELAX *ABS* + +0000000000000a80 <.LBE8>: +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_init.c:64 +{ + a80: e406 sd ra,8(sp) + +0000000000000a82 <.LBB9>: +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_init.c:67 + DEBUGASSERT(sem != NULL && value <= SEM_VALUE_MAX); + a82: 00000097 auipc ra,0x0 a82: R_RISCV_CALL __assert + a82: R_RISCV_RELAX *ABS* + a86: 000080e7 jalr ra # a82 <.LBB9> + +0000000000000a8a <.L3>: +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_init.c:71 (discriminator 4) + + /* Initialize the semaphore count */ + + sem->semcount = (int16_t)value; + a8a: 0106161b slliw a2,a2,0x10 + +0000000000000a8e <.LVL6>: + a8e: 4106561b sraiw a2,a2,0x10 + a92: 00c51023 sh a2,0(a0) # a78 <.LVL3> +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_init.c:75 (discriminator 4) + + /* Initialize semaphore wait list */ + + dq_init(&sem->waitlist); + a96: 00053423 sd zero,8(a0) + a9a: 00053823 sd zero,16(a0) +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_init.c:79 (discriminator 4) + + /* Initialize to support priority inheritance */ + + sem->flags = 0; + a9e: 00050123 sb zero,2(a0) +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_init.c:89 (discriminator 4) +# else + INITIALIZE_SEMHOLDER(&sem->holder); +# endif +#endif + return OK; +} + aa2: 4501 li a0,0 + +0000000000000aa4 <.LVL7>: + aa4: 8082 ret + +0000000000000aa6 : +sem_init(): +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_init.c:116 + * returned and the errno value is set appropriately. + * + ****************************************************************************/ + +int sem_init(FAR sem_t *sem, int pshared, unsigned int value) +{ + aa6: 1141 addi sp,sp,-16 + aa8: e406 sd ra,8(sp) + aaa: e022 sd s0,0(sp) +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_init.c:123 + + /* Verify that a semaphore was provided and the count is within the valid + * range. + */ + + if (sem == NULL || value > SEM_VALUE_MAX) + aac: c501 beqz a0,ab4 <.L10> aac: R_RISCV_RVC_BRANCH .L10 +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_init.c:123 (discriminator 1) + aae: 6721 lui a4,0x8 + ab0: 00e66e63 bltu a2,a4,acc <.L11> ab0: R_RISCV_BRANCH .L11 + +0000000000000ab4 <.L10>: +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_init.c:125 + { + set_errno(EINVAL); + ab4: 00000097 auipc ra,0x0 ab4: R_RISCV_CALL __errno + ab4: R_RISCV_RELAX *ABS* + ab8: 000080e7 jalr ra # ab4 <.L10> + +0000000000000abc <.LVL9>: + abc: 47d9 li a5,22 + abe: c11c sw a5,0(a0) + +0000000000000ac0 <.L17>: +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_init.c:133 + + ret = nxsem_init(sem, pshared, value); + if (ret < 0) + { + set_errno(-ret); + ret = ERROR; + ac0: 547d li s0,-1 + +0000000000000ac2 <.L12>: +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_init.c:137 + } + + return ret; +} + ac2: 60a2 ld ra,8(sp) + ac4: 8522 mv a0,s0 + ac6: 6402 ld s0,0(sp) + ac8: 0141 addi sp,sp,16 + aca: 8082 ret + +0000000000000acc <.L11>: +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_init.c:129 + ret = nxsem_init(sem, pshared, value); + acc: 00000097 auipc ra,0x0 acc: R_RISCV_CALL nxsem_init + acc: R_RISCV_RELAX *ABS* + ad0: 000080e7 jalr ra # acc <.L11> + +0000000000000ad4 <.LVL13>: + ad4: 842a mv s0,a0 + +0000000000000ad6 <.LVL14>: +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_init.c:130 + if (ret < 0) + ad6: fe0556e3 bgez a0,ac2 <.L12> ad6: R_RISCV_BRANCH .L12 +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_init.c:132 + set_errno(-ret); + ada: 00000097 auipc ra,0x0 ada: R_RISCV_CALL __errno + ada: R_RISCV_RELAX *ABS* + ade: 000080e7 jalr ra # ada <.LVL14+0x4> + +0000000000000ae2 <.LVL15>: + ae2: 4080043b negw s0,s0 + ae6: c100 sw s0,0(a0) + ae8: bfe1 j ac0 <.L17> ae8: R_RISCV_RVC_JUMP .L17 + +0000000000000aea : +nxsem_set_protocol(): +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_setprotocol.c:78 + * + ****************************************************************************/ + +int nxsem_set_protocol(FAR sem_t *sem, int protocol) +{ + DEBUGASSERT(sem != NULL); + aea: e10d bnez a0,b0c <.L2> aea: R_RISCV_RVC_BRANCH .L2 + +0000000000000aec <.LBB4>: +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_setprotocol.c:77 +{ + aec: 1141 addi sp,sp,-16 + +0000000000000aee <.LBB8>: +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_setprotocol.c:78 + DEBUGASSERT(sem != NULL); + aee: 00000617 auipc a2,0x0 aee: R_RISCV_PCREL_HI20 .LC0 + aee: R_RISCV_RELAX *ABS* + af2: 00060613 mv a2,a2 af2: R_RISCV_PCREL_LO12_I .L0 + af2: R_RISCV_RELAX *ABS* + af6: 04e00593 li a1,78 + +0000000000000afa <.LVL2>: + afa: 00000517 auipc a0,0x0 afa: R_RISCV_PCREL_HI20 .LC1 + afa: R_RISCV_RELAX *ABS* + afe: 00050513 mv a0,a0 afe: R_RISCV_PCREL_LO12_I .L0 + afe: R_RISCV_RELAX *ABS* + +0000000000000b02 <.LBE8>: +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_setprotocol.c:77 +{ + b02: e406 sd ra,8(sp) + +0000000000000b04 <.LBB9>: +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_setprotocol.c:78 + DEBUGASSERT(sem != NULL); + b04: 00000097 auipc ra,0x0 b04: R_RISCV_CALL __assert + b04: R_RISCV_RELAX *ABS* + b08: 000080e7 jalr ra # b04 <.LBB9> + +0000000000000b0c <.L2>: + b0c: 87aa mv a5,a0 + +0000000000000b0e <.LBE9>: +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_setprotocol.c:80 (discriminator 2) + + switch (protocol & SEM_PRIO_MASK) + b0e: 0035f513 andi a0,a1,3 + +0000000000000b12 <.LVL5>: + b12: c911 beqz a0,b26 <.L3> b12: R_RISCV_RVC_BRANCH .L3 +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_setprotocol.c:80 + b14: fff5071b addiw a4,a0,-1 + b18: 4785 li a5,1 + +0000000000000b1a <.LVL6>: +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_setprotocol.c:87 + case SEM_PRIO_NONE: + break; + + case SEM_PRIO_INHERIT: + case SEM_PRIO_PROTECT: + return -ENOTSUP; + b1a: f7600513 li a0,-138 +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_setprotocol.c:80 + switch (protocol & SEM_PRIO_MASK) + b1e: 00e7f663 bgeu a5,a4,b2a <.L4> b1e: R_RISCV_BRANCH .L4 + b22: 5529 li a0,-22 + b24: 8082 ret + +0000000000000b26 <.L3>: +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_setprotocol.c:93 + + default: + return -EINVAL; + } + + sem->flags = protocol; + b26: 00b78123 sb a1,2(a5) # 8002 <.LASF20+0x8> + +0000000000000b2a <.L4>: +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_setprotocol.c:95 + return OK; +} + b2a: 8082 ret + +0000000000000b2c : +sem_setprotocol(): +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_setprotocol.c:137 + * the errno value is set appropriately. + * + ****************************************************************************/ + +int sem_setprotocol(FAR sem_t *sem, int protocol) +{ + b2c: 1141 addi sp,sp,-16 + b2e: e022 sd s0,0(sp) + b30: e406 sd ra,8(sp) +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_setprotocol.c:140 + int ret; + + ret = nxsem_set_protocol(sem, protocol); + b32: 00000097 auipc ra,0x0 b32: R_RISCV_CALL nxsem_set_protocol + b32: R_RISCV_RELAX *ABS* + b36: 000080e7 jalr ra # b32 + +0000000000000b3a <.LVL10>: + b3a: 842a mv s0,a0 + +0000000000000b3c <.LVL11>: +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_setprotocol.c:141 + if (ret < 0) + b3c: 00055a63 bgez a0,b50 <.L10> b3c: R_RISCV_BRANCH .L10 +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_setprotocol.c:143 + { + set_errno(-ret); + b40: 4080043b negw s0,s0 + b44: 00000097 auipc ra,0x0 b44: R_RISCV_CALL __errno + b44: R_RISCV_RELAX *ABS* + b48: 000080e7 jalr ra # b44 <.LVL11+0x8> + +0000000000000b4c <.LVL12>: + b4c: c100 sw s0,0(a0) + +0000000000000b4e <.LVL13>: +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_setprotocol.c:144 + ret = ERROR; + b4e: 547d li s0,-1 + +0000000000000b50 <.L10>: +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_setprotocol.c:148 + } + + return ret; +} + b50: 60a2 ld ra,8(sp) + b52: 8522 mv a0,s0 + b54: 6402 ld s0,0(sp) + +0000000000000b56 <.LVL15>: + b56: 0141 addi sp,sp,16 + b58: 8082 ret + +0000000000000b5a : +nxsem_get_value(): +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_getvalue.c:62 + * returned on success. A negated errno value is returned on failure. + * + ****************************************************************************/ + +int nxsem_get_value(FAR sem_t *sem, FAR int *sval) +{ + b5a: 87aa mv a5,a0 +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_getvalue.c:69 + { + *sval = sem->semcount; + return OK; + } + + return -EINVAL; + b5c: 5529 li a0,-22 + +0000000000000b5e <.LVL1>: +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_getvalue.c:63 + if (sem != NULL && sval != NULL) + b5e: cb99 beqz a5,b74 <.L2> b5e: R_RISCV_RVC_BRANCH .L2 +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_getvalue.c:63 (discriminator 1) + b60: c991 beqz a1,b74 <.L2> b60: R_RISCV_RVC_BRANCH .L2 +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_getvalue.c:65 + *sval = sem->semcount; + b62: 0007d783 lhu a5,0(a5) + +0000000000000b66 <.LVL2>: +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_getvalue.c:66 + return OK; + b66: 4501 li a0,0 +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_getvalue.c:65 + *sval = sem->semcount; + b68: 0107979b slliw a5,a5,0x10 + b6c: 4107d79b sraiw a5,a5,0x10 + b70: c19c sw a5,0(a1) +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_getvalue.c:66 + return OK; + b72: 8082 ret + +0000000000000b74 <.L2>: +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_getvalue.c:70 +} + b74: 8082 ret + +0000000000000b76 : +sem_getvalue(): +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_getvalue.c:97 + * returned and the errno value is set appropriately. + * + ****************************************************************************/ + +int sem_getvalue(FAR sem_t *sem, FAR int *sval) +{ + b76: 1141 addi sp,sp,-16 + b78: e022 sd s0,0(sp) + b7a: e406 sd ra,8(sp) +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_getvalue.c:100 + int ret; + + ret = nxsem_get_value(sem, sval); + b7c: 00000097 auipc ra,0x0 b7c: R_RISCV_CALL nxsem_get_value + b7c: R_RISCV_RELAX *ABS* + b80: 000080e7 jalr ra # b7c + +0000000000000b84 <.LVL5>: + b84: 842a mv s0,a0 + +0000000000000b86 <.LVL6>: +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_getvalue.c:101 + if (ret < 0) + b86: 00055a63 bgez a0,b9a <.L6> b86: R_RISCV_BRANCH .L6 +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_getvalue.c:103 + { + set_errno(-ret); + b8a: 4080043b negw s0,s0 + b8e: 00000097 auipc ra,0x0 b8e: R_RISCV_CALL __errno + b8e: R_RISCV_RELAX *ABS* + b92: 000080e7 jalr ra # b8e <.LVL6+0x8> + +0000000000000b96 <.LVL7>: + b96: c100 sw s0,0(a0) + +0000000000000b98 <.LVL8>: +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_getvalue.c:104 + ret = ERROR; + b98: 547d li s0,-1 + +0000000000000b9a <.L6>: +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_getvalue.c:108 + } + + return ret; +} + b9a: 60a2 ld ra,8(sp) + b9c: 8522 mv a0,s0 + b9e: 6402 ld s0,0(sp) + +0000000000000ba0 <.LVL10>: + ba0: 0141 addi sp,sp,16 + ba2: 8082 ret + +0000000000000ba4 : +fflush_unlocked(): +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_fflush.c:56 + * OK on success EOF on failure (with errno set appropriately) + * + ****************************************************************************/ + +int fflush_unlocked(FAR FILE *stream) +{ + ba4: 1141 addi sp,sp,-16 + ba6: e406 sd ra,8(sp) + ba8: e022 sd s0,0(sp) +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_fflush.c:61 + int ret; + + /* Is the stream argument NULL? */ + + if (stream == NULL) + baa: e90d bnez a0,bdc <.L2> baa: R_RISCV_RVC_BRANCH .L2 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_fflush.c:65 + { + /* Yes... then this is a request to flush all streams */ + + ret = lib_flushall_unlocked(lib_get_streams()); + bac: 00000097 auipc ra,0x0 bac: R_RISCV_CALL lib_get_streams + bac: R_RISCV_RELAX *ABS* + bb0: 000080e7 jalr ra # bac + +0000000000000bb4 <.LVL1>: + bb4: 00000097 auipc ra,0x0 bb4: R_RISCV_CALL lib_flushall_unlocked + bb4: R_RISCV_RELAX *ABS* + bb8: 000080e7 jalr ra # bb4 <.LVL1> + +0000000000000bbc <.LVL2>: + bbc: 842a mv s0,a0 + +0000000000000bbe <.L3>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_fflush.c:87 + /* And return EOF on failure. */ + + return EOF; + } + + return OK; + bbe: 4501 li a0,0 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_fflush.c:74 + if (ret < 0) + bc0: 00045a63 bgez s0,bd4 <.L4> bc0: R_RISCV_BRANCH .L4 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_fflush.c:80 + set_errno(-ret); + bc4: 00000097 auipc ra,0x0 bc4: R_RISCV_CALL __errno + bc4: R_RISCV_RELAX *ABS* + bc8: 000080e7 jalr ra # bc4 <.L3+0x6> + +0000000000000bcc <.LVL4>: + bcc: 4080043b negw s0,s0 + +0000000000000bd0 <.LVL5>: + bd0: c100 sw s0,0(a0) +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_fflush.c:84 + return EOF; + bd2: 557d li a0,-1 + +0000000000000bd4 <.L4>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_fflush.c:88 +} + bd4: 60a2 ld ra,8(sp) + bd6: 6402 ld s0,0(sp) + bd8: 0141 addi sp,sp,16 + bda: 8082 ret + +0000000000000bdc <.L2>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_fflush.c:69 + ret = lib_fflush_unlocked(stream); + bdc: 00000097 auipc ra,0x0 bdc: R_RISCV_CALL lib_fflush_unlocked + bdc: R_RISCV_RELAX *ABS* + be0: 000080e7 jalr ra # bdc <.L2> + +0000000000000be4 <.LVL8>: + be4: 0005041b sext.w s0,a0 + +0000000000000be8 <.LVL9>: + be8: bfd9 j bbe <.L3> be8: R_RISCV_RVC_JUMP .L3 + +0000000000000bea : +fflush(): +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_fflush.c:91 + +int fflush(FAR FILE *stream) +{ + bea: 1141 addi sp,sp,-16 + bec: e406 sd ra,8(sp) + bee: e022 sd s0,0(sp) +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_fflush.c:96 + int ret; + + /* Is the stream argument NULL? */ + + if (stream == NULL) + bf0: e90d bnez a0,c22 <.L8> bf0: R_RISCV_RVC_BRANCH .L8 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_fflush.c:100 + { + /* Yes... then this is a request to flush all streams */ + + ret = lib_flushall(lib_get_streams()); + bf2: 00000097 auipc ra,0x0 bf2: R_RISCV_CALL lib_get_streams + bf2: R_RISCV_RELAX *ABS* + bf6: 000080e7 jalr ra # bf2 + +0000000000000bfa <.LVL11>: + bfa: 00000097 auipc ra,0x0 bfa: R_RISCV_CALL lib_flushall + bfa: R_RISCV_RELAX *ABS* + bfe: 000080e7 jalr ra # bfa <.LVL11> + +0000000000000c02 <.LVL12>: + c02: 842a mv s0,a0 + +0000000000000c04 <.L9>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_fflush.c:122 + /* And return EOF on failure. */ + + return EOF; + } + + return OK; + c04: 4501 li a0,0 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_fflush.c:109 + if (ret < 0) + c06: 00045a63 bgez s0,c1a <.L10> c06: R_RISCV_BRANCH .L10 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_fflush.c:115 + set_errno(-ret); + c0a: 00000097 auipc ra,0x0 c0a: R_RISCV_CALL __errno + c0a: R_RISCV_RELAX *ABS* + c0e: 000080e7 jalr ra # c0a <.L9+0x6> + +0000000000000c12 <.LVL14>: + c12: 4080043b negw s0,s0 + +0000000000000c16 <.LVL15>: + c16: c100 sw s0,0(a0) +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_fflush.c:119 + return EOF; + c18: 557d li a0,-1 + +0000000000000c1a <.L10>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_fflush.c:123 +} + c1a: 60a2 ld ra,8(sp) + c1c: 6402 ld s0,0(sp) + c1e: 0141 addi sp,sp,16 + c20: 8082 ret + +0000000000000c22 <.L8>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_fflush.c:104 + ret = lib_fflush(stream); + c22: 00000097 auipc ra,0x0 c22: R_RISCV_CALL lib_fflush + c22: R_RISCV_RELAX *ABS* + c26: 000080e7 jalr ra # c22 <.L8> + +0000000000000c2a <.LVL18>: + c2a: 0005041b sext.w s0,a0 + +0000000000000c2e <.LVL19>: + c2e: bfd9 j c04 <.L9> c2e: R_RISCV_RVC_JUMP .L9 + +0000000000000c30 : +lib_flushall_unlocked(): +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libflushall.c:49 + * when a NULL stream argument is provided. + * + ****************************************************************************/ + +int lib_flushall_unlocked(FAR struct streamlist *list) +{ + c30: 1101 addi sp,sp,-32 + c32: e426 sd s1,8(sp) + c34: ec06 sd ra,24(sp) + c36: e822 sd s0,16(sp) +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libflushall.c:50 + int lasterrno = OK; + c38: 4481 li s1,0 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libflushall.c:55 + int ret; + + /* Make sure that there are streams associated with this thread */ + + if (list != NULL) + c3a: c905 beqz a0,c6a <.L2> c3a: R_RISCV_RVC_BRANCH .L2 + c3c: 842a mv s0,a0 + +0000000000000c3e <.LBB2>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libflushall.c:64 + + /* Process each stream in the thread's stream list */ + + for (i = 0; i < 3; i++) + { + lib_fflush_unlocked(&list->sl_std[i]); + c3e: 02050513 addi a0,a0,32 # b1a <.LVL6> + +0000000000000c42 <.LVL2>: + c42: 00000097 auipc ra,0x0 c42: R_RISCV_CALL lib_fflush_unlocked + c42: R_RISCV_RELAX *ABS* + c46: 000080e7 jalr ra # c42 <.LVL2> + +0000000000000c4a <.LVL3>: + c4a: 0e040513 addi a0,s0,224 + c4e: 00000097 auipc ra,0x0 c4e: R_RISCV_CALL lib_fflush_unlocked + c4e: R_RISCV_RELAX *ABS* + c52: 000080e7 jalr ra # c4e <.LVL3+0x4> + +0000000000000c56 <.LVL4>: + c56: 1a040513 addi a0,s0,416 + c5a: 00000097 auipc ra,0x0 c5a: R_RISCV_CALL lib_fflush_unlocked + c5a: R_RISCV_RELAX *ABS* + c5e: 000080e7 jalr ra # c5a <.LVL4+0x4> + +0000000000000c62 <.LVL5>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libflushall.c:67 + } + + for (stream = list->sl_head; stream != NULL; stream = stream->fs_next) + c62: 26043403 ld s0,608(s0) + +0000000000000c66 <.LBE2>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libflushall.c:50 + int lasterrno = OK; + c66: 4481 li s1,0 + +0000000000000c68 <.L3>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libflushall.c:67 (discriminator 1) + for (stream = list->sl_head; stream != NULL; stream = stream->fs_next) + c68: e419 bnez s0,c76 <.L5> c68: R_RISCV_RVC_BRANCH .L5 + +0000000000000c6a <.L2>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libflushall.c:94 + } + + /* If any flush failed, return the errorcode of the last failed flush */ + + return lasterrno; +} + c6a: 60e2 ld ra,24(sp) + c6c: 6442 ld s0,16(sp) + c6e: 8526 mv a0,s1 + c70: 64a2 ld s1,8(sp) + +0000000000000c72 <.LVL9>: + c72: 6105 addi sp,sp,32 + c74: 8082 ret + +0000000000000c76 <.L5>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libflushall.c:73 + if ((stream->fs_oflags & O_WROK) != 0) + c76: 0b845783 lhu a5,184(s0) + c7a: 8b89 andi a5,a5,2 + c7c: cb91 beqz a5,c90 <.L4> c7c: R_RISCV_RVC_BRANCH .L4 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libflushall.c:77 + ret = lib_fflush_unlocked(stream); + c7e: 8522 mv a0,s0 + c80: 00000097 auipc ra,0x0 c80: R_RISCV_CALL lib_fflush_unlocked + c80: R_RISCV_RELAX *ABS* + c84: 000080e7 jalr ra # c80 <.L5+0xa> + +0000000000000c88 <.LVL11>: + c88: 2501 sext.w a0,a0 + +0000000000000c8a <.LVL12>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libflushall.c:78 + if (ret < 0) + c8a: 00055363 bgez a0,c90 <.L4> c8a: R_RISCV_BRANCH .L4 + c8e: 84aa mv s1,a0 + +0000000000000c90 <.L4>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libflushall.c:67 (discriminator 2) + for (stream = list->sl_head; stream != NULL; stream = stream->fs_next) + c90: 6000 ld s0,0(s0) + c92: bfd9 j c68 <.L3> c92: R_RISCV_RVC_JUMP .L3 + +0000000000000c94 : +lib_flushall(): +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libflushall.c:97 + +int lib_flushall(FAR struct streamlist *list) +{ + c94: 1101 addi sp,sp,-32 + c96: e04a sd s2,0(sp) + c98: ec06 sd ra,24(sp) + c9a: e822 sd s0,16(sp) + c9c: e426 sd s1,8(sp) +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libflushall.c:98 + int lasterrno = OK; + c9e: 4901 li s2,0 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libflushall.c:103 + int ret; + + /* Make sure that there are streams associated with this thread */ + + if (list != NULL) + ca0: c129 beqz a0,ce2 <.L12> ca0: R_RISCV_RVC_BRANCH .L12 + ca2: 842a mv s0,a0 + +0000000000000ca4 <.LBB5>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libflushall.c:110 + FAR FILE *stream; + int i; + + /* Process each stream in the thread's stream list */ + + nxmutex_lock(&list->sl_lock); + ca4: 00000097 auipc ra,0x0 ca4: R_RISCV_CALL nxmutex_lock + ca4: R_RISCV_RELAX *ABS* + ca8: 000080e7 jalr ra # ca4 <.LBB5> + +0000000000000cac <.LVL16>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libflushall.c:114 + + for (i = 0; i < 3; i++) + { + lib_fflush(&list->sl_std[i]); + cac: 02040513 addi a0,s0,32 + cb0: 00000097 auipc ra,0x0 cb0: R_RISCV_CALL lib_fflush + cb0: R_RISCV_RELAX *ABS* + cb4: 000080e7 jalr ra # cb0 <.LVL16+0x4> + +0000000000000cb8 <.LVL17>: + cb8: 0e040513 addi a0,s0,224 + cbc: 00000097 auipc ra,0x0 cbc: R_RISCV_CALL lib_fflush + cbc: R_RISCV_RELAX *ABS* + cc0: 000080e7 jalr ra # cbc <.LVL17+0x4> + +0000000000000cc4 <.LVL18>: + cc4: 1a040513 addi a0,s0,416 + cc8: 00000097 auipc ra,0x0 cc8: R_RISCV_CALL lib_fflush + cc8: R_RISCV_RELAX *ABS* + ccc: 000080e7 jalr ra # cc8 <.LVL18+0x4> + +0000000000000cd0 <.LVL19>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libflushall.c:117 + } + + for (stream = list->sl_head; stream != NULL; stream = stream->fs_next) + cd0: 26043483 ld s1,608(s0) + +0000000000000cd4 <.LBE5>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libflushall.c:98 + int lasterrno = OK; + cd4: 4901 li s2,0 + +0000000000000cd6 <.L13>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libflushall.c:117 (discriminator 1) + for (stream = list->sl_head; stream != NULL; stream = stream->fs_next) + cd6: ec89 bnez s1,cf0 <.L15> cd6: R_RISCV_RVC_BRANCH .L15 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libflushall.c:140 + lasterrno = ret; + } + } + } + + nxmutex_unlock(&list->sl_lock); + cd8: 8522 mv a0,s0 + cda: 00000097 auipc ra,0x0 cda: R_RISCV_CALL nxmutex_unlock + cda: R_RISCV_RELAX *ABS* + cde: 000080e7 jalr ra # cda <.L13+0x4> + +0000000000000ce2 <.L12>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libflushall.c:146 + } + + /* If any flush failed, return the errorcode of the last failed flush */ + + return lasterrno; +} + ce2: 60e2 ld ra,24(sp) + ce4: 6442 ld s0,16(sp) + ce6: 64a2 ld s1,8(sp) + ce8: 854a mv a0,s2 + cea: 6902 ld s2,0(sp) + +0000000000000cec <.LVL23>: + cec: 6105 addi sp,sp,32 + cee: 8082 ret + +0000000000000cf0 <.L15>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libflushall.c:123 + if ((stream->fs_oflags & O_WROK) != 0) + cf0: 0b84d783 lhu a5,184(s1) + cf4: 8b89 andi a5,a5,2 + cf6: cb91 beqz a5,d0a <.L14> cf6: R_RISCV_RVC_BRANCH .L14 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libflushall.c:127 + ret = lib_fflush(stream); + cf8: 8526 mv a0,s1 + cfa: 00000097 auipc ra,0x0 cfa: R_RISCV_CALL lib_fflush + cfa: R_RISCV_RELAX *ABS* + cfe: 000080e7 jalr ra # cfa <.L15+0xa> + +0000000000000d02 <.LVL25>: + d02: 2501 sext.w a0,a0 + +0000000000000d04 <.LVL26>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libflushall.c:128 + if (ret < 0) + d04: 00055363 bgez a0,d0a <.L14> d04: R_RISCV_BRANCH .L14 + d08: 892a mv s2,a0 + +0000000000000d0a <.L14>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libflushall.c:117 (discriminator 2) + for (stream = list->sl_head; stream != NULL; stream = stream->fs_next) + d0a: 6084 ld s1,0(s1) + d0c: b7e9 j cd6 <.L13> d0c: R_RISCV_RVC_JUMP .L13 + +0000000000000d0e <__assert>: +__assert(): +/Users/Luppy/ox64/nuttx/libs/libc/assert/lib_assert.c:35 +/**************************************************************************** + * Public Functions + ****************************************************************************/ + +void __assert(FAR const char *filename, int linenum, FAR const char *msg) +{ + d0e: 1141 addi sp,sp,-16 +/Users/Luppy/ox64/nuttx/libs/libc/assert/lib_assert.c:36 + _assert(filename, linenum, msg, NULL); + d10: 4681 li a3,0 +/Users/Luppy/ox64/nuttx/libs/libc/assert/lib_assert.c:35 +{ + d12: e406 sd ra,8(sp) +/Users/Luppy/ox64/nuttx/libs/libc/assert/lib_assert.c:36 + _assert(filename, linenum, msg, NULL); + d14: 00000097 auipc ra,0x0 d14: R_RISCV_CALL _assert + d14: R_RISCV_RELAX *ABS* + d18: 000080e7 jalr ra # d14 <__assert+0x6> + +0000000000000d1c <.LVL1>: +/Users/Luppy/ox64/nuttx/libs/libc/assert/lib_assert.c:37 + abort(); + d1c: 00000097 auipc ra,0x0 d1c: R_RISCV_CALL abort + d1c: R_RISCV_RELAX *ABS* + d20: 000080e7 jalr ra # d1c <.LVL1> + +0000000000000d24 : +pthread_exit(): +/Users/Luppy/ox64/nuttx/libs/libc/pthread/pthread_exit.c:55 + * Assumptions: + * + ****************************************************************************/ + +void pthread_exit(FAR void *exit_value) +{ + d24: 1141 addi sp,sp,-16 + d26: e022 sd s0,0(sp) +/Users/Luppy/ox64/nuttx/libs/libc/pthread/pthread_exit.c:61 + /* Mark the pthread as non-cancelable to avoid additional calls to + * pthread_exit() due to any cancellation point logic that might get + * kicked off by actions taken during pthread_exit processing. + */ + + task_setcancelstate(TASK_CANCEL_DISABLE, NULL); + d28: 4581 li a1,0 +/Users/Luppy/ox64/nuttx/libs/libc/pthread/pthread_exit.c:55 +{ + d2a: 842a mv s0,a0 +/Users/Luppy/ox64/nuttx/libs/libc/pthread/pthread_exit.c:61 + task_setcancelstate(TASK_CANCEL_DISABLE, NULL); + d2c: 4505 li a0,1 + +0000000000000d2e <.LVL1>: +/Users/Luppy/ox64/nuttx/libs/libc/pthread/pthread_exit.c:55 +{ + d2e: e406 sd ra,8(sp) +/Users/Luppy/ox64/nuttx/libs/libc/pthread/pthread_exit.c:61 + task_setcancelstate(TASK_CANCEL_DISABLE, NULL); + d30: 00000097 auipc ra,0x0 d30: R_RISCV_CALL task_setcancelstate + d30: R_RISCV_RELAX *ABS* + d34: 000080e7 jalr ra # d30 <.LVL1+0x2> + +0000000000000d38 <.LVL2>: +/Users/Luppy/ox64/nuttx/libs/libc/pthread/pthread_exit.c:71 + +#if defined(CONFIG_TLS_NELEM) && CONFIG_TLS_NELEM > 0 + tls_destruct(); +#endif + + nx_pthread_exit(exit_value); + d38: 8522 mv a0,s0 + d3a: 00000097 auipc ra,0x0 d3a: R_RISCV_CALL nx_pthread_exit + d3a: R_RISCV_RELAX *ABS* + d3e: 000080e7 jalr ra # d3a <.LVL2+0x2> + +0000000000000d42 : +abort(): +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_abort.c:60 + * This function does not return, + * + ****************************************************************************/ + +void abort(void) +{ + d42: 1141 addi sp,sp,-16 +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_abort.c:69 + * signal the calling thread all. + * + * _exit() will close all open files and terminate the thread. + */ + + _exit(EXIT_FAILURE); + d44: 4505 li a0,1 +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_abort.c:60 +{ + d46: e406 sd ra,8(sp) +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_abort.c:69 + _exit(EXIT_FAILURE); + d48: 00000097 auipc ra,0x0 d48: R_RISCV_CALL _exit + d48: R_RISCV_RELAX *ABS* + d4c: 000080e7 jalr ra # d48 + +0000000000000d50 <_assert>: +_assert(): +/Users/Luppy/ox64/nuttx/syscall/proxies/PROXY__assert.c:8 +#include +#include +#include + +void _assert(FAR const char * parm1, int parm2, FAR const char * parm3, FAR void * parm4) +{ + d50: 88aa mv a7,a0 + +0000000000000d52 <.LVL1>: + d52: 882e mv a6,a1 + +0000000000000d54 <.LVL2>: + d54: 87b2 mv a5,a2 + +0000000000000d56 <.LVL3>: + d56: 8736 mv a4,a3 + +0000000000000d58 <.LBB4>: +sys_call4(): +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:281 + +static inline uintptr_t sys_call4(unsigned int nbr, uintptr_t parm1, + uintptr_t parm2, uintptr_t parm3, + uintptr_t parm4) +{ + register long r0 asm("a0") = (long)(nbr); + d58: 4525 li a0,9 + +0000000000000d5a <.LVL5>: +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:282 + register long r1 asm("a1") = (long)(parm1); + d5a: 85c6 mv a1,a7 + +0000000000000d5c <.LVL6>: +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:283 + register long r2 asm("a2") = (long)(parm2); + d5c: 8642 mv a2,a6 + +0000000000000d5e <.LVL7>: +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:284 + register long r3 asm("a3") = (long)(parm3); + d5e: 86be mv a3,a5 + +0000000000000d60 <.LVL8>: +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:287 + register long r4 asm("a4") = (long)(parm4); + + asm volatile + d60: 00000073 ecall +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:294 + "ecall" + :: "r"(r0), "r"(r1), "r"(r2), "r"(r3), "r"(r4) + : "memory" + ); + + asm volatile("nop" : "=r"(r0)); + d64: 0001 nop + +0000000000000d66 <.LBE4>: +_assert(): +/Users/Luppy/ox64/nuttx/syscall/proxies/PROXY__assert.c:10 + sys_call4((unsigned int)SYS__assert, (uintptr_t)parm1, (uintptr_t)parm2, (uintptr_t)parm3, (uintptr_t)parm4); +} + d66: 8082 ret + +0000000000000d68 <_exit>: +_exit(): +/Users/Luppy/ox64/nuttx/syscall/proxies/PROXY__exit.c:8 +#include +#include +#include + +void _exit(int parm1) +{ + d68: 85aa mv a1,a0 + +0000000000000d6a <.LBB4>: +sys_call1(): +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:199 + register long r0 asm("a0") = (long)(nbr); + d6a: 4521 li a0,8 + +0000000000000d6c <.LVL2>: +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:202 + asm volatile + d6c: 00000073 ecall +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:209 + asm volatile("nop" : "=r"(r0)); + d70: 0001 nop + +0000000000000d72 <.L2>: +_exit(): +/Users/Luppy/ox64/nuttx/syscall/proxies/PROXY__exit.c:10 (discriminator 1) + sys_call1((unsigned int)SYS__exit, (uintptr_t)parm1); + while(1); + d72: a001 j d72 <.L2> d72: R_RISCV_RVC_JUMP .L2 + +0000000000000d74 : +clock_gettime(): +/Users/Luppy/ox64/nuttx/syscall/proxies/PROXY_clock_gettime.c:8 +#include +#include +#include + +int clock_gettime(clockid_t parm1, FAR struct timespec * parm2) +{ + d74: 87aa mv a5,a0 + +0000000000000d76 <.LVL1>: + d76: 862e mv a2,a1 + +0000000000000d78 <.LBB4>: +sys_call2(): +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:225 + register long r0 asm("a0") = (long)(nbr); + d78: 03000513 li a0,48 + +0000000000000d7c <.LVL3>: +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:226 + register long r1 asm("a1") = (long)(parm1); + d7c: 85be mv a1,a5 + +0000000000000d7e <.LVL4>: +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:229 + asm volatile + d7e: 00000073 ecall +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:236 + asm volatile("nop" : "=r"(r0)); + d82: 0001 nop + +0000000000000d84 <.LBE4>: +clock_gettime(): +/Users/Luppy/ox64/nuttx/syscall/proxies/PROXY_clock_gettime.c:10 + return (int)sys_call2((unsigned int)SYS_clock_gettime, (uintptr_t)parm1, (uintptr_t)parm2); +} + d84: 2501 sext.w a0,a0 + d86: 8082 ret + +0000000000000d88 : +sys_call0(): +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:175 + register long r0 asm("a0") = (long)(nbr); + d88: 452d li a0,11 +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:177 + asm volatile + d8a: 00000073 ecall +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:184 + asm volatile("nop" : "=r"(r0)); + d8e: 0001 nop + +0000000000000d90 <.LBE4>: +gettid(): +/Users/Luppy/ox64/nuttx/syscall/proxies/PROXY_gettid.c:10 +#include + +pid_t gettid(void) +{ + return (pid_t)sys_call0((unsigned int)SYS_gettid); +} + d90: 2501 sext.w a0,a0 + d92: 8082 ret + +0000000000000d94 : +lseek(): +/Users/Luppy/ox64/nuttx/syscall/proxies/PROXY_lseek.c:8 +#include +#include +#include + +off_t lseek(int parm1, off_t parm2, int parm3) +{ + d94: 872a mv a4,a0 + +0000000000000d96 <.LVL1>: + d96: 87ae mv a5,a1 + +0000000000000d98 <.LVL2>: + d98: 86b2 mv a3,a2 + +0000000000000d9a <.LBB4>: +sys_call3(): +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:252 + register long r0 asm("a0") = (long)(nbr); + d9a: 04900513 li a0,73 + +0000000000000d9e <.LVL4>: +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:253 + register long r1 asm("a1") = (long)(parm1); + d9e: 85ba mv a1,a4 + +0000000000000da0 <.LVL5>: +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:254 + register long r2 asm("a2") = (long)(parm2); + da0: 863e mv a2,a5 + +0000000000000da2 <.LVL6>: +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:257 + asm volatile + da2: 00000073 ecall +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:264 + asm volatile("nop" : "=r"(r0)); + da6: 0001 nop + +0000000000000da8 <.LBE4>: +lseek(): +/Users/Luppy/ox64/nuttx/syscall/proxies/PROXY_lseek.c:10 + return (off_t)sys_call3((unsigned int)SYS_lseek, (uintptr_t)parm1, (uintptr_t)parm2, (uintptr_t)parm3); +} + da8: 2501 sext.w a0,a0 + daa: 8082 ret + +0000000000000dac : +nx_pthread_exit(): +/Users/Luppy/ox64/nuttx/syscall/proxies/PROXY_nx_pthread_exit.c:10 +#include + +#if !defined(CONFIG_DISABLE_PTHREAD) + +void nx_pthread_exit(pthread_addr_t parm1) +{ + dac: 85aa mv a1,a0 + +0000000000000dae <.LBB4>: +sys_call1(): +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:199 + register long r0 asm("a0") = (long)(nbr); + dae: 06b00513 li a0,107 + +0000000000000db2 <.LVL2>: +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:202 + asm volatile + db2: 00000073 ecall +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:209 + asm volatile("nop" : "=r"(r0)); + db6: 0001 nop + +0000000000000db8 <.L2>: +nx_pthread_exit(): +/Users/Luppy/ox64/nuttx/syscall/proxies/PROXY_nx_pthread_exit.c:12 (discriminator 1) + sys_call1((unsigned int)SYS_nx_pthread_exit, (uintptr_t)parm1); + while(1); + db8: a001 j db8 <.L2> db8: R_RISCV_RVC_JUMP .L2 + +0000000000000dba : +nxsem_clockwait(): +/Users/Luppy/ox64/nuttx/syscall/proxies/PROXY_nxsem_clockwait.c:8 +#include +#include +#include + +int nxsem_clockwait(FAR sem_t * parm1, clockid_t parm2, FAR const struct timespec * parm3) +{ + dba: 872a mv a4,a0 + +0000000000000dbc <.LVL1>: + dbc: 87ae mv a5,a1 + +0000000000000dbe <.LVL2>: + dbe: 86b2 mv a3,a2 + +0000000000000dc0 <.LBB4>: +sys_call3(): +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:252 + register long r0 asm("a0") = (long)(nbr); + dc0: 4571 li a0,28 + +0000000000000dc2 <.LVL4>: +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:253 + register long r1 asm("a1") = (long)(parm1); + dc2: 85ba mv a1,a4 + +0000000000000dc4 <.LVL5>: +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:254 + register long r2 asm("a2") = (long)(parm2); + dc4: 863e mv a2,a5 + +0000000000000dc6 <.LVL6>: +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:257 + asm volatile + dc6: 00000073 ecall +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:264 + asm volatile("nop" : "=r"(r0)); + dca: 0001 nop + +0000000000000dcc <.LBE4>: +nxsem_clockwait(): +/Users/Luppy/ox64/nuttx/syscall/proxies/PROXY_nxsem_clockwait.c:10 + return (int)sys_call3((unsigned int)SYS_nxsem_clockwait, (uintptr_t)parm1, (uintptr_t)parm2, (uintptr_t)parm3); +} + dcc: 2501 sext.w a0,a0 + dce: 8082 ret + +0000000000000dd0 : +nxsem_destroy(): +/Users/Luppy/ox64/nuttx/syscall/proxies/PROXY_nxsem_destroy.c:8 +#include +#include +#include + +int nxsem_destroy(FAR sem_t * parm1) +{ + dd0: 85aa mv a1,a0 + +0000000000000dd2 <.LBB4>: +sys_call1(): +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:199 + register long r0 asm("a0") = (long)(nbr); + dd2: 4569 li a0,26 + +0000000000000dd4 <.LVL2>: +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:202 + asm volatile + dd4: 00000073 ecall +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:209 + asm volatile("nop" : "=r"(r0)); + dd8: 0001 nop + +0000000000000dda <.LBE4>: +nxsem_destroy(): +/Users/Luppy/ox64/nuttx/syscall/proxies/PROXY_nxsem_destroy.c:10 + return (int)sys_call1((unsigned int)SYS_nxsem_destroy, (uintptr_t)parm1); +} + dda: 2501 sext.w a0,a0 + ddc: 8082 ret + +0000000000000dde : +nxsem_post(): +/Users/Luppy/ox64/nuttx/syscall/proxies/PROXY_nxsem_post.c:8 +#include +#include +#include + +int nxsem_post(FAR sem_t * parm1) +{ + dde: 85aa mv a1,a0 + +0000000000000de0 <.LBB4>: +sys_call1(): +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:199 + register long r0 asm("a0") = (long)(nbr); + de0: 456d li a0,27 + +0000000000000de2 <.LVL2>: +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:202 + asm volatile + de2: 00000073 ecall +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:209 + asm volatile("nop" : "=r"(r0)); + de6: 0001 nop + +0000000000000de8 <.LBE4>: +nxsem_post(): +/Users/Luppy/ox64/nuttx/syscall/proxies/PROXY_nxsem_post.c:10 + return (int)sys_call1((unsigned int)SYS_nxsem_post, (uintptr_t)parm1); +} + de8: 2501 sext.w a0,a0 + dea: 8082 ret + +0000000000000dec : +nxsem_trywait(): +/Users/Luppy/ox64/nuttx/syscall/proxies/PROXY_nxsem_trywait.c:8 +#include +#include +#include + +int nxsem_trywait(FAR sem_t * parm1) +{ + dec: 85aa mv a1,a0 + +0000000000000dee <.LBB4>: +sys_call1(): +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:199 + register long r0 asm("a0") = (long)(nbr); + dee: 4579 li a0,30 + +0000000000000df0 <.LVL2>: +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:202 + asm volatile + df0: 00000073 ecall +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:209 + asm volatile("nop" : "=r"(r0)); + df4: 0001 nop + +0000000000000df6 <.LBE4>: +nxsem_trywait(): +/Users/Luppy/ox64/nuttx/syscall/proxies/PROXY_nxsem_trywait.c:10 + return (int)sys_call1((unsigned int)SYS_nxsem_trywait, (uintptr_t)parm1); +} + df6: 2501 sext.w a0,a0 + df8: 8082 ret + +0000000000000dfa : +nxsem_wait(): +/Users/Luppy/ox64/nuttx/syscall/proxies/PROXY_nxsem_wait.c:8 +#include +#include +#include + +int nxsem_wait(FAR sem_t * parm1) +{ + dfa: 85aa mv a1,a0 + +0000000000000dfc <.LBB4>: +sys_call1(): +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:199 + register long r0 asm("a0") = (long)(nbr); + dfc: 457d li a0,31 + +0000000000000dfe <.LVL2>: +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:202 + asm volatile + dfe: 00000073 ecall +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:209 + asm volatile("nop" : "=r"(r0)); + e02: 0001 nop + +0000000000000e04 <.LBE4>: +nxsem_wait(): +/Users/Luppy/ox64/nuttx/syscall/proxies/PROXY_nxsem_wait.c:10 + return (int)sys_call1((unsigned int)SYS_nxsem_wait, (uintptr_t)parm1); +} + e04: 2501 sext.w a0,a0 + e06: 8082 ret + +0000000000000e08 : +write(): +/Users/Luppy/ox64/nuttx/syscall/proxies/PROXY_write.c:8 +#include +#include +#include + +ssize_t write(int parm1, FAR const void * parm2, size_t parm3) +{ + e08: 872a mv a4,a0 + +0000000000000e0a <.LVL1>: + e0a: 87ae mv a5,a1 + +0000000000000e0c <.LVL2>: + e0c: 86b2 mv a3,a2 + +0000000000000e0e <.LBB4>: +sys_call3(): +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:252 + register long r0 asm("a0") = (long)(nbr); + e0e: 03d00513 li a0,61 + +0000000000000e12 <.LVL4>: +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:253 + register long r1 asm("a1") = (long)(parm1); + e12: 85ba mv a1,a4 + +0000000000000e14 <.LVL5>: +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:254 + register long r2 asm("a2") = (long)(parm2); + e14: 863e mv a2,a5 + +0000000000000e16 <.LVL6>: +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:257 + asm volatile + e16: 00000073 ecall +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:264 + asm volatile("nop" : "=r"(r0)); + e1a: 0001 nop + +0000000000000e1c <.LBE4>: +write(): +/Users/Luppy/ox64/nuttx/syscall/proxies/PROXY_write.c:10 + return (ssize_t)sys_call3((unsigned int)SYS_write, (uintptr_t)parm1, (uintptr_t)parm2, (uintptr_t)parm3); +} + e1c: 8082 ret +Contents of the .debug_abbrev section (loaded from ../apps/bin/hello): + + Number TAG (0x0) + 1 DW_TAG_compile_unit [has children] + DW_AT_producer DW_FORM_strp + DW_AT_language DW_FORM_data1 + DW_AT_name DW_FORM_strp + DW_AT_comp_dir DW_FORM_strp + DW_AT_ranges DW_FORM_sec_offset + DW_AT_low_pc DW_FORM_addr + DW_AT_stmt_list DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 2 DW_TAG_base_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_encoding DW_FORM_data1 + DW_AT_name DW_FORM_strp + DW_AT value: 0 DW_FORM value: 0 + 3 DW_TAG_typedef [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 4 DW_TAG_base_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_encoding DW_FORM_data1 + DW_AT_name DW_FORM_string + DW_AT value: 0 DW_FORM value: 0 + 5 DW_TAG_pointer_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 6 DW_TAG_pointer_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 7 DW_TAG_union_type [has children] + DW_AT_name DW_FORM_strp + DW_AT_byte_size DW_FORM_data1 + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 8 DW_TAG_member [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 9 DW_TAG_structure_type [has children] + DW_AT_name DW_FORM_strp + DW_AT_byte_size DW_FORM_data1 + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 10 DW_TAG_member [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_data_member_location DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 11 DW_TAG_typedef [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 12 DW_TAG_subroutine_type [has children] + DW_AT_prototyped DW_FORM_flag_present + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 13 DW_TAG_formal_parameter [no children] + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 14 DW_TAG_structure_type [no children] + DW_AT_name DW_FORM_strp + DW_AT_declaration DW_FORM_flag_present + DW_AT value: 0 DW_FORM value: 0 + 15 DW_TAG_subprogram [has children] + DW_AT_external DW_FORM_flag_present + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_prototyped DW_FORM_flag_present + DW_AT_low_pc DW_FORM_addr + DW_AT_high_pc DW_FORM_data8 + DW_AT_frame_base DW_FORM_exprloc + DW_AT_GNU_all_call_sites DW_FORM_flag_present + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 16 DW_TAG_formal_parameter [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_location DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 17 DW_TAG_variable [no children] + DW_AT_name DW_FORM_string + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_location DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 18 DW_TAG_GNU_call_site [has children] + DW_AT_low_pc DW_FORM_addr + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 19 DW_TAG_GNU_call_site_parameter [no children] + DW_AT_location DW_FORM_exprloc + DW_AT_GNU_call_site_value DW_FORM_exprloc + DW_AT value: 0 DW_FORM value: 0 + 20 DW_TAG_GNU_call_site [no children] + DW_AT_low_pc DW_FORM_addr + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 21 DW_TAG_subprogram [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_prototyped DW_FORM_flag_present + DW_AT_low_pc DW_FORM_addr + DW_AT_high_pc DW_FORM_data8 + DW_AT_frame_base DW_FORM_exprloc + DW_AT_GNU_all_call_sites DW_FORM_flag_present + DW_AT value: 0 DW_FORM value: 0 + 22 DW_TAG_subprogram [no children] + DW_AT_external DW_FORM_flag_present + DW_AT_declaration DW_FORM_flag_present + DW_AT_linkage_name DW_FORM_strp + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + Number TAG (0x140) + 1 DW_TAG_compile_unit [has children] + DW_AT_producer DW_FORM_strp + DW_AT_language DW_FORM_data1 + DW_AT_name DW_FORM_strp + DW_AT_comp_dir DW_FORM_strp + DW_AT_ranges DW_FORM_sec_offset + DW_AT_low_pc DW_FORM_addr + DW_AT_stmt_list DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 2 DW_TAG_base_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_encoding DW_FORM_data1 + DW_AT_name DW_FORM_strp + DW_AT value: 0 DW_FORM value: 0 + 3 DW_TAG_base_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_encoding DW_FORM_data1 + DW_AT_name DW_FORM_string + DW_AT value: 0 DW_FORM value: 0 + 4 DW_TAG_pointer_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 5 DW_TAG_subprogram [has children] + DW_AT_external DW_FORM_flag_present + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_prototyped DW_FORM_flag_present + DW_AT_type DW_FORM_ref4 + DW_AT_low_pc DW_FORM_addr + DW_AT_high_pc DW_FORM_data8 + DW_AT_frame_base DW_FORM_exprloc + DW_AT_GNU_all_call_sites DW_FORM_flag_present + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 6 DW_TAG_formal_parameter [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_location DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 7 DW_TAG_GNU_call_site [has children] + DW_AT_low_pc DW_FORM_addr + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 8 DW_TAG_GNU_call_site_parameter [no children] + DW_AT_location DW_FORM_exprloc + DW_AT_GNU_call_site_value DW_FORM_exprloc + DW_AT value: 0 DW_FORM value: 0 + 9 DW_TAG_subprogram [no children] + DW_AT_external DW_FORM_flag_present + DW_AT_declaration DW_FORM_flag_present + DW_AT_linkage_name DW_FORM_strp + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + Number TAG (0x1ca) + 1 DW_TAG_compile_unit [has children] + DW_AT_producer DW_FORM_strp + DW_AT_language DW_FORM_data1 + DW_AT_name DW_FORM_strp + DW_AT_comp_dir DW_FORM_strp + DW_AT_ranges DW_FORM_sec_offset + DW_AT_low_pc DW_FORM_addr + DW_AT_stmt_list DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 2 DW_TAG_base_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_encoding DW_FORM_data1 + DW_AT_name DW_FORM_strp + DW_AT value: 0 DW_FORM value: 0 + 3 DW_TAG_typedef [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 4 DW_TAG_base_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_encoding DW_FORM_data1 + DW_AT_name DW_FORM_string + DW_AT value: 0 DW_FORM value: 0 + 5 DW_TAG_volatile_type [no children] + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 6 DW_TAG_pointer_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 7 DW_TAG_pointer_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 8 DW_TAG_const_type [no children] + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 9 DW_TAG_structure_type [has children] + DW_AT_name DW_FORM_strp + DW_AT_byte_size DW_FORM_data1 + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 10 DW_TAG_member [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_data_member_location DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 11 DW_TAG_typedef [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 12 DW_TAG_structure_type [has children] + DW_AT_name DW_FORM_strp + DW_AT_byte_size DW_FORM_data1 + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 13 DW_TAG_member [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_data_member_location DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 14 DW_TAG_member [no children] + DW_AT_name DW_FORM_string + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_data_member_location DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 15 DW_TAG_subroutine_type [has children] + DW_AT_prototyped DW_FORM_flag_present + DW_AT_type DW_FORM_ref4 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 16 DW_TAG_formal_parameter [no children] + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 17 DW_TAG_array_type [has children] + DW_AT_type DW_FORM_ref4 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 18 DW_TAG_subrange_type [no children] + DW_AT_type DW_FORM_ref4 + DW_AT_upper_bound DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 19 DW_TAG_subprogram [has children] + DW_AT_external DW_FORM_flag_present + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_prototyped DW_FORM_flag_present + DW_AT_type DW_FORM_ref4 + DW_AT_low_pc DW_FORM_addr + DW_AT_high_pc DW_FORM_data8 + DW_AT_frame_base DW_FORM_exprloc + DW_AT_GNU_all_call_sites DW_FORM_flag_present + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 20 DW_TAG_formal_parameter [no children] + DW_AT_name DW_FORM_string + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_location DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 21 DW_TAG_variable [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_location DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 22 DW_TAG_variable [no children] + DW_AT_name DW_FORM_string + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_location DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 23 DW_TAG_lexical_block [has children] + DW_AT_low_pc DW_FORM_addr + DW_AT_high_pc DW_FORM_data8 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 24 DW_TAG_variable [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_location DW_FORM_exprloc + DW_AT value: 0 DW_FORM value: 0 + 25 DW_TAG_GNU_call_site [has children] + DW_AT_low_pc DW_FORM_addr + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 26 DW_TAG_GNU_call_site_parameter [no children] + DW_AT_location DW_FORM_exprloc + DW_AT_GNU_call_site_value DW_FORM_exprloc + DW_AT value: 0 DW_FORM value: 0 + 27 DW_TAG_GNU_call_site [has children] + DW_AT_low_pc DW_FORM_addr + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 28 DW_TAG_GNU_call_site [no children] + DW_AT_low_pc DW_FORM_addr + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 29 DW_TAG_subprogram [no children] + DW_AT_external DW_FORM_flag_present + DW_AT_declaration DW_FORM_flag_present + DW_AT_linkage_name DW_FORM_strp + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + Number TAG (0x358) + 1 DW_TAG_compile_unit [has children] + DW_AT_producer DW_FORM_strp + DW_AT_language DW_FORM_data1 + DW_AT_name DW_FORM_strp + DW_AT_comp_dir DW_FORM_strp + DW_AT_ranges DW_FORM_sec_offset + DW_AT_low_pc DW_FORM_addr + DW_AT_stmt_list DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 2 DW_TAG_base_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_encoding DW_FORM_data1 + DW_AT_name DW_FORM_strp + DW_AT value: 0 DW_FORM value: 0 + 3 DW_TAG_typedef [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 4 DW_TAG_base_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_encoding DW_FORM_data1 + DW_AT_name DW_FORM_string + DW_AT value: 0 DW_FORM value: 0 + 5 DW_TAG_volatile_type [no children] + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 6 DW_TAG_pointer_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 7 DW_TAG_pointer_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 8 DW_TAG_const_type [no children] + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 9 DW_TAG_enumeration_type [has children] + DW_AT_encoding DW_FORM_data1 + DW_AT_byte_size DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 10 DW_TAG_enumerator [no children] + DW_AT_name DW_FORM_strp + DW_AT_const_value DW_FORM_sdata + DW_AT value: 0 DW_FORM value: 0 + 11 DW_TAG_enumerator [no children] + DW_AT_name DW_FORM_string + DW_AT_const_value DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 12 DW_TAG_structure_type [has children] + DW_AT_name DW_FORM_strp + DW_AT_byte_size DW_FORM_data1 + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 13 DW_TAG_member [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_data_member_location DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 14 DW_TAG_typedef [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 15 DW_TAG_structure_type [has children] + DW_AT_name DW_FORM_strp + DW_AT_byte_size DW_FORM_data1 + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 16 DW_TAG_member [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_data_member_location DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 17 DW_TAG_member [no children] + DW_AT_name DW_FORM_string + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_data_member_location DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 18 DW_TAG_const_type [no children] + DW_AT value: 0 DW_FORM value: 0 + 19 DW_TAG_subroutine_type [has children] + DW_AT_prototyped DW_FORM_flag_present + DW_AT_type DW_FORM_ref4 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 20 DW_TAG_formal_parameter [no children] + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 21 DW_TAG_array_type [has children] + DW_AT_type DW_FORM_ref4 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 22 DW_TAG_subrange_type [no children] + DW_AT_type DW_FORM_ref4 + DW_AT_upper_bound DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 23 DW_TAG_subprogram [has children] + DW_AT_external DW_FORM_flag_present + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_prototyped DW_FORM_flag_present + DW_AT_type DW_FORM_ref4 + DW_AT_low_pc DW_FORM_addr + DW_AT_high_pc DW_FORM_data8 + DW_AT_frame_base DW_FORM_exprloc + DW_AT_GNU_all_call_sites DW_FORM_flag_present + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 24 DW_TAG_formal_parameter [no children] + DW_AT_name DW_FORM_string + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_location DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 25 DW_TAG_formal_parameter [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_location DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 26 DW_TAG_variable [no children] + DW_AT_name DW_FORM_string + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_location DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 27 DW_TAG_GNU_call_site [has children] + DW_AT_low_pc DW_FORM_addr + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 28 DW_TAG_GNU_call_site_parameter [no children] + DW_AT_location DW_FORM_exprloc + DW_AT_GNU_call_site_value DW_FORM_exprloc + DW_AT value: 0 DW_FORM value: 0 + 29 DW_TAG_GNU_call_site [has children] + DW_AT_low_pc DW_FORM_addr + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 30 DW_TAG_variable [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_location DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 31 DW_TAG_label [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_low_pc DW_FORM_addr + DW_AT value: 0 DW_FORM value: 0 + 32 DW_TAG_lexical_block [has children] + DW_AT_low_pc DW_FORM_addr + DW_AT_high_pc DW_FORM_data8 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 33 DW_TAG_GNU_call_site [no children] + DW_AT_low_pc DW_FORM_addr + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 34 DW_TAG_GNU_call_site [has children] + DW_AT_low_pc DW_FORM_addr + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 35 DW_TAG_subprogram [no children] + DW_AT_external DW_FORM_flag_present + DW_AT_declaration DW_FORM_flag_present + DW_AT_linkage_name DW_FORM_strp + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 36 DW_TAG_subprogram [no children] + DW_AT_external DW_FORM_flag_present + DW_AT_declaration DW_FORM_flag_present + DW_AT_linkage_name DW_FORM_strp + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 37 DW_TAG_subprogram [no children] + DW_AT_external DW_FORM_flag_present + DW_AT_declaration DW_FORM_flag_present + DW_AT_linkage_name DW_FORM_strp + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + Number TAG (0x54e) + 1 DW_TAG_compile_unit [has children] + DW_AT_producer DW_FORM_strp + DW_AT_language DW_FORM_data1 + DW_AT_name DW_FORM_strp + DW_AT_comp_dir DW_FORM_strp + DW_AT_ranges DW_FORM_sec_offset + DW_AT_low_pc DW_FORM_addr + DW_AT_stmt_list DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 2 DW_TAG_base_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_encoding DW_FORM_data1 + DW_AT_name DW_FORM_strp + DW_AT value: 0 DW_FORM value: 0 + 3 DW_TAG_typedef [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 4 DW_TAG_base_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_encoding DW_FORM_data1 + DW_AT_name DW_FORM_string + DW_AT value: 0 DW_FORM value: 0 + 5 DW_TAG_volatile_type [no children] + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 6 DW_TAG_pointer_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 7 DW_TAG_pointer_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 8 DW_TAG_const_type [no children] + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 9 DW_TAG_structure_type [has children] + DW_AT_name DW_FORM_strp + DW_AT_byte_size DW_FORM_data1 + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 10 DW_TAG_member [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_data_member_location DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 11 DW_TAG_typedef [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 12 DW_TAG_structure_type [has children] + DW_AT_name DW_FORM_strp + DW_AT_byte_size DW_FORM_data1 + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 13 DW_TAG_member [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_data_member_location DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 14 DW_TAG_member [no children] + DW_AT_name DW_FORM_string + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_data_member_location DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 15 DW_TAG_subroutine_type [has children] + DW_AT_prototyped DW_FORM_flag_present + DW_AT_type DW_FORM_ref4 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 16 DW_TAG_formal_parameter [no children] + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 17 DW_TAG_array_type [has children] + DW_AT_type DW_FORM_ref4 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 18 DW_TAG_subrange_type [no children] + DW_AT_type DW_FORM_ref4 + DW_AT_upper_bound DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 19 DW_TAG_subprogram [has children] + DW_AT_external DW_FORM_flag_present + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_prototyped DW_FORM_flag_present + DW_AT_type DW_FORM_ref4 + DW_AT_low_pc DW_FORM_addr + DW_AT_high_pc DW_FORM_data8 + DW_AT_frame_base DW_FORM_exprloc + DW_AT_GNU_all_call_sites DW_FORM_flag_present + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 20 DW_TAG_formal_parameter [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_location DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 21 DW_TAG_variable [no children] + DW_AT_name DW_FORM_string + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_location DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 22 DW_TAG_GNU_call_site [has children] + DW_AT_low_pc DW_FORM_addr + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 23 DW_TAG_GNU_call_site_parameter [no children] + DW_AT_location DW_FORM_exprloc + DW_AT_GNU_call_site_value DW_FORM_exprloc + DW_AT value: 0 DW_FORM value: 0 + 24 DW_TAG_GNU_call_site [has children] + DW_AT_low_pc DW_FORM_addr + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 25 DW_TAG_variable [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_location DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 26 DW_TAG_variable [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 27 DW_TAG_GNU_call_site [has children] + DW_AT_low_pc DW_FORM_addr + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 28 DW_TAG_GNU_call_site [no children] + DW_AT_low_pc DW_FORM_addr + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 29 DW_TAG_subprogram [no children] + DW_AT_external DW_FORM_flag_present + DW_AT_declaration DW_FORM_flag_present + DW_AT_linkage_name DW_FORM_strp + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 30 DW_TAG_subprogram [no children] + DW_AT_external DW_FORM_flag_present + DW_AT_declaration DW_FORM_flag_present + DW_AT_linkage_name DW_FORM_strp + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + Number TAG (0x6ed) + 1 DW_TAG_compile_unit [has children] + DW_AT_producer DW_FORM_strp + DW_AT_language DW_FORM_data1 + DW_AT_name DW_FORM_strp + DW_AT_comp_dir DW_FORM_strp + DW_AT_ranges DW_FORM_sec_offset + DW_AT_low_pc DW_FORM_addr + DW_AT_stmt_list DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 2 DW_TAG_base_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_encoding DW_FORM_data1 + DW_AT_name DW_FORM_strp + DW_AT value: 0 DW_FORM value: 0 + 3 DW_TAG_typedef [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 4 DW_TAG_base_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_encoding DW_FORM_data1 + DW_AT_name DW_FORM_string + DW_AT value: 0 DW_FORM value: 0 + 5 DW_TAG_volatile_type [no children] + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 6 DW_TAG_pointer_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 7 DW_TAG_pointer_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 8 DW_TAG_const_type [no children] + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 9 DW_TAG_enumeration_type [has children] + DW_AT_encoding DW_FORM_data1 + DW_AT_byte_size DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 10 DW_TAG_enumerator [no children] + DW_AT_name DW_FORM_strp + DW_AT_const_value DW_FORM_sdata + DW_AT value: 0 DW_FORM value: 0 + 11 DW_TAG_enumerator [no children] + DW_AT_name DW_FORM_string + DW_AT_const_value DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 12 DW_TAG_structure_type [has children] + DW_AT_name DW_FORM_strp + DW_AT_byte_size DW_FORM_data1 + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 13 DW_TAG_member [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_data_member_location DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 14 DW_TAG_typedef [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 15 DW_TAG_structure_type [has children] + DW_AT_name DW_FORM_strp + DW_AT_byte_size DW_FORM_data1 + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 16 DW_TAG_member [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_data_member_location DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 17 DW_TAG_member [no children] + DW_AT_name DW_FORM_string + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_data_member_location DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 18 DW_TAG_subroutine_type [has children] + DW_AT_prototyped DW_FORM_flag_present + DW_AT_type DW_FORM_ref4 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 19 DW_TAG_formal_parameter [no children] + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 20 DW_TAG_array_type [has children] + DW_AT_type DW_FORM_ref4 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 21 DW_TAG_subrange_type [no children] + DW_AT_type DW_FORM_ref4 + DW_AT_upper_bound DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 22 DW_TAG_subprogram [has children] + DW_AT_external DW_FORM_flag_present + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_prototyped DW_FORM_flag_present + DW_AT_type DW_FORM_ref4 + DW_AT_low_pc DW_FORM_addr + DW_AT_high_pc DW_FORM_data8 + DW_AT_frame_base DW_FORM_exprloc + DW_AT_GNU_all_call_sites DW_FORM_flag_present + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 23 DW_TAG_formal_parameter [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_location DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 24 DW_TAG_variable [no children] + DW_AT_name DW_FORM_string + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_location DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 25 DW_TAG_lexical_block [has children] + DW_AT_ranges DW_FORM_sec_offset + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 26 DW_TAG_variable [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_location DW_FORM_exprloc + DW_AT value: 0 DW_FORM value: 0 + 27 DW_TAG_GNU_call_site [has children] + DW_AT_low_pc DW_FORM_addr + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 28 DW_TAG_GNU_call_site_parameter [no children] + DW_AT_location DW_FORM_exprloc + DW_AT_GNU_call_site_value DW_FORM_exprloc + DW_AT value: 0 DW_FORM value: 0 + 29 DW_TAG_GNU_call_site [no children] + DW_AT_low_pc DW_FORM_addr + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 30 DW_TAG_subprogram [no children] + DW_AT_external DW_FORM_flag_present + DW_AT_declaration DW_FORM_flag_present + DW_AT_linkage_name DW_FORM_strp + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + Number TAG (0x880) + 1 DW_TAG_compile_unit [has children] + DW_AT_producer DW_FORM_strp + DW_AT_language DW_FORM_data1 + DW_AT_name DW_FORM_strp + DW_AT_comp_dir DW_FORM_strp + DW_AT_ranges DW_FORM_sec_offset + DW_AT_low_pc DW_FORM_addr + DW_AT_stmt_list DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 2 DW_TAG_base_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_encoding DW_FORM_data1 + DW_AT_name DW_FORM_strp + DW_AT value: 0 DW_FORM value: 0 + 3 DW_TAG_typedef [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 4 DW_TAG_base_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_encoding DW_FORM_data1 + DW_AT_name DW_FORM_string + DW_AT value: 0 DW_FORM value: 0 + 5 DW_TAG_volatile_type [no children] + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 6 DW_TAG_pointer_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 7 DW_TAG_pointer_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 8 DW_TAG_const_type [no children] + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 9 DW_TAG_structure_type [has children] + DW_AT_name DW_FORM_strp + DW_AT_byte_size DW_FORM_data1 + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 10 DW_TAG_member [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_data_member_location DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 11 DW_TAG_typedef [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 12 DW_TAG_structure_type [has children] + DW_AT_name DW_FORM_strp + DW_AT_byte_size DW_FORM_data1 + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 13 DW_TAG_member [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_data_member_location DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 14 DW_TAG_member [no children] + DW_AT_name DW_FORM_string + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_data_member_location DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 15 DW_TAG_subroutine_type [has children] + DW_AT_prototyped DW_FORM_flag_present + DW_AT_type DW_FORM_ref4 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 16 DW_TAG_formal_parameter [no children] + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 17 DW_TAG_array_type [has children] + DW_AT_type DW_FORM_ref4 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 18 DW_TAG_subrange_type [no children] + DW_AT_type DW_FORM_ref4 + DW_AT_upper_bound DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 19 DW_TAG_subprogram [has children] + DW_AT_external DW_FORM_flag_present + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_prototyped DW_FORM_flag_present + DW_AT_type DW_FORM_ref4 + DW_AT_low_pc DW_FORM_addr + DW_AT_high_pc DW_FORM_data8 + DW_AT_frame_base DW_FORM_exprloc + DW_AT_GNU_all_call_sites DW_FORM_flag_present + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 20 DW_TAG_formal_parameter [no children] + DW_AT_name DW_FORM_string + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_location DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 21 DW_TAG_formal_parameter [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_location DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 22 DW_TAG_variable [no children] + DW_AT_name DW_FORM_string + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_location DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 23 DW_TAG_GNU_call_site [has children] + DW_AT_low_pc DW_FORM_addr + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 24 DW_TAG_GNU_call_site_parameter [no children] + DW_AT_location DW_FORM_exprloc + DW_AT_GNU_call_site_value DW_FORM_exprloc + DW_AT value: 0 DW_FORM value: 0 + 25 DW_TAG_GNU_call_site [has children] + DW_AT_low_pc DW_FORM_addr + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 26 DW_TAG_subprogram [has children] + DW_AT_external DW_FORM_flag_present + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_prototyped DW_FORM_flag_present + DW_AT_type DW_FORM_ref4 + DW_AT_inline DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 27 DW_TAG_formal_parameter [no children] + DW_AT_name DW_FORM_string + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 28 DW_TAG_formal_parameter [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 29 DW_TAG_variable [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 30 DW_TAG_lexical_block [has children] + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 31 DW_TAG_variable [no children] + DW_AT_name DW_FORM_string + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 32 DW_TAG_lexical_block [has children] + DW_AT value: 0 DW_FORM value: 0 + 33 DW_TAG_subprogram [has children] + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT_low_pc DW_FORM_addr + DW_AT_high_pc DW_FORM_data8 + DW_AT_frame_base DW_FORM_exprloc + DW_AT_GNU_all_call_sites DW_FORM_flag_present + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 34 DW_TAG_formal_parameter [no children] + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT_location DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 35 DW_TAG_variable [no children] + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT_location DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 36 DW_TAG_lexical_block [has children] + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT_low_pc DW_FORM_addr + DW_AT_high_pc DW_FORM_data8 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 37 DW_TAG_inlined_subroutine [has children] + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT_entry_pc DW_FORM_addr + DW_AT_ranges DW_FORM_sec_offset + DW_AT_call_file DW_FORM_data1 + DW_AT_call_line DW_FORM_data1 + DW_AT_call_column DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 38 DW_TAG_formal_parameter [no children] + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 39 DW_TAG_lexical_block [has children] + DW_AT_ranges DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 40 DW_TAG_lexical_block [has children] + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT_ranges DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 41 DW_TAG_subprogram [no children] + DW_AT_external DW_FORM_flag_present + DW_AT_declaration DW_FORM_flag_present + DW_AT_linkage_name DW_FORM_strp + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + Number TAG (0xa9f) + 1 DW_TAG_compile_unit [has children] + DW_AT_producer DW_FORM_strp + DW_AT_language DW_FORM_data1 + DW_AT_name DW_FORM_strp + DW_AT_comp_dir DW_FORM_strp + DW_AT_ranges DW_FORM_sec_offset + DW_AT_low_pc DW_FORM_addr + DW_AT_stmt_list DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 2 DW_TAG_base_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_encoding DW_FORM_data1 + DW_AT_name DW_FORM_strp + DW_AT value: 0 DW_FORM value: 0 + 3 DW_TAG_typedef [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 4 DW_TAG_base_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_encoding DW_FORM_data1 + DW_AT_name DW_FORM_string + DW_AT value: 0 DW_FORM value: 0 + 5 DW_TAG_volatile_type [no children] + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 6 DW_TAG_pointer_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 7 DW_TAG_pointer_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 8 DW_TAG_const_type [no children] + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 9 DW_TAG_structure_type [has children] + DW_AT_name DW_FORM_strp + DW_AT_byte_size DW_FORM_data1 + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 10 DW_TAG_member [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_data_member_location DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 11 DW_TAG_typedef [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 12 DW_TAG_structure_type [has children] + DW_AT_name DW_FORM_strp + DW_AT_byte_size DW_FORM_data1 + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 13 DW_TAG_member [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_data_member_location DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 14 DW_TAG_member [no children] + DW_AT_name DW_FORM_string + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_data_member_location DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 15 DW_TAG_subroutine_type [has children] + DW_AT_prototyped DW_FORM_flag_present + DW_AT_type DW_FORM_ref4 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 16 DW_TAG_formal_parameter [no children] + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 17 DW_TAG_array_type [has children] + DW_AT_type DW_FORM_ref4 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 18 DW_TAG_subrange_type [no children] + DW_AT_type DW_FORM_ref4 + DW_AT_upper_bound DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 19 DW_TAG_subprogram [has children] + DW_AT_external DW_FORM_flag_present + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_prototyped DW_FORM_flag_present + DW_AT_low_pc DW_FORM_addr + DW_AT_high_pc DW_FORM_data8 + DW_AT_frame_base DW_FORM_exprloc + DW_AT_GNU_all_call_sites DW_FORM_flag_present + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 20 DW_TAG_formal_parameter [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_location DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 21 DW_TAG_GNU_call_site [has children] + DW_AT_low_pc DW_FORM_addr + DW_AT_GNU_tail_call DW_FORM_flag_present + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 22 DW_TAG_GNU_call_site_parameter [no children] + DW_AT_location DW_FORM_exprloc + DW_AT_GNU_call_site_value DW_FORM_exprloc + DW_AT value: 0 DW_FORM value: 0 + 23 DW_TAG_subprogram [has children] + DW_AT_external DW_FORM_flag_present + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_prototyped DW_FORM_flag_present + DW_AT_type DW_FORM_ref4 + DW_AT_low_pc DW_FORM_addr + DW_AT_high_pc DW_FORM_data8 + DW_AT_frame_base DW_FORM_exprloc + DW_AT_GNU_all_call_sites DW_FORM_flag_present + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 24 DW_TAG_subprogram [no children] + DW_AT_external DW_FORM_flag_present + DW_AT_declaration DW_FORM_flag_present + DW_AT_linkage_name DW_FORM_strp + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + Number TAG (0xbf6) + 1 DW_TAG_compile_unit [has children] + DW_AT_producer DW_FORM_strp + DW_AT_language DW_FORM_data1 + DW_AT_name DW_FORM_strp + DW_AT_comp_dir DW_FORM_strp + DW_AT_ranges DW_FORM_sec_offset + DW_AT_low_pc DW_FORM_addr + DW_AT_stmt_list DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 2 DW_TAG_base_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_encoding DW_FORM_data1 + DW_AT_name DW_FORM_strp + DW_AT value: 0 DW_FORM value: 0 + 3 DW_TAG_typedef [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 4 DW_TAG_base_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_encoding DW_FORM_data1 + DW_AT_name DW_FORM_string + DW_AT value: 0 DW_FORM value: 0 + 5 DW_TAG_volatile_type [no children] + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 6 DW_TAG_pointer_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 7 DW_TAG_pointer_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 8 DW_TAG_const_type [no children] + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 9 DW_TAG_structure_type [has children] + DW_AT_name DW_FORM_strp + DW_AT_byte_size DW_FORM_data1 + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 10 DW_TAG_member [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_data_member_location DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 11 DW_TAG_typedef [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 12 DW_TAG_structure_type [has children] + DW_AT_name DW_FORM_strp + DW_AT_byte_size DW_FORM_data1 + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 13 DW_TAG_member [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_data_member_location DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 14 DW_TAG_member [no children] + DW_AT_name DW_FORM_string + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_data_member_location DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 15 DW_TAG_subroutine_type [has children] + DW_AT_prototyped DW_FORM_flag_present + DW_AT_type DW_FORM_ref4 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 16 DW_TAG_formal_parameter [no children] + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 17 DW_TAG_array_type [has children] + DW_AT_type DW_FORM_ref4 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 18 DW_TAG_subrange_type [no children] + DW_AT_type DW_FORM_ref4 + DW_AT_upper_bound DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 19 DW_TAG_structure_type [has children] + DW_AT_name DW_FORM_strp + DW_AT_byte_size DW_FORM_data2 + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 20 DW_TAG_member [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_data_member_location DW_FORM_data2 + DW_AT value: 0 DW_FORM value: 0 + 21 DW_TAG_structure_type [has children] + DW_AT_name DW_FORM_strp + DW_AT_byte_size DW_FORM_data2 + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 22 DW_TAG_subprogram [has children] + DW_AT_external DW_FORM_flag_present + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_prototyped DW_FORM_flag_present + DW_AT_type DW_FORM_ref4 + DW_AT_low_pc DW_FORM_addr + DW_AT_high_pc DW_FORM_data8 + DW_AT_frame_base DW_FORM_exprloc + DW_AT_GNU_all_call_sites DW_FORM_flag_present + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 23 DW_TAG_formal_parameter [no children] + DW_AT_name DW_FORM_string + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_location DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 24 DW_TAG_inlined_subroutine [has children] + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT_entry_pc DW_FORM_addr + DW_AT_ranges DW_FORM_sec_offset + DW_AT_call_file DW_FORM_data1 + DW_AT_call_line DW_FORM_data1 + DW_AT_call_column DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 25 DW_TAG_lexical_block [has children] + DW_AT_ranges DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 26 DW_TAG_variable [no children] + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 27 DW_TAG_GNU_call_site [no children] + DW_AT_low_pc DW_FORM_addr + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 28 DW_TAG_subprogram [has children] + DW_AT_external DW_FORM_flag_present + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_prototyped DW_FORM_flag_present + DW_AT_type DW_FORM_ref4 + DW_AT_inline DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 29 DW_TAG_variable [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 30 DW_TAG_subprogram [has children] + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT_low_pc DW_FORM_addr + DW_AT_high_pc DW_FORM_data8 + DW_AT_frame_base DW_FORM_exprloc + DW_AT_GNU_all_call_sites DW_FORM_flag_present + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 31 DW_TAG_variable [no children] + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT_location DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 32 DW_TAG_subprogram [no children] + DW_AT_external DW_FORM_flag_present + DW_AT_declaration DW_FORM_flag_present + DW_AT_linkage_name DW_FORM_strp + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + Number TAG (0xdb5) + 1 DW_TAG_compile_unit [has children] + DW_AT_producer DW_FORM_strp + DW_AT_language DW_FORM_data1 + DW_AT_name DW_FORM_strp + DW_AT_comp_dir DW_FORM_strp + DW_AT_ranges DW_FORM_sec_offset + DW_AT_low_pc DW_FORM_addr + DW_AT_stmt_list DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 2 DW_TAG_base_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_encoding DW_FORM_data1 + DW_AT_name DW_FORM_strp + DW_AT value: 0 DW_FORM value: 0 + 3 DW_TAG_base_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_encoding DW_FORM_data1 + DW_AT_name DW_FORM_string + DW_AT value: 0 DW_FORM value: 0 + 4 DW_TAG_pointer_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 5 DW_TAG_variable [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_external DW_FORM_flag_present + DW_AT_declaration DW_FORM_flag_present + DW_AT value: 0 DW_FORM value: 0 + 6 DW_TAG_variable [no children] + DW_AT_specification DW_FORM_ref4 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_location DW_FORM_exprloc + DW_AT value: 0 DW_FORM value: 0 + 7 DW_TAG_subprogram [has children] + DW_AT_external DW_FORM_flag_present + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_prototyped DW_FORM_flag_present + DW_AT_noreturn DW_FORM_flag_present + DW_AT_low_pc DW_FORM_addr + DW_AT_high_pc DW_FORM_data8 + DW_AT_frame_base DW_FORM_exprloc + DW_AT_GNU_all_call_sites DW_FORM_flag_present + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 8 DW_TAG_formal_parameter [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_location DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 9 DW_TAG_GNU_call_site [no children] + DW_AT_low_pc DW_FORM_addr + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 10 DW_TAG_GNU_call_site [has children] + DW_AT_low_pc DW_FORM_addr + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 11 DW_TAG_GNU_call_site_parameter [no children] + DW_AT_location DW_FORM_exprloc + DW_AT_GNU_call_site_value DW_FORM_exprloc + DW_AT value: 0 DW_FORM value: 0 + 12 DW_TAG_GNU_call_site [has children] + DW_AT_low_pc DW_FORM_addr + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 13 DW_TAG_subprogram [no children] + DW_AT_external DW_FORM_flag_present + DW_AT_declaration DW_FORM_flag_present + DW_AT_linkage_name DW_FORM_strp + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 14 DW_TAG_subprogram [no children] + DW_AT_external DW_FORM_flag_present + DW_AT_declaration DW_FORM_flag_present + DW_AT_linkage_name DW_FORM_strp + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + Number TAG (0xe8b) + 1 DW_TAG_compile_unit [has children] + DW_AT_producer DW_FORM_strp + DW_AT_language DW_FORM_data1 + DW_AT_name DW_FORM_strp + DW_AT_comp_dir DW_FORM_strp + DW_AT_ranges DW_FORM_sec_offset + DW_AT_low_pc DW_FORM_addr + DW_AT_stmt_list DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 2 DW_TAG_base_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_encoding DW_FORM_data1 + DW_AT_name DW_FORM_strp + DW_AT value: 0 DW_FORM value: 0 + 3 DW_TAG_base_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_encoding DW_FORM_data1 + DW_AT_name DW_FORM_string + DW_AT value: 0 DW_FORM value: 0 + 4 DW_TAG_typedef [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 5 DW_TAG_const_type [no children] + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 6 DW_TAG_pointer_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 7 DW_TAG_subprogram [has children] + DW_AT_external DW_FORM_flag_present + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_prototyped DW_FORM_flag_present + DW_AT_type DW_FORM_ref4 + DW_AT_low_pc DW_FORM_addr + DW_AT_high_pc DW_FORM_data8 + DW_AT_frame_base DW_FORM_exprloc + DW_AT_GNU_all_call_sites DW_FORM_flag_present + DW_AT value: 0 DW_FORM value: 0 + 8 DW_TAG_formal_parameter [no children] + DW_AT_name DW_FORM_string + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_location DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 9 DW_TAG_variable [no children] + DW_AT_name DW_FORM_string + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_location DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + Number TAG (0xf12) + 1 DW_TAG_compile_unit [has children] + DW_AT_producer DW_FORM_strp + DW_AT_language DW_FORM_data1 + DW_AT_name DW_FORM_strp + DW_AT_comp_dir DW_FORM_strp + DW_AT_ranges DW_FORM_sec_offset + DW_AT_low_pc DW_FORM_addr + DW_AT_stmt_list DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 2 DW_TAG_base_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_encoding DW_FORM_data1 + DW_AT_name DW_FORM_strp + DW_AT value: 0 DW_FORM value: 0 + 3 DW_TAG_base_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_encoding DW_FORM_data1 + DW_AT_name DW_FORM_string + DW_AT value: 0 DW_FORM value: 0 + 4 DW_TAG_typedef [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 5 DW_TAG_pointer_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 6 DW_TAG_pointer_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 7 DW_TAG_const_type [no children] + DW_AT value: 0 DW_FORM value: 0 + 8 DW_TAG_subprogram [has children] + DW_AT_external DW_FORM_flag_present + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_prototyped DW_FORM_flag_present + DW_AT_type DW_FORM_ref4 + DW_AT_low_pc DW_FORM_addr + DW_AT_high_pc DW_FORM_data8 + DW_AT_frame_base DW_FORM_exprloc + DW_AT_GNU_all_call_sites DW_FORM_flag_present + DW_AT value: 0 DW_FORM value: 0 + 9 DW_TAG_formal_parameter [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_location DW_FORM_exprloc + DW_AT value: 0 DW_FORM value: 0 + 10 DW_TAG_formal_parameter [no children] + DW_AT_name DW_FORM_string + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_location DW_FORM_exprloc + DW_AT value: 0 DW_FORM value: 0 + 11 DW_TAG_formal_parameter [no children] + DW_AT_name DW_FORM_string + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_location DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 12 DW_TAG_variable [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_location DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 13 DW_TAG_variable [no children] + DW_AT_name DW_FORM_string + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_location DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + Number TAG (0xfd1) + 1 DW_TAG_compile_unit [has children] + DW_AT_producer DW_FORM_strp + DW_AT_language DW_FORM_data1 + DW_AT_name DW_FORM_strp + DW_AT_comp_dir DW_FORM_strp + DW_AT_ranges DW_FORM_sec_offset + DW_AT_low_pc DW_FORM_addr + DW_AT_stmt_list DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 2 DW_TAG_base_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_encoding DW_FORM_data1 + DW_AT_name DW_FORM_strp + DW_AT value: 0 DW_FORM value: 0 + 3 DW_TAG_typedef [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 4 DW_TAG_base_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_encoding DW_FORM_data1 + DW_AT_name DW_FORM_string + DW_AT value: 0 DW_FORM value: 0 + 5 DW_TAG_volatile_type [no children] + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 6 DW_TAG_pointer_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 7 DW_TAG_pointer_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 8 DW_TAG_const_type [no children] + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 9 DW_TAG_structure_type [has children] + DW_AT_name DW_FORM_strp + DW_AT_byte_size DW_FORM_data1 + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 10 DW_TAG_member [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_data_member_location DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 11 DW_TAG_typedef [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 12 DW_TAG_structure_type [has children] + DW_AT_name DW_FORM_strp + DW_AT_byte_size DW_FORM_data1 + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 13 DW_TAG_member [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_data_member_location DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 14 DW_TAG_member [no children] + DW_AT_name DW_FORM_string + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_data_member_location DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 15 DW_TAG_subroutine_type [has children] + DW_AT_prototyped DW_FORM_flag_present + DW_AT_type DW_FORM_ref4 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 16 DW_TAG_formal_parameter [no children] + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 17 DW_TAG_array_type [has children] + DW_AT_type DW_FORM_ref4 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 18 DW_TAG_subrange_type [no children] + DW_AT_type DW_FORM_ref4 + DW_AT_upper_bound DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 19 DW_TAG_structure_type [has children] + DW_AT_name DW_FORM_strp + DW_AT_byte_size DW_FORM_data2 + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 20 DW_TAG_member [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_data_member_location DW_FORM_data2 + DW_AT value: 0 DW_FORM value: 0 + 21 DW_TAG_structure_type [has children] + DW_AT_name DW_FORM_strp + DW_AT_byte_size DW_FORM_data2 + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 22 DW_TAG_subprogram [has children] + DW_AT_external DW_FORM_flag_present + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_prototyped DW_FORM_flag_present + DW_AT_type DW_FORM_ref4 + DW_AT_low_pc DW_FORM_addr + DW_AT_high_pc DW_FORM_data8 + DW_AT_frame_base DW_FORM_exprloc + DW_AT_GNU_all_call_sites DW_FORM_flag_present + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 23 DW_TAG_variable [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_location DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 24 DW_TAG_inlined_subroutine [has children] + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT_entry_pc DW_FORM_addr + DW_AT_ranges DW_FORM_sec_offset + DW_AT_call_file DW_FORM_data1 + DW_AT_call_line DW_FORM_data1 + DW_AT_call_column DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 25 DW_TAG_lexical_block [has children] + DW_AT_ranges DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 26 DW_TAG_variable [no children] + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 27 DW_TAG_subprogram [has children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_prototyped DW_FORM_flag_present + DW_AT_type DW_FORM_ref4 + DW_AT_inline DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 28 DW_TAG_variable [no children] + DW_AT_name DW_FORM_string + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + Number TAG (0x1153) + 1 DW_TAG_compile_unit [has children] + DW_AT_producer DW_FORM_strp + DW_AT_language DW_FORM_data1 + DW_AT_name DW_FORM_strp + DW_AT_comp_dir DW_FORM_strp + DW_AT_ranges DW_FORM_sec_offset + DW_AT_low_pc DW_FORM_addr + DW_AT_stmt_list DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 2 DW_TAG_base_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_encoding DW_FORM_data1 + DW_AT_name DW_FORM_strp + DW_AT value: 0 DW_FORM value: 0 + 3 DW_TAG_typedef [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 4 DW_TAG_base_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_encoding DW_FORM_data1 + DW_AT_name DW_FORM_string + DW_AT value: 0 DW_FORM value: 0 + 5 DW_TAG_volatile_type [no children] + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 6 DW_TAG_pointer_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 7 DW_TAG_pointer_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 8 DW_TAG_const_type [no children] + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 9 DW_TAG_structure_type [has children] + DW_AT_name DW_FORM_strp + DW_AT_byte_size DW_FORM_data1 + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 10 DW_TAG_member [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_data_member_location DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 11 DW_TAG_typedef [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 12 DW_TAG_structure_type [has children] + DW_AT_name DW_FORM_strp + DW_AT_byte_size DW_FORM_data1 + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 13 DW_TAG_member [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_data_member_location DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 14 DW_TAG_member [no children] + DW_AT_name DW_FORM_string + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_data_member_location DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 15 DW_TAG_subroutine_type [has children] + DW_AT_prototyped DW_FORM_flag_present + DW_AT_type DW_FORM_ref4 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 16 DW_TAG_formal_parameter [no children] + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 17 DW_TAG_array_type [has children] + DW_AT_type DW_FORM_ref4 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 18 DW_TAG_subrange_type [no children] + DW_AT_type DW_FORM_ref4 + DW_AT_upper_bound DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 19 DW_TAG_structure_type [has children] + DW_AT_name DW_FORM_strp + DW_AT_byte_size DW_FORM_data2 + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 20 DW_TAG_member [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_data_member_location DW_FORM_data2 + DW_AT value: 0 DW_FORM value: 0 + 21 DW_TAG_structure_type [has children] + DW_AT_name DW_FORM_strp + DW_AT_byte_size DW_FORM_data2 + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 22 DW_TAG_variable [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_location DW_FORM_exprloc + DW_AT value: 0 DW_FORM value: 0 + 23 DW_TAG_subprogram [has children] + DW_AT_external DW_FORM_flag_present + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_prototyped DW_FORM_flag_present + DW_AT_type DW_FORM_ref4 + DW_AT_low_pc DW_FORM_addr + DW_AT_high_pc DW_FORM_data8 + DW_AT_frame_base DW_FORM_exprloc + DW_AT_GNU_all_call_sites DW_FORM_flag_present + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 24 DW_TAG_inlined_subroutine [has children] + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT_entry_pc DW_FORM_addr + DW_AT_ranges DW_FORM_sec_offset + DW_AT_call_file DW_FORM_data1 + DW_AT_call_line DW_FORM_data1 + DW_AT_call_column DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 25 DW_TAG_lexical_block [has children] + DW_AT_ranges DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 26 DW_TAG_variable [no children] + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 27 DW_TAG_subprogram [has children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_prototyped DW_FORM_flag_present + DW_AT_type DW_FORM_ref4 + DW_AT_inline DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 28 DW_TAG_variable [no children] + DW_AT_name DW_FORM_string + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + Number TAG (0x12d5) + 1 DW_TAG_compile_unit [has children] + DW_AT_producer DW_FORM_strp + DW_AT_language DW_FORM_data1 + DW_AT_name DW_FORM_strp + DW_AT_comp_dir DW_FORM_strp + DW_AT_ranges DW_FORM_sec_offset + DW_AT_low_pc DW_FORM_addr + DW_AT_stmt_list DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 2 DW_TAG_base_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_encoding DW_FORM_data1 + DW_AT_name DW_FORM_strp + DW_AT value: 0 DW_FORM value: 0 + 3 DW_TAG_typedef [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 4 DW_TAG_base_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_encoding DW_FORM_data1 + DW_AT_name DW_FORM_string + DW_AT value: 0 DW_FORM value: 0 + 5 DW_TAG_volatile_type [no children] + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 6 DW_TAG_enumeration_type [has children] + DW_AT_encoding DW_FORM_data1 + DW_AT_byte_size DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 7 DW_TAG_enumerator [no children] + DW_AT_name DW_FORM_strp + DW_AT_const_value DW_FORM_sdata + DW_AT value: 0 DW_FORM value: 0 + 8 DW_TAG_enumerator [no children] + DW_AT_name DW_FORM_string + DW_AT_const_value DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 9 DW_TAG_structure_type [has children] + DW_AT_name DW_FORM_strp + DW_AT_byte_size DW_FORM_data1 + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 10 DW_TAG_member [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_data_member_location DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 11 DW_TAG_structure_type [has children] + DW_AT_name DW_FORM_strp + DW_AT_byte_size DW_FORM_data1 + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 12 DW_TAG_member [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_data_member_location DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 13 DW_TAG_pointer_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 14 DW_TAG_typedef [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 15 DW_TAG_member [no children] + DW_AT_name DW_FORM_string + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_data_member_location DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 16 DW_TAG_subprogram [has children] + DW_AT_external DW_FORM_flag_present + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_prototyped DW_FORM_flag_present + DW_AT_type DW_FORM_ref4 + DW_AT_low_pc DW_FORM_addr + DW_AT_high_pc DW_FORM_data8 + DW_AT_frame_base DW_FORM_exprloc + DW_AT_GNU_all_call_sites DW_FORM_flag_present + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 17 DW_TAG_formal_parameter [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_location DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 18 DW_TAG_variable [no children] + DW_AT_name DW_FORM_string + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_location DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 19 DW_TAG_GNU_call_site [has children] + DW_AT_low_pc DW_FORM_addr + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 20 DW_TAG_GNU_call_site_parameter [no children] + DW_AT_location DW_FORM_exprloc + DW_AT_GNU_call_site_value DW_FORM_exprloc + DW_AT value: 0 DW_FORM value: 0 + 21 DW_TAG_inlined_subroutine [has children] + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT_entry_pc DW_FORM_addr + DW_AT_ranges DW_FORM_sec_offset + DW_AT_call_file DW_FORM_data1 + DW_AT_call_line DW_FORM_data2 + DW_AT_call_column DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 22 DW_TAG_formal_parameter [no children] + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT_location DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 23 DW_TAG_GNU_call_site [has children] + DW_AT_low_pc DW_FORM_addr + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 24 DW_TAG_inlined_subroutine [has children] + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT_low_pc DW_FORM_addr + DW_AT_high_pc DW_FORM_data8 + DW_AT_call_file DW_FORM_data1 + DW_AT_call_line DW_FORM_data2 + DW_AT_call_column DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 25 DW_TAG_GNU_call_site [has children] + DW_AT_low_pc DW_FORM_addr + DW_AT_GNU_tail_call DW_FORM_flag_present + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 26 DW_TAG_subprogram [has children] + DW_AT_external DW_FORM_flag_present + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_prototyped DW_FORM_flag_present + DW_AT_type DW_FORM_ref4 + DW_AT_inline DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 27 DW_TAG_formal_parameter [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 28 DW_TAG_variable [no children] + DW_AT_name DW_FORM_string + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_location DW_FORM_exprloc + DW_AT value: 0 DW_FORM value: 0 + 29 DW_TAG_subprogram [has children] + DW_AT_external DW_FORM_flag_present + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_prototyped DW_FORM_flag_present + DW_AT_type DW_FORM_ref4 + DW_AT_inline DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 30 DW_TAG_variable [no children] + DW_AT_name DW_FORM_string + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 31 DW_TAG_subprogram [has children] + DW_AT_external DW_FORM_flag_present + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_prototyped DW_FORM_flag_present + DW_AT_type DW_FORM_ref4 + DW_AT_low_pc DW_FORM_addr + DW_AT_high_pc DW_FORM_data8 + DW_AT_frame_base DW_FORM_exprloc + DW_AT_GNU_all_call_sites DW_FORM_flag_present + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 32 DW_TAG_variable [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_location DW_FORM_exprloc + DW_AT value: 0 DW_FORM value: 0 + 33 DW_TAG_GNU_call_site [no children] + DW_AT_low_pc DW_FORM_addr + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 34 DW_TAG_formal_parameter [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 35 DW_TAG_variable [no children] + DW_AT_name DW_FORM_string + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 36 DW_TAG_formal_parameter [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_location DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 37 DW_TAG_variable [no children] + DW_AT_name DW_FORM_string + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_location DW_FORM_exprloc + DW_AT value: 0 DW_FORM value: 0 + 38 DW_TAG_variable [no children] + DW_AT_name DW_FORM_string + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_location DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 39 DW_TAG_subprogram [has children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_prototyped DW_FORM_flag_present + DW_AT_type DW_FORM_ref4 + DW_AT_inline DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 40 DW_TAG_subprogram [has children] + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT_low_pc DW_FORM_addr + DW_AT_high_pc DW_FORM_data8 + DW_AT_frame_base DW_FORM_exprloc + DW_AT_GNU_all_call_sites DW_FORM_flag_present + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 41 DW_TAG_variable [no children] + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT_location DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 42 DW_TAG_inlined_subroutine [has children] + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT_low_pc DW_FORM_addr + DW_AT_high_pc DW_FORM_data8 + DW_AT_call_file DW_FORM_data1 + DW_AT_call_line DW_FORM_data1 + DW_AT_call_column DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 43 DW_TAG_variable [no children] + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 44 DW_TAG_formal_parameter [no children] + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 45 DW_TAG_subprogram [no children] + DW_AT_external DW_FORM_flag_present + DW_AT_declaration DW_FORM_flag_present + DW_AT_linkage_name DW_FORM_strp + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 46 DW_TAG_subprogram [no children] + DW_AT_external DW_FORM_flag_present + DW_AT_declaration DW_FORM_flag_present + DW_AT_linkage_name DW_FORM_strp + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + Number TAG (0x15a7) + 1 DW_TAG_compile_unit [has children] + DW_AT_producer DW_FORM_strp + DW_AT_language DW_FORM_data1 + DW_AT_name DW_FORM_strp + DW_AT_comp_dir DW_FORM_strp + DW_AT_ranges DW_FORM_sec_offset + DW_AT_low_pc DW_FORM_addr + DW_AT_stmt_list DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 2 DW_TAG_base_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_encoding DW_FORM_data1 + DW_AT_name DW_FORM_strp + DW_AT value: 0 DW_FORM value: 0 + 3 DW_TAG_typedef [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 4 DW_TAG_base_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_encoding DW_FORM_data1 + DW_AT_name DW_FORM_string + DW_AT value: 0 DW_FORM value: 0 + 5 DW_TAG_enumeration_type [has children] + DW_AT_encoding DW_FORM_data1 + DW_AT_byte_size DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 6 DW_TAG_enumerator [no children] + DW_AT_name DW_FORM_strp + DW_AT_const_value DW_FORM_sdata + DW_AT value: 0 DW_FORM value: 0 + 7 DW_TAG_enumerator [no children] + DW_AT_name DW_FORM_string + DW_AT_const_value DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 8 DW_TAG_structure_type [has children] + DW_AT_name DW_FORM_strp + DW_AT_byte_size DW_FORM_data1 + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 9 DW_TAG_member [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_data_member_location DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 10 DW_TAG_typedef [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 11 DW_TAG_subprogram [has children] + DW_AT_external DW_FORM_flag_present + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_prototyped DW_FORM_flag_present + DW_AT_type DW_FORM_ref4 + DW_AT_low_pc DW_FORM_addr + DW_AT_high_pc DW_FORM_data8 + DW_AT_frame_base DW_FORM_exprloc + DW_AT_GNU_all_call_sites DW_FORM_flag_present + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 12 DW_TAG_formal_parameter [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_location DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 13 DW_TAG_formal_parameter [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_location DW_FORM_exprloc + DW_AT value: 0 DW_FORM value: 0 + 14 DW_TAG_variable [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_location DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 15 DW_TAG_pointer_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + Number TAG (0x1690) + 1 DW_TAG_compile_unit [has children] + DW_AT_producer DW_FORM_strp + DW_AT_language DW_FORM_data1 + DW_AT_name DW_FORM_strp + DW_AT_comp_dir DW_FORM_strp + DW_AT_ranges DW_FORM_sec_offset + DW_AT_low_pc DW_FORM_addr + DW_AT_stmt_list DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 2 DW_TAG_base_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_encoding DW_FORM_data1 + DW_AT_name DW_FORM_strp + DW_AT value: 0 DW_FORM value: 0 + 3 DW_TAG_base_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_encoding DW_FORM_data1 + DW_AT_name DW_FORM_string + DW_AT value: 0 DW_FORM value: 0 + 4 DW_TAG_typedef [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 5 DW_TAG_structure_type [has children] + DW_AT_name DW_FORM_strp + DW_AT_byte_size DW_FORM_data1 + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 6 DW_TAG_member [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_data_member_location DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 7 DW_TAG_const_type [no children] + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 8 DW_TAG_subprogram [has children] + DW_AT_external DW_FORM_flag_present + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_prototyped DW_FORM_flag_present + DW_AT_low_pc DW_FORM_addr + DW_AT_high_pc DW_FORM_data8 + DW_AT_frame_base DW_FORM_exprloc + DW_AT_GNU_all_call_sites DW_FORM_flag_present + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 9 DW_TAG_formal_parameter [no children] + DW_AT_name DW_FORM_string + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_location DW_FORM_exprloc + DW_AT value: 0 DW_FORM value: 0 + 10 DW_TAG_variable [no children] + DW_AT_name DW_FORM_string + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_location DW_FORM_exprloc + DW_AT value: 0 DW_FORM value: 0 + 11 DW_TAG_variable [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_location DW_FORM_exprloc + DW_AT value: 0 DW_FORM value: 0 + 12 DW_TAG_pointer_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + Number TAG (0x174a) + 1 DW_TAG_compile_unit [has children] + DW_AT_producer DW_FORM_strp + DW_AT_language DW_FORM_data1 + DW_AT_name DW_FORM_strp + DW_AT_comp_dir DW_FORM_strp + DW_AT_ranges DW_FORM_sec_offset + DW_AT_low_pc DW_FORM_addr + DW_AT_stmt_list DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 2 DW_TAG_base_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_encoding DW_FORM_data1 + DW_AT_name DW_FORM_strp + DW_AT value: 0 DW_FORM value: 0 + 3 DW_TAG_typedef [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 4 DW_TAG_base_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_encoding DW_FORM_data1 + DW_AT_name DW_FORM_string + DW_AT value: 0 DW_FORM value: 0 + 5 DW_TAG_volatile_type [no children] + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 6 DW_TAG_pointer_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 7 DW_TAG_pointer_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 8 DW_TAG_const_type [no children] + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 9 DW_TAG_enumeration_type [has children] + DW_AT_encoding DW_FORM_data1 + DW_AT_byte_size DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 10 DW_TAG_enumerator [no children] + DW_AT_name DW_FORM_strp + DW_AT_const_value DW_FORM_sdata + DW_AT value: 0 DW_FORM value: 0 + 11 DW_TAG_enumerator [no children] + DW_AT_name DW_FORM_string + DW_AT_const_value DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 12 DW_TAG_structure_type [has children] + DW_AT_name DW_FORM_strp + DW_AT_byte_size DW_FORM_data1 + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 13 DW_TAG_member [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_data_member_location DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 14 DW_TAG_typedef [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 15 DW_TAG_structure_type [has children] + DW_AT_name DW_FORM_strp + DW_AT_byte_size DW_FORM_data1 + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 16 DW_TAG_member [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_data_member_location DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 17 DW_TAG_member [no children] + DW_AT_name DW_FORM_string + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_data_member_location DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 18 DW_TAG_subroutine_type [has children] + DW_AT_prototyped DW_FORM_flag_present + DW_AT_type DW_FORM_ref4 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 19 DW_TAG_formal_parameter [no children] + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 20 DW_TAG_array_type [has children] + DW_AT_type DW_FORM_ref4 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 21 DW_TAG_subrange_type [no children] + DW_AT_type DW_FORM_ref4 + DW_AT_upper_bound DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 22 DW_TAG_structure_type [has children] + DW_AT_name DW_FORM_strp + DW_AT_byte_size DW_FORM_data2 + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 23 DW_TAG_member [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_data_member_location DW_FORM_data2 + DW_AT value: 0 DW_FORM value: 0 + 24 DW_TAG_structure_type [has children] + DW_AT_name DW_FORM_strp + DW_AT_byte_size DW_FORM_data2 + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 25 DW_TAG_subprogram [has children] + DW_AT_external DW_FORM_flag_present + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_prototyped DW_FORM_flag_present + DW_AT_type DW_FORM_ref4 + DW_AT_low_pc DW_FORM_addr + DW_AT_high_pc DW_FORM_data8 + DW_AT_frame_base DW_FORM_exprloc + DW_AT_GNU_all_call_sites DW_FORM_flag_present + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 26 DW_TAG_formal_parameter [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_location DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 27 DW_TAG_variable [no children] + DW_AT_name DW_FORM_string + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_location DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 28 DW_TAG_inlined_subroutine [has children] + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT_entry_pc DW_FORM_addr + DW_AT_ranges DW_FORM_sec_offset + DW_AT_call_file DW_FORM_data1 + DW_AT_call_line DW_FORM_data1 + DW_AT_call_column DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 29 DW_TAG_lexical_block [has children] + DW_AT_ranges DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 30 DW_TAG_variable [no children] + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 31 DW_TAG_GNU_call_site [has children] + DW_AT_low_pc DW_FORM_addr + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 32 DW_TAG_GNU_call_site_parameter [no children] + DW_AT_location DW_FORM_exprloc + DW_AT_GNU_call_site_value DW_FORM_exprloc + DW_AT value: 0 DW_FORM value: 0 + 33 DW_TAG_GNU_call_site [no children] + DW_AT_low_pc DW_FORM_addr + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 34 DW_TAG_subprogram [has children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_prototyped DW_FORM_flag_present + DW_AT_type DW_FORM_ref4 + DW_AT_inline DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 35 DW_TAG_variable [no children] + DW_AT_name DW_FORM_string + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 36 DW_TAG_subprogram [no children] + DW_AT_external DW_FORM_flag_present + DW_AT_declaration DW_FORM_flag_present + DW_AT_linkage_name DW_FORM_strp + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + Number TAG (0x193d) + 1 DW_TAG_compile_unit [has children] + DW_AT_producer DW_FORM_strp + DW_AT_language DW_FORM_data1 + DW_AT_name DW_FORM_strp + DW_AT_comp_dir DW_FORM_strp + DW_AT_ranges DW_FORM_sec_offset + DW_AT_low_pc DW_FORM_addr + DW_AT_stmt_list DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 2 DW_TAG_base_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_encoding DW_FORM_data1 + DW_AT_name DW_FORM_strp + DW_AT value: 0 DW_FORM value: 0 + 3 DW_TAG_typedef [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 4 DW_TAG_base_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_encoding DW_FORM_data1 + DW_AT_name DW_FORM_string + DW_AT value: 0 DW_FORM value: 0 + 5 DW_TAG_volatile_type [no children] + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 6 DW_TAG_enumeration_type [has children] + DW_AT_encoding DW_FORM_data1 + DW_AT_byte_size DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 7 DW_TAG_enumerator [no children] + DW_AT_name DW_FORM_strp + DW_AT_const_value DW_FORM_sdata + DW_AT value: 0 DW_FORM value: 0 + 8 DW_TAG_enumerator [no children] + DW_AT_name DW_FORM_string + DW_AT_const_value DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 9 DW_TAG_structure_type [has children] + DW_AT_name DW_FORM_strp + DW_AT_byte_size DW_FORM_data1 + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 10 DW_TAG_member [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_data_member_location DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 11 DW_TAG_pointer_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 12 DW_TAG_typedef [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 13 DW_TAG_structure_type [has children] + DW_AT_name DW_FORM_strp + DW_AT_byte_size DW_FORM_data1 + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 14 DW_TAG_member [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_data_member_location DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 15 DW_TAG_subprogram [has children] + DW_AT_external DW_FORM_flag_present + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_prototyped DW_FORM_flag_present + DW_AT_type DW_FORM_ref4 + DW_AT_low_pc DW_FORM_addr + DW_AT_high_pc DW_FORM_data8 + DW_AT_frame_base DW_FORM_exprloc + DW_AT_GNU_all_call_sites DW_FORM_flag_present + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 16 DW_TAG_formal_parameter [no children] + DW_AT_name DW_FORM_string + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_location DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 17 DW_TAG_formal_parameter [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_location DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 18 DW_TAG_variable [no children] + DW_AT_name DW_FORM_string + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_location DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 19 DW_TAG_GNU_call_site [no children] + DW_AT_low_pc DW_FORM_addr + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 20 DW_TAG_subprogram [has children] + DW_AT_external DW_FORM_flag_present + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_prototyped DW_FORM_flag_present + DW_AT_type DW_FORM_ref4 + DW_AT_inline DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 21 DW_TAG_formal_parameter [no children] + DW_AT_name DW_FORM_string + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 22 DW_TAG_formal_parameter [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 23 DW_TAG_subprogram [has children] + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT_low_pc DW_FORM_addr + DW_AT_high_pc DW_FORM_data8 + DW_AT_frame_base DW_FORM_exprloc + DW_AT_GNU_all_call_sites DW_FORM_flag_present + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 24 DW_TAG_formal_parameter [no children] + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT_location DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 25 DW_TAG_inlined_subroutine [has children] + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT_entry_pc DW_FORM_addr + DW_AT_ranges DW_FORM_sec_offset + DW_AT_call_file DW_FORM_data1 + DW_AT_call_line DW_FORM_data1 + DW_AT_call_column DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 26 DW_TAG_GNU_call_site [has children] + DW_AT_low_pc DW_FORM_addr + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 27 DW_TAG_GNU_call_site_parameter [no children] + DW_AT_location DW_FORM_exprloc + DW_AT_GNU_call_site_value DW_FORM_exprloc + DW_AT value: 0 DW_FORM value: 0 + 28 DW_TAG_subprogram [no children] + DW_AT_external DW_FORM_flag_present + DW_AT_declaration DW_FORM_flag_present + DW_AT_linkage_name DW_FORM_strp + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 29 DW_TAG_subprogram [no children] + DW_AT_external DW_FORM_flag_present + DW_AT_declaration DW_FORM_flag_present + DW_AT_linkage_name DW_FORM_strp + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + Number TAG (0x1af8) + 1 DW_TAG_compile_unit [has children] + DW_AT_producer DW_FORM_strp + DW_AT_language DW_FORM_data1 + DW_AT_name DW_FORM_strp + DW_AT_comp_dir DW_FORM_strp + DW_AT_ranges DW_FORM_sec_offset + DW_AT_low_pc DW_FORM_addr + DW_AT_stmt_list DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 2 DW_TAG_base_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_encoding DW_FORM_data1 + DW_AT_name DW_FORM_strp + DW_AT value: 0 DW_FORM value: 0 + 3 DW_TAG_typedef [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 4 DW_TAG_base_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_encoding DW_FORM_data1 + DW_AT_name DW_FORM_string + DW_AT value: 0 DW_FORM value: 0 + 5 DW_TAG_volatile_type [no children] + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 6 DW_TAG_enumeration_type [has children] + DW_AT_encoding DW_FORM_data1 + DW_AT_byte_size DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 7 DW_TAG_enumerator [no children] + DW_AT_name DW_FORM_strp + DW_AT_const_value DW_FORM_sdata + DW_AT value: 0 DW_FORM value: 0 + 8 DW_TAG_enumerator [no children] + DW_AT_name DW_FORM_string + DW_AT_const_value DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 9 DW_TAG_structure_type [has children] + DW_AT_name DW_FORM_strp + DW_AT_byte_size DW_FORM_data1 + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 10 DW_TAG_member [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_data_member_location DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 11 DW_TAG_pointer_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 12 DW_TAG_typedef [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 13 DW_TAG_structure_type [has children] + DW_AT_name DW_FORM_strp + DW_AT_byte_size DW_FORM_data1 + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 14 DW_TAG_member [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_data_member_location DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 15 DW_TAG_subprogram [has children] + DW_AT_external DW_FORM_flag_present + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_prototyped DW_FORM_flag_present + DW_AT_type DW_FORM_ref4 + DW_AT_low_pc DW_FORM_addr + DW_AT_high_pc DW_FORM_data8 + DW_AT_frame_base DW_FORM_exprloc + DW_AT_GNU_all_call_sites DW_FORM_flag_present + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 16 DW_TAG_formal_parameter [no children] + DW_AT_name DW_FORM_string + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_location DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 17 DW_TAG_formal_parameter [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_location DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 18 DW_TAG_variable [no children] + DW_AT_name DW_FORM_string + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_location DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 19 DW_TAG_GNU_call_site [has children] + DW_AT_low_pc DW_FORM_addr + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 20 DW_TAG_GNU_call_site_parameter [no children] + DW_AT_location DW_FORM_exprloc + DW_AT_GNU_call_site_value DW_FORM_exprloc + DW_AT value: 0 DW_FORM value: 0 + 21 DW_TAG_GNU_call_site [no children] + DW_AT_low_pc DW_FORM_addr + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 22 DW_TAG_subprogram [has children] + DW_AT_external DW_FORM_flag_present + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_prototyped DW_FORM_flag_present + DW_AT_type DW_FORM_ref4 + DW_AT_inline DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 23 DW_TAG_formal_parameter [no children] + DW_AT_name DW_FORM_string + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 24 DW_TAG_formal_parameter [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 25 DW_TAG_subprogram [has children] + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT_low_pc DW_FORM_addr + DW_AT_high_pc DW_FORM_data8 + DW_AT_frame_base DW_FORM_exprloc + DW_AT_GNU_all_call_sites DW_FORM_flag_present + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 26 DW_TAG_formal_parameter [no children] + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT_location DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 27 DW_TAG_inlined_subroutine [has children] + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT_entry_pc DW_FORM_addr + DW_AT_ranges DW_FORM_sec_offset + DW_AT_call_file DW_FORM_data1 + DW_AT_call_line DW_FORM_data2 + DW_AT_call_column DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 28 DW_TAG_GNU_call_site [has children] + DW_AT_low_pc DW_FORM_addr + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 29 DW_TAG_subprogram [no children] + DW_AT_external DW_FORM_flag_present + DW_AT_declaration DW_FORM_flag_present + DW_AT_linkage_name DW_FORM_strp + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 30 DW_TAG_subprogram [no children] + DW_AT_external DW_FORM_flag_present + DW_AT_declaration DW_FORM_flag_present + DW_AT_linkage_name DW_FORM_strp + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + Number TAG (0x1cc0) + 1 DW_TAG_compile_unit [has children] + DW_AT_producer DW_FORM_strp + DW_AT_language DW_FORM_data1 + DW_AT_name DW_FORM_strp + DW_AT_comp_dir DW_FORM_strp + DW_AT_ranges DW_FORM_sec_offset + DW_AT_low_pc DW_FORM_addr + DW_AT_stmt_list DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 2 DW_TAG_base_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_encoding DW_FORM_data1 + DW_AT_name DW_FORM_strp + DW_AT value: 0 DW_FORM value: 0 + 3 DW_TAG_typedef [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 4 DW_TAG_base_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_encoding DW_FORM_data1 + DW_AT_name DW_FORM_string + DW_AT value: 0 DW_FORM value: 0 + 5 DW_TAG_volatile_type [no children] + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 6 DW_TAG_enumeration_type [has children] + DW_AT_encoding DW_FORM_data1 + DW_AT_byte_size DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 7 DW_TAG_enumerator [no children] + DW_AT_name DW_FORM_strp + DW_AT_const_value DW_FORM_sdata + DW_AT value: 0 DW_FORM value: 0 + 8 DW_TAG_enumerator [no children] + DW_AT_name DW_FORM_string + DW_AT_const_value DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 9 DW_TAG_structure_type [has children] + DW_AT_name DW_FORM_strp + DW_AT_byte_size DW_FORM_data1 + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 10 DW_TAG_member [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_data_member_location DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 11 DW_TAG_pointer_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 12 DW_TAG_typedef [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 13 DW_TAG_structure_type [has children] + DW_AT_name DW_FORM_strp + DW_AT_byte_size DW_FORM_data1 + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 14 DW_TAG_member [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_data_member_location DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 15 DW_TAG_subprogram [has children] + DW_AT_external DW_FORM_flag_present + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_prototyped DW_FORM_flag_present + DW_AT_type DW_FORM_ref4 + DW_AT_low_pc DW_FORM_addr + DW_AT_high_pc DW_FORM_data8 + DW_AT_frame_base DW_FORM_exprloc + DW_AT_GNU_all_call_sites DW_FORM_flag_present + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 16 DW_TAG_formal_parameter [no children] + DW_AT_name DW_FORM_string + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_location DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 17 DW_TAG_formal_parameter [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_location DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 18 DW_TAG_variable [no children] + DW_AT_name DW_FORM_string + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_location DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 19 DW_TAG_GNU_call_site [has children] + DW_AT_low_pc DW_FORM_addr + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 20 DW_TAG_GNU_call_site_parameter [no children] + DW_AT_location DW_FORM_exprloc + DW_AT_GNU_call_site_value DW_FORM_exprloc + DW_AT value: 0 DW_FORM value: 0 + 21 DW_TAG_GNU_call_site [no children] + DW_AT_low_pc DW_FORM_addr + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 22 DW_TAG_subprogram [has children] + DW_AT_external DW_FORM_flag_present + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_prototyped DW_FORM_flag_present + DW_AT_type DW_FORM_ref4 + DW_AT_low_pc DW_FORM_addr + DW_AT_high_pc DW_FORM_data8 + DW_AT_frame_base DW_FORM_exprloc + DW_AT_GNU_all_call_sites DW_FORM_flag_present + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 23 DW_TAG_formal_parameter [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_location DW_FORM_exprloc + DW_AT value: 0 DW_FORM value: 0 + 24 DW_TAG_subprogram [no children] + DW_AT_external DW_FORM_flag_present + DW_AT_declaration DW_FORM_flag_present + DW_AT_linkage_name DW_FORM_strp + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + Number TAG (0x1e38) + 1 DW_TAG_compile_unit [has children] + DW_AT_producer DW_FORM_strp + DW_AT_language DW_FORM_data1 + DW_AT_name DW_FORM_strp + DW_AT_comp_dir DW_FORM_strp + DW_AT_ranges DW_FORM_sec_offset + DW_AT_low_pc DW_FORM_addr + DW_AT_stmt_list DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 2 DW_TAG_base_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_encoding DW_FORM_data1 + DW_AT_name DW_FORM_strp + DW_AT value: 0 DW_FORM value: 0 + 3 DW_TAG_typedef [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 4 DW_TAG_base_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_encoding DW_FORM_data1 + DW_AT_name DW_FORM_string + DW_AT value: 0 DW_FORM value: 0 + 5 DW_TAG_volatile_type [no children] + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 6 DW_TAG_pointer_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 7 DW_TAG_pointer_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 8 DW_TAG_const_type [no children] + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 9 DW_TAG_enumeration_type [has children] + DW_AT_encoding DW_FORM_data1 + DW_AT_byte_size DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 10 DW_TAG_enumerator [no children] + DW_AT_name DW_FORM_strp + DW_AT_const_value DW_FORM_sdata + DW_AT value: 0 DW_FORM value: 0 + 11 DW_TAG_enumerator [no children] + DW_AT_name DW_FORM_string + DW_AT_const_value DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 12 DW_TAG_structure_type [has children] + DW_AT_name DW_FORM_strp + DW_AT_byte_size DW_FORM_data1 + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 13 DW_TAG_member [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_data_member_location DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 14 DW_TAG_typedef [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 15 DW_TAG_structure_type [has children] + DW_AT_name DW_FORM_strp + DW_AT_byte_size DW_FORM_data1 + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 16 DW_TAG_member [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_data_member_location DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 17 DW_TAG_member [no children] + DW_AT_name DW_FORM_string + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_data_member_location DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 18 DW_TAG_subroutine_type [has children] + DW_AT_prototyped DW_FORM_flag_present + DW_AT_type DW_FORM_ref4 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 19 DW_TAG_formal_parameter [no children] + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 20 DW_TAG_array_type [has children] + DW_AT_type DW_FORM_ref4 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 21 DW_TAG_subrange_type [no children] + DW_AT_type DW_FORM_ref4 + DW_AT_upper_bound DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 22 DW_TAG_subprogram [has children] + DW_AT_external DW_FORM_flag_present + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_prototyped DW_FORM_flag_present + DW_AT_type DW_FORM_ref4 + DW_AT_low_pc DW_FORM_addr + DW_AT_high_pc DW_FORM_data8 + DW_AT_frame_base DW_FORM_exprloc + DW_AT_GNU_all_call_sites DW_FORM_flag_present + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 23 DW_TAG_formal_parameter [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_location DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 24 DW_TAG_variable [no children] + DW_AT_name DW_FORM_string + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_location DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 25 DW_TAG_GNU_call_site [no children] + DW_AT_low_pc DW_FORM_addr + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 26 DW_TAG_subprogram [no children] + DW_AT_external DW_FORM_flag_present + DW_AT_declaration DW_FORM_flag_present + DW_AT_linkage_name DW_FORM_strp + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 27 DW_TAG_subprogram [no children] + DW_AT_external DW_FORM_flag_present + DW_AT_declaration DW_FORM_flag_present + DW_AT_linkage_name DW_FORM_strp + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + Number TAG (0x1fad) + 1 DW_TAG_compile_unit [has children] + DW_AT_producer DW_FORM_strp + DW_AT_language DW_FORM_data1 + DW_AT_name DW_FORM_strp + DW_AT_comp_dir DW_FORM_strp + DW_AT_ranges DW_FORM_sec_offset + DW_AT_low_pc DW_FORM_addr + DW_AT_stmt_list DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 2 DW_TAG_base_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_encoding DW_FORM_data1 + DW_AT_name DW_FORM_strp + DW_AT value: 0 DW_FORM value: 0 + 3 DW_TAG_typedef [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 4 DW_TAG_base_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_encoding DW_FORM_data1 + DW_AT_name DW_FORM_string + DW_AT value: 0 DW_FORM value: 0 + 5 DW_TAG_volatile_type [no children] + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 6 DW_TAG_pointer_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 7 DW_TAG_pointer_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 8 DW_TAG_const_type [no children] + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 9 DW_TAG_enumeration_type [has children] + DW_AT_encoding DW_FORM_data1 + DW_AT_byte_size DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 10 DW_TAG_enumerator [no children] + DW_AT_name DW_FORM_strp + DW_AT_const_value DW_FORM_sdata + DW_AT value: 0 DW_FORM value: 0 + 11 DW_TAG_enumerator [no children] + DW_AT_name DW_FORM_string + DW_AT_const_value DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 12 DW_TAG_structure_type [has children] + DW_AT_name DW_FORM_strp + DW_AT_byte_size DW_FORM_data1 + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 13 DW_TAG_member [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_data_member_location DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 14 DW_TAG_typedef [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 15 DW_TAG_structure_type [has children] + DW_AT_name DW_FORM_strp + DW_AT_byte_size DW_FORM_data1 + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 16 DW_TAG_member [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_data_member_location DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 17 DW_TAG_member [no children] + DW_AT_name DW_FORM_string + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_data_member_location DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 18 DW_TAG_subroutine_type [has children] + DW_AT_prototyped DW_FORM_flag_present + DW_AT_type DW_FORM_ref4 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 19 DW_TAG_formal_parameter [no children] + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 20 DW_TAG_array_type [has children] + DW_AT_type DW_FORM_ref4 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 21 DW_TAG_subrange_type [no children] + DW_AT_type DW_FORM_ref4 + DW_AT_upper_bound DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 22 DW_TAG_structure_type [has children] + DW_AT_name DW_FORM_strp + DW_AT_byte_size DW_FORM_data2 + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 23 DW_TAG_member [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_data_member_location DW_FORM_data2 + DW_AT value: 0 DW_FORM value: 0 + 24 DW_TAG_subprogram [has children] + DW_AT_external DW_FORM_flag_present + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_prototyped DW_FORM_flag_present + DW_AT_type DW_FORM_ref4 + DW_AT_low_pc DW_FORM_addr + DW_AT_high_pc DW_FORM_data8 + DW_AT_frame_base DW_FORM_exprloc + DW_AT_GNU_all_call_sites DW_FORM_flag_present + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 25 DW_TAG_formal_parameter [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_location DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 26 DW_TAG_variable [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_location DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 27 DW_TAG_variable [no children] + DW_AT_name DW_FORM_string + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_location DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 28 DW_TAG_lexical_block [has children] + DW_AT_ranges DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 29 DW_TAG_GNU_call_site [has children] + DW_AT_low_pc DW_FORM_addr + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 30 DW_TAG_GNU_call_site_parameter [no children] + DW_AT_location DW_FORM_exprloc + DW_AT_GNU_call_site_value DW_FORM_exprloc + DW_AT value: 0 DW_FORM value: 0 + 31 DW_TAG_GNU_call_site [has children] + DW_AT_low_pc DW_FORM_addr + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 32 DW_TAG_subprogram [no children] + DW_AT_external DW_FORM_flag_present + DW_AT_declaration DW_FORM_flag_present + DW_AT_linkage_name DW_FORM_strp + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + Number TAG (0x2162) + 1 DW_TAG_compile_unit [has children] + DW_AT_producer DW_FORM_strp + DW_AT_language DW_FORM_data1 + DW_AT_name DW_FORM_strp + DW_AT_comp_dir DW_FORM_strp + DW_AT_ranges DW_FORM_sec_offset + DW_AT_low_pc DW_FORM_addr + DW_AT_stmt_list DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 2 DW_TAG_base_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_encoding DW_FORM_data1 + DW_AT_name DW_FORM_strp + DW_AT value: 0 DW_FORM value: 0 + 3 DW_TAG_base_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_encoding DW_FORM_data1 + DW_AT_name DW_FORM_string + DW_AT value: 0 DW_FORM value: 0 + 4 DW_TAG_const_type [no children] + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 5 DW_TAG_pointer_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 6 DW_TAG_subprogram [has children] + DW_AT_external DW_FORM_flag_present + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_prototyped DW_FORM_flag_present + DW_AT_noreturn DW_FORM_flag_present + DW_AT_low_pc DW_FORM_addr + DW_AT_high_pc DW_FORM_data8 + DW_AT_frame_base DW_FORM_exprloc + DW_AT_GNU_all_call_sites DW_FORM_flag_present + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 7 DW_TAG_formal_parameter [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_location DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 8 DW_TAG_formal_parameter [no children] + DW_AT_name DW_FORM_string + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_location DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 9 DW_TAG_GNU_call_site [has children] + DW_AT_low_pc DW_FORM_addr + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 10 DW_TAG_GNU_call_site_parameter [no children] + DW_AT_location DW_FORM_exprloc + DW_AT_GNU_call_site_value DW_FORM_exprloc + DW_AT value: 0 DW_FORM value: 0 + 11 DW_TAG_GNU_call_site [no children] + DW_AT_low_pc DW_FORM_addr + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 12 DW_TAG_subprogram [no children] + DW_AT_external DW_FORM_flag_present + DW_AT_declaration DW_FORM_flag_present + DW_AT_linkage_name DW_FORM_strp + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + Number TAG (0x2214) + 1 DW_TAG_compile_unit [has children] + DW_AT_producer DW_FORM_strp + DW_AT_language DW_FORM_data1 + DW_AT_name DW_FORM_strp + DW_AT_comp_dir DW_FORM_strp + DW_AT_ranges DW_FORM_sec_offset + DW_AT_low_pc DW_FORM_addr + DW_AT_stmt_list DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 2 DW_TAG_base_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_encoding DW_FORM_data1 + DW_AT_name DW_FORM_strp + DW_AT value: 0 DW_FORM value: 0 + 3 DW_TAG_base_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_encoding DW_FORM_data1 + DW_AT_name DW_FORM_string + DW_AT value: 0 DW_FORM value: 0 + 4 DW_TAG_pointer_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 5 DW_TAG_subprogram [has children] + DW_AT_external DW_FORM_flag_present + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_prototyped DW_FORM_flag_present + DW_AT_noreturn DW_FORM_flag_present + DW_AT_low_pc DW_FORM_addr + DW_AT_high_pc DW_FORM_data8 + DW_AT_frame_base DW_FORM_exprloc + DW_AT_GNU_all_call_sites DW_FORM_flag_present + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 6 DW_TAG_formal_parameter [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_location DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 7 DW_TAG_GNU_call_site [has children] + DW_AT_low_pc DW_FORM_addr + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 8 DW_TAG_GNU_call_site_parameter [no children] + DW_AT_location DW_FORM_exprloc + DW_AT_GNU_call_site_value DW_FORM_exprloc + DW_AT value: 0 DW_FORM value: 0 + 9 DW_TAG_GNU_call_site [has children] + DW_AT_low_pc DW_FORM_addr + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 10 DW_TAG_subprogram [no children] + DW_AT_external DW_FORM_flag_present + DW_AT_declaration DW_FORM_flag_present + DW_AT_linkage_name DW_FORM_strp + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + Number TAG (0x22ac) + 1 DW_TAG_compile_unit [has children] + DW_AT_producer DW_FORM_strp + DW_AT_language DW_FORM_data1 + DW_AT_name DW_FORM_strp + DW_AT_comp_dir DW_FORM_strp + DW_AT_ranges DW_FORM_sec_offset + DW_AT_low_pc DW_FORM_addr + DW_AT_stmt_list DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 2 DW_TAG_base_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_encoding DW_FORM_data1 + DW_AT_name DW_FORM_strp + DW_AT value: 0 DW_FORM value: 0 + 3 DW_TAG_base_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_encoding DW_FORM_data1 + DW_AT_name DW_FORM_string + DW_AT value: 0 DW_FORM value: 0 + 4 DW_TAG_subprogram [has children] + DW_AT_external DW_FORM_flag_present + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_prototyped DW_FORM_flag_present + DW_AT_noreturn DW_FORM_flag_present + DW_AT_low_pc DW_FORM_addr + DW_AT_high_pc DW_FORM_data8 + DW_AT_frame_base DW_FORM_exprloc + DW_AT_GNU_all_call_sites DW_FORM_flag_present + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 5 DW_TAG_GNU_call_site [has children] + DW_AT_low_pc DW_FORM_addr + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 6 DW_TAG_GNU_call_site_parameter [no children] + DW_AT_location DW_FORM_exprloc + DW_AT_GNU_call_site_value DW_FORM_exprloc + DW_AT value: 0 DW_FORM value: 0 + 7 DW_TAG_subprogram [no children] + DW_AT_external DW_FORM_flag_present + DW_AT_declaration DW_FORM_flag_present + DW_AT_linkage_name DW_FORM_strp + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + Number TAG (0x231f) + 1 DW_TAG_compile_unit [has children] + DW_AT_producer DW_FORM_strp + DW_AT_language DW_FORM_data1 + DW_AT_name DW_FORM_strp + DW_AT_comp_dir DW_FORM_strp + DW_AT_ranges DW_FORM_sec_offset + DW_AT_low_pc DW_FORM_addr + DW_AT_stmt_list DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 2 DW_TAG_base_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_encoding DW_FORM_data1 + DW_AT_name DW_FORM_strp + DW_AT value: 0 DW_FORM value: 0 + 3 DW_TAG_base_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_encoding DW_FORM_data1 + DW_AT_name DW_FORM_string + DW_AT value: 0 DW_FORM value: 0 + 4 DW_TAG_typedef [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 5 DW_TAG_enumeration_type [has children] + DW_AT_encoding DW_FORM_data1 + DW_AT_byte_size DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 6 DW_TAG_enumerator [no children] + DW_AT_name DW_FORM_strp + DW_AT_const_value DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 7 DW_TAG_pointer_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 8 DW_TAG_const_type [no children] + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 9 DW_TAG_subprogram [has children] + DW_AT_external DW_FORM_flag_present + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_prototyped DW_FORM_flag_present + DW_AT_low_pc DW_FORM_addr + DW_AT_high_pc DW_FORM_data8 + DW_AT_frame_base DW_FORM_exprloc + DW_AT_GNU_all_call_sites DW_FORM_flag_present + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 10 DW_TAG_formal_parameter [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_location DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 11 DW_TAG_inlined_subroutine [has children] + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT_low_pc DW_FORM_addr + DW_AT_high_pc DW_FORM_data8 + DW_AT_call_file DW_FORM_data1 + DW_AT_call_line DW_FORM_data1 + DW_AT_call_column DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 12 DW_TAG_formal_parameter [no children] + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT_location DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 13 DW_TAG_variable [no children] + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT_location DW_FORM_exprloc + DW_AT value: 0 DW_FORM value: 0 + 14 DW_TAG_pointer_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 15 DW_TAG_subprogram [has children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_prototyped DW_FORM_flag_present + DW_AT_type DW_FORM_ref4 + DW_AT_inline DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 16 DW_TAG_formal_parameter [no children] + DW_AT_name DW_FORM_string + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 17 DW_TAG_formal_parameter [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 18 DW_TAG_variable [no children] + DW_AT_name DW_FORM_string + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + Number TAG (0x241b) + 1 DW_TAG_compile_unit [has children] + DW_AT_producer DW_FORM_strp + DW_AT_language DW_FORM_data1 + DW_AT_name DW_FORM_strp + DW_AT_comp_dir DW_FORM_strp + DW_AT_ranges DW_FORM_sec_offset + DW_AT_low_pc DW_FORM_addr + DW_AT_stmt_list DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 2 DW_TAG_base_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_encoding DW_FORM_data1 + DW_AT_name DW_FORM_strp + DW_AT value: 0 DW_FORM value: 0 + 3 DW_TAG_base_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_encoding DW_FORM_data1 + DW_AT_name DW_FORM_string + DW_AT value: 0 DW_FORM value: 0 + 4 DW_TAG_typedef [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 5 DW_TAG_enumeration_type [has children] + DW_AT_encoding DW_FORM_data1 + DW_AT_byte_size DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 6 DW_TAG_enumerator [no children] + DW_AT_name DW_FORM_strp + DW_AT_const_value DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 7 DW_TAG_subprogram [has children] + DW_AT_external DW_FORM_flag_present + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_prototyped DW_FORM_flag_present + DW_AT_noreturn DW_FORM_flag_present + DW_AT_low_pc DW_FORM_addr + DW_AT_high_pc DW_FORM_data8 + DW_AT_frame_base DW_FORM_exprloc + DW_AT_GNU_all_call_sites DW_FORM_flag_present + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 8 DW_TAG_formal_parameter [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_location DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 9 DW_TAG_inlined_subroutine [has children] + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT_low_pc DW_FORM_addr + DW_AT_high_pc DW_FORM_data8 + DW_AT_call_file DW_FORM_data1 + DW_AT_call_line DW_FORM_data1 + DW_AT_call_column DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 10 DW_TAG_formal_parameter [no children] + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT_location DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 11 DW_TAG_variable [no children] + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT_location DW_FORM_exprloc + DW_AT value: 0 DW_FORM value: 0 + 12 DW_TAG_subprogram [has children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_prototyped DW_FORM_flag_present + DW_AT_type DW_FORM_ref4 + DW_AT_inline DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 13 DW_TAG_formal_parameter [no children] + DW_AT_name DW_FORM_string + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 14 DW_TAG_formal_parameter [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 15 DW_TAG_variable [no children] + DW_AT_name DW_FORM_string + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + Number TAG (0x2503) + 1 DW_TAG_compile_unit [has children] + DW_AT_producer DW_FORM_strp + DW_AT_language DW_FORM_data1 + DW_AT_name DW_FORM_strp + DW_AT_comp_dir DW_FORM_strp + DW_AT_ranges DW_FORM_sec_offset + DW_AT_low_pc DW_FORM_addr + DW_AT_stmt_list DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 2 DW_TAG_base_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_encoding DW_FORM_data1 + DW_AT_name DW_FORM_strp + DW_AT value: 0 DW_FORM value: 0 + 3 DW_TAG_base_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_encoding DW_FORM_data1 + DW_AT_name DW_FORM_string + DW_AT value: 0 DW_FORM value: 0 + 4 DW_TAG_typedef [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 5 DW_TAG_typedef [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 6 DW_TAG_structure_type [has children] + DW_AT_name DW_FORM_strp + DW_AT_byte_size DW_FORM_data1 + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 7 DW_TAG_member [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_data_member_location DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 8 DW_TAG_enumeration_type [has children] + DW_AT_encoding DW_FORM_data1 + DW_AT_byte_size DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 9 DW_TAG_enumerator [no children] + DW_AT_name DW_FORM_strp + DW_AT_const_value DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 10 DW_TAG_subprogram [has children] + DW_AT_external DW_FORM_flag_present + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_prototyped DW_FORM_flag_present + DW_AT_type DW_FORM_ref4 + DW_AT_low_pc DW_FORM_addr + DW_AT_high_pc DW_FORM_data8 + DW_AT_frame_base DW_FORM_exprloc + DW_AT_GNU_all_call_sites DW_FORM_flag_present + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 11 DW_TAG_formal_parameter [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_location DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 12 DW_TAG_inlined_subroutine [has children] + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT_low_pc DW_FORM_addr + DW_AT_high_pc DW_FORM_data8 + DW_AT_call_file DW_FORM_data1 + DW_AT_call_line DW_FORM_data1 + DW_AT_call_column DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 13 DW_TAG_formal_parameter [no children] + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT_location DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 14 DW_TAG_variable [no children] + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT_location DW_FORM_exprloc + DW_AT value: 0 DW_FORM value: 0 + 15 DW_TAG_pointer_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 16 DW_TAG_subprogram [has children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_prototyped DW_FORM_flag_present + DW_AT_type DW_FORM_ref4 + DW_AT_inline DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 17 DW_TAG_formal_parameter [no children] + DW_AT_name DW_FORM_string + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 18 DW_TAG_formal_parameter [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 19 DW_TAG_variable [no children] + DW_AT_name DW_FORM_string + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + Number TAG (0x2624) + 1 DW_TAG_compile_unit [has children] + DW_AT_producer DW_FORM_strp + DW_AT_language DW_FORM_data1 + DW_AT_name DW_FORM_strp + DW_AT_comp_dir DW_FORM_strp + DW_AT_ranges DW_FORM_sec_offset + DW_AT_low_pc DW_FORM_addr + DW_AT_stmt_list DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 2 DW_TAG_base_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_encoding DW_FORM_data1 + DW_AT_name DW_FORM_strp + DW_AT value: 0 DW_FORM value: 0 + 3 DW_TAG_base_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_encoding DW_FORM_data1 + DW_AT_name DW_FORM_string + DW_AT value: 0 DW_FORM value: 0 + 4 DW_TAG_typedef [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 5 DW_TAG_enumeration_type [has children] + DW_AT_encoding DW_FORM_data1 + DW_AT_byte_size DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 6 DW_TAG_enumerator [no children] + DW_AT_name DW_FORM_strp + DW_AT_const_value DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 7 DW_TAG_subprogram [has children] + DW_AT_external DW_FORM_flag_present + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_prototyped DW_FORM_flag_present + DW_AT_type DW_FORM_ref4 + DW_AT_low_pc DW_FORM_addr + DW_AT_high_pc DW_FORM_data8 + DW_AT_frame_base DW_FORM_exprloc + DW_AT_GNU_all_call_sites DW_FORM_flag_present + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 8 DW_TAG_inlined_subroutine [has children] + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT_low_pc DW_FORM_addr + DW_AT_high_pc DW_FORM_data8 + DW_AT_call_file DW_FORM_data1 + DW_AT_call_line DW_FORM_data1 + DW_AT_call_column DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 9 DW_TAG_formal_parameter [no children] + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT_location DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 10 DW_TAG_variable [no children] + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT_location DW_FORM_exprloc + DW_AT value: 0 DW_FORM value: 0 + 11 DW_TAG_subprogram [has children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_prototyped DW_FORM_flag_present + DW_AT_type DW_FORM_ref4 + DW_AT_inline DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 12 DW_TAG_formal_parameter [no children] + DW_AT_name DW_FORM_string + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 13 DW_TAG_variable [no children] + DW_AT_name DW_FORM_string + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + Number TAG (0x26eb) + 1 DW_TAG_compile_unit [has children] + DW_AT_producer DW_FORM_strp + DW_AT_language DW_FORM_data1 + DW_AT_name DW_FORM_strp + DW_AT_comp_dir DW_FORM_strp + DW_AT_ranges DW_FORM_sec_offset + DW_AT_low_pc DW_FORM_addr + DW_AT_stmt_list DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 2 DW_TAG_base_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_encoding DW_FORM_data1 + DW_AT_name DW_FORM_strp + DW_AT value: 0 DW_FORM value: 0 + 3 DW_TAG_typedef [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 4 DW_TAG_base_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_encoding DW_FORM_data1 + DW_AT_name DW_FORM_string + DW_AT value: 0 DW_FORM value: 0 + 5 DW_TAG_enumeration_type [has children] + DW_AT_encoding DW_FORM_data1 + DW_AT_byte_size DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 6 DW_TAG_enumerator [no children] + DW_AT_name DW_FORM_strp + DW_AT_const_value DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 7 DW_TAG_subprogram [has children] + DW_AT_external DW_FORM_flag_present + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_prototyped DW_FORM_flag_present + DW_AT_type DW_FORM_ref4 + DW_AT_low_pc DW_FORM_addr + DW_AT_high_pc DW_FORM_data8 + DW_AT_frame_base DW_FORM_exprloc + DW_AT_GNU_all_call_sites DW_FORM_flag_present + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 8 DW_TAG_formal_parameter [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_location DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 9 DW_TAG_inlined_subroutine [has children] + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT_low_pc DW_FORM_addr + DW_AT_high_pc DW_FORM_data8 + DW_AT_call_file DW_FORM_data1 + DW_AT_call_line DW_FORM_data1 + DW_AT_call_column DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 10 DW_TAG_formal_parameter [no children] + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT_location DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 11 DW_TAG_variable [no children] + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT_location DW_FORM_exprloc + DW_AT value: 0 DW_FORM value: 0 + 12 DW_TAG_subprogram [has children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_prototyped DW_FORM_flag_present + DW_AT_type DW_FORM_ref4 + DW_AT_inline DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 13 DW_TAG_formal_parameter [no children] + DW_AT_name DW_FORM_string + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 14 DW_TAG_formal_parameter [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 15 DW_TAG_variable [no children] + DW_AT_name DW_FORM_string + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + Number TAG (0x27d2) + 1 DW_TAG_compile_unit [has children] + DW_AT_producer DW_FORM_strp + DW_AT_language DW_FORM_data1 + DW_AT_name DW_FORM_strp + DW_AT_comp_dir DW_FORM_strp + DW_AT_ranges DW_FORM_sec_offset + DW_AT_low_pc DW_FORM_addr + DW_AT_stmt_list DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 2 DW_TAG_base_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_encoding DW_FORM_data1 + DW_AT_name DW_FORM_strp + DW_AT value: 0 DW_FORM value: 0 + 3 DW_TAG_base_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_encoding DW_FORM_data1 + DW_AT_name DW_FORM_string + DW_AT value: 0 DW_FORM value: 0 + 4 DW_TAG_typedef [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 5 DW_TAG_pointer_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 6 DW_TAG_enumeration_type [has children] + DW_AT_encoding DW_FORM_data1 + DW_AT_byte_size DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 7 DW_TAG_enumerator [no children] + DW_AT_name DW_FORM_strp + DW_AT_const_value DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 8 DW_TAG_subprogram [has children] + DW_AT_external DW_FORM_flag_present + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_prototyped DW_FORM_flag_present + DW_AT_noreturn DW_FORM_flag_present + DW_AT_low_pc DW_FORM_addr + DW_AT_high_pc DW_FORM_data8 + DW_AT_frame_base DW_FORM_exprloc + DW_AT_GNU_all_call_sites DW_FORM_flag_present + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 9 DW_TAG_formal_parameter [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_location DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 10 DW_TAG_inlined_subroutine [has children] + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT_low_pc DW_FORM_addr + DW_AT_high_pc DW_FORM_data8 + DW_AT_call_file DW_FORM_data1 + DW_AT_call_line DW_FORM_data1 + DW_AT_call_column DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 11 DW_TAG_formal_parameter [no children] + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT_location DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 12 DW_TAG_variable [no children] + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT_location DW_FORM_exprloc + DW_AT value: 0 DW_FORM value: 0 + 13 DW_TAG_subprogram [has children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_prototyped DW_FORM_flag_present + DW_AT_type DW_FORM_ref4 + DW_AT_inline DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 14 DW_TAG_formal_parameter [no children] + DW_AT_name DW_FORM_string + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 15 DW_TAG_formal_parameter [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 16 DW_TAG_variable [no children] + DW_AT_name DW_FORM_string + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + Number TAG (0x28c1) + 1 DW_TAG_compile_unit [has children] + DW_AT_producer DW_FORM_strp + DW_AT_language DW_FORM_data1 + DW_AT_name DW_FORM_strp + DW_AT_comp_dir DW_FORM_strp + DW_AT_ranges DW_FORM_sec_offset + DW_AT_low_pc DW_FORM_addr + DW_AT_stmt_list DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 2 DW_TAG_base_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_encoding DW_FORM_data1 + DW_AT_name DW_FORM_strp + DW_AT value: 0 DW_FORM value: 0 + 3 DW_TAG_typedef [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 4 DW_TAG_base_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_encoding DW_FORM_data1 + DW_AT_name DW_FORM_string + DW_AT value: 0 DW_FORM value: 0 + 5 DW_TAG_volatile_type [no children] + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 6 DW_TAG_typedef [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 7 DW_TAG_structure_type [has children] + DW_AT_name DW_FORM_strp + DW_AT_byte_size DW_FORM_data1 + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 8 DW_TAG_member [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_data_member_location DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 9 DW_TAG_const_type [no children] + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 10 DW_TAG_structure_type [has children] + DW_AT_name DW_FORM_strp + DW_AT_byte_size DW_FORM_data1 + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 11 DW_TAG_member [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_data_member_location DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 12 DW_TAG_pointer_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 13 DW_TAG_enumeration_type [has children] + DW_AT_encoding DW_FORM_data1 + DW_AT_byte_size DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 14 DW_TAG_enumerator [no children] + DW_AT_name DW_FORM_strp + DW_AT_const_value DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 15 DW_TAG_subprogram [has children] + DW_AT_external DW_FORM_flag_present + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_prototyped DW_FORM_flag_present + DW_AT_type DW_FORM_ref4 + DW_AT_low_pc DW_FORM_addr + DW_AT_high_pc DW_FORM_data8 + DW_AT_frame_base DW_FORM_exprloc + DW_AT_GNU_all_call_sites DW_FORM_flag_present + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 16 DW_TAG_formal_parameter [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_location DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 17 DW_TAG_inlined_subroutine [has children] + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT_low_pc DW_FORM_addr + DW_AT_high_pc DW_FORM_data8 + DW_AT_call_file DW_FORM_data1 + DW_AT_call_line DW_FORM_data1 + DW_AT_call_column DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 18 DW_TAG_formal_parameter [no children] + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT_location DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 19 DW_TAG_variable [no children] + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT_location DW_FORM_exprloc + DW_AT value: 0 DW_FORM value: 0 + 20 DW_TAG_subprogram [has children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_prototyped DW_FORM_flag_present + DW_AT_type DW_FORM_ref4 + DW_AT_inline DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 21 DW_TAG_formal_parameter [no children] + DW_AT_name DW_FORM_string + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 22 DW_TAG_formal_parameter [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 23 DW_TAG_variable [no children] + DW_AT_name DW_FORM_string + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + Number TAG (0x2a12) + 1 DW_TAG_compile_unit [has children] + DW_AT_producer DW_FORM_strp + DW_AT_language DW_FORM_data1 + DW_AT_name DW_FORM_strp + DW_AT_comp_dir DW_FORM_strp + DW_AT_ranges DW_FORM_sec_offset + DW_AT_low_pc DW_FORM_addr + DW_AT_stmt_list DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 2 DW_TAG_base_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_encoding DW_FORM_data1 + DW_AT_name DW_FORM_strp + DW_AT value: 0 DW_FORM value: 0 + 3 DW_TAG_typedef [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 4 DW_TAG_base_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_encoding DW_FORM_data1 + DW_AT_name DW_FORM_string + DW_AT value: 0 DW_FORM value: 0 + 5 DW_TAG_volatile_type [no children] + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 6 DW_TAG_structure_type [has children] + DW_AT_name DW_FORM_strp + DW_AT_byte_size DW_FORM_data1 + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 7 DW_TAG_member [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_data_member_location DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 8 DW_TAG_pointer_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 9 DW_TAG_typedef [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 10 DW_TAG_structure_type [has children] + DW_AT_name DW_FORM_strp + DW_AT_byte_size DW_FORM_data1 + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 11 DW_TAG_member [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_data_member_location DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 12 DW_TAG_enumeration_type [has children] + DW_AT_encoding DW_FORM_data1 + DW_AT_byte_size DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 13 DW_TAG_enumerator [no children] + DW_AT_name DW_FORM_strp + DW_AT_const_value DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 14 DW_TAG_subprogram [has children] + DW_AT_external DW_FORM_flag_present + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_prototyped DW_FORM_flag_present + DW_AT_type DW_FORM_ref4 + DW_AT_low_pc DW_FORM_addr + DW_AT_high_pc DW_FORM_data8 + DW_AT_frame_base DW_FORM_exprloc + DW_AT_GNU_all_call_sites DW_FORM_flag_present + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 15 DW_TAG_formal_parameter [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_location DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 16 DW_TAG_inlined_subroutine [has children] + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT_low_pc DW_FORM_addr + DW_AT_high_pc DW_FORM_data8 + DW_AT_call_file DW_FORM_data1 + DW_AT_call_line DW_FORM_data1 + DW_AT_call_column DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 17 DW_TAG_formal_parameter [no children] + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT_location DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 18 DW_TAG_variable [no children] + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT_location DW_FORM_exprloc + DW_AT value: 0 DW_FORM value: 0 + 19 DW_TAG_subprogram [has children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_prototyped DW_FORM_flag_present + DW_AT_type DW_FORM_ref4 + DW_AT_inline DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 20 DW_TAG_formal_parameter [no children] + DW_AT_name DW_FORM_string + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 21 DW_TAG_formal_parameter [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 22 DW_TAG_variable [no children] + DW_AT_name DW_FORM_string + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + Number TAG (0x2b5c) + 1 DW_TAG_compile_unit [has children] + DW_AT_producer DW_FORM_strp + DW_AT_language DW_FORM_data1 + DW_AT_name DW_FORM_strp + DW_AT_comp_dir DW_FORM_strp + DW_AT_ranges DW_FORM_sec_offset + DW_AT_low_pc DW_FORM_addr + DW_AT_stmt_list DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 2 DW_TAG_base_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_encoding DW_FORM_data1 + DW_AT_name DW_FORM_strp + DW_AT value: 0 DW_FORM value: 0 + 3 DW_TAG_typedef [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 4 DW_TAG_base_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_encoding DW_FORM_data1 + DW_AT_name DW_FORM_string + DW_AT value: 0 DW_FORM value: 0 + 5 DW_TAG_volatile_type [no children] + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 6 DW_TAG_structure_type [has children] + DW_AT_name DW_FORM_strp + DW_AT_byte_size DW_FORM_data1 + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 7 DW_TAG_member [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_data_member_location DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 8 DW_TAG_pointer_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 9 DW_TAG_typedef [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 10 DW_TAG_structure_type [has children] + DW_AT_name DW_FORM_strp + DW_AT_byte_size DW_FORM_data1 + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 11 DW_TAG_member [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_data_member_location DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 12 DW_TAG_enumeration_type [has children] + DW_AT_encoding DW_FORM_data1 + DW_AT_byte_size DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 13 DW_TAG_enumerator [no children] + DW_AT_name DW_FORM_strp + DW_AT_const_value DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 14 DW_TAG_subprogram [has children] + DW_AT_external DW_FORM_flag_present + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_prototyped DW_FORM_flag_present + DW_AT_type DW_FORM_ref4 + DW_AT_low_pc DW_FORM_addr + DW_AT_high_pc DW_FORM_data8 + DW_AT_frame_base DW_FORM_exprloc + DW_AT_GNU_all_call_sites DW_FORM_flag_present + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 15 DW_TAG_formal_parameter [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_location DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 16 DW_TAG_inlined_subroutine [has children] + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT_low_pc DW_FORM_addr + DW_AT_high_pc DW_FORM_data8 + DW_AT_call_file DW_FORM_data1 + DW_AT_call_line DW_FORM_data1 + DW_AT_call_column DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 17 DW_TAG_formal_parameter [no children] + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT_location DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 18 DW_TAG_variable [no children] + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT_location DW_FORM_exprloc + DW_AT value: 0 DW_FORM value: 0 + 19 DW_TAG_subprogram [has children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_prototyped DW_FORM_flag_present + DW_AT_type DW_FORM_ref4 + DW_AT_inline DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 20 DW_TAG_formal_parameter [no children] + DW_AT_name DW_FORM_string + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 21 DW_TAG_formal_parameter [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 22 DW_TAG_variable [no children] + DW_AT_name DW_FORM_string + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + Number TAG (0x2ca6) + 1 DW_TAG_compile_unit [has children] + DW_AT_producer DW_FORM_strp + DW_AT_language DW_FORM_data1 + DW_AT_name DW_FORM_strp + DW_AT_comp_dir DW_FORM_strp + DW_AT_ranges DW_FORM_sec_offset + DW_AT_low_pc DW_FORM_addr + DW_AT_stmt_list DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 2 DW_TAG_base_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_encoding DW_FORM_data1 + DW_AT_name DW_FORM_strp + DW_AT value: 0 DW_FORM value: 0 + 3 DW_TAG_typedef [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 4 DW_TAG_base_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_encoding DW_FORM_data1 + DW_AT_name DW_FORM_string + DW_AT value: 0 DW_FORM value: 0 + 5 DW_TAG_volatile_type [no children] + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 6 DW_TAG_structure_type [has children] + DW_AT_name DW_FORM_strp + DW_AT_byte_size DW_FORM_data1 + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 7 DW_TAG_member [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_data_member_location DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 8 DW_TAG_pointer_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 9 DW_TAG_typedef [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 10 DW_TAG_structure_type [has children] + DW_AT_name DW_FORM_strp + DW_AT_byte_size DW_FORM_data1 + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 11 DW_TAG_member [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_data_member_location DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 12 DW_TAG_enumeration_type [has children] + DW_AT_encoding DW_FORM_data1 + DW_AT_byte_size DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 13 DW_TAG_enumerator [no children] + DW_AT_name DW_FORM_strp + DW_AT_const_value DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 14 DW_TAG_subprogram [has children] + DW_AT_external DW_FORM_flag_present + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_prototyped DW_FORM_flag_present + DW_AT_type DW_FORM_ref4 + DW_AT_low_pc DW_FORM_addr + DW_AT_high_pc DW_FORM_data8 + DW_AT_frame_base DW_FORM_exprloc + DW_AT_GNU_all_call_sites DW_FORM_flag_present + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 15 DW_TAG_formal_parameter [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_location DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 16 DW_TAG_inlined_subroutine [has children] + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT_low_pc DW_FORM_addr + DW_AT_high_pc DW_FORM_data8 + DW_AT_call_file DW_FORM_data1 + DW_AT_call_line DW_FORM_data1 + DW_AT_call_column DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 17 DW_TAG_formal_parameter [no children] + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT_location DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 18 DW_TAG_variable [no children] + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT_location DW_FORM_exprloc + DW_AT value: 0 DW_FORM value: 0 + 19 DW_TAG_subprogram [has children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_prototyped DW_FORM_flag_present + DW_AT_type DW_FORM_ref4 + DW_AT_inline DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 20 DW_TAG_formal_parameter [no children] + DW_AT_name DW_FORM_string + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 21 DW_TAG_formal_parameter [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 22 DW_TAG_variable [no children] + DW_AT_name DW_FORM_string + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + Number TAG (0x2df0) + 1 DW_TAG_compile_unit [has children] + DW_AT_producer DW_FORM_strp + DW_AT_language DW_FORM_data1 + DW_AT_name DW_FORM_strp + DW_AT_comp_dir DW_FORM_strp + DW_AT_ranges DW_FORM_sec_offset + DW_AT_low_pc DW_FORM_addr + DW_AT_stmt_list DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 2 DW_TAG_base_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_encoding DW_FORM_data1 + DW_AT_name DW_FORM_strp + DW_AT value: 0 DW_FORM value: 0 + 3 DW_TAG_typedef [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 4 DW_TAG_base_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_encoding DW_FORM_data1 + DW_AT_name DW_FORM_string + DW_AT value: 0 DW_FORM value: 0 + 5 DW_TAG_volatile_type [no children] + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 6 DW_TAG_structure_type [has children] + DW_AT_name DW_FORM_strp + DW_AT_byte_size DW_FORM_data1 + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 7 DW_TAG_member [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_data_member_location DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 8 DW_TAG_pointer_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 9 DW_TAG_typedef [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 10 DW_TAG_structure_type [has children] + DW_AT_name DW_FORM_strp + DW_AT_byte_size DW_FORM_data1 + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 11 DW_TAG_member [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_data_member_location DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 12 DW_TAG_enumeration_type [has children] + DW_AT_encoding DW_FORM_data1 + DW_AT_byte_size DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 13 DW_TAG_enumerator [no children] + DW_AT_name DW_FORM_strp + DW_AT_const_value DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 14 DW_TAG_subprogram [has children] + DW_AT_external DW_FORM_flag_present + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_prototyped DW_FORM_flag_present + DW_AT_type DW_FORM_ref4 + DW_AT_low_pc DW_FORM_addr + DW_AT_high_pc DW_FORM_data8 + DW_AT_frame_base DW_FORM_exprloc + DW_AT_GNU_all_call_sites DW_FORM_flag_present + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 15 DW_TAG_formal_parameter [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_location DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 16 DW_TAG_inlined_subroutine [has children] + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT_low_pc DW_FORM_addr + DW_AT_high_pc DW_FORM_data8 + DW_AT_call_file DW_FORM_data1 + DW_AT_call_line DW_FORM_data1 + DW_AT_call_column DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 17 DW_TAG_formal_parameter [no children] + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT_location DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 18 DW_TAG_variable [no children] + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT_location DW_FORM_exprloc + DW_AT value: 0 DW_FORM value: 0 + 19 DW_TAG_subprogram [has children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_prototyped DW_FORM_flag_present + DW_AT_type DW_FORM_ref4 + DW_AT_inline DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 20 DW_TAG_formal_parameter [no children] + DW_AT_name DW_FORM_string + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 21 DW_TAG_formal_parameter [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 22 DW_TAG_variable [no children] + DW_AT_name DW_FORM_string + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + Number TAG (0x2f3a) + 1 DW_TAG_compile_unit [has children] + DW_AT_producer DW_FORM_strp + DW_AT_language DW_FORM_data1 + DW_AT_name DW_FORM_strp + DW_AT_comp_dir DW_FORM_strp + DW_AT_ranges DW_FORM_sec_offset + DW_AT_low_pc DW_FORM_addr + DW_AT_stmt_list DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 2 DW_TAG_base_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_encoding DW_FORM_data1 + DW_AT_name DW_FORM_strp + DW_AT value: 0 DW_FORM value: 0 + 3 DW_TAG_base_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_encoding DW_FORM_data1 + DW_AT_name DW_FORM_string + DW_AT value: 0 DW_FORM value: 0 + 4 DW_TAG_typedef [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 5 DW_TAG_enumeration_type [has children] + DW_AT_encoding DW_FORM_data1 + DW_AT_byte_size DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 6 DW_TAG_enumerator [no children] + DW_AT_name DW_FORM_strp + DW_AT_const_value DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 7 DW_TAG_subprogram [has children] + DW_AT_external DW_FORM_flag_present + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data2 + DW_AT_decl_column DW_FORM_data1 + DW_AT_prototyped DW_FORM_flag_present + DW_AT_type DW_FORM_ref4 + DW_AT_low_pc DW_FORM_addr + DW_AT_high_pc DW_FORM_data8 + DW_AT_frame_base DW_FORM_exprloc + DW_AT_GNU_all_call_sites DW_FORM_flag_present + DW_AT_sibling DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 8 DW_TAG_formal_parameter [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT_location DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 9 DW_TAG_inlined_subroutine [has children] + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT_low_pc DW_FORM_addr + DW_AT_high_pc DW_FORM_data8 + DW_AT_call_file DW_FORM_data1 + DW_AT_call_line DW_FORM_data1 + DW_AT_call_column DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 10 DW_TAG_formal_parameter [no children] + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT_location DW_FORM_sec_offset + DW_AT value: 0 DW_FORM value: 0 + 11 DW_TAG_variable [no children] + DW_AT_abstract_origin DW_FORM_ref4 + DW_AT_location DW_FORM_exprloc + DW_AT value: 0 DW_FORM value: 0 + 12 DW_TAG_pointer_type [no children] + DW_AT_byte_size DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 13 DW_TAG_const_type [no children] + DW_AT value: 0 DW_FORM value: 0 + 14 DW_TAG_subprogram [has children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_prototyped DW_FORM_flag_present + DW_AT_type DW_FORM_ref4 + DW_AT_inline DW_FORM_data1 + DW_AT value: 0 DW_FORM value: 0 + 15 DW_TAG_formal_parameter [no children] + DW_AT_name DW_FORM_string + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 16 DW_TAG_formal_parameter [no children] + DW_AT_name DW_FORM_strp + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + 17 DW_TAG_variable [no children] + DW_AT_name DW_FORM_string + DW_AT_decl_file DW_FORM_data1 + DW_AT_decl_line DW_FORM_data1 + DW_AT_decl_column DW_FORM_data1 + DW_AT_type DW_FORM_ref4 + DW_AT value: 0 DW_FORM value: 0 + +Contents of the .debug_info section (loaded from ../apps/bin/hello): + + Compilation Unit @ offset 0x0: + Length: 0x26a (32-bit) + Version: 4 + Abbrev Offset: 0x0 + Pointer Size: 8 + <0>: Abbrev Number: 1 (DW_TAG_compile_unit) + DW_AT_producer : (indirect string, offset: 0x92): GNU C17 10.2.0 -mcmodel=medany -march=rv64imafdc -mabi=lp64d -march=rv64imafdc -g -Os -fno-common -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections + <10> DW_AT_language : 12 (ANSI C99) + <11> DW_AT_name : (indirect string, offset: 0xe): common/crt0.c + <15> DW_AT_comp_dir : (indirect string, offset: 0x242): /Users/Luppy/ox64/nuttx/arch/risc-v/src + <19> DW_AT_ranges : 0x0 + <1d> DW_AT_low_pc : 0x0 + <25> DW_AT_stmt_list : 0x0 + <1><29>: Abbrev Number: 2 (DW_TAG_base_type) + <2a> DW_AT_byte_size : 1 + <2b> DW_AT_encoding : 6 (signed char) + <2c> DW_AT_name : (indirect string, offset: 0x21b): signed char + <1><30>: Abbrev Number: 3 (DW_TAG_typedef) + <31> DW_AT_name : (indirect string, offset: 0x239): _uint8_t + <35> DW_AT_decl_file : 2 + <36> DW_AT_decl_line : 52 + <37> DW_AT_decl_column : 28 + <38> DW_AT_type : <0x3c> + <1><3c>: Abbrev Number: 2 (DW_TAG_base_type) + <3d> DW_AT_byte_size : 1 + <3e> DW_AT_encoding : 8 (unsigned char) + <3f> DW_AT_name : (indirect string, offset: 0x142): unsigned char + <1><43>: Abbrev Number: 2 (DW_TAG_base_type) + <44> DW_AT_byte_size : 2 + <45> DW_AT_encoding : 5 (signed) + <46> DW_AT_name : (indirect string, offset: 0x158): short int + <1><4a>: Abbrev Number: 2 (DW_TAG_base_type) + <4b> DW_AT_byte_size : 2 + <4c> DW_AT_encoding : 7 (unsigned) + <4d> DW_AT_name : (indirect string, offset: 0x76): short unsigned int + <1><51>: Abbrev Number: 4 (DW_TAG_base_type) + <52> DW_AT_byte_size : 4 + <53> DW_AT_encoding : 5 (signed) + <54> DW_AT_name : int + <1><58>: Abbrev Number: 2 (DW_TAG_base_type) + <59> DW_AT_byte_size : 4 + <5a> DW_AT_encoding : 7 (unsigned) + <5b> DW_AT_name : (indirect string, offset: 0x184): unsigned int + <1><5f>: Abbrev Number: 2 (DW_TAG_base_type) + <60> DW_AT_byte_size : 8 + <61> DW_AT_encoding : 5 (signed) + <62> DW_AT_name : (indirect string, offset: 0x1ff): long int + <1><66>: Abbrev Number: 2 (DW_TAG_base_type) + <67> DW_AT_byte_size : 8 + <68> DW_AT_encoding : 7 (unsigned) + <69> DW_AT_name : (indirect string, offset: 0x64): long unsigned int + <1><6d>: Abbrev Number: 2 (DW_TAG_base_type) + <6e> DW_AT_byte_size : 8 + <6f> DW_AT_encoding : 7 (unsigned) + <70> DW_AT_name : (indirect string, offset: 0x191): long long unsigned int + <1><74>: Abbrev Number: 3 (DW_TAG_typedef) + <75> DW_AT_name : (indirect string, offset: 0x1a8): uint8_t + <79> DW_AT_decl_file : 3 + <7a> DW_AT_decl_line : 166 + <7b> DW_AT_decl_column : 29 + <7c> DW_AT_type : <0x30> + <1><80>: Abbrev Number: 5 (DW_TAG_pointer_type) + <81> DW_AT_byte_size : 8 + <1><82>: Abbrev Number: 6 (DW_TAG_pointer_type) + <83> DW_AT_byte_size : 8 + <84> DW_AT_type : <0x88> + <1><88>: Abbrev Number: 2 (DW_TAG_base_type) + <89> DW_AT_byte_size : 1 + <8a> DW_AT_encoding : 8 (unsigned char) + <8b> DW_AT_name : (indirect string, offset: 0x9): char + <1><8f>: Abbrev Number: 6 (DW_TAG_pointer_type) + <90> DW_AT_byte_size : 8 + <91> DW_AT_type : <0x82> + <1><95>: Abbrev Number: 2 (DW_TAG_base_type) + <96> DW_AT_byte_size : 8 + <97> DW_AT_encoding : 5 (signed) + <98> DW_AT_name : (indirect string, offset: 0x1c5): long long int + <1><9c>: Abbrev Number: 2 (DW_TAG_base_type) + <9d> DW_AT_byte_size : 16 + <9e> DW_AT_encoding : 4 (float) + <9f> DW_AT_name : (indirect string, offset: 0x20f): long double + <1>: Abbrev Number: 7 (DW_TAG_union_type) + DW_AT_name : (indirect string, offset: 0x208): sigval + DW_AT_byte_size : 8 + DW_AT_decl_file : 4 + DW_AT_decl_line : 325 + DW_AT_decl_column : 7 + DW_AT_sibling : <0xcc> + <2>: Abbrev Number: 8 (DW_TAG_member) + DW_AT_name : (indirect string, offset: 0x5a): sival_int + DW_AT_decl_file : 4 + DW_AT_decl_line : 327 + DW_AT_decl_column : 13 + DW_AT_type : <0x51> + <2>: Abbrev Number: 8 (DW_TAG_member) + DW_AT_name : (indirect string, offset: 0x1c): sival_ptr + DW_AT_decl_file : 4 + DW_AT_decl_line : 328 + DW_AT_decl_column : 13 + DW_AT_type : <0x80> + <2>: Abbrev Number: 0 + <1>: Abbrev Number: 9 (DW_TAG_structure_type) + DW_AT_name : (indirect string, offset: 0x1d3): siginfo + DW_AT_byte_size : 24 + DW_AT_decl_file : 4 + DW_AT_decl_line : 352 + DW_AT_decl_column : 8 + DW_AT_sibling : <0x121> + <2>: Abbrev Number: 10 (DW_TAG_member) + DW_AT_name : (indirect string, offset: 0x0): si_signo + DW_AT_decl_file : 4 + DW_AT_decl_line : 354 + DW_AT_decl_column : 16 + DW_AT_type : <0x74> + DW_AT_data_member_location: 0 + <2>: Abbrev Number: 10 (DW_TAG_member) + DW_AT_name : (indirect string, offset: 0x150): si_code + DW_AT_decl_file : 4 + DW_AT_decl_line : 355 + DW_AT_decl_column : 16 + DW_AT_type : <0x74> + DW_AT_data_member_location: 1 + <2>: Abbrev Number: 10 (DW_TAG_member) + DW_AT_name : (indirect string, offset: 0x51): si_errno + DW_AT_decl_file : 4 + DW_AT_decl_line : 356 + DW_AT_decl_column : 16 + DW_AT_type : <0x74> + <103> DW_AT_data_member_location: 2 + <2><104>: Abbrev Number: 10 (DW_TAG_member) + <105> DW_AT_name : (indirect string, offset: 0x89): si_value + <109> DW_AT_decl_file : 4 + <10a> DW_AT_decl_line : 357 + <10c> DW_AT_decl_column : 16 + <10d> DW_AT_type : <0xa3> + <111> DW_AT_data_member_location: 8 + <2><112>: Abbrev Number: 10 (DW_TAG_member) + <113> DW_AT_name : (indirect string, offset: 0x17c): si_user + <117> DW_AT_decl_file : 4 + <118> DW_AT_decl_line : 365 + <11a> DW_AT_decl_column : 16 + <11b> DW_AT_type : <0x80> + <11f> DW_AT_data_member_location: 16 + <2><120>: Abbrev Number: 0 + <1><121>: Abbrev Number: 11 (DW_TAG_typedef) + <122> DW_AT_name : (indirect string, offset: 0x1eb): siginfo_t + <126> DW_AT_decl_file : 4 + <127> DW_AT_decl_line : 368 + <129> DW_AT_decl_column : 24 + <12a> DW_AT_type : <0xcc> + <1><12e>: Abbrev Number: 11 (DW_TAG_typedef) + <12f> DW_AT_name : (indirect string, offset: 0x1db): _sa_sigaction_t + <133> DW_AT_decl_file : 4 + <134> DW_AT_decl_line : 375 + <136> DW_AT_decl_column : 21 + <137> DW_AT_type : <0x13b> + <1><13b>: Abbrev Number: 6 (DW_TAG_pointer_type) + <13c> DW_AT_byte_size : 8 + <13d> DW_AT_type : <0x141> + <1><141>: Abbrev Number: 12 (DW_TAG_subroutine_type) + <142> DW_AT_prototyped : 1 + <142> DW_AT_sibling : <0x156> + <2><146>: Abbrev Number: 13 (DW_TAG_formal_parameter) + <147> DW_AT_type : <0x51> + <2><14b>: Abbrev Number: 13 (DW_TAG_formal_parameter) + <14c> DW_AT_type : <0x156> + <2><150>: Abbrev Number: 13 (DW_TAG_formal_parameter) + <151> DW_AT_type : <0x80> + <2><155>: Abbrev Number: 0 + <1><156>: Abbrev Number: 6 (DW_TAG_pointer_type) + <157> DW_AT_byte_size : 8 + <158> DW_AT_type : <0x121> + <1><15c>: Abbrev Number: 2 (DW_TAG_base_type) + <15d> DW_AT_byte_size : 1 + <15e> DW_AT_encoding : 2 (boolean) + <15f> DW_AT_name : (indirect string, offset: 0x227): _Bool + <1><163>: Abbrev Number: 11 (DW_TAG_typedef) + <164> DW_AT_name : (indirect string, offset: 0x162): addrenv_sigtramp_t + <168> DW_AT_decl_file : 5 + <169> DW_AT_decl_line : 281 + <16b> DW_AT_decl_column : 21 + <16c> DW_AT_type : <0x170> + <1><170>: Abbrev Number: 6 (DW_TAG_pointer_type) + <171> DW_AT_byte_size : 8 + <172> DW_AT_type : <0x176> + <1><176>: Abbrev Number: 12 (DW_TAG_subroutine_type) + <177> DW_AT_prototyped : 1 + <177> DW_AT_sibling : <0x190> + <2><17b>: Abbrev Number: 13 (DW_TAG_formal_parameter) + <17c> DW_AT_type : <0x12e> + <2><180>: Abbrev Number: 13 (DW_TAG_formal_parameter) + <181> DW_AT_type : <0x51> + <2><185>: Abbrev Number: 13 (DW_TAG_formal_parameter) + <186> DW_AT_type : <0x156> + <2><18a>: Abbrev Number: 13 (DW_TAG_formal_parameter) + <18b> DW_AT_type : <0x80> + <2><18f>: Abbrev Number: 0 + <1><190>: Abbrev Number: 9 (DW_TAG_structure_type) + <191> DW_AT_name : (indirect string, offset: 0x35): addrenv_reserve_s + <195> DW_AT_byte_size : 16 + <196> DW_AT_decl_file : 5 + <197> DW_AT_decl_line : 289 + <199> DW_AT_decl_column : 8 + <19a> DW_AT_sibling : <0x1bb> + <2><19e>: Abbrev Number: 10 (DW_TAG_member) + <19f> DW_AT_name : (indirect string, offset: 0x22d): ar_sigtramp + <1a3> DW_AT_decl_file : 5 + <1a4> DW_AT_decl_line : 291 + <1a6> DW_AT_decl_column : 22 + <1a7> DW_AT_type : <0x163> + <1ab> DW_AT_data_member_location: 0 + <2><1ac>: Abbrev Number: 10 (DW_TAG_member) + <1ad> DW_AT_name : (indirect string, offset: 0x1ba): ar_usrheap + <1b1> DW_AT_decl_file : 5 + <1b2> DW_AT_decl_line : 292 + <1b4> DW_AT_decl_column : 22 + <1b5> DW_AT_type : <0x1c0> + <1b9> DW_AT_data_member_location: 8 + <2><1ba>: Abbrev Number: 0 + <1><1bb>: Abbrev Number: 14 (DW_TAG_structure_type) + <1bc> DW_AT_name : (indirect string, offset: 0x47): mm_heap_s + <1c0> DW_AT_declaration : 1 + <1><1c0>: Abbrev Number: 6 (DW_TAG_pointer_type) + <1c1> DW_AT_byte_size : 8 + <1c2> DW_AT_type : <0x1bb> + <1><1c6>: Abbrev Number: 15 (DW_TAG_subprogram) + <1c7> DW_AT_external : 1 + <1c7> DW_AT_name : (indirect string, offset: 0x175): _start + <1cb> DW_AT_decl_file : 1 + <1cc> DW_AT_decl_line : 165 + <1cd> DW_AT_decl_column : 6 + <1ce> DW_AT_prototyped : 1 + <1ce> DW_AT_low_pc : 0x1a + <1d6> DW_AT_high_pc : 0x24 + <1de> DW_AT_frame_base : 1 byte block: 9c (DW_OP_call_frame_cfa) + <1e0> DW_AT_GNU_all_call_sites: 1 + <1e0> DW_AT_sibling : <0x23b> + <2><1e4>: Abbrev Number: 16 (DW_TAG_formal_parameter) + <1e5> DW_AT_name : (indirect string, offset: 0x1b5): argc + <1e9> DW_AT_decl_file : 1 + <1ea> DW_AT_decl_line : 165 + <1eb> DW_AT_decl_column : 17 + <1ec> DW_AT_type : <0x51> + <1f0> DW_AT_location : 0x0 (location list) + <2><1f4>: Abbrev Number: 16 (DW_TAG_formal_parameter) + <1f5> DW_AT_name : (indirect string, offset: 0x1fa): argv + <1f9> DW_AT_decl_file : 1 + <1fa> DW_AT_decl_line : 165 + <1fb> DW_AT_decl_column : 29 + <1fc> DW_AT_type : <0x8f> + <200> DW_AT_location : 0x39 (location list) + <2><204>: Abbrev Number: 17 (DW_TAG_variable) + <205> DW_AT_name : ret + <209> DW_AT_decl_file : 1 + <20a> DW_AT_decl_line : 167 + <20b> DW_AT_decl_column : 7 + <20c> DW_AT_type : <0x51> + <210> DW_AT_location : 0x72 (location list) + <2><214>: Abbrev Number: 18 (DW_TAG_GNU_call_site) + <215> DW_AT_low_pc : 0x36 + <21d> DW_AT_abstract_origin: <0x255> + <221> DW_AT_sibling : <0x22d> + <3><225>: Abbrev Number: 19 (DW_TAG_GNU_call_site_parameter) + <226> DW_AT_location : 1 byte block: 5b (DW_OP_reg11 (a1)) + <228> DW_AT_GNU_call_site_value: 3 byte block: f3 1 5b (DW_OP_GNU_entry_value: (DW_OP_reg11 (a1))) + <3><22c>: Abbrev Number: 0 + <2><22d>: Abbrev Number: 20 (DW_TAG_GNU_call_site) + <22e> DW_AT_low_pc : 0x3e + <236> DW_AT_abstract_origin: <0x261> + <2><23a>: Abbrev Number: 0 + <1><23b>: Abbrev Number: 21 (DW_TAG_subprogram) + <23c> DW_AT_name : (indirect string, offset: 0x26): sig_trampoline + <240> DW_AT_decl_file : 1 + <241> DW_AT_decl_line : 68 + <242> DW_AT_decl_column : 13 + <243> DW_AT_prototyped : 1 + <243> DW_AT_low_pc : 0x0 + <24b> DW_AT_high_pc : 0x1a + <253> DW_AT_frame_base : 1 byte block: 9c (DW_OP_call_frame_cfa) + <255> DW_AT_GNU_all_call_sites: 1 + <1><255>: Abbrev Number: 22 (DW_TAG_subprogram) + <256> DW_AT_external : 1 + <256> DW_AT_declaration : 1 + <256> DW_AT_linkage_name: (indirect string, offset: 0x1b0): main + <25a> DW_AT_name : (indirect string, offset: 0x1b0): main + <25e> DW_AT_decl_file : 1 + <25f> DW_AT_decl_line : 42 + <260> DW_AT_decl_column : 5 + <1><261>: Abbrev Number: 22 (DW_TAG_subprogram) + <262> DW_AT_external : 1 + <262> DW_AT_declaration : 1 + <262> DW_AT_linkage_name: (indirect string, offset: 0x1f5): exit + <266> DW_AT_name : (indirect string, offset: 0x1f5): exit + <26a> DW_AT_decl_file : 6 + <26b> DW_AT_decl_line : 169 + <26c> DW_AT_decl_column : 11 + <1><26d>: Abbrev Number: 0 + Compilation Unit @ offset 0x26e: + Length: 0xf6 (32-bit) + Version: 4 + Abbrev Offset: 0x140 + Pointer Size: 8 + <0><279>: Abbrev Number: 1 (DW_TAG_compile_unit) + <27a> DW_AT_producer : (indirect string, offset: 0x35b): GNU C17 10.2.0 -mcmodel=medany -march=rv64imafdc -mabi=lp64d -march=rv64imafdc -g -Os -fno-common -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections + <27e> DW_AT_language : 12 (ANSI C99) + <27f> DW_AT_name : (indirect string, offset: 0x300): hello_main.c + <283> DW_AT_comp_dir : (indirect string, offset: 0x2d5): /Users/Luppy/ox64/apps/examples/hello + <287> DW_AT_ranges : 0x30 + <28b> DW_AT_low_pc : 0x0 + <293> DW_AT_stmt_list : 0x15e + <1><297>: Abbrev Number: 2 (DW_TAG_base_type) + <298> DW_AT_byte_size : 1 + <299> DW_AT_encoding : 6 (signed char) + <29a> DW_AT_name : (indirect string, offset: 0x334): signed char + <1><29e>: Abbrev Number: 2 (DW_TAG_base_type) + <29f> DW_AT_byte_size : 1 + <2a0> DW_AT_encoding : 8 (unsigned char) + <2a1> DW_AT_name : (indirect string, offset: 0x2c7): unsigned char + <1><2a5>: Abbrev Number: 2 (DW_TAG_base_type) + <2a6> DW_AT_byte_size : 2 + <2a7> DW_AT_encoding : 5 (signed) + <2a8> DW_AT_name : (indirect string, offset: 0x351): short int + <1><2ac>: Abbrev Number: 2 (DW_TAG_base_type) + <2ad> DW_AT_byte_size : 2 + <2ae> DW_AT_encoding : 7 (unsigned) + <2af> DW_AT_name : (indirect string, offset: 0x321): short unsigned int + <1><2b3>: Abbrev Number: 3 (DW_TAG_base_type) + <2b4> DW_AT_byte_size : 4 + <2b5> DW_AT_encoding : 5 (signed) + <2b6> DW_AT_name : int + <1><2ba>: Abbrev Number: 2 (DW_TAG_base_type) + <2bb> DW_AT_byte_size : 4 + <2bc> DW_AT_encoding : 7 (unsigned) + <2bd> DW_AT_name : (indirect string, offset: 0x278): unsigned int + <1><2c1>: Abbrev Number: 2 (DW_TAG_base_type) + <2c2> DW_AT_byte_size : 8 + <2c3> DW_AT_encoding : 5 (signed) + <2c4> DW_AT_name : (indirect string, offset: 0x313): long int + <1><2c8>: Abbrev Number: 2 (DW_TAG_base_type) + <2c9> DW_AT_byte_size : 8 + <2ca> DW_AT_encoding : 7 (unsigned) + <2cb> DW_AT_name : (indirect string, offset: 0x29e): long unsigned int + <1><2cf>: Abbrev Number: 2 (DW_TAG_base_type) + <2d0> DW_AT_byte_size : 8 + <2d1> DW_AT_encoding : 7 (unsigned) + <2d2> DW_AT_name : (indirect string, offset: 0x2b0): long long unsigned int + <1><2d6>: Abbrev Number: 4 (DW_TAG_pointer_type) + <2d7> DW_AT_byte_size : 8 + <2d8> DW_AT_type : <0x2dc> + <1><2dc>: Abbrev Number: 2 (DW_TAG_base_type) + <2dd> DW_AT_byte_size : 1 + <2de> DW_AT_encoding : 8 (unsigned char) + <2df> DW_AT_name : (indirect string, offset: 0x2fb): char + <1><2e3>: Abbrev Number: 4 (DW_TAG_pointer_type) + <2e4> DW_AT_byte_size : 8 + <2e5> DW_AT_type : <0x2d6> + <1><2e9>: Abbrev Number: 2 (DW_TAG_base_type) + <2ea> DW_AT_byte_size : 8 + <2eb> DW_AT_encoding : 5 (signed) + <2ec> DW_AT_name : (indirect string, offset: 0x26a): long long int + <1><2f0>: Abbrev Number: 2 (DW_TAG_base_type) + <2f1> DW_AT_byte_size : 16 + <2f2> DW_AT_encoding : 4 (float) + <2f3> DW_AT_name : (indirect string, offset: 0x345): long double + <1><2f7>: Abbrev Number: 2 (DW_TAG_base_type) + <2f8> DW_AT_byte_size : 1 + <2f9> DW_AT_encoding : 2 (boolean) + <2fa> DW_AT_name : (indirect string, offset: 0x30d): _Bool + <1><2fe>: Abbrev Number: 5 (DW_TAG_subprogram) + <2ff> DW_AT_external : 1 + <2ff> DW_AT_name : (indirect string, offset: 0x28a): main + <303> DW_AT_decl_file : 1 + <304> DW_AT_decl_line : 36 + <305> DW_AT_decl_column : 5 + <306> DW_AT_prototyped : 1 + <306> DW_AT_type : <0x2b3> + <30a> DW_AT_low_pc : 0x3e + <312> DW_AT_high_pc : 0x1c + <31a> DW_AT_frame_base : 1 byte block: 9c (DW_OP_call_frame_cfa) + <31c> DW_AT_GNU_all_call_sites: 1 + <31c> DW_AT_sibling : <0x35c> + <2><320>: Abbrev Number: 6 (DW_TAG_formal_parameter) + <321> DW_AT_name : (indirect string, offset: 0x31c): argc + <325> DW_AT_decl_file : 1 + <326> DW_AT_decl_line : 36 + <327> DW_AT_decl_column : 14 + <328> DW_AT_type : <0x2b3> + <32c> DW_AT_location : 0x95 (location list) + <2><330>: Abbrev Number: 6 (DW_TAG_formal_parameter) + <331> DW_AT_name : (indirect string, offset: 0x340): argv + <335> DW_AT_decl_file : 1 + <336> DW_AT_decl_line : 36 + <337> DW_AT_decl_column : 30 + <338> DW_AT_type : <0x2e3> + <33c> DW_AT_location : 0xce (location list) + <2><340>: Abbrev Number: 7 (DW_TAG_GNU_call_site) + <341> DW_AT_low_pc : 0x52 + <349> DW_AT_abstract_origin: <0x35c> + <3><34d>: Abbrev Number: 8 (DW_TAG_GNU_call_site_parameter) + <34e> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <350> DW_AT_GNU_call_site_value: 9 byte block: 3 20 e 0 0 0 0 0 0 (DW_OP_addr: e20) + <3><35a>: Abbrev Number: 0 + <2><35b>: Abbrev Number: 0 + <1><35c>: Abbrev Number: 9 (DW_TAG_subprogram) + <35d> DW_AT_external : 1 + <35d> DW_AT_declaration : 1 + <35d> DW_AT_linkage_name: (indirect string, offset: 0x285): puts + <361> DW_AT_name : (indirect string, offset: 0x28f): __builtin_puts + <365> DW_AT_decl_file : 2 + <366> DW_AT_decl_line : 0 + <1><367>: Abbrev Number: 0 + Compilation Unit @ offset 0x368: + Length: 0x5e9 (32-bit) + Version: 4 + Abbrev Offset: 0x1ca + Pointer Size: 8 + <0><373>: Abbrev Number: 1 (DW_TAG_compile_unit) + <374> DW_AT_producer : (indirect string, offset: 0x4b2): GNU C17 10.2.0 -mcmodel=medany -march=rv64imafdc -mabi=lp64d -march=rv64imafdc -g -Os -fno-common -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections + <378> DW_AT_language : 12 (ANSI C99) + <379> DW_AT_name : (indirect string, offset: 0x78f): stdio/lib_puts.c + <37d> DW_AT_comp_dir : (indirect string, offset: 0x5c8): /Users/Luppy/ox64/nuttx/libs/libc + <381> DW_AT_ranges : 0x50 + <385> DW_AT_low_pc : 0x0 + <38d> DW_AT_stmt_list : 0x1e8 + <1><391>: Abbrev Number: 2 (DW_TAG_base_type) + <392> DW_AT_byte_size : 1 + <393> DW_AT_encoding : 6 (signed char) + <394> DW_AT_name : (indirect string, offset: 0x695): signed char + <1><398>: Abbrev Number: 3 (DW_TAG_typedef) + <399> DW_AT_name : (indirect string, offset: 0x432): _uint8_t + <39d> DW_AT_decl_file : 2 + <39e> DW_AT_decl_line : 52 + <39f> DW_AT_decl_column : 28 + <3a0> DW_AT_type : <0x3a4> + <1><3a4>: Abbrev Number: 2 (DW_TAG_base_type) + <3a5> DW_AT_byte_size : 1 + <3a6> DW_AT_encoding : 8 (unsigned char) + <3a7> DW_AT_name : (indirect string, offset: 0x661): unsigned char + <1><3ab>: Abbrev Number: 3 (DW_TAG_typedef) + <3ac> DW_AT_name : (indirect string, offset: 0x66f): _int16_t + <3b0> DW_AT_decl_file : 2 + <3b1> DW_AT_decl_line : 54 + <3b2> DW_AT_decl_column : 28 + <3b3> DW_AT_type : <0x3b7> + <1><3b7>: Abbrev Number: 2 (DW_TAG_base_type) + <3b8> DW_AT_byte_size : 2 + <3b9> DW_AT_encoding : 5 (signed) + <3ba> DW_AT_name : (indirect string, offset: 0x4a8): short int + <1><3be>: Abbrev Number: 3 (DW_TAG_typedef) + <3bf> DW_AT_name : (indirect string, offset: 0x7d5): _uint16_t + <3c3> DW_AT_decl_file : 2 + <3c4> DW_AT_decl_line : 55 + <3c5> DW_AT_decl_column : 28 + <3c6> DW_AT_type : <0x3ca> + <1><3ca>: Abbrev Number: 2 (DW_TAG_base_type) + <3cb> DW_AT_byte_size : 2 + <3cc> DW_AT_encoding : 7 (unsigned) + <3cd> DW_AT_name : (indirect string, offset: 0x6f3): short unsigned int + <1><3d1>: Abbrev Number: 3 (DW_TAG_typedef) + <3d2> DW_AT_name : (indirect string, offset: 0x64e): _int32_t + <3d6> DW_AT_decl_file : 2 + <3d7> DW_AT_decl_line : 58 + <3d8> DW_AT_decl_column : 28 + <3d9> DW_AT_type : <0x3dd> + <1><3dd>: Abbrev Number: 4 (DW_TAG_base_type) + <3de> DW_AT_byte_size : 4 + <3df> DW_AT_encoding : 5 (signed) + <3e0> DW_AT_name : int + <1><3e4>: Abbrev Number: 2 (DW_TAG_base_type) + <3e5> DW_AT_byte_size : 4 + <3e6> DW_AT_encoding : 7 (unsigned) + <3e7> DW_AT_name : (indirect string, offset: 0x7ec): unsigned int + <1><3eb>: Abbrev Number: 2 (DW_TAG_base_type) + <3ec> DW_AT_byte_size : 8 + <3ed> DW_AT_encoding : 5 (signed) + <3ee> DW_AT_name : (indirect string, offset: 0x713): long int + <1><3f2>: Abbrev Number: 2 (DW_TAG_base_type) + <3f3> DW_AT_byte_size : 8 + <3f4> DW_AT_encoding : 7 (unsigned) + <3f5> DW_AT_name : (indirect string, offset: 0x6cc): long unsigned int + <1><3f9>: Abbrev Number: 3 (DW_TAG_typedef) + <3fa> DW_AT_name : (indirect string, offset: 0x82b): _ssize_t + <3fe> DW_AT_decl_file : 2 + <3ff> DW_AT_decl_line : 91 + <400> DW_AT_decl_column : 28 + <401> DW_AT_type : <0x3eb> + <1><405>: Abbrev Number: 3 (DW_TAG_typedef) + <406> DW_AT_name : (indirect string, offset: 0x477): _size_t + <40a> DW_AT_decl_file : 2 + <40b> DW_AT_decl_line : 93 + <40c> DW_AT_decl_column : 28 + <40d> DW_AT_type : <0x3f2> + <1><411>: Abbrev Number: 2 (DW_TAG_base_type) + <412> DW_AT_byte_size : 8 + <413> DW_AT_encoding : 7 (unsigned) + <414> DW_AT_name : (indirect string, offset: 0x6a7): long long unsigned int + <1><418>: Abbrev Number: 3 (DW_TAG_typedef) + <419> DW_AT_name : (indirect string, offset: 0x571): uint8_t + <41d> DW_AT_decl_file : 3 + <41e> DW_AT_decl_line : 166 + <41f> DW_AT_decl_column : 29 + <420> DW_AT_type : <0x398> + <1><424>: Abbrev Number: 3 (DW_TAG_typedef) + <425> DW_AT_name : (indirect string, offset: 0x724): int16_t + <429> DW_AT_decl_file : 3 + <42a> DW_AT_decl_line : 168 + <42b> DW_AT_decl_column : 29 + <42c> DW_AT_type : <0x3ab> + <1><430>: Abbrev Number: 5 (DW_TAG_volatile_type) + <431> DW_AT_type : <0x424> + <1><435>: Abbrev Number: 3 (DW_TAG_typedef) + <436> DW_AT_name : (indirect string, offset: 0x6c3): uint16_t + <43a> DW_AT_decl_file : 3 + <43b> DW_AT_decl_line : 169 + <43c> DW_AT_decl_column : 29 + <43d> DW_AT_type : <0x3be> + <1><441>: Abbrev Number: 3 (DW_TAG_typedef) + <442> DW_AT_name : (indirect string, offset: 0x71c): int32_t + <446> DW_AT_decl_file : 3 + <447> DW_AT_decl_line : 176 + <448> DW_AT_decl_column : 29 + <449> DW_AT_type : <0x3d1> + <1><44d>: Abbrev Number: 3 (DW_TAG_typedef) + <44e> DW_AT_name : (indirect string, offset: 0x44f): size_t + <452> DW_AT_decl_file : 4 + <453> DW_AT_decl_line : 133 + <454> DW_AT_decl_column : 22 + <455> DW_AT_type : <0x405> + <1><459>: Abbrev Number: 3 (DW_TAG_typedef) + <45a> DW_AT_name : (indirect string, offset: 0x4a0): ssize_t + <45e> DW_AT_decl_file : 4 + <45f> DW_AT_decl_line : 134 + <460> DW_AT_decl_column : 22 + <461> DW_AT_type : <0x3f9> + <1><465>: Abbrev Number: 3 (DW_TAG_typedef) + <466> DW_AT_name : (indirect string, offset: 0x789): pid_t + <46a> DW_AT_decl_file : 4 + <46b> DW_AT_decl_line : 162 + <46c> DW_AT_decl_column : 22 + <46d> DW_AT_type : <0x3dd> + <1><471>: Abbrev Number: 3 (DW_TAG_typedef) + <472> DW_AT_name : (indirect string, offset: 0x62b): off_t + <476> DW_AT_decl_file : 4 + <477> DW_AT_decl_line : 229 + <478> DW_AT_decl_column : 22 + <479> DW_AT_type : <0x441> + <1><47d>: Abbrev Number: 6 (DW_TAG_pointer_type) + <47e> DW_AT_byte_size : 8 + <1><47f>: Abbrev Number: 7 (DW_TAG_pointer_type) + <480> DW_AT_byte_size : 8 + <481> DW_AT_type : <0x485> + <1><485>: Abbrev Number: 2 (DW_TAG_base_type) + <486> DW_AT_byte_size : 1 + <487> DW_AT_encoding : 8 (unsigned char) + <488> DW_AT_name : (indirect string, offset: 0x706): char + <1><48c>: Abbrev Number: 8 (DW_TAG_const_type) + <48d> DW_AT_type : <0x485> + <1><491>: Abbrev Number: 7 (DW_TAG_pointer_type) + <492> DW_AT_byte_size : 8 + <493> DW_AT_type : <0x48c> + <1><497>: Abbrev Number: 9 (DW_TAG_structure_type) + <498> DW_AT_name : (indirect string, offset: 0x637): dq_entry_s + <49c> DW_AT_byte_size : 16 + <49d> DW_AT_decl_file : 5 + <49e> DW_AT_decl_line : 303 + <4a0> DW_AT_decl_column : 8 + <4a1> DW_AT_sibling : <0x4c2> + <2><4a5>: Abbrev Number: 10 (DW_TAG_member) + <4a6> DW_AT_name : (indirect string, offset: 0x631): flink + <4aa> DW_AT_decl_file : 5 + <4ab> DW_AT_decl_line : 305 + <4ad> DW_AT_decl_column : 26 + <4ae> DW_AT_type : <0x4c2> + <4b2> DW_AT_data_member_location: 0 + <2><4b3>: Abbrev Number: 10 (DW_TAG_member) + <4b4> DW_AT_name : (indirect string, offset: 0x411): blink + <4b8> DW_AT_decl_file : 5 + <4b9> DW_AT_decl_line : 306 + <4bb> DW_AT_decl_column : 26 + <4bc> DW_AT_type : <0x4c2> + <4c0> DW_AT_data_member_location: 8 + <2><4c1>: Abbrev Number: 0 + <1><4c2>: Abbrev Number: 7 (DW_TAG_pointer_type) + <4c3> DW_AT_byte_size : 8 + <4c4> DW_AT_type : <0x497> + <1><4c8>: Abbrev Number: 11 (DW_TAG_typedef) + <4c9> DW_AT_name : (indirect string, offset: 0x73a): dq_entry_t + <4cd> DW_AT_decl_file : 5 + <4ce> DW_AT_decl_line : 308 + <4d0> DW_AT_decl_column : 27 + <4d1> DW_AT_type : <0x497> + <1><4d5>: Abbrev Number: 9 (DW_TAG_structure_type) + <4d6> DW_AT_name : (indirect string, offset: 0x80e): dq_queue_s + <4da> DW_AT_byte_size : 16 + <4db> DW_AT_decl_file : 5 + <4dc> DW_AT_decl_line : 317 + <4de> DW_AT_decl_column : 8 + <4df> DW_AT_sibling : <0x500> + <2><4e3>: Abbrev Number: 10 (DW_TAG_member) + <4e4> DW_AT_name : (indirect string, offset: 0x56c): head + <4e8> DW_AT_decl_file : 5 + <4e9> DW_AT_decl_line : 319 + <4eb> DW_AT_decl_column : 19 + <4ec> DW_AT_type : <0x500> + <4f0> DW_AT_data_member_location: 0 + <2><4f1>: Abbrev Number: 10 (DW_TAG_member) + <4f2> DW_AT_name : (indirect string, offset: 0x6be): tail + <4f6> DW_AT_decl_file : 5 + <4f7> DW_AT_decl_line : 320 + <4f9> DW_AT_decl_column : 19 + <4fa> DW_AT_type : <0x500> + <4fe> DW_AT_data_member_location: 8 + <2><4ff>: Abbrev Number: 0 + <1><500>: Abbrev Number: 7 (DW_TAG_pointer_type) + <501> DW_AT_byte_size : 8 + <502> DW_AT_type : <0x4c8> + <1><506>: Abbrev Number: 11 (DW_TAG_typedef) + <507> DW_AT_name : (indirect string, offset: 0x7c5): dq_queue_t + <50b> DW_AT_decl_file : 5 + <50c> DW_AT_decl_line : 322 + <50e> DW_AT_decl_column : 27 + <50f> DW_AT_type : <0x4d5> + <1><513>: Abbrev Number: 12 (DW_TAG_structure_type) + <514> DW_AT_name : (indirect string, offset: 0x58f): sem_s + <518> DW_AT_byte_size : 24 + <519> DW_AT_decl_file : 6 + <51a> DW_AT_decl_line : 99 + <51b> DW_AT_decl_column : 8 + <51c> DW_AT_sibling : <0x548> + <2><520>: Abbrev Number: 13 (DW_TAG_member) + <521> DW_AT_name : (indirect string, offset: 0x678): semcount + <525> DW_AT_decl_file : 6 + <526> DW_AT_decl_line : 101 + <527> DW_AT_decl_column : 20 + <528> DW_AT_type : <0x430> + <52c> DW_AT_data_member_location: 0 + <2><52d>: Abbrev Number: 13 (DW_TAG_member) + <52e> DW_AT_name : (indirect string, offset: 0x6a1): flags + <532> DW_AT_decl_file : 6 + <533> DW_AT_decl_line : 108 + <534> DW_AT_decl_column : 11 + <535> DW_AT_type : <0x418> + <539> DW_AT_data_member_location: 2 + <2><53a>: Abbrev Number: 13 (DW_TAG_member) + <53b> DW_AT_name : (indirect string, offset: 0x47f): waitlist + <53f> DW_AT_decl_file : 6 + <540> DW_AT_decl_line : 110 + <541> DW_AT_decl_column : 14 + <542> DW_AT_type : <0x506> + <546> DW_AT_data_member_location: 8 + <2><547>: Abbrev Number: 0 + <1><548>: Abbrev Number: 3 (DW_TAG_typedef) + <549> DW_AT_name : (indirect string, offset: 0x595): sem_t + <54d> DW_AT_decl_file : 6 + <54e> DW_AT_decl_line : 121 + <54f> DW_AT_decl_column : 22 + <550> DW_AT_type : <0x513> + <1><554>: Abbrev Number: 12 (DW_TAG_structure_type) + <555> DW_AT_name : (indirect string, offset: 0x70b): mutex_s + <559> DW_AT_byte_size : 32 + <55a> DW_AT_decl_file : 7 + <55b> DW_AT_decl_line : 46 + <55c> DW_AT_decl_column : 8 + <55d> DW_AT_sibling : <0x57c> + <2><561>: Abbrev Number: 14 (DW_TAG_member) + <562> DW_AT_name : sem + <566> DW_AT_decl_file : 7 + <567> DW_AT_decl_line : 48 + <568> DW_AT_decl_column : 9 + <569> DW_AT_type : <0x548> + <56d> DW_AT_data_member_location: 0 + <2><56e>: Abbrev Number: 13 (DW_TAG_member) + <56f> DW_AT_name : (indirect string, offset: 0x5f2): holder + <573> DW_AT_decl_file : 7 + <574> DW_AT_decl_line : 49 + <575> DW_AT_decl_column : 9 + <576> DW_AT_type : <0x465> + <57a> DW_AT_data_member_location: 24 + <2><57b>: Abbrev Number: 0 + <1><57c>: Abbrev Number: 3 (DW_TAG_typedef) + <57d> DW_AT_name : (indirect string, offset: 0x610): mutex_t + <581> DW_AT_decl_file : 7 + <582> DW_AT_decl_line : 52 + <583> DW_AT_decl_column : 24 + <584> DW_AT_type : <0x554> + <1><588>: Abbrev Number: 12 (DW_TAG_structure_type) + <589> DW_AT_name : (indirect string, offset: 0x819): rmutex_s + <58d> DW_AT_byte_size : 40 + <58e> DW_AT_decl_file : 7 + <58f> DW_AT_decl_line : 54 + <590> DW_AT_decl_column : 8 + <591> DW_AT_sibling : <0x5b0> + <2><595>: Abbrev Number: 13 (DW_TAG_member) + <596> DW_AT_name : (indirect string, offset: 0x6ed): mutex + <59a> DW_AT_decl_file : 7 + <59b> DW_AT_decl_line : 56 + <59c> DW_AT_decl_column : 11 + <59d> DW_AT_type : <0x57c> + <5a1> DW_AT_data_member_location: 0 + <2><5a2>: Abbrev Number: 13 (DW_TAG_member) + <5a3> DW_AT_name : (indirect string, offset: 0x7a0): count + <5a7> DW_AT_decl_file : 7 + <5a8> DW_AT_decl_line : 57 + <5a9> DW_AT_decl_column : 16 + <5aa> DW_AT_type : <0x3e4> + <5ae> DW_AT_data_member_location: 32 + <2><5af>: Abbrev Number: 0 + <1><5b0>: Abbrev Number: 3 (DW_TAG_typedef) + <5b1> DW_AT_name : (indirect string, offset: 0x822): rmutex_t + <5b5> DW_AT_decl_file : 7 + <5b6> DW_AT_decl_line : 60 + <5b7> DW_AT_decl_column : 25 + <5b8> DW_AT_type : <0x588> + <1><5bc>: Abbrev Number: 2 (DW_TAG_base_type) + <5bd> DW_AT_byte_size : 8 + <5be> DW_AT_encoding : 5 (signed) + <5bf> DW_AT_name : (indirect string, offset: 0x5ba): long long int + <1><5c3>: Abbrev Number: 2 (DW_TAG_base_type) + <5c4> DW_AT_byte_size : 16 + <5c5> DW_AT_encoding : 4 (float) + <5c6> DW_AT_name : (indirect string, offset: 0x642): long double + <1><5ca>: Abbrev Number: 2 (DW_TAG_base_type) + <5cb> DW_AT_byte_size : 1 + <5cc> DW_AT_encoding : 2 (boolean) + <5cd> DW_AT_name : (indirect string, offset: 0x72c): _Bool + <1><5d1>: Abbrev Number: 11 (DW_TAG_typedef) + <5d2> DW_AT_name : (indirect string, offset: 0x5f9): cookie_read_function_t + <5d6> DW_AT_decl_file : 8 + <5d7> DW_AT_decl_line : 441 + <5d9> DW_AT_decl_column : 22 + <5da> DW_AT_type : <0x5de> + <1><5de>: Abbrev Number: 15 (DW_TAG_subroutine_type) + <5df> DW_AT_prototyped : 1 + <5df> DW_AT_type : <0x459> + <5e3> DW_AT_sibling : <0x5f7> + <2><5e7>: Abbrev Number: 16 (DW_TAG_formal_parameter) + <5e8> DW_AT_type : <0x47d> + <2><5ec>: Abbrev Number: 16 (DW_TAG_formal_parameter) + <5ed> DW_AT_type : <0x47f> + <2><5f1>: Abbrev Number: 16 (DW_TAG_formal_parameter) + <5f2> DW_AT_type : <0x44d> + <2><5f6>: Abbrev Number: 0 + <1><5f7>: Abbrev Number: 11 (DW_TAG_typedef) + <5f8> DW_AT_name : (indirect string, offset: 0x45f): cookie_write_function_t + <5fc> DW_AT_decl_file : 8 + <5fd> DW_AT_decl_line : 443 + <5ff> DW_AT_decl_column : 22 + <600> DW_AT_type : <0x604> + <1><604>: Abbrev Number: 15 (DW_TAG_subroutine_type) + <605> DW_AT_prototyped : 1 + <605> DW_AT_type : <0x459> + <609> DW_AT_sibling : <0x61d> + <2><60d>: Abbrev Number: 16 (DW_TAG_formal_parameter) + <60e> DW_AT_type : <0x47d> + <2><612>: Abbrev Number: 16 (DW_TAG_formal_parameter) + <613> DW_AT_type : <0x491> + <2><617>: Abbrev Number: 16 (DW_TAG_formal_parameter) + <618> DW_AT_type : <0x44d> + <2><61c>: Abbrev Number: 0 + <1><61d>: Abbrev Number: 11 (DW_TAG_typedef) + <61e> DW_AT_name : (indirect string, offset: 0x768): cookie_seek_function_t + <622> DW_AT_decl_file : 8 + <623> DW_AT_decl_line : 446 + <625> DW_AT_decl_column : 20 + <626> DW_AT_type : <0x62a> + <1><62a>: Abbrev Number: 15 (DW_TAG_subroutine_type) + <62b> DW_AT_prototyped : 1 + <62b> DW_AT_type : <0x471> + <62f> DW_AT_sibling : <0x643> + <2><633>: Abbrev Number: 16 (DW_TAG_formal_parameter) + <634> DW_AT_type : <0x47d> + <2><638>: Abbrev Number: 16 (DW_TAG_formal_parameter) + <639> DW_AT_type : <0x643> + <2><63d>: Abbrev Number: 16 (DW_TAG_formal_parameter) + <63e> DW_AT_type : <0x3dd> + <2><642>: Abbrev Number: 0 + <1><643>: Abbrev Number: 7 (DW_TAG_pointer_type) + <644> DW_AT_byte_size : 8 + <645> DW_AT_type : <0x471> + <1><649>: Abbrev Number: 11 (DW_TAG_typedef) + <64a> DW_AT_name : (indirect string, offset: 0x488): cookie_close_function_t + <64e> DW_AT_decl_file : 8 + <64f> DW_AT_decl_line : 449 + <651> DW_AT_decl_column : 18 + <652> DW_AT_type : <0x656> + <1><656>: Abbrev Number: 15 (DW_TAG_subroutine_type) + <657> DW_AT_prototyped : 1 + <657> DW_AT_type : <0x3dd> + <65b> DW_AT_sibling : <0x665> + <2><65f>: Abbrev Number: 16 (DW_TAG_formal_parameter) + <660> DW_AT_type : <0x47d> + <2><664>: Abbrev Number: 0 + <1><665>: Abbrev Number: 9 (DW_TAG_structure_type) + <666> DW_AT_name : (indirect string, offset: 0x579): cookie_io_functions_t + <66a> DW_AT_byte_size : 32 + <66b> DW_AT_decl_file : 8 + <66c> DW_AT_decl_line : 451 + <66e> DW_AT_decl_column : 16 + <66f> DW_AT_sibling : <0x6ac> + <2><673>: Abbrev Number: 10 (DW_TAG_member) + <674> DW_AT_name : (indirect string, offset: 0x5b5): read + <678> DW_AT_decl_file : 8 + <679> DW_AT_decl_line : 453 + <67b> DW_AT_decl_column : 31 + <67c> DW_AT_type : <0x6ac> + <680> DW_AT_data_member_location: 0 + <2><681>: Abbrev Number: 10 (DW_TAG_member) + <682> DW_AT_name : (indirect string, offset: 0x7a6): write + <686> DW_AT_decl_file : 8 + <687> DW_AT_decl_line : 454 + <689> DW_AT_decl_column : 32 + <68a> DW_AT_type : <0x6b2> + <68e> DW_AT_data_member_location: 8 + <2><68f>: Abbrev Number: 10 (DW_TAG_member) + <690> DW_AT_name : (indirect string, offset: 0x7b8): seek + <694> DW_AT_decl_file : 8 + <695> DW_AT_decl_line : 455 + <697> DW_AT_decl_column : 31 + <698> DW_AT_type : <0x6b8> + <69c> DW_AT_data_member_location: 16 + <2><69d>: Abbrev Number: 10 (DW_TAG_member) + <69e> DW_AT_name : (indirect string, offset: 0x40b): close + <6a2> DW_AT_decl_file : 8 + <6a3> DW_AT_decl_line : 456 + <6a5> DW_AT_decl_column : 32 + <6a6> DW_AT_type : <0x6be> + <6aa> DW_AT_data_member_location: 24 + <2><6ab>: Abbrev Number: 0 + <1><6ac>: Abbrev Number: 7 (DW_TAG_pointer_type) + <6ad> DW_AT_byte_size : 8 + <6ae> DW_AT_type : <0x5d1> + <1><6b2>: Abbrev Number: 7 (DW_TAG_pointer_type) + <6b3> DW_AT_byte_size : 8 + <6b4> DW_AT_type : <0x5f7> + <1><6b8>: Abbrev Number: 7 (DW_TAG_pointer_type) + <6b9> DW_AT_byte_size : 8 + <6ba> DW_AT_type : <0x61d> + <1><6be>: Abbrev Number: 7 (DW_TAG_pointer_type) + <6bf> DW_AT_byte_size : 8 + <6c0> DW_AT_type : <0x649> + <1><6c4>: Abbrev Number: 11 (DW_TAG_typedef) + <6c5> DW_AT_name : (indirect string, offset: 0x579): cookie_io_functions_t + <6c9> DW_AT_decl_file : 8 + <6ca> DW_AT_decl_line : 457 + <6cc> DW_AT_decl_column : 3 + <6cd> DW_AT_type : <0x665> + <1><6d1>: Abbrev Number: 9 (DW_TAG_structure_type) + <6d2> DW_AT_name : (indirect string, offset: 0x618): file_struct + <6d6> DW_AT_byte_size : 192 + <6d7> DW_AT_decl_file : 8 + <6d8> DW_AT_decl_line : 526 + <6da> DW_AT_decl_column : 8 + <6db> DW_AT_sibling : <0x796> + <2><6df>: Abbrev Number: 10 (DW_TAG_member) + <6e0> DW_AT_name : (indirect string, offset: 0x732): fs_next + <6e4> DW_AT_decl_file : 8 + <6e5> DW_AT_decl_line : 528 + <6e7> DW_AT_decl_column : 27 + <6e8> DW_AT_type : <0x796> + <6ec> DW_AT_data_member_location: 0 + <2><6ed>: Abbrev Number: 10 (DW_TAG_member) + <6ee> DW_AT_name : (indirect string, offset: 0x7bd): fs_lock + <6f2> DW_AT_decl_file : 8 + <6f3> DW_AT_decl_line : 529 + <6f5> DW_AT_decl_column : 27 + <6f6> DW_AT_type : <0x5b0> + <6fa> DW_AT_data_member_location: 8 + <2><6fb>: Abbrev Number: 10 (DW_TAG_member) + <6fc> DW_AT_name : (indirect string, offset: 0x74f): fs_iofunc + <700> DW_AT_decl_file : 8 + <701> DW_AT_decl_line : 530 + <703> DW_AT_decl_column : 27 + <704> DW_AT_type : <0x6c4> + <708> DW_AT_data_member_location: 48 + <2><709>: Abbrev Number: 10 (DW_TAG_member) + <70a> DW_AT_name : (indirect string, offset: 0x745): fs_cookie + <70e> DW_AT_decl_file : 8 + <70f> DW_AT_decl_line : 531 + <711> DW_AT_decl_column : 27 + <712> DW_AT_type : <0x47d> + <716> DW_AT_data_member_location: 80 + <2><717>: Abbrev Number: 10 (DW_TAG_member) + <718> DW_AT_name : (indirect string, offset: 0x7ac): fs_bufstart + <71c> DW_AT_decl_file : 8 + <71d> DW_AT_decl_line : 533 + <71f> DW_AT_decl_column : 27 + <720> DW_AT_type : <0x47f> + <724> DW_AT_data_member_location: 88 + <2><725>: Abbrev Number: 10 (DW_TAG_member) + <726> DW_AT_name : (indirect string, offset: 0x562): fs_bufend + <72a> DW_AT_decl_file : 8 + <72b> DW_AT_decl_line : 534 + <72d> DW_AT_decl_column : 27 + <72e> DW_AT_type : <0x47f> + <732> DW_AT_data_member_location: 96 + <2><733>: Abbrev Number: 10 (DW_TAG_member) + <734> DW_AT_name : (indirect string, offset: 0x5a6): fs_bufpos + <738> DW_AT_decl_file : 8 + <739> DW_AT_decl_line : 535 + <73b> DW_AT_decl_column : 27 + <73c> DW_AT_type : <0x47f> + <740> DW_AT_data_member_location: 104 + <2><741>: Abbrev Number: 10 (DW_TAG_member) + <742> DW_AT_name : (indirect string, offset: 0x59b): fs_bufread + <746> DW_AT_decl_file : 8 + <747> DW_AT_decl_line : 536 + <749> DW_AT_decl_column : 27 + <74a> DW_AT_type : <0x47f> + <74e> DW_AT_data_member_location: 112 + <2><74f>: Abbrev Number: 10 (DW_TAG_member) + <750> DW_AT_name : (indirect string, offset: 0x77f): fs_buffer + <754> DW_AT_decl_file : 8 + <755> DW_AT_decl_line : 538 + <757> DW_AT_decl_column : 27 + <758> DW_AT_type : <0x79c> + <75c> DW_AT_data_member_location: 120 + <2><75d>: Abbrev Number: 10 (DW_TAG_member) + <75e> DW_AT_name : (indirect string, offset: 0x6de): fs_oflags + <762> DW_AT_decl_file : 8 + <763> DW_AT_decl_line : 541 + <765> DW_AT_decl_column : 27 + <766> DW_AT_type : <0x435> + <76a> DW_AT_data_member_location: 184 + <2><76b>: Abbrev Number: 10 (DW_TAG_member) + <76c> DW_AT_name : (indirect string, offset: 0x805): fs_flags + <770> DW_AT_decl_file : 8 + <771> DW_AT_decl_line : 542 + <773> DW_AT_decl_column : 27 + <774> DW_AT_type : <0x418> + <778> DW_AT_data_member_location: 186 + <2><779>: Abbrev Number: 10 (DW_TAG_member) + <77a> DW_AT_name : (indirect string, offset: 0x7df): fs_nungotten + <77e> DW_AT_decl_file : 8 + <77f> DW_AT_decl_line : 544 + <781> DW_AT_decl_column : 27 + <782> DW_AT_type : <0x418> + <786> DW_AT_data_member_location: 187 + <2><787>: Abbrev Number: 10 (DW_TAG_member) + <788> DW_AT_name : (indirect string, offset: 0x426): fs_ungotten + <78c> DW_AT_decl_file : 8 + <78d> DW_AT_decl_line : 545 + <78f> DW_AT_decl_column : 27 + <790> DW_AT_type : <0x7ac> + <794> DW_AT_data_member_location: 188 + <2><795>: Abbrev Number: 0 + <1><796>: Abbrev Number: 7 (DW_TAG_pointer_type) + <797> DW_AT_byte_size : 8 + <798> DW_AT_type : <0x6d1> + <1><79c>: Abbrev Number: 17 (DW_TAG_array_type) + <79d> DW_AT_type : <0x485> + <7a1> DW_AT_sibling : <0x7ac> + <2><7a5>: Abbrev Number: 18 (DW_TAG_subrange_type) + <7a6> DW_AT_type : <0x3f2> + <7aa> DW_AT_upper_bound : 63 + <2><7ab>: Abbrev Number: 0 + <1><7ac>: Abbrev Number: 17 (DW_TAG_array_type) + <7ad> DW_AT_type : <0x485> + <7b1> DW_AT_sibling : <0x7bc> + <2><7b5>: Abbrev Number: 18 (DW_TAG_subrange_type) + <7b6> DW_AT_type : <0x3f2> + <7ba> DW_AT_upper_bound : 1 + <2><7bb>: Abbrev Number: 0 + <1><7bc>: Abbrev Number: 3 (DW_TAG_typedef) + <7bd> DW_AT_name : (indirect string, offset: 0x5b0): FILE + <7c1> DW_AT_decl_file : 9 + <7c2> DW_AT_decl_line : 112 + <7c3> DW_AT_decl_column : 28 + <7c4> DW_AT_type : <0x6d1> + <1><7c8>: Abbrev Number: 7 (DW_TAG_pointer_type) + <7c9> DW_AT_byte_size : 8 + <7ca> DW_AT_type : <0x7bc> + <1><7ce>: Abbrev Number: 19 (DW_TAG_subprogram) + <7cf> DW_AT_external : 1 + <7cf> DW_AT_name : (indirect string, offset: 0x6e8): puts + <7d3> DW_AT_decl_file : 9 + <7d4> DW_AT_decl_line : 208 + <7d5> DW_AT_decl_column : 8 + <7d6> DW_AT_prototyped : 1 + <7d6> DW_AT_type : <0x3dd> + <7da> DW_AT_low_pc : 0x5a + <7e2> DW_AT_high_pc : 0x86 + <7ea> DW_AT_frame_base : 1 byte block: 9c (DW_OP_call_frame_cfa) + <7ec> DW_AT_GNU_all_call_sites: 1 + <7ec> DW_AT_sibling : <0x90c> + <2><7f0>: Abbrev Number: 20 (DW_TAG_formal_parameter) + <7f1> DW_AT_name : s + <7f3> DW_AT_decl_file : 1 + <7f4> DW_AT_decl_line : 43 + <7f5> DW_AT_decl_column : 31 + <7f6> DW_AT_type : <0x491> + <7fa> DW_AT_location : 0x107 (location list) + <2><7fe>: Abbrev Number: 21 (DW_TAG_variable) + <7ff> DW_AT_name : (indirect string, offset: 0x624): stream + <803> DW_AT_decl_file : 1 + <804> DW_AT_decl_line : 46 + <805> DW_AT_decl_column : 9 + <806> DW_AT_type : <0x7c8> + <80a> DW_AT_location : 0x153 (location list) + <2><80e>: Abbrev Number: 21 (DW_TAG_variable) + <80f> DW_AT_name : (indirect string, offset: 0x456): nwritten + <813> DW_AT_decl_file : 1 + <814> DW_AT_decl_line : 47 + <815> DW_AT_decl_column : 7 + <816> DW_AT_type : <0x3dd> + <81a> DW_AT_location : 0x176 (location list) + <2><81e>: Abbrev Number: 21 (DW_TAG_variable) + <81f> DW_AT_name : (indirect string, offset: 0x7d0): nput + <823> DW_AT_decl_file : 1 + <824> DW_AT_decl_line : 48 + <825> DW_AT_decl_column : 7 + <826> DW_AT_type : <0x3dd> + <82a> DW_AT_location : 0x199 (location list) + <2><82e>: Abbrev Number: 22 (DW_TAG_variable) + <82f> DW_AT_name : ret + <833> DW_AT_decl_file : 1 + <834> DW_AT_decl_line : 49 + <835> DW_AT_decl_column : 7 + <836> DW_AT_type : <0x3dd> + <83a> DW_AT_location : 0x1d1 (location list) + <2><83e>: Abbrev Number: 23 (DW_TAG_lexical_block) + <83f> DW_AT_low_pc : 0x88 + <847> DW_AT_high_pc : 0x38 + <84f> DW_AT_sibling : <0x89a> + <3><853>: Abbrev Number: 24 (DW_TAG_variable) + <854> DW_AT_name : (indirect string, offset: 0x5ea): newline + <858> DW_AT_decl_file : 1 + <859> DW_AT_decl_line : 62 + <85a> DW_AT_decl_column : 12 + <85b> DW_AT_type : <0x485> + <85f> DW_AT_location : 2 byte block: 91 5f (DW_OP_fbreg: -33) + <3><862>: Abbrev Number: 25 (DW_TAG_GNU_call_site) + <863> DW_AT_low_pc : 0xa0 + <86b> DW_AT_abstract_origin: <0x90c> + <86f> DW_AT_sibling : <0x885> + <4><873>: Abbrev Number: 26 (DW_TAG_GNU_call_site_parameter) + <874> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <876> DW_AT_GNU_call_site_value: 2 byte block: 91 5f (DW_OP_fbreg: -33) + <4><879>: Abbrev Number: 26 (DW_TAG_GNU_call_site_parameter) + <87a> DW_AT_location : 1 byte block: 5b (DW_OP_reg11 (a1)) + <87c> DW_AT_GNU_call_site_value: 1 byte block: 31 (DW_OP_lit1) + <4><87e>: Abbrev Number: 26 (DW_TAG_GNU_call_site_parameter) + <87f> DW_AT_location : 1 byte block: 5c (DW_OP_reg12 (a2)) + <881> DW_AT_GNU_call_site_value: 2 byte block: 79 0 (DW_OP_breg9 (s1): 0) + <4><884>: Abbrev Number: 0 + <3><885>: Abbrev Number: 27 (DW_TAG_GNU_call_site) + <886> DW_AT_low_pc : 0xba + <88e> DW_AT_abstract_origin: <0x918> + <4><892>: Abbrev Number: 26 (DW_TAG_GNU_call_site_parameter) + <893> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <895> DW_AT_GNU_call_site_value: 2 byte block: 79 0 (DW_OP_breg9 (s1): 0) + <4><898>: Abbrev Number: 0 + <3><899>: Abbrev Number: 0 + <2><89a>: Abbrev Number: 25 (DW_TAG_GNU_call_site) + <89b> DW_AT_low_pc : 0x6e + <8a3> DW_AT_abstract_origin: <0x924> + <8a7> DW_AT_sibling : <0x8b1> + <3><8ab>: Abbrev Number: 26 (DW_TAG_GNU_call_site_parameter) + <8ac> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <8ae> DW_AT_GNU_call_site_value: 1 byte block: 31 (DW_OP_lit1) + <3><8b0>: Abbrev Number: 0 + <2><8b1>: Abbrev Number: 25 (DW_TAG_GNU_call_site) + <8b2> DW_AT_low_pc : 0x78 + <8ba> DW_AT_abstract_origin: <0x930> + <8be> DW_AT_sibling : <0x8c9> + <3><8c2>: Abbrev Number: 26 (DW_TAG_GNU_call_site_parameter) + <8c3> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <8c5> DW_AT_GNU_call_site_value: 2 byte block: 79 0 (DW_OP_breg9 (s1): 0) + <3><8c8>: Abbrev Number: 0 + <2><8c9>: Abbrev Number: 25 (DW_TAG_GNU_call_site) + <8ca> DW_AT_low_pc : 0x84 + <8d2> DW_AT_abstract_origin: <0x93c> + <8d6> DW_AT_sibling : <0x8e7> + <3><8da>: Abbrev Number: 26 (DW_TAG_GNU_call_site_parameter) + <8db> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <8dd> DW_AT_GNU_call_site_value: 2 byte block: 78 0 (DW_OP_breg8 (s0): 0) + <3><8e0>: Abbrev Number: 26 (DW_TAG_GNU_call_site_parameter) + <8e1> DW_AT_location : 1 byte block: 5b (DW_OP_reg11 (a1)) + <8e3> DW_AT_GNU_call_site_value: 2 byte block: 79 0 (DW_OP_breg9 (s1): 0) + <3><8e6>: Abbrev Number: 0 + <2><8e7>: Abbrev Number: 25 (DW_TAG_GNU_call_site) + <8e8> DW_AT_low_pc : 0xcc + <8f0> DW_AT_abstract_origin: <0x924> + <8f4> DW_AT_sibling : <0x8fe> + <3><8f8>: Abbrev Number: 26 (DW_TAG_GNU_call_site_parameter) + <8f9> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <8fb> DW_AT_GNU_call_site_value: 1 byte block: 31 (DW_OP_lit1) + <3><8fd>: Abbrev Number: 0 + <2><8fe>: Abbrev Number: 28 (DW_TAG_GNU_call_site) + <8ff> DW_AT_low_pc : 0xd4 + <907> DW_AT_abstract_origin: <0x948> + <2><90b>: Abbrev Number: 0 + <1><90c>: Abbrev Number: 29 (DW_TAG_subprogram) + <90d> DW_AT_external : 1 + <90d> DW_AT_declaration : 1 + <90d> DW_AT_linkage_name: (indirect string, offset: 0x681): lib_fwrite_unlocked + <911> DW_AT_name : (indirect string, offset: 0x681): lib_fwrite_unlocked + <915> DW_AT_decl_file : 10 + <916> DW_AT_decl_line : 193 + <917> DW_AT_decl_column : 9 + <1><918>: Abbrev Number: 29 (DW_TAG_subprogram) + <919> DW_AT_external : 1 + <919> DW_AT_declaration : 1 + <919> DW_AT_linkage_name: (indirect string, offset: 0x43b): lib_fflush_unlocked + <91d> DW_AT_name : (indirect string, offset: 0x43b): lib_fflush_unlocked + <921> DW_AT_decl_file : 10 + <922> DW_AT_decl_line : 222 + <923> DW_AT_decl_column : 9 + <1><924>: Abbrev Number: 29 (DW_TAG_subprogram) + <925> DW_AT_external : 1 + <925> DW_AT_declaration : 1 + <925> DW_AT_linkage_name: (indirect string, offset: 0x417): lib_get_stream + <929> DW_AT_name : (indirect string, offset: 0x417): lib_get_stream + <92d> DW_AT_decl_file : 11 + <92e> DW_AT_decl_line : 112 + <92f> DW_AT_decl_column : 25 + <1><930>: Abbrev Number: 29 (DW_TAG_subprogram) + <931> DW_AT_external : 1 + <931> DW_AT_declaration : 1 + <931> DW_AT_linkage_name: (indirect string, offset: 0x657): flockfile + <935> DW_AT_name : (indirect string, offset: 0x657): flockfile + <939> DW_AT_decl_file : 9 + <93a> DW_AT_decl_line : 194 + <93b> DW_AT_decl_column : 6 + <1><93c>: Abbrev Number: 29 (DW_TAG_subprogram) + <93d> DW_AT_external : 1 + <93d> DW_AT_declaration : 1 + <93d> DW_AT_linkage_name: (indirect string, offset: 0x759): fputs_unlocked + <941> DW_AT_name : (indirect string, offset: 0x759): fputs_unlocked + <945> DW_AT_decl_file : 9 + <946> DW_AT_decl_line : 160 + <947> DW_AT_decl_column : 8 + <1><948>: Abbrev Number: 29 (DW_TAG_subprogram) + <949> DW_AT_external : 1 + <949> DW_AT_declaration : 1 + <949> DW_AT_linkage_name: (indirect string, offset: 0x7f9): funlockfile + <94d> DW_AT_name : (indirect string, offset: 0x7f9): funlockfile + <951> DW_AT_decl_file : 9 + <952> DW_AT_decl_line : 196 + <953> DW_AT_decl_column : 6 + <1><954>: Abbrev Number: 0 + Compilation Unit @ offset 0x955: + Length: 0x73b (32-bit) + Version: 4 + Abbrev Offset: 0x358 + Pointer Size: 8 + <0><960>: Abbrev Number: 1 (DW_TAG_compile_unit) + <961> DW_AT_producer : (indirect string, offset: 0x8fe): GNU C17 10.2.0 -mcmodel=medany -march=rv64imafdc -mabi=lp64d -march=rv64imafdc -g -Os -fno-common -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections + <965> DW_AT_language : 12 (ANSI C99) + <966> DW_AT_name : (indirect string, offset: 0xae2): stdio/lib_libfwrite.c + <96a> DW_AT_comp_dir : (indirect string, offset: 0xa25): /Users/Luppy/ox64/nuttx/libs/libc + <96e> DW_AT_ranges : 0x70 + <972> DW_AT_low_pc : 0x0 + <97a> DW_AT_stmt_list : 0x4cd + <1><97e>: Abbrev Number: 2 (DW_TAG_base_type) + <97f> DW_AT_byte_size : 1 + <980> DW_AT_encoding : 6 (signed char) + <981> DW_AT_name : (indirect string, offset: 0xa01): signed char + <1><985>: Abbrev Number: 3 (DW_TAG_typedef) + <986> DW_AT_name : (indirect string, offset: 0x86a): _uint8_t + <98a> DW_AT_decl_file : 2 + <98b> DW_AT_decl_line : 52 + <98c> DW_AT_decl_column : 28 + <98d> DW_AT_type : <0x991> + <1><991>: Abbrev Number: 2 (DW_TAG_base_type) + <992> DW_AT_byte_size : 1 + <993> DW_AT_encoding : 8 (unsigned char) + <994> DW_AT_name : (indirect string, offset: 0xacb): unsigned char + <1><998>: Abbrev Number: 3 (DW_TAG_typedef) + <999> DW_AT_name : (indirect string, offset: 0xad9): _int16_t + <99d> DW_AT_decl_file : 2 + <99e> DW_AT_decl_line : 54 + <99f> DW_AT_decl_column : 28 + <9a0> DW_AT_type : <0x9a4> + <1><9a4>: Abbrev Number: 2 (DW_TAG_base_type) + <9a5> DW_AT_byte_size : 2 + <9a6> DW_AT_encoding : 5 (signed) + <9a7> DW_AT_name : (indirect string, offset: 0x8f4): short int + <1><9ab>: Abbrev Number: 3 (DW_TAG_typedef) + <9ac> DW_AT_name : (indirect string, offset: 0xc46): _uint16_t + <9b0> DW_AT_decl_file : 2 + <9b1> DW_AT_decl_line : 55 + <9b2> DW_AT_decl_column : 28 + <9b3> DW_AT_type : <0x9b7> + <1><9b7>: Abbrev Number: 2 (DW_TAG_base_type) + <9b8> DW_AT_byte_size : 2 + <9b9> DW_AT_encoding : 7 (unsigned) + <9ba> DW_AT_name : (indirect string, offset: 0xb71): short unsigned int + <1><9be>: Abbrev Number: 3 (DW_TAG_typedef) + <9bf> DW_AT_name : (indirect string, offset: 0xab8): _int32_t + <9c3> DW_AT_decl_file : 2 + <9c4> DW_AT_decl_line : 58 + <9c5> DW_AT_decl_column : 28 + <9c6> DW_AT_type : <0x9ca> + <1><9ca>: Abbrev Number: 4 (DW_TAG_base_type) + <9cb> DW_AT_byte_size : 4 + <9cc> DW_AT_encoding : 5 (signed) + <9cd> DW_AT_name : int + <1><9d1>: Abbrev Number: 2 (DW_TAG_base_type) + <9d2> DW_AT_byte_size : 4 + <9d3> DW_AT_encoding : 7 (unsigned) + <9d4> DW_AT_name : (indirect string, offset: 0xc5d): unsigned int + <1><9d8>: Abbrev Number: 2 (DW_TAG_base_type) + <9d9> DW_AT_byte_size : 8 + <9da> DW_AT_encoding : 5 (signed) + <9db> DW_AT_name : (indirect string, offset: 0xb91): long int + <1><9df>: Abbrev Number: 2 (DW_TAG_base_type) + <9e0> DW_AT_byte_size : 8 + <9e1> DW_AT_encoding : 7 (unsigned) + <9e2> DW_AT_name : (indirect string, offset: 0xb49): long unsigned int + <1><9e6>: Abbrev Number: 3 (DW_TAG_typedef) + <9e7> DW_AT_name : (indirect string, offset: 0xc9f): _ssize_t + <9eb> DW_AT_decl_file : 2 + <9ec> DW_AT_decl_line : 91 + <9ed> DW_AT_decl_column : 28 + <9ee> DW_AT_type : <0x9d8> + <1><9f2>: Abbrev Number: 3 (DW_TAG_typedef) + <9f3> DW_AT_name : (indirect string, offset: 0xc14): _size_t + <9f7> DW_AT_decl_file : 2 + <9f8> DW_AT_decl_line : 93 + <9f9> DW_AT_decl_column : 28 + <9fa> DW_AT_type : <0x9df> + <1><9fe>: Abbrev Number: 2 (DW_TAG_base_type) + <9ff> DW_AT_byte_size : 8 + DW_AT_encoding : 7 (unsigned) + DW_AT_name : (indirect string, offset: 0xb24): long long unsigned int + <1>: Abbrev Number: 3 (DW_TAG_typedef) + DW_AT_name : (indirect string, offset: 0x9b8): uint8_t + DW_AT_decl_file : 3 + DW_AT_decl_line : 166 + DW_AT_decl_column : 29 + DW_AT_type : <0x985> + <1>: Abbrev Number: 3 (DW_TAG_typedef) + DW_AT_name : (indirect string, offset: 0xba2): int16_t + DW_AT_decl_file : 3 + DW_AT_decl_line : 168 + DW_AT_decl_column : 29 + DW_AT_type : <0x998> + <1>: Abbrev Number: 5 (DW_TAG_volatile_type) + DW_AT_type : <0xa11> + <1>: Abbrev Number: 3 (DW_TAG_typedef) + DW_AT_name : (indirect string, offset: 0xb40): uint16_t + DW_AT_decl_file : 3 + DW_AT_decl_line : 169 + DW_AT_decl_column : 29 + DW_AT_type : <0x9ab> + <1>: Abbrev Number: 3 (DW_TAG_typedef) + DW_AT_name : (indirect string, offset: 0xb9a): int32_t + DW_AT_decl_file : 3 + DW_AT_decl_line : 176 + DW_AT_decl_column : 29 + DW_AT_type : <0x9be> + <1>: Abbrev Number: 3 (DW_TAG_typedef) + DW_AT_name : (indirect string, offset: 0x8a3): intptr_t + DW_AT_decl_file : 3 + DW_AT_decl_line : 238 + DW_AT_decl_column : 29 + DW_AT_type : <0x9e6> + <1>: Abbrev Number: 3 (DW_TAG_typedef) + DW_AT_name : (indirect string, offset: 0x9d6): uintptr_t + DW_AT_decl_file : 3 + DW_AT_decl_line : 239 + DW_AT_decl_column : 29 + DW_AT_type : <0x9f2> + <1>: Abbrev Number: 3 (DW_TAG_typedef) + DW_AT_name : (indirect string, offset: 0x89c): size_t + DW_AT_decl_file : 4 + DW_AT_decl_line : 133 + DW_AT_decl_column : 22 + DW_AT_type : <0x9f2> + <1>: Abbrev Number: 3 (DW_TAG_typedef) + DW_AT_name : (indirect string, offset: 0x8ec): ssize_t + DW_AT_decl_file : 4 + DW_AT_decl_line : 134 + DW_AT_decl_column : 22 + DW_AT_type : <0x9e6> + <1>: Abbrev Number: 3 (DW_TAG_typedef) + DW_AT_name : (indirect string, offset: 0xbee): pid_t + DW_AT_decl_file : 4 + DW_AT_decl_line : 162 + DW_AT_decl_column : 22 + DW_AT_type : <0x9ca> + <1>: Abbrev Number: 3 (DW_TAG_typedef) + DW_AT_name : (indirect string, offset: 0xc08): off_t + DW_AT_decl_file : 4 + DW_AT_decl_line : 229 + DW_AT_decl_column : 22 + DW_AT_type : <0xa2e> + <1>: Abbrev Number: 6 (DW_TAG_pointer_type) + DW_AT_byte_size : 8 + <1>: Abbrev Number: 7 (DW_TAG_pointer_type) + DW_AT_byte_size : 8 + DW_AT_type : <0xa8a> + <1>: Abbrev Number: 2 (DW_TAG_base_type) + DW_AT_byte_size : 1 + DW_AT_encoding : 8 (unsigned char) + DW_AT_name : (indirect string, offset: 0xb84): char + <1>: Abbrev Number: 8 (DW_TAG_const_type) + DW_AT_type : <0xa8a> + <1>: Abbrev Number: 9 (DW_TAG_enumeration_type) + DW_AT_encoding : 5 (signed) + DW_AT_byte_size : 4 + DW_AT_type : <0x9ca> + DW_AT_decl_file : 4 + DW_AT_decl_line : 321 + DW_AT_decl_column : 1 + DW_AT_sibling : <0xab1> + <2>: Abbrev Number: 10 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xa8b): ERROR + DW_AT_const_value : -1 + <2>: Abbrev Number: 11 (DW_TAG_enumerator) + DW_AT_name : OK + DW_AT_const_value : 0 + <2>: Abbrev Number: 0 + <1>: Abbrev Number: 7 (DW_TAG_pointer_type) + DW_AT_byte_size : 8 + DW_AT_type : <0xa91> + <1>: Abbrev Number: 12 (DW_TAG_structure_type) + DW_AT_name : (indirect string, offset: 0xaa1): dq_entry_s + DW_AT_byte_size : 16 + DW_AT_decl_file : 5 + DW_AT_decl_line : 303 + DW_AT_decl_column : 8 + DW_AT_sibling : <0xae2> + <2>: Abbrev Number: 13 (DW_TAG_member) + DW_AT_name : (indirect string, offset: 0xa91): flink + DW_AT_decl_file : 5 + DW_AT_decl_line : 305 + DW_AT_decl_column : 26 + DW_AT_type : <0xae2> + DW_AT_data_member_location: 0 + <2>: Abbrev Number: 13 (DW_TAG_member) + DW_AT_name : (indirect string, offset: 0x852): blink + DW_AT_decl_file : 5 + DW_AT_decl_line : 306 + DW_AT_decl_column : 26 + DW_AT_type : <0xae2> + DW_AT_data_member_location: 8 + <2>: Abbrev Number: 0 + <1>: Abbrev Number: 7 (DW_TAG_pointer_type) + DW_AT_byte_size : 8 + DW_AT_type : <0xab7> + <1>: Abbrev Number: 14 (DW_TAG_typedef) + DW_AT_name : (indirect string, offset: 0xbb8): dq_entry_t + DW_AT_decl_file : 5 + DW_AT_decl_line : 308 + DW_AT_decl_column : 27 + DW_AT_type : <0xab7> + <1>: Abbrev Number: 12 (DW_TAG_structure_type) + DW_AT_name : (indirect string, offset: 0xc1c): dq_queue_s + DW_AT_byte_size : 16 + DW_AT_decl_file : 5 + DW_AT_decl_line : 317 + DW_AT_decl_column : 8 + DW_AT_sibling : <0xb20> + <2>: Abbrev Number: 13 (DW_TAG_member) + DW_AT_name : (indirect string, offset: 0x9b3): head + DW_AT_decl_file : 5 + DW_AT_decl_line : 319 + DW_AT_decl_column : 19 + DW_AT_type : <0xb20> + DW_AT_data_member_location: 0 + <2>: Abbrev Number: 13 (DW_TAG_member) + DW_AT_name : (indirect string, offset: 0xb3b): tail + DW_AT_decl_file : 5 + DW_AT_decl_line : 320 + DW_AT_decl_column : 19 + DW_AT_type : <0xb20> + DW_AT_data_member_location: 8 + <2>: Abbrev Number: 0 + <1>: Abbrev Number: 7 (DW_TAG_pointer_type) + DW_AT_byte_size : 8 + DW_AT_type : <0xae8> + <1>: Abbrev Number: 14 (DW_TAG_typedef) + DW_AT_name : (indirect string, offset: 0xc2f): dq_queue_t + DW_AT_decl_file : 5 + DW_AT_decl_line : 322 + DW_AT_decl_column : 27 + DW_AT_type : <0xaf5> + <1>: Abbrev Number: 15 (DW_TAG_structure_type) + DW_AT_name : (indirect string, offset: 0x9e0): sem_s + DW_AT_byte_size : 24 + DW_AT_decl_file : 6 + DW_AT_decl_line : 99 + DW_AT_decl_column : 8 + DW_AT_sibling : <0xb68> + <2>: Abbrev Number: 16 (DW_TAG_member) + DW_AT_name : (indirect string, offset: 0xaf8): semcount + DW_AT_decl_file : 6 + DW_AT_decl_line : 101 + DW_AT_decl_column : 20 + DW_AT_type : <0xa1d> + DW_AT_data_member_location: 0 + <2>: Abbrev Number: 16 (DW_TAG_member) + DW_AT_name : (indirect string, offset: 0xb1e): flags + DW_AT_decl_file : 6 + DW_AT_decl_line : 108 + DW_AT_decl_column : 11 + DW_AT_type : <0xa05> + DW_AT_data_member_location: 2 + <2>: Abbrev Number: 16 (DW_TAG_member) + DW_AT_name : (indirect string, offset: 0x8cb): waitlist + DW_AT_decl_file : 6 + DW_AT_decl_line : 110 + DW_AT_decl_column : 14 + DW_AT_type : <0xb26> + DW_AT_data_member_location: 8 + <2>: Abbrev Number: 0 + <1>: Abbrev Number: 3 (DW_TAG_typedef) + DW_AT_name : (indirect string, offset: 0x9e6): sem_t + DW_AT_decl_file : 6 + DW_AT_decl_line : 121 + DW_AT_decl_column : 22 + DW_AT_type : <0xb33> + <1>: Abbrev Number: 15 (DW_TAG_structure_type) + DW_AT_name : (indirect string, offset: 0xb89): mutex_s + DW_AT_byte_size : 32 + DW_AT_decl_file : 7 + DW_AT_decl_line : 46 + DW_AT_decl_column : 8 + DW_AT_sibling : <0xb9c> + <2>: Abbrev Number: 17 (DW_TAG_member) + DW_AT_name : sem + DW_AT_decl_file : 7 + DW_AT_decl_line : 48 + DW_AT_decl_column : 9 + DW_AT_type : <0xb68> + DW_AT_data_member_location: 0 + <2>: Abbrev Number: 16 (DW_TAG_member) + DW_AT_name : (indirect string, offset: 0xa47): holder + DW_AT_decl_file : 7 + DW_AT_decl_line : 49 + DW_AT_decl_column : 9 + DW_AT_type : <0xa6a> + DW_AT_data_member_location: 24 + <2>: Abbrev Number: 0 + <1>: Abbrev Number: 3 (DW_TAG_typedef) + DW_AT_name : (indirect string, offset: 0xa65): mutex_t + DW_AT_decl_file : 7 + DW_AT_decl_line : 52 + DW_AT_decl_column : 24 + DW_AT_type : <0xb74> + <1>: Abbrev Number: 15 (DW_TAG_structure_type) + DW_AT_name : (indirect string, offset: 0xb15): rmutex_s + DW_AT_byte_size : 40 + DW_AT_decl_file : 7 + DW_AT_decl_line : 54 + DW_AT_decl_column : 8 + DW_AT_sibling : <0xbd0> + <2>: Abbrev Number: 16 (DW_TAG_member) + DW_AT_name : (indirect string, offset: 0xb65): mutex + DW_AT_decl_file : 7 + DW_AT_decl_line : 56 + DW_AT_decl_column : 11 + DW_AT_type : <0xb9c> + DW_AT_data_member_location: 0 + <2>: Abbrev Number: 16 (DW_TAG_member) + DW_AT_name : (indirect string, offset: 0xc0e): count + DW_AT_decl_file : 7 + DW_AT_decl_line : 57 + DW_AT_decl_column : 16 + DW_AT_type : <0x9d1> + DW_AT_data_member_location: 32 + <2>: Abbrev Number: 0 + <1>: Abbrev Number: 3 (DW_TAG_typedef) + DW_AT_name : (indirect string, offset: 0xc96): rmutex_t + DW_AT_decl_file : 7 + DW_AT_decl_line : 60 + DW_AT_decl_column : 25 + DW_AT_type : <0xba8> + <1>: Abbrev Number: 2 (DW_TAG_base_type) + DW_AT_byte_size : 8 + DW_AT_encoding : 5 (signed) + DW_AT_name : (indirect string, offset: 0xa17): long long int + <1>: Abbrev Number: 2 (DW_TAG_base_type) + DW_AT_byte_size : 16 + DW_AT_encoding : 4 (float) + DW_AT_name : (indirect string, offset: 0xaac): long double + <1>: Abbrev Number: 2 (DW_TAG_base_type) + DW_AT_byte_size : 1 + DW_AT_encoding : 2 (boolean) + DW_AT_name : (indirect string, offset: 0xbaa): _Bool + <1>: Abbrev Number: 7 (DW_TAG_pointer_type) + DW_AT_byte_size : 8 + DW_AT_type : <0xbf7> + <1>: Abbrev Number: 18 (DW_TAG_const_type) + <1>: Abbrev Number: 14 (DW_TAG_typedef) + DW_AT_name : (indirect string, offset: 0xa4e): cookie_read_function_t + DW_AT_decl_file : 8 + DW_AT_decl_line : 441 + DW_AT_decl_column : 22 + DW_AT_type : <0xc05> + <1>: Abbrev Number: 19 (DW_TAG_subroutine_type) + DW_AT_prototyped : 1 + DW_AT_type : <0xa5e> + DW_AT_sibling : <0xc1e> + <2>: Abbrev Number: 20 (DW_TAG_formal_parameter) + DW_AT_type : <0xa82> + <2>: Abbrev Number: 20 (DW_TAG_formal_parameter) + DW_AT_type : <0xa84> + <2>: Abbrev Number: 20 (DW_TAG_formal_parameter) + DW_AT_type : <0xa52> + <2>: Abbrev Number: 0 + <1>: Abbrev Number: 14 (DW_TAG_typedef) + DW_AT_name : (indirect string, offset: 0x8ac): cookie_write_function_t + DW_AT_decl_file : 8 + DW_AT_decl_line : 443 + DW_AT_decl_column : 22 + DW_AT_type : <0xc2b> + <1>: Abbrev Number: 19 (DW_TAG_subroutine_type) + DW_AT_prototyped : 1 + DW_AT_type : <0xa5e> + DW_AT_sibling : <0xc44> + <2>: Abbrev Number: 20 (DW_TAG_formal_parameter) + DW_AT_type : <0xa82> + <2>: Abbrev Number: 20 (DW_TAG_formal_parameter) + DW_AT_type : <0xab1> + <2>: Abbrev Number: 20 (DW_TAG_formal_parameter) + DW_AT_type : <0xa52> + <2>: Abbrev Number: 0 + <1>: Abbrev Number: 14 (DW_TAG_typedef) + DW_AT_name : (indirect string, offset: 0xbcd): cookie_seek_function_t + DW_AT_decl_file : 8 + DW_AT_decl_line : 446 + DW_AT_decl_column : 20 + DW_AT_type : <0xc51> + <1>: Abbrev Number: 19 (DW_TAG_subroutine_type) + DW_AT_prototyped : 1 + DW_AT_type : <0xa76> + DW_AT_sibling : <0xc6a> + <2>: Abbrev Number: 20 (DW_TAG_formal_parameter) + DW_AT_type : <0xa82> + <2>: Abbrev Number: 20 (DW_TAG_formal_parameter) + DW_AT_type : <0xc6a> + <2>: Abbrev Number: 20 (DW_TAG_formal_parameter) + DW_AT_type : <0x9ca> + <2>: Abbrev Number: 0 + <1>: Abbrev Number: 7 (DW_TAG_pointer_type) + DW_AT_byte_size : 8 + DW_AT_type : <0xa76> + <1>: Abbrev Number: 14 (DW_TAG_typedef) + DW_AT_name : (indirect string, offset: 0x8d4): cookie_close_function_t + DW_AT_decl_file : 8 + DW_AT_decl_line : 449 + DW_AT_decl_column : 18 + DW_AT_type : <0xc7d> + <1>: Abbrev Number: 19 (DW_TAG_subroutine_type) + DW_AT_prototyped : 1 + DW_AT_type : <0x9ca> + DW_AT_sibling : <0xc8c> + <2>: Abbrev Number: 20 (DW_TAG_formal_parameter) + DW_AT_type : <0xa82> + <2>: Abbrev Number: 0 + <1>: Abbrev Number: 12 (DW_TAG_structure_type) + DW_AT_name : (indirect string, offset: 0x9c0): cookie_io_functions_t + DW_AT_byte_size : 32 + DW_AT_decl_file : 8 + DW_AT_decl_line : 451 + DW_AT_decl_column : 16 + DW_AT_sibling : <0xcd3> + <2>: Abbrev Number: 13 (DW_TAG_member) + DW_AT_name : (indirect string, offset: 0xa12): read + DW_AT_decl_file : 8 + DW_AT_decl_line : 453 + DW_AT_decl_column : 31 + DW_AT_type : <0xcd3> + DW_AT_data_member_location: 0 + <2>: Abbrev Number: 13 (DW_TAG_member) + DW_AT_name : (indirect string, offset: 0x858): write + DW_AT_decl_file : 8 + DW_AT_decl_line : 454 + DW_AT_decl_column : 32 + DW_AT_type : <0xcd9> + DW_AT_data_member_location: 8 + <2>: Abbrev Number: 13 (DW_TAG_member) + DW_AT_name : (indirect string, offset: 0x9ae): seek + DW_AT_decl_file : 8 + DW_AT_decl_line : 455 + DW_AT_decl_column : 31 + DW_AT_type : <0xcdf> + DW_AT_data_member_location: 16 + <2>: Abbrev Number: 13 (DW_TAG_member) + DW_AT_name : (indirect string, offset: 0x83b): close + DW_AT_decl_file : 8 + DW_AT_decl_line : 456 + DW_AT_decl_column : 32 + DW_AT_type : <0xce5> + DW_AT_data_member_location: 24 + <2>: Abbrev Number: 0 + <1>: Abbrev Number: 7 (DW_TAG_pointer_type) + DW_AT_byte_size : 8 + DW_AT_type : <0xbf8> + <1>: Abbrev Number: 7 (DW_TAG_pointer_type) + DW_AT_byte_size : 8 + DW_AT_type : <0xc1e> + <1>: Abbrev Number: 7 (DW_TAG_pointer_type) + DW_AT_byte_size : 8 + DW_AT_type : <0xc44> + <1>: Abbrev Number: 7 (DW_TAG_pointer_type) + DW_AT_byte_size : 8 + DW_AT_type : <0xc70> + <1>: Abbrev Number: 14 (DW_TAG_typedef) + DW_AT_name : (indirect string, offset: 0x9c0): cookie_io_functions_t + DW_AT_decl_file : 8 + DW_AT_decl_line : 457 + DW_AT_decl_column : 3 + DW_AT_type : <0xc8c> + <1>: Abbrev Number: 12 (DW_TAG_structure_type) + DW_AT_name : (indirect string, offset: 0xa6d): file_struct + DW_AT_byte_size : 192 + DW_AT_decl_file : 8 + DW_AT_decl_line : 526 + DW_AT_decl_column : 8 + DW_AT_sibling : <0xdbd> + <2>: Abbrev Number: 13 (DW_TAG_member) + DW_AT_name : (indirect string, offset: 0xbb0): fs_next + DW_AT_decl_file : 8 + DW_AT_decl_line : 528 + DW_AT_decl_column : 27 + DW_AT_type : <0xdbd> + DW_AT_data_member_location: 0 + <2>: Abbrev Number: 13 (DW_TAG_member) + DW_AT_name : (indirect string, offset: 0xc27): fs_lock + DW_AT_decl_file : 8 + DW_AT_decl_line : 529 + DW_AT_decl_column : 27 + DW_AT_type : <0xbd0> + DW_AT_data_member_location: 8 + <2>: Abbrev Number: 13 (DW_TAG_member) + DW_AT_name : (indirect string, offset: 0xbc3): fs_iofunc + DW_AT_decl_file : 8 + DW_AT_decl_line : 530 + DW_AT_decl_column : 27 + DW_AT_type : <0xceb> + DW_AT_data_member_location: 48 + <2>: Abbrev Number: 13 (DW_TAG_member) + DW_AT_name : (indirect string, offset: 0xbfe): fs_cookie + DW_AT_decl_file : 8 + DW_AT_decl_line : 531 + DW_AT_decl_column : 27 + DW_AT_type : <0xa82> + DW_AT_data_member_location: 80 + <2>: Abbrev Number: 13 (DW_TAG_member) + DW_AT_name : (indirect string, offset: 0xc3a): fs_bufstart + DW_AT_decl_file : 8 + DW_AT_decl_line : 533 + DW_AT_decl_column : 27 + DW_AT_type : <0xa84> + DW_AT_data_member_location: 88 + <2>: Abbrev Number: 13 (DW_TAG_member) + DW_AT_name : (indirect string, offset: 0xa97): fs_bufend + DW_AT_decl_file : 8 + DW_AT_decl_line : 534 + DW_AT_decl_column : 27 + DW_AT_type : <0xa84> + DW_AT_data_member_location: 96 + <2>: Abbrev Number: 13 (DW_TAG_member) + DW_AT_name : (indirect string, offset: 0x9f7): fs_bufpos + DW_AT_decl_file : 8 + DW_AT_decl_line : 535 + DW_AT_decl_column : 27 + DW_AT_type : <0xa84> + DW_AT_data_member_location: 104 + <2>: Abbrev Number: 13 (DW_TAG_member) + DW_AT_name : (indirect string, offset: 0x9ec): fs_bufread + DW_AT_decl_file : 8 + DW_AT_decl_line : 536 + DW_AT_decl_column : 27 + DW_AT_type : <0xa84> + DW_AT_data_member_location: 112 + <2>: Abbrev Number: 13 (DW_TAG_member) + DW_AT_name : (indirect string, offset: 0xbe4): fs_buffer + DW_AT_decl_file : 8 + DW_AT_decl_line : 538 + DW_AT_decl_column : 27 + DW_AT_type : <0xdc3> + DW_AT_data_member_location: 120 + <2>: Abbrev Number: 13 (DW_TAG_member) + DW_AT_name : (indirect string, offset: 0xb5b): fs_oflags + DW_AT_decl_file : 8 + DW_AT_decl_line : 541 + DW_AT_decl_column : 27 + DW_AT_type : <0xa22> + DW_AT_data_member_location: 184 + <2>: Abbrev Number: 13 (DW_TAG_member) + DW_AT_name : (indirect string, offset: 0xc76): fs_flags + DW_AT_decl_file : 8 + DW_AT_decl_line : 542 + DW_AT_decl_column : 27 + DW_AT_type : <0xa05> + DW_AT_data_member_location: 186 + <2>: Abbrev Number: 13 (DW_TAG_member) + DW_AT_name : (indirect string, offset: 0xc50): fs_nungotten + DW_AT_decl_file : 8 + DW_AT_decl_line : 544 + DW_AT_decl_column : 27 + DW_AT_type : <0xa05> + DW_AT_data_member_location: 187 + <2>: Abbrev Number: 13 (DW_TAG_member) + DW_AT_name : (indirect string, offset: 0x85e): fs_ungotten + DW_AT_decl_file : 8 + DW_AT_decl_line : 545 + DW_AT_decl_column : 27 + DW_AT_type : <0xdd3> + DW_AT_data_member_location: 188 + <2>: Abbrev Number: 0 + <1>: Abbrev Number: 7 (DW_TAG_pointer_type) + DW_AT_byte_size : 8 + DW_AT_type : <0xcf8> + <1>: Abbrev Number: 21 (DW_TAG_array_type) + DW_AT_type : <0xa8a> + DW_AT_sibling : <0xdd3> + <2>: Abbrev Number: 22 (DW_TAG_subrange_type) + DW_AT_type : <0x9df> + DW_AT_upper_bound : 63 + <2>: Abbrev Number: 0 + <1>: Abbrev Number: 21 (DW_TAG_array_type) + DW_AT_type : <0xa8a> + DW_AT_sibling : <0xde3> + <2>: Abbrev Number: 22 (DW_TAG_subrange_type) + DW_AT_type : <0x9df> + DW_AT_upper_bound : 1 + <2>: Abbrev Number: 0 + <1>: Abbrev Number: 3 (DW_TAG_typedef) + DW_AT_name : (indirect string, offset: 0xa0d): FILE + DW_AT_decl_file : 9 + DW_AT_decl_line : 112 + DW_AT_decl_column : 28 + DW_AT_type : <0xcf8> + <1>: Abbrev Number: 7 (DW_TAG_pointer_type) + DW_AT_byte_size : 8 + DW_AT_type : <0xde3> + <1>: Abbrev Number: 23 (DW_TAG_subprogram) + DW_AT_external : 1 + DW_AT_name : (indirect string, offset: 0xa80): lib_fwrite + DW_AT_decl_file : 1 + DW_AT_decl_line : 202 + DW_AT_decl_column : 9 + DW_AT_prototyped : 1 + DW_AT_type : <0xa5e> + DW_AT_low_pc : 0x20a + DW_AT_high_pc : 0x3e + DW_AT_frame_base : 1 byte block: 9c (DW_OP_call_frame_cfa) + DW_AT_GNU_all_call_sites: 1 + DW_AT_sibling : <0xea9> + <2>: Abbrev Number: 24 (DW_TAG_formal_parameter) + DW_AT_name : ptr + DW_AT_decl_file : 1 + DW_AT_decl_line : 202 + DW_AT_decl_column : 36 + DW_AT_type : <0xbf1> + DW_AT_location : 0x207 (location list) + <2>: Abbrev Number: 25 (DW_TAG_formal_parameter) + DW_AT_name : (indirect string, offset: 0xc0e): count + DW_AT_decl_file : 1 + DW_AT_decl_line : 202 + DW_AT_decl_column : 48 + DW_AT_type : <0xa52> + DW_AT_location : 0x253 (location list) + <2>: Abbrev Number: 25 (DW_TAG_formal_parameter) + DW_AT_name : (indirect string, offset: 0xa79): stream + DW_AT_decl_file : 1 + DW_AT_decl_line : 202 + DW_AT_decl_column : 65 + DW_AT_type : <0xdef> + DW_AT_location : 0x29e (location list) + <2>: Abbrev Number: 26 (DW_TAG_variable) + DW_AT_name : ret + DW_AT_decl_file : 1 + DW_AT_decl_line : 204 + DW_AT_decl_column : 11 + DW_AT_type : <0xa5e> + DW_AT_location : 0x2ea (location list) + <2>: Abbrev Number: 27 (DW_TAG_GNU_call_site) + DW_AT_low_pc : 0x222 + DW_AT_abstract_origin: <0x103e> + DW_AT_sibling : <0xe6f> + <3>: Abbrev Number: 28 (DW_TAG_GNU_call_site_parameter) + DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + DW_AT_GNU_call_site_value: 2 byte block: 78 0 (DW_OP_breg8 (s0): 0) + <3>: Abbrev Number: 0 + <2>: Abbrev Number: 27 (DW_TAG_GNU_call_site) + DW_AT_low_pc : 0x230 + DW_AT_abstract_origin: <0xea9> + DW_AT_sibling : <0xe94> + <3>: Abbrev Number: 28 (DW_TAG_GNU_call_site_parameter) + DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + DW_AT_GNU_call_site_value: 2 byte block: 79 0 (DW_OP_breg9 (s1): 0) + <3>: Abbrev Number: 28 (DW_TAG_GNU_call_site_parameter) + DW_AT_location : 1 byte block: 5b (DW_OP_reg11 (a1)) + DW_AT_GNU_call_site_value: 3 byte block: 91 58 6 (DW_OP_fbreg: -40; DW_OP_deref) + <3>: Abbrev Number: 28 (DW_TAG_GNU_call_site_parameter) + DW_AT_location : 1 byte block: 5c (DW_OP_reg12 (a2)) + DW_AT_GNU_call_site_value: 2 byte block: 78 0 (DW_OP_breg8 (s0): 0) + <3>: Abbrev Number: 0 + <2>: Abbrev Number: 29 (DW_TAG_GNU_call_site) + DW_AT_low_pc : 0x23c + DW_AT_abstract_origin: <0x104a> + <3>: Abbrev Number: 28 (DW_TAG_GNU_call_site_parameter) + DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + DW_AT_GNU_call_site_value: 2 byte block: 78 0 (DW_OP_breg8 (s0): 0) + <3>: Abbrev Number: 0 + <2>: Abbrev Number: 0 + <1>: Abbrev Number: 23 (DW_TAG_subprogram) + DW_AT_external : 1 + DW_AT_name : (indirect string, offset: 0xb01): lib_fwrite_unlocked + DW_AT_decl_file : 1 + DW_AT_decl_line : 46 + DW_AT_decl_column : 9 + DW_AT_prototyped : 1 + DW_AT_type : <0xa5e> + DW_AT_low_pc : 0xe0 + DW_AT_high_pc : 0x12a + DW_AT_frame_base : 1 byte block: 9c (DW_OP_call_frame_cfa) + DW_AT_GNU_all_call_sites: 1 + DW_AT_sibling : <0x103e> + <2>: Abbrev Number: 24 (DW_TAG_formal_parameter) + DW_AT_name : ptr + DW_AT_decl_file : 1 + DW_AT_decl_line : 46 + DW_AT_decl_column : 45 + DW_AT_type : <0xbf1> + DW_AT_location : 0x320 (location list) + <2>: Abbrev Number: 25 (DW_TAG_formal_parameter) + DW_AT_name : (indirect string, offset: 0xc0e): count + DW_AT_decl_file : 1 + DW_AT_decl_line : 46 + DW_AT_decl_column : 57 + DW_AT_type : <0xa52> + DW_AT_location : 0x41a (location list) + <2>: Abbrev Number: 25 (DW_TAG_formal_parameter) + DW_AT_name : (indirect string, offset: 0xa79): stream + DW_AT_decl_file : 1 + DW_AT_decl_line : 47 + DW_AT_decl_column : 39 + DW_AT_type : <0xdef> + DW_AT_location : 0x599 (location list) + <2>: Abbrev Number: 30 (DW_TAG_variable) + DW_AT_name : (indirect string, offset: 0xb6b): start + DW_AT_decl_file : 1 + DW_AT_decl_line : 50 + DW_AT_decl_column : 19 + DW_AT_type : <0xab1> + DW_AT_location : 0x5f8 (location list) + <2>: Abbrev Number: 26 (DW_TAG_variable) + DW_AT_name : src + DW_AT_decl_file : 1 + DW_AT_decl_line : 51 + DW_AT_decl_column : 19 + DW_AT_type : <0xab1> + DW_AT_location : 0x6f2 (location list) + <2>: Abbrev Number: 26 (DW_TAG_variable) + DW_AT_name : ret + DW_AT_decl_file : 1 + DW_AT_decl_line : 52 + DW_AT_decl_column : 11 + DW_AT_type : <0xa5e> + DW_AT_location : 0x84b (location list) + <2>: Abbrev Number: 30 (DW_TAG_variable) + DW_AT_name : (indirect string, offset: 0xbf4): gulp_size + DW_AT_decl_file : 1 + DW_AT_decl_line : 53 + DW_AT_decl_column : 10 + DW_AT_type : <0xa52> + DW_AT_location : 0x94d (location list) + <2>: Abbrev Number: 31 (DW_TAG_label) + DW_AT_name : (indirect string, offset: 0x834): errout + DW_AT_decl_file : 1 + DW_AT_decl_line : 172 + DW_AT_decl_column : 1 + DW_AT_low_pc : 0x1d8 + <2>: Abbrev Number: 32 (DW_TAG_lexical_block) + DW_AT_low_pc : 0x1ae + DW_AT_high_pc : 0x14 + DW_AT_sibling : <0xf85> + <3>: Abbrev Number: 30 (DW_TAG_variable) + DW_AT_name : (indirect string, offset: 0xc7f): bytes_buffered + DW_AT_decl_file : 1 + DW_AT_decl_line : 133 + DW_AT_decl_column : 15 + DW_AT_type : <0x9ca> + DW_AT_location : 0x983 (location list) + <3>: Abbrev Number: 29 (DW_TAG_GNU_call_site) + DW_AT_low_pc : 0x1b8 + DW_AT_abstract_origin: <0x1056> + <4>: Abbrev Number: 28 (DW_TAG_GNU_call_site_parameter) + DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + DW_AT_GNU_call_site_value: 2 byte block: 79 0 (DW_OP_breg9 (s1): 0) + <4>: Abbrev Number: 0 + <3>: Abbrev Number: 0 + <2>: Abbrev Number: 33 (DW_TAG_GNU_call_site) + DW_AT_low_pc : 0xf8 + DW_AT_abstract_origin: <0x1062> + <2>: Abbrev Number: 33 (DW_TAG_GNU_call_site) + DW_AT_low_pc : 0x120 + DW_AT_abstract_origin: <0x1062> + <2>: Abbrev Number: 34 (DW_TAG_GNU_call_site) + DW_AT_low_pc : 0x148 + DW_AT_sibling : <0xfb9> + <3>: Abbrev Number: 28 (DW_TAG_GNU_call_site_parameter) + DW_AT_location : 1 byte block: 5b (DW_OP_reg11 (a1)) + DW_AT_GNU_call_site_value: 2 byte block: 83 0 (DW_OP_breg19 (s3): 0) + <3>: Abbrev Number: 28 (DW_TAG_GNU_call_site_parameter) + DW_AT_location : 1 byte block: 5c (DW_OP_reg12 (a2)) + DW_AT_GNU_call_site_value: 2 byte block: 82 0 (DW_OP_breg18 (s2): 0) + <3>: Abbrev Number: 0 + <2>: Abbrev Number: 33 (DW_TAG_GNU_call_site) + DW_AT_low_pc : 0x158 + DW_AT_abstract_origin: <0x106f> + <2>: Abbrev Number: 27 (DW_TAG_GNU_call_site) + DW_AT_low_pc : 0x164 + DW_AT_abstract_origin: <0x107c> + DW_AT_sibling : <0xfde> + <3>: Abbrev Number: 28 (DW_TAG_GNU_call_site_parameter) + DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + DW_AT_GNU_call_site_value: 2 byte block: 79 0 (DW_OP_breg9 (s1): 0) + <3>: Abbrev Number: 0 + <2>: Abbrev Number: 27 (DW_TAG_GNU_call_site) + DW_AT_low_pc : 0x190 + DW_AT_abstract_origin: <0x1088> + DW_AT_sibling : <0xffc> + <3>: Abbrev Number: 28 (DW_TAG_GNU_call_site_parameter) + DW_AT_location : 1 byte block: 5b (DW_OP_reg11 (a1)) + DW_AT_GNU_call_site_value: 2 byte block: 83 0 (DW_OP_breg19 (s3): 0) + <3>: Abbrev Number: 28 (DW_TAG_GNU_call_site_parameter) + DW_AT_location : 1 byte block: 5c (DW_OP_reg12 (a2)) + DW_AT_GNU_call_site_value: 2 byte block: 78 0 (DW_OP_breg8 (s0): 0) + <3>: Abbrev Number: 0 + <2>: Abbrev Number: 34 (DW_TAG_GNU_call_site) + DW_AT_low_pc : 0x1ce + <1005> DW_AT_sibling : <0x1016> + <3><1009>: Abbrev Number: 28 (DW_TAG_GNU_call_site_parameter) + <100a> DW_AT_location : 1 byte block: 5b (DW_OP_reg11 (a1)) + <100c> DW_AT_GNU_call_site_value: 2 byte block: 78 0 (DW_OP_breg8 (s0): 0) + <3><100f>: Abbrev Number: 28 (DW_TAG_GNU_call_site_parameter) + <1010> DW_AT_location : 1 byte block: 5c (DW_OP_reg12 (a2)) + <1012> DW_AT_GNU_call_site_value: 2 byte block: 82 0 (DW_OP_breg18 (s2): 0) + <3><1015>: Abbrev Number: 0 + <2><1016>: Abbrev Number: 33 (DW_TAG_GNU_call_site) + <1017> DW_AT_low_pc : 0x1e8 + <101f> DW_AT_abstract_origin: <0x106f> + <2><1023>: Abbrev Number: 29 (DW_TAG_GNU_call_site) + <1024> DW_AT_low_pc : 0x1fc + <102c> DW_AT_abstract_origin: <0x1088> + <3><1030>: Abbrev Number: 28 (DW_TAG_GNU_call_site_parameter) + <1031> DW_AT_location : 1 byte block: 5b (DW_OP_reg11 (a1)) + <1033> DW_AT_GNU_call_site_value: 2 byte block: 78 0 (DW_OP_breg8 (s0): 0) + <3><1036>: Abbrev Number: 28 (DW_TAG_GNU_call_site_parameter) + <1037> DW_AT_location : 1 byte block: 5c (DW_OP_reg12 (a2)) + <1039> DW_AT_GNU_call_site_value: 2 byte block: 84 0 (DW_OP_breg20 (s4): 0) + <3><103c>: Abbrev Number: 0 + <2><103d>: Abbrev Number: 0 + <1><103e>: Abbrev Number: 35 (DW_TAG_subprogram) + <103f> DW_AT_external : 1 + <103f> DW_AT_declaration : 1 + <103f> DW_AT_linkage_name: (indirect string, offset: 0xac1): flockfile + <1043> DW_AT_name : (indirect string, offset: 0xac1): flockfile + <1047> DW_AT_decl_file : 9 + <1048> DW_AT_decl_line : 194 + <1049> DW_AT_decl_column : 6 + <1><104a>: Abbrev Number: 35 (DW_TAG_subprogram) + <104b> DW_AT_external : 1 + <104b> DW_AT_declaration : 1 + <104b> DW_AT_linkage_name: (indirect string, offset: 0xc6a): funlockfile + <104f> DW_AT_name : (indirect string, offset: 0xc6a): funlockfile + <1053> DW_AT_decl_file : 9 + <1054> DW_AT_decl_line : 196 + <1055> DW_AT_decl_column : 6 + <1><1056>: Abbrev Number: 35 (DW_TAG_subprogram) + <1057> DW_AT_external : 1 + <1057> DW_AT_declaration : 1 + <1057> DW_AT_linkage_name: (indirect string, offset: 0x888): lib_fflush_unlocked + <105b> DW_AT_name : (indirect string, offset: 0x888): lib_fflush_unlocked + <105f> DW_AT_decl_file : 10 + <1060> DW_AT_decl_line : 222 + <1061> DW_AT_decl_column : 9 + <1><1062>: Abbrev Number: 36 (DW_TAG_subprogram) + <1063> DW_AT_external : 1 + <1063> DW_AT_declaration : 1 + <1063> DW_AT_linkage_name: (indirect string, offset: 0xc8e): __errno + <1067> DW_AT_name : (indirect string, offset: 0xc8e): __errno + <106b> DW_AT_decl_file : 11 + <106c> DW_AT_decl_line : 364 + <106e> DW_AT_decl_column : 10 + <1><106f>: Abbrev Number: 36 (DW_TAG_subprogram) + <1070> DW_AT_external : 1 + <1070> DW_AT_declaration : 1 + <1070> DW_AT_linkage_name: (indirect string, offset: 0x858): write + <1074> DW_AT_name : (indirect string, offset: 0x858): write + <1078> DW_AT_decl_file : 12 + <1079> DW_AT_decl_line : 335 + <107b> DW_AT_decl_column : 9 + <1><107c>: Abbrev Number: 35 (DW_TAG_subprogram) + <107d> DW_AT_external : 1 + <107d> DW_AT_declaration : 1 + <107d> DW_AT_linkage_name: (indirect string, offset: 0x873): lib_rdflush_unlocked + <1081> DW_AT_name : (indirect string, offset: 0x873): lib_rdflush_unlocked + <1085> DW_AT_decl_file : 10 + <1086> DW_AT_decl_line : 226 + <1087> DW_AT_decl_column : 5 + <1><1088>: Abbrev Number: 37 (DW_TAG_subprogram) + <1089> DW_AT_external : 1 + <1089> DW_AT_declaration : 1 + <1089> DW_AT_linkage_name: (indirect string, offset: 0x8c4): memcpy + <108d> DW_AT_name : (indirect string, offset: 0x841): __builtin_memcpy + <1091> DW_AT_decl_file : 13 + <1092> DW_AT_decl_line : 0 + <1><1093>: Abbrev Number: 0 + Compilation Unit @ offset 0x1094: + Length: 0x5bb (32-bit) + Version: 4 + Abbrev Offset: 0x54e + Pointer Size: 8 + <0><109f>: Abbrev Number: 1 (DW_TAG_compile_unit) + <10a0> DW_AT_producer : (indirect string, offset: 0xd3e): GNU C17 10.2.0 -mcmodel=medany -march=rv64imafdc -mabi=lp64d -march=rv64imafdc -g -Os -fno-common -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections + <10a4> DW_AT_language : 12 (ANSI C99) + <10a5> DW_AT_name : (indirect string, offset: 0xecc): stdio/lib_libfflush.c + <10a9> DW_AT_comp_dir : (indirect string, offset: 0xe6b): /Users/Luppy/ox64/nuttx/libs/libc + <10ad> DW_AT_ranges : 0xa0 + <10b1> DW_AT_low_pc : 0x0 + <10b9> DW_AT_stmt_list : 0x9e8 + <1><10bd>: Abbrev Number: 2 (DW_TAG_base_type) + <10be> DW_AT_byte_size : 1 + <10bf> DW_AT_encoding : 6 (signed char) + <10c0> DW_AT_name : (indirect string, offset: 0xe47): signed char + <1><10c4>: Abbrev Number: 3 (DW_TAG_typedef) + <10c5> DW_AT_name : (indirect string, offset: 0xcc6): _uint8_t + <10c9> DW_AT_decl_file : 2 + <10ca> DW_AT_decl_line : 52 + <10cb> DW_AT_decl_column : 28 + <10cc> DW_AT_type : <0x10d0> + <1><10d0>: Abbrev Number: 2 (DW_TAG_base_type) + <10d1> DW_AT_byte_size : 1 + <10d2> DW_AT_encoding : 8 (unsigned char) + <10d3> DW_AT_name : (indirect string, offset: 0xf1a): unsigned char + <1><10d7>: Abbrev Number: 3 (DW_TAG_typedef) + <10d8> DW_AT_name : (indirect string, offset: 0xf28): _int16_t + <10dc> DW_AT_decl_file : 2 + <10dd> DW_AT_decl_line : 54 + <10de> DW_AT_decl_column : 28 + <10df> DW_AT_type : <0x10e3> + <1><10e3>: Abbrev Number: 2 (DW_TAG_base_type) + <10e4> DW_AT_byte_size : 2 + <10e5> DW_AT_encoding : 5 (signed) + <10e6> DW_AT_name : (indirect string, offset: 0xd34): short int + <1><10ea>: Abbrev Number: 3 (DW_TAG_typedef) + <10eb> DW_AT_name : (indirect string, offset: 0x105d): _uint16_t + <10ef> DW_AT_decl_file : 2 + <10f0> DW_AT_decl_line : 55 + <10f1> DW_AT_decl_column : 28 + <10f2> DW_AT_type : <0x10f6> + <1><10f6>: Abbrev Number: 2 (DW_TAG_base_type) + <10f7> DW_AT_byte_size : 2 + <10f8> DW_AT_encoding : 7 (unsigned) + <10f9> DW_AT_name : (indirect string, offset: 0xf90): short unsigned int + <1><10fd>: Abbrev Number: 3 (DW_TAG_typedef) + <10fe> DW_AT_name : (indirect string, offset: 0xf07): _int32_t + <1102> DW_AT_decl_file : 2 + <1103> DW_AT_decl_line : 58 + <1104> DW_AT_decl_column : 28 + <1105> DW_AT_type : <0x1109> + <1><1109>: Abbrev Number: 4 (DW_TAG_base_type) + <110a> DW_AT_byte_size : 4 + <110b> DW_AT_encoding : 5 (signed) + <110c> DW_AT_name : int + <1><1110>: Abbrev Number: 2 (DW_TAG_base_type) + <1111> DW_AT_byte_size : 4 + <1112> DW_AT_encoding : 7 (unsigned) + <1113> DW_AT_name : (indirect string, offset: 0x1074): unsigned int + <1><1117>: Abbrev Number: 2 (DW_TAG_base_type) + <1118> DW_AT_byte_size : 8 + <1119> DW_AT_encoding : 5 (signed) + <111a> DW_AT_name : (indirect string, offset: 0xfb0): long int + <1><111e>: Abbrev Number: 2 (DW_TAG_base_type) + <111f> DW_AT_byte_size : 8 + <1120> DW_AT_encoding : 7 (unsigned) + <1121> DW_AT_name : (indirect string, offset: 0xf6e): long unsigned int + <1><1125>: Abbrev Number: 3 (DW_TAG_typedef) + <1126> DW_AT_name : (indirect string, offset: 0x10b2): _ssize_t + <112a> DW_AT_decl_file : 2 + <112b> DW_AT_decl_line : 91 + <112c> DW_AT_decl_column : 28 + <112d> DW_AT_type : <0x1117> + <1><1131>: Abbrev Number: 3 (DW_TAG_typedef) + <1132> DW_AT_name : (indirect string, offset: 0x1031): _size_t + <1136> DW_AT_decl_file : 2 + <1137> DW_AT_decl_line : 93 + <1138> DW_AT_decl_column : 28 + <1139> DW_AT_type : <0x111e> + <1><113d>: Abbrev Number: 2 (DW_TAG_base_type) + <113e> DW_AT_byte_size : 8 + <113f> DW_AT_encoding : 7 (unsigned) + <1140> DW_AT_name : (indirect string, offset: 0xf49): long long unsigned int + <1><1144>: Abbrev Number: 3 (DW_TAG_typedef) + <1145> DW_AT_name : (indirect string, offset: 0xdfd): uint8_t + <1149> DW_AT_decl_file : 3 + <114a> DW_AT_decl_line : 166 + <114b> DW_AT_decl_column : 29 + <114c> DW_AT_type : <0x10c4> + <1><1150>: Abbrev Number: 3 (DW_TAG_typedef) + <1151> DW_AT_name : (indirect string, offset: 0xfc1): int16_t + <1155> DW_AT_decl_file : 3 + <1156> DW_AT_decl_line : 168 + <1157> DW_AT_decl_column : 29 + <1158> DW_AT_type : <0x10d7> + <1><115c>: Abbrev Number: 5 (DW_TAG_volatile_type) + <115d> DW_AT_type : <0x1150> + <1><1161>: Abbrev Number: 3 (DW_TAG_typedef) + <1162> DW_AT_name : (indirect string, offset: 0xf65): uint16_t + <1166> DW_AT_decl_file : 3 + <1167> DW_AT_decl_line : 169 + <1168> DW_AT_decl_column : 29 + <1169> DW_AT_type : <0x10ea> + <1><116d>: Abbrev Number: 3 (DW_TAG_typedef) + <116e> DW_AT_name : (indirect string, offset: 0xfb9): int32_t + <1172> DW_AT_decl_file : 3 + <1173> DW_AT_decl_line : 176 + <1174> DW_AT_decl_column : 29 + <1175> DW_AT_type : <0x10fd> + <1><1179>: Abbrev Number: 3 (DW_TAG_typedef) + <117a> DW_AT_name : (indirect string, offset: 0xcea): intptr_t + <117e> DW_AT_decl_file : 3 + <117f> DW_AT_decl_line : 238 + <1180> DW_AT_decl_column : 29 + <1181> DW_AT_type : <0x1125> + <1><1185>: Abbrev Number: 3 (DW_TAG_typedef) + <1186> DW_AT_name : (indirect string, offset: 0xce3): size_t + <118a> DW_AT_decl_file : 4 + <118b> DW_AT_decl_line : 133 + <118c> DW_AT_decl_column : 22 + <118d> DW_AT_type : <0x1131> + <1><1191>: Abbrev Number: 3 (DW_TAG_typedef) + <1192> DW_AT_name : (indirect string, offset: 0xd2c): ssize_t + <1196> DW_AT_decl_file : 4 + <1197> DW_AT_decl_line : 134 + <1198> DW_AT_decl_column : 22 + <1199> DW_AT_type : <0x1125> + <1><119d>: Abbrev Number: 3 (DW_TAG_typedef) + <119e> DW_AT_name : (indirect string, offset: 0x101b): pid_t + <11a2> DW_AT_decl_file : 4 + <11a3> DW_AT_decl_line : 162 + <11a4> DW_AT_decl_column : 22 + <11a5> DW_AT_type : <0x1109> + <1><11a9>: Abbrev Number: 3 (DW_TAG_typedef) + <11aa> DW_AT_name : (indirect string, offset: 0xec6): off_t + <11ae> DW_AT_decl_file : 4 + <11af> DW_AT_decl_line : 229 + <11b0> DW_AT_decl_column : 22 + <11b1> DW_AT_type : <0x116d> + <1><11b5>: Abbrev Number: 6 (DW_TAG_pointer_type) + <11b6> DW_AT_byte_size : 8 + <1><11b7>: Abbrev Number: 7 (DW_TAG_pointer_type) + <11b8> DW_AT_byte_size : 8 + <11b9> DW_AT_type : <0x11bd> + <1><11bd>: Abbrev Number: 2 (DW_TAG_base_type) + <11be> DW_AT_byte_size : 1 + <11bf> DW_AT_encoding : 8 (unsigned char) + <11c0> DW_AT_name : (indirect string, offset: 0xfa3): char + <1><11c4>: Abbrev Number: 8 (DW_TAG_const_type) + <11c5> DW_AT_type : <0x11bd> + <1><11c9>: Abbrev Number: 7 (DW_TAG_pointer_type) + <11ca> DW_AT_byte_size : 8 + <11cb> DW_AT_type : <0x11c4> + <1><11cf>: Abbrev Number: 9 (DW_TAG_structure_type) + <11d0> DW_AT_name : (indirect string, offset: 0xef0): dq_entry_s + <11d4> DW_AT_byte_size : 16 + <11d5> DW_AT_decl_file : 5 + <11d6> DW_AT_decl_line : 303 + <11d8> DW_AT_decl_column : 8 + <11d9> DW_AT_sibling : <0x11fa> + <2><11dd>: Abbrev Number: 10 (DW_TAG_member) + <11de> DW_AT_name : (indirect string, offset: 0xeea): flink + <11e2> DW_AT_decl_file : 5 + <11e3> DW_AT_decl_line : 305 + <11e5> DW_AT_decl_column : 26 + <11e6> DW_AT_type : <0x11fa> + <11ea> DW_AT_data_member_location: 0 + <2><11eb>: Abbrev Number: 10 (DW_TAG_member) + <11ec> DW_AT_name : (indirect string, offset: 0xcae): blink + <11f0> DW_AT_decl_file : 5 + <11f1> DW_AT_decl_line : 306 + <11f3> DW_AT_decl_column : 26 + <11f4> DW_AT_type : <0x11fa> + <11f8> DW_AT_data_member_location: 8 + <2><11f9>: Abbrev Number: 0 + <1><11fa>: Abbrev Number: 7 (DW_TAG_pointer_type) + <11fb> DW_AT_byte_size : 8 + <11fc> DW_AT_type : <0x11cf> + <1><1200>: Abbrev Number: 11 (DW_TAG_typedef) + <1201> DW_AT_name : (indirect string, offset: 0xfd7): dq_entry_t + <1205> DW_AT_decl_file : 5 + <1206> DW_AT_decl_line : 308 + <1208> DW_AT_decl_column : 27 + <1209> DW_AT_type : <0x11cf> + <1><120d>: Abbrev Number: 9 (DW_TAG_structure_type) + <120e> DW_AT_name : (indirect string, offset: 0x1096): dq_queue_s + <1212> DW_AT_byte_size : 16 + <1213> DW_AT_decl_file : 5 + <1214> DW_AT_decl_line : 317 + <1216> DW_AT_decl_column : 8 + <1217> DW_AT_sibling : <0x1238> + <2><121b>: Abbrev Number: 10 (DW_TAG_member) + <121c> DW_AT_name : (indirect string, offset: 0xdf8): head + <1220> DW_AT_decl_file : 5 + <1221> DW_AT_decl_line : 319 + <1223> DW_AT_decl_column : 19 + <1224> DW_AT_type : <0x1238> + <1228> DW_AT_data_member_location: 0 + <2><1229>: Abbrev Number: 10 (DW_TAG_member) + <122a> DW_AT_name : (indirect string, offset: 0xf60): tail + <122e> DW_AT_decl_file : 5 + <122f> DW_AT_decl_line : 320 + <1231> DW_AT_decl_column : 19 + <1232> DW_AT_type : <0x1238> + <1236> DW_AT_data_member_location: 8 + <2><1237>: Abbrev Number: 0 + <1><1238>: Abbrev Number: 7 (DW_TAG_pointer_type) + <1239> DW_AT_byte_size : 8 + <123a> DW_AT_type : <0x1200> + <1><123e>: Abbrev Number: 11 (DW_TAG_typedef) + <123f> DW_AT_name : (indirect string, offset: 0x1046): dq_queue_t + <1243> DW_AT_decl_file : 5 + <1244> DW_AT_decl_line : 322 + <1246> DW_AT_decl_column : 27 + <1247> DW_AT_type : <0x120d> + <1><124b>: Abbrev Number: 12 (DW_TAG_structure_type) + <124c> DW_AT_name : (indirect string, offset: 0xe26): sem_s + <1250> DW_AT_byte_size : 24 + <1251> DW_AT_decl_file : 6 + <1252> DW_AT_decl_line : 99 + <1253> DW_AT_decl_column : 8 + <1254> DW_AT_sibling : <0x1280> + <2><1258>: Abbrev Number: 13 (DW_TAG_member) + <1259> DW_AT_name : (indirect string, offset: 0xf31): semcount + <125d> DW_AT_decl_file : 6 + <125e> DW_AT_decl_line : 101 + <125f> DW_AT_decl_column : 20 + <1260> DW_AT_type : <0x115c> + <1264> DW_AT_data_member_location: 0 + <2><1265>: Abbrev Number: 13 (DW_TAG_member) + <1266> DW_AT_name : (indirect string, offset: 0xf43): flags + <126a> DW_AT_decl_file : 6 + <126b> DW_AT_decl_line : 108 + <126c> DW_AT_decl_column : 11 + <126d> DW_AT_type : <0x1144> + <1271> DW_AT_data_member_location: 2 + <2><1272>: Abbrev Number: 13 (DW_TAG_member) + <1273> DW_AT_name : (indirect string, offset: 0xd0b): waitlist + <1277> DW_AT_decl_file : 6 + <1278> DW_AT_decl_line : 110 + <1279> DW_AT_decl_column : 14 + <127a> DW_AT_type : <0x123e> + <127e> DW_AT_data_member_location: 8 + <2><127f>: Abbrev Number: 0 + <1><1280>: Abbrev Number: 3 (DW_TAG_typedef) + <1281> DW_AT_name : (indirect string, offset: 0xe2c): sem_t + <1285> DW_AT_decl_file : 6 + <1286> DW_AT_decl_line : 121 + <1287> DW_AT_decl_column : 22 + <1288> DW_AT_type : <0x124b> + <1><128c>: Abbrev Number: 12 (DW_TAG_structure_type) + <128d> DW_AT_name : (indirect string, offset: 0xfa8): mutex_s + <1291> DW_AT_byte_size : 32 + <1292> DW_AT_decl_file : 7 + <1293> DW_AT_decl_line : 46 + <1294> DW_AT_decl_column : 8 + <1295> DW_AT_sibling : <0x12b4> + <2><1299>: Abbrev Number: 14 (DW_TAG_member) + <129a> DW_AT_name : sem + <129e> DW_AT_decl_file : 7 + <129f> DW_AT_decl_line : 48 + <12a0> DW_AT_decl_column : 9 + <12a1> DW_AT_type : <0x1280> + <12a5> DW_AT_data_member_location: 0 + <2><12a6>: Abbrev Number: 13 (DW_TAG_member) + <12a7> DW_AT_name : (indirect string, offset: 0xe8d): holder + <12ab> DW_AT_decl_file : 7 + <12ac> DW_AT_decl_line : 49 + <12ad> DW_AT_decl_column : 9 + <12ae> DW_AT_type : <0x119d> + <12b2> DW_AT_data_member_location: 24 + <2><12b3>: Abbrev Number: 0 + <1><12b4>: Abbrev Number: 3 (DW_TAG_typedef) + <12b5> DW_AT_name : (indirect string, offset: 0xeab): mutex_t + <12b9> DW_AT_decl_file : 7 + <12ba> DW_AT_decl_line : 52 + <12bb> DW_AT_decl_column : 24 + <12bc> DW_AT_type : <0x128c> + <1><12c0>: Abbrev Number: 12 (DW_TAG_structure_type) + <12c1> DW_AT_name : (indirect string, offset: 0xf3a): rmutex_s + <12c5> DW_AT_byte_size : 40 + <12c6> DW_AT_decl_file : 7 + <12c7> DW_AT_decl_line : 54 + <12c8> DW_AT_decl_column : 8 + <12c9> DW_AT_sibling : <0x12e8> + <2><12cd>: Abbrev Number: 13 (DW_TAG_member) + <12ce> DW_AT_name : (indirect string, offset: 0xf8a): mutex + <12d2> DW_AT_decl_file : 7 + <12d3> DW_AT_decl_line : 56 + <12d4> DW_AT_decl_column : 11 + <12d5> DW_AT_type : <0x12b4> + <12d9> DW_AT_data_member_location: 0 + <2><12da>: Abbrev Number: 13 (DW_TAG_member) + <12db> DW_AT_name : (indirect string, offset: 0x102b): count + <12df> DW_AT_decl_file : 7 + <12e0> DW_AT_decl_line : 57 + <12e1> DW_AT_decl_column : 16 + <12e2> DW_AT_type : <0x1110> + <12e6> DW_AT_data_member_location: 32 + <2><12e7>: Abbrev Number: 0 + <1><12e8>: Abbrev Number: 3 (DW_TAG_typedef) + <12e9> DW_AT_name : (indirect string, offset: 0x10a9): rmutex_t + <12ed> DW_AT_decl_file : 7 + <12ee> DW_AT_decl_line : 60 + <12ef> DW_AT_decl_column : 25 + <12f0> DW_AT_type : <0x12c0> + <1><12f4>: Abbrev Number: 2 (DW_TAG_base_type) + <12f5> DW_AT_byte_size : 8 + <12f6> DW_AT_encoding : 5 (signed) + <12f7> DW_AT_name : (indirect string, offset: 0xe5d): long long int + <1><12fb>: Abbrev Number: 2 (DW_TAG_base_type) + <12fc> DW_AT_byte_size : 16 + <12fd> DW_AT_encoding : 4 (float) + <12fe> DW_AT_name : (indirect string, offset: 0xefb): long double + <1><1302>: Abbrev Number: 2 (DW_TAG_base_type) + <1303> DW_AT_byte_size : 1 + <1304> DW_AT_encoding : 2 (boolean) + <1305> DW_AT_name : (indirect string, offset: 0xfc9): _Bool + <1><1309>: Abbrev Number: 11 (DW_TAG_typedef) + <130a> DW_AT_name : (indirect string, offset: 0xe94): cookie_read_function_t + <130e> DW_AT_decl_file : 8 + <130f> DW_AT_decl_line : 441 + <1311> DW_AT_decl_column : 22 + <1312> DW_AT_type : <0x1316> + <1><1316>: Abbrev Number: 15 (DW_TAG_subroutine_type) + <1317> DW_AT_prototyped : 1 + <1317> DW_AT_type : <0x1191> + <131b> DW_AT_sibling : <0x132f> + <2><131f>: Abbrev Number: 16 (DW_TAG_formal_parameter) + <1320> DW_AT_type : <0x11b5> + <2><1324>: Abbrev Number: 16 (DW_TAG_formal_parameter) + <1325> DW_AT_type : <0x11b7> + <2><1329>: Abbrev Number: 16 (DW_TAG_formal_parameter) + <132a> DW_AT_type : <0x1185> + <2><132e>: Abbrev Number: 0 + <1><132f>: Abbrev Number: 11 (DW_TAG_typedef) + <1330> DW_AT_name : (indirect string, offset: 0xcf3): cookie_write_function_t + <1334> DW_AT_decl_file : 8 + <1335> DW_AT_decl_line : 443 + <1337> DW_AT_decl_column : 22 + <1338> DW_AT_type : <0x133c> + <1><133c>: Abbrev Number: 15 (DW_TAG_subroutine_type) + <133d> DW_AT_prototyped : 1 + <133d> DW_AT_type : <0x1191> + <1341> DW_AT_sibling : <0x1355> + <2><1345>: Abbrev Number: 16 (DW_TAG_formal_parameter) + <1346> DW_AT_type : <0x11b5> + <2><134a>: Abbrev Number: 16 (DW_TAG_formal_parameter) + <134b> DW_AT_type : <0x11c9> + <2><134f>: Abbrev Number: 16 (DW_TAG_formal_parameter) + <1350> DW_AT_type : <0x1185> + <2><1354>: Abbrev Number: 0 + <1><1355>: Abbrev Number: 11 (DW_TAG_typedef) + <1356> DW_AT_name : (indirect string, offset: 0xffa): cookie_seek_function_t + <135a> DW_AT_decl_file : 8 + <135b> DW_AT_decl_line : 446 + <135d> DW_AT_decl_column : 20 + <135e> DW_AT_type : <0x1362> + <1><1362>: Abbrev Number: 15 (DW_TAG_subroutine_type) + <1363> DW_AT_prototyped : 1 + <1363> DW_AT_type : <0x11a9> + <1367> DW_AT_sibling : <0x137b> + <2><136b>: Abbrev Number: 16 (DW_TAG_formal_parameter) + <136c> DW_AT_type : <0x11b5> + <2><1370>: Abbrev Number: 16 (DW_TAG_formal_parameter) + <1371> DW_AT_type : <0x137b> + <2><1375>: Abbrev Number: 16 (DW_TAG_formal_parameter) + <1376> DW_AT_type : <0x1109> + <2><137a>: Abbrev Number: 0 + <1><137b>: Abbrev Number: 7 (DW_TAG_pointer_type) + <137c> DW_AT_byte_size : 8 + <137d> DW_AT_type : <0x11a9> + <1><1381>: Abbrev Number: 11 (DW_TAG_typedef) + <1382> DW_AT_name : (indirect string, offset: 0xd14): cookie_close_function_t + <1386> DW_AT_decl_file : 8 + <1387> DW_AT_decl_line : 449 + <1389> DW_AT_decl_column : 18 + <138a> DW_AT_type : <0x138e> + <1><138e>: Abbrev Number: 15 (DW_TAG_subroutine_type) + <138f> DW_AT_prototyped : 1 + <138f> DW_AT_type : <0x1109> + <1393> DW_AT_sibling : <0x139d> + <2><1397>: Abbrev Number: 16 (DW_TAG_formal_parameter) + <1398> DW_AT_type : <0x11b5> + <2><139c>: Abbrev Number: 0 + <1><139d>: Abbrev Number: 9 (DW_TAG_structure_type) + <139e> DW_AT_name : (indirect string, offset: 0xe10): cookie_io_functions_t + <13a2> DW_AT_byte_size : 32 + <13a3> DW_AT_decl_file : 8 + <13a4> DW_AT_decl_line : 451 + <13a6> DW_AT_decl_column : 16 + <13a7> DW_AT_sibling : <0x13e4> + <2><13ab>: Abbrev Number: 10 (DW_TAG_member) + <13ac> DW_AT_name : (indirect string, offset: 0xe58): read + <13b0> DW_AT_decl_file : 8 + <13b1> DW_AT_decl_line : 453 + <13b3> DW_AT_decl_column : 31 + <13b4> DW_AT_type : <0x13e4> + <13b8> DW_AT_data_member_location: 0 + <2><13b9>: Abbrev Number: 10 (DW_TAG_member) + <13ba> DW_AT_name : (indirect string, offset: 0xcb4): write + <13be> DW_AT_decl_file : 8 + <13bf> DW_AT_decl_line : 454 + <13c1> DW_AT_decl_column : 32 + <13c2> DW_AT_type : <0x13ea> + <13c6> DW_AT_data_member_location: 8 + <2><13c7>: Abbrev Number: 10 (DW_TAG_member) + <13c8> DW_AT_name : (indirect string, offset: 0x1039): seek + <13cc> DW_AT_decl_file : 8 + <13cd> DW_AT_decl_line : 455 + <13cf> DW_AT_decl_column : 31 + <13d0> DW_AT_type : <0x13f0> + <13d4> DW_AT_data_member_location: 16 + <2><13d5>: Abbrev Number: 10 (DW_TAG_member) + <13d6> DW_AT_name : (indirect string, offset: 0xca8): close + <13da> DW_AT_decl_file : 8 + <13db> DW_AT_decl_line : 456 + <13dd> DW_AT_decl_column : 32 + <13de> DW_AT_type : <0x13f6> + <13e2> DW_AT_data_member_location: 24 + <2><13e3>: Abbrev Number: 0 + <1><13e4>: Abbrev Number: 7 (DW_TAG_pointer_type) + <13e5> DW_AT_byte_size : 8 + <13e6> DW_AT_type : <0x1309> + <1><13ea>: Abbrev Number: 7 (DW_TAG_pointer_type) + <13eb> DW_AT_byte_size : 8 + <13ec> DW_AT_type : <0x132f> + <1><13f0>: Abbrev Number: 7 (DW_TAG_pointer_type) + <13f1> DW_AT_byte_size : 8 + <13f2> DW_AT_type : <0x1355> + <1><13f6>: Abbrev Number: 7 (DW_TAG_pointer_type) + <13f7> DW_AT_byte_size : 8 + <13f8> DW_AT_type : <0x1381> + <1><13fc>: Abbrev Number: 11 (DW_TAG_typedef) + <13fd> DW_AT_name : (indirect string, offset: 0xe10): cookie_io_functions_t + <1401> DW_AT_decl_file : 8 + <1402> DW_AT_decl_line : 457 + <1404> DW_AT_decl_column : 3 + <1405> DW_AT_type : <0x139d> + <1><1409>: Abbrev Number: 9 (DW_TAG_structure_type) + <140a> DW_AT_name : (indirect string, offset: 0xeb3): file_struct + <140e> DW_AT_byte_size : 192 + <140f> DW_AT_decl_file : 8 + <1410> DW_AT_decl_line : 526 + <1412> DW_AT_decl_column : 8 + <1413> DW_AT_sibling : <0x14ce> + <2><1417>: Abbrev Number: 10 (DW_TAG_member) + <1418> DW_AT_name : (indirect string, offset: 0xfcf): fs_next + <141c> DW_AT_decl_file : 8 + <141d> DW_AT_decl_line : 528 + <141f> DW_AT_decl_column : 27 + <1420> DW_AT_type : <0x14ce> + <1424> DW_AT_data_member_location: 0 + <2><1425>: Abbrev Number: 10 (DW_TAG_member) + <1426> DW_AT_name : (indirect string, offset: 0x103e): fs_lock + <142a> DW_AT_decl_file : 8 + <142b> DW_AT_decl_line : 529 + <142d> DW_AT_decl_column : 27 + <142e> DW_AT_type : <0x12e8> + <1432> DW_AT_data_member_location: 8 + <2><1433>: Abbrev Number: 10 (DW_TAG_member) + <1434> DW_AT_name : (indirect string, offset: 0xff0): fs_iofunc + <1438> DW_AT_decl_file : 8 + <1439> DW_AT_decl_line : 530 + <143b> DW_AT_decl_column : 27 + <143c> DW_AT_type : <0x13fc> + <1440> DW_AT_data_member_location: 48 + <2><1441>: Abbrev Number: 10 (DW_TAG_member) + <1442> DW_AT_name : (indirect string, offset: 0x1021): fs_cookie + <1446> DW_AT_decl_file : 8 + <1447> DW_AT_decl_line : 531 + <1449> DW_AT_decl_column : 27 + <144a> DW_AT_type : <0x11b5> + <144e> DW_AT_data_member_location: 80 + <2><144f>: Abbrev Number: 10 (DW_TAG_member) + <1450> DW_AT_name : (indirect string, offset: 0x1051): fs_bufstart + <1454> DW_AT_decl_file : 8 + <1455> DW_AT_decl_line : 533 + <1457> DW_AT_decl_column : 27 + <1458> DW_AT_type : <0x11b7> + <145c> DW_AT_data_member_location: 88 + <2><145d>: Abbrev Number: 10 (DW_TAG_member) + <145e> DW_AT_name : (indirect string, offset: 0xdee): fs_bufend + <1462> DW_AT_decl_file : 8 + <1463> DW_AT_decl_line : 534 + <1465> DW_AT_decl_column : 27 + <1466> DW_AT_type : <0x11b7> + <146a> DW_AT_data_member_location: 96 + <2><146b>: Abbrev Number: 10 (DW_TAG_member) + <146c> DW_AT_name : (indirect string, offset: 0xe3d): fs_bufpos + <1470> DW_AT_decl_file : 8 + <1471> DW_AT_decl_line : 535 + <1473> DW_AT_decl_column : 27 + <1474> DW_AT_type : <0x11b7> + <1478> DW_AT_data_member_location: 104 + <2><1479>: Abbrev Number: 10 (DW_TAG_member) + <147a> DW_AT_name : (indirect string, offset: 0xe32): fs_bufread + <147e> DW_AT_decl_file : 8 + <147f> DW_AT_decl_line : 536 + <1481> DW_AT_decl_column : 27 + <1482> DW_AT_type : <0x11b7> + <1486> DW_AT_data_member_location: 112 + <2><1487>: Abbrev Number: 10 (DW_TAG_member) + <1488> DW_AT_name : (indirect string, offset: 0x1011): fs_buffer + <148c> DW_AT_decl_file : 8 + <148d> DW_AT_decl_line : 538 + <148f> DW_AT_decl_column : 27 + <1490> DW_AT_type : <0x14d4> + <1494> DW_AT_data_member_location: 120 + <2><1495>: Abbrev Number: 10 (DW_TAG_member) + <1496> DW_AT_name : (indirect string, offset: 0xf80): fs_oflags + <149a> DW_AT_decl_file : 8 + <149b> DW_AT_decl_line : 541 + <149d> DW_AT_decl_column : 27 + <149e> DW_AT_type : <0x1161> + <14a2> DW_AT_data_member_location: 184 + <2><14a3>: Abbrev Number: 10 (DW_TAG_member) + <14a4> DW_AT_name : (indirect string, offset: 0x108d): fs_flags + <14a8> DW_AT_decl_file : 8 + <14a9> DW_AT_decl_line : 542 + <14ab> DW_AT_decl_column : 27 + <14ac> DW_AT_type : <0x1144> + <14b0> DW_AT_data_member_location: 186 + <2><14b1>: Abbrev Number: 10 (DW_TAG_member) + <14b2> DW_AT_name : (indirect string, offset: 0x1067): fs_nungotten + <14b6> DW_AT_decl_file : 8 + <14b7> DW_AT_decl_line : 544 + <14b9> DW_AT_decl_column : 27 + <14ba> DW_AT_type : <0x1144> + <14be> DW_AT_data_member_location: 187 + <2><14bf>: Abbrev Number: 10 (DW_TAG_member) + <14c0> DW_AT_name : (indirect string, offset: 0xcba): fs_ungotten + <14c4> DW_AT_decl_file : 8 + <14c5> DW_AT_decl_line : 545 + <14c7> DW_AT_decl_column : 27 + <14c8> DW_AT_type : <0x14e4> + <14cc> DW_AT_data_member_location: 188 + <2><14cd>: Abbrev Number: 0 + <1><14ce>: Abbrev Number: 7 (DW_TAG_pointer_type) + <14cf> DW_AT_byte_size : 8 + <14d0> DW_AT_type : <0x1409> + <1><14d4>: Abbrev Number: 17 (DW_TAG_array_type) + <14d5> DW_AT_type : <0x11bd> + <14d9> DW_AT_sibling : <0x14e4> + <2><14dd>: Abbrev Number: 18 (DW_TAG_subrange_type) + <14de> DW_AT_type : <0x111e> + <14e2> DW_AT_upper_bound : 63 + <2><14e3>: Abbrev Number: 0 + <1><14e4>: Abbrev Number: 17 (DW_TAG_array_type) + <14e5> DW_AT_type : <0x11bd> + <14e9> DW_AT_sibling : <0x14f4> + <2><14ed>: Abbrev Number: 18 (DW_TAG_subrange_type) + <14ee> DW_AT_type : <0x111e> + <14f2> DW_AT_upper_bound : 1 + <2><14f3>: Abbrev Number: 0 + <1><14f4>: Abbrev Number: 3 (DW_TAG_typedef) + <14f5> DW_AT_name : (indirect string, offset: 0xe53): FILE + <14f9> DW_AT_decl_file : 9 + <14fa> DW_AT_decl_line : 112 + <14fb> DW_AT_decl_column : 28 + <14fc> DW_AT_type : <0x1409> + <1><1500>: Abbrev Number: 7 (DW_TAG_pointer_type) + <1501> DW_AT_byte_size : 8 + <1502> DW_AT_type : <0x14f4> + <1><1506>: Abbrev Number: 19 (DW_TAG_subprogram) + <1507> DW_AT_external : 1 + <1507> DW_AT_name : (indirect string, offset: 0xe05): lib_fflush + <150b> DW_AT_decl_file : 1 + <150c> DW_AT_decl_line : 170 + <150d> DW_AT_decl_column : 9 + <150e> DW_AT_prototyped : 1 + <150e> DW_AT_type : <0x1191> + <1512> DW_AT_low_pc : 0x2d0 + <151a> DW_AT_high_pc : 0x34 + <1522> DW_AT_frame_base : 1 byte block: 9c (DW_OP_call_frame_cfa) + <1524> DW_AT_GNU_all_call_sites: 1 + <1524> DW_AT_sibling : <0x158d> + <2><1528>: Abbrev Number: 20 (DW_TAG_formal_parameter) + <1529> DW_AT_name : (indirect string, offset: 0xebf): stream + <152d> DW_AT_decl_file : 1 + <152e> DW_AT_decl_line : 170 + <152f> DW_AT_decl_column : 30 + <1530> DW_AT_type : <0x1500> + <1534> DW_AT_location : 0x9a6 (location list) + <2><1538>: Abbrev Number: 21 (DW_TAG_variable) + <1539> DW_AT_name : ret + <153d> DW_AT_decl_file : 1 + <153e> DW_AT_decl_line : 172 + <153f> DW_AT_decl_column : 11 + <1540> DW_AT_type : <0x1191> + <1544> DW_AT_location : 0x9f2 (location list) + <2><1548>: Abbrev Number: 22 (DW_TAG_GNU_call_site) + <1549> DW_AT_low_pc : 0x2e2 + <1551> DW_AT_abstract_origin: <0x1620> + <1555> DW_AT_sibling : <0x1560> + <3><1559>: Abbrev Number: 23 (DW_TAG_GNU_call_site_parameter) + <155a> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <155c> DW_AT_GNU_call_site_value: 2 byte block: 78 0 (DW_OP_breg8 (s0): 0) + <3><155f>: Abbrev Number: 0 + <2><1560>: Abbrev Number: 22 (DW_TAG_GNU_call_site) + <1561> DW_AT_low_pc : 0x2ec + <1569> DW_AT_abstract_origin: <0x158d> + <156d> DW_AT_sibling : <0x1578> + <3><1571>: Abbrev Number: 23 (DW_TAG_GNU_call_site_parameter) + <1572> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <1574> DW_AT_GNU_call_site_value: 2 byte block: 78 0 (DW_OP_breg8 (s0): 0) + <3><1577>: Abbrev Number: 0 + <2><1578>: Abbrev Number: 24 (DW_TAG_GNU_call_site) + <1579> DW_AT_low_pc : 0x2f8 + <1581> DW_AT_abstract_origin: <0x162c> + <3><1585>: Abbrev Number: 23 (DW_TAG_GNU_call_site_parameter) + <1586> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <1588> DW_AT_GNU_call_site_value: 2 byte block: 78 0 (DW_OP_breg8 (s0): 0) + <3><158b>: Abbrev Number: 0 + <2><158c>: Abbrev Number: 0 + <1><158d>: Abbrev Number: 19 (DW_TAG_subprogram) + <158e> DW_AT_external : 1 + <158e> DW_AT_name : (indirect string, offset: 0xccf): lib_fflush_unlocked + <1592> DW_AT_decl_file : 1 + <1593> DW_AT_decl_line : 58 + <1594> DW_AT_decl_column : 9 + <1595> DW_AT_prototyped : 1 + <1595> DW_AT_type : <0x1191> + <1599> DW_AT_low_pc : 0x248 + <15a1> DW_AT_high_pc : 0x88 + <15a9> DW_AT_frame_base : 1 byte block: 9c (DW_OP_call_frame_cfa) + <15ab> DW_AT_GNU_all_call_sites: 1 + <15ab> DW_AT_sibling : <0x1620> + <2><15af>: Abbrev Number: 20 (DW_TAG_formal_parameter) + <15b0> DW_AT_name : (indirect string, offset: 0xebf): stream + <15b4> DW_AT_decl_file : 1 + <15b5> DW_AT_decl_line : 58 + <15b6> DW_AT_decl_column : 39 + <15b7> DW_AT_type : <0x1500> + <15bb> DW_AT_location : 0xa28 (location list) + <2><15bf>: Abbrev Number: 21 (DW_TAG_variable) + <15c0> DW_AT_name : src + <15c4> DW_AT_decl_file : 1 + <15c5> DW_AT_decl_line : 61 + <15c6> DW_AT_decl_column : 19 + <15c7> DW_AT_type : <0x11c9> + <15cb> DW_AT_location : 0xab0 (location list) + <2><15cf>: Abbrev Number: 25 (DW_TAG_variable) + <15d0> DW_AT_name : (indirect string, offset: 0xfe2): bytes_written + <15d4> DW_AT_decl_file : 1 + <15d5> DW_AT_decl_line : 62 + <15d6> DW_AT_decl_column : 11 + <15d7> DW_AT_type : <0x1191> + <15db> DW_AT_location : 0xb4a (location list) + <2><15df>: Abbrev Number: 26 (DW_TAG_variable) + <15e0> DW_AT_name : (indirect string, offset: 0xee2): nbuffer + <15e4> DW_AT_decl_file : 1 + <15e5> DW_AT_decl_line : 63 + <15e6> DW_AT_decl_column : 11 + <15e7> DW_AT_type : <0x1191> + <2><15eb>: Abbrev Number: 27 (DW_TAG_GNU_call_site) + <15ec> DW_AT_low_pc : 0x282 + <15f4> DW_AT_sibling : <0x1605> + <3><15f8>: Abbrev Number: 23 (DW_TAG_GNU_call_site_parameter) + <15f9> DW_AT_location : 1 byte block: 5b (DW_OP_reg11 (a1)) + <15fb> DW_AT_GNU_call_site_value: 2 byte block: 82 0 (DW_OP_breg18 (s2): 0) + <3><15fe>: Abbrev Number: 23 (DW_TAG_GNU_call_site_parameter) + <15ff> DW_AT_location : 1 byte block: 5c (DW_OP_reg12 (a2)) + <1601> DW_AT_GNU_call_site_value: 2 byte block: 79 0 (DW_OP_breg9 (s1): 0) + <3><1604>: Abbrev Number: 0 + <2><1605>: Abbrev Number: 28 (DW_TAG_GNU_call_site) + <1606> DW_AT_low_pc : 0x29a + <160e> DW_AT_abstract_origin: <0x1638> + <2><1612>: Abbrev Number: 28 (DW_TAG_GNU_call_site) + <1613> DW_AT_low_pc : 0x2b6 + <161b> DW_AT_abstract_origin: <0x1645> + <2><161f>: Abbrev Number: 0 + <1><1620>: Abbrev Number: 29 (DW_TAG_subprogram) + <1621> DW_AT_external : 1 + <1621> DW_AT_declaration : 1 + <1621> DW_AT_linkage_name: (indirect string, offset: 0xf10): flockfile + <1625> DW_AT_name : (indirect string, offset: 0xf10): flockfile + <1629> DW_AT_decl_file : 9 + <162a> DW_AT_decl_line : 194 + <162b> DW_AT_decl_column : 6 + <1><162c>: Abbrev Number: 29 (DW_TAG_subprogram) + <162d> DW_AT_external : 1 + <162d> DW_AT_declaration : 1 + <162d> DW_AT_linkage_name: (indirect string, offset: 0x1081): funlockfile + <1631> DW_AT_name : (indirect string, offset: 0x1081): funlockfile + <1635> DW_AT_decl_file : 9 + <1636> DW_AT_decl_line : 196 + <1637> DW_AT_decl_column : 6 + <1><1638>: Abbrev Number: 30 (DW_TAG_subprogram) + <1639> DW_AT_external : 1 + <1639> DW_AT_declaration : 1 + <1639> DW_AT_linkage_name: (indirect string, offset: 0x10a1): __errno + <163d> DW_AT_name : (indirect string, offset: 0x10a1): __errno + <1641> DW_AT_decl_file : 10 + <1642> DW_AT_decl_line : 364 + <1644> DW_AT_decl_column : 10 + <1><1645>: Abbrev Number: 30 (DW_TAG_subprogram) + <1646> DW_AT_external : 1 + <1646> DW_AT_declaration : 1 + <1646> DW_AT_linkage_name: (indirect string, offset: 0xcb4): write + <164a> DW_AT_name : (indirect string, offset: 0xcb4): write + <164e> DW_AT_decl_file : 11 + <164f> DW_AT_decl_line : 335 + <1651> DW_AT_decl_column : 9 + <1><1652>: Abbrev Number: 0 + Compilation Unit @ offset 0x1653: + Length: 0x533 (32-bit) + Version: 4 + Abbrev Offset: 0x6ed + Pointer Size: 8 + <0><165e>: Abbrev Number: 1 (DW_TAG_compile_unit) + <165f> DW_AT_producer : (indirect string, offset: 0x1178): GNU C17 10.2.0 -mcmodel=medany -march=rv64imafdc -mabi=lp64d -march=rv64imafdc -g -Os -fno-common -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections + <1663> DW_AT_language : 12 (ANSI C99) + <1664> DW_AT_name : (indirect string, offset: 0x1111): stdio/lib_rdflush_unlocked.c + <1668> DW_AT_comp_dir : (indirect string, offset: 0x129a): /Users/Luppy/ox64/nuttx/libs/libc + <166c> DW_AT_ranges : 0x120 + <1670> DW_AT_low_pc : 0x0 + <1678> DW_AT_stmt_list : 0xd56 + <1><167c>: Abbrev Number: 2 (DW_TAG_base_type) + <167d> DW_AT_byte_size : 1 + <167e> DW_AT_encoding : 6 (signed char) + <167f> DW_AT_name : (indirect string, offset: 0x1276): signed char + <1><1683>: Abbrev Number: 3 (DW_TAG_typedef) + <1684> DW_AT_name : (indirect string, offset: 0x10d9): _uint8_t + <1688> DW_AT_decl_file : 2 + <1689> DW_AT_decl_line : 52 + <168a> DW_AT_decl_column : 28 + <168b> DW_AT_type : <0x168f> + <1><168f>: Abbrev Number: 2 (DW_TAG_base_type) + <1690> DW_AT_byte_size : 1 + <1691> DW_AT_encoding : 8 (unsigned char) + <1692> DW_AT_name : (indirect string, offset: 0x1327): unsigned char + <1><1696>: Abbrev Number: 3 (DW_TAG_typedef) + <1697> DW_AT_name : (indirect string, offset: 0x1335): _int16_t + <169b> DW_AT_decl_file : 2 + <169c> DW_AT_decl_line : 54 + <169d> DW_AT_decl_column : 28 + <169e> DW_AT_type : <0x16a2> + <1><16a2>: Abbrev Number: 2 (DW_TAG_base_type) + <16a3> DW_AT_byte_size : 2 + <16a4> DW_AT_encoding : 5 (signed) + <16a5> DW_AT_name : (indirect string, offset: 0x10f7): short int + <1><16a9>: Abbrev Number: 3 (DW_TAG_typedef) + <16aa> DW_AT_name : (indirect string, offset: 0x1462): _uint16_t + <16ae> DW_AT_decl_file : 2 + <16af> DW_AT_decl_line : 55 + <16b0> DW_AT_decl_column : 28 + <16b1> DW_AT_type : <0x16b5> + <1><16b5>: Abbrev Number: 2 (DW_TAG_base_type) + <16b6> DW_AT_byte_size : 2 + <16b7> DW_AT_encoding : 7 (unsigned) + <16b8> DW_AT_name : (indirect string, offset: 0x139d): short unsigned int + <1><16bc>: Abbrev Number: 3 (DW_TAG_typedef) + <16bd> DW_AT_name : (indirect string, offset: 0x131e): _int32_t + <16c1> DW_AT_decl_file : 2 + <16c2> DW_AT_decl_line : 58 + <16c3> DW_AT_decl_column : 28 + <16c4> DW_AT_type : <0x16c8> + <1><16c8>: Abbrev Number: 4 (DW_TAG_base_type) + <16c9> DW_AT_byte_size : 4 + <16ca> DW_AT_encoding : 5 (signed) + <16cb> DW_AT_name : int + <1><16cf>: Abbrev Number: 2 (DW_TAG_base_type) + <16d0> DW_AT_byte_size : 4 + <16d1> DW_AT_encoding : 7 (unsigned) + <16d2> DW_AT_name : (indirect string, offset: 0x1479): unsigned int + <1><16d6>: Abbrev Number: 2 (DW_TAG_base_type) + <16d7> DW_AT_byte_size : 8 + <16d8> DW_AT_encoding : 5 (signed) + <16d9> DW_AT_name : (indirect string, offset: 0x13bd): long int + <1><16dd>: Abbrev Number: 2 (DW_TAG_base_type) + <16de> DW_AT_byte_size : 8 + <16df> DW_AT_encoding : 7 (unsigned) + <16e0> DW_AT_name : (indirect string, offset: 0x137b): long unsigned int + <1><16e4>: Abbrev Number: 3 (DW_TAG_typedef) + <16e5> DW_AT_name : (indirect string, offset: 0x14ab): _ssize_t + <16e9> DW_AT_decl_file : 2 + <16ea> DW_AT_decl_line : 91 + <16eb> DW_AT_decl_column : 28 + <16ec> DW_AT_type : <0x16d6> + <1><16f0>: Abbrev Number: 3 (DW_TAG_typedef) + <16f1> DW_AT_name : (indirect string, offset: 0x1436): _size_t + <16f5> DW_AT_decl_file : 2 + <16f6> DW_AT_decl_line : 93 + <16f7> DW_AT_decl_column : 28 + <16f8> DW_AT_type : <0x16dd> + <1><16fc>: Abbrev Number: 2 (DW_TAG_base_type) + <16fd> DW_AT_byte_size : 8 + <16fe> DW_AT_encoding : 7 (unsigned) + <16ff> DW_AT_name : (indirect string, offset: 0x1356): long long unsigned int + <1><1703>: Abbrev Number: 3 (DW_TAG_typedef) + <1704> DW_AT_name : (indirect string, offset: 0x1237): uint8_t + <1708> DW_AT_decl_file : 3 + <1709> DW_AT_decl_line : 166 + <170a> DW_AT_decl_column : 29 + <170b> DW_AT_type : <0x1683> + <1><170f>: Abbrev Number: 3 (DW_TAG_typedef) + <1710> DW_AT_name : (indirect string, offset: 0x13ce): int16_t + <1714> DW_AT_decl_file : 3 + <1715> DW_AT_decl_line : 168 + <1716> DW_AT_decl_column : 29 + <1717> DW_AT_type : <0x1696> + <1><171b>: Abbrev Number: 5 (DW_TAG_volatile_type) + <171c> DW_AT_type : <0x170f> + <1><1720>: Abbrev Number: 3 (DW_TAG_typedef) + <1721> DW_AT_name : (indirect string, offset: 0x1372): uint16_t + <1725> DW_AT_decl_file : 3 + <1726> DW_AT_decl_line : 169 + <1727> DW_AT_decl_column : 29 + <1728> DW_AT_type : <0x16a9> + <1><172c>: Abbrev Number: 3 (DW_TAG_typedef) + <172d> DW_AT_name : (indirect string, offset: 0x13c6): int32_t + <1731> DW_AT_decl_file : 3 + <1732> DW_AT_decl_line : 176 + <1733> DW_AT_decl_column : 29 + <1734> DW_AT_type : <0x16bc> + <1><1738>: Abbrev Number: 3 (DW_TAG_typedef) + <1739> DW_AT_name : (indirect string, offset: 0x1108): intptr_t + <173d> DW_AT_decl_file : 3 + <173e> DW_AT_decl_line : 238 + <173f> DW_AT_decl_column : 29 + <1740> DW_AT_type : <0x16e4> + <1><1744>: Abbrev Number: 3 (DW_TAG_typedef) + <1745> DW_AT_name : (indirect string, offset: 0x1101): size_t + <1749> DW_AT_decl_file : 4 + <174a> DW_AT_decl_line : 133 + <174b> DW_AT_decl_column : 22 + <174c> DW_AT_type : <0x16f0> + <1><1750>: Abbrev Number: 3 (DW_TAG_typedef) + <1751> DW_AT_name : (indirect string, offset: 0x1170): ssize_t + <1755> DW_AT_decl_file : 4 + <1756> DW_AT_decl_line : 134 + <1757> DW_AT_decl_column : 22 + <1758> DW_AT_type : <0x16e4> + <1><175c>: Abbrev Number: 3 (DW_TAG_typedef) + <175d> DW_AT_name : (indirect string, offset: 0x141a): pid_t + <1761> DW_AT_decl_file : 4 + <1762> DW_AT_decl_line : 162 + <1763> DW_AT_decl_column : 22 + <1764> DW_AT_type : <0x16c8> + <1><1768>: Abbrev Number: 3 (DW_TAG_typedef) + <1769> DW_AT_name : (indirect string, offset: 0x142a): off_t + <176d> DW_AT_decl_file : 4 + <176e> DW_AT_decl_line : 229 + <176f> DW_AT_decl_column : 22 + <1770> DW_AT_type : <0x172c> + <1><1774>: Abbrev Number: 6 (DW_TAG_pointer_type) + <1775> DW_AT_byte_size : 8 + <1><1776>: Abbrev Number: 7 (DW_TAG_pointer_type) + <1777> DW_AT_byte_size : 8 + <1778> DW_AT_type : <0x177c> + <1><177c>: Abbrev Number: 2 (DW_TAG_base_type) + <177d> DW_AT_byte_size : 1 + <177e> DW_AT_encoding : 8 (unsigned char) + <177f> DW_AT_name : (indirect string, offset: 0x13b0): char + <1><1783>: Abbrev Number: 8 (DW_TAG_const_type) + <1784> DW_AT_type : <0x177c> + <1><1788>: Abbrev Number: 9 (DW_TAG_enumeration_type) + <1789> DW_AT_encoding : 5 (signed) + <178a> DW_AT_byte_size : 4 + <178b> DW_AT_type : <0x16c8> + <178f> DW_AT_decl_file : 4 + <1790> DW_AT_decl_line : 321 + <1792> DW_AT_decl_column : 1 + <1793> DW_AT_sibling : <0x17a3> + <2><1797>: Abbrev Number: 10 (DW_TAG_enumerator) + <1798> DW_AT_name : (indirect string, offset: 0x12fb): ERROR + <179c> DW_AT_const_value : -1 + <2><179d>: Abbrev Number: 11 (DW_TAG_enumerator) + <179e> DW_AT_name : OK + <17a1> DW_AT_const_value : 0 + <2><17a2>: Abbrev Number: 0 + <1><17a3>: Abbrev Number: 7 (DW_TAG_pointer_type) + <17a4> DW_AT_byte_size : 8 + <17a5> DW_AT_type : <0x1783> + <1><17a9>: Abbrev Number: 12 (DW_TAG_structure_type) + <17aa> DW_AT_name : (indirect string, offset: 0x1307): dq_entry_s + <17ae> DW_AT_byte_size : 16 + <17af> DW_AT_decl_file : 5 + <17b0> DW_AT_decl_line : 303 + <17b2> DW_AT_decl_column : 8 + <17b3> DW_AT_sibling : <0x17d4> + <2><17b7>: Abbrev Number: 13 (DW_TAG_member) + <17b8> DW_AT_name : (indirect string, offset: 0x1301): flink + <17bc> DW_AT_decl_file : 5 + <17bd> DW_AT_decl_line : 305 + <17bf> DW_AT_decl_column : 26 + <17c0> DW_AT_type : <0x17d4> + <17c4> DW_AT_data_member_location: 0 + <2><17c5>: Abbrev Number: 13 (DW_TAG_member) + <17c6> DW_AT_name : (indirect string, offset: 0x10c1): blink + <17ca> DW_AT_decl_file : 5 + <17cb> DW_AT_decl_line : 306 + <17cd> DW_AT_decl_column : 26 + <17ce> DW_AT_type : <0x17d4> + <17d2> DW_AT_data_member_location: 8 + <2><17d3>: Abbrev Number: 0 + <1><17d4>: Abbrev Number: 7 (DW_TAG_pointer_type) + <17d5> DW_AT_byte_size : 8 + <17d6> DW_AT_type : <0x17a9> + <1><17da>: Abbrev Number: 14 (DW_TAG_typedef) + <17db> DW_AT_name : (indirect string, offset: 0x13e4): dq_entry_t + <17df> DW_AT_decl_file : 5 + <17e0> DW_AT_decl_line : 308 + <17e2> DW_AT_decl_column : 27 + <17e3> DW_AT_type : <0x17a9> + <1><17e7>: Abbrev Number: 12 (DW_TAG_structure_type) + <17e8> DW_AT_name : (indirect string, offset: 0x148f): dq_queue_s + <17ec> DW_AT_byte_size : 16 + <17ed> DW_AT_decl_file : 5 + <17ee> DW_AT_decl_line : 317 + <17f0> DW_AT_decl_column : 8 + <17f1> DW_AT_sibling : <0x1812> + <2><17f5>: Abbrev Number: 13 (DW_TAG_member) + <17f6> DW_AT_name : (indirect string, offset: 0x1232): head + <17fa> DW_AT_decl_file : 5 + <17fb> DW_AT_decl_line : 319 + <17fd> DW_AT_decl_column : 19 + <17fe> DW_AT_type : <0x1812> + <1802> DW_AT_data_member_location: 0 + <2><1803>: Abbrev Number: 13 (DW_TAG_member) + <1804> DW_AT_name : (indirect string, offset: 0x136d): tail + <1808> DW_AT_decl_file : 5 + <1809> DW_AT_decl_line : 320 + <180b> DW_AT_decl_column : 19 + <180c> DW_AT_type : <0x1812> + <1810> DW_AT_data_member_location: 8 + <2><1811>: Abbrev Number: 0 + <1><1812>: Abbrev Number: 7 (DW_TAG_pointer_type) + <1813> DW_AT_byte_size : 8 + <1814> DW_AT_type : <0x17da> + <1><1818>: Abbrev Number: 14 (DW_TAG_typedef) + <1819> DW_AT_name : (indirect string, offset: 0x144b): dq_queue_t + <181d> DW_AT_decl_file : 5 + <181e> DW_AT_decl_line : 322 + <1820> DW_AT_decl_column : 27 + <1821> DW_AT_type : <0x17e7> + <1><1825>: Abbrev Number: 15 (DW_TAG_structure_type) + <1826> DW_AT_name : (indirect string, offset: 0x1255): sem_s + <182a> DW_AT_byte_size : 24 + <182b> DW_AT_decl_file : 6 + <182c> DW_AT_decl_line : 99 + <182d> DW_AT_decl_column : 8 + <182e> DW_AT_sibling : <0x185a> + <2><1832>: Abbrev Number: 16 (DW_TAG_member) + <1833> DW_AT_name : (indirect string, offset: 0x133e): semcount + <1837> DW_AT_decl_file : 6 + <1838> DW_AT_decl_line : 101 + <1839> DW_AT_decl_column : 20 + <183a> DW_AT_type : <0x171b> + <183e> DW_AT_data_member_location: 0 + <2><183f>: Abbrev Number: 16 (DW_TAG_member) + <1840> DW_AT_name : (indirect string, offset: 0x1350): flags + <1844> DW_AT_decl_file : 6 + <1845> DW_AT_decl_line : 108 + <1846> DW_AT_decl_column : 11 + <1847> DW_AT_type : <0x1703> + <184b> DW_AT_data_member_location: 2 + <2><184c>: Abbrev Number: 16 (DW_TAG_member) + <184d> DW_AT_name : (indirect string, offset: 0x1146): waitlist + <1851> DW_AT_decl_file : 6 + <1852> DW_AT_decl_line : 110 + <1853> DW_AT_decl_column : 14 + <1854> DW_AT_type : <0x1818> + <1858> DW_AT_data_member_location: 8 + <2><1859>: Abbrev Number: 0 + <1><185a>: Abbrev Number: 3 (DW_TAG_typedef) + <185b> DW_AT_name : (indirect string, offset: 0x125b): sem_t + <185f> DW_AT_decl_file : 6 + <1860> DW_AT_decl_line : 121 + <1861> DW_AT_decl_column : 22 + <1862> DW_AT_type : <0x1825> + <1><1866>: Abbrev Number: 15 (DW_TAG_structure_type) + <1867> DW_AT_name : (indirect string, offset: 0x13b5): mutex_s + <186b> DW_AT_byte_size : 32 + <186c> DW_AT_decl_file : 7 + <186d> DW_AT_decl_line : 46 + <186e> DW_AT_decl_column : 8 + <186f> DW_AT_sibling : <0x188e> + <2><1873>: Abbrev Number: 17 (DW_TAG_member) + <1874> DW_AT_name : sem + <1878> DW_AT_decl_file : 7 + <1879> DW_AT_decl_line : 48 + <187a> DW_AT_decl_column : 9 + <187b> DW_AT_type : <0x185a> + <187f> DW_AT_data_member_location: 0 + <2><1880>: Abbrev Number: 16 (DW_TAG_member) + <1881> DW_AT_name : (indirect string, offset: 0x12bc): holder + <1885> DW_AT_decl_file : 7 + <1886> DW_AT_decl_line : 49 + <1887> DW_AT_decl_column : 9 + <1888> DW_AT_type : <0x175c> + <188c> DW_AT_data_member_location: 24 + <2><188d>: Abbrev Number: 0 + <1><188e>: Abbrev Number: 3 (DW_TAG_typedef) + <188f> DW_AT_name : (indirect string, offset: 0x12da): mutex_t + <1893> DW_AT_decl_file : 7 + <1894> DW_AT_decl_line : 52 + <1895> DW_AT_decl_column : 24 + <1896> DW_AT_type : <0x1866> + <1><189a>: Abbrev Number: 15 (DW_TAG_structure_type) + <189b> DW_AT_name : (indirect string, offset: 0x1347): rmutex_s + <189f> DW_AT_byte_size : 40 + <18a0> DW_AT_decl_file : 7 + <18a1> DW_AT_decl_line : 54 + <18a2> DW_AT_decl_column : 8 + <18a3> DW_AT_sibling : <0x18c2> + <2><18a7>: Abbrev Number: 16 (DW_TAG_member) + <18a8> DW_AT_name : (indirect string, offset: 0x1397): mutex + <18ac> DW_AT_decl_file : 7 + <18ad> DW_AT_decl_line : 56 + <18ae> DW_AT_decl_column : 11 + <18af> DW_AT_type : <0x188e> + <18b3> DW_AT_data_member_location: 0 + <2><18b4>: Abbrev Number: 16 (DW_TAG_member) + <18b5> DW_AT_name : (indirect string, offset: 0x1430): count + <18b9> DW_AT_decl_file : 7 + <18ba> DW_AT_decl_line : 57 + <18bb> DW_AT_decl_column : 16 + <18bc> DW_AT_type : <0x16cf> + <18c0> DW_AT_data_member_location: 32 + <2><18c1>: Abbrev Number: 0 + <1><18c2>: Abbrev Number: 3 (DW_TAG_typedef) + <18c3> DW_AT_name : (indirect string, offset: 0x14a2): rmutex_t + <18c7> DW_AT_decl_file : 7 + <18c8> DW_AT_decl_line : 60 + <18c9> DW_AT_decl_column : 25 + <18ca> DW_AT_type : <0x189a> + <1><18ce>: Abbrev Number: 2 (DW_TAG_base_type) + <18cf> DW_AT_byte_size : 8 + <18d0> DW_AT_encoding : 5 (signed) + <18d1> DW_AT_name : (indirect string, offset: 0x128c): long long int + <1><18d5>: Abbrev Number: 2 (DW_TAG_base_type) + <18d6> DW_AT_byte_size : 16 + <18d7> DW_AT_encoding : 4 (float) + <18d8> DW_AT_name : (indirect string, offset: 0x1312): long double + <1><18dc>: Abbrev Number: 2 (DW_TAG_base_type) + <18dd> DW_AT_byte_size : 1 + <18de> DW_AT_encoding : 2 (boolean) + <18df> DW_AT_name : (indirect string, offset: 0x13d6): _Bool + <1><18e3>: Abbrev Number: 14 (DW_TAG_typedef) + <18e4> DW_AT_name : (indirect string, offset: 0x12c3): cookie_read_function_t + <18e8> DW_AT_decl_file : 8 + <18e9> DW_AT_decl_line : 441 + <18eb> DW_AT_decl_column : 22 + <18ec> DW_AT_type : <0x18f0> + <1><18f0>: Abbrev Number: 18 (DW_TAG_subroutine_type) + <18f1> DW_AT_prototyped : 1 + <18f1> DW_AT_type : <0x1750> + <18f5> DW_AT_sibling : <0x1909> + <2><18f9>: Abbrev Number: 19 (DW_TAG_formal_parameter) + <18fa> DW_AT_type : <0x1774> + <2><18fe>: Abbrev Number: 19 (DW_TAG_formal_parameter) + <18ff> DW_AT_type : <0x1776> + <2><1903>: Abbrev Number: 19 (DW_TAG_formal_parameter) + <1904> DW_AT_type : <0x1744> + <2><1908>: Abbrev Number: 0 + <1><1909>: Abbrev Number: 14 (DW_TAG_typedef) + <190a> DW_AT_name : (indirect string, offset: 0x112e): cookie_write_function_t + <190e> DW_AT_decl_file : 8 + <190f> DW_AT_decl_line : 443 + <1911> DW_AT_decl_column : 22 + <1912> DW_AT_type : <0x1916> + <1><1916>: Abbrev Number: 18 (DW_TAG_subroutine_type) + <1917> DW_AT_prototyped : 1 + <1917> DW_AT_type : <0x1750> + <191b> DW_AT_sibling : <0x192f> + <2><191f>: Abbrev Number: 19 (DW_TAG_formal_parameter) + <1920> DW_AT_type : <0x1774> + <2><1924>: Abbrev Number: 19 (DW_TAG_formal_parameter) + <1925> DW_AT_type : <0x17a3> + <2><1929>: Abbrev Number: 19 (DW_TAG_formal_parameter) + <192a> DW_AT_type : <0x1744> + <2><192e>: Abbrev Number: 0 + <1><192f>: Abbrev Number: 14 (DW_TAG_typedef) + <1930> DW_AT_name : (indirect string, offset: 0x13f9): cookie_seek_function_t + <1934> DW_AT_decl_file : 8 + <1935> DW_AT_decl_line : 446 + <1937> DW_AT_decl_column : 20 + <1938> DW_AT_type : <0x193c> + <1><193c>: Abbrev Number: 18 (DW_TAG_subroutine_type) + <193d> DW_AT_prototyped : 1 + <193d> DW_AT_type : <0x1768> + <1941> DW_AT_sibling : <0x1955> + <2><1945>: Abbrev Number: 19 (DW_TAG_formal_parameter) + <1946> DW_AT_type : <0x1774> + <2><194a>: Abbrev Number: 19 (DW_TAG_formal_parameter) + <194b> DW_AT_type : <0x1955> + <2><194f>: Abbrev Number: 19 (DW_TAG_formal_parameter) + <1950> DW_AT_type : <0x16c8> + <2><1954>: Abbrev Number: 0 + <1><1955>: Abbrev Number: 7 (DW_TAG_pointer_type) + <1956> DW_AT_byte_size : 8 + <1957> DW_AT_type : <0x1768> + <1><195b>: Abbrev Number: 14 (DW_TAG_typedef) + <195c> DW_AT_name : (indirect string, offset: 0x1158): cookie_close_function_t + <1960> DW_AT_decl_file : 8 + <1961> DW_AT_decl_line : 449 + <1963> DW_AT_decl_column : 18 + <1964> DW_AT_type : <0x1968> + <1><1968>: Abbrev Number: 18 (DW_TAG_subroutine_type) + <1969> DW_AT_prototyped : 1 + <1969> DW_AT_type : <0x16c8> + <196d> DW_AT_sibling : <0x1977> + <2><1971>: Abbrev Number: 19 (DW_TAG_formal_parameter) + <1972> DW_AT_type : <0x1774> + <2><1976>: Abbrev Number: 0 + <1><1977>: Abbrev Number: 12 (DW_TAG_structure_type) + <1978> DW_AT_name : (indirect string, offset: 0x123f): cookie_io_functions_t + <197c> DW_AT_byte_size : 32 + <197d> DW_AT_decl_file : 8 + <197e> DW_AT_decl_line : 451 + <1980> DW_AT_decl_column : 16 + <1981> DW_AT_sibling : <0x19be> + <2><1985>: Abbrev Number: 13 (DW_TAG_member) + <1986> DW_AT_name : (indirect string, offset: 0x1287): read + <198a> DW_AT_decl_file : 8 + <198b> DW_AT_decl_line : 453 + <198d> DW_AT_decl_column : 31 + <198e> DW_AT_type : <0x19be> + <1992> DW_AT_data_member_location: 0 + <2><1993>: Abbrev Number: 13 (DW_TAG_member) + <1994> DW_AT_name : (indirect string, offset: 0x10c7): write + <1998> DW_AT_decl_file : 8 + <1999> DW_AT_decl_line : 454 + <199b> DW_AT_decl_column : 32 + <199c> DW_AT_type : <0x19c4> + <19a0> DW_AT_data_member_location: 8 + <2><19a1>: Abbrev Number: 13 (DW_TAG_member) + <19a2> DW_AT_name : (indirect string, offset: 0x143e): seek + <19a6> DW_AT_decl_file : 8 + <19a7> DW_AT_decl_line : 455 + <19a9> DW_AT_decl_column : 31 + <19aa> DW_AT_type : <0x19ca> + <19ae> DW_AT_data_member_location: 16 + <2><19af>: Abbrev Number: 13 (DW_TAG_member) + <19b0> DW_AT_name : (indirect string, offset: 0x10bb): close + <19b4> DW_AT_decl_file : 8 + <19b5> DW_AT_decl_line : 456 + <19b7> DW_AT_decl_column : 32 + <19b8> DW_AT_type : <0x19d0> + <19bc> DW_AT_data_member_location: 24 + <2><19bd>: Abbrev Number: 0 + <1><19be>: Abbrev Number: 7 (DW_TAG_pointer_type) + <19bf> DW_AT_byte_size : 8 + <19c0> DW_AT_type : <0x18e3> + <1><19c4>: Abbrev Number: 7 (DW_TAG_pointer_type) + <19c5> DW_AT_byte_size : 8 + <19c6> DW_AT_type : <0x1909> + <1><19ca>: Abbrev Number: 7 (DW_TAG_pointer_type) + <19cb> DW_AT_byte_size : 8 + <19cc> DW_AT_type : <0x192f> + <1><19d0>: Abbrev Number: 7 (DW_TAG_pointer_type) + <19d1> DW_AT_byte_size : 8 + <19d2> DW_AT_type : <0x195b> + <1><19d6>: Abbrev Number: 14 (DW_TAG_typedef) + <19d7> DW_AT_name : (indirect string, offset: 0x123f): cookie_io_functions_t + <19db> DW_AT_decl_file : 8 + <19dc> DW_AT_decl_line : 457 + <19de> DW_AT_decl_column : 3 + <19df> DW_AT_type : <0x1977> + <1><19e3>: Abbrev Number: 12 (DW_TAG_structure_type) + <19e4> DW_AT_name : (indirect string, offset: 0x12e2): file_struct + <19e8> DW_AT_byte_size : 192 + <19e9> DW_AT_decl_file : 8 + <19ea> DW_AT_decl_line : 526 + <19ec> DW_AT_decl_column : 8 + <19ed> DW_AT_sibling : <0x1aa8> + <2><19f1>: Abbrev Number: 13 (DW_TAG_member) + <19f2> DW_AT_name : (indirect string, offset: 0x13dc): fs_next + <19f6> DW_AT_decl_file : 8 + <19f7> DW_AT_decl_line : 528 + <19f9> DW_AT_decl_column : 27 + <19fa> DW_AT_type : <0x1aa8> + <19fe> DW_AT_data_member_location: 0 + <2><19ff>: Abbrev Number: 13 (DW_TAG_member) + <1a00> DW_AT_name : (indirect string, offset: 0x1443): fs_lock + <1a04> DW_AT_decl_file : 8 + <1a05> DW_AT_decl_line : 529 + <1a07> DW_AT_decl_column : 27 + <1a08> DW_AT_type : <0x18c2> + <1a0c> DW_AT_data_member_location: 8 + <2><1a0d>: Abbrev Number: 13 (DW_TAG_member) + <1a0e> DW_AT_name : (indirect string, offset: 0x13ef): fs_iofunc + <1a12> DW_AT_decl_file : 8 + <1a13> DW_AT_decl_line : 530 + <1a15> DW_AT_decl_column : 27 + <1a16> DW_AT_type : <0x19d6> + <1a1a> DW_AT_data_member_location: 48 + <2><1a1b>: Abbrev Number: 13 (DW_TAG_member) + <1a1c> DW_AT_name : (indirect string, offset: 0x1420): fs_cookie + <1a20> DW_AT_decl_file : 8 + <1a21> DW_AT_decl_line : 531 + <1a23> DW_AT_decl_column : 27 + <1a24> DW_AT_type : <0x1774> + <1a28> DW_AT_data_member_location: 80 + <2><1a29>: Abbrev Number: 13 (DW_TAG_member) + <1a2a> DW_AT_name : (indirect string, offset: 0x1456): fs_bufstart + <1a2e> DW_AT_decl_file : 8 + <1a2f> DW_AT_decl_line : 533 + <1a31> DW_AT_decl_column : 27 + <1a32> DW_AT_type : <0x1776> + <1a36> DW_AT_data_member_location: 88 + <2><1a37>: Abbrev Number: 13 (DW_TAG_member) + <1a38> DW_AT_name : (indirect string, offset: 0x1228): fs_bufend + <1a3c> DW_AT_decl_file : 8 + <1a3d> DW_AT_decl_line : 534 + <1a3f> DW_AT_decl_column : 27 + <1a40> DW_AT_type : <0x1776> + <1a44> DW_AT_data_member_location: 96 + <2><1a45>: Abbrev Number: 13 (DW_TAG_member) + <1a46> DW_AT_name : (indirect string, offset: 0x126c): fs_bufpos + <1a4a> DW_AT_decl_file : 8 + <1a4b> DW_AT_decl_line : 535 + <1a4d> DW_AT_decl_column : 27 + <1a4e> DW_AT_type : <0x1776> + <1a52> DW_AT_data_member_location: 104 + <2><1a53>: Abbrev Number: 13 (DW_TAG_member) + <1a54> DW_AT_name : (indirect string, offset: 0x1261): fs_bufread + <1a58> DW_AT_decl_file : 8 + <1a59> DW_AT_decl_line : 536 + <1a5b> DW_AT_decl_column : 27 + <1a5c> DW_AT_type : <0x1776> + <1a60> DW_AT_data_member_location: 112 + <2><1a61>: Abbrev Number: 13 (DW_TAG_member) + <1a62> DW_AT_name : (indirect string, offset: 0x1410): fs_buffer + <1a66> DW_AT_decl_file : 8 + <1a67> DW_AT_decl_line : 538 + <1a69> DW_AT_decl_column : 27 + <1a6a> DW_AT_type : <0x1aae> + <1a6e> DW_AT_data_member_location: 120 + <2><1a6f>: Abbrev Number: 13 (DW_TAG_member) + <1a70> DW_AT_name : (indirect string, offset: 0x138d): fs_oflags + <1a74> DW_AT_decl_file : 8 + <1a75> DW_AT_decl_line : 541 + <1a77> DW_AT_decl_column : 27 + <1a78> DW_AT_type : <0x1720> + <1a7c> DW_AT_data_member_location: 184 + <2><1a7d>: Abbrev Number: 13 (DW_TAG_member) + <1a7e> DW_AT_name : (indirect string, offset: 0x1486): fs_flags + <1a82> DW_AT_decl_file : 8 + <1a83> DW_AT_decl_line : 542 + <1a85> DW_AT_decl_column : 27 + <1a86> DW_AT_type : <0x1703> + <1a8a> DW_AT_data_member_location: 186 + <2><1a8b>: Abbrev Number: 13 (DW_TAG_member) + <1a8c> DW_AT_name : (indirect string, offset: 0x146c): fs_nungotten + <1a90> DW_AT_decl_file : 8 + <1a91> DW_AT_decl_line : 544 + <1a93> DW_AT_decl_column : 27 + <1a94> DW_AT_type : <0x1703> + <1a98> DW_AT_data_member_location: 187 + <2><1a99>: Abbrev Number: 13 (DW_TAG_member) + <1a9a> DW_AT_name : (indirect string, offset: 0x10cd): fs_ungotten + <1a9e> DW_AT_decl_file : 8 + <1a9f> DW_AT_decl_line : 545 + <1aa1> DW_AT_decl_column : 27 + <1aa2> DW_AT_type : <0x1abe> + <1aa6> DW_AT_data_member_location: 188 + <2><1aa7>: Abbrev Number: 0 + <1><1aa8>: Abbrev Number: 7 (DW_TAG_pointer_type) + <1aa9> DW_AT_byte_size : 8 + <1aaa> DW_AT_type : <0x19e3> + <1><1aae>: Abbrev Number: 20 (DW_TAG_array_type) + <1aaf> DW_AT_type : <0x177c> + <1ab3> DW_AT_sibling : <0x1abe> + <2><1ab7>: Abbrev Number: 21 (DW_TAG_subrange_type) + <1ab8> DW_AT_type : <0x16dd> + <1abc> DW_AT_upper_bound : 63 + <2><1abd>: Abbrev Number: 0 + <1><1abe>: Abbrev Number: 20 (DW_TAG_array_type) + <1abf> DW_AT_type : <0x177c> + <1ac3> DW_AT_sibling : <0x1ace> + <2><1ac7>: Abbrev Number: 21 (DW_TAG_subrange_type) + <1ac8> DW_AT_type : <0x16dd> + <1acc> DW_AT_upper_bound : 1 + <2><1acd>: Abbrev Number: 0 + <1><1ace>: Abbrev Number: 3 (DW_TAG_typedef) + <1acf> DW_AT_name : (indirect string, offset: 0x1282): FILE + <1ad3> DW_AT_decl_file : 9 + <1ad4> DW_AT_decl_line : 112 + <1ad5> DW_AT_decl_column : 28 + <1ad6> DW_AT_type : <0x19e3> + <1><1ada>: Abbrev Number: 7 (DW_TAG_pointer_type) + <1adb> DW_AT_byte_size : 8 + <1adc> DW_AT_type : <0x1ace> + <1><1ae0>: Abbrev Number: 22 (DW_TAG_subprogram) + <1ae1> DW_AT_external : 1 + <1ae1> DW_AT_name : (indirect string, offset: 0x10e2): lib_rdflush_unlocked + <1ae5> DW_AT_decl_file : 1 + <1ae6> DW_AT_decl_line : 49 + <1ae7> DW_AT_decl_column : 5 + <1ae8> DW_AT_prototyped : 1 + <1ae8> DW_AT_type : <0x16c8> + <1aec> DW_AT_low_pc : 0x304 + <1af4> DW_AT_high_pc : 0x60 + <1afc> DW_AT_frame_base : 1 byte block: 9c (DW_OP_call_frame_cfa) + <1afe> DW_AT_GNU_all_call_sites: 1 + <1afe> DW_AT_sibling : <0x1b6f> + <2><1b02>: Abbrev Number: 23 (DW_TAG_formal_parameter) + <1b03> DW_AT_name : (indirect string, offset: 0x12ee): stream + <1b07> DW_AT_decl_file : 1 + <1b08> DW_AT_decl_line : 49 + <1b09> DW_AT_decl_column : 36 + <1b0a> DW_AT_type : <0x1ada> + <1b0e> DW_AT_location : 0xb80 (location list) + <2><1b12>: Abbrev Number: 24 (DW_TAG_variable) + <1b13> DW_AT_name : ret + <1b17> DW_AT_decl_file : 1 + <1b18> DW_AT_decl_line : 51 + <1b19> DW_AT_decl_column : 7 + <1b1a> DW_AT_type : <0x16c8> + <1b1e> DW_AT_location : 0xc1e (location list) + <2><1b22>: Abbrev Number: 25 (DW_TAG_lexical_block) + <1b23> DW_AT_ranges : 0xd0 + <1b27> DW_AT_sibling : <0x1b61> + <3><1b2b>: Abbrev Number: 26 (DW_TAG_variable) + <1b2c> DW_AT_name : (indirect string, offset: 0x114f): rdoffset + <1b30> DW_AT_decl_file : 1 + <1b31> DW_AT_decl_line : 80 + <1b32> DW_AT_decl_column : 13 + <1b33> DW_AT_type : <0x1768> + <1b37> DW_AT_location : 2 byte block: 91 6c (DW_OP_fbreg: -20) + <3><1b3a>: Abbrev Number: 27 (DW_TAG_GNU_call_site) + <1b3b> DW_AT_low_pc : 0x34a + <1b43> DW_AT_sibling : <0x1b53> + <4><1b47>: Abbrev Number: 28 (DW_TAG_GNU_call_site_parameter) + <1b48> DW_AT_location : 1 byte block: 5b (DW_OP_reg11 (a1)) + <1b4a> DW_AT_GNU_call_site_value: 2 byte block: 91 6c (DW_OP_fbreg: -20) + <4><1b4d>: Abbrev Number: 28 (DW_TAG_GNU_call_site_parameter) + <1b4e> DW_AT_location : 1 byte block: 5c (DW_OP_reg12 (a2)) + <1b50> DW_AT_GNU_call_site_value: 1 byte block: 31 (DW_OP_lit1) + <4><1b52>: Abbrev Number: 0 + <3><1b53>: Abbrev Number: 29 (DW_TAG_GNU_call_site) + <1b54> DW_AT_low_pc : 0x362 + <1b5c> DW_AT_abstract_origin: <0x1b6f> + <3><1b60>: Abbrev Number: 0 + <2><1b61>: Abbrev Number: 29 (DW_TAG_GNU_call_site) + <1b62> DW_AT_low_pc : 0x312 + <1b6a> DW_AT_abstract_origin: <0x1b7c> + <2><1b6e>: Abbrev Number: 0 + <1><1b6f>: Abbrev Number: 30 (DW_TAG_subprogram) + <1b70> DW_AT_external : 1 + <1b70> DW_AT_declaration : 1 + <1b70> DW_AT_linkage_name: (indirect string, offset: 0x12f5): lseek + <1b74> DW_AT_name : (indirect string, offset: 0x12f5): lseek + <1b78> DW_AT_decl_file : 10 + <1b79> DW_AT_decl_line : 333 + <1b7b> DW_AT_decl_column : 9 + <1><1b7c>: Abbrev Number: 30 (DW_TAG_subprogram) + <1b7d> DW_AT_external : 1 + <1b7d> DW_AT_declaration : 1 + <1b7d> DW_AT_linkage_name: (indirect string, offset: 0x149a): __errno + <1b81> DW_AT_name : (indirect string, offset: 0x149a): __errno + <1b85> DW_AT_decl_file : 11 + <1b86> DW_AT_decl_line : 364 + <1b88> DW_AT_decl_column : 10 + <1><1b89>: Abbrev Number: 0 + Compilation Unit @ offset 0x1b8a: + Length: 0x696 (32-bit) + Version: 4 + Abbrev Offset: 0x880 + Pointer Size: 8 + <0><1b95>: Abbrev Number: 1 (DW_TAG_compile_unit) + <1b96> DW_AT_producer : (indirect string, offset: 0x1552): GNU C17 10.2.0 -mcmodel=medany -march=rv64imafdc -mabi=lp64d -march=rv64imafdc -g -Os -fno-common -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections + <1b9a> DW_AT_language : 12 (ANSI C99) + <1b9b> DW_AT_name : (indirect string, offset: 0x1897): stdio/lib_fputs.c + <1b9f> DW_AT_comp_dir : (indirect string, offset: 0x1671): /Users/Luppy/ox64/nuttx/libs/libc + <1ba3> DW_AT_ranges : 0x180 + <1ba7> DW_AT_low_pc : 0x0 + <1baf> DW_AT_stmt_list : 0x102d + <1><1bb3>: Abbrev Number: 2 (DW_TAG_base_type) + <1bb4> DW_AT_byte_size : 1 + <1bb5> DW_AT_encoding : 6 (signed char) + <1bb6> DW_AT_name : (indirect string, offset: 0x1736): signed char + <1><1bba>: Abbrev Number: 3 (DW_TAG_typedef) + <1bbb> DW_AT_name : (indirect string, offset: 0x14d2): _uint8_t + <1bbf> DW_AT_decl_file : 2 + <1bc0> DW_AT_decl_line : 52 + <1bc1> DW_AT_decl_column : 28 + <1bc2> DW_AT_type : <0x1bc6> + <1><1bc6>: Abbrev Number: 2 (DW_TAG_base_type) + <1bc7> DW_AT_byte_size : 1 + <1bc8> DW_AT_encoding : 8 (unsigned char) + <1bc9> DW_AT_name : (indirect string, offset: 0x1702): unsigned char + <1><1bcd>: Abbrev Number: 3 (DW_TAG_typedef) + <1bce> DW_AT_name : (indirect string, offset: 0x1710): _int16_t + <1bd2> DW_AT_decl_file : 2 + <1bd3> DW_AT_decl_line : 54 + <1bd4> DW_AT_decl_column : 28 + <1bd5> DW_AT_type : <0x1bd9> + <1><1bd9>: Abbrev Number: 2 (DW_TAG_base_type) + <1bda> DW_AT_byte_size : 2 + <1bdb> DW_AT_encoding : 5 (signed) + <1bdc> DW_AT_name : (indirect string, offset: 0x1548): short int + <1><1be0>: Abbrev Number: 3 (DW_TAG_typedef) + <1be1> DW_AT_name : (indirect string, offset: 0x1867): _uint16_t + <1be5> DW_AT_decl_file : 2 + <1be6> DW_AT_decl_line : 55 + <1be7> DW_AT_decl_column : 28 + <1be8> DW_AT_type : <0x1bec> + <1><1bec>: Abbrev Number: 2 (DW_TAG_base_type) + <1bed> DW_AT_byte_size : 2 + <1bee> DW_AT_encoding : 7 (unsigned) + <1bef> DW_AT_name : (indirect string, offset: 0x178f): short unsigned int + <1><1bf3>: Abbrev Number: 3 (DW_TAG_typedef) + <1bf4> DW_AT_name : (indirect string, offset: 0x16ef): _int32_t + <1bf8> DW_AT_decl_file : 2 + <1bf9> DW_AT_decl_line : 58 + <1bfa> DW_AT_decl_column : 28 + <1bfb> DW_AT_type : <0x1bff> + <1><1bff>: Abbrev Number: 4 (DW_TAG_base_type) + <1c00> DW_AT_byte_size : 4 + <1c01> DW_AT_encoding : 5 (signed) + <1c02> DW_AT_name : int + <1><1c06>: Abbrev Number: 2 (DW_TAG_base_type) + <1c07> DW_AT_byte_size : 4 + <1c08> DW_AT_encoding : 7 (unsigned) + <1c09> DW_AT_name : (indirect string, offset: 0x187e): unsigned int + <1><1c0d>: Abbrev Number: 2 (DW_TAG_base_type) + <1c0e> DW_AT_byte_size : 8 + <1c0f> DW_AT_encoding : 5 (signed) + <1c10> DW_AT_name : (indirect string, offset: 0x17af): long int + <1><1c14>: Abbrev Number: 2 (DW_TAG_base_type) + <1c15> DW_AT_byte_size : 8 + <1c16> DW_AT_encoding : 7 (unsigned) + <1c17> DW_AT_name : (indirect string, offset: 0x176d): long unsigned int + <1><1c1b>: Abbrev Number: 3 (DW_TAG_typedef) + <1c1c> DW_AT_name : (indirect string, offset: 0x18c6): _ssize_t + <1c20> DW_AT_decl_file : 2 + <1c21> DW_AT_decl_line : 91 + <1c22> DW_AT_decl_column : 28 + <1c23> DW_AT_type : <0x1c0d> + <1><1c27>: Abbrev Number: 3 (DW_TAG_typedef) + <1c28> DW_AT_name : (indirect string, offset: 0x1517): _size_t + <1c2c> DW_AT_decl_file : 2 + <1c2d> DW_AT_decl_line : 93 + <1c2e> DW_AT_decl_column : 28 + <1c2f> DW_AT_type : <0x1c14> + <1><1c33>: Abbrev Number: 2 (DW_TAG_base_type) + <1c34> DW_AT_byte_size : 8 + <1c35> DW_AT_encoding : 7 (unsigned) + <1c36> DW_AT_name : (indirect string, offset: 0x1748): long long unsigned int + <1><1c3a>: Abbrev Number: 3 (DW_TAG_typedef) + <1c3b> DW_AT_name : (indirect string, offset: 0x1611): uint8_t + <1c3f> DW_AT_decl_file : 3 + <1c40> DW_AT_decl_line : 166 + <1c41> DW_AT_decl_column : 29 + <1c42> DW_AT_type : <0x1bba> + <1><1c46>: Abbrev Number: 3 (DW_TAG_typedef) + <1c47> DW_AT_name : (indirect string, offset: 0x17c7): int16_t + <1c4b> DW_AT_decl_file : 3 + <1c4c> DW_AT_decl_line : 168 + <1c4d> DW_AT_decl_column : 29 + <1c4e> DW_AT_type : <0x1bcd> + <1><1c52>: Abbrev Number: 5 (DW_TAG_volatile_type) + <1c53> DW_AT_type : <0x1c46> + <1><1c57>: Abbrev Number: 3 (DW_TAG_typedef) + <1c58> DW_AT_name : (indirect string, offset: 0x1764): uint16_t + <1c5c> DW_AT_decl_file : 3 + <1c5d> DW_AT_decl_line : 169 + <1c5e> DW_AT_decl_column : 29 + <1c5f> DW_AT_type : <0x1be0> + <1><1c63>: Abbrev Number: 3 (DW_TAG_typedef) + <1c64> DW_AT_name : (indirect string, offset: 0x17bf): int32_t + <1c68> DW_AT_decl_file : 3 + <1c69> DW_AT_decl_line : 176 + <1c6a> DW_AT_decl_column : 29 + <1c6b> DW_AT_type : <0x1bf3> + <1><1c6f>: Abbrev Number: 3 (DW_TAG_typedef) + <1c70> DW_AT_name : (indirect string, offset: 0x14ef): size_t + <1c74> DW_AT_decl_file : 4 + <1c75> DW_AT_decl_line : 133 + <1c76> DW_AT_decl_column : 22 + <1c77> DW_AT_type : <0x1c27> + <1><1c7b>: Abbrev Number: 3 (DW_TAG_typedef) + <1c7c> DW_AT_name : (indirect string, offset: 0x1540): ssize_t + <1c80> DW_AT_decl_file : 4 + <1c81> DW_AT_decl_line : 134 + <1c82> DW_AT_decl_column : 22 + <1c83> DW_AT_type : <0x1c1b> + <1><1c87>: Abbrev Number: 3 (DW_TAG_typedef) + <1c88> DW_AT_name : (indirect string, offset: 0x1828): pid_t + <1c8c> DW_AT_decl_file : 4 + <1c8d> DW_AT_decl_line : 162 + <1c8e> DW_AT_decl_column : 22 + <1c8f> DW_AT_type : <0x1bff> + <1><1c93>: Abbrev Number: 3 (DW_TAG_typedef) + <1c94> DW_AT_name : (indirect string, offset: 0x16cc): off_t + <1c98> DW_AT_decl_file : 4 + <1c99> DW_AT_decl_line : 229 + <1c9a> DW_AT_decl_column : 22 + <1c9b> DW_AT_type : <0x1c63> + <1><1c9f>: Abbrev Number: 6 (DW_TAG_pointer_type) + <1ca0> DW_AT_byte_size : 8 + <1><1ca1>: Abbrev Number: 7 (DW_TAG_pointer_type) + <1ca2> DW_AT_byte_size : 8 + <1ca3> DW_AT_type : <0x1ca7> + <1><1ca7>: Abbrev Number: 2 (DW_TAG_base_type) + <1ca8> DW_AT_byte_size : 1 + <1ca9> DW_AT_encoding : 8 (unsigned char) + <1caa> DW_AT_name : (indirect string, offset: 0x17a2): char + <1><1cae>: Abbrev Number: 8 (DW_TAG_const_type) + <1caf> DW_AT_type : <0x1ca7> + <1><1cb3>: Abbrev Number: 7 (DW_TAG_pointer_type) + <1cb4> DW_AT_byte_size : 8 + <1cb5> DW_AT_type : <0x1cae> + <1><1cb9>: Abbrev Number: 9 (DW_TAG_structure_type) + <1cba> DW_AT_name : (indirect string, offset: 0x16d8): dq_entry_s + <1cbe> DW_AT_byte_size : 16 + <1cbf> DW_AT_decl_file : 5 + <1cc0> DW_AT_decl_line : 303 + <1cc2> DW_AT_decl_column : 8 + <1cc3> DW_AT_sibling : <0x1ce4> + <2><1cc7>: Abbrev Number: 10 (DW_TAG_member) + <1cc8> DW_AT_name : (indirect string, offset: 0x16d2): flink + <1ccc> DW_AT_decl_file : 5 + <1ccd> DW_AT_decl_line : 305 + <1ccf> DW_AT_decl_column : 26 + <1cd0> DW_AT_type : <0x1ce4> + <1cd4> DW_AT_data_member_location: 0 + <2><1cd5>: Abbrev Number: 10 (DW_TAG_member) + <1cd6> DW_AT_name : (indirect string, offset: 0x14ba): blink + <1cda> DW_AT_decl_file : 5 + <1cdb> DW_AT_decl_line : 306 + <1cdd> DW_AT_decl_column : 26 + <1cde> DW_AT_type : <0x1ce4> + <1ce2> DW_AT_data_member_location: 8 + <2><1ce3>: Abbrev Number: 0 + <1><1ce4>: Abbrev Number: 7 (DW_TAG_pointer_type) + <1ce5> DW_AT_byte_size : 8 + <1ce6> DW_AT_type : <0x1cb9> + <1><1cea>: Abbrev Number: 11 (DW_TAG_typedef) + <1ceb> DW_AT_name : (indirect string, offset: 0x17dd): dq_entry_t + <1cef> DW_AT_decl_file : 5 + <1cf0> DW_AT_decl_line : 308 + <1cf2> DW_AT_decl_column : 27 + <1cf3> DW_AT_type : <0x1cb9> + <1><1cf7>: Abbrev Number: 9 (DW_TAG_structure_type) + <1cf8> DW_AT_name : (indirect string, offset: 0x18a9): dq_queue_s + <1cfc> DW_AT_byte_size : 16 + <1cfd> DW_AT_decl_file : 5 + <1cfe> DW_AT_decl_line : 317 + <1d00> DW_AT_decl_column : 8 + <1d01> DW_AT_sibling : <0x1d22> + <2><1d05>: Abbrev Number: 10 (DW_TAG_member) + <1d06> DW_AT_name : (indirect string, offset: 0x160c): head + <1d0a> DW_AT_decl_file : 5 + <1d0b> DW_AT_decl_line : 319 + <1d0d> DW_AT_decl_column : 19 + <1d0e> DW_AT_type : <0x1d22> + <1d12> DW_AT_data_member_location: 0 + <2><1d13>: Abbrev Number: 10 (DW_TAG_member) + <1d14> DW_AT_name : (indirect string, offset: 0x175f): tail + <1d18> DW_AT_decl_file : 5 + <1d19> DW_AT_decl_line : 320 + <1d1b> DW_AT_decl_column : 19 + <1d1c> DW_AT_type : <0x1d22> + <1d20> DW_AT_data_member_location: 8 + <2><1d21>: Abbrev Number: 0 + <1><1d22>: Abbrev Number: 7 (DW_TAG_pointer_type) + <1d23> DW_AT_byte_size : 8 + <1d24> DW_AT_type : <0x1cea> + <1><1d28>: Abbrev Number: 11 (DW_TAG_typedef) + <1d29> DW_AT_name : (indirect string, offset: 0x1857): dq_queue_t + <1d2d> DW_AT_decl_file : 5 + <1d2e> DW_AT_decl_line : 322 + <1d30> DW_AT_decl_column : 27 + <1d31> DW_AT_type : <0x1cf7> + <1><1d35>: Abbrev Number: 12 (DW_TAG_structure_type) + <1d36> DW_AT_name : (indirect string, offset: 0x162f): sem_s + <1d3a> DW_AT_byte_size : 24 + <1d3b> DW_AT_decl_file : 6 + <1d3c> DW_AT_decl_line : 99 + <1d3d> DW_AT_decl_column : 8 + <1d3e> DW_AT_sibling : <0x1d6a> + <2><1d42>: Abbrev Number: 13 (DW_TAG_member) + <1d43> DW_AT_name : (indirect string, offset: 0x1719): semcount + <1d47> DW_AT_decl_file : 6 + <1d48> DW_AT_decl_line : 101 + <1d49> DW_AT_decl_column : 20 + <1d4a> DW_AT_type : <0x1c52> + <1d4e> DW_AT_data_member_location: 0 + <2><1d4f>: Abbrev Number: 13 (DW_TAG_member) + <1d50> DW_AT_name : (indirect string, offset: 0x1742): flags + <1d54> DW_AT_decl_file : 6 + <1d55> DW_AT_decl_line : 108 + <1d56> DW_AT_decl_column : 11 + <1d57> DW_AT_type : <0x1c3a> + <1d5b> DW_AT_data_member_location: 2 + <2><1d5c>: Abbrev Number: 13 (DW_TAG_member) + <1d5d> DW_AT_name : (indirect string, offset: 0x151f): waitlist + <1d61> DW_AT_decl_file : 6 + <1d62> DW_AT_decl_line : 110 + <1d63> DW_AT_decl_column : 14 + <1d64> DW_AT_type : <0x1d28> + <1d68> DW_AT_data_member_location: 8 + <2><1d69>: Abbrev Number: 0 + <1><1d6a>: Abbrev Number: 3 (DW_TAG_typedef) + <1d6b> DW_AT_name : (indirect string, offset: 0x1635): sem_t + <1d6f> DW_AT_decl_file : 6 + <1d70> DW_AT_decl_line : 121 + <1d71> DW_AT_decl_column : 22 + <1d72> DW_AT_type : <0x1d35> + <1><1d76>: Abbrev Number: 12 (DW_TAG_structure_type) + <1d77> DW_AT_name : (indirect string, offset: 0x17a7): mutex_s + <1d7b> DW_AT_byte_size : 32 + <1d7c> DW_AT_decl_file : 7 + <1d7d> DW_AT_decl_line : 46 + <1d7e> DW_AT_decl_column : 8 + <1d7f> DW_AT_sibling : <0x1d9e> + <2><1d83>: Abbrev Number: 14 (DW_TAG_member) + <1d84> DW_AT_name : sem + <1d88> DW_AT_decl_file : 7 + <1d89> DW_AT_decl_line : 48 + <1d8a> DW_AT_decl_column : 9 + <1d8b> DW_AT_type : <0x1d6a> + <1d8f> DW_AT_data_member_location: 0 + <2><1d90>: Abbrev Number: 13 (DW_TAG_member) + <1d91> DW_AT_name : (indirect string, offset: 0x1693): holder + <1d95> DW_AT_decl_file : 7 + <1d96> DW_AT_decl_line : 49 + <1d97> DW_AT_decl_column : 9 + <1d98> DW_AT_type : <0x1c87> + <1d9c> DW_AT_data_member_location: 24 + <2><1d9d>: Abbrev Number: 0 + <1><1d9e>: Abbrev Number: 3 (DW_TAG_typedef) + <1d9f> DW_AT_name : (indirect string, offset: 0x16b1): mutex_t + <1da3> DW_AT_decl_file : 7 + <1da4> DW_AT_decl_line : 52 + <1da5> DW_AT_decl_column : 24 + <1da6> DW_AT_type : <0x1d76> + <1><1daa>: Abbrev Number: 12 (DW_TAG_structure_type) + <1dab> DW_AT_name : (indirect string, offset: 0x18b4): rmutex_s + <1daf> DW_AT_byte_size : 40 + <1db0> DW_AT_decl_file : 7 + <1db1> DW_AT_decl_line : 54 + <1db2> DW_AT_decl_column : 8 + <1db3> DW_AT_sibling : <0x1dd2> + <2><1db7>: Abbrev Number: 13 (DW_TAG_member) + <1db8> DW_AT_name : (indirect string, offset: 0x1789): mutex + <1dbc> DW_AT_decl_file : 7 + <1dbd> DW_AT_decl_line : 56 + <1dbe> DW_AT_decl_column : 11 + <1dbf> DW_AT_type : <0x1d9e> + <1dc3> DW_AT_data_member_location: 0 + <2><1dc4>: Abbrev Number: 13 (DW_TAG_member) + <1dc5> DW_AT_name : (indirect string, offset: 0x1838): count + <1dc9> DW_AT_decl_file : 7 + <1dca> DW_AT_decl_line : 57 + <1dcb> DW_AT_decl_column : 16 + <1dcc> DW_AT_type : <0x1c06> + <1dd0> DW_AT_data_member_location: 32 + <2><1dd1>: Abbrev Number: 0 + <1><1dd2>: Abbrev Number: 3 (DW_TAG_typedef) + <1dd3> DW_AT_name : (indirect string, offset: 0x18bd): rmutex_t + <1dd7> DW_AT_decl_file : 7 + <1dd8> DW_AT_decl_line : 60 + <1dd9> DW_AT_decl_column : 25 + <1dda> DW_AT_type : <0x1daa> + <1><1dde>: Abbrev Number: 2 (DW_TAG_base_type) + <1ddf> DW_AT_byte_size : 8 + <1de0> DW_AT_encoding : 5 (signed) + <1de1> DW_AT_name : (indirect string, offset: 0x1663): long long int + <1><1de5>: Abbrev Number: 2 (DW_TAG_base_type) + <1de6> DW_AT_byte_size : 16 + <1de7> DW_AT_encoding : 4 (float) + <1de8> DW_AT_name : (indirect string, offset: 0x16e3): long double + <1><1dec>: Abbrev Number: 2 (DW_TAG_base_type) + <1ded> DW_AT_byte_size : 1 + <1dee> DW_AT_encoding : 2 (boolean) + <1def> DW_AT_name : (indirect string, offset: 0x17cf): _Bool + <1><1df3>: Abbrev Number: 11 (DW_TAG_typedef) + <1df4> DW_AT_name : (indirect string, offset: 0x169a): cookie_read_function_t + <1df8> DW_AT_decl_file : 8 + <1df9> DW_AT_decl_line : 441 + <1dfb> DW_AT_decl_column : 22 + <1dfc> DW_AT_type : <0x1e00> + <1><1e00>: Abbrev Number: 15 (DW_TAG_subroutine_type) + <1e01> DW_AT_prototyped : 1 + <1e01> DW_AT_type : <0x1c7b> + <1e05> DW_AT_sibling : <0x1e19> + <2><1e09>: Abbrev Number: 16 (DW_TAG_formal_parameter) + <1e0a> DW_AT_type : <0x1c9f> + <2><1e0e>: Abbrev Number: 16 (DW_TAG_formal_parameter) + <1e0f> DW_AT_type : <0x1ca1> + <2><1e13>: Abbrev Number: 16 (DW_TAG_formal_parameter) + <1e14> DW_AT_type : <0x1c6f> + <2><1e18>: Abbrev Number: 0 + <1><1e19>: Abbrev Number: 11 (DW_TAG_typedef) + <1e1a> DW_AT_name : (indirect string, offset: 0x14ff): cookie_write_function_t + <1e1e> DW_AT_decl_file : 8 + <1e1f> DW_AT_decl_line : 443 + <1e21> DW_AT_decl_column : 22 + <1e22> DW_AT_type : <0x1e26> + <1><1e26>: Abbrev Number: 15 (DW_TAG_subroutine_type) + <1e27> DW_AT_prototyped : 1 + <1e27> DW_AT_type : <0x1c7b> + <1e2b> DW_AT_sibling : <0x1e3f> + <2><1e2f>: Abbrev Number: 16 (DW_TAG_formal_parameter) + <1e30> DW_AT_type : <0x1c9f> + <2><1e34>: Abbrev Number: 16 (DW_TAG_formal_parameter) + <1e35> DW_AT_type : <0x1cb3> + <2><1e39>: Abbrev Number: 16 (DW_TAG_formal_parameter) + <1e3a> DW_AT_type : <0x1c6f> + <2><1e3e>: Abbrev Number: 0 + <1><1e3f>: Abbrev Number: 11 (DW_TAG_typedef) + <1e40> DW_AT_name : (indirect string, offset: 0x1807): cookie_seek_function_t + <1e44> DW_AT_decl_file : 8 + <1e45> DW_AT_decl_line : 446 + <1e47> DW_AT_decl_column : 20 + <1e48> DW_AT_type : <0x1e4c> + <1><1e4c>: Abbrev Number: 15 (DW_TAG_subroutine_type) + <1e4d> DW_AT_prototyped : 1 + <1e4d> DW_AT_type : <0x1c93> + <1e51> DW_AT_sibling : <0x1e65> + <2><1e55>: Abbrev Number: 16 (DW_TAG_formal_parameter) + <1e56> DW_AT_type : <0x1c9f> + <2><1e5a>: Abbrev Number: 16 (DW_TAG_formal_parameter) + <1e5b> DW_AT_type : <0x1e65> + <2><1e5f>: Abbrev Number: 16 (DW_TAG_formal_parameter) + <1e60> DW_AT_type : <0x1bff> + <2><1e64>: Abbrev Number: 0 + <1><1e65>: Abbrev Number: 7 (DW_TAG_pointer_type) + <1e66> DW_AT_byte_size : 8 + <1e67> DW_AT_type : <0x1c93> + <1><1e6b>: Abbrev Number: 11 (DW_TAG_typedef) + <1e6c> DW_AT_name : (indirect string, offset: 0x1528): cookie_close_function_t + <1e70> DW_AT_decl_file : 8 + <1e71> DW_AT_decl_line : 449 + <1e73> DW_AT_decl_column : 18 + <1e74> DW_AT_type : <0x1e78> + <1><1e78>: Abbrev Number: 15 (DW_TAG_subroutine_type) + <1e79> DW_AT_prototyped : 1 + <1e79> DW_AT_type : <0x1bff> + <1e7d> DW_AT_sibling : <0x1e87> + <2><1e81>: Abbrev Number: 16 (DW_TAG_formal_parameter) + <1e82> DW_AT_type : <0x1c9f> + <2><1e86>: Abbrev Number: 0 + <1><1e87>: Abbrev Number: 9 (DW_TAG_structure_type) + <1e88> DW_AT_name : (indirect string, offset: 0x1619): cookie_io_functions_t + <1e8c> DW_AT_byte_size : 32 + <1e8d> DW_AT_decl_file : 8 + <1e8e> DW_AT_decl_line : 451 + <1e90> DW_AT_decl_column : 16 + <1e91> DW_AT_sibling : <0x1ece> + <2><1e95>: Abbrev Number: 10 (DW_TAG_member) + <1e96> DW_AT_name : (indirect string, offset: 0x165e): read + <1e9a> DW_AT_decl_file : 8 + <1e9b> DW_AT_decl_line : 453 + <1e9d> DW_AT_decl_column : 31 + <1e9e> DW_AT_type : <0x1ece> + <1ea2> DW_AT_data_member_location: 0 + <2><1ea3>: Abbrev Number: 10 (DW_TAG_member) + <1ea4> DW_AT_name : (indirect string, offset: 0x14c0): write + <1ea8> DW_AT_decl_file : 8 + <1ea9> DW_AT_decl_line : 454 + <1eab> DW_AT_decl_column : 32 + <1eac> DW_AT_type : <0x1ed4> + <1eb0> DW_AT_data_member_location: 8 + <2><1eb1>: Abbrev Number: 10 (DW_TAG_member) + <1eb2> DW_AT_name : (indirect string, offset: 0x184a): seek + <1eb6> DW_AT_decl_file : 8 + <1eb7> DW_AT_decl_line : 455 + <1eb9> DW_AT_decl_column : 31 + <1eba> DW_AT_type : <0x1eda> + <1ebe> DW_AT_data_member_location: 16 + <2><1ebf>: Abbrev Number: 10 (DW_TAG_member) + <1ec0> DW_AT_name : (indirect string, offset: 0x14b4): close + <1ec4> DW_AT_decl_file : 8 + <1ec5> DW_AT_decl_line : 456 + <1ec7> DW_AT_decl_column : 32 + <1ec8> DW_AT_type : <0x1ee0> + <1ecc> DW_AT_data_member_location: 24 + <2><1ecd>: Abbrev Number: 0 + <1><1ece>: Abbrev Number: 7 (DW_TAG_pointer_type) + <1ecf> DW_AT_byte_size : 8 + <1ed0> DW_AT_type : <0x1df3> + <1><1ed4>: Abbrev Number: 7 (DW_TAG_pointer_type) + <1ed5> DW_AT_byte_size : 8 + <1ed6> DW_AT_type : <0x1e19> + <1><1eda>: Abbrev Number: 7 (DW_TAG_pointer_type) + <1edb> DW_AT_byte_size : 8 + <1edc> DW_AT_type : <0x1e3f> + <1><1ee0>: Abbrev Number: 7 (DW_TAG_pointer_type) + <1ee1> DW_AT_byte_size : 8 + <1ee2> DW_AT_type : <0x1e6b> + <1><1ee6>: Abbrev Number: 11 (DW_TAG_typedef) + <1ee7> DW_AT_name : (indirect string, offset: 0x1619): cookie_io_functions_t + <1eeb> DW_AT_decl_file : 8 + <1eec> DW_AT_decl_line : 457 + <1eee> DW_AT_decl_column : 3 + <1eef> DW_AT_type : <0x1e87> + <1><1ef3>: Abbrev Number: 9 (DW_TAG_structure_type) + <1ef4> DW_AT_name : (indirect string, offset: 0x16b9): file_struct + <1ef8> DW_AT_byte_size : 192 + <1ef9> DW_AT_decl_file : 8 + <1efa> DW_AT_decl_line : 526 + <1efc> DW_AT_decl_column : 8 + <1efd> DW_AT_sibling : <0x1fb8> + <2><1f01>: Abbrev Number: 10 (DW_TAG_member) + <1f02> DW_AT_name : (indirect string, offset: 0x17d5): fs_next + <1f06> DW_AT_decl_file : 8 + <1f07> DW_AT_decl_line : 528 + <1f09> DW_AT_decl_column : 27 + <1f0a> DW_AT_type : <0x1fb8> + <1f0e> DW_AT_data_member_location: 0 + <2><1f0f>: Abbrev Number: 10 (DW_TAG_member) + <1f10> DW_AT_name : (indirect string, offset: 0x184f): fs_lock + <1f14> DW_AT_decl_file : 8 + <1f15> DW_AT_decl_line : 529 + <1f17> DW_AT_decl_column : 27 + <1f18> DW_AT_type : <0x1dd2> + <1f1c> DW_AT_data_member_location: 8 + <2><1f1d>: Abbrev Number: 10 (DW_TAG_member) + <1f1e> DW_AT_name : (indirect string, offset: 0x17e8): fs_iofunc + <1f22> DW_AT_decl_file : 8 + <1f23> DW_AT_decl_line : 530 + <1f25> DW_AT_decl_column : 27 + <1f26> DW_AT_type : <0x1ee6> + <1f2a> DW_AT_data_member_location: 48 + <2><1f2b>: Abbrev Number: 10 (DW_TAG_member) + <1f2c> DW_AT_name : (indirect string, offset: 0x182e): fs_cookie + <1f30> DW_AT_decl_file : 8 + <1f31> DW_AT_decl_line : 531 + <1f33> DW_AT_decl_column : 27 + <1f34> DW_AT_type : <0x1c9f> + <1f38> DW_AT_data_member_location: 80 + <2><1f39>: Abbrev Number: 10 (DW_TAG_member) + <1f3a> DW_AT_name : (indirect string, offset: 0x183e): fs_bufstart + <1f3e> DW_AT_decl_file : 8 + <1f3f> DW_AT_decl_line : 533 + <1f41> DW_AT_decl_column : 27 + <1f42> DW_AT_type : <0x1ca1> + <1f46> DW_AT_data_member_location: 88 + <2><1f47>: Abbrev Number: 10 (DW_TAG_member) + <1f48> DW_AT_name : (indirect string, offset: 0x1602): fs_bufend + <1f4c> DW_AT_decl_file : 8 + <1f4d> DW_AT_decl_line : 534 + <1f4f> DW_AT_decl_column : 27 + <1f50> DW_AT_type : <0x1ca1> + <1f54> DW_AT_data_member_location: 96 + <2><1f55>: Abbrev Number: 10 (DW_TAG_member) + <1f56> DW_AT_name : (indirect string, offset: 0x1646): fs_bufpos + <1f5a> DW_AT_decl_file : 8 + <1f5b> DW_AT_decl_line : 535 + <1f5d> DW_AT_decl_column : 27 + <1f5e> DW_AT_type : <0x1ca1> + <1f62> DW_AT_data_member_location: 104 + <2><1f63>: Abbrev Number: 10 (DW_TAG_member) + <1f64> DW_AT_name : (indirect string, offset: 0x163b): fs_bufread + <1f68> DW_AT_decl_file : 8 + <1f69> DW_AT_decl_line : 536 + <1f6b> DW_AT_decl_column : 27 + <1f6c> DW_AT_type : <0x1ca1> + <1f70> DW_AT_data_member_location: 112 + <2><1f71>: Abbrev Number: 10 (DW_TAG_member) + <1f72> DW_AT_name : (indirect string, offset: 0x181e): fs_buffer + <1f76> DW_AT_decl_file : 8 + <1f77> DW_AT_decl_line : 538 + <1f79> DW_AT_decl_column : 27 + <1f7a> DW_AT_type : <0x1fbe> + <1f7e> DW_AT_data_member_location: 120 + <2><1f7f>: Abbrev Number: 10 (DW_TAG_member) + <1f80> DW_AT_name : (indirect string, offset: 0x177f): fs_oflags + <1f84> DW_AT_decl_file : 8 + <1f85> DW_AT_decl_line : 541 + <1f87> DW_AT_decl_column : 27 + <1f88> DW_AT_type : <0x1c57> + <1f8c> DW_AT_data_member_location: 184 + <2><1f8d>: Abbrev Number: 10 (DW_TAG_member) + <1f8e> DW_AT_name : (indirect string, offset: 0x1650): fs_flags + <1f92> DW_AT_decl_file : 8 + <1f93> DW_AT_decl_line : 542 + <1f95> DW_AT_decl_column : 27 + <1f96> DW_AT_type : <0x1c3a> + <1f9a> DW_AT_data_member_location: 186 + <2><1f9b>: Abbrev Number: 10 (DW_TAG_member) + <1f9c> DW_AT_name : (indirect string, offset: 0x1871): fs_nungotten + <1fa0> DW_AT_decl_file : 8 + <1fa1> DW_AT_decl_line : 544 + <1fa3> DW_AT_decl_column : 27 + <1fa4> DW_AT_type : <0x1c3a> + <1fa8> DW_AT_data_member_location: 187 + <2><1fa9>: Abbrev Number: 10 (DW_TAG_member) + <1faa> DW_AT_name : (indirect string, offset: 0x14c6): fs_ungotten + <1fae> DW_AT_decl_file : 8 + <1faf> DW_AT_decl_line : 545 + <1fb1> DW_AT_decl_column : 27 + <1fb2> DW_AT_type : <0x1fce> + <1fb6> DW_AT_data_member_location: 188 + <2><1fb7>: Abbrev Number: 0 + <1><1fb8>: Abbrev Number: 7 (DW_TAG_pointer_type) + <1fb9> DW_AT_byte_size : 8 + <1fba> DW_AT_type : <0x1ef3> + <1><1fbe>: Abbrev Number: 17 (DW_TAG_array_type) + <1fbf> DW_AT_type : <0x1ca7> + <1fc3> DW_AT_sibling : <0x1fce> + <2><1fc7>: Abbrev Number: 18 (DW_TAG_subrange_type) + <1fc8> DW_AT_type : <0x1c14> + <1fcc> DW_AT_upper_bound : 63 + <2><1fcd>: Abbrev Number: 0 + <1><1fce>: Abbrev Number: 17 (DW_TAG_array_type) + <1fcf> DW_AT_type : <0x1ca7> + <1fd3> DW_AT_sibling : <0x1fde> + <2><1fd7>: Abbrev Number: 18 (DW_TAG_subrange_type) + <1fd8> DW_AT_type : <0x1c14> + <1fdc> DW_AT_upper_bound : 1 + <2><1fdd>: Abbrev Number: 0 + <1><1fde>: Abbrev Number: 3 (DW_TAG_typedef) + <1fdf> DW_AT_name : (indirect string, offset: 0x1659): FILE + <1fe3> DW_AT_decl_file : 9 + <1fe4> DW_AT_decl_line : 112 + <1fe5> DW_AT_decl_column : 28 + <1fe6> DW_AT_type : <0x1ef3> + <1><1fea>: Abbrev Number: 7 (DW_TAG_pointer_type) + <1feb> DW_AT_byte_size : 8 + <1fec> DW_AT_type : <0x1fde> + <1><1ff0>: Abbrev Number: 19 (DW_TAG_subprogram) + <1ff1> DW_AT_external : 1 + <1ff1> DW_AT_name : (indirect string, offset: 0x17f2): fputs + <1ff5> DW_AT_decl_file : 9 + <1ff6> DW_AT_decl_line : 159 + <1ff7> DW_AT_decl_column : 8 + <1ff8> DW_AT_prototyped : 1 + <1ff8> DW_AT_type : <0x1bff> + <1ffc> DW_AT_low_pc : 0x3f6 + <2004> DW_AT_high_pc : 0x3a + <200c> DW_AT_frame_base : 1 byte block: 9c (DW_OP_call_frame_cfa) + <200e> DW_AT_GNU_all_call_sites: 1 + <200e> DW_AT_sibling : <0x208b> + <2><2012>: Abbrev Number: 20 (DW_TAG_formal_parameter) + <2013> DW_AT_name : s + <2015> DW_AT_decl_file : 1 + <2016> DW_AT_decl_line : 146 + <2017> DW_AT_decl_column : 32 + <2018> DW_AT_type : <0x1cb3> + <201c> DW_AT_location : 0xc41 (location list) + <2><2020>: Abbrev Number: 21 (DW_TAG_formal_parameter) + <2021> DW_AT_name : (indirect string, offset: 0x16c5): stream + <2025> DW_AT_decl_file : 1 + <2026> DW_AT_decl_line : 146 + <2027> DW_AT_decl_column : 45 + <2028> DW_AT_type : <0x1fea> + <202c> DW_AT_location : 0xc8d (location list) + <2><2030>: Abbrev Number: 22 (DW_TAG_variable) + <2031> DW_AT_name : ret + <2035> DW_AT_decl_file : 1 + <2036> DW_AT_decl_line : 148 + <2037> DW_AT_decl_column : 7 + <2038> DW_AT_type : <0x1bff> + <203c> DW_AT_location : 0xcd9 (location list) + <2><2040>: Abbrev Number: 23 (DW_TAG_GNU_call_site) + <2041> DW_AT_low_pc : 0x40c + <2049> DW_AT_abstract_origin: <0x21e7> + <204d> DW_AT_sibling : <0x2058> + <3><2051>: Abbrev Number: 24 (DW_TAG_GNU_call_site_parameter) + <2052> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <2054> DW_AT_GNU_call_site_value: 2 byte block: 78 0 (DW_OP_breg8 (s0): 0) + <3><2057>: Abbrev Number: 0 + <2><2058>: Abbrev Number: 23 (DW_TAG_GNU_call_site) + <2059> DW_AT_low_pc : 0x418 + <2061> DW_AT_abstract_origin: <0x208b> + <2065> DW_AT_sibling : <0x2076> + <3><2069>: Abbrev Number: 24 (DW_TAG_GNU_call_site_parameter) + <206a> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <206c> DW_AT_GNU_call_site_value: 2 byte block: 79 0 (DW_OP_breg9 (s1): 0) + <3><206f>: Abbrev Number: 24 (DW_TAG_GNU_call_site_parameter) + <2070> DW_AT_location : 1 byte block: 5b (DW_OP_reg11 (a1)) + <2072> DW_AT_GNU_call_site_value: 2 byte block: 78 0 (DW_OP_breg8 (s0): 0) + <3><2075>: Abbrev Number: 0 + <2><2076>: Abbrev Number: 25 (DW_TAG_GNU_call_site) + <2077> DW_AT_low_pc : 0x424 + <207f> DW_AT_abstract_origin: <0x21f3> + <3><2083>: Abbrev Number: 24 (DW_TAG_GNU_call_site_parameter) + <2084> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <2086> DW_AT_GNU_call_site_value: 2 byte block: 78 0 (DW_OP_breg8 (s0): 0) + <3><2089>: Abbrev Number: 0 + <2><208a>: Abbrev Number: 0 + <1><208b>: Abbrev Number: 26 (DW_TAG_subprogram) + <208c> DW_AT_external : 1 + <208c> DW_AT_name : (indirect string, offset: 0x17f8): fputs_unlocked + <2090> DW_AT_decl_file : 9 + <2091> DW_AT_decl_line : 160 + <2092> DW_AT_decl_column : 8 + <2093> DW_AT_prototyped : 1 + <2093> DW_AT_type : <0x1bff> + <2097> DW_AT_inline : 1 (inlined) + <2098> DW_AT_sibling : <0x2111> + <2><209c>: Abbrev Number: 27 (DW_TAG_formal_parameter) + <209d> DW_AT_name : s + <209f> DW_AT_decl_file : 1 + <20a0> DW_AT_decl_line : 82 + <20a1> DW_AT_decl_column : 41 + <20a2> DW_AT_type : <0x1cb3> + <2><20a6>: Abbrev Number: 28 (DW_TAG_formal_parameter) + <20a7> DW_AT_name : (indirect string, offset: 0x16c5): stream + <20ab> DW_AT_decl_file : 1 + <20ac> DW_AT_decl_line : 82 + <20ad> DW_AT_decl_column : 54 + <20ae> DW_AT_type : <0x1fea> + <2><20b2>: Abbrev Number: 29 (DW_TAG_variable) + <20b3> DW_AT_name : (indirect string, offset: 0x1862): nput + <20b7> DW_AT_decl_file : 1 + <20b8> DW_AT_decl_line : 84 + <20b9> DW_AT_decl_column : 7 + <20ba> DW_AT_type : <0x1bff> + <2><20be>: Abbrev Number: 30 (DW_TAG_lexical_block) + <20bf> DW_AT_sibling : <0x20d0> + <3><20c3>: Abbrev Number: 31 (DW_TAG_variable) + <20c4> DW_AT_name : ret + <20c8> DW_AT_decl_file : 1 + <20c9> DW_AT_decl_line : 92 + <20ca> DW_AT_decl_column : 11 + <20cb> DW_AT_type : <0x1bff> + <3><20cf>: Abbrev Number: 0 + <2><20d0>: Abbrev Number: 32 (DW_TAG_lexical_block) + <3><20d1>: Abbrev Number: 29 (DW_TAG_variable) + <20d2> DW_AT_name : (indirect string, offset: 0x14f6): ntowrite + <20d6> DW_AT_decl_file : 1 + <20d7> DW_AT_decl_line : 123 + <20d8> DW_AT_decl_column : 11 + <20d9> DW_AT_type : <0x1bff> + <3><20dd>: Abbrev Number: 23 (DW_TAG_GNU_call_site) + <20de> DW_AT_low_pc : 0x384 + <20e6> DW_AT_abstract_origin: <0x21ff> + <20ea> DW_AT_sibling : <0x20f5> + <4><20ee>: Abbrev Number: 24 (DW_TAG_GNU_call_site_parameter) + <20ef> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <20f1> DW_AT_GNU_call_site_value: 2 byte block: 82 0 (DW_OP_breg18 (s2): 0) + <4><20f4>: Abbrev Number: 0 + <3><20f5>: Abbrev Number: 25 (DW_TAG_GNU_call_site) + <20f6> DW_AT_low_pc : 0x396 + <20fe> DW_AT_abstract_origin: <0x220b> + <4><2102>: Abbrev Number: 24 (DW_TAG_GNU_call_site_parameter) + <2103> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <2105> DW_AT_GNU_call_site_value: 2 byte block: 82 0 (DW_OP_breg18 (s2): 0) + <4><2108>: Abbrev Number: 24 (DW_TAG_GNU_call_site_parameter) + <2109> DW_AT_location : 1 byte block: 5c (DW_OP_reg12 (a2)) + <210b> DW_AT_GNU_call_site_value: 2 byte block: 78 0 (DW_OP_breg8 (s0): 0) + <4><210e>: Abbrev Number: 0 + <3><210f>: Abbrev Number: 0 + <2><2110>: Abbrev Number: 0 + <1><2111>: Abbrev Number: 33 (DW_TAG_subprogram) + <2112> DW_AT_abstract_origin: <0x208b> + <2116> DW_AT_low_pc : 0x364 + <211e> DW_AT_high_pc : 0x92 + <2126> DW_AT_frame_base : 1 byte block: 9c (DW_OP_call_frame_cfa) + <2128> DW_AT_GNU_all_call_sites: 1 + <2128> DW_AT_sibling : <0x21e7> + <2><212c>: Abbrev Number: 34 (DW_TAG_formal_parameter) + <212d> DW_AT_abstract_origin: <0x209c> + <2131> DW_AT_location : 0xcfc (location list) + <2><2135>: Abbrev Number: 34 (DW_TAG_formal_parameter) + <2136> DW_AT_abstract_origin: <0x20a6> + <213a> DW_AT_location : 0xd6e (location list) + <2><213e>: Abbrev Number: 35 (DW_TAG_variable) + <213f> DW_AT_abstract_origin: <0x20b2> + <2143> DW_AT_location : 0xdcd (location list) + <2><2147>: Abbrev Number: 36 (DW_TAG_lexical_block) + <2148> DW_AT_abstract_origin: <0x20d0> + <214c> DW_AT_low_pc : 0x37c + <2154> DW_AT_high_pc : 0x2a + <215c> DW_AT_sibling : <0x216a> + <3><2160>: Abbrev Number: 35 (DW_TAG_variable) + <2161> DW_AT_abstract_origin: <0x20d1> + <2165> DW_AT_location : 0xe16 (location list) + <3><2169>: Abbrev Number: 0 + <2><216a>: Abbrev Number: 37 (DW_TAG_inlined_subroutine) + <216b> DW_AT_abstract_origin: <0x208b> + <216f> DW_AT_entry_pc : 0x3a6 + <2177> DW_AT_ranges : 0x140 + <217b> DW_AT_call_file : 9 + <217c> DW_AT_call_line : 160 + <217d> DW_AT_call_column : 8 + <3><217e>: Abbrev Number: 38 (DW_TAG_formal_parameter) + <217f> DW_AT_abstract_origin: <0x20a6> + <3><2183>: Abbrev Number: 34 (DW_TAG_formal_parameter) + <2184> DW_AT_abstract_origin: <0x209c> + <2188> DW_AT_location : 0xe4c (location list) + <3><218c>: Abbrev Number: 39 (DW_TAG_lexical_block) + <218d> DW_AT_ranges : 0x140 + <4><2191>: Abbrev Number: 35 (DW_TAG_variable) + <2192> DW_AT_abstract_origin: <0x20b2> + <2196> DW_AT_location : 0xe95 (location list) + <4><219a>: Abbrev Number: 40 (DW_TAG_lexical_block) + <219b> DW_AT_abstract_origin: <0x20be> + <219f> DW_AT_ranges : 0x140 + <5><21a3>: Abbrev Number: 35 (DW_TAG_variable) + <21a4> DW_AT_abstract_origin: <0x20c3> + <21a8> DW_AT_location : 0xf07 (location list) + <5><21ac>: Abbrev Number: 23 (DW_TAG_GNU_call_site) + <21ad> DW_AT_low_pc : 0x3c8 + <21b5> DW_AT_abstract_origin: <0x220b> + <21b9> DW_AT_sibling : <0x21cf> + <6><21bd>: Abbrev Number: 24 (DW_TAG_GNU_call_site_parameter) + <21be> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <21c0> DW_AT_GNU_call_site_value: 2 byte block: 79 0 (DW_OP_breg9 (s1): 0) + <6><21c3>: Abbrev Number: 24 (DW_TAG_GNU_call_site_parameter) + <21c4> DW_AT_location : 1 byte block: 5b (DW_OP_reg11 (a1)) + <21c6> DW_AT_GNU_call_site_value: 1 byte block: 31 (DW_OP_lit1) + <6><21c8>: Abbrev Number: 24 (DW_TAG_GNU_call_site_parameter) + <21c9> DW_AT_location : 1 byte block: 5c (DW_OP_reg12 (a2)) + <21cb> DW_AT_GNU_call_site_value: 2 byte block: 78 0 (DW_OP_breg8 (s0): 0) + <6><21ce>: Abbrev Number: 0 + <5><21cf>: Abbrev Number: 25 (DW_TAG_GNU_call_site) + <21d0> DW_AT_low_pc : 0x3e8 + <21d8> DW_AT_abstract_origin: <0x2217> + <6><21dc>: Abbrev Number: 24 (DW_TAG_GNU_call_site_parameter) + <21dd> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <21df> DW_AT_GNU_call_site_value: 2 byte block: 78 0 (DW_OP_breg8 (s0): 0) + <6><21e2>: Abbrev Number: 0 + <5><21e3>: Abbrev Number: 0 + <4><21e4>: Abbrev Number: 0 + <3><21e5>: Abbrev Number: 0 + <2><21e6>: Abbrev Number: 0 + <1><21e7>: Abbrev Number: 41 (DW_TAG_subprogram) + <21e8> DW_AT_external : 1 + <21e8> DW_AT_declaration : 1 + <21e8> DW_AT_linkage_name: (indirect string, offset: 0x16f8): flockfile + <21ec> DW_AT_name : (indirect string, offset: 0x16f8): flockfile + <21f0> DW_AT_decl_file : 9 + <21f1> DW_AT_decl_line : 194 + <21f2> DW_AT_decl_column : 6 + <1><21f3>: Abbrev Number: 41 (DW_TAG_subprogram) + <21f4> DW_AT_external : 1 + <21f4> DW_AT_declaration : 1 + <21f4> DW_AT_linkage_name: (indirect string, offset: 0x188b): funlockfile + <21f8> DW_AT_name : (indirect string, offset: 0x188b): funlockfile + <21fc> DW_AT_decl_file : 9 + <21fd> DW_AT_decl_line : 196 + <21fe> DW_AT_decl_column : 6 + <1><21ff>: Abbrev Number: 41 (DW_TAG_subprogram) + <2200> DW_AT_external : 1 + <2200> DW_AT_declaration : 1 + <2200> DW_AT_linkage_name: (indirect string, offset: 0x17b8): strlen + <2204> DW_AT_name : (indirect string, offset: 0x17b8): strlen + <2208> DW_AT_decl_file : 10 + <2209> DW_AT_decl_line : 68 + <220a> DW_AT_decl_column : 12 + <1><220b>: Abbrev Number: 41 (DW_TAG_subprogram) + <220c> DW_AT_external : 1 + <220c> DW_AT_declaration : 1 + <220c> DW_AT_linkage_name: (indirect string, offset: 0x1722): lib_fwrite_unlocked + <2210> DW_AT_name : (indirect string, offset: 0x1722): lib_fwrite_unlocked + <2214> DW_AT_decl_file : 11 + <2215> DW_AT_decl_line : 193 + <2216> DW_AT_decl_column : 9 + <1><2217>: Abbrev Number: 41 (DW_TAG_subprogram) + <2218> DW_AT_external : 1 + <2218> DW_AT_declaration : 1 + <2218> DW_AT_linkage_name: (indirect string, offset: 0x14db): lib_fflush_unlocked + <221c> DW_AT_name : (indirect string, offset: 0x14db): lib_fflush_unlocked + <2220> DW_AT_decl_file : 11 + <2221> DW_AT_decl_line : 222 + <2222> DW_AT_decl_column : 9 + <1><2223>: Abbrev Number: 0 + Compilation Unit @ offset 0x2224: + Length: 0x54e (32-bit) + Version: 4 + Abbrev Offset: 0xa9f + Pointer Size: 8 + <0><222f>: Abbrev Number: 1 (DW_TAG_compile_unit) + <2230> DW_AT_producer : (indirect string, offset: 0x1948): GNU C17 10.2.0 -mcmodel=medany -march=rv64imafdc -mabi=lp64d -march=rv64imafdc -g -Os -fno-common -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections + <2234> DW_AT_language : 12 (ANSI C99) + <2235> DW_AT_name : (indirect string, offset: 0x1aca): stdio/lib_libfilelock.c + <2239> DW_AT_comp_dir : (indirect string, offset: 0x1a59): /Users/Luppy/ox64/nuttx/libs/libc + <223d> DW_AT_ranges : 0x1b0 + <2241> DW_AT_low_pc : 0x0 + <2249> DW_AT_stmt_list : 0x1357 + <1><224d>: Abbrev Number: 2 (DW_TAG_base_type) + <224e> DW_AT_byte_size : 1 + <224f> DW_AT_encoding : 6 (signed char) + <2250> DW_AT_name : (indirect string, offset: 0x1b4c): signed char + <1><2254>: Abbrev Number: 3 (DW_TAG_typedef) + <2255> DW_AT_name : (indirect string, offset: 0x18ed): _uint8_t + <2259> DW_AT_decl_file : 2 + <225a> DW_AT_decl_line : 52 + <225b> DW_AT_decl_column : 28 + <225c> DW_AT_type : <0x2260> + <1><2260>: Abbrev Number: 2 (DW_TAG_base_type) + <2261> DW_AT_byte_size : 1 + <2262> DW_AT_encoding : 8 (unsigned char) + <2263> DW_AT_name : (indirect string, offset: 0x1b1f): unsigned char + <1><2267>: Abbrev Number: 3 (DW_TAG_typedef) + <2268> DW_AT_name : (indirect string, offset: 0x1bfc): _int16_t + <226c> DW_AT_decl_file : 2 + <226d> DW_AT_decl_line : 54 + <226e> DW_AT_decl_column : 28 + <226f> DW_AT_type : <0x2273> + <1><2273>: Abbrev Number: 2 (DW_TAG_base_type) + <2274> DW_AT_byte_size : 2 + <2275> DW_AT_encoding : 5 (signed) + <2276> DW_AT_name : (indirect string, offset: 0x18f6): short int + <1><227a>: Abbrev Number: 3 (DW_TAG_typedef) + <227b> DW_AT_name : (indirect string, offset: 0x1c76): _uint16_t + <227f> DW_AT_decl_file : 2 + <2280> DW_AT_decl_line : 55 + <2281> DW_AT_decl_column : 28 + <2282> DW_AT_type : <0x2286> + <1><2286>: Abbrev Number: 2 (DW_TAG_base_type) + <2287> DW_AT_byte_size : 2 + <2288> DW_AT_encoding : 7 (unsigned) + <2289> DW_AT_name : (indirect string, offset: 0x1ba0): short unsigned int + <1><228d>: Abbrev Number: 3 (DW_TAG_typedef) + <228e> DW_AT_name : (indirect string, offset: 0x1a7b): _int32_t + <2292> DW_AT_decl_file : 2 + <2293> DW_AT_decl_line : 58 + <2294> DW_AT_decl_column : 28 + <2295> DW_AT_type : <0x2299> + <1><2299>: Abbrev Number: 4 (DW_TAG_base_type) + <229a> DW_AT_byte_size : 4 + <229b> DW_AT_encoding : 5 (signed) + <229c> DW_AT_name : int + <1><22a0>: Abbrev Number: 2 (DW_TAG_base_type) + <22a1> DW_AT_byte_size : 4 + <22a2> DW_AT_encoding : 7 (unsigned) + <22a3> DW_AT_name : (indirect string, offset: 0x1c8d): unsigned int + <1><22a7>: Abbrev Number: 2 (DW_TAG_base_type) + <22a8> DW_AT_byte_size : 8 + <22a9> DW_AT_encoding : 5 (signed) + <22aa> DW_AT_name : (indirect string, offset: 0x1bc0): long int + <1><22ae>: Abbrev Number: 2 (DW_TAG_base_type) + <22af> DW_AT_byte_size : 8 + <22b0> DW_AT_encoding : 7 (unsigned) + <22b1> DW_AT_name : (indirect string, offset: 0x1b7e): long unsigned int + <1><22b5>: Abbrev Number: 3 (DW_TAG_typedef) + <22b6> DW_AT_name : (indirect string, offset: 0x1ccc): _ssize_t + <22ba> DW_AT_decl_file : 2 + <22bb> DW_AT_decl_line : 91 + <22bc> DW_AT_decl_column : 28 + <22bd> DW_AT_type : <0x22a7> + <1><22c1>: Abbrev Number: 3 (DW_TAG_typedef) + <22c2> DW_AT_name : (indirect string, offset: 0x1c4a): _size_t + <22c6> DW_AT_decl_file : 2 + <22c7> DW_AT_decl_line : 93 + <22c8> DW_AT_decl_column : 28 + <22c9> DW_AT_type : <0x22ae> + <1><22cd>: Abbrev Number: 2 (DW_TAG_base_type) + <22ce> DW_AT_byte_size : 8 + <22cf> DW_AT_encoding : 7 (unsigned) + <22d0> DW_AT_name : (indirect string, offset: 0x1b5e): long long unsigned int + <1><22d4>: Abbrev Number: 3 (DW_TAG_typedef) + <22d5> DW_AT_name : (indirect string, offset: 0x1a07): uint8_t + <22d9> DW_AT_decl_file : 3 + <22da> DW_AT_decl_line : 166 + <22db> DW_AT_decl_column : 29 + <22dc> DW_AT_type : <0x2254> + <1><22e0>: Abbrev Number: 3 (DW_TAG_typedef) + <22e1> DW_AT_name : (indirect string, offset: 0x1bd1): int16_t + <22e5> DW_AT_decl_file : 3 + <22e6> DW_AT_decl_line : 168 + <22e7> DW_AT_decl_column : 29 + <22e8> DW_AT_type : <0x2267> + <1><22ec>: Abbrev Number: 5 (DW_TAG_volatile_type) + <22ed> DW_AT_type : <0x22e0> + <1><22f1>: Abbrev Number: 3 (DW_TAG_typedef) + <22f2> DW_AT_name : (indirect string, offset: 0x1b75): uint16_t + <22f6> DW_AT_decl_file : 3 + <22f7> DW_AT_decl_line : 169 + <22f8> DW_AT_decl_column : 29 + <22f9> DW_AT_type : <0x227a> + <1><22fd>: Abbrev Number: 3 (DW_TAG_typedef) + <22fe> DW_AT_name : (indirect string, offset: 0x1bc9): int32_t + <2302> DW_AT_decl_file : 3 + <2303> DW_AT_decl_line : 176 + <2304> DW_AT_decl_column : 29 + <2305> DW_AT_type : <0x228d> + <1><2309>: Abbrev Number: 3 (DW_TAG_typedef) + <230a> DW_AT_name : (indirect string, offset: 0x1900): size_t + <230e> DW_AT_decl_file : 4 + <230f> DW_AT_decl_line : 133 + <2310> DW_AT_decl_column : 22 + <2311> DW_AT_type : <0x22c1> + <1><2315>: Abbrev Number: 3 (DW_TAG_typedef) + <2316> DW_AT_name : (indirect string, offset: 0x1940): ssize_t + <231a> DW_AT_decl_file : 4 + <231b> DW_AT_decl_line : 134 + <231c> DW_AT_decl_column : 22 + <231d> DW_AT_type : <0x22b5> + <1><2321>: Abbrev Number: 3 (DW_TAG_typedef) + <2322> DW_AT_name : (indirect string, offset: 0x1c34): pid_t + <2326> DW_AT_decl_file : 4 + <2327> DW_AT_decl_line : 162 + <2328> DW_AT_decl_column : 22 + <2329> DW_AT_type : <0x2299> + <1><232d>: Abbrev Number: 3 (DW_TAG_typedef) + <232e> DW_AT_name : (indirect string, offset: 0x1ae2): off_t + <2332> DW_AT_decl_file : 4 + <2333> DW_AT_decl_line : 229 + <2334> DW_AT_decl_column : 22 + <2335> DW_AT_type : <0x22fd> + <1><2339>: Abbrev Number: 6 (DW_TAG_pointer_type) + <233a> DW_AT_byte_size : 8 + <1><233b>: Abbrev Number: 7 (DW_TAG_pointer_type) + <233c> DW_AT_byte_size : 8 + <233d> DW_AT_type : <0x2341> + <1><2341>: Abbrev Number: 2 (DW_TAG_base_type) + <2342> DW_AT_byte_size : 1 + <2343> DW_AT_encoding : 8 (unsigned char) + <2344> DW_AT_name : (indirect string, offset: 0x1bb3): char + <1><2348>: Abbrev Number: 8 (DW_TAG_const_type) + <2349> DW_AT_type : <0x2341> + <1><234d>: Abbrev Number: 7 (DW_TAG_pointer_type) + <234e> DW_AT_byte_size : 8 + <234f> DW_AT_type : <0x2348> + <1><2353>: Abbrev Number: 9 (DW_TAG_structure_type) + <2354> DW_AT_name : (indirect string, offset: 0x1aee): dq_entry_s + <2358> DW_AT_byte_size : 16 + <2359> DW_AT_decl_file : 5 + <235a> DW_AT_decl_line : 303 + <235c> DW_AT_decl_column : 8 + <235d> DW_AT_sibling : <0x237e> + <2><2361>: Abbrev Number: 10 (DW_TAG_member) + <2362> DW_AT_name : (indirect string, offset: 0x1ae8): flink + <2366> DW_AT_decl_file : 5 + <2367> DW_AT_decl_line : 305 + <2369> DW_AT_decl_column : 26 + <236a> DW_AT_type : <0x237e> + <236e> DW_AT_data_member_location: 0 + <2><236f>: Abbrev Number: 10 (DW_TAG_member) + <2370> DW_AT_name : (indirect string, offset: 0x18d5): blink + <2374> DW_AT_decl_file : 5 + <2375> DW_AT_decl_line : 306 + <2377> DW_AT_decl_column : 26 + <2378> DW_AT_type : <0x237e> + <237c> DW_AT_data_member_location: 8 + <2><237d>: Abbrev Number: 0 + <1><237e>: Abbrev Number: 7 (DW_TAG_pointer_type) + <237f> DW_AT_byte_size : 8 + <2380> DW_AT_type : <0x2353> + <1><2384>: Abbrev Number: 11 (DW_TAG_typedef) + <2385> DW_AT_name : (indirect string, offset: 0x1be7): dq_entry_t + <2389> DW_AT_decl_file : 5 + <238a> DW_AT_decl_line : 308 + <238c> DW_AT_decl_column : 27 + <238d> DW_AT_type : <0x2353> + <1><2391>: Abbrev Number: 9 (DW_TAG_structure_type) + <2392> DW_AT_name : (indirect string, offset: 0x1caf): dq_queue_s + <2396> DW_AT_byte_size : 16 + <2397> DW_AT_decl_file : 5 + <2398> DW_AT_decl_line : 317 + <239a> DW_AT_decl_column : 8 + <239b> DW_AT_sibling : <0x23bc> + <2><239f>: Abbrev Number: 10 (DW_TAG_member) + <23a0> DW_AT_name : (indirect string, offset: 0x1a02): head + <23a4> DW_AT_decl_file : 5 + <23a5> DW_AT_decl_line : 319 + <23a7> DW_AT_decl_column : 19 + <23a8> DW_AT_type : <0x23bc> + <23ac> DW_AT_data_member_location: 0 + <2><23ad>: Abbrev Number: 10 (DW_TAG_member) + <23ae> DW_AT_name : (indirect string, offset: 0x1b3e): tail + <23b2> DW_AT_decl_file : 5 + <23b3> DW_AT_decl_line : 320 + <23b5> DW_AT_decl_column : 19 + <23b6> DW_AT_type : <0x23bc> + <23ba> DW_AT_data_member_location: 8 + <2><23bb>: Abbrev Number: 0 + <1><23bc>: Abbrev Number: 7 (DW_TAG_pointer_type) + <23bd> DW_AT_byte_size : 8 + <23be> DW_AT_type : <0x2384> + <1><23c2>: Abbrev Number: 11 (DW_TAG_typedef) + <23c3> DW_AT_name : (indirect string, offset: 0x1c5f): dq_queue_t + <23c7> DW_AT_decl_file : 5 + <23c8> DW_AT_decl_line : 322 + <23ca> DW_AT_decl_column : 27 + <23cb> DW_AT_type : <0x2391> + <1><23cf>: Abbrev Number: 12 (DW_TAG_structure_type) + <23d0> DW_AT_name : (indirect string, offset: 0x1a25): sem_s + <23d4> DW_AT_byte_size : 24 + <23d5> DW_AT_decl_file : 6 + <23d6> DW_AT_decl_line : 99 + <23d7> DW_AT_decl_column : 8 + <23d8> DW_AT_sibling : <0x2404> + <2><23dc>: Abbrev Number: 13 (DW_TAG_member) + <23dd> DW_AT_name : (indirect string, offset: 0x1b43): semcount + <23e1> DW_AT_decl_file : 6 + <23e2> DW_AT_decl_line : 101 + <23e3> DW_AT_decl_column : 20 + <23e4> DW_AT_type : <0x22ec> + <23e8> DW_AT_data_member_location: 0 + <2><23e9>: Abbrev Number: 13 (DW_TAG_member) + <23ea> DW_AT_name : (indirect string, offset: 0x1b58): flags + <23ee> DW_AT_decl_file : 6 + <23ef> DW_AT_decl_line : 108 + <23f0> DW_AT_decl_column : 11 + <23f1> DW_AT_type : <0x22d4> + <23f5> DW_AT_data_member_location: 2 + <2><23f6>: Abbrev Number: 13 (DW_TAG_member) + <23f7> DW_AT_name : (indirect string, offset: 0x191f): waitlist + <23fb> DW_AT_decl_file : 6 + <23fc> DW_AT_decl_line : 110 + <23fd> DW_AT_decl_column : 14 + <23fe> DW_AT_type : <0x23c2> + <2402> DW_AT_data_member_location: 8 + <2><2403>: Abbrev Number: 0 + <1><2404>: Abbrev Number: 3 (DW_TAG_typedef) + <2405> DW_AT_name : (indirect string, offset: 0x1a2b): sem_t + <2409> DW_AT_decl_file : 6 + <240a> DW_AT_decl_line : 121 + <240b> DW_AT_decl_column : 22 + <240c> DW_AT_type : <0x23cf> + <1><2410>: Abbrev Number: 12 (DW_TAG_structure_type) + <2411> DW_AT_name : (indirect string, offset: 0x1bb8): mutex_s + <2415> DW_AT_byte_size : 32 + <2416> DW_AT_decl_file : 7 + <2417> DW_AT_decl_line : 46 + <2418> DW_AT_decl_column : 8 + <2419> DW_AT_sibling : <0x2438> + <2><241d>: Abbrev Number: 14 (DW_TAG_member) + <241e> DW_AT_name : sem + <2422> DW_AT_decl_file : 7 + <2423> DW_AT_decl_line : 48 + <2424> DW_AT_decl_column : 9 + <2425> DW_AT_type : <0x2404> + <2429> DW_AT_data_member_location: 0 + <2><242a>: Abbrev Number: 13 (DW_TAG_member) + <242b> DW_AT_name : (indirect string, offset: 0x1a84): holder + <242f> DW_AT_decl_file : 7 + <2430> DW_AT_decl_line : 49 + <2431> DW_AT_decl_column : 9 + <2432> DW_AT_type : <0x2321> + <2436> DW_AT_data_member_location: 24 + <2><2437>: Abbrev Number: 0 + <1><2438>: Abbrev Number: 3 (DW_TAG_typedef) + <2439> DW_AT_name : (indirect string, offset: 0x1aa2): mutex_t + <243d> DW_AT_decl_file : 7 + <243e> DW_AT_decl_line : 52 + <243f> DW_AT_decl_column : 24 + <2440> DW_AT_type : <0x2410> + <1><2444>: Abbrev Number: 12 (DW_TAG_structure_type) + <2445> DW_AT_name : (indirect string, offset: 0x1cba): rmutex_s + <2449> DW_AT_byte_size : 40 + <244a> DW_AT_decl_file : 7 + <244b> DW_AT_decl_line : 54 + <244c> DW_AT_decl_column : 8 + <244d> DW_AT_sibling : <0x246c> + <2><2451>: Abbrev Number: 13 (DW_TAG_member) + <2452> DW_AT_name : (indirect string, offset: 0x1b9a): mutex + <2456> DW_AT_decl_file : 7 + <2457> DW_AT_decl_line : 56 + <2458> DW_AT_decl_column : 11 + <2459> DW_AT_type : <0x2438> + <245d> DW_AT_data_member_location: 0 + <2><245e>: Abbrev Number: 13 (DW_TAG_member) + <245f> DW_AT_name : (indirect string, offset: 0x1c44): count + <2463> DW_AT_decl_file : 7 + <2464> DW_AT_decl_line : 57 + <2465> DW_AT_decl_column : 16 + <2466> DW_AT_type : <0x22a0> + <246a> DW_AT_data_member_location: 32 + <2><246b>: Abbrev Number: 0 + <1><246c>: Abbrev Number: 3 (DW_TAG_typedef) + <246d> DW_AT_name : (indirect string, offset: 0x1cc3): rmutex_t + <2471> DW_AT_decl_file : 7 + <2472> DW_AT_decl_line : 60 + <2473> DW_AT_decl_column : 25 + <2474> DW_AT_type : <0x2444> + <1><2478>: Abbrev Number: 2 (DW_TAG_base_type) + <2479> DW_AT_byte_size : 8 + <247a> DW_AT_encoding : 5 (signed) + <247b> DW_AT_name : (indirect string, offset: 0x1a4b): long long int + <1><247f>: Abbrev Number: 2 (DW_TAG_base_type) + <2480> DW_AT_byte_size : 16 + <2481> DW_AT_encoding : 4 (float) + <2482> DW_AT_name : (indirect string, offset: 0x1af9): long double + <1><2486>: Abbrev Number: 2 (DW_TAG_base_type) + <2487> DW_AT_byte_size : 1 + <2488> DW_AT_encoding : 2 (boolean) + <2489> DW_AT_name : (indirect string, offset: 0x1bd9): _Bool + <1><248d>: Abbrev Number: 11 (DW_TAG_typedef) + <248e> DW_AT_name : (indirect string, offset: 0x1a8b): cookie_read_function_t + <2492> DW_AT_decl_file : 8 + <2493> DW_AT_decl_line : 441 + <2495> DW_AT_decl_column : 22 + <2496> DW_AT_type : <0x249a> + <1><249a>: Abbrev Number: 15 (DW_TAG_subroutine_type) + <249b> DW_AT_prototyped : 1 + <249b> DW_AT_type : <0x2315> + <249f> DW_AT_sibling : <0x24b3> + <2><24a3>: Abbrev Number: 16 (DW_TAG_formal_parameter) + <24a4> DW_AT_type : <0x2339> + <2><24a8>: Abbrev Number: 16 (DW_TAG_formal_parameter) + <24a9> DW_AT_type : <0x233b> + <2><24ad>: Abbrev Number: 16 (DW_TAG_formal_parameter) + <24ae> DW_AT_type : <0x2309> + <2><24b2>: Abbrev Number: 0 + <1><24b3>: Abbrev Number: 11 (DW_TAG_typedef) + <24b4> DW_AT_name : (indirect string, offset: 0x1907): cookie_write_function_t + <24b8> DW_AT_decl_file : 8 + <24b9> DW_AT_decl_line : 443 + <24bb> DW_AT_decl_column : 22 + <24bc> DW_AT_type : <0x24c0> + <1><24c0>: Abbrev Number: 15 (DW_TAG_subroutine_type) + <24c1> DW_AT_prototyped : 1 + <24c1> DW_AT_type : <0x2315> + <24c5> DW_AT_sibling : <0x24d9> + <2><24c9>: Abbrev Number: 16 (DW_TAG_formal_parameter) + <24ca> DW_AT_type : <0x2339> + <2><24ce>: Abbrev Number: 16 (DW_TAG_formal_parameter) + <24cf> DW_AT_type : <0x234d> + <2><24d3>: Abbrev Number: 16 (DW_TAG_formal_parameter) + <24d4> DW_AT_type : <0x2309> + <2><24d8>: Abbrev Number: 0 + <1><24d9>: Abbrev Number: 11 (DW_TAG_typedef) + <24da> DW_AT_name : (indirect string, offset: 0x1c05): cookie_seek_function_t + <24de> DW_AT_decl_file : 8 + <24df> DW_AT_decl_line : 446 + <24e1> DW_AT_decl_column : 20 + <24e2> DW_AT_type : <0x24e6> + <1><24e6>: Abbrev Number: 15 (DW_TAG_subroutine_type) + <24e7> DW_AT_prototyped : 1 + <24e7> DW_AT_type : <0x232d> + <24eb> DW_AT_sibling : <0x24ff> + <2><24ef>: Abbrev Number: 16 (DW_TAG_formal_parameter) + <24f0> DW_AT_type : <0x2339> + <2><24f4>: Abbrev Number: 16 (DW_TAG_formal_parameter) + <24f5> DW_AT_type : <0x24ff> + <2><24f9>: Abbrev Number: 16 (DW_TAG_formal_parameter) + <24fa> DW_AT_type : <0x2299> + <2><24fe>: Abbrev Number: 0 + <1><24ff>: Abbrev Number: 7 (DW_TAG_pointer_type) + <2500> DW_AT_byte_size : 8 + <2501> DW_AT_type : <0x232d> + <1><2505>: Abbrev Number: 11 (DW_TAG_typedef) + <2506> DW_AT_name : (indirect string, offset: 0x1928): cookie_close_function_t + <250a> DW_AT_decl_file : 8 + <250b> DW_AT_decl_line : 449 + <250d> DW_AT_decl_column : 18 + <250e> DW_AT_type : <0x2512> + <1><2512>: Abbrev Number: 15 (DW_TAG_subroutine_type) + <2513> DW_AT_prototyped : 1 + <2513> DW_AT_type : <0x2299> + <2517> DW_AT_sibling : <0x2521> + <2><251b>: Abbrev Number: 16 (DW_TAG_formal_parameter) + <251c> DW_AT_type : <0x2339> + <2><2520>: Abbrev Number: 0 + <1><2521>: Abbrev Number: 9 (DW_TAG_structure_type) + <2522> DW_AT_name : (indirect string, offset: 0x1a0f): cookie_io_functions_t + <2526> DW_AT_byte_size : 32 + <2527> DW_AT_decl_file : 8 + <2528> DW_AT_decl_line : 451 + <252a> DW_AT_decl_column : 16 + <252b> DW_AT_sibling : <0x2568> + <2><252f>: Abbrev Number: 10 (DW_TAG_member) + <2530> DW_AT_name : (indirect string, offset: 0x1a46): read + <2534> DW_AT_decl_file : 8 + <2535> DW_AT_decl_line : 453 + <2537> DW_AT_decl_column : 31 + <2538> DW_AT_type : <0x2568> + <253c> DW_AT_data_member_location: 0 + <2><253d>: Abbrev Number: 10 (DW_TAG_member) + <253e> DW_AT_name : (indirect string, offset: 0x18db): write + <2542> DW_AT_decl_file : 8 + <2543> DW_AT_decl_line : 454 + <2545> DW_AT_decl_column : 32 + <2546> DW_AT_type : <0x256e> + <254a> DW_AT_data_member_location: 8 + <2><254b>: Abbrev Number: 10 (DW_TAG_member) + <254c> DW_AT_name : (indirect string, offset: 0x1c52): seek + <2550> DW_AT_decl_file : 8 + <2551> DW_AT_decl_line : 455 + <2553> DW_AT_decl_column : 31 + <2554> DW_AT_type : <0x2574> + <2558> DW_AT_data_member_location: 16 + <2><2559>: Abbrev Number: 10 (DW_TAG_member) + <255a> DW_AT_name : (indirect string, offset: 0x18cf): close + <255e> DW_AT_decl_file : 8 + <255f> DW_AT_decl_line : 456 + <2561> DW_AT_decl_column : 32 + <2562> DW_AT_type : <0x257a> + <2566> DW_AT_data_member_location: 24 + <2><2567>: Abbrev Number: 0 + <1><2568>: Abbrev Number: 7 (DW_TAG_pointer_type) + <2569> DW_AT_byte_size : 8 + <256a> DW_AT_type : <0x248d> + <1><256e>: Abbrev Number: 7 (DW_TAG_pointer_type) + <256f> DW_AT_byte_size : 8 + <2570> DW_AT_type : <0x24b3> + <1><2574>: Abbrev Number: 7 (DW_TAG_pointer_type) + <2575> DW_AT_byte_size : 8 + <2576> DW_AT_type : <0x24d9> + <1><257a>: Abbrev Number: 7 (DW_TAG_pointer_type) + <257b> DW_AT_byte_size : 8 + <257c> DW_AT_type : <0x2505> + <1><2580>: Abbrev Number: 11 (DW_TAG_typedef) + <2581> DW_AT_name : (indirect string, offset: 0x1a0f): cookie_io_functions_t + <2585> DW_AT_decl_file : 8 + <2586> DW_AT_decl_line : 457 + <2588> DW_AT_decl_column : 3 + <2589> DW_AT_type : <0x2521> + <1><258d>: Abbrev Number: 9 (DW_TAG_structure_type) + <258e> DW_AT_name : (indirect string, offset: 0x1aaa): file_struct + <2592> DW_AT_byte_size : 192 + <2593> DW_AT_decl_file : 8 + <2594> DW_AT_decl_line : 526 + <2596> DW_AT_decl_column : 8 + <2597> DW_AT_sibling : <0x2652> + <2><259b>: Abbrev Number: 10 (DW_TAG_member) + <259c> DW_AT_name : (indirect string, offset: 0x1bdf): fs_next + <25a0> DW_AT_decl_file : 8 + <25a1> DW_AT_decl_line : 528 + <25a3> DW_AT_decl_column : 27 + <25a4> DW_AT_type : <0x2652> + <25a8> DW_AT_data_member_location: 0 + <2><25a9>: Abbrev Number: 10 (DW_TAG_member) + <25aa> DW_AT_name : (indirect string, offset: 0x1c57): fs_lock + <25ae> DW_AT_decl_file : 8 + <25af> DW_AT_decl_line : 529 + <25b1> DW_AT_decl_column : 27 + <25b2> DW_AT_type : <0x246c> + <25b6> DW_AT_data_member_location: 8 + <2><25b7>: Abbrev Number: 10 (DW_TAG_member) + <25b8> DW_AT_name : (indirect string, offset: 0x1bf2): fs_iofunc + <25bc> DW_AT_decl_file : 8 + <25bd> DW_AT_decl_line : 530 + <25bf> DW_AT_decl_column : 27 + <25c0> DW_AT_type : <0x2580> + <25c4> DW_AT_data_member_location: 48 + <2><25c5>: Abbrev Number: 10 (DW_TAG_member) + <25c6> DW_AT_name : (indirect string, offset: 0x1c3a): fs_cookie + <25ca> DW_AT_decl_file : 8 + <25cb> DW_AT_decl_line : 531 + <25cd> DW_AT_decl_column : 27 + <25ce> DW_AT_type : <0x2339> + <25d2> DW_AT_data_member_location: 80 + <2><25d3>: Abbrev Number: 10 (DW_TAG_member) + <25d4> DW_AT_name : (indirect string, offset: 0x1c6a): fs_bufstart + <25d8> DW_AT_decl_file : 8 + <25d9> DW_AT_decl_line : 533 + <25db> DW_AT_decl_column : 27 + <25dc> DW_AT_type : <0x233b> + <25e0> DW_AT_data_member_location: 88 + <2><25e1>: Abbrev Number: 10 (DW_TAG_member) + <25e2> DW_AT_name : (indirect string, offset: 0x19f8): fs_bufend + <25e6> DW_AT_decl_file : 8 + <25e7> DW_AT_decl_line : 534 + <25e9> DW_AT_decl_column : 27 + <25ea> DW_AT_type : <0x233b> + <25ee> DW_AT_data_member_location: 96 + <2><25ef>: Abbrev Number: 10 (DW_TAG_member) + <25f0> DW_AT_name : (indirect string, offset: 0x1a3c): fs_bufpos + <25f4> DW_AT_decl_file : 8 + <25f5> DW_AT_decl_line : 535 + <25f7> DW_AT_decl_column : 27 + <25f8> DW_AT_type : <0x233b> + <25fc> DW_AT_data_member_location: 104 + <2><25fd>: Abbrev Number: 10 (DW_TAG_member) + <25fe> DW_AT_name : (indirect string, offset: 0x1a31): fs_bufread + <2602> DW_AT_decl_file : 8 + <2603> DW_AT_decl_line : 536 + <2605> DW_AT_decl_column : 27 + <2606> DW_AT_type : <0x233b> + <260a> DW_AT_data_member_location: 112 + <2><260b>: Abbrev Number: 10 (DW_TAG_member) + <260c> DW_AT_name : (indirect string, offset: 0x1c1c): fs_buffer + <2610> DW_AT_decl_file : 8 + <2611> DW_AT_decl_line : 538 + <2613> DW_AT_decl_column : 27 + <2614> DW_AT_type : <0x2658> + <2618> DW_AT_data_member_location: 120 + <2><2619>: Abbrev Number: 10 (DW_TAG_member) + <261a> DW_AT_name : (indirect string, offset: 0x1b90): fs_oflags + <261e> DW_AT_decl_file : 8 + <261f> DW_AT_decl_line : 541 + <2621> DW_AT_decl_column : 27 + <2622> DW_AT_type : <0x22f1> + <2626> DW_AT_data_member_location: 184 + <2><2627>: Abbrev Number: 10 (DW_TAG_member) + <2628> DW_AT_name : (indirect string, offset: 0x1ca6): fs_flags + <262c> DW_AT_decl_file : 8 + <262d> DW_AT_decl_line : 542 + <262f> DW_AT_decl_column : 27 + <2630> DW_AT_type : <0x22d4> + <2634> DW_AT_data_member_location: 186 + <2><2635>: Abbrev Number: 10 (DW_TAG_member) + <2636> DW_AT_name : (indirect string, offset: 0x1c80): fs_nungotten + <263a> DW_AT_decl_file : 8 + <263b> DW_AT_decl_line : 544 + <263d> DW_AT_decl_column : 27 + <263e> DW_AT_type : <0x22d4> + <2642> DW_AT_data_member_location: 187 + <2><2643>: Abbrev Number: 10 (DW_TAG_member) + <2644> DW_AT_name : (indirect string, offset: 0x18e1): fs_ungotten + <2648> DW_AT_decl_file : 8 + <2649> DW_AT_decl_line : 545 + <264b> DW_AT_decl_column : 27 + <264c> DW_AT_type : <0x2668> + <2650> DW_AT_data_member_location: 188 + <2><2651>: Abbrev Number: 0 + <1><2652>: Abbrev Number: 7 (DW_TAG_pointer_type) + <2653> DW_AT_byte_size : 8 + <2654> DW_AT_type : <0x258d> + <1><2658>: Abbrev Number: 17 (DW_TAG_array_type) + <2659> DW_AT_type : <0x2341> + <265d> DW_AT_sibling : <0x2668> + <2><2661>: Abbrev Number: 18 (DW_TAG_subrange_type) + <2662> DW_AT_type : <0x22ae> + <2666> DW_AT_upper_bound : 63 + <2><2667>: Abbrev Number: 0 + <1><2668>: Abbrev Number: 17 (DW_TAG_array_type) + <2669> DW_AT_type : <0x2341> + <266d> DW_AT_sibling : <0x2678> + <2><2671>: Abbrev Number: 18 (DW_TAG_subrange_type) + <2672> DW_AT_type : <0x22ae> + <2676> DW_AT_upper_bound : 1 + <2><2677>: Abbrev Number: 0 + <1><2678>: Abbrev Number: 19 (DW_TAG_subprogram) + <2679> DW_AT_external : 1 + <2679> DW_AT_name : (indirect string, offset: 0x1c9a): funlockfile + <267d> DW_AT_decl_file : 9 + <267e> DW_AT_decl_line : 196 + <267f> DW_AT_decl_column : 6 + <2680> DW_AT_prototyped : 1 + <2680> DW_AT_low_pc : 0x444 + <2688> DW_AT_high_pc : 0xa + <2690> DW_AT_frame_base : 1 byte block: 9c (DW_OP_call_frame_cfa) + <2692> DW_AT_GNU_all_call_sites: 1 + <2692> DW_AT_sibling : <0x26be> + <2><2696>: Abbrev Number: 20 (DW_TAG_formal_parameter) + <2697> DW_AT_name : (indirect string, offset: 0x1ab6): stream + <269b> DW_AT_decl_file : 1 + <269c> DW_AT_decl_line : 62 + <269d> DW_AT_decl_column : 42 + <269e> DW_AT_type : <0x2652> + <26a2> DW_AT_location : 0xf63 (location list) + <2><26a6>: Abbrev Number: 21 (DW_TAG_GNU_call_site) + <26a7> DW_AT_low_pc : 0x44e + <26af> DW_AT_GNU_tail_call: 1 + <26af> DW_AT_abstract_origin: <0x274e> + <3><26b3>: Abbrev Number: 22 (DW_TAG_GNU_call_site_parameter) + <26b4> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <26b6> DW_AT_GNU_call_site_value: 5 byte block: f3 1 5a 23 8 (DW_OP_GNU_entry_value: (DW_OP_reg10 (a0)); DW_OP_plus_uconst: 8) + <3><26bc>: Abbrev Number: 0 + <2><26bd>: Abbrev Number: 0 + <1><26be>: Abbrev Number: 23 (DW_TAG_subprogram) + <26bf> DW_AT_external : 1 + <26bf> DW_AT_name : (indirect string, offset: 0x1abd): ftrylockfile + <26c3> DW_AT_decl_file : 9 + <26c4> DW_AT_decl_line : 195 + <26c5> DW_AT_decl_column : 5 + <26c6> DW_AT_prototyped : 1 + <26c6> DW_AT_type : <0x2299> + <26ca> DW_AT_low_pc : 0x43a + <26d2> DW_AT_high_pc : 0xa + <26da> DW_AT_frame_base : 1 byte block: 9c (DW_OP_call_frame_cfa) + <26dc> DW_AT_GNU_all_call_sites: 1 + <26dc> DW_AT_sibling : <0x2708> + <2><26e0>: Abbrev Number: 20 (DW_TAG_formal_parameter) + <26e1> DW_AT_name : (indirect string, offset: 0x1ab6): stream + <26e5> DW_AT_decl_file : 1 + <26e6> DW_AT_decl_line : 53 + <26e7> DW_AT_decl_column : 42 + <26e8> DW_AT_type : <0x2652> + <26ec> DW_AT_location : 0xfb1 (location list) + <2><26f0>: Abbrev Number: 21 (DW_TAG_GNU_call_site) + <26f1> DW_AT_low_pc : 0x444 + <26f9> DW_AT_GNU_tail_call: 1 + <26f9> DW_AT_abstract_origin: <0x275b> + <3><26fd>: Abbrev Number: 22 (DW_TAG_GNU_call_site_parameter) + <26fe> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <2700> DW_AT_GNU_call_site_value: 5 byte block: f3 1 5a 23 8 (DW_OP_GNU_entry_value: (DW_OP_reg10 (a0)); DW_OP_plus_uconst: 8) + <3><2706>: Abbrev Number: 0 + <2><2707>: Abbrev Number: 0 + <1><2708>: Abbrev Number: 19 (DW_TAG_subprogram) + <2709> DW_AT_external : 1 + <2709> DW_AT_name : (indirect string, offset: 0x1b15): flockfile + <270d> DW_AT_decl_file : 9 + <270e> DW_AT_decl_line : 194 + <270f> DW_AT_decl_column : 6 + <2710> DW_AT_prototyped : 1 + <2710> DW_AT_low_pc : 0x430 + <2718> DW_AT_high_pc : 0xa + <2720> DW_AT_frame_base : 1 byte block: 9c (DW_OP_call_frame_cfa) + <2722> DW_AT_GNU_all_call_sites: 1 + <2722> DW_AT_sibling : <0x274e> + <2><2726>: Abbrev Number: 20 (DW_TAG_formal_parameter) + <2727> DW_AT_name : (indirect string, offset: 0x1ab6): stream + <272b> DW_AT_decl_file : 1 + <272c> DW_AT_decl_line : 44 + <272d> DW_AT_decl_column : 40 + <272e> DW_AT_type : <0x2652> + <2732> DW_AT_location : 0xfff (location list) + <2><2736>: Abbrev Number: 21 (DW_TAG_GNU_call_site) + <2737> DW_AT_low_pc : 0x43a + <273f> DW_AT_GNU_tail_call: 1 + <273f> DW_AT_abstract_origin: <0x2768> + <3><2743>: Abbrev Number: 22 (DW_TAG_GNU_call_site_parameter) + <2744> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <2746> DW_AT_GNU_call_site_value: 5 byte block: f3 1 5a 23 8 (DW_OP_GNU_entry_value: (DW_OP_reg10 (a0)); DW_OP_plus_uconst: 8) + <3><274c>: Abbrev Number: 0 + <2><274d>: Abbrev Number: 0 + <1><274e>: Abbrev Number: 24 (DW_TAG_subprogram) + <274f> DW_AT_external : 1 + <274f> DW_AT_declaration : 1 + <274f> DW_AT_linkage_name: (indirect string, offset: 0x1b05): nxrmutex_unlock + <2753> DW_AT_name : (indirect string, offset: 0x1b05): nxrmutex_unlock + <2757> DW_AT_decl_file : 7 + <2758> DW_AT_decl_line : 462 + <275a> DW_AT_decl_column : 5 + <1><275b>: Abbrev Number: 24 (DW_TAG_subprogram) + <275c> DW_AT_external : 1 + <275c> DW_AT_declaration : 1 + <275c> DW_AT_linkage_name: (indirect string, offset: 0x1b2d): nxrmutex_trylock + <2760> DW_AT_name : (indirect string, offset: 0x1b2d): nxrmutex_trylock + <2764> DW_AT_decl_file : 7 + <2765> DW_AT_decl_line : 412 + <2767> DW_AT_decl_column : 5 + <1><2768>: Abbrev Number: 24 (DW_TAG_subprogram) + <2769> DW_AT_external : 1 + <2769> DW_AT_declaration : 1 + <2769> DW_AT_linkage_name: (indirect string, offset: 0x1c26): nxrmutex_lock + <276d> DW_AT_name : (indirect string, offset: 0x1c26): nxrmutex_lock + <2771> DW_AT_decl_file : 7 + <2772> DW_AT_decl_line : 387 + <2774> DW_AT_decl_column : 5 + <1><2775>: Abbrev Number: 0 + Compilation Unit @ offset 0x2776: + Length: 0x5af (32-bit) + Version: 4 + Abbrev Offset: 0xbf6 + Pointer Size: 8 + <0><2781>: Abbrev Number: 1 (DW_TAG_compile_unit) + <2782> DW_AT_producer : (indirect string, offset: 0x1d73): GNU C17 10.2.0 -mcmodel=medany -march=rv64imafdc -mabi=lp64d -march=rv64imafdc -g -Os -fno-common -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections + <2786> DW_AT_language : 12 (ANSI C99) + <2787> DW_AT_name : (indirect string, offset: 0x1eac): stdio/lib_libgetstreams.c + <278b> DW_AT_comp_dir : (indirect string, offset: 0x1e8a): /Users/Luppy/ox64/nuttx/libs/libc + <278f> DW_AT_ranges : 0x220 + <2793> DW_AT_low_pc : 0x0 + <279b> DW_AT_stmt_list : 0x1504 + <1><279f>: Abbrev Number: 2 (DW_TAG_base_type) + <27a0> DW_AT_byte_size : 1 + <27a1> DW_AT_encoding : 6 (signed char) + <27a2> DW_AT_name : (indirect string, offset: 0x1f59): signed char + <1><27a6>: Abbrev Number: 3 (DW_TAG_typedef) + <27a7> DW_AT_name : (indirect string, offset: 0x1cfe): _uint8_t + <27ab> DW_AT_decl_file : 2 + <27ac> DW_AT_decl_line : 52 + <27ad> DW_AT_decl_column : 28 + <27ae> DW_AT_type : <0x27b2> + <1><27b2>: Abbrev Number: 2 (DW_TAG_base_type) + <27b3> DW_AT_byte_size : 1 + <27b4> DW_AT_encoding : 8 (unsigned char) + <27b5> DW_AT_name : (indirect string, offset: 0x1f39): unsigned char + <1><27b9>: Abbrev Number: 3 (DW_TAG_typedef) + <27ba> DW_AT_name : (indirect string, offset: 0x1f47): _int16_t + <27be> DW_AT_decl_file : 2 + <27bf> DW_AT_decl_line : 54 + <27c0> DW_AT_decl_column : 28 + <27c1> DW_AT_type : <0x27c5> + <1><27c5>: Abbrev Number: 2 (DW_TAG_base_type) + <27c6> DW_AT_byte_size : 2 + <27c7> DW_AT_encoding : 5 (signed) + <27c8> DW_AT_name : (indirect string, offset: 0x1d0e): short int + <1><27cc>: Abbrev Number: 3 (DW_TAG_typedef) + <27cd> DW_AT_name : (indirect string, offset: 0x20b4): _uint16_t + <27d1> DW_AT_decl_file : 2 + <27d2> DW_AT_decl_line : 55 + <27d3> DW_AT_decl_column : 28 + <27d4> DW_AT_type : <0x27d8> + <1><27d8>: Abbrev Number: 2 (DW_TAG_base_type) + <27d9> DW_AT_byte_size : 2 + <27da> DW_AT_encoding : 7 (unsigned) + <27db> DW_AT_name : (indirect string, offset: 0x2000): short unsigned int + <1><27df>: Abbrev Number: 3 (DW_TAG_typedef) + <27e0> DW_AT_name : (indirect string, offset: 0x1f28): _int32_t + <27e4> DW_AT_decl_file : 2 + <27e5> DW_AT_decl_line : 58 + <27e6> DW_AT_decl_column : 28 + <27e7> DW_AT_type : <0x27eb> + <1><27eb>: Abbrev Number: 4 (DW_TAG_base_type) + <27ec> DW_AT_byte_size : 4 + <27ed> DW_AT_encoding : 5 (signed) + <27ee> DW_AT_name : int + <1><27f2>: Abbrev Number: 2 (DW_TAG_base_type) + <27f3> DW_AT_byte_size : 4 + <27f4> DW_AT_encoding : 7 (unsigned) + <27f5> DW_AT_name : (indirect string, offset: 0x20cb): unsigned int + <1><27f9>: Abbrev Number: 2 (DW_TAG_base_type) + <27fa> DW_AT_byte_size : 8 + <27fb> DW_AT_encoding : 5 (signed) + <27fc> DW_AT_name : (indirect string, offset: 0x1fef): long int + <1><2800>: Abbrev Number: 2 (DW_TAG_base_type) + <2801> DW_AT_byte_size : 8 + <2802> DW_AT_encoding : 7 (unsigned) + <2803> DW_AT_name : (indirect string, offset: 0x1f95): long unsigned int + <1><2807>: Abbrev Number: 3 (DW_TAG_typedef) + <2808> DW_AT_name : (indirect string, offset: 0x20fe): _ssize_t + <280c> DW_AT_decl_file : 2 + <280d> DW_AT_decl_line : 91 + <280e> DW_AT_decl_column : 28 + <280f> DW_AT_type : <0x27f9> + <1><2813>: Abbrev Number: 3 (DW_TAG_typedef) + <2814> DW_AT_name : (indirect string, offset: 0x2088): _size_t + <2818> DW_AT_decl_file : 2 + <2819> DW_AT_decl_line : 93 + <281a> DW_AT_decl_column : 28 + <281b> DW_AT_type : <0x2800> + <1><281f>: Abbrev Number: 2 (DW_TAG_base_type) + <2820> DW_AT_byte_size : 8 + <2821> DW_AT_encoding : 7 (unsigned) + <2822> DW_AT_name : (indirect string, offset: 0x1f6b): long long unsigned int + <1><2826>: Abbrev Number: 3 (DW_TAG_typedef) + <2827> DW_AT_name : (indirect string, offset: 0x1e32): uint8_t + <282b> DW_AT_decl_file : 3 + <282c> DW_AT_decl_line : 166 + <282d> DW_AT_decl_column : 29 + <282e> DW_AT_type : <0x27a6> + <1><2832>: Abbrev Number: 3 (DW_TAG_typedef) + <2833> DW_AT_name : (indirect string, offset: 0x2013): int16_t + <2837> DW_AT_decl_file : 3 + <2838> DW_AT_decl_line : 168 + <2839> DW_AT_decl_column : 29 + <283a> DW_AT_type : <0x27b9> + <1><283e>: Abbrev Number: 5 (DW_TAG_volatile_type) + <283f> DW_AT_type : <0x2832> + <1><2843>: Abbrev Number: 3 (DW_TAG_typedef) + <2844> DW_AT_name : (indirect string, offset: 0x1fe6): uint16_t + <2848> DW_AT_decl_file : 3 + <2849> DW_AT_decl_line : 169 + <284a> DW_AT_decl_column : 29 + <284b> DW_AT_type : <0x27cc> + <1><284f>: Abbrev Number: 3 (DW_TAG_typedef) + <2850> DW_AT_name : (indirect string, offset: 0x1ff8): int32_t + <2854> DW_AT_decl_file : 3 + <2855> DW_AT_decl_line : 176 + <2856> DW_AT_decl_column : 29 + <2857> DW_AT_type : <0x27df> + <1><285b>: Abbrev Number: 3 (DW_TAG_typedef) + <285c> DW_AT_name : (indirect string, offset: 0x1d18): size_t + <2860> DW_AT_decl_file : 4 + <2861> DW_AT_decl_line : 133 + <2862> DW_AT_decl_column : 22 + <2863> DW_AT_type : <0x2813> + <1><2867>: Abbrev Number: 3 (DW_TAG_typedef) + <2868> DW_AT_name : (indirect string, offset: 0x1d63): ssize_t + <286c> DW_AT_decl_file : 4 + <286d> DW_AT_decl_line : 134 + <286e> DW_AT_decl_column : 22 + <286f> DW_AT_type : <0x2807> + <1><2873>: Abbrev Number: 3 (DW_TAG_typedef) + <2874> DW_AT_name : (indirect string, offset: 0x2067): pid_t + <2878> DW_AT_decl_file : 4 + <2879> DW_AT_decl_line : 162 + <287a> DW_AT_decl_column : 22 + <287b> DW_AT_type : <0x27eb> + <1><287f>: Abbrev Number: 3 (DW_TAG_typedef) + <2880> DW_AT_name : (indirect string, offset: 0x1efd): off_t + <2884> DW_AT_decl_file : 4 + <2885> DW_AT_decl_line : 229 + <2886> DW_AT_decl_column : 22 + <2887> DW_AT_type : <0x284f> + <1><288b>: Abbrev Number: 6 (DW_TAG_pointer_type) + <288c> DW_AT_byte_size : 8 + <1><288d>: Abbrev Number: 7 (DW_TAG_pointer_type) + <288e> DW_AT_byte_size : 8 + <288f> DW_AT_type : <0x2893> + <1><2893>: Abbrev Number: 2 (DW_TAG_base_type) + <2894> DW_AT_byte_size : 1 + <2895> DW_AT_encoding : 8 (unsigned char) + <2896> DW_AT_name : (indirect string, offset: 0x1ec6): char + <1><289a>: Abbrev Number: 8 (DW_TAG_const_type) + <289b> DW_AT_type : <0x2893> + <1><289f>: Abbrev Number: 7 (DW_TAG_pointer_type) + <28a0> DW_AT_byte_size : 8 + <28a1> DW_AT_type : <0x288d> + <1><28a5>: Abbrev Number: 2 (DW_TAG_base_type) + <28a6> DW_AT_byte_size : 8 + <28a7> DW_AT_encoding : 5 (signed) + <28a8> DW_AT_name : (indirect string, offset: 0x1e7c): long long int + <1><28ac>: Abbrev Number: 2 (DW_TAG_base_type) + <28ad> DW_AT_byte_size : 16 + <28ae> DW_AT_encoding : 4 (float) + <28af> DW_AT_name : (indirect string, offset: 0x1f1c): long double + <1><28b3>: Abbrev Number: 7 (DW_TAG_pointer_type) + <28b4> DW_AT_byte_size : 8 + <28b5> DW_AT_type : <0x289a> + <1><28b9>: Abbrev Number: 9 (DW_TAG_structure_type) + <28ba> DW_AT_name : (indirect string, offset: 0x1f11): dq_entry_s + <28be> DW_AT_byte_size : 16 + <28bf> DW_AT_decl_file : 5 + <28c0> DW_AT_decl_line : 303 + <28c2> DW_AT_decl_column : 8 + <28c3> DW_AT_sibling : <0x28e4> + <2><28c7>: Abbrev Number: 10 (DW_TAG_member) + <28c8> DW_AT_name : (indirect string, offset: 0x1f03): flink + <28cc> DW_AT_decl_file : 5 + <28cd> DW_AT_decl_line : 305 + <28cf> DW_AT_decl_column : 26 + <28d0> DW_AT_type : <0x28e4> + <28d4> DW_AT_data_member_location: 0 + <2><28d5>: Abbrev Number: 10 (DW_TAG_member) + <28d6> DW_AT_name : (indirect string, offset: 0x1e50): blink + <28da> DW_AT_decl_file : 5 + <28db> DW_AT_decl_line : 306 + <28dd> DW_AT_decl_column : 26 + <28de> DW_AT_type : <0x28e4> + <28e2> DW_AT_data_member_location: 8 + <2><28e3>: Abbrev Number: 0 + <1><28e4>: Abbrev Number: 7 (DW_TAG_pointer_type) + <28e5> DW_AT_byte_size : 8 + <28e6> DW_AT_type : <0x28b9> + <1><28ea>: Abbrev Number: 11 (DW_TAG_typedef) + <28eb> DW_AT_name : (indirect string, offset: 0x2029): dq_entry_t + <28ef> DW_AT_decl_file : 5 + <28f0> DW_AT_decl_line : 308 + <28f2> DW_AT_decl_column : 27 + <28f3> DW_AT_type : <0x28b9> + <1><28f7>: Abbrev Number: 9 (DW_TAG_structure_type) + <28f8> DW_AT_name : (indirect string, offset: 0x20e1): dq_queue_s + <28fc> DW_AT_byte_size : 16 + <28fd> DW_AT_decl_file : 5 + <28fe> DW_AT_decl_line : 317 + <2900> DW_AT_decl_column : 8 + <2901> DW_AT_sibling : <0x2922> + <2><2905>: Abbrev Number: 10 (DW_TAG_member) + <2906> DW_AT_name : (indirect string, offset: 0x1e2d): head + <290a> DW_AT_decl_file : 5 + <290b> DW_AT_decl_line : 319 + <290d> DW_AT_decl_column : 19 + <290e> DW_AT_type : <0x2922> + <2912> DW_AT_data_member_location: 0 + <2><2913>: Abbrev Number: 10 (DW_TAG_member) + <2914> DW_AT_name : (indirect string, offset: 0x1f82): tail + <2918> DW_AT_decl_file : 5 + <2919> DW_AT_decl_line : 320 + <291b> DW_AT_decl_column : 19 + <291c> DW_AT_type : <0x2922> + <2920> DW_AT_data_member_location: 8 + <2><2921>: Abbrev Number: 0 + <1><2922>: Abbrev Number: 7 (DW_TAG_pointer_type) + <2923> DW_AT_byte_size : 8 + <2924> DW_AT_type : <0x28ea> + <1><2928>: Abbrev Number: 11 (DW_TAG_typedef) + <2929> DW_AT_name : (indirect string, offset: 0x209d): dq_queue_t + <292d> DW_AT_decl_file : 5 + <292e> DW_AT_decl_line : 322 + <2930> DW_AT_decl_column : 27 + <2931> DW_AT_type : <0x28f7> + <1><2935>: Abbrev Number: 12 (DW_TAG_structure_type) + <2936> DW_AT_name : (indirect string, offset: 0x1e56): sem_s + <293a> DW_AT_byte_size : 24 + <293b> DW_AT_decl_file : 6 + <293c> DW_AT_decl_line : 99 + <293d> DW_AT_decl_column : 8 + <293e> DW_AT_sibling : <0x296a> + <2><2942>: Abbrev Number: 13 (DW_TAG_member) + <2943> DW_AT_name : (indirect string, offset: 0x1f50): semcount + <2947> DW_AT_decl_file : 6 + <2948> DW_AT_decl_line : 101 + <2949> DW_AT_decl_column : 20 + <294a> DW_AT_type : <0x283e> + <294e> DW_AT_data_member_location: 0 + <2><294f>: Abbrev Number: 13 (DW_TAG_member) + <2950> DW_AT_name : (indirect string, offset: 0x1f65): flags + <2954> DW_AT_decl_file : 6 + <2955> DW_AT_decl_line : 108 + <2956> DW_AT_decl_column : 11 + <2957> DW_AT_type : <0x2826> + <295b> DW_AT_data_member_location: 2 + <2><295c>: Abbrev Number: 13 (DW_TAG_member) + <295d> DW_AT_name : (indirect string, offset: 0x1d42): waitlist + <2961> DW_AT_decl_file : 6 + <2962> DW_AT_decl_line : 110 + <2963> DW_AT_decl_column : 14 + <2964> DW_AT_type : <0x2928> + <2968> DW_AT_data_member_location: 8 + <2><2969>: Abbrev Number: 0 + <1><296a>: Abbrev Number: 3 (DW_TAG_typedef) + <296b> DW_AT_name : (indirect string, offset: 0x1e5c): sem_t + <296f> DW_AT_decl_file : 6 + <2970> DW_AT_decl_line : 121 + <2971> DW_AT_decl_column : 22 + <2972> DW_AT_type : <0x2935> + <1><2976>: Abbrev Number: 2 (DW_TAG_base_type) + <2977> DW_AT_byte_size : 1 + <2978> DW_AT_encoding : 2 (boolean) + <2979> DW_AT_name : (indirect string, offset: 0x201b): _Bool + <1><297d>: Abbrev Number: 12 (DW_TAG_structure_type) + <297e> DW_AT_name : (indirect string, offset: 0x1f09): mutex_s + <2982> DW_AT_byte_size : 32 + <2983> DW_AT_decl_file : 7 + <2984> DW_AT_decl_line : 46 + <2985> DW_AT_decl_column : 8 + <2986> DW_AT_sibling : <0x29a5> + <2><298a>: Abbrev Number: 14 (DW_TAG_member) + <298b> DW_AT_name : sem + <298f> DW_AT_decl_file : 7 + <2990> DW_AT_decl_line : 48 + <2991> DW_AT_decl_column : 9 + <2992> DW_AT_type : <0x296a> + <2996> DW_AT_data_member_location: 0 + <2><2997>: Abbrev Number: 13 (DW_TAG_member) + <2998> DW_AT_name : (indirect string, offset: 0x1ecb): holder + <299c> DW_AT_decl_file : 7 + <299d> DW_AT_decl_line : 49 + <299e> DW_AT_decl_column : 9 + <299f> DW_AT_type : <0x2873> + <29a3> DW_AT_data_member_location: 24 + <2><29a4>: Abbrev Number: 0 + <1><29a5>: Abbrev Number: 3 (DW_TAG_typedef) + <29a6> DW_AT_name : (indirect string, offset: 0x1ee9): mutex_t + <29aa> DW_AT_decl_file : 7 + <29ab> DW_AT_decl_line : 52 + <29ac> DW_AT_decl_column : 24 + <29ad> DW_AT_type : <0x297d> + <1><29b1>: Abbrev Number: 12 (DW_TAG_structure_type) + <29b2> DW_AT_name : (indirect string, offset: 0x20ec): rmutex_s + <29b6> DW_AT_byte_size : 40 + <29b7> DW_AT_decl_file : 7 + <29b8> DW_AT_decl_line : 54 + <29b9> DW_AT_decl_column : 8 + <29ba> DW_AT_sibling : <0x29d9> + <2><29be>: Abbrev Number: 13 (DW_TAG_member) + <29bf> DW_AT_name : (indirect string, offset: 0x1fb6): mutex + <29c3> DW_AT_decl_file : 7 + <29c4> DW_AT_decl_line : 56 + <29c5> DW_AT_decl_column : 11 + <29c6> DW_AT_type : <0x29a5> + <29ca> DW_AT_data_member_location: 0 + <2><29cb>: Abbrev Number: 13 (DW_TAG_member) + <29cc> DW_AT_name : (indirect string, offset: 0x2077): count + <29d0> DW_AT_decl_file : 7 + <29d1> DW_AT_decl_line : 57 + <29d2> DW_AT_decl_column : 16 + <29d3> DW_AT_type : <0x27f2> + <29d7> DW_AT_data_member_location: 32 + <2><29d8>: Abbrev Number: 0 + <1><29d9>: Abbrev Number: 3 (DW_TAG_typedef) + <29da> DW_AT_name : (indirect string, offset: 0x20f5): rmutex_t + <29de> DW_AT_decl_file : 7 + <29df> DW_AT_decl_line : 60 + <29e0> DW_AT_decl_column : 25 + <29e1> DW_AT_type : <0x29b1> + <1><29e5>: Abbrev Number: 11 (DW_TAG_typedef) + <29e6> DW_AT_name : (indirect string, offset: 0x1ed2): cookie_read_function_t + <29ea> DW_AT_decl_file : 8 + <29eb> DW_AT_decl_line : 441 + <29ed> DW_AT_decl_column : 22 + <29ee> DW_AT_type : <0x29f2> + <1><29f2>: Abbrev Number: 15 (DW_TAG_subroutine_type) + <29f3> DW_AT_prototyped : 1 + <29f3> DW_AT_type : <0x2867> + <29f7> DW_AT_sibling : <0x2a0b> + <2><29fb>: Abbrev Number: 16 (DW_TAG_formal_parameter) + <29fc> DW_AT_type : <0x288b> + <2><2a00>: Abbrev Number: 16 (DW_TAG_formal_parameter) + <2a01> DW_AT_type : <0x288d> + <2><2a05>: Abbrev Number: 16 (DW_TAG_formal_parameter) + <2a06> DW_AT_type : <0x285b> + <2><2a0a>: Abbrev Number: 0 + <1><2a0b>: Abbrev Number: 11 (DW_TAG_typedef) + <2a0c> DW_AT_name : (indirect string, offset: 0x1d2a): cookie_write_function_t + <2a10> DW_AT_decl_file : 8 + <2a11> DW_AT_decl_line : 443 + <2a13> DW_AT_decl_column : 22 + <2a14> DW_AT_type : <0x2a18> + <1><2a18>: Abbrev Number: 15 (DW_TAG_subroutine_type) + <2a19> DW_AT_prototyped : 1 + <2a19> DW_AT_type : <0x2867> + <2a1d> DW_AT_sibling : <0x2a31> + <2><2a21>: Abbrev Number: 16 (DW_TAG_formal_parameter) + <2a22> DW_AT_type : <0x288b> + <2><2a26>: Abbrev Number: 16 (DW_TAG_formal_parameter) + <2a27> DW_AT_type : <0x28b3> + <2><2a2b>: Abbrev Number: 16 (DW_TAG_formal_parameter) + <2a2c> DW_AT_type : <0x285b> + <2><2a30>: Abbrev Number: 0 + <1><2a31>: Abbrev Number: 11 (DW_TAG_typedef) + <2a32> DW_AT_name : (indirect string, offset: 0x203e): cookie_seek_function_t + <2a36> DW_AT_decl_file : 8 + <2a37> DW_AT_decl_line : 446 + <2a39> DW_AT_decl_column : 20 + <2a3a> DW_AT_type : <0x2a3e> + <1><2a3e>: Abbrev Number: 15 (DW_TAG_subroutine_type) + <2a3f> DW_AT_prototyped : 1 + <2a3f> DW_AT_type : <0x287f> + <2a43> DW_AT_sibling : <0x2a57> + <2><2a47>: Abbrev Number: 16 (DW_TAG_formal_parameter) + <2a48> DW_AT_type : <0x288b> + <2><2a4c>: Abbrev Number: 16 (DW_TAG_formal_parameter) + <2a4d> DW_AT_type : <0x2a57> + <2><2a51>: Abbrev Number: 16 (DW_TAG_formal_parameter) + <2a52> DW_AT_type : <0x27eb> + <2><2a56>: Abbrev Number: 0 + <1><2a57>: Abbrev Number: 7 (DW_TAG_pointer_type) + <2a58> DW_AT_byte_size : 8 + <2a59> DW_AT_type : <0x287f> + <1><2a5d>: Abbrev Number: 11 (DW_TAG_typedef) + <2a5e> DW_AT_name : (indirect string, offset: 0x1d4b): cookie_close_function_t + <2a62> DW_AT_decl_file : 8 + <2a63> DW_AT_decl_line : 449 + <2a65> DW_AT_decl_column : 18 + <2a66> DW_AT_type : <0x2a6a> + <1><2a6a>: Abbrev Number: 15 (DW_TAG_subroutine_type) + <2a6b> DW_AT_prototyped : 1 + <2a6b> DW_AT_type : <0x27eb> + <2a6f> DW_AT_sibling : <0x2a79> + <2><2a73>: Abbrev Number: 16 (DW_TAG_formal_parameter) + <2a74> DW_AT_type : <0x288b> + <2><2a78>: Abbrev Number: 0 + <1><2a79>: Abbrev Number: 9 (DW_TAG_structure_type) + <2a7a> DW_AT_name : (indirect string, offset: 0x1e3a): cookie_io_functions_t + <2a7e> DW_AT_byte_size : 32 + <2a7f> DW_AT_decl_file : 8 + <2a80> DW_AT_decl_line : 451 + <2a82> DW_AT_decl_column : 16 + <2a83> DW_AT_sibling : <0x2ac0> + <2><2a87>: Abbrev Number: 10 (DW_TAG_member) + <2a88> DW_AT_name : (indirect string, offset: 0x1e77): read + <2a8c> DW_AT_decl_file : 8 + <2a8d> DW_AT_decl_line : 453 + <2a8f> DW_AT_decl_column : 31 + <2a90> DW_AT_type : <0x2ac0> + <2a94> DW_AT_data_member_location: 0 + <2><2a95>: Abbrev Number: 10 (DW_TAG_member) + <2a96> DW_AT_name : (indirect string, offset: 0x2082): write + <2a9a> DW_AT_decl_file : 8 + <2a9b> DW_AT_decl_line : 454 + <2a9d> DW_AT_decl_column : 32 + <2a9e> DW_AT_type : <0x2ac6> + <2aa2> DW_AT_data_member_location: 8 + <2><2aa3>: Abbrev Number: 10 (DW_TAG_member) + <2aa4> DW_AT_name : (indirect string, offset: 0x2090): seek + <2aa8> DW_AT_decl_file : 8 + <2aa9> DW_AT_decl_line : 455 + <2aab> DW_AT_decl_column : 31 + <2aac> DW_AT_type : <0x2acc> + <2ab0> DW_AT_data_member_location: 16 + <2><2ab1>: Abbrev Number: 10 (DW_TAG_member) + <2ab2> DW_AT_name : (indirect string, offset: 0x1cd5): close + <2ab6> DW_AT_decl_file : 8 + <2ab7> DW_AT_decl_line : 456 + <2ab9> DW_AT_decl_column : 32 + <2aba> DW_AT_type : <0x2ad2> + <2abe> DW_AT_data_member_location: 24 + <2><2abf>: Abbrev Number: 0 + <1><2ac0>: Abbrev Number: 7 (DW_TAG_pointer_type) + <2ac1> DW_AT_byte_size : 8 + <2ac2> DW_AT_type : <0x29e5> + <1><2ac6>: Abbrev Number: 7 (DW_TAG_pointer_type) + <2ac7> DW_AT_byte_size : 8 + <2ac8> DW_AT_type : <0x2a0b> + <1><2acc>: Abbrev Number: 7 (DW_TAG_pointer_type) + <2acd> DW_AT_byte_size : 8 + <2ace> DW_AT_type : <0x2a31> + <1><2ad2>: Abbrev Number: 7 (DW_TAG_pointer_type) + <2ad3> DW_AT_byte_size : 8 + <2ad4> DW_AT_type : <0x2a5d> + <1><2ad8>: Abbrev Number: 11 (DW_TAG_typedef) + <2ad9> DW_AT_name : (indirect string, offset: 0x1e3a): cookie_io_functions_t + <2add> DW_AT_decl_file : 8 + <2ade> DW_AT_decl_line : 457 + <2ae0> DW_AT_decl_column : 3 + <2ae1> DW_AT_type : <0x2a79> + <1><2ae5>: Abbrev Number: 9 (DW_TAG_structure_type) + <2ae6> DW_AT_name : (indirect string, offset: 0x1ef1): file_struct + <2aea> DW_AT_byte_size : 192 + <2aeb> DW_AT_decl_file : 8 + <2aec> DW_AT_decl_line : 526 + <2aee> DW_AT_decl_column : 8 + <2aef> DW_AT_sibling : <0x2baa> + <2><2af3>: Abbrev Number: 10 (DW_TAG_member) + <2af4> DW_AT_name : (indirect string, offset: 0x2021): fs_next + <2af8> DW_AT_decl_file : 8 + <2af9> DW_AT_decl_line : 528 + <2afb> DW_AT_decl_column : 27 + <2afc> DW_AT_type : <0x2baa> + <2b00> DW_AT_data_member_location: 0 + <2><2b01>: Abbrev Number: 10 (DW_TAG_member) + <2b02> DW_AT_name : (indirect string, offset: 0x2095): fs_lock + <2b06> DW_AT_decl_file : 8 + <2b07> DW_AT_decl_line : 529 + <2b09> DW_AT_decl_column : 27 + <2b0a> DW_AT_type : <0x29d9> + <2b0e> DW_AT_data_member_location: 8 + <2><2b0f>: Abbrev Number: 10 (DW_TAG_member) + <2b10> DW_AT_name : (indirect string, offset: 0x2034): fs_iofunc + <2b14> DW_AT_decl_file : 8 + <2b15> DW_AT_decl_line : 530 + <2b17> DW_AT_decl_column : 27 + <2b18> DW_AT_type : <0x2ad8> + <2b1c> DW_AT_data_member_location: 48 + <2><2b1d>: Abbrev Number: 10 (DW_TAG_member) + <2b1e> DW_AT_name : (indirect string, offset: 0x206d): fs_cookie + <2b22> DW_AT_decl_file : 8 + <2b23> DW_AT_decl_line : 531 + <2b25> DW_AT_decl_column : 27 + <2b26> DW_AT_type : <0x288b> + <2b2a> DW_AT_data_member_location: 80 + <2><2b2b>: Abbrev Number: 10 (DW_TAG_member) + <2b2c> DW_AT_name : (indirect string, offset: 0x20a8): fs_bufstart + <2b30> DW_AT_decl_file : 8 + <2b31> DW_AT_decl_line : 533 + <2b33> DW_AT_decl_column : 27 + <2b34> DW_AT_type : <0x288d> + <2b38> DW_AT_data_member_location: 88 + <2><2b39>: Abbrev Number: 10 (DW_TAG_member) + <2b3a> DW_AT_name : (indirect string, offset: 0x1e23): fs_bufend + <2b3e> DW_AT_decl_file : 8 + <2b3f> DW_AT_decl_line : 534 + <2b41> DW_AT_decl_column : 27 + <2b42> DW_AT_type : <0x288d> + <2b46> DW_AT_data_member_location: 96 + <2><2b47>: Abbrev Number: 10 (DW_TAG_member) + <2b48> DW_AT_name : (indirect string, offset: 0x1e6d): fs_bufpos + <2b4c> DW_AT_decl_file : 8 + <2b4d> DW_AT_decl_line : 535 + <2b4f> DW_AT_decl_column : 27 + <2b50> DW_AT_type : <0x288d> + <2b54> DW_AT_data_member_location: 104 + <2><2b55>: Abbrev Number: 10 (DW_TAG_member) + <2b56> DW_AT_name : (indirect string, offset: 0x1e62): fs_bufread + <2b5a> DW_AT_decl_file : 8 + <2b5b> DW_AT_decl_line : 536 + <2b5d> DW_AT_decl_column : 27 + <2b5e> DW_AT_type : <0x288d> + <2b62> DW_AT_data_member_location: 112 + <2><2b63>: Abbrev Number: 10 (DW_TAG_member) + <2b64> DW_AT_name : (indirect string, offset: 0x2055): fs_buffer + <2b68> DW_AT_decl_file : 8 + <2b69> DW_AT_decl_line : 538 + <2b6b> DW_AT_decl_column : 27 + <2b6c> DW_AT_type : <0x2bb0> + <2b70> DW_AT_data_member_location: 120 + <2><2b71>: Abbrev Number: 10 (DW_TAG_member) + <2b72> DW_AT_name : (indirect string, offset: 0x1fa7): fs_oflags + <2b76> DW_AT_decl_file : 8 + <2b77> DW_AT_decl_line : 541 + <2b79> DW_AT_decl_column : 27 + <2b7a> DW_AT_type : <0x2843> + <2b7e> DW_AT_data_member_location: 184 + <2><2b7f>: Abbrev Number: 10 (DW_TAG_member) + <2b80> DW_AT_name : (indirect string, offset: 0x20d8): fs_flags + <2b84> DW_AT_decl_file : 8 + <2b85> DW_AT_decl_line : 542 + <2b87> DW_AT_decl_column : 27 + <2b88> DW_AT_type : <0x2826> + <2b8c> DW_AT_data_member_location: 186 + <2><2b8d>: Abbrev Number: 10 (DW_TAG_member) + <2b8e> DW_AT_name : (indirect string, offset: 0x20be): fs_nungotten + <2b92> DW_AT_decl_file : 8 + <2b93> DW_AT_decl_line : 544 + <2b95> DW_AT_decl_column : 27 + <2b96> DW_AT_type : <0x2826> + <2b9a> DW_AT_data_member_location: 187 + <2><2b9b>: Abbrev Number: 10 (DW_TAG_member) + <2b9c> DW_AT_name : (indirect string, offset: 0x1cf2): fs_ungotten + <2ba0> DW_AT_decl_file : 8 + <2ba1> DW_AT_decl_line : 545 + <2ba3> DW_AT_decl_column : 27 + <2ba4> DW_AT_type : <0x2bc0> + <2ba8> DW_AT_data_member_location: 188 + <2><2ba9>: Abbrev Number: 0 + <1><2baa>: Abbrev Number: 7 (DW_TAG_pointer_type) + <2bab> DW_AT_byte_size : 8 + <2bac> DW_AT_type : <0x2ae5> + <1><2bb0>: Abbrev Number: 17 (DW_TAG_array_type) + <2bb1> DW_AT_type : <0x2893> + <2bb5> DW_AT_sibling : <0x2bc0> + <2><2bb9>: Abbrev Number: 18 (DW_TAG_subrange_type) + <2bba> DW_AT_type : <0x2800> + <2bbe> DW_AT_upper_bound : 63 + <2><2bbf>: Abbrev Number: 0 + <1><2bc0>: Abbrev Number: 17 (DW_TAG_array_type) + <2bc1> DW_AT_type : <0x2893> + <2bc5> DW_AT_sibling : <0x2bd0> + <2><2bc9>: Abbrev Number: 18 (DW_TAG_subrange_type) + <2bca> DW_AT_type : <0x2800> + <2bce> DW_AT_upper_bound : 1 + <2><2bcf>: Abbrev Number: 0 + <1><2bd0>: Abbrev Number: 19 (DW_TAG_structure_type) + <2bd1> DW_AT_name : (indirect string, offset: 0x1d1f): streamlist + <2bd5> DW_AT_byte_size : 624 + <2bd7> DW_AT_decl_file : 8 + <2bd8> DW_AT_decl_line : 549 + <2bda> DW_AT_decl_column : 8 + <2bdb> DW_AT_sibling : <0x2c1a> + <2><2bdf>: Abbrev Number: 10 (DW_TAG_member) + <2be0> DW_AT_name : (indirect string, offset: 0x1f31): sl_lock + <2be4> DW_AT_decl_file : 8 + <2be5> DW_AT_decl_line : 551 + <2be7> DW_AT_decl_column : 27 + <2be8> DW_AT_type : <0x29a5> + <2bec> DW_AT_data_member_location: 0 + <2><2bed>: Abbrev Number: 10 (DW_TAG_member) + <2bee> DW_AT_name : (indirect string, offset: 0x1d07): sl_std + <2bf2> DW_AT_decl_file : 8 + <2bf3> DW_AT_decl_line : 552 + <2bf5> DW_AT_decl_column : 27 + <2bf6> DW_AT_type : <0x2c1a> + <2bfa> DW_AT_data_member_location: 32 + <2><2bfb>: Abbrev Number: 20 (DW_TAG_member) + <2bfc> DW_AT_name : (indirect string, offset: 0x1cdb): sl_head + <2c00> DW_AT_decl_file : 8 + <2c01> DW_AT_decl_line : 553 + <2c03> DW_AT_decl_column : 27 + <2c04> DW_AT_type : <0x2baa> + <2c08> DW_AT_data_member_location: 608 + <2><2c0a>: Abbrev Number: 20 (DW_TAG_member) + <2c0b> DW_AT_name : (indirect string, offset: 0x205f): sl_tail + <2c0f> DW_AT_decl_file : 8 + <2c10> DW_AT_decl_line : 554 + <2c12> DW_AT_decl_column : 27 + <2c13> DW_AT_type : <0x2baa> + <2c17> DW_AT_data_member_location: 616 + <2><2c19>: Abbrev Number: 0 + <1><2c1a>: Abbrev Number: 17 (DW_TAG_array_type) + <2c1b> DW_AT_type : <0x2ae5> + <2c1f> DW_AT_sibling : <0x2c2a> + <2><2c23>: Abbrev Number: 18 (DW_TAG_subrange_type) + <2c24> DW_AT_type : <0x2800> + <2c28> DW_AT_upper_bound : 2 + <2><2c29>: Abbrev Number: 0 + <1><2c2a>: Abbrev Number: 21 (DW_TAG_structure_type) + <2c2b> DW_AT_name : (indirect string, offset: 0x1fbc): task_info_s + <2c2f> DW_AT_byte_size : 664 + <2c31> DW_AT_decl_file : 9 + <2c32> DW_AT_decl_line : 116 + <2c33> DW_AT_decl_column : 8 + <2c34> DW_AT_sibling : <0x2c60> + <2><2c38>: Abbrev Number: 13 (DW_TAG_member) + <2c39> DW_AT_name : (indirect string, offset: 0x1d6b): ta_lock + <2c3d> DW_AT_decl_file : 9 + <2c3e> DW_AT_decl_line : 118 + <2c3f> DW_AT_decl_column : 19 + <2c40> DW_AT_type : <0x29a5> + <2c44> DW_AT_data_member_location: 0 + <2><2c45>: Abbrev Number: 13 (DW_TAG_member) + <2c46> DW_AT_name : (indirect string, offset: 0x1fb1): argv + <2c4a> DW_AT_decl_file : 9 + <2c4b> DW_AT_decl_line : 119 + <2c4c> DW_AT_decl_column : 19 + <2c4d> DW_AT_type : <0x289f> + <2c51> DW_AT_data_member_location: 32 + <2><2c52>: Abbrev Number: 13 (DW_TAG_member) + <2c53> DW_AT_name : (indirect string, offset: 0x1fc8): ta_streamlist + <2c57> DW_AT_decl_file : 9 + <2c58> DW_AT_decl_line : 137 + <2c59> DW_AT_decl_column : 21 + <2c5a> DW_AT_type : <0x2bd0> + <2c5e> DW_AT_data_member_location: 40 + <2><2c5f>: Abbrev Number: 0 + <1><2c60>: Abbrev Number: 7 (DW_TAG_pointer_type) + <2c61> DW_AT_byte_size : 8 + <2c62> DW_AT_type : <0x2c2a> + <1><2c66>: Abbrev Number: 22 (DW_TAG_subprogram) + <2c67> DW_AT_external : 1 + <2c67> DW_AT_name : (indirect string, offset: 0x1ce3): lib_get_stream + <2c6b> DW_AT_decl_file : 10 + <2c6c> DW_AT_decl_line : 112 + <2c6d> DW_AT_decl_column : 25 + <2c6e> DW_AT_prototyped : 1 + <2c6e> DW_AT_type : <0x2baa> + <2c72> DW_AT_low_pc : 0x464 + <2c7a> DW_AT_high_pc : 0x26 + <2c82> DW_AT_frame_base : 1 byte block: 9c (DW_OP_call_frame_cfa) + <2c84> DW_AT_GNU_all_call_sites: 1 + <2c84> DW_AT_sibling : <0x2cc5> + <2><2c88>: Abbrev Number: 23 (DW_TAG_formal_parameter) + <2c89> DW_AT_name : fd + <2c8c> DW_AT_decl_file : 1 + <2c8d> DW_AT_decl_line : 70 + <2c8e> DW_AT_decl_column : 44 + <2c8f> DW_AT_type : <0x27eb> + <2c93> DW_AT_location : 0x104d (location list) + <2><2c97>: Abbrev Number: 24 (DW_TAG_inlined_subroutine) + <2c98> DW_AT_abstract_origin: <0x2cc5> + <2c9c> DW_AT_entry_pc : 0x464 + <2ca4> DW_AT_ranges : 0x1f0 + <2ca8> DW_AT_call_file : 1 + <2ca9> DW_AT_call_line : 72 + <2caa> DW_AT_call_column : 11 + <3><2cab>: Abbrev Number: 25 (DW_TAG_lexical_block) + <2cac> DW_AT_ranges : 0x1f0 + <4><2cb0>: Abbrev Number: 26 (DW_TAG_variable) + <2cb1> DW_AT_abstract_origin: <0x2cd6> + <4><2cb5>: Abbrev Number: 27 (DW_TAG_GNU_call_site) + <2cb6> DW_AT_low_pc : 0x474 + <2cbe> DW_AT_abstract_origin: <0x2d1b> + <4><2cc2>: Abbrev Number: 0 + <3><2cc3>: Abbrev Number: 0 + <2><2cc4>: Abbrev Number: 0 + <1><2cc5>: Abbrev Number: 28 (DW_TAG_subprogram) + <2cc6> DW_AT_external : 1 + <2cc6> DW_AT_name : (indirect string, offset: 0x1fd6): lib_get_streams + <2cca> DW_AT_decl_file : 10 + <2ccb> DW_AT_decl_line : 111 + <2ccc> DW_AT_decl_column : 24 + <2ccd> DW_AT_prototyped : 1 + <2ccd> DW_AT_type : <0x2ce3> + <2cd1> DW_AT_inline : 1 (inlined) + <2cd2> DW_AT_sibling : <0x2ce3> + <2><2cd6>: Abbrev Number: 29 (DW_TAG_variable) + <2cd7> DW_AT_name : (indirect string, offset: 0x207d): info + <2cdb> DW_AT_decl_file : 1 + <2cdc> DW_AT_decl_line : 55 + <2cdd> DW_AT_decl_column : 27 + <2cde> DW_AT_type : <0x2c60> + <2><2ce2>: Abbrev Number: 0 + <1><2ce3>: Abbrev Number: 7 (DW_TAG_pointer_type) + <2ce4> DW_AT_byte_size : 8 + <2ce5> DW_AT_type : <0x2bd0> + <1><2ce9>: Abbrev Number: 30 (DW_TAG_subprogram) + <2cea> DW_AT_abstract_origin: <0x2cc5> + <2cee> DW_AT_low_pc : 0x44e + <2cf6> DW_AT_high_pc : 0x16 + <2cfe> DW_AT_frame_base : 1 byte block: 9c (DW_OP_call_frame_cfa) + <2d00> DW_AT_GNU_all_call_sites: 1 + <2d00> DW_AT_sibling : <0x2d1b> + <2><2d04>: Abbrev Number: 31 (DW_TAG_variable) + <2d05> DW_AT_abstract_origin: <0x2cd6> + <2d09> DW_AT_location : 0x1086 (location list) + <2><2d0d>: Abbrev Number: 27 (DW_TAG_GNU_call_site) + <2d0e> DW_AT_low_pc : 0x45a + <2d16> DW_AT_abstract_origin: <0x2d1b> + <2><2d1a>: Abbrev Number: 0 + <1><2d1b>: Abbrev Number: 32 (DW_TAG_subprogram) + <2d1c> DW_AT_external : 1 + <2d1c> DW_AT_declaration : 1 + <2d1c> DW_AT_linkage_name: (indirect string, offset: 0x1f87): task_get_info + <2d20> DW_AT_name : (indirect string, offset: 0x1f87): task_get_info + <2d24> DW_AT_decl_file : 9 + <2d25> DW_AT_decl_line : 355 + <2d27> DW_AT_decl_column : 25 + <1><2d28>: Abbrev Number: 0 + Compilation Unit @ offset 0x2d29: + Length: 0x1d6 (32-bit) + Version: 4 + Abbrev Offset: 0xdb5 + Pointer Size: 8 + <0><2d34>: Abbrev Number: 1 (DW_TAG_compile_unit) + <2d35> DW_AT_producer : (indirect string, offset: 0x2221): GNU C17 10.2.0 -mcmodel=medany -march=rv64imafdc -mabi=lp64d -march=rv64imafdc -g -Os -fno-common -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections + <2d39> DW_AT_language : 12 (ANSI C99) + <2d3a> DW_AT_name : (indirect string, offset: 0x2128): stdlib/lib_exit.c + <2d3e> DW_AT_comp_dir : (indirect string, offset: 0x21ff): /Users/Luppy/ox64/nuttx/libs/libc + <2d42> DW_AT_ranges : 0x250 + <2d46> DW_AT_low_pc : 0x0 + <2d4e> DW_AT_stmt_list : 0x173a + <1><2d52>: Abbrev Number: 2 (DW_TAG_base_type) + <2d53> DW_AT_byte_size : 1 + <2d54> DW_AT_encoding : 6 (signed char) + <2d55> DW_AT_name : (indirect string, offset: 0x21d8): signed char + <1><2d59>: Abbrev Number: 2 (DW_TAG_base_type) + <2d5a> DW_AT_byte_size : 1 + <2d5b> DW_AT_encoding : 8 (unsigned char) + <2d5c> DW_AT_name : (indirect string, offset: 0x2191): unsigned char + <1><2d60>: Abbrev Number: 2 (DW_TAG_base_type) + <2d61> DW_AT_byte_size : 2 + <2d62> DW_AT_encoding : 5 (signed) + <2d63> DW_AT_name : (indirect string, offset: 0x21f5): short int + <1><2d67>: Abbrev Number: 2 (DW_TAG_base_type) + <2d68> DW_AT_byte_size : 2 + <2d69> DW_AT_encoding : 7 (unsigned) + <2d6a> DW_AT_name : (indirect string, offset: 0x21c5): short unsigned int + <1><2d6e>: Abbrev Number: 3 (DW_TAG_base_type) + <2d6f> DW_AT_byte_size : 4 + <2d70> DW_AT_encoding : 5 (signed) + <2d71> DW_AT_name : int + <1><2d75>: Abbrev Number: 2 (DW_TAG_base_type) + <2d76> DW_AT_byte_size : 4 + <2d77> DW_AT_encoding : 7 (unsigned) + <2d78> DW_AT_name : (indirect string, offset: 0x2115): unsigned int + <1><2d7c>: Abbrev Number: 2 (DW_TAG_base_type) + <2d7d> DW_AT_byte_size : 8 + <2d7e> DW_AT_encoding : 5 (signed) + <2d7f> DW_AT_name : (indirect string, offset: 0x21b6): long int + <1><2d83>: Abbrev Number: 2 (DW_TAG_base_type) + <2d84> DW_AT_byte_size : 8 + <2d85> DW_AT_encoding : 7 (unsigned) + <2d86> DW_AT_name : (indirect string, offset: 0x2141): long unsigned int + <1><2d8a>: Abbrev Number: 2 (DW_TAG_base_type) + <2d8b> DW_AT_byte_size : 8 + <2d8c> DW_AT_encoding : 7 (unsigned) + <2d8d> DW_AT_name : (indirect string, offset: 0x2167): long long unsigned int + <1><2d91>: Abbrev Number: 4 (DW_TAG_pointer_type) + <2d92> DW_AT_byte_size : 8 + <1><2d93>: Abbrev Number: 2 (DW_TAG_base_type) + <2d94> DW_AT_byte_size : 1 + <2d95> DW_AT_encoding : 8 (unsigned char) + <2d96> DW_AT_name : (indirect string, offset: 0x21aa): char + <1><2d9a>: Abbrev Number: 2 (DW_TAG_base_type) + <2d9b> DW_AT_byte_size : 8 + <2d9c> DW_AT_encoding : 5 (signed) + <2d9d> DW_AT_name : (indirect string, offset: 0x2107): long long int + <1><2da1>: Abbrev Number: 2 (DW_TAG_base_type) + <2da2> DW_AT_byte_size : 16 + <2da3> DW_AT_encoding : 4 (float) + <2da4> DW_AT_name : (indirect string, offset: 0x21e4): long double + <1><2da8>: Abbrev Number: 2 (DW_TAG_base_type) + <2da9> DW_AT_byte_size : 1 + <2daa> DW_AT_encoding : 2 (boolean) + <2dab> DW_AT_name : (indirect string, offset: 0x21bf): _Bool + <1><2daf>: Abbrev Number: 5 (DW_TAG_variable) + <2db0> DW_AT_name : (indirect string, offset: 0x2184): __dso_handle + <2db4> DW_AT_decl_file : 1 + <2db5> DW_AT_decl_line : 47 + <2db6> DW_AT_decl_column : 18 + <2db7> DW_AT_type : <0x2d91> + <2dbb> DW_AT_external : 1 + <2dbb> DW_AT_declaration : 1 + <1><2dbb>: Abbrev Number: 6 (DW_TAG_variable) + <2dbc> DW_AT_specification: <0x2daf> + <2dc0> DW_AT_decl_line : 50 + <2dc1> DW_AT_decl_column : 11 + <2dc2> DW_AT_location : 9 byte block: 3 0 0 0 0 0 0 0 0 (DW_OP_addr: 0) + <1><2dcc>: Abbrev Number: 7 (DW_TAG_subprogram) + <2dcd> DW_AT_external : 1 + <2dcd> DW_AT_name : (indirect string, offset: 0x2122): _Exit + <2dd1> DW_AT_decl_file : 2 + <2dd2> DW_AT_decl_line : 178 + <2dd3> DW_AT_decl_column : 11 + <2dd4> DW_AT_prototyped : 1 + <2dd4> DW_AT_noreturn : 1 + <2dd4> DW_AT_low_pc : 0x4d0 + <2ddc> DW_AT_high_pc : 0xc + <2de4> DW_AT_frame_base : 1 byte block: 9c (DW_OP_call_frame_cfa) + <2de6> DW_AT_GNU_all_call_sites: 1 + <2de6> DW_AT_sibling : <0x2e08> + <2><2dea>: Abbrev Number: 8 (DW_TAG_formal_parameter) + <2deb> DW_AT_name : (indirect string, offset: 0x213a): status + <2def> DW_AT_decl_file : 1 + <2df0> DW_AT_decl_line : 189 + <2df1> DW_AT_decl_column : 16 + <2df2> DW_AT_type : <0x2d6e> + <2df6> DW_AT_location : 0x10be (location list) + <2><2dfa>: Abbrev Number: 9 (DW_TAG_GNU_call_site) + <2dfb> DW_AT_low_pc : 0x4dc + <2e03> DW_AT_abstract_origin: <0x2edd> + <2><2e07>: Abbrev Number: 0 + <1><2e08>: Abbrev Number: 7 (DW_TAG_subprogram) + <2e09> DW_AT_external : 1 + <2e09> DW_AT_name : (indirect string, offset: 0x219f): quick_exit + <2e0d> DW_AT_decl_file : 2 + <2e0e> DW_AT_decl_line : 170 + <2e0f> DW_AT_decl_column : 11 + <2e10> DW_AT_prototyped : 1 + <2e10> DW_AT_noreturn : 1 + <2e10> DW_AT_low_pc : 0x4b2 + <2e18> DW_AT_high_pc : 0x1e + <2e20> DW_AT_frame_base : 1 byte block: 9c (DW_OP_call_frame_cfa) + <2e22> DW_AT_GNU_all_call_sites: 1 + <2e22> DW_AT_sibling : <0x2e67> + <2><2e26>: Abbrev Number: 8 (DW_TAG_formal_parameter) + <2e27> DW_AT_name : (indirect string, offset: 0x213a): status + <2e2b> DW_AT_decl_file : 1 + <2e2c> DW_AT_decl_line : 146 + <2e2d> DW_AT_decl_column : 21 + <2e2e> DW_AT_type : <0x2d6e> + <2e32> DW_AT_location : 0x10f7 (location list) + <2><2e36>: Abbrev Number: 10 (DW_TAG_GNU_call_site) + <2e37> DW_AT_low_pc : 0x4c6 + <2e3f> DW_AT_abstract_origin: <0x2eea> + <2e43> DW_AT_sibling : <0x2e52> + <3><2e47>: Abbrev Number: 11 (DW_TAG_GNU_call_site_parameter) + <2e48> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <2e4a> DW_AT_GNU_call_site_value: 1 byte block: 31 (DW_OP_lit1) + <3><2e4c>: Abbrev Number: 11 (DW_TAG_GNU_call_site_parameter) + <2e4d> DW_AT_location : 1 byte block: 5b (DW_OP_reg11 (a1)) + <2e4f> DW_AT_GNU_call_site_value: 1 byte block: 30 (DW_OP_lit0) + <3><2e51>: Abbrev Number: 0 + <2><2e52>: Abbrev Number: 12 (DW_TAG_GNU_call_site) + <2e53> DW_AT_low_pc : 0x4d0 + <2e5b> DW_AT_abstract_origin: <0x2edd> + <3><2e5f>: Abbrev Number: 11 (DW_TAG_GNU_call_site_parameter) + <2e60> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <2e62> DW_AT_GNU_call_site_value: 2 byte block: 78 0 (DW_OP_breg8 (s0): 0) + <3><2e65>: Abbrev Number: 0 + <2><2e66>: Abbrev Number: 0 + <1><2e67>: Abbrev Number: 7 (DW_TAG_subprogram) + <2e68> DW_AT_external : 1 + <2e68> DW_AT_name : (indirect string, offset: 0x21f0): exit + <2e6c> DW_AT_decl_file : 2 + <2e6d> DW_AT_decl_line : 169 + <2e6e> DW_AT_decl_column : 11 + <2e6f> DW_AT_prototyped : 1 + <2e6f> DW_AT_noreturn : 1 + <2e6f> DW_AT_low_pc : 0x48a + <2e77> DW_AT_high_pc : 0x28 + <2e7f> DW_AT_frame_base : 1 byte block: 9c (DW_OP_call_frame_cfa) + <2e81> DW_AT_GNU_all_call_sites: 1 + <2e81> DW_AT_sibling : <0x2edd> + <2><2e85>: Abbrev Number: 8 (DW_TAG_formal_parameter) + <2e86> DW_AT_name : (indirect string, offset: 0x213a): status + <2e8a> DW_AT_decl_file : 1 + <2e8b> DW_AT_decl_line : 93 + <2e8c> DW_AT_decl_column : 15 + <2e8d> DW_AT_type : <0x2d6e> + <2e91> DW_AT_location : 0x1130 (location list) + <2><2e95>: Abbrev Number: 10 (DW_TAG_GNU_call_site) + <2e96> DW_AT_low_pc : 0x49e + <2e9e> DW_AT_abstract_origin: <0x2eea> + <2ea2> DW_AT_sibling : <0x2eb1> + <3><2ea6>: Abbrev Number: 11 (DW_TAG_GNU_call_site_parameter) + <2ea7> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <2ea9> DW_AT_GNU_call_site_value: 1 byte block: 31 (DW_OP_lit1) + <3><2eab>: Abbrev Number: 11 (DW_TAG_GNU_call_site_parameter) + <2eac> DW_AT_location : 1 byte block: 5b (DW_OP_reg11 (a1)) + <2eae> DW_AT_GNU_call_site_value: 1 byte block: 30 (DW_OP_lit0) + <3><2eb0>: Abbrev Number: 0 + <2><2eb1>: Abbrev Number: 10 (DW_TAG_GNU_call_site) + <2eb2> DW_AT_low_pc : 0x4a8 + <2eba> DW_AT_abstract_origin: <0x2ef6> + <2ebe> DW_AT_sibling : <0x2ec8> + <3><2ec2>: Abbrev Number: 11 (DW_TAG_GNU_call_site_parameter) + <2ec3> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <2ec5> DW_AT_GNU_call_site_value: 1 byte block: 30 (DW_OP_lit0) + <3><2ec7>: Abbrev Number: 0 + <2><2ec8>: Abbrev Number: 12 (DW_TAG_GNU_call_site) + <2ec9> DW_AT_low_pc : 0x4b2 + <2ed1> DW_AT_abstract_origin: <0x2edd> + <3><2ed5>: Abbrev Number: 11 (DW_TAG_GNU_call_site_parameter) + <2ed6> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <2ed8> DW_AT_GNU_call_site_value: 2 byte block: 78 0 (DW_OP_breg8 (s0): 0) + <3><2edb>: Abbrev Number: 0 + <2><2edc>: Abbrev Number: 0 + <1><2edd>: Abbrev Number: 13 (DW_TAG_subprogram) + <2ede> DW_AT_external : 1 + <2ede> DW_AT_declaration : 1 + <2ede> DW_AT_linkage_name: (indirect string, offset: 0x217e): _exit + <2ee2> DW_AT_name : (indirect string, offset: 0x217e): _exit + <2ee6> DW_AT_decl_file : 3 + <2ee7> DW_AT_decl_line : 318 + <2ee9> DW_AT_decl_column : 9 + <1><2eea>: Abbrev Number: 14 (DW_TAG_subprogram) + <2eeb> DW_AT_external : 1 + <2eeb> DW_AT_declaration : 1 + <2eeb> DW_AT_linkage_name: (indirect string, offset: 0x2153): task_setcancelstate + <2eef> DW_AT_name : (indirect string, offset: 0x2153): task_setcancelstate + <2ef3> DW_AT_decl_file : 4 + <2ef4> DW_AT_decl_line : 232 + <2ef5> DW_AT_decl_column : 8 + <1><2ef6>: Abbrev Number: 14 (DW_TAG_subprogram) + <2ef7> DW_AT_external : 1 + <2ef7> DW_AT_declaration : 1 + <2ef7> DW_AT_linkage_name: (indirect string, offset: 0x21af): fflush + <2efb> DW_AT_name : (indirect string, offset: 0x21af): fflush + <2eff> DW_AT_decl_file : 5 + <2f00> DW_AT_decl_line : 144 + <2f01> DW_AT_decl_column : 8 + <1><2f02>: Abbrev Number: 0 + Compilation Unit @ offset 0x2f03: + Length: 0xe0 (32-bit) + Version: 4 + Abbrev Offset: 0xe8b + Pointer Size: 8 + <0><2f0e>: Abbrev Number: 1 (DW_TAG_compile_unit) + <2f0f> DW_AT_producer : (indirect string, offset: 0x233d): GNU C17 10.2.0 -mcmodel=medany -march=rv64imafdc -mabi=lp64d -march=rv64imafdc -g -Os -fno-common -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections + <2f13> DW_AT_language : 12 (ANSI C99) + <2f14> DW_AT_name : (indirect string, offset: 0x22e6): string/lib_strlen.c + <2f18> DW_AT_comp_dir : (indirect string, offset: 0x2446): /Users/Luppy/ox64/nuttx/libs/libc + <2f1c> DW_AT_ranges : 0x290 + <2f20> DW_AT_low_pc : 0x0 + <2f28> DW_AT_stmt_list : 0x18b2 + <1><2f2c>: Abbrev Number: 2 (DW_TAG_base_type) + <2f2d> DW_AT_byte_size : 1 + <2f2e> DW_AT_encoding : 6 (signed char) + <2f2f> DW_AT_name : (indirect string, offset: 0x240f): signed char + <1><2f33>: Abbrev Number: 2 (DW_TAG_base_type) + <2f34> DW_AT_byte_size : 1 + <2f35> DW_AT_encoding : 8 (unsigned char) + <2f36> DW_AT_name : (indirect string, offset: 0x232a): unsigned char + <1><2f3a>: Abbrev Number: 2 (DW_TAG_base_type) + <2f3b> DW_AT_byte_size : 2 + <2f3c> DW_AT_encoding : 5 (signed) + <2f3d> DW_AT_name : (indirect string, offset: 0x242f): short int + <1><2f41>: Abbrev Number: 2 (DW_TAG_base_type) + <2f42> DW_AT_byte_size : 2 + <2f43> DW_AT_encoding : 7 (unsigned) + <2f44> DW_AT_name : (indirect string, offset: 0x23fc): short unsigned int + <1><2f48>: Abbrev Number: 3 (DW_TAG_base_type) + <2f49> DW_AT_byte_size : 4 + <2f4a> DW_AT_encoding : 5 (signed) + <2f4b> DW_AT_name : int + <1><2f4f>: Abbrev Number: 2 (DW_TAG_base_type) + <2f50> DW_AT_byte_size : 4 + <2f51> DW_AT_encoding : 7 (unsigned) + <2f52> DW_AT_name : (indirect string, offset: 0x2439): unsigned int + <1><2f56>: Abbrev Number: 2 (DW_TAG_base_type) + <2f57> DW_AT_byte_size : 8 + <2f58> DW_AT_encoding : 5 (signed) + <2f59> DW_AT_name : (indirect string, offset: 0x23ed): long int + <1><2f5d>: Abbrev Number: 2 (DW_TAG_base_type) + <2f5e> DW_AT_byte_size : 8 + <2f5f> DW_AT_encoding : 7 (unsigned) + <2f60> DW_AT_name : (indirect string, offset: 0x2301): long unsigned int + <1><2f64>: Abbrev Number: 4 (DW_TAG_typedef) + <2f65> DW_AT_name : (indirect string, offset: 0x2427): _size_t + <2f69> DW_AT_decl_file : 2 + <2f6a> DW_AT_decl_line : 93 + <2f6b> DW_AT_decl_column : 28 + <2f6c> DW_AT_type : <0x2f5d> + <1><2f70>: Abbrev Number: 2 (DW_TAG_base_type) + <2f71> DW_AT_byte_size : 8 + <2f72> DW_AT_encoding : 7 (unsigned) + <2f73> DW_AT_name : (indirect string, offset: 0x2313): long long unsigned int + <1><2f77>: Abbrev Number: 4 (DW_TAG_typedef) + <2f78> DW_AT_name : (indirect string, offset: 0x22fa): size_t + <2f7c> DW_AT_decl_file : 3 + <2f7d> DW_AT_decl_line : 133 + <2f7e> DW_AT_decl_column : 22 + <2f7f> DW_AT_type : <0x2f64> + <1><2f83>: Abbrev Number: 2 (DW_TAG_base_type) + <2f84> DW_AT_byte_size : 1 + <2f85> DW_AT_encoding : 8 (unsigned char) + <2f86> DW_AT_name : (indirect string, offset: 0x2338): char + <1><2f8a>: Abbrev Number: 5 (DW_TAG_const_type) + <2f8b> DW_AT_type : <0x2f83> + <1><2f8f>: Abbrev Number: 2 (DW_TAG_base_type) + <2f90> DW_AT_byte_size : 8 + <2f91> DW_AT_encoding : 5 (signed) + <2f92> DW_AT_name : (indirect string, offset: 0x22d1): long long int + <1><2f96>: Abbrev Number: 2 (DW_TAG_base_type) + <2f97> DW_AT_byte_size : 16 + <2f98> DW_AT_encoding : 4 (float) + <2f99> DW_AT_name : (indirect string, offset: 0x241b): long double + <1><2f9d>: Abbrev Number: 6 (DW_TAG_pointer_type) + <2f9e> DW_AT_byte_size : 8 + <2f9f> DW_AT_type : <0x2f8a> + <1><2fa3>: Abbrev Number: 2 (DW_TAG_base_type) + <2fa4> DW_AT_byte_size : 1 + <2fa5> DW_AT_encoding : 2 (boolean) + <2fa6> DW_AT_name : (indirect string, offset: 0x23f6): _Bool + <1><2faa>: Abbrev Number: 7 (DW_TAG_subprogram) + <2fab> DW_AT_external : 1 + <2fab> DW_AT_name : (indirect string, offset: 0x22df): strlen + <2faf> DW_AT_decl_file : 4 + <2fb0> DW_AT_decl_line : 68 + <2fb1> DW_AT_decl_column : 12 + <2fb2> DW_AT_prototyped : 1 + <2fb2> DW_AT_type : <0x2f77> + <2fb6> DW_AT_low_pc : 0x4dc + <2fbe> DW_AT_high_pc : 0x12 + <2fc6> DW_AT_frame_base : 1 byte block: 9c (DW_OP_call_frame_cfa) + <2fc8> DW_AT_GNU_all_call_sites: 1 + <2><2fc8>: Abbrev Number: 8 (DW_TAG_formal_parameter) + <2fc9> DW_AT_name : s + <2fcb> DW_AT_decl_file : 1 + <2fcc> DW_AT_decl_line : 37 + <2fcd> DW_AT_decl_column : 31 + <2fce> DW_AT_type : <0x2f9d> + <2fd2> DW_AT_location : 0x1169 (location list) + <2><2fd6>: Abbrev Number: 9 (DW_TAG_variable) + <2fd7> DW_AT_name : sc + <2fda> DW_AT_decl_file : 1 + <2fdb> DW_AT_decl_line : 39 + <2fdc> DW_AT_decl_column : 19 + <2fdd> DW_AT_type : <0x2f9d> + <2fe1> DW_AT_location : 0x11b5 (location list) + <2><2fe5>: Abbrev Number: 0 + <1><2fe6>: Abbrev Number: 0 + Compilation Unit @ offset 0x2fe7: + Length: 0x111 (32-bit) + Version: 4 + Abbrev Offset: 0xf12 + Pointer Size: 8 + <0><2ff2>: Abbrev Number: 1 (DW_TAG_compile_unit) + <2ff3> DW_AT_producer : (indirect string, offset: 0x2559): GNU C17 10.2.0 -mcmodel=medany -march=rv64imafdc -mabi=lp64d -march=rv64imafdc -g -Os -fno-common -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections + <2ff7> DW_AT_language : 12 (ANSI C99) + <2ff8> DW_AT_name : (indirect string, offset: 0x24db): string/lib_memcpy.c + <2ffc> DW_AT_comp_dir : (indirect string, offset: 0x2537): /Users/Luppy/ox64/nuttx/libs/libc + <3000> DW_AT_ranges : 0x2b0 + <3004> DW_AT_low_pc : 0x0 + <300c> DW_AT_stmt_list : 0x19e3 + <1><3010>: Abbrev Number: 2 (DW_TAG_base_type) + <3011> DW_AT_byte_size : 1 + <3012> DW_AT_encoding : 6 (signed char) + <3013> DW_AT_name : (indirect string, offset: 0x250d): signed char + <1><3017>: Abbrev Number: 2 (DW_TAG_base_type) + <3018> DW_AT_byte_size : 1 + <3019> DW_AT_encoding : 8 (unsigned char) + <301a> DW_AT_name : (indirect string, offset: 0x24bf): unsigned char + <1><301e>: Abbrev Number: 2 (DW_TAG_base_type) + <301f> DW_AT_byte_size : 2 + <3020> DW_AT_encoding : 5 (signed) + <3021> DW_AT_name : (indirect string, offset: 0x252d): short int + <1><3025>: Abbrev Number: 2 (DW_TAG_base_type) + <3026> DW_AT_byte_size : 2 + <3027> DW_AT_encoding : 7 (unsigned) + <3028> DW_AT_name : (indirect string, offset: 0x24fa): short unsigned int + <1><302c>: Abbrev Number: 3 (DW_TAG_base_type) + <302d> DW_AT_byte_size : 4 + <302e> DW_AT_encoding : 5 (signed) + <302f> DW_AT_name : int + <1><3033>: Abbrev Number: 2 (DW_TAG_base_type) + <3034> DW_AT_byte_size : 4 + <3035> DW_AT_encoding : 7 (unsigned) + <3036> DW_AT_name : (indirect string, offset: 0x247d): unsigned int + <1><303a>: Abbrev Number: 2 (DW_TAG_base_type) + <303b> DW_AT_byte_size : 8 + <303c> DW_AT_encoding : 5 (signed) + <303d> DW_AT_name : (indirect string, offset: 0x24d2): long int + <1><3041>: Abbrev Number: 2 (DW_TAG_base_type) + <3042> DW_AT_byte_size : 8 + <3043> DW_AT_encoding : 7 (unsigned) + <3044> DW_AT_name : (indirect string, offset: 0x2496): long unsigned int + <1><3048>: Abbrev Number: 4 (DW_TAG_typedef) + <3049> DW_AT_name : (indirect string, offset: 0x2525): _size_t + <304d> DW_AT_decl_file : 2 + <304e> DW_AT_decl_line : 93 + <304f> DW_AT_decl_column : 28 + <3050> DW_AT_type : <0x3041> + <1><3054>: Abbrev Number: 2 (DW_TAG_base_type) + <3055> DW_AT_byte_size : 8 + <3056> DW_AT_encoding : 7 (unsigned) + <3057> DW_AT_name : (indirect string, offset: 0x24a8): long long unsigned int + <1><305b>: Abbrev Number: 4 (DW_TAG_typedef) + <305c> DW_AT_name : (indirect string, offset: 0x248f): size_t + <3060> DW_AT_decl_file : 3 + <3061> DW_AT_decl_line : 133 + <3062> DW_AT_decl_column : 22 + <3063> DW_AT_type : <0x3048> + <1><3067>: Abbrev Number: 5 (DW_TAG_pointer_type) + <3068> DW_AT_byte_size : 8 + <1><3069>: Abbrev Number: 2 (DW_TAG_base_type) + <306a> DW_AT_byte_size : 1 + <306b> DW_AT_encoding : 8 (unsigned char) + <306c> DW_AT_name : (indirect string, offset: 0x24cd): char + <1><3070>: Abbrev Number: 2 (DW_TAG_base_type) + <3071> DW_AT_byte_size : 8 + <3072> DW_AT_encoding : 5 (signed) + <3073> DW_AT_name : (indirect string, offset: 0x2468): long long int + <1><3077>: Abbrev Number: 2 (DW_TAG_base_type) + <3078> DW_AT_byte_size : 16 + <3079> DW_AT_encoding : 4 (float) + <307a> DW_AT_name : (indirect string, offset: 0x2519): long double + <1><307e>: Abbrev Number: 2 (DW_TAG_base_type) + <307f> DW_AT_byte_size : 1 + <3080> DW_AT_encoding : 2 (boolean) + <3081> DW_AT_name : (indirect string, offset: 0x24ef): _Bool + <1><3085>: Abbrev Number: 6 (DW_TAG_pointer_type) + <3086> DW_AT_byte_size : 8 + <3087> DW_AT_type : <0x3017> + <1><308b>: Abbrev Number: 6 (DW_TAG_pointer_type) + <308c> DW_AT_byte_size : 8 + <308d> DW_AT_type : <0x3091> + <1><3091>: Abbrev Number: 7 (DW_TAG_const_type) + <1><3092>: Abbrev Number: 8 (DW_TAG_subprogram) + <3093> DW_AT_external : 1 + <3093> DW_AT_name : (indirect string, offset: 0x2476): memcpy + <3097> DW_AT_decl_file : 4 + <3098> DW_AT_decl_line : 101 + <3099> DW_AT_decl_column : 12 + <309a> DW_AT_prototyped : 1 + <309a> DW_AT_type : <0x3067> + <309e> DW_AT_low_pc : 0x4ee + <30a6> DW_AT_high_pc : 0x1c + <30ae> DW_AT_frame_base : 1 byte block: 9c (DW_OP_call_frame_cfa) + <30b0> DW_AT_GNU_all_call_sites: 1 + <2><30b0>: Abbrev Number: 9 (DW_TAG_formal_parameter) + <30b1> DW_AT_name : (indirect string, offset: 0x248a): dest + <30b5> DW_AT_decl_file : 1 + <30b6> DW_AT_decl_line : 42 + <30b7> DW_AT_decl_column : 28 + <30b8> DW_AT_type : <0x3067> + <30bc> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <2><30be>: Abbrev Number: 10 (DW_TAG_formal_parameter) + <30bf> DW_AT_name : src + <30c3> DW_AT_decl_file : 1 + <30c4> DW_AT_decl_line : 42 + <30c5> DW_AT_decl_column : 50 + <30c6> DW_AT_type : <0x308b> + <30ca> DW_AT_location : 1 byte block: 5b (DW_OP_reg11 (a1)) + <2><30cc>: Abbrev Number: 11 (DW_TAG_formal_parameter) + <30cd> DW_AT_name : n + <30cf> DW_AT_decl_file : 1 + <30d0> DW_AT_decl_line : 42 + <30d1> DW_AT_decl_column : 62 + <30d2> DW_AT_type : <0x305b> + <30d6> DW_AT_location : 0x11eb (location list) + <2><30da>: Abbrev Number: 12 (DW_TAG_variable) + <30db> DW_AT_name : (indirect string, offset: 0x24f5): pout + <30df> DW_AT_decl_file : 1 + <30e0> DW_AT_decl_line : 44 + <30e1> DW_AT_decl_column : 22 + <30e2> DW_AT_type : <0x3085> + <30e6> DW_AT_location : 0x123f (location list) + <2><30ea>: Abbrev Number: 13 (DW_TAG_variable) + <30eb> DW_AT_name : pin + <30ef> DW_AT_decl_file : 1 + <30f0> DW_AT_decl_line : 45 + <30f1> DW_AT_decl_column : 22 + <30f2> DW_AT_type : <0x3085> + <30f6> DW_AT_location : 0x12ac (location list) + <2><30fa>: Abbrev Number: 0 + <1><30fb>: Abbrev Number: 0 + Compilation Unit @ offset 0x30fc: + Length: 0x5a3 (32-bit) + Version: 4 + Abbrev Offset: 0xfd1 + Pointer Size: 8 + <0><3107>: Abbrev Number: 1 (DW_TAG_compile_unit) + <3108> DW_AT_producer : (indirect string, offset: 0x26a6): GNU C17 10.2.0 -mcmodel=medany -march=rv64imafdc -mabi=lp64d -march=rv64imafdc -g -Os -fno-common -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections + <310c> DW_AT_language : 12 (ANSI C99) + <310d> DW_AT_name : (indirect string, offset: 0x27aa): tls/task_getinfo.c + <3111> DW_AT_comp_dir : (indirect string, offset: 0x2819): /Users/Luppy/ox64/nuttx/libs/libc + <3115> DW_AT_ranges : 0x300 + <3119> DW_AT_low_pc : 0x0 + <3121> DW_AT_stmt_list : 0x1b09 + <1><3125>: Abbrev Number: 2 (DW_TAG_base_type) + <3126> DW_AT_byte_size : 1 + <3127> DW_AT_encoding : 6 (signed char) + <3128> DW_AT_name : (indirect string, offset: 0x28a5): signed char + <1><312c>: Abbrev Number: 3 (DW_TAG_typedef) + <312d> DW_AT_name : (indirect string, offset: 0x2629): _uint8_t + <3131> DW_AT_decl_file : 3 + <3132> DW_AT_decl_line : 52 + <3133> DW_AT_decl_column : 28 + <3134> DW_AT_type : <0x3138> + <1><3138>: Abbrev Number: 2 (DW_TAG_base_type) + <3139> DW_AT_byte_size : 1 + <313a> DW_AT_encoding : 8 (unsigned char) + <313b> DW_AT_name : (indirect string, offset: 0x2877): unsigned char + <1><313f>: Abbrev Number: 3 (DW_TAG_typedef) + <3140> DW_AT_name : (indirect string, offset: 0x2885): _int16_t + <3144> DW_AT_decl_file : 3 + <3145> DW_AT_decl_line : 54 + <3146> DW_AT_decl_column : 28 + <3147> DW_AT_type : <0x314b> + <1><314b>: Abbrev Number: 2 (DW_TAG_base_type) + <314c> DW_AT_byte_size : 2 + <314d> DW_AT_encoding : 5 (signed) + <314e> DW_AT_name : (indirect string, offset: 0x2639): short int + <1><3152>: Abbrev Number: 3 (DW_TAG_typedef) + <3153> DW_AT_name : (indirect string, offset: 0x29fc): _uint16_t + <3157> DW_AT_decl_file : 3 + <3158> DW_AT_decl_line : 55 + <3159> DW_AT_decl_column : 28 + <315a> DW_AT_type : <0x315e> + <1><315e>: Abbrev Number: 2 (DW_TAG_base_type) + <315f> DW_AT_byte_size : 2 + <3160> DW_AT_encoding : 7 (unsigned) + <3161> DW_AT_name : (indirect string, offset: 0x2939): short unsigned int + <1><3165>: Abbrev Number: 3 (DW_TAG_typedef) + <3166> DW_AT_name : (indirect string, offset: 0x2866): _int32_t + <316a> DW_AT_decl_file : 3 + <316b> DW_AT_decl_line : 58 + <316c> DW_AT_decl_column : 28 + <316d> DW_AT_type : <0x3171> + <1><3171>: Abbrev Number: 4 (DW_TAG_base_type) + <3172> DW_AT_byte_size : 4 + <3173> DW_AT_encoding : 5 (signed) + <3174> DW_AT_name : int + <1><3178>: Abbrev Number: 2 (DW_TAG_base_type) + <3179> DW_AT_byte_size : 4 + <317a> DW_AT_encoding : 7 (unsigned) + <317b> DW_AT_name : (indirect string, offset: 0x2a13): unsigned int + <1><317f>: Abbrev Number: 2 (DW_TAG_base_type) + <3180> DW_AT_byte_size : 8 + <3181> DW_AT_encoding : 5 (signed) + <3182> DW_AT_name : (indirect string, offset: 0x2928): long int + <1><3186>: Abbrev Number: 2 (DW_TAG_base_type) + <3187> DW_AT_byte_size : 8 + <3188> DW_AT_encoding : 7 (unsigned) + <3189> DW_AT_name : (indirect string, offset: 0x28d9): long unsigned int + <1><318d>: Abbrev Number: 3 (DW_TAG_typedef) + <318e> DW_AT_name : (indirect string, offset: 0x2a46): _ssize_t + <3192> DW_AT_decl_file : 3 + <3193> DW_AT_decl_line : 91 + <3194> DW_AT_decl_column : 28 + <3195> DW_AT_type : <0x317f> + <1><3199>: Abbrev Number: 3 (DW_TAG_typedef) + <319a> DW_AT_name : (indirect string, offset: 0x29d0): _size_t + <319e> DW_AT_decl_file : 3 + <319f> DW_AT_decl_line : 93 + <31a0> DW_AT_decl_column : 28 + <31a1> DW_AT_type : <0x3186> + <1><31a5>: Abbrev Number: 2 (DW_TAG_base_type) + <31a6> DW_AT_byte_size : 8 + <31a7> DW_AT_encoding : 7 (unsigned) + <31a8> DW_AT_name : (indirect string, offset: 0x27d0): long long unsigned int + <1><31ac>: Abbrev Number: 3 (DW_TAG_typedef) + <31ad> DW_AT_name : (indirect string, offset: 0x2765): uint8_t + <31b1> DW_AT_decl_file : 4 + <31b2> DW_AT_decl_line : 166 + <31b3> DW_AT_decl_column : 29 + <31b4> DW_AT_type : <0x312c> + <1><31b8>: Abbrev Number: 3 (DW_TAG_typedef) + <31b9> DW_AT_name : (indirect string, offset: 0x294c): int16_t + <31bd> DW_AT_decl_file : 4 + <31be> DW_AT_decl_line : 168 + <31bf> DW_AT_decl_column : 29 + <31c0> DW_AT_type : <0x313f> + <1><31c4>: Abbrev Number: 5 (DW_TAG_volatile_type) + <31c5> DW_AT_type : <0x31b8> + <1><31c9>: Abbrev Number: 3 (DW_TAG_typedef) + <31ca> DW_AT_name : (indirect string, offset: 0x291f): uint16_t + <31ce> DW_AT_decl_file : 4 + <31cf> DW_AT_decl_line : 169 + <31d0> DW_AT_decl_column : 29 + <31d1> DW_AT_type : <0x3152> + <1><31d5>: Abbrev Number: 3 (DW_TAG_typedef) + <31d6> DW_AT_name : (indirect string, offset: 0x2931): int32_t + <31da> DW_AT_decl_file : 4 + <31db> DW_AT_decl_line : 176 + <31dc> DW_AT_decl_column : 29 + <31dd> DW_AT_type : <0x3165> + <1><31e1>: Abbrev Number: 3 (DW_TAG_typedef) + <31e2> DW_AT_name : (indirect string, offset: 0x29a6): uintptr_t + <31e6> DW_AT_decl_file : 4 + <31e7> DW_AT_decl_line : 239 + <31e8> DW_AT_decl_column : 29 + <31e9> DW_AT_type : <0x3199> + <1><31ed>: Abbrev Number: 3 (DW_TAG_typedef) + <31ee> DW_AT_name : (indirect string, offset: 0x2643): size_t + <31f2> DW_AT_decl_file : 5 + <31f3> DW_AT_decl_line : 133 + <31f4> DW_AT_decl_column : 22 + <31f5> DW_AT_type : <0x3199> + <1><31f9>: Abbrev Number: 3 (DW_TAG_typedef) + <31fa> DW_AT_name : (indirect string, offset: 0x2696): ssize_t + <31fe> DW_AT_decl_file : 5 + <31ff> DW_AT_decl_line : 134 + <3200> DW_AT_decl_column : 22 + <3201> DW_AT_type : <0x318d> + <1><3205>: Abbrev Number: 3 (DW_TAG_typedef) + <3206> DW_AT_name : (indirect string, offset: 0x29a0): pid_t + <320a> DW_AT_decl_file : 5 + <320b> DW_AT_decl_line : 162 + <320c> DW_AT_decl_column : 22 + <320d> DW_AT_type : <0x3171> + <1><3211>: Abbrev Number: 3 (DW_TAG_typedef) + <3212> DW_AT_name : (indirect string, offset: 0x283b): off_t + <3216> DW_AT_decl_file : 5 + <3217> DW_AT_decl_line : 229 + <3218> DW_AT_decl_column : 22 + <3219> DW_AT_type : <0x31d5> + <1><321d>: Abbrev Number: 6 (DW_TAG_pointer_type) + <321e> DW_AT_byte_size : 8 + <1><321f>: Abbrev Number: 7 (DW_TAG_pointer_type) + <3220> DW_AT_byte_size : 8 + <3221> DW_AT_type : <0x3225> + <1><3225>: Abbrev Number: 2 (DW_TAG_base_type) + <3226> DW_AT_byte_size : 1 + <3227> DW_AT_encoding : 8 (unsigned char) + <3228> DW_AT_name : (indirect string, offset: 0x291a): char + <1><322c>: Abbrev Number: 8 (DW_TAG_const_type) + <322d> DW_AT_type : <0x3225> + <1><3231>: Abbrev Number: 7 (DW_TAG_pointer_type) + <3232> DW_AT_byte_size : 8 + <3233> DW_AT_type : <0x321f> + <1><3237>: Abbrev Number: 2 (DW_TAG_base_type) + <3238> DW_AT_byte_size : 8 + <3239> DW_AT_encoding : 5 (signed) + <323a> DW_AT_name : (indirect string, offset: 0x27c2): long long int + <1><323e>: Abbrev Number: 2 (DW_TAG_base_type) + <323f> DW_AT_byte_size : 16 + <3240> DW_AT_encoding : 4 (float) + <3241> DW_AT_name : (indirect string, offset: 0x285a): long double + <1><3245>: Abbrev Number: 7 (DW_TAG_pointer_type) + <3246> DW_AT_byte_size : 8 + <3247> DW_AT_type : <0x322c> + <1><324b>: Abbrev Number: 9 (DW_TAG_structure_type) + <324c> DW_AT_name : (indirect string, offset: 0x284f): dq_entry_s + <3250> DW_AT_byte_size : 16 + <3251> DW_AT_decl_file : 6 + <3252> DW_AT_decl_line : 303 + <3254> DW_AT_decl_column : 8 + <3255> DW_AT_sibling : <0x3276> + <2><3259>: Abbrev Number: 10 (DW_TAG_member) + <325a> DW_AT_name : (indirect string, offset: 0x2841): flink + <325e> DW_AT_decl_file : 6 + <325f> DW_AT_decl_line : 305 + <3261> DW_AT_decl_column : 26 + <3262> DW_AT_type : <0x3276> + <3266> DW_AT_data_member_location: 0 + <2><3267>: Abbrev Number: 10 (DW_TAG_member) + <3268> DW_AT_name : (indirect string, offset: 0x2783): blink + <326c> DW_AT_decl_file : 6 + <326d> DW_AT_decl_line : 306 + <326f> DW_AT_decl_column : 26 + <3270> DW_AT_type : <0x3276> + <3274> DW_AT_data_member_location: 8 + <2><3275>: Abbrev Number: 0 + <1><3276>: Abbrev Number: 7 (DW_TAG_pointer_type) + <3277> DW_AT_byte_size : 8 + <3278> DW_AT_type : <0x324b> + <1><327c>: Abbrev Number: 11 (DW_TAG_typedef) + <327d> DW_AT_name : (indirect string, offset: 0x2962): dq_entry_t + <3281> DW_AT_decl_file : 6 + <3282> DW_AT_decl_line : 308 + <3284> DW_AT_decl_column : 27 + <3285> DW_AT_type : <0x324b> + <1><3289>: Abbrev Number: 9 (DW_TAG_structure_type) + <328a> DW_AT_name : (indirect string, offset: 0x2a29): dq_queue_s + <328e> DW_AT_byte_size : 16 + <328f> DW_AT_decl_file : 6 + <3290> DW_AT_decl_line : 317 + <3292> DW_AT_decl_column : 8 + <3293> DW_AT_sibling : <0x32b4> + <2><3297>: Abbrev Number: 10 (DW_TAG_member) + <3298> DW_AT_name : (indirect string, offset: 0x2760): head + <329c> DW_AT_decl_file : 6 + <329d> DW_AT_decl_line : 319 + <329f> DW_AT_decl_column : 19 + <32a0> DW_AT_type : <0x32b4> + <32a4> DW_AT_data_member_location: 0 + <2><32a5>: Abbrev Number: 10 (DW_TAG_member) + <32a6> DW_AT_name : (indirect string, offset: 0x288e): tail + <32aa> DW_AT_decl_file : 6 + <32ab> DW_AT_decl_line : 320 + <32ad> DW_AT_decl_column : 19 + <32ae> DW_AT_type : <0x32b4> + <32b2> DW_AT_data_member_location: 8 + <2><32b3>: Abbrev Number: 0 + <1><32b4>: Abbrev Number: 7 (DW_TAG_pointer_type) + <32b5> DW_AT_byte_size : 8 + <32b6> DW_AT_type : <0x327c> + <1><32ba>: Abbrev Number: 11 (DW_TAG_typedef) + <32bb> DW_AT_name : (indirect string, offset: 0x29e5): dq_queue_t + <32bf> DW_AT_decl_file : 6 + <32c0> DW_AT_decl_line : 322 + <32c2> DW_AT_decl_column : 27 + <32c3> DW_AT_type : <0x3289> + <1><32c7>: Abbrev Number: 12 (DW_TAG_structure_type) + <32c8> DW_AT_name : (indirect string, offset: 0x2789): sem_s + <32cc> DW_AT_byte_size : 24 + <32cd> DW_AT_decl_file : 7 + <32ce> DW_AT_decl_line : 99 + <32cf> DW_AT_decl_column : 8 + <32d0> DW_AT_sibling : <0x32fc> + <2><32d4>: Abbrev Number: 13 (DW_TAG_member) + <32d5> DW_AT_name : (indirect string, offset: 0x2893): semcount + <32d9> DW_AT_decl_file : 7 + <32da> DW_AT_decl_line : 101 + <32db> DW_AT_decl_column : 20 + <32dc> DW_AT_type : <0x31c4> + <32e0> DW_AT_data_member_location: 0 + <2><32e1>: Abbrev Number: 13 (DW_TAG_member) + <32e2> DW_AT_name : (indirect string, offset: 0x28b1): flags + <32e6> DW_AT_decl_file : 7 + <32e7> DW_AT_decl_line : 108 + <32e8> DW_AT_decl_column : 11 + <32e9> DW_AT_type : <0x31ac> + <32ed> DW_AT_data_member_location: 2 + <2><32ee>: Abbrev Number: 13 (DW_TAG_member) + <32ef> DW_AT_name : (indirect string, offset: 0x266d): waitlist + <32f3> DW_AT_decl_file : 7 + <32f4> DW_AT_decl_line : 110 + <32f5> DW_AT_decl_column : 14 + <32f6> DW_AT_type : <0x32ba> + <32fa> DW_AT_data_member_location: 8 + <2><32fb>: Abbrev Number: 0 + <1><32fc>: Abbrev Number: 3 (DW_TAG_typedef) + <32fd> DW_AT_name : (indirect string, offset: 0x278f): sem_t + <3301> DW_AT_decl_file : 7 + <3302> DW_AT_decl_line : 121 + <3303> DW_AT_decl_column : 22 + <3304> DW_AT_type : <0x32c7> + <1><3308>: Abbrev Number: 2 (DW_TAG_base_type) + <3309> DW_AT_byte_size : 1 + <330a> DW_AT_encoding : 2 (boolean) + <330b> DW_AT_name : (indirect string, offset: 0x2954): _Bool + <1><330f>: Abbrev Number: 12 (DW_TAG_structure_type) + <3310> DW_AT_name : (indirect string, offset: 0x2847): mutex_s + <3314> DW_AT_byte_size : 32 + <3315> DW_AT_decl_file : 8 + <3316> DW_AT_decl_line : 46 + <3317> DW_AT_decl_column : 8 + <3318> DW_AT_sibling : <0x3337> + <2><331c>: Abbrev Number: 14 (DW_TAG_member) + <331d> DW_AT_name : sem + <3321> DW_AT_decl_file : 8 + <3322> DW_AT_decl_line : 48 + <3323> DW_AT_decl_column : 9 + <3324> DW_AT_type : <0x32fc> + <3328> DW_AT_data_member_location: 0 + <2><3329>: Abbrev Number: 13 (DW_TAG_member) + <332a> DW_AT_name : (indirect string, offset: 0x27e7): holder + <332e> DW_AT_decl_file : 8 + <332f> DW_AT_decl_line : 49 + <3330> DW_AT_decl_column : 9 + <3331> DW_AT_type : <0x3205> + <3335> DW_AT_data_member_location: 24 + <2><3336>: Abbrev Number: 0 + <1><3337>: Abbrev Number: 3 (DW_TAG_typedef) + <3338> DW_AT_name : (indirect string, offset: 0x2805): mutex_t + <333c> DW_AT_decl_file : 8 + <333d> DW_AT_decl_line : 52 + <333e> DW_AT_decl_column : 24 + <333f> DW_AT_type : <0x330f> + <1><3343>: Abbrev Number: 12 (DW_TAG_structure_type) + <3344> DW_AT_name : (indirect string, offset: 0x2a34): rmutex_s + <3348> DW_AT_byte_size : 40 + <3349> DW_AT_decl_file : 8 + <334a> DW_AT_decl_line : 54 + <334b> DW_AT_decl_column : 8 + <334c> DW_AT_sibling : <0x336b> + <2><3350>: Abbrev Number: 13 (DW_TAG_member) + <3351> DW_AT_name : (indirect string, offset: 0x28fa): mutex + <3355> DW_AT_decl_file : 8 + <3356> DW_AT_decl_line : 56 + <3357> DW_AT_decl_column : 11 + <3358> DW_AT_type : <0x3337> + <335c> DW_AT_data_member_location: 0 + <2><335d>: Abbrev Number: 13 (DW_TAG_member) + <335e> DW_AT_name : (indirect string, offset: 0x29ba): count + <3362> DW_AT_decl_file : 8 + <3363> DW_AT_decl_line : 57 + <3364> DW_AT_decl_column : 16 + <3365> DW_AT_type : <0x3178> + <3369> DW_AT_data_member_location: 32 + <2><336a>: Abbrev Number: 0 + <1><336b>: Abbrev Number: 3 (DW_TAG_typedef) + <336c> DW_AT_name : (indirect string, offset: 0x2a3d): rmutex_t + <3370> DW_AT_decl_file : 8 + <3371> DW_AT_decl_line : 60 + <3372> DW_AT_decl_column : 25 + <3373> DW_AT_type : <0x3343> + <1><3377>: Abbrev Number: 11 (DW_TAG_typedef) + <3378> DW_AT_name : (indirect string, offset: 0x27ee): cookie_read_function_t + <337c> DW_AT_decl_file : 9 + <337d> DW_AT_decl_line : 441 + <337f> DW_AT_decl_column : 22 + <3380> DW_AT_type : <0x3384> + <1><3384>: Abbrev Number: 15 (DW_TAG_subroutine_type) + <3385> DW_AT_prototyped : 1 + <3385> DW_AT_type : <0x31f9> + <3389> DW_AT_sibling : <0x339d> + <2><338d>: Abbrev Number: 16 (DW_TAG_formal_parameter) + <338e> DW_AT_type : <0x321d> + <2><3392>: Abbrev Number: 16 (DW_TAG_formal_parameter) + <3393> DW_AT_type : <0x321f> + <2><3397>: Abbrev Number: 16 (DW_TAG_formal_parameter) + <3398> DW_AT_type : <0x31ed> + <2><339c>: Abbrev Number: 0 + <1><339d>: Abbrev Number: 11 (DW_TAG_typedef) + <339e> DW_AT_name : (indirect string, offset: 0x2655): cookie_write_function_t + <33a2> DW_AT_decl_file : 9 + <33a3> DW_AT_decl_line : 443 + <33a5> DW_AT_decl_column : 22 + <33a6> DW_AT_type : <0x33aa> + <1><33aa>: Abbrev Number: 15 (DW_TAG_subroutine_type) + <33ab> DW_AT_prototyped : 1 + <33ab> DW_AT_type : <0x31f9> + <33af> DW_AT_sibling : <0x33c3> + <2><33b3>: Abbrev Number: 16 (DW_TAG_formal_parameter) + <33b4> DW_AT_type : <0x321d> + <2><33b8>: Abbrev Number: 16 (DW_TAG_formal_parameter) + <33b9> DW_AT_type : <0x3245> + <2><33bd>: Abbrev Number: 16 (DW_TAG_formal_parameter) + <33be> DW_AT_type : <0x31ed> + <2><33c2>: Abbrev Number: 0 + <1><33c3>: Abbrev Number: 11 (DW_TAG_typedef) + <33c4> DW_AT_name : (indirect string, offset: 0x2977): cookie_seek_function_t + <33c8> DW_AT_decl_file : 9 + <33c9> DW_AT_decl_line : 446 + <33cb> DW_AT_decl_column : 20 + <33cc> DW_AT_type : <0x33d0> + <1><33d0>: Abbrev Number: 15 (DW_TAG_subroutine_type) + <33d1> DW_AT_prototyped : 1 + <33d1> DW_AT_type : <0x3211> + <33d5> DW_AT_sibling : <0x33e9> + <2><33d9>: Abbrev Number: 16 (DW_TAG_formal_parameter) + <33da> DW_AT_type : <0x321d> + <2><33de>: Abbrev Number: 16 (DW_TAG_formal_parameter) + <33df> DW_AT_type : <0x33e9> + <2><33e3>: Abbrev Number: 16 (DW_TAG_formal_parameter) + <33e4> DW_AT_type : <0x3171> + <2><33e8>: Abbrev Number: 0 + <1><33e9>: Abbrev Number: 7 (DW_TAG_pointer_type) + <33ea> DW_AT_byte_size : 8 + <33eb> DW_AT_type : <0x3211> + <1><33ef>: Abbrev Number: 11 (DW_TAG_typedef) + <33f0> DW_AT_name : (indirect string, offset: 0x267e): cookie_close_function_t + <33f4> DW_AT_decl_file : 9 + <33f5> DW_AT_decl_line : 449 + <33f7> DW_AT_decl_column : 18 + <33f8> DW_AT_type : <0x33fc> + <1><33fc>: Abbrev Number: 15 (DW_TAG_subroutine_type) + <33fd> DW_AT_prototyped : 1 + <33fd> DW_AT_type : <0x3171> + <3401> DW_AT_sibling : <0x340b> + <2><3405>: Abbrev Number: 16 (DW_TAG_formal_parameter) + <3406> DW_AT_type : <0x321d> + <2><340a>: Abbrev Number: 0 + <1><340b>: Abbrev Number: 9 (DW_TAG_structure_type) + <340c> DW_AT_name : (indirect string, offset: 0x276d): cookie_io_functions_t + <3410> DW_AT_byte_size : 32 + <3411> DW_AT_decl_file : 9 + <3412> DW_AT_decl_line : 451 + <3414> DW_AT_decl_column : 16 + <3415> DW_AT_sibling : <0x3452> + <2><3419>: Abbrev Number: 10 (DW_TAG_member) + <341a> DW_AT_name : (indirect string, offset: 0x27bd): read + <341e> DW_AT_decl_file : 9 + <341f> DW_AT_decl_line : 453 + <3421> DW_AT_decl_column : 31 + <3422> DW_AT_type : <0x3452> + <3426> DW_AT_data_member_location: 0 + <2><3427>: Abbrev Number: 10 (DW_TAG_member) + <3428> DW_AT_name : (indirect string, offset: 0x2617): write + <342c> DW_AT_decl_file : 9 + <342d> DW_AT_decl_line : 454 + <342f> DW_AT_decl_column : 32 + <3430> DW_AT_type : <0x3458> + <3434> DW_AT_data_member_location: 8 + <2><3435>: Abbrev Number: 10 (DW_TAG_member) + <3436> DW_AT_name : (indirect string, offset: 0x29d8): seek + <343a> DW_AT_decl_file : 9 + <343b> DW_AT_decl_line : 455 + <343d> DW_AT_decl_column : 31 + <343e> DW_AT_type : <0x345e> + <3442> DW_AT_data_member_location: 16 + <2><3443>: Abbrev Number: 10 (DW_TAG_member) + <3444> DW_AT_name : (indirect string, offset: 0x2609): close + <3448> DW_AT_decl_file : 9 + <3449> DW_AT_decl_line : 456 + <344b> DW_AT_decl_column : 32 + <344c> DW_AT_type : <0x3464> + <3450> DW_AT_data_member_location: 24 + <2><3451>: Abbrev Number: 0 + <1><3452>: Abbrev Number: 7 (DW_TAG_pointer_type) + <3453> DW_AT_byte_size : 8 + <3454> DW_AT_type : <0x3377> + <1><3458>: Abbrev Number: 7 (DW_TAG_pointer_type) + <3459> DW_AT_byte_size : 8 + <345a> DW_AT_type : <0x339d> + <1><345e>: Abbrev Number: 7 (DW_TAG_pointer_type) + <345f> DW_AT_byte_size : 8 + <3460> DW_AT_type : <0x33c3> + <1><3464>: Abbrev Number: 7 (DW_TAG_pointer_type) + <3465> DW_AT_byte_size : 8 + <3466> DW_AT_type : <0x33ef> + <1><346a>: Abbrev Number: 11 (DW_TAG_typedef) + <346b> DW_AT_name : (indirect string, offset: 0x276d): cookie_io_functions_t + <346f> DW_AT_decl_file : 9 + <3470> DW_AT_decl_line : 457 + <3472> DW_AT_decl_column : 3 + <3473> DW_AT_type : <0x340b> + <1><3477>: Abbrev Number: 9 (DW_TAG_structure_type) + <3478> DW_AT_name : (indirect string, offset: 0x280d): file_struct + <347c> DW_AT_byte_size : 192 + <347d> DW_AT_decl_file : 9 + <347e> DW_AT_decl_line : 526 + <3480> DW_AT_decl_column : 8 + <3481> DW_AT_sibling : <0x353c> + <2><3485>: Abbrev Number: 10 (DW_TAG_member) + <3486> DW_AT_name : (indirect string, offset: 0x295a): fs_next + <348a> DW_AT_decl_file : 9 + <348b> DW_AT_decl_line : 528 + <348d> DW_AT_decl_column : 27 + <348e> DW_AT_type : <0x353c> + <3492> DW_AT_data_member_location: 0 + <2><3493>: Abbrev Number: 10 (DW_TAG_member) + <3494> DW_AT_name : (indirect string, offset: 0x29dd): fs_lock + <3498> DW_AT_decl_file : 9 + <3499> DW_AT_decl_line : 529 + <349b> DW_AT_decl_column : 27 + <349c> DW_AT_type : <0x336b> + <34a0> DW_AT_data_member_location: 8 + <2><34a1>: Abbrev Number: 10 (DW_TAG_member) + <34a2> DW_AT_name : (indirect string, offset: 0x296d): fs_iofunc + <34a6> DW_AT_decl_file : 9 + <34a7> DW_AT_decl_line : 530 + <34a9> DW_AT_decl_column : 27 + <34aa> DW_AT_type : <0x346a> + <34ae> DW_AT_data_member_location: 48 + <2><34af>: Abbrev Number: 10 (DW_TAG_member) + <34b0> DW_AT_name : (indirect string, offset: 0x29b0): fs_cookie + <34b4> DW_AT_decl_file : 9 + <34b5> DW_AT_decl_line : 531 + <34b7> DW_AT_decl_column : 27 + <34b8> DW_AT_type : <0x321d> + <34bc> DW_AT_data_member_location: 80 + <2><34bd>: Abbrev Number: 10 (DW_TAG_member) + <34be> DW_AT_name : (indirect string, offset: 0x29f0): fs_bufstart + <34c2> DW_AT_decl_file : 9 + <34c3> DW_AT_decl_line : 533 + <34c5> DW_AT_decl_column : 27 + <34c6> DW_AT_type : <0x321f> + <34ca> DW_AT_data_member_location: 88 + <2><34cb>: Abbrev Number: 10 (DW_TAG_member) + <34cc> DW_AT_name : (indirect string, offset: 0x2756): fs_bufend + <34d0> DW_AT_decl_file : 9 + <34d1> DW_AT_decl_line : 534 + <34d3> DW_AT_decl_column : 27 + <34d4> DW_AT_type : <0x321f> + <34d8> DW_AT_data_member_location: 96 + <2><34d9>: Abbrev Number: 10 (DW_TAG_member) + <34da> DW_AT_name : (indirect string, offset: 0x27a0): fs_bufpos + <34de> DW_AT_decl_file : 9 + <34df> DW_AT_decl_line : 535 + <34e1> DW_AT_decl_column : 27 + <34e2> DW_AT_type : <0x321f> + <34e6> DW_AT_data_member_location: 104 + <2><34e7>: Abbrev Number: 10 (DW_TAG_member) + <34e8> DW_AT_name : (indirect string, offset: 0x2795): fs_bufread + <34ec> DW_AT_decl_file : 9 + <34ed> DW_AT_decl_line : 536 + <34ef> DW_AT_decl_column : 27 + <34f0> DW_AT_type : <0x321f> + <34f4> DW_AT_data_member_location: 112 + <2><34f5>: Abbrev Number: 10 (DW_TAG_member) + <34f6> DW_AT_name : (indirect string, offset: 0x298e): fs_buffer + <34fa> DW_AT_decl_file : 9 + <34fb> DW_AT_decl_line : 538 + <34fd> DW_AT_decl_column : 27 + <34fe> DW_AT_type : <0x3542> + <3502> DW_AT_data_member_location: 120 + <2><3503>: Abbrev Number: 10 (DW_TAG_member) + <3504> DW_AT_name : (indirect string, offset: 0x28eb): fs_oflags + <3508> DW_AT_decl_file : 9 + <3509> DW_AT_decl_line : 541 + <350b> DW_AT_decl_column : 27 + <350c> DW_AT_type : <0x31c9> + <3510> DW_AT_data_member_location: 184 + <2><3511>: Abbrev Number: 10 (DW_TAG_member) + <3512> DW_AT_name : (indirect string, offset: 0x2a20): fs_flags + <3516> DW_AT_decl_file : 9 + <3517> DW_AT_decl_line : 542 + <3519> DW_AT_decl_column : 27 + <351a> DW_AT_type : <0x31ac> + <351e> DW_AT_data_member_location: 186 + <2><351f>: Abbrev Number: 10 (DW_TAG_member) + <3520> DW_AT_name : (indirect string, offset: 0x2a06): fs_nungotten + <3524> DW_AT_decl_file : 9 + <3525> DW_AT_decl_line : 544 + <3527> DW_AT_decl_column : 27 + <3528> DW_AT_type : <0x31ac> + <352c> DW_AT_data_member_location: 187 + <2><352d>: Abbrev Number: 10 (DW_TAG_member) + <352e> DW_AT_name : (indirect string, offset: 0x261d): fs_ungotten + <3532> DW_AT_decl_file : 9 + <3533> DW_AT_decl_line : 545 + <3535> DW_AT_decl_column : 27 + <3536> DW_AT_type : <0x3552> + <353a> DW_AT_data_member_location: 188 + <2><353b>: Abbrev Number: 0 + <1><353c>: Abbrev Number: 7 (DW_TAG_pointer_type) + <353d> DW_AT_byte_size : 8 + <353e> DW_AT_type : <0x3477> + <1><3542>: Abbrev Number: 17 (DW_TAG_array_type) + <3543> DW_AT_type : <0x3225> + <3547> DW_AT_sibling : <0x3552> + <2><354b>: Abbrev Number: 18 (DW_TAG_subrange_type) + <354c> DW_AT_type : <0x3186> + <3550> DW_AT_upper_bound : 63 + <2><3551>: Abbrev Number: 0 + <1><3552>: Abbrev Number: 17 (DW_TAG_array_type) + <3553> DW_AT_type : <0x3225> + <3557> DW_AT_sibling : <0x3562> + <2><355b>: Abbrev Number: 18 (DW_TAG_subrange_type) + <355c> DW_AT_type : <0x3186> + <3560> DW_AT_upper_bound : 1 + <2><3561>: Abbrev Number: 0 + <1><3562>: Abbrev Number: 19 (DW_TAG_structure_type) + <3563> DW_AT_name : (indirect string, offset: 0x264a): streamlist + <3567> DW_AT_byte_size : 624 + <3569> DW_AT_decl_file : 9 + <356a> DW_AT_decl_line : 549 + <356c> DW_AT_decl_column : 8 + <356d> DW_AT_sibling : <0x35ac> + <2><3571>: Abbrev Number: 10 (DW_TAG_member) + <3572> DW_AT_name : (indirect string, offset: 0x286f): sl_lock + <3576> DW_AT_decl_file : 9 + <3577> DW_AT_decl_line : 551 + <3579> DW_AT_decl_column : 27 + <357a> DW_AT_type : <0x3337> + <357e> DW_AT_data_member_location: 0 + <2><357f>: Abbrev Number: 10 (DW_TAG_member) + <3580> DW_AT_name : (indirect string, offset: 0x2632): sl_std + <3584> DW_AT_decl_file : 9 + <3585> DW_AT_decl_line : 552 + <3587> DW_AT_decl_column : 27 + <3588> DW_AT_type : <0x35ac> + <358c> DW_AT_data_member_location: 32 + <2><358d>: Abbrev Number: 20 (DW_TAG_member) + <358e> DW_AT_name : (indirect string, offset: 0x260f): sl_head + <3592> DW_AT_decl_file : 9 + <3593> DW_AT_decl_line : 553 + <3595> DW_AT_decl_column : 27 + <3596> DW_AT_type : <0x353c> + <359a> DW_AT_data_member_location: 608 + <2><359c>: Abbrev Number: 20 (DW_TAG_member) + <359d> DW_AT_name : (indirect string, offset: 0x2998): sl_tail + <35a1> DW_AT_decl_file : 9 + <35a2> DW_AT_decl_line : 554 + <35a4> DW_AT_decl_column : 27 + <35a5> DW_AT_type : <0x353c> + <35a9> DW_AT_data_member_location: 616 + <2><35ab>: Abbrev Number: 0 + <1><35ac>: Abbrev Number: 17 (DW_TAG_array_type) + <35ad> DW_AT_type : <0x3477> + <35b1> DW_AT_sibling : <0x35bc> + <2><35b5>: Abbrev Number: 18 (DW_TAG_subrange_type) + <35b6> DW_AT_type : <0x3186> + <35ba> DW_AT_upper_bound : 2 + <2><35bb>: Abbrev Number: 0 + <1><35bc>: Abbrev Number: 21 (DW_TAG_structure_type) + <35bd> DW_AT_name : (indirect string, offset: 0x2900): task_info_s + <35c1> DW_AT_byte_size : 664 + <35c3> DW_AT_decl_file : 10 + <35c4> DW_AT_decl_line : 116 + <35c5> DW_AT_decl_column : 8 + <35c6> DW_AT_sibling : <0x35f2> + <2><35ca>: Abbrev Number: 13 (DW_TAG_member) + <35cb> DW_AT_name : (indirect string, offset: 0x269e): ta_lock + <35cf> DW_AT_decl_file : 10 + <35d0> DW_AT_decl_line : 118 + <35d1> DW_AT_decl_column : 19 + <35d2> DW_AT_type : <0x3337> + <35d6> DW_AT_data_member_location: 0 + <2><35d7>: Abbrev Number: 13 (DW_TAG_member) + <35d8> DW_AT_name : (indirect string, offset: 0x28f5): argv + <35dc> DW_AT_decl_file : 10 + <35dd> DW_AT_decl_line : 119 + <35de> DW_AT_decl_column : 19 + <35df> DW_AT_type : <0x3231> + <35e3> DW_AT_data_member_location: 32 + <2><35e4>: Abbrev Number: 13 (DW_TAG_member) + <35e5> DW_AT_name : (indirect string, offset: 0x290c): ta_streamlist + <35e9> DW_AT_decl_file : 10 + <35ea> DW_AT_decl_line : 137 + <35eb> DW_AT_decl_column : 21 + <35ec> DW_AT_type : <0x3562> + <35f0> DW_AT_data_member_location: 40 + <2><35f1>: Abbrev Number: 0 + <1><35f2>: Abbrev Number: 7 (DW_TAG_pointer_type) + <35f3> DW_AT_byte_size : 8 + <35f4> DW_AT_type : <0x35bc> + <1><35f8>: Abbrev Number: 12 (DW_TAG_structure_type) + <35f9> DW_AT_name : (indirect string, offset: 0x28b7): tls_info_s + <35fd> DW_AT_byte_size : 16 + <35fe> DW_AT_decl_file : 10 + <35ff> DW_AT_decl_line : 191 + <3600> DW_AT_decl_column : 8 + <3601> DW_AT_sibling : <0x362d> + <2><3605>: Abbrev Number: 13 (DW_TAG_member) + <3606> DW_AT_name : (indirect string, offset: 0x2676): tl_task + <360a> DW_AT_decl_file : 10 + <360b> DW_AT_decl_line : 193 + <360c> DW_AT_decl_column : 28 + <360d> DW_AT_type : <0x35f2> + <3611> DW_AT_data_member_location: 0 + <2><3612>: Abbrev Number: 13 (DW_TAG_member) + <3613> DW_AT_name : (indirect string, offset: 0x29c5): tl_cpstate + <3617> DW_AT_decl_file : 10 + <3618> DW_AT_decl_line : 209 + <3619> DW_AT_decl_column : 11 + <361a> DW_AT_type : <0x31ac> + <361e> DW_AT_data_member_location: 8 + <2><361f>: Abbrev Number: 13 (DW_TAG_member) + <3620> DW_AT_name : (indirect string, offset: 0x28d0): tl_errno + <3624> DW_AT_decl_file : 10 + <3625> DW_AT_decl_line : 215 + <3626> DW_AT_decl_column : 7 + <3627> DW_AT_type : <0x3171> + <362b> DW_AT_data_member_location: 12 + <2><362c>: Abbrev Number: 0 + <1><362d>: Abbrev Number: 22 (DW_TAG_subprogram) + <362e> DW_AT_external : 1 + <362e> DW_AT_name : (indirect string, offset: 0x28c2): task_get_info + <3632> DW_AT_decl_file : 10 + <3633> DW_AT_decl_line : 355 + <3635> DW_AT_decl_column : 25 + <3636> DW_AT_prototyped : 1 + <3636> DW_AT_type : <0x35f2> + <363a> DW_AT_low_pc : 0x50a + <3642> DW_AT_high_pc : 0xa + <364a> DW_AT_frame_base : 1 byte block: 9c (DW_OP_call_frame_cfa) + <364c> DW_AT_GNU_all_call_sites: 1 + <364c> DW_AT_sibling : <0x3681> + <2><3650>: Abbrev Number: 23 (DW_TAG_variable) + <3651> DW_AT_name : (indirect string, offset: 0x29c0): info + <3655> DW_AT_decl_file : 1 + <3656> DW_AT_decl_line : 50 + <3657> DW_AT_decl_column : 26 + <3658> DW_AT_type : <0x3681> + <365c> DW_AT_location : 0x1319 (location list) + <2><3660>: Abbrev Number: 24 (DW_TAG_inlined_subroutine) + <3661> DW_AT_abstract_origin: <0x3687> + <3665> DW_AT_entry_pc : 0x50a + <366d> DW_AT_ranges : 0x2d0 + <3671> DW_AT_call_file : 1 + <3672> DW_AT_call_line : 50 + <3673> DW_AT_call_column : 33 + <3><3674>: Abbrev Number: 25 (DW_TAG_lexical_block) + <3675> DW_AT_ranges : 0x2d0 + <4><3679>: Abbrev Number: 26 (DW_TAG_variable) + <367a> DW_AT_abstract_origin: <0x3695> + <4><367e>: Abbrev Number: 0 + <3><367f>: Abbrev Number: 0 + <2><3680>: Abbrev Number: 0 + <1><3681>: Abbrev Number: 7 (DW_TAG_pointer_type) + <3682> DW_AT_byte_size : 8 + <3683> DW_AT_type : <0x35f8> + <1><3687>: Abbrev Number: 27 (DW_TAG_subprogram) + <3688> DW_AT_name : (indirect string, offset: 0x289c): up_getsp + <368c> DW_AT_decl_file : 2 + <368d> DW_AT_decl_line : 598 + <368f> DW_AT_decl_column : 25 + <3690> DW_AT_prototyped : 1 + <3690> DW_AT_type : <0x31e1> + <3694> DW_AT_inline : 3 (declared as inline and inlined) + <2><3695>: Abbrev Number: 28 (DW_TAG_variable) + <3696> DW_AT_name : sp + <3699> DW_AT_decl_file : 2 + <369a> DW_AT_decl_line : 600 + <369c> DW_AT_decl_column : 22 + <369d> DW_AT_type : <0x31e1> + <2><36a1>: Abbrev Number: 0 + <1><36a2>: Abbrev Number: 0 + Compilation Unit @ offset 0x36a3: + Length: 0x5bd (32-bit) + Version: 4 + Abbrev Offset: 0x1153 + Pointer Size: 8 + <0><36ae>: Abbrev Number: 1 (DW_TAG_compile_unit) + <36af> DW_AT_producer : (indirect string, offset: 0x2af4): GNU C17 10.2.0 -mcmodel=medany -march=rv64imafdc -mabi=lp64d -march=rv64imafdc -g -Os -fno-common -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections + <36b3> DW_AT_language : 12 (ANSI C99) + <36b4> DW_AT_name : (indirect string, offset: 0x2e29): errno/lib_errno.c + <36b8> DW_AT_comp_dir : (indirect string, offset: 0x2c68): /Users/Luppy/ox64/nuttx/libs/libc + <36bc> DW_AT_ranges : 0x350 + <36c0> DW_AT_low_pc : 0x0 + <36c8> DW_AT_stmt_list : 0x1cbc + <1><36cc>: Abbrev Number: 2 (DW_TAG_base_type) + <36cd> DW_AT_byte_size : 1 + <36ce> DW_AT_encoding : 6 (signed char) + <36cf> DW_AT_name : (indirect string, offset: 0x2bf8): signed char + <1><36d3>: Abbrev Number: 3 (DW_TAG_typedef) + <36d4> DW_AT_name : (indirect string, offset: 0x2a6f): _uint8_t + <36d8> DW_AT_decl_file : 3 + <36d9> DW_AT_decl_line : 52 + <36da> DW_AT_decl_column : 28 + <36db> DW_AT_type : <0x36df> + <1><36df>: Abbrev Number: 2 (DW_TAG_base_type) + <36e0> DW_AT_byte_size : 1 + <36e1> DW_AT_encoding : 8 (unsigned char) + <36e2> DW_AT_name : (indirect string, offset: 0x2cbe): unsigned char + <1><36e6>: Abbrev Number: 3 (DW_TAG_typedef) + <36e7> DW_AT_name : (indirect string, offset: 0x2ccc): _int16_t + <36eb> DW_AT_decl_file : 3 + <36ec> DW_AT_decl_line : 54 + <36ed> DW_AT_decl_column : 28 + <36ee> DW_AT_type : <0x36f2> + <1><36f2>: Abbrev Number: 2 (DW_TAG_base_type) + <36f3> DW_AT_byte_size : 2 + <36f4> DW_AT_encoding : 5 (signed) + <36f5> DW_AT_name : (indirect string, offset: 0x2a7f): short int + <1><36f9>: Abbrev Number: 3 (DW_TAG_typedef) + <36fa> DW_AT_name : (indirect string, offset: 0x2e47): _uint16_t + <36fe> DW_AT_decl_file : 3 + <36ff> DW_AT_decl_line : 55 + <3700> DW_AT_decl_column : 28 + <3701> DW_AT_type : <0x3705> + <1><3705>: Abbrev Number: 2 (DW_TAG_base_type) + <3706> DW_AT_byte_size : 2 + <3707> DW_AT_encoding : 7 (unsigned) + <3708> DW_AT_name : (indirect string, offset: 0x2d77): short unsigned int + <1><370c>: Abbrev Number: 3 (DW_TAG_typedef) + <370d> DW_AT_name : (indirect string, offset: 0x2cad): _int32_t + <3711> DW_AT_decl_file : 3 + <3712> DW_AT_decl_line : 58 + <3713> DW_AT_decl_column : 28 + <3714> DW_AT_type : <0x3718> + <1><3718>: Abbrev Number: 4 (DW_TAG_base_type) + <3719> DW_AT_byte_size : 4 + <371a> DW_AT_encoding : 5 (signed) + <371b> DW_AT_name : int + <1><371f>: Abbrev Number: 2 (DW_TAG_base_type) + <3720> DW_AT_byte_size : 4 + <3721> DW_AT_encoding : 7 (unsigned) + <3722> DW_AT_name : (indirect string, offset: 0x2e5e): unsigned int + <1><3726>: Abbrev Number: 2 (DW_TAG_base_type) + <3727> DW_AT_byte_size : 8 + <3728> DW_AT_encoding : 5 (signed) + <3729> DW_AT_name : (indirect string, offset: 0x2d66): long int + <1><372d>: Abbrev Number: 2 (DW_TAG_base_type) + <372e> DW_AT_byte_size : 8 + <372f> DW_AT_encoding : 7 (unsigned) + <3730> DW_AT_name : (indirect string, offset: 0x2d18): long unsigned int + <1><3734>: Abbrev Number: 3 (DW_TAG_typedef) + <3735> DW_AT_name : (indirect string, offset: 0x2e90): _ssize_t + <3739> DW_AT_decl_file : 3 + <373a> DW_AT_decl_line : 91 + <373b> DW_AT_decl_column : 28 + <373c> DW_AT_type : <0x3726> + <1><3740>: Abbrev Number: 3 (DW_TAG_typedef) + <3741> DW_AT_name : (indirect string, offset: 0x2e09): _size_t + <3745> DW_AT_decl_file : 3 + <3746> DW_AT_decl_line : 93 + <3747> DW_AT_decl_column : 28 + <3748> DW_AT_type : <0x372d> + <1><374c>: Abbrev Number: 2 (DW_TAG_base_type) + <374d> DW_AT_byte_size : 8 + <374e> DW_AT_encoding : 7 (unsigned) + <374f> DW_AT_name : (indirect string, offset: 0x2c1f): long long unsigned int + <1><3753>: Abbrev Number: 3 (DW_TAG_typedef) + <3754> DW_AT_name : (indirect string, offset: 0x2bb3): uint8_t + <3758> DW_AT_decl_file : 4 + <3759> DW_AT_decl_line : 166 + <375a> DW_AT_decl_column : 29 + <375b> DW_AT_type : <0x36d3> + <1><375f>: Abbrev Number: 3 (DW_TAG_typedef) + <3760> DW_AT_name : (indirect string, offset: 0x2d8a): int16_t + <3764> DW_AT_decl_file : 4 + <3765> DW_AT_decl_line : 168 + <3766> DW_AT_decl_column : 29 + <3767> DW_AT_type : <0x36e6> + <1><376b>: Abbrev Number: 5 (DW_TAG_volatile_type) + <376c> DW_AT_type : <0x375f> + <1><3770>: Abbrev Number: 3 (DW_TAG_typedef) + <3771> DW_AT_name : (indirect string, offset: 0x2d06): uint16_t + <3775> DW_AT_decl_file : 4 + <3776> DW_AT_decl_line : 169 + <3777> DW_AT_decl_column : 29 + <3778> DW_AT_type : <0x36f9> + <1><377c>: Abbrev Number: 3 (DW_TAG_typedef) + <377d> DW_AT_name : (indirect string, offset: 0x2d6f): int32_t + <3781> DW_AT_decl_file : 4 + <3782> DW_AT_decl_line : 176 + <3783> DW_AT_decl_column : 29 + <3784> DW_AT_type : <0x370c> + <1><3788>: Abbrev Number: 3 (DW_TAG_typedef) + <3789> DW_AT_name : (indirect string, offset: 0x2de4): uintptr_t + <378d> DW_AT_decl_file : 4 + <378e> DW_AT_decl_line : 239 + <378f> DW_AT_decl_column : 29 + <3790> DW_AT_type : <0x3740> + <1><3794>: Abbrev Number: 3 (DW_TAG_typedef) + <3795> DW_AT_name : (indirect string, offset: 0x2a89): size_t + <3799> DW_AT_decl_file : 5 + <379a> DW_AT_decl_line : 133 + <379b> DW_AT_decl_column : 22 + <379c> DW_AT_type : <0x3740> + <1><37a0>: Abbrev Number: 3 (DW_TAG_typedef) + <37a1> DW_AT_name : (indirect string, offset: 0x2adc): ssize_t + <37a5> DW_AT_decl_file : 5 + <37a6> DW_AT_decl_line : 134 + <37a7> DW_AT_decl_column : 22 + <37a8> DW_AT_type : <0x3734> + <1><37ac>: Abbrev Number: 3 (DW_TAG_typedef) + <37ad> DW_AT_name : (indirect string, offset: 0x2dde): pid_t + <37b1> DW_AT_decl_file : 5 + <37b2> DW_AT_decl_line : 162 + <37b3> DW_AT_decl_column : 22 + <37b4> DW_AT_type : <0x3718> + <1><37b8>: Abbrev Number: 3 (DW_TAG_typedef) + <37b9> DW_AT_name : (indirect string, offset: 0x2c8a): off_t + <37bd> DW_AT_decl_file : 5 + <37be> DW_AT_decl_line : 229 + <37bf> DW_AT_decl_column : 22 + <37c0> DW_AT_type : <0x377c> + <1><37c4>: Abbrev Number: 6 (DW_TAG_pointer_type) + <37c5> DW_AT_byte_size : 8 + <1><37c6>: Abbrev Number: 7 (DW_TAG_pointer_type) + <37c7> DW_AT_byte_size : 8 + <37c8> DW_AT_type : <0x37cc> + <1><37cc>: Abbrev Number: 2 (DW_TAG_base_type) + <37cd> DW_AT_byte_size : 1 + <37ce> DW_AT_encoding : 8 (unsigned char) + <37cf> DW_AT_name : (indirect string, offset: 0x2d59): char + <1><37d3>: Abbrev Number: 8 (DW_TAG_const_type) + <37d4> DW_AT_type : <0x37cc> + <1><37d8>: Abbrev Number: 7 (DW_TAG_pointer_type) + <37d9> DW_AT_byte_size : 8 + <37da> DW_AT_type : <0x37c6> + <1><37de>: Abbrev Number: 2 (DW_TAG_base_type) + <37df> DW_AT_byte_size : 8 + <37e0> DW_AT_encoding : 5 (signed) + <37e1> DW_AT_name : (indirect string, offset: 0x2c11): long long int + <1><37e5>: Abbrev Number: 2 (DW_TAG_base_type) + <37e6> DW_AT_byte_size : 16 + <37e7> DW_AT_encoding : 4 (float) + <37e8> DW_AT_name : (indirect string, offset: 0x2ca1): long double + <1><37ec>: Abbrev Number: 7 (DW_TAG_pointer_type) + <37ed> DW_AT_byte_size : 8 + <37ee> DW_AT_type : <0x37d3> + <1><37f2>: Abbrev Number: 9 (DW_TAG_structure_type) + <37f3> DW_AT_name : (indirect string, offset: 0x2c96): dq_entry_s + <37f7> DW_AT_byte_size : 16 + <37f8> DW_AT_decl_file : 6 + <37f9> DW_AT_decl_line : 303 + <37fb> DW_AT_decl_column : 8 + <37fc> DW_AT_sibling : <0x381d> + <2><3800>: Abbrev Number: 10 (DW_TAG_member) + <3801> DW_AT_name : (indirect string, offset: 0x2c90): flink + <3805> DW_AT_decl_file : 6 + <3806> DW_AT_decl_line : 305 + <3808> DW_AT_decl_column : 26 + <3809> DW_AT_type : <0x381d> + <380d> DW_AT_data_member_location: 0 + <2><380e>: Abbrev Number: 10 (DW_TAG_member) + <380f> DW_AT_name : (indirect string, offset: 0x2bd1): blink + <3813> DW_AT_decl_file : 6 + <3814> DW_AT_decl_line : 306 + <3816> DW_AT_decl_column : 26 + <3817> DW_AT_type : <0x381d> + <381b> DW_AT_data_member_location: 8 + <2><381c>: Abbrev Number: 0 + <1><381d>: Abbrev Number: 7 (DW_TAG_pointer_type) + <381e> DW_AT_byte_size : 8 + <381f> DW_AT_type : <0x37f2> + <1><3823>: Abbrev Number: 11 (DW_TAG_typedef) + <3824> DW_AT_name : (indirect string, offset: 0x2da0): dq_entry_t + <3828> DW_AT_decl_file : 6 + <3829> DW_AT_decl_line : 308 + <382b> DW_AT_decl_column : 27 + <382c> DW_AT_type : <0x37f2> + <1><3830>: Abbrev Number: 9 (DW_TAG_structure_type) + <3831> DW_AT_name : (indirect string, offset: 0x2e74): dq_queue_s + <3835> DW_AT_byte_size : 16 + <3836> DW_AT_decl_file : 6 + <3837> DW_AT_decl_line : 317 + <3839> DW_AT_decl_column : 8 + <383a> DW_AT_sibling : <0x385b> + <2><383e>: Abbrev Number: 10 (DW_TAG_member) + <383f> DW_AT_name : (indirect string, offset: 0x2bae): head + <3843> DW_AT_decl_file : 6 + <3844> DW_AT_decl_line : 319 + <3846> DW_AT_decl_column : 19 + <3847> DW_AT_type : <0x385b> + <384b> DW_AT_data_member_location: 0 + <2><384c>: Abbrev Number: 10 (DW_TAG_member) + <384d> DW_AT_name : (indirect string, offset: 0x2cd5): tail + <3851> DW_AT_decl_file : 6 + <3852> DW_AT_decl_line : 320 + <3854> DW_AT_decl_column : 19 + <3855> DW_AT_type : <0x385b> + <3859> DW_AT_data_member_location: 8 + <2><385a>: Abbrev Number: 0 + <1><385b>: Abbrev Number: 7 (DW_TAG_pointer_type) + <385c> DW_AT_byte_size : 8 + <385d> DW_AT_type : <0x3823> + <1><3861>: Abbrev Number: 11 (DW_TAG_typedef) + <3862> DW_AT_name : (indirect string, offset: 0x2e1e): dq_queue_t + <3866> DW_AT_decl_file : 6 + <3867> DW_AT_decl_line : 322 + <3869> DW_AT_decl_column : 27 + <386a> DW_AT_type : <0x3830> + <1><386e>: Abbrev Number: 12 (DW_TAG_structure_type) + <386f> DW_AT_name : (indirect string, offset: 0x2bd7): sem_s + <3873> DW_AT_byte_size : 24 + <3874> DW_AT_decl_file : 7 + <3875> DW_AT_decl_line : 99 + <3876> DW_AT_decl_column : 8 + <3877> DW_AT_sibling : <0x38a3> + <2><387b>: Abbrev Number: 13 (DW_TAG_member) + <387c> DW_AT_name : (indirect string, offset: 0x2cda): semcount + <3880> DW_AT_decl_file : 7 + <3881> DW_AT_decl_line : 101 + <3882> DW_AT_decl_column : 20 + <3883> DW_AT_type : <0x376b> + <3887> DW_AT_data_member_location: 0 + <2><3888>: Abbrev Number: 13 (DW_TAG_member) + <3889> DW_AT_name : (indirect string, offset: 0x2cf5): flags + <388d> DW_AT_decl_file : 7 + <388e> DW_AT_decl_line : 108 + <388f> DW_AT_decl_column : 11 + <3890> DW_AT_type : <0x3753> + <3894> DW_AT_data_member_location: 2 + <2><3895>: Abbrev Number: 13 (DW_TAG_member) + <3896> DW_AT_name : (indirect string, offset: 0x2ab3): waitlist + <389a> DW_AT_decl_file : 7 + <389b> DW_AT_decl_line : 110 + <389c> DW_AT_decl_column : 14 + <389d> DW_AT_type : <0x3861> + <38a1> DW_AT_data_member_location: 8 + <2><38a2>: Abbrev Number: 0 + <1><38a3>: Abbrev Number: 3 (DW_TAG_typedef) + <38a4> DW_AT_name : (indirect string, offset: 0x2bdd): sem_t + <38a8> DW_AT_decl_file : 7 + <38a9> DW_AT_decl_line : 121 + <38aa> DW_AT_decl_column : 22 + <38ab> DW_AT_type : <0x386e> + <1><38af>: Abbrev Number: 2 (DW_TAG_base_type) + <38b0> DW_AT_byte_size : 1 + <38b1> DW_AT_encoding : 2 (boolean) + <38b2> DW_AT_name : (indirect string, offset: 0x2d92): _Bool + <1><38b6>: Abbrev Number: 12 (DW_TAG_structure_type) + <38b7> DW_AT_name : (indirect string, offset: 0x2d5e): mutex_s + <38bb> DW_AT_byte_size : 32 + <38bc> DW_AT_decl_file : 8 + <38bd> DW_AT_decl_line : 46 + <38be> DW_AT_decl_column : 8 + <38bf> DW_AT_sibling : <0x38de> + <2><38c3>: Abbrev Number: 14 (DW_TAG_member) + <38c4> DW_AT_name : sem + <38c8> DW_AT_decl_file : 8 + <38c9> DW_AT_decl_line : 48 + <38ca> DW_AT_decl_column : 9 + <38cb> DW_AT_type : <0x38a3> + <38cf> DW_AT_data_member_location: 0 + <2><38d0>: Abbrev Number: 13 (DW_TAG_member) + <38d1> DW_AT_name : (indirect string, offset: 0x2c36): holder + <38d5> DW_AT_decl_file : 8 + <38d6> DW_AT_decl_line : 49 + <38d7> DW_AT_decl_column : 9 + <38d8> DW_AT_type : <0x37ac> + <38dc> DW_AT_data_member_location: 24 + <2><38dd>: Abbrev Number: 0 + <1><38de>: Abbrev Number: 3 (DW_TAG_typedef) + <38df> DW_AT_name : (indirect string, offset: 0x2c54): mutex_t + <38e3> DW_AT_decl_file : 8 + <38e4> DW_AT_decl_line : 52 + <38e5> DW_AT_decl_column : 24 + <38e6> DW_AT_type : <0x38b6> + <1><38ea>: Abbrev Number: 12 (DW_TAG_structure_type) + <38eb> DW_AT_name : (indirect string, offset: 0x2cec): rmutex_s + <38ef> DW_AT_byte_size : 40 + <38f0> DW_AT_decl_file : 8 + <38f1> DW_AT_decl_line : 54 + <38f2> DW_AT_decl_column : 8 + <38f3> DW_AT_sibling : <0x3912> + <2><38f7>: Abbrev Number: 13 (DW_TAG_member) + <38f8> DW_AT_name : (indirect string, offset: 0x2d39): mutex + <38fc> DW_AT_decl_file : 8 + <38fd> DW_AT_decl_line : 56 + <38fe> DW_AT_decl_column : 11 + <38ff> DW_AT_type : <0x38de> + <3903> DW_AT_data_member_location: 0 + <2><3904>: Abbrev Number: 13 (DW_TAG_member) + <3905> DW_AT_name : (indirect string, offset: 0x2df8): count + <3909> DW_AT_decl_file : 8 + <390a> DW_AT_decl_line : 57 + <390b> DW_AT_decl_column : 16 + <390c> DW_AT_type : <0x371f> + <3910> DW_AT_data_member_location: 32 + <2><3911>: Abbrev Number: 0 + <1><3912>: Abbrev Number: 3 (DW_TAG_typedef) + <3913> DW_AT_name : (indirect string, offset: 0x2e87): rmutex_t + <3917> DW_AT_decl_file : 8 + <3918> DW_AT_decl_line : 60 + <3919> DW_AT_decl_column : 25 + <391a> DW_AT_type : <0x38ea> + <1><391e>: Abbrev Number: 11 (DW_TAG_typedef) + <391f> DW_AT_name : (indirect string, offset: 0x2c3d): cookie_read_function_t + <3923> DW_AT_decl_file : 9 + <3924> DW_AT_decl_line : 441 + <3926> DW_AT_decl_column : 22 + <3927> DW_AT_type : <0x392b> + <1><392b>: Abbrev Number: 15 (DW_TAG_subroutine_type) + <392c> DW_AT_prototyped : 1 + <392c> DW_AT_type : <0x37a0> + <3930> DW_AT_sibling : <0x3944> + <2><3934>: Abbrev Number: 16 (DW_TAG_formal_parameter) + <3935> DW_AT_type : <0x37c4> + <2><3939>: Abbrev Number: 16 (DW_TAG_formal_parameter) + <393a> DW_AT_type : <0x37c6> + <2><393e>: Abbrev Number: 16 (DW_TAG_formal_parameter) + <393f> DW_AT_type : <0x3794> + <2><3943>: Abbrev Number: 0 + <1><3944>: Abbrev Number: 11 (DW_TAG_typedef) + <3945> DW_AT_name : (indirect string, offset: 0x2a9b): cookie_write_function_t + <3949> DW_AT_decl_file : 9 + <394a> DW_AT_decl_line : 443 + <394c> DW_AT_decl_column : 22 + <394d> DW_AT_type : <0x3951> + <1><3951>: Abbrev Number: 15 (DW_TAG_subroutine_type) + <3952> DW_AT_prototyped : 1 + <3952> DW_AT_type : <0x37a0> + <3956> DW_AT_sibling : <0x396a> + <2><395a>: Abbrev Number: 16 (DW_TAG_formal_parameter) + <395b> DW_AT_type : <0x37c4> + <2><395f>: Abbrev Number: 16 (DW_TAG_formal_parameter) + <3960> DW_AT_type : <0x37ec> + <2><3964>: Abbrev Number: 16 (DW_TAG_formal_parameter) + <3965> DW_AT_type : <0x3794> + <2><3969>: Abbrev Number: 0 + <1><396a>: Abbrev Number: 11 (DW_TAG_typedef) + <396b> DW_AT_name : (indirect string, offset: 0x2db5): cookie_seek_function_t + <396f> DW_AT_decl_file : 9 + <3970> DW_AT_decl_line : 446 + <3972> DW_AT_decl_column : 20 + <3973> DW_AT_type : <0x3977> + <1><3977>: Abbrev Number: 15 (DW_TAG_subroutine_type) + <3978> DW_AT_prototyped : 1 + <3978> DW_AT_type : <0x37b8> + <397c> DW_AT_sibling : <0x3990> + <2><3980>: Abbrev Number: 16 (DW_TAG_formal_parameter) + <3981> DW_AT_type : <0x37c4> + <2><3985>: Abbrev Number: 16 (DW_TAG_formal_parameter) + <3986> DW_AT_type : <0x3990> + <2><398a>: Abbrev Number: 16 (DW_TAG_formal_parameter) + <398b> DW_AT_type : <0x3718> + <2><398f>: Abbrev Number: 0 + <1><3990>: Abbrev Number: 7 (DW_TAG_pointer_type) + <3991> DW_AT_byte_size : 8 + <3992> DW_AT_type : <0x37b8> + <1><3996>: Abbrev Number: 11 (DW_TAG_typedef) + <3997> DW_AT_name : (indirect string, offset: 0x2ac4): cookie_close_function_t + <399b> DW_AT_decl_file : 9 + <399c> DW_AT_decl_line : 449 + <399e> DW_AT_decl_column : 18 + <399f> DW_AT_type : <0x39a3> + <1><39a3>: Abbrev Number: 15 (DW_TAG_subroutine_type) + <39a4> DW_AT_prototyped : 1 + <39a4> DW_AT_type : <0x3718> + <39a8> DW_AT_sibling : <0x39b2> + <2><39ac>: Abbrev Number: 16 (DW_TAG_formal_parameter) + <39ad> DW_AT_type : <0x37c4> + <2><39b1>: Abbrev Number: 0 + <1><39b2>: Abbrev Number: 9 (DW_TAG_structure_type) + <39b3> DW_AT_name : (indirect string, offset: 0x2bbb): cookie_io_functions_t + <39b7> DW_AT_byte_size : 32 + <39b8> DW_AT_decl_file : 9 + <39b9> DW_AT_decl_line : 451 + <39bb> DW_AT_decl_column : 16 + <39bc> DW_AT_sibling : <0x39f9> + <2><39c0>: Abbrev Number: 10 (DW_TAG_member) + <39c1> DW_AT_name : (indirect string, offset: 0x2c0c): read + <39c5> DW_AT_decl_file : 9 + <39c6> DW_AT_decl_line : 453 + <39c8> DW_AT_decl_column : 31 + <39c9> DW_AT_type : <0x39f9> + <39cd> DW_AT_data_member_location: 0 + <2><39ce>: Abbrev Number: 10 (DW_TAG_member) + <39cf> DW_AT_name : (indirect string, offset: 0x2a5d): write + <39d3> DW_AT_decl_file : 9 + <39d4> DW_AT_decl_line : 454 + <39d6> DW_AT_decl_column : 32 + <39d7> DW_AT_type : <0x39ff> + <39db> DW_AT_data_member_location: 8 + <2><39dc>: Abbrev Number: 10 (DW_TAG_member) + <39dd> DW_AT_name : (indirect string, offset: 0x2e11): seek + <39e1> DW_AT_decl_file : 9 + <39e2> DW_AT_decl_line : 455 + <39e4> DW_AT_decl_column : 31 + <39e5> DW_AT_type : <0x3a05> + <39e9> DW_AT_data_member_location: 16 + <2><39ea>: Abbrev Number: 10 (DW_TAG_member) + <39eb> DW_AT_name : (indirect string, offset: 0x2a4f): close + <39ef> DW_AT_decl_file : 9 + <39f0> DW_AT_decl_line : 456 + <39f2> DW_AT_decl_column : 32 + <39f3> DW_AT_type : <0x3a0b> + <39f7> DW_AT_data_member_location: 24 + <2><39f8>: Abbrev Number: 0 + <1><39f9>: Abbrev Number: 7 (DW_TAG_pointer_type) + <39fa> DW_AT_byte_size : 8 + <39fb> DW_AT_type : <0x391e> + <1><39ff>: Abbrev Number: 7 (DW_TAG_pointer_type) + <3a00> DW_AT_byte_size : 8 + <3a01> DW_AT_type : <0x3944> + <1><3a05>: Abbrev Number: 7 (DW_TAG_pointer_type) + <3a06> DW_AT_byte_size : 8 + <3a07> DW_AT_type : <0x396a> + <1><3a0b>: Abbrev Number: 7 (DW_TAG_pointer_type) + <3a0c> DW_AT_byte_size : 8 + <3a0d> DW_AT_type : <0x3996> + <1><3a11>: Abbrev Number: 11 (DW_TAG_typedef) + <3a12> DW_AT_name : (indirect string, offset: 0x2bbb): cookie_io_functions_t + <3a16> DW_AT_decl_file : 9 + <3a17> DW_AT_decl_line : 457 + <3a19> DW_AT_decl_column : 3 + <3a1a> DW_AT_type : <0x39b2> + <1><3a1e>: Abbrev Number: 9 (DW_TAG_structure_type) + <3a1f> DW_AT_name : (indirect string, offset: 0x2c5c): file_struct + <3a23> DW_AT_byte_size : 192 + <3a24> DW_AT_decl_file : 9 + <3a25> DW_AT_decl_line : 526 + <3a27> DW_AT_decl_column : 8 + <3a28> DW_AT_sibling : <0x3ae3> + <2><3a2c>: Abbrev Number: 10 (DW_TAG_member) + <3a2d> DW_AT_name : (indirect string, offset: 0x2d98): fs_next + <3a31> DW_AT_decl_file : 9 + <3a32> DW_AT_decl_line : 528 + <3a34> DW_AT_decl_column : 27 + <3a35> DW_AT_type : <0x3ae3> + <3a39> DW_AT_data_member_location: 0 + <2><3a3a>: Abbrev Number: 10 (DW_TAG_member) + <3a3b> DW_AT_name : (indirect string, offset: 0x2e16): fs_lock + <3a3f> DW_AT_decl_file : 9 + <3a40> DW_AT_decl_line : 529 + <3a42> DW_AT_decl_column : 27 + <3a43> DW_AT_type : <0x3912> + <3a47> DW_AT_data_member_location: 8 + <2><3a48>: Abbrev Number: 10 (DW_TAG_member) + <3a49> DW_AT_name : (indirect string, offset: 0x2dab): fs_iofunc + <3a4d> DW_AT_decl_file : 9 + <3a4e> DW_AT_decl_line : 530 + <3a50> DW_AT_decl_column : 27 + <3a51> DW_AT_type : <0x3a11> + <3a55> DW_AT_data_member_location: 48 + <2><3a56>: Abbrev Number: 10 (DW_TAG_member) + <3a57> DW_AT_name : (indirect string, offset: 0x2dee): fs_cookie + <3a5b> DW_AT_decl_file : 9 + <3a5c> DW_AT_decl_line : 531 + <3a5e> DW_AT_decl_column : 27 + <3a5f> DW_AT_type : <0x37c4> + <3a63> DW_AT_data_member_location: 80 + <2><3a64>: Abbrev Number: 10 (DW_TAG_member) + <3a65> DW_AT_name : (indirect string, offset: 0x2e3b): fs_bufstart + <3a69> DW_AT_decl_file : 9 + <3a6a> DW_AT_decl_line : 533 + <3a6c> DW_AT_decl_column : 27 + <3a6d> DW_AT_type : <0x37c6> + <3a71> DW_AT_data_member_location: 88 + <2><3a72>: Abbrev Number: 10 (DW_TAG_member) + <3a73> DW_AT_name : (indirect string, offset: 0x2ba4): fs_bufend + <3a77> DW_AT_decl_file : 9 + <3a78> DW_AT_decl_line : 534 + <3a7a> DW_AT_decl_column : 27 + <3a7b> DW_AT_type : <0x37c6> + <3a7f> DW_AT_data_member_location: 96 + <2><3a80>: Abbrev Number: 10 (DW_TAG_member) + <3a81> DW_AT_name : (indirect string, offset: 0x2bee): fs_bufpos + <3a85> DW_AT_decl_file : 9 + <3a86> DW_AT_decl_line : 535 + <3a88> DW_AT_decl_column : 27 + <3a89> DW_AT_type : <0x37c6> + <3a8d> DW_AT_data_member_location: 104 + <2><3a8e>: Abbrev Number: 10 (DW_TAG_member) + <3a8f> DW_AT_name : (indirect string, offset: 0x2be3): fs_bufread + <3a93> DW_AT_decl_file : 9 + <3a94> DW_AT_decl_line : 536 + <3a96> DW_AT_decl_column : 27 + <3a97> DW_AT_type : <0x37c6> + <3a9b> DW_AT_data_member_location: 112 + <2><3a9c>: Abbrev Number: 10 (DW_TAG_member) + <3a9d> DW_AT_name : (indirect string, offset: 0x2dcc): fs_buffer + <3aa1> DW_AT_decl_file : 9 + <3aa2> DW_AT_decl_line : 538 + <3aa4> DW_AT_decl_column : 27 + <3aa5> DW_AT_type : <0x3ae9> + <3aa9> DW_AT_data_member_location: 120 + <2><3aaa>: Abbrev Number: 10 (DW_TAG_member) + <3aab> DW_AT_name : (indirect string, offset: 0x2d2a): fs_oflags + <3aaf> DW_AT_decl_file : 9 + <3ab0> DW_AT_decl_line : 541 + <3ab2> DW_AT_decl_column : 27 + <3ab3> DW_AT_type : <0x3770> + <3ab7> DW_AT_data_member_location: 184 + <2><3ab8>: Abbrev Number: 10 (DW_TAG_member) + <3ab9> DW_AT_name : (indirect string, offset: 0x2e6b): fs_flags + <3abd> DW_AT_decl_file : 9 + <3abe> DW_AT_decl_line : 542 + <3ac0> DW_AT_decl_column : 27 + <3ac1> DW_AT_type : <0x3753> + <3ac5> DW_AT_data_member_location: 186 + <2><3ac6>: Abbrev Number: 10 (DW_TAG_member) + <3ac7> DW_AT_name : (indirect string, offset: 0x2e51): fs_nungotten + <3acb> DW_AT_decl_file : 9 + <3acc> DW_AT_decl_line : 544 + <3ace> DW_AT_decl_column : 27 + <3acf> DW_AT_type : <0x3753> + <3ad3> DW_AT_data_member_location: 187 + <2><3ad4>: Abbrev Number: 10 (DW_TAG_member) + <3ad5> DW_AT_name : (indirect string, offset: 0x2a63): fs_ungotten + <3ad9> DW_AT_decl_file : 9 + <3ada> DW_AT_decl_line : 545 + <3adc> DW_AT_decl_column : 27 + <3add> DW_AT_type : <0x3af9> + <3ae1> DW_AT_data_member_location: 188 + <2><3ae2>: Abbrev Number: 0 + <1><3ae3>: Abbrev Number: 7 (DW_TAG_pointer_type) + <3ae4> DW_AT_byte_size : 8 + <3ae5> DW_AT_type : <0x3a1e> + <1><3ae9>: Abbrev Number: 17 (DW_TAG_array_type) + <3aea> DW_AT_type : <0x37cc> + <3aee> DW_AT_sibling : <0x3af9> + <2><3af2>: Abbrev Number: 18 (DW_TAG_subrange_type) + <3af3> DW_AT_type : <0x372d> + <3af7> DW_AT_upper_bound : 63 + <2><3af8>: Abbrev Number: 0 + <1><3af9>: Abbrev Number: 17 (DW_TAG_array_type) + <3afa> DW_AT_type : <0x37cc> + <3afe> DW_AT_sibling : <0x3b09> + <2><3b02>: Abbrev Number: 18 (DW_TAG_subrange_type) + <3b03> DW_AT_type : <0x372d> + <3b07> DW_AT_upper_bound : 1 + <2><3b08>: Abbrev Number: 0 + <1><3b09>: Abbrev Number: 19 (DW_TAG_structure_type) + <3b0a> DW_AT_name : (indirect string, offset: 0x2a90): streamlist + <3b0e> DW_AT_byte_size : 624 + <3b10> DW_AT_decl_file : 9 + <3b11> DW_AT_decl_line : 549 + <3b13> DW_AT_decl_column : 8 + <3b14> DW_AT_sibling : <0x3b53> + <2><3b18>: Abbrev Number: 10 (DW_TAG_member) + <3b19> DW_AT_name : (indirect string, offset: 0x2cb6): sl_lock + <3b1d> DW_AT_decl_file : 9 + <3b1e> DW_AT_decl_line : 551 + <3b20> DW_AT_decl_column : 27 + <3b21> DW_AT_type : <0x38de> + <3b25> DW_AT_data_member_location: 0 + <2><3b26>: Abbrev Number: 10 (DW_TAG_member) + <3b27> DW_AT_name : (indirect string, offset: 0x2a78): sl_std + <3b2b> DW_AT_decl_file : 9 + <3b2c> DW_AT_decl_line : 552 + <3b2e> DW_AT_decl_column : 27 + <3b2f> DW_AT_type : <0x3b53> + <3b33> DW_AT_data_member_location: 32 + <2><3b34>: Abbrev Number: 20 (DW_TAG_member) + <3b35> DW_AT_name : (indirect string, offset: 0x2a55): sl_head + <3b39> DW_AT_decl_file : 9 + <3b3a> DW_AT_decl_line : 553 + <3b3c> DW_AT_decl_column : 27 + <3b3d> DW_AT_type : <0x3ae3> + <3b41> DW_AT_data_member_location: 608 + <2><3b43>: Abbrev Number: 20 (DW_TAG_member) + <3b44> DW_AT_name : (indirect string, offset: 0x2dd6): sl_tail + <3b48> DW_AT_decl_file : 9 + <3b49> DW_AT_decl_line : 554 + <3b4b> DW_AT_decl_column : 27 + <3b4c> DW_AT_type : <0x3ae3> + <3b50> DW_AT_data_member_location: 616 + <2><3b52>: Abbrev Number: 0 + <1><3b53>: Abbrev Number: 17 (DW_TAG_array_type) + <3b54> DW_AT_type : <0x3a1e> + <3b58> DW_AT_sibling : <0x3b63> + <2><3b5c>: Abbrev Number: 18 (DW_TAG_subrange_type) + <3b5d> DW_AT_type : <0x372d> + <3b61> DW_AT_upper_bound : 2 + <2><3b62>: Abbrev Number: 0 + <1><3b63>: Abbrev Number: 7 (DW_TAG_pointer_type) + <3b64> DW_AT_byte_size : 8 + <3b65> DW_AT_type : <0x3718> + <1><3b69>: Abbrev Number: 21 (DW_TAG_structure_type) + <3b6a> DW_AT_name : (indirect string, offset: 0x2d3f): task_info_s + <3b6e> DW_AT_byte_size : 664 + <3b70> DW_AT_decl_file : 10 + <3b71> DW_AT_decl_line : 116 + <3b72> DW_AT_decl_column : 8 + <3b73> DW_AT_sibling : <0x3b9f> + <2><3b77>: Abbrev Number: 13 (DW_TAG_member) + <3b78> DW_AT_name : (indirect string, offset: 0x2aec): ta_lock + <3b7c> DW_AT_decl_file : 10 + <3b7d> DW_AT_decl_line : 118 + <3b7e> DW_AT_decl_column : 19 + <3b7f> DW_AT_type : <0x38de> + <3b83> DW_AT_data_member_location: 0 + <2><3b84>: Abbrev Number: 13 (DW_TAG_member) + <3b85> DW_AT_name : (indirect string, offset: 0x2d34): argv + <3b89> DW_AT_decl_file : 10 + <3b8a> DW_AT_decl_line : 119 + <3b8b> DW_AT_decl_column : 19 + <3b8c> DW_AT_type : <0x37d8> + <3b90> DW_AT_data_member_location: 32 + <2><3b91>: Abbrev Number: 13 (DW_TAG_member) + <3b92> DW_AT_name : (indirect string, offset: 0x2d4b): ta_streamlist + <3b96> DW_AT_decl_file : 10 + <3b97> DW_AT_decl_line : 137 + <3b98> DW_AT_decl_column : 21 + <3b99> DW_AT_type : <0x3b09> + <3b9d> DW_AT_data_member_location: 40 + <2><3b9e>: Abbrev Number: 0 + <1><3b9f>: Abbrev Number: 7 (DW_TAG_pointer_type) + <3ba0> DW_AT_byte_size : 8 + <3ba1> DW_AT_type : <0x3b69> + <1><3ba5>: Abbrev Number: 12 (DW_TAG_structure_type) + <3ba6> DW_AT_name : (indirect string, offset: 0x2cfb): tls_info_s + <3baa> DW_AT_byte_size : 16 + <3bab> DW_AT_decl_file : 10 + <3bac> DW_AT_decl_line : 191 + <3bad> DW_AT_decl_column : 8 + <3bae> DW_AT_sibling : <0x3bda> + <2><3bb2>: Abbrev Number: 13 (DW_TAG_member) + <3bb3> DW_AT_name : (indirect string, offset: 0x2abc): tl_task + <3bb7> DW_AT_decl_file : 10 + <3bb8> DW_AT_decl_line : 193 + <3bb9> DW_AT_decl_column : 28 + <3bba> DW_AT_type : <0x3b9f> + <3bbe> DW_AT_data_member_location: 0 + <2><3bbf>: Abbrev Number: 13 (DW_TAG_member) + <3bc0> DW_AT_name : (indirect string, offset: 0x2dfe): tl_cpstate + <3bc4> DW_AT_decl_file : 10 + <3bc5> DW_AT_decl_line : 209 + <3bc6> DW_AT_decl_column : 11 + <3bc7> DW_AT_type : <0x3753> + <3bcb> DW_AT_data_member_location: 8 + <2><3bcc>: Abbrev Number: 13 (DW_TAG_member) + <3bcd> DW_AT_name : (indirect string, offset: 0x2d0f): tl_errno + <3bd1> DW_AT_decl_file : 10 + <3bd2> DW_AT_decl_line : 215 + <3bd3> DW_AT_decl_column : 7 + <3bd4> DW_AT_type : <0x3718> + <3bd8> DW_AT_data_member_location: 12 + <2><3bd9>: Abbrev Number: 0 + <1><3bda>: Abbrev Number: 22 (DW_TAG_variable) + <3bdb> DW_AT_name : (indirect string, offset: 0x2c04): g_errno + <3bdf> DW_AT_decl_file : 1 + <3be0> DW_AT_decl_line : 33 + <3be1> DW_AT_decl_column : 12 + <3be2> DW_AT_type : <0x3718> + <3be6> DW_AT_location : 9 byte block: 3 8 0 0 0 0 0 0 0 (DW_OP_addr: 8) + <1><3bf0>: Abbrev Number: 23 (DW_TAG_subprogram) + <3bf1> DW_AT_external : 1 + <3bf1> DW_AT_name : (indirect string, offset: 0x2e7f): __errno + <3bf5> DW_AT_decl_file : 11 + <3bf6> DW_AT_decl_line : 364 + <3bf8> DW_AT_decl_column : 10 + <3bf9> DW_AT_prototyped : 1 + <3bf9> DW_AT_type : <0x3b63> + <3bfd> DW_AT_low_pc : 0x514 + <3c05> DW_AT_high_pc : 0x16 + <3c0d> DW_AT_frame_base : 1 byte block: 9c (DW_OP_call_frame_cfa) + <3c0f> DW_AT_GNU_all_call_sites: 1 + <3c0f> DW_AT_sibling : <0x3c42> + <2><3c13>: Abbrev Number: 22 (DW_TAG_variable) + <3c14> DW_AT_name : (indirect string, offset: 0x2ae4): tlsinfo + <3c18> DW_AT_decl_file : 1 + <3c19> DW_AT_decl_line : 59 + <3c1a> DW_AT_decl_column : 26 + <3c1b> DW_AT_type : <0x3c42> + <3c1f> DW_AT_location : 1 byte block: 5f (DW_OP_reg15 (a5)) + <2><3c21>: Abbrev Number: 24 (DW_TAG_inlined_subroutine) + <3c22> DW_AT_abstract_origin: <0x3c48> + <3c26> DW_AT_entry_pc : 0x514 + <3c2e> DW_AT_ranges : 0x320 + <3c32> DW_AT_call_file : 1 + <3c33> DW_AT_call_line : 59 + <3c34> DW_AT_call_column : 36 + <3><3c35>: Abbrev Number: 25 (DW_TAG_lexical_block) + <3c36> DW_AT_ranges : 0x320 + <4><3c3a>: Abbrev Number: 26 (DW_TAG_variable) + <3c3b> DW_AT_abstract_origin: <0x3c56> + <4><3c3f>: Abbrev Number: 0 + <3><3c40>: Abbrev Number: 0 + <2><3c41>: Abbrev Number: 0 + <1><3c42>: Abbrev Number: 7 (DW_TAG_pointer_type) + <3c43> DW_AT_byte_size : 8 + <3c44> DW_AT_type : <0x3ba5> + <1><3c48>: Abbrev Number: 27 (DW_TAG_subprogram) + <3c49> DW_AT_name : (indirect string, offset: 0x2ce3): up_getsp + <3c4d> DW_AT_decl_file : 2 + <3c4e> DW_AT_decl_line : 598 + <3c50> DW_AT_decl_column : 25 + <3c51> DW_AT_prototyped : 1 + <3c51> DW_AT_type : <0x3788> + <3c55> DW_AT_inline : 3 (declared as inline and inlined) + <2><3c56>: Abbrev Number: 28 (DW_TAG_variable) + <3c57> DW_AT_name : sp + <3c5a> DW_AT_decl_file : 2 + <3c5b> DW_AT_decl_line : 600 + <3c5d> DW_AT_decl_column : 22 + <3c5e> DW_AT_type : <0x3788> + <2><3c62>: Abbrev Number: 0 + <1><3c63>: Abbrev Number: 0 + Compilation Unit @ offset 0x3c64: + Length: 0xedf (32-bit) + Version: 4 + Abbrev Offset: 0x12d5 + Pointer Size: 8 + <0><3c6f>: Abbrev Number: 1 (DW_TAG_compile_unit) + <3c70> DW_AT_producer : (indirect string, offset: 0x2f26): GNU C17 10.2.0 -mcmodel=medany -march=rv64imafdc -mabi=lp64d -march=rv64imafdc -g -Os -fno-common -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections + <3c74> DW_AT_language : 12 (ANSI C99) + <3c75> DW_AT_name : (indirect string, offset: 0x32cd): misc/lib_mutex.c + <3c79> DW_AT_comp_dir : (indirect string, offset: 0x3043): /Users/Luppy/ox64/nuttx/libs/libc + <3c7d> DW_AT_ranges : 0x3a0 + <3c81> DW_AT_low_pc : 0x0 + <3c89> DW_AT_stmt_list : 0x1e8f + <1><3c8d>: Abbrev Number: 2 (DW_TAG_base_type) + <3c8e> DW_AT_byte_size : 1 + <3c8f> DW_AT_encoding : 6 (signed char) + <3c90> DW_AT_name : (indirect string, offset: 0x311a): signed char + <1><3c94>: Abbrev Number: 3 (DW_TAG_typedef) + <3c95> DW_AT_name : (indirect string, offset: 0x2ea7): _uint8_t + <3c99> DW_AT_decl_file : 2 + <3c9a> DW_AT_decl_line : 52 + <3c9b> DW_AT_decl_column : 28 + <3c9c> DW_AT_type : <0x3ca0> + <1><3ca0>: Abbrev Number: 2 (DW_TAG_base_type) + <3ca1> DW_AT_byte_size : 1 + <3ca2> DW_AT_encoding : 8 (unsigned char) + <3ca3> DW_AT_name : (indirect string, offset: 0x30eb): unsigned char + <1><3ca7>: Abbrev Number: 3 (DW_TAG_typedef) + <3ca8> DW_AT_name : (indirect string, offset: 0x31f9): _int16_t + <3cac> DW_AT_decl_file : 2 + <3cad> DW_AT_decl_line : 54 + <3cae> DW_AT_decl_column : 28 + <3caf> DW_AT_type : <0x3cb3> + <1><3cb3>: Abbrev Number: 2 (DW_TAG_base_type) + <3cb4> DW_AT_byte_size : 2 + <3cb5> DW_AT_encoding : 5 (signed) + <3cb6> DW_AT_name : (indirect string, offset: 0x2f1c): short int + <1><3cba>: Abbrev Number: 2 (DW_TAG_base_type) + <3cbb> DW_AT_byte_size : 2 + <3cbc> DW_AT_encoding : 7 (unsigned) + <3cbd> DW_AT_name : (indirect string, offset: 0x319a): short unsigned int + <1><3cc1>: Abbrev Number: 4 (DW_TAG_base_type) + <3cc2> DW_AT_byte_size : 4 + <3cc3> DW_AT_encoding : 5 (signed) + <3cc4> DW_AT_name : int + <1><3cc8>: Abbrev Number: 3 (DW_TAG_typedef) + <3cc9> DW_AT_name : (indirect string, offset: 0x32e7): _uint32_t + <3ccd> DW_AT_decl_file : 2 + <3cce> DW_AT_decl_line : 59 + <3ccf> DW_AT_decl_column : 28 + <3cd0> DW_AT_type : <0x3cd4> + <1><3cd4>: Abbrev Number: 2 (DW_TAG_base_type) + <3cd5> DW_AT_byte_size : 4 + <3cd6> DW_AT_encoding : 7 (unsigned) + <3cd7> DW_AT_name : (indirect string, offset: 0x3304): unsigned int + <1><3cdb>: Abbrev Number: 2 (DW_TAG_base_type) + <3cdc> DW_AT_byte_size : 8 + <3cdd> DW_AT_encoding : 5 (signed) + <3cde> DW_AT_name : (indirect string, offset: 0x31cc): long int + <1><3ce2>: Abbrev Number: 2 (DW_TAG_base_type) + <3ce3> DW_AT_byte_size : 8 + <3ce4> DW_AT_encoding : 7 (unsigned) + <3ce5> DW_AT_name : (indirect string, offset: 0x3224): long unsigned int + <1><3ce9>: Abbrev Number: 2 (DW_TAG_base_type) + <3cea> DW_AT_byte_size : 8 + <3ceb> DW_AT_encoding : 7 (unsigned) + <3cec> DW_AT_name : (indirect string, offset: 0x312c): long long unsigned int + <1><3cf0>: Abbrev Number: 3 (DW_TAG_typedef) + <3cf1> DW_AT_name : (indirect string, offset: 0x2fee): uint8_t + <3cf5> DW_AT_decl_file : 3 + <3cf6> DW_AT_decl_line : 166 + <3cf7> DW_AT_decl_column : 29 + <3cf8> DW_AT_type : <0x3c94> + <1><3cfc>: Abbrev Number: 3 (DW_TAG_typedef) + <3cfd> DW_AT_name : (indirect string, offset: 0x31d5): int16_t + <3d01> DW_AT_decl_file : 3 + <3d02> DW_AT_decl_line : 168 + <3d03> DW_AT_decl_column : 29 + <3d04> DW_AT_type : <0x3ca7> + <1><3d08>: Abbrev Number: 5 (DW_TAG_volatile_type) + <3d09> DW_AT_type : <0x3cfc> + <1><3d0d>: Abbrev Number: 3 (DW_TAG_typedef) + <3d0e> DW_AT_name : (indirect string, offset: 0x314c): uint32_t + <3d12> DW_AT_decl_file : 3 + <3d13> DW_AT_decl_line : 177 + <3d14> DW_AT_decl_column : 29 + <3d15> DW_AT_type : <0x3cc8> + <1><3d19>: Abbrev Number: 3 (DW_TAG_typedef) + <3d1a> DW_AT_name : (indirect string, offset: 0x3244): pid_t + <3d1e> DW_AT_decl_file : 4 + <3d1f> DW_AT_decl_line : 162 + <3d20> DW_AT_decl_column : 22 + <3d21> DW_AT_type : <0x3cc1> + <1><3d25>: Abbrev Number: 3 (DW_TAG_typedef) + <3d26> DW_AT_name : (indirect string, offset: 0x310a): time_t + <3d2a> DW_AT_decl_file : 4 + <3d2b> DW_AT_decl_line : 255 + <3d2c> DW_AT_decl_column : 22 + <3d2d> DW_AT_type : <0x3d0d> + <1><3d31>: Abbrev Number: 2 (DW_TAG_base_type) + <3d32> DW_AT_byte_size : 1 + <3d33> DW_AT_encoding : 8 (unsigned char) + <3d34> DW_AT_name : (indirect string, offset: 0x31c0): char + <1><3d38>: Abbrev Number: 6 (DW_TAG_enumeration_type) + <3d39> DW_AT_encoding : 5 (signed) + <3d3a> DW_AT_byte_size : 4 + <3d3b> DW_AT_type : <0x3cc1> + <3d3f> DW_AT_decl_file : 4 + <3d40> DW_AT_decl_line : 321 + <3d42> DW_AT_decl_column : 1 + <3d43> DW_AT_sibling : <0x3d53> + <2><3d47>: Abbrev Number: 7 (DW_TAG_enumerator) + <3d48> DW_AT_name : (indirect string, offset: 0x30a1): ERROR + <3d4c> DW_AT_const_value : -1 + <2><3d4d>: Abbrev Number: 8 (DW_TAG_enumerator) + <3d4e> DW_AT_name : OK + <3d51> DW_AT_const_value : 0 + <2><3d52>: Abbrev Number: 0 + <1><3d53>: Abbrev Number: 2 (DW_TAG_base_type) + <3d54> DW_AT_byte_size : 8 + <3d55> DW_AT_encoding : 5 (signed) + <3d56> DW_AT_name : (indirect string, offset: 0x3035): long long int + <1><3d5a>: Abbrev Number: 2 (DW_TAG_base_type) + <3d5b> DW_AT_byte_size : 16 + <3d5c> DW_AT_encoding : 4 (float) + <3d5d> DW_AT_name : (indirect string, offset: 0x2ef9): long double + <1><3d61>: Abbrev Number: 9 (DW_TAG_structure_type) + <3d62> DW_AT_name : (indirect string, offset: 0x32de): timespec + <3d66> DW_AT_byte_size : 16 + <3d67> DW_AT_decl_file : 5 + <3d68> DW_AT_decl_line : 113 + <3d69> DW_AT_decl_column : 8 + <3d6a> DW_AT_sibling : <0x3d89> + <2><3d6e>: Abbrev Number: 10 (DW_TAG_member) + <3d6f> DW_AT_name : (indirect string, offset: 0x2eb5): tv_sec + <3d73> DW_AT_decl_file : 5 + <3d74> DW_AT_decl_line : 115 + <3d75> DW_AT_decl_column : 10 + <3d76> DW_AT_type : <0x3d25> + <3d7a> DW_AT_data_member_location: 0 + <2><3d7b>: Abbrev Number: 10 (DW_TAG_member) + <3d7c> DW_AT_name : (indirect string, offset: 0x2e99): tv_nsec + <3d80> DW_AT_decl_file : 5 + <3d81> DW_AT_decl_line : 116 + <3d82> DW_AT_decl_column : 10 + <3d83> DW_AT_type : <0x3cdb> + <3d87> DW_AT_data_member_location: 8 + <2><3d88>: Abbrev Number: 0 + <1><3d89>: Abbrev Number: 11 (DW_TAG_structure_type) + <3d8a> DW_AT_name : (indirect string, offset: 0x31e3): dq_entry_s + <3d8e> DW_AT_byte_size : 16 + <3d8f> DW_AT_decl_file : 6 + <3d90> DW_AT_decl_line : 303 + <3d92> DW_AT_decl_column : 8 + <3d93> DW_AT_sibling : <0x3db4> + <2><3d97>: Abbrev Number: 12 (DW_TAG_member) + <3d98> DW_AT_name : (indirect string, offset: 0x30a7): flink + <3d9c> DW_AT_decl_file : 6 + <3d9d> DW_AT_decl_line : 305 + <3d9f> DW_AT_decl_column : 26 + <3da0> DW_AT_type : <0x3db4> + <3da4> DW_AT_data_member_location: 0 + <2><3da5>: Abbrev Number: 12 (DW_TAG_member) + <3da6> DW_AT_name : (indirect string, offset: 0x2ea1): blink + <3daa> DW_AT_decl_file : 6 + <3dab> DW_AT_decl_line : 306 + <3dad> DW_AT_decl_column : 26 + <3dae> DW_AT_type : <0x3db4> + <3db2> DW_AT_data_member_location: 8 + <2><3db3>: Abbrev Number: 0 + <1><3db4>: Abbrev Number: 13 (DW_TAG_pointer_type) + <3db5> DW_AT_byte_size : 8 + <3db6> DW_AT_type : <0x3d89> + <1><3dba>: Abbrev Number: 14 (DW_TAG_typedef) + <3dbb> DW_AT_name : (indirect string, offset: 0x31ee): dq_entry_t + <3dbf> DW_AT_decl_file : 6 + <3dc0> DW_AT_decl_line : 308 + <3dc2> DW_AT_decl_column : 27 + <3dc3> DW_AT_type : <0x3d89> + <1><3dc7>: Abbrev Number: 11 (DW_TAG_structure_type) + <3dc8> DW_AT_name : (indirect string, offset: 0x3329): dq_queue_s + <3dcc> DW_AT_byte_size : 16 + <3dcd> DW_AT_decl_file : 6 + <3dce> DW_AT_decl_line : 317 + <3dd0> DW_AT_decl_column : 8 + <3dd1> DW_AT_sibling : <0x3df2> + <2><3dd5>: Abbrev Number: 12 (DW_TAG_member) + <3dd6> DW_AT_name : (indirect string, offset: 0x2fe9): head + <3dda> DW_AT_decl_file : 6 + <3ddb> DW_AT_decl_line : 319 + <3ddd> DW_AT_decl_column : 19 + <3dde> DW_AT_type : <0x3df2> + <3de2> DW_AT_data_member_location: 0 + <2><3de3>: Abbrev Number: 12 (DW_TAG_member) + <3de4> DW_AT_name : (indirect string, offset: 0x318f): tail + <3de8> DW_AT_decl_file : 6 + <3de9> DW_AT_decl_line : 320 + <3deb> DW_AT_decl_column : 19 + <3dec> DW_AT_type : <0x3df2> + <3df0> DW_AT_data_member_location: 8 + <2><3df1>: Abbrev Number: 0 + <1><3df2>: Abbrev Number: 13 (DW_TAG_pointer_type) + <3df3> DW_AT_byte_size : 8 + <3df4> DW_AT_type : <0x3dba> + <1><3df8>: Abbrev Number: 14 (DW_TAG_typedef) + <3df9> DW_AT_name : (indirect string, offset: 0x32c2): dq_queue_t + <3dfd> DW_AT_decl_file : 6 + <3dfe> DW_AT_decl_line : 322 + <3e00> DW_AT_decl_column : 27 + <3e01> DW_AT_type : <0x3dc7> + <1><3e05>: Abbrev Number: 9 (DW_TAG_structure_type) + <3e06> DW_AT_name : (indirect string, offset: 0x2ff6): sem_s + <3e0a> DW_AT_byte_size : 24 + <3e0b> DW_AT_decl_file : 7 + <3e0c> DW_AT_decl_line : 99 + <3e0d> DW_AT_decl_column : 8 + <3e0e> DW_AT_sibling : <0x3e3a> + <2><3e12>: Abbrev Number: 10 (DW_TAG_member) + <3e13> DW_AT_name : (indirect string, offset: 0x3111): semcount + <3e17> DW_AT_decl_file : 7 + <3e18> DW_AT_decl_line : 101 + <3e19> DW_AT_decl_column : 20 + <3e1a> DW_AT_type : <0x3d08> + <3e1e> DW_AT_data_member_location: 0 + <2><3e1f>: Abbrev Number: 10 (DW_TAG_member) + <3e20> DW_AT_name : (indirect string, offset: 0x3126): flags + <3e24> DW_AT_decl_file : 7 + <3e25> DW_AT_decl_line : 108 + <3e26> DW_AT_decl_column : 11 + <3e27> DW_AT_type : <0x3cf0> + <3e2b> DW_AT_data_member_location: 2 + <2><3e2c>: Abbrev Number: 10 (DW_TAG_member) + <3e2d> DW_AT_name : (indirect string, offset: 0x2f05): waitlist + <3e31> DW_AT_decl_file : 7 + <3e32> DW_AT_decl_line : 110 + <3e33> DW_AT_decl_column : 14 + <3e34> DW_AT_type : <0x3df8> + <3e38> DW_AT_data_member_location: 8 + <2><3e39>: Abbrev Number: 0 + <1><3e3a>: Abbrev Number: 3 (DW_TAG_typedef) + <3e3b> DW_AT_name : (indirect string, offset: 0x2ffc): sem_t + <3e3f> DW_AT_decl_file : 7 + <3e40> DW_AT_decl_line : 121 + <3e41> DW_AT_decl_column : 22 + <3e42> DW_AT_type : <0x3e05> + <1><3e46>: Abbrev Number: 2 (DW_TAG_base_type) + <3e47> DW_AT_byte_size : 1 + <3e48> DW_AT_encoding : 2 (boolean) + <3e49> DW_AT_name : (indirect string, offset: 0x31dd): _Bool + <1><3e4d>: Abbrev Number: 9 (DW_TAG_structure_type) + <3e4e> DW_AT_name : (indirect string, offset: 0x3002): mutex_s + <3e52> DW_AT_byte_size : 32 + <3e53> DW_AT_decl_file : 8 + <3e54> DW_AT_decl_line : 46 + <3e55> DW_AT_decl_column : 8 + <3e56> DW_AT_sibling : <0x3e75> + <2><3e5a>: Abbrev Number: 15 (DW_TAG_member) + <3e5b> DW_AT_name : sem + <3e5f> DW_AT_decl_file : 8 + <3e60> DW_AT_decl_line : 48 + <3e61> DW_AT_decl_column : 9 + <3e62> DW_AT_type : <0x3e3a> + <3e66> DW_AT_data_member_location: 0 + <2><3e67>: Abbrev Number: 10 (DW_TAG_member) + <3e68> DW_AT_name : (indirect string, offset: 0x3076): holder + <3e6c> DW_AT_decl_file : 8 + <3e6d> DW_AT_decl_line : 49 + <3e6e> DW_AT_decl_column : 9 + <3e6f> DW_AT_type : <0x3d19> + <3e73> DW_AT_data_member_location: 24 + <2><3e74>: Abbrev Number: 0 + <1><3e75>: Abbrev Number: 3 (DW_TAG_typedef) + <3e76> DW_AT_name : (indirect string, offset: 0x3092): mutex_t + <3e7a> DW_AT_decl_file : 8 + <3e7b> DW_AT_decl_line : 52 + <3e7c> DW_AT_decl_column : 24 + <3e7d> DW_AT_type : <0x3e4d> + <1><3e81>: Abbrev Number: 9 (DW_TAG_structure_type) + <3e82> DW_AT_name : (indirect string, offset: 0x3334): rmutex_s + <3e86> DW_AT_byte_size : 40 + <3e87> DW_AT_decl_file : 8 + <3e88> DW_AT_decl_line : 54 + <3e89> DW_AT_decl_column : 8 + <3e8a> DW_AT_sibling : <0x3ea9> + <2><3e8e>: Abbrev Number: 10 (DW_TAG_member) + <3e8f> DW_AT_name : (indirect string, offset: 0x3194): mutex + <3e93> DW_AT_decl_file : 8 + <3e94> DW_AT_decl_line : 56 + <3e95> DW_AT_decl_column : 11 + <3e96> DW_AT_type : <0x3e75> + <3e9a> DW_AT_data_member_location: 0 + <2><3e9b>: Abbrev Number: 10 (DW_TAG_member) + <3e9c> DW_AT_name : (indirect string, offset: 0x3278): count + <3ea0> DW_AT_decl_file : 8 + <3ea1> DW_AT_decl_line : 57 + <3ea2> DW_AT_decl_column : 16 + <3ea3> DW_AT_type : <0x3cd4> + <3ea7> DW_AT_data_member_location: 32 + <2><3ea8>: Abbrev Number: 0 + <1><3ea9>: Abbrev Number: 3 (DW_TAG_typedef) + <3eaa> DW_AT_name : (indirect string, offset: 0x333d): rmutex_t + <3eae> DW_AT_decl_file : 8 + <3eaf> DW_AT_decl_line : 60 + <3eb0> DW_AT_decl_column : 25 + <3eb1> DW_AT_type : <0x3e81> + <1><3eb5>: Abbrev Number: 16 (DW_TAG_subprogram) + <3eb6> DW_AT_external : 1 + <3eb6> DW_AT_name : (indirect string, offset: 0x307d): nxrmutex_restorelock + <3eba> DW_AT_decl_file : 8 + <3ebb> DW_AT_decl_line : 514 + <3ebd> DW_AT_decl_column : 5 + <3ebe> DW_AT_prototyped : 1 + <3ebe> DW_AT_type : <0x3cc1> + <3ec2> DW_AT_low_pc : 0x978 + <3eca> DW_AT_high_pc : 0x2a + <3ed2> DW_AT_frame_base : 1 byte block: 9c (DW_OP_call_frame_cfa) + <3ed4> DW_AT_GNU_all_call_sites: 1 + <3ed4> DW_AT_sibling : <0x3f20> + <2><3ed8>: Abbrev Number: 17 (DW_TAG_formal_parameter) + <3ed9> DW_AT_name : (indirect string, offset: 0x309a): rmutex + <3edd> DW_AT_decl_file : 1 + <3ede> DW_AT_decl_line : 749 + <3ee0> DW_AT_decl_column : 40 + <3ee1> DW_AT_type : <0x3f20> + <3ee5> DW_AT_location : 0x1355 (location list) + <2><3ee9>: Abbrev Number: 17 (DW_TAG_formal_parameter) + <3eea> DW_AT_name : (indirect string, offset: 0x3278): count + <3eee> DW_AT_decl_file : 1 + <3eef> DW_AT_decl_line : 749 + <3ef1> DW_AT_decl_column : 61 + <3ef2> DW_AT_type : <0x3cd4> + <3ef6> DW_AT_location : 0x13ca (location list) + <2><3efa>: Abbrev Number: 18 (DW_TAG_variable) + <3efb> DW_AT_name : ret + <3eff> DW_AT_decl_file : 1 + <3f00> DW_AT_decl_line : 751 + <3f02> DW_AT_decl_column : 7 + <3f03> DW_AT_type : <0x3cc1> + <3f07> DW_AT_location : 0x1416 (location list) + <2><3f0b>: Abbrev Number: 19 (DW_TAG_GNU_call_site) + <3f0c> DW_AT_low_pc : 0x98e + <3f14> DW_AT_abstract_origin: <0x4631> + <3><3f18>: Abbrev Number: 20 (DW_TAG_GNU_call_site_parameter) + <3f19> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <3f1b> DW_AT_GNU_call_site_value: 2 byte block: 79 0 (DW_OP_breg9 (s1): 0) + <3><3f1e>: Abbrev Number: 0 + <2><3f1f>: Abbrev Number: 0 + <1><3f20>: Abbrev Number: 13 (DW_TAG_pointer_type) + <3f21> DW_AT_byte_size : 8 + <3f22> DW_AT_type : <0x3ea9> + <1><3f26>: Abbrev Number: 16 (DW_TAG_subprogram) + <3f27> DW_AT_external : 1 + <3f27> DW_AT_name : (indirect string, offset: 0x32f1): nxrmutex_breaklock + <3f2b> DW_AT_decl_file : 8 + <3f2c> DW_AT_decl_line : 495 + <3f2e> DW_AT_decl_column : 5 + <3f2f> DW_AT_prototyped : 1 + <3f2f> DW_AT_type : <0x3cc1> + <3f33> DW_AT_low_pc : 0x936 + <3f3b> DW_AT_high_pc : 0x42 + <3f43> DW_AT_frame_base : 1 byte block: 9c (DW_OP_call_frame_cfa) + <3f45> DW_AT_GNU_all_call_sites: 1 + <3f45> DW_AT_sibling : <0x3fc8> + <2><3f49>: Abbrev Number: 17 (DW_TAG_formal_parameter) + <3f4a> DW_AT_name : (indirect string, offset: 0x309a): rmutex + <3f4e> DW_AT_decl_file : 1 + <3f4f> DW_AT_decl_line : 713 + <3f51> DW_AT_decl_column : 38 + <3f52> DW_AT_type : <0x3f20> + <3f56> DW_AT_location : 0x1474 (location list) + <2><3f5a>: Abbrev Number: 17 (DW_TAG_formal_parameter) + <3f5b> DW_AT_name : (indirect string, offset: 0x3278): count + <3f5f> DW_AT_decl_file : 1 + <3f60> DW_AT_decl_line : 713 + <3f62> DW_AT_decl_column : 64 + <3f63> DW_AT_type : <0x3fc8> + <3f67> DW_AT_location : 0x14d3 (location list) + <2><3f6b>: Abbrev Number: 18 (DW_TAG_variable) + <3f6c> DW_AT_name : ret + <3f70> DW_AT_decl_file : 1 + <3f71> DW_AT_decl_line : 715 + <3f73> DW_AT_decl_column : 7 + <3f74> DW_AT_type : <0x3cc1> + <3f78> DW_AT_location : 0x1532 (location list) + <2><3f7c>: Abbrev Number: 21 (DW_TAG_inlined_subroutine) + <3f7d> DW_AT_abstract_origin: <0x4316> + <3f81> DW_AT_entry_pc : 0x944 + <3f89> DW_AT_ranges : 0x370 + <3f8d> DW_AT_call_file : 1 + <3f8e> DW_AT_call_line : 718 + <3f90> DW_AT_call_column : 7 + <3f91> DW_AT_sibling : <0x3fb3> + <3><3f95>: Abbrev Number: 22 (DW_TAG_formal_parameter) + <3f96> DW_AT_abstract_origin: <0x4328> + <3f9a> DW_AT_location : 0x157d (location list) + <3><3f9e>: Abbrev Number: 19 (DW_TAG_GNU_call_site) + <3f9f> DW_AT_low_pc : 0x94e + <3fa7> DW_AT_abstract_origin: <0x46c8> + <4><3fab>: Abbrev Number: 20 (DW_TAG_GNU_call_site_parameter) + <3fac> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <3fae> DW_AT_GNU_call_site_value: 2 byte block: 78 0 (DW_OP_breg8 (s0): 0) + <4><3fb1>: Abbrev Number: 0 + <3><3fb2>: Abbrev Number: 0 + <2><3fb3>: Abbrev Number: 19 (DW_TAG_GNU_call_site) + <3fb4> DW_AT_low_pc : 0x962 + <3fbc> DW_AT_abstract_origin: <0x44c2> + <3><3fc0>: Abbrev Number: 20 (DW_TAG_GNU_call_site_parameter) + <3fc1> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <3fc3> DW_AT_GNU_call_site_value: 2 byte block: 78 0 (DW_OP_breg8 (s0): 0) + <3><3fc6>: Abbrev Number: 0 + <2><3fc7>: Abbrev Number: 0 + <1><3fc8>: Abbrev Number: 13 (DW_TAG_pointer_type) + <3fc9> DW_AT_byte_size : 8 + <3fca> DW_AT_type : <0x3cd4> + <1><3fce>: Abbrev Number: 16 (DW_TAG_subprogram) + <3fcf> DW_AT_external : 1 + <3fcf> DW_AT_name : (indirect string, offset: 0x30db): nxrmutex_unlock + <3fd3> DW_AT_decl_file : 8 + <3fd4> DW_AT_decl_line : 462 + <3fd6> DW_AT_decl_column : 5 + <3fd7> DW_AT_prototyped : 1 + <3fd7> DW_AT_type : <0x3cc1> + <3fdb> DW_AT_low_pc : 0x8e6 + <3fe3> DW_AT_high_pc : 0x50 + <3feb> DW_AT_frame_base : 1 byte block: 9c (DW_OP_call_frame_cfa) + <3fed> DW_AT_GNU_all_call_sites: 1 + <3fed> DW_AT_sibling : <0x405b> + <2><3ff1>: Abbrev Number: 17 (DW_TAG_formal_parameter) + <3ff2> DW_AT_name : (indirect string, offset: 0x309a): rmutex + <3ff6> DW_AT_decl_file : 1 + <3ff7> DW_AT_decl_line : 659 + <3ff9> DW_AT_decl_column : 35 + <3ffa> DW_AT_type : <0x3f20> + <3ffe> DW_AT_location : 0x15b3 (location list) + <2><4002>: Abbrev Number: 18 (DW_TAG_variable) + <4003> DW_AT_name : ret + <4007> DW_AT_decl_file : 1 + <4008> DW_AT_decl_line : 661 + <400a> DW_AT_decl_column : 7 + <400b> DW_AT_type : <0x3cc1> + <400f> DW_AT_location : 0x1628 (location list) + <2><4013>: Abbrev Number: 23 (DW_TAG_GNU_call_site) + <4014> DW_AT_low_pc : 0x90c + <401c> DW_AT_abstract_origin: <0x4aa3> + <4020> DW_AT_sibling : <0x4046> + <3><4024>: Abbrev Number: 20 (DW_TAG_GNU_call_site_parameter) + <4025> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <4027> DW_AT_GNU_call_site_value: 9 byte block: 3 48 e 0 0 0 0 0 0 (DW_OP_addr: e48) + <3><4031>: Abbrev Number: 20 (DW_TAG_GNU_call_site_parameter) + <4032> DW_AT_location : 1 byte block: 5b (DW_OP_reg11 (a1)) + <4034> DW_AT_GNU_call_site_value: 3 byte block: a 97 2 (DW_OP_const2u: 663) + <3><4038>: Abbrev Number: 20 (DW_TAG_GNU_call_site_parameter) + <4039> DW_AT_location : 1 byte block: 5c (DW_OP_reg12 (a2)) + <403b> DW_AT_GNU_call_site_value: 9 byte block: 3 98 e 0 0 0 0 0 0 (DW_OP_addr: e98) + <3><4045>: Abbrev Number: 0 + <2><4046>: Abbrev Number: 19 (DW_TAG_GNU_call_site) + <4047> DW_AT_low_pc : 0x920 + <404f> DW_AT_abstract_origin: <0x44c2> + <3><4053>: Abbrev Number: 20 (DW_TAG_GNU_call_site_parameter) + <4054> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <4056> DW_AT_GNU_call_site_value: 2 byte block: 78 0 (DW_OP_breg8 (s0): 0) + <3><4059>: Abbrev Number: 0 + <2><405a>: Abbrev Number: 0 + <1><405b>: Abbrev Number: 16 (DW_TAG_subprogram) + <405c> DW_AT_external : 1 + <405c> DW_AT_name : (indirect string, offset: 0x3022): nxrmutex_timedlock + <4060> DW_AT_decl_file : 8 + <4061> DW_AT_decl_line : 439 + <4063> DW_AT_decl_column : 5 + <4064> DW_AT_prototyped : 1 + <4064> DW_AT_type : <0x3cc1> + <4068> DW_AT_low_pc : 0x88e + <4070> DW_AT_high_pc : 0x58 + <4078> DW_AT_frame_base : 1 byte block: 9c (DW_OP_call_frame_cfa) + <407a> DW_AT_GNU_all_call_sites: 1 + <407a> DW_AT_sibling : <0x413c> + <2><407e>: Abbrev Number: 17 (DW_TAG_formal_parameter) + <407f> DW_AT_name : (indirect string, offset: 0x309a): rmutex + <4083> DW_AT_decl_file : 1 + <4084> DW_AT_decl_line : 620 + <4086> DW_AT_decl_column : 38 + <4087> DW_AT_type : <0x3f20> + <408b> DW_AT_location : 0x1672 (location list) + <2><408f>: Abbrev Number: 17 (DW_TAG_formal_parameter) + <4090> DW_AT_name : (indirect string, offset: 0x3321): timeout + <4094> DW_AT_decl_file : 1 + <4095> DW_AT_decl_line : 620 + <4097> DW_AT_decl_column : 59 + <4098> DW_AT_type : <0x3cd4> + <409c> DW_AT_location : 0x16be (location list) + <2><40a0>: Abbrev Number: 18 (DW_TAG_variable) + <40a1> DW_AT_name : ret + <40a5> DW_AT_decl_file : 1 + <40a6> DW_AT_decl_line : 622 + <40a8> DW_AT_decl_column : 7 + <40a9> DW_AT_type : <0x3cc1> + <40ad> DW_AT_location : 0x16f7 (location list) + <2><40b1>: Abbrev Number: 24 (DW_TAG_inlined_subroutine) + <40b2> DW_AT_abstract_origin: <0x4316> + <40b6> DW_AT_low_pc : 0x898 + <40be> DW_AT_high_pc : 0xa + <40c6> DW_AT_call_file : 1 + <40c7> DW_AT_call_line : 624 + <40c9> DW_AT_call_column : 8 + <40ca> DW_AT_sibling : <0x40ec> + <3><40ce>: Abbrev Number: 22 (DW_TAG_formal_parameter) + <40cf> DW_AT_abstract_origin: <0x4328> + <40d3> DW_AT_location : 0x172e (location list) + <3><40d7>: Abbrev Number: 19 (DW_TAG_GNU_call_site) + <40d8> DW_AT_low_pc : 0x8a0 + <40e0> DW_AT_abstract_origin: <0x46c8> + <4><40e4>: Abbrev Number: 20 (DW_TAG_GNU_call_site_parameter) + <40e5> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <40e7> DW_AT_GNU_call_site_value: 2 byte block: 78 0 (DW_OP_breg8 (s0): 0) + <4><40ea>: Abbrev Number: 0 + <3><40eb>: Abbrev Number: 0 + <2><40ec>: Abbrev Number: 23 (DW_TAG_GNU_call_site) + <40ed> DW_AT_low_pc : 0x8b2 + <40f5> DW_AT_abstract_origin: <0x44ee> + <40f9> DW_AT_sibling : <0x410c> + <3><40fd>: Abbrev Number: 20 (DW_TAG_GNU_call_site_parameter) + <40fe> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <4100> DW_AT_GNU_call_site_value: 2 byte block: 78 0 (DW_OP_breg8 (s0): 0) + <3><4103>: Abbrev Number: 20 (DW_TAG_GNU_call_site_parameter) + <4104> DW_AT_location : 1 byte block: 5b (DW_OP_reg11 (a1)) + <4106> DW_AT_GNU_call_site_value: 4 byte block: 91 68 94 4 (DW_OP_fbreg: -24; DW_OP_deref_size: 4) + <3><410b>: Abbrev Number: 0 + <2><410c>: Abbrev Number: 19 (DW_TAG_GNU_call_site) + <410d> DW_AT_low_pc : 0x8da + <4115> DW_AT_abstract_origin: <0x4aa3> + <3><4119>: Abbrev Number: 20 (DW_TAG_GNU_call_site_parameter) + <411a> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <411c> DW_AT_GNU_call_site_value: 9 byte block: 3 48 e 0 0 0 0 0 0 (DW_OP_addr: e48) + <3><4126>: Abbrev Number: 20 (DW_TAG_GNU_call_site_parameter) + <4127> DW_AT_location : 1 byte block: 5b (DW_OP_reg11 (a1)) + <4129> DW_AT_GNU_call_site_value: 3 byte block: a 77 2 (DW_OP_const2u: 631) + <3><412d>: Abbrev Number: 20 (DW_TAG_GNU_call_site_parameter) + <412e> DW_AT_location : 1 byte block: 5c (DW_OP_reg12 (a2)) + <4130> DW_AT_GNU_call_site_value: 9 byte block: 3 78 e 0 0 0 0 0 0 (DW_OP_addr: e78) + <3><413a>: Abbrev Number: 0 + <2><413b>: Abbrev Number: 0 + <1><413c>: Abbrev Number: 16 (DW_TAG_subprogram) + <413d> DW_AT_external : 1 + <413d> DW_AT_name : (indirect string, offset: 0x30f9): nxrmutex_trylock + <4141> DW_AT_decl_file : 8 + <4142> DW_AT_decl_line : 412 + <4144> DW_AT_decl_column : 5 + <4145> DW_AT_prototyped : 1 + <4145> DW_AT_type : <0x3cc1> + <4149> DW_AT_low_pc : 0x83a + <4151> DW_AT_high_pc : 0x54 + <4159> DW_AT_frame_base : 1 byte block: 9c (DW_OP_call_frame_cfa) + <415b> DW_AT_GNU_all_call_sites: 1 + <415b> DW_AT_sibling : <0x4204> + <2><415f>: Abbrev Number: 17 (DW_TAG_formal_parameter) + <4160> DW_AT_name : (indirect string, offset: 0x309a): rmutex + <4164> DW_AT_decl_file : 1 + <4165> DW_AT_decl_line : 577 + <4167> DW_AT_decl_column : 36 + <4168> DW_AT_type : <0x3f20> + <416c> DW_AT_location : 0x1764 (location list) + <2><4170>: Abbrev Number: 18 (DW_TAG_variable) + <4171> DW_AT_name : ret + <4175> DW_AT_decl_file : 1 + <4176> DW_AT_decl_line : 579 + <4178> DW_AT_decl_column : 7 + <4179> DW_AT_type : <0x3cc1> + <417d> DW_AT_location : 0x17b0 (location list) + <2><4181>: Abbrev Number: 24 (DW_TAG_inlined_subroutine) + <4182> DW_AT_abstract_origin: <0x4316> + <4186> DW_AT_low_pc : 0x842 + <418e> DW_AT_high_pc : 0xc + <4196> DW_AT_call_file : 1 + <4197> DW_AT_call_line : 581 + <4199> DW_AT_call_column : 8 + <419a> DW_AT_sibling : <0x41bc> + <3><419e>: Abbrev Number: 22 (DW_TAG_formal_parameter) + <419f> DW_AT_abstract_origin: <0x4328> + <41a3> DW_AT_location : 0x17e7 (location list) + <3><41a7>: Abbrev Number: 19 (DW_TAG_GNU_call_site) + <41a8> DW_AT_low_pc : 0x84a + <41b0> DW_AT_abstract_origin: <0x46c8> + <4><41b4>: Abbrev Number: 20 (DW_TAG_GNU_call_site_parameter) + <41b5> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <41b7> DW_AT_GNU_call_site_value: 2 byte block: 78 0 (DW_OP_breg8 (s0): 0) + <4><41ba>: Abbrev Number: 0 + <3><41bb>: Abbrev Number: 0 + <2><41bc>: Abbrev Number: 23 (DW_TAG_GNU_call_site) + <41bd> DW_AT_low_pc : 0x85a + <41c5> DW_AT_abstract_origin: <0x4607> + <41c9> DW_AT_sibling : <0x41d4> + <3><41cd>: Abbrev Number: 20 (DW_TAG_GNU_call_site_parameter) + <41ce> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <41d0> DW_AT_GNU_call_site_value: 2 byte block: 78 0 (DW_OP_breg8 (s0): 0) + <3><41d3>: Abbrev Number: 0 + <2><41d4>: Abbrev Number: 19 (DW_TAG_GNU_call_site) + <41d5> DW_AT_low_pc : 0x882 + <41dd> DW_AT_abstract_origin: <0x4aa3> + <3><41e1>: Abbrev Number: 20 (DW_TAG_GNU_call_site_parameter) + <41e2> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <41e4> DW_AT_GNU_call_site_value: 9 byte block: 3 48 e 0 0 0 0 0 0 (DW_OP_addr: e48) + <3><41ee>: Abbrev Number: 20 (DW_TAG_GNU_call_site_parameter) + <41ef> DW_AT_location : 1 byte block: 5b (DW_OP_reg11 (a1)) + <41f1> DW_AT_GNU_call_site_value: 3 byte block: a 4c 2 (DW_OP_const2u: 588) + <3><41f5>: Abbrev Number: 20 (DW_TAG_GNU_call_site_parameter) + <41f6> DW_AT_location : 1 byte block: 5c (DW_OP_reg12 (a2)) + <41f8> DW_AT_GNU_call_site_value: 9 byte block: 3 78 e 0 0 0 0 0 0 (DW_OP_addr: e78) + <3><4202>: Abbrev Number: 0 + <2><4203>: Abbrev Number: 0 + <1><4204>: Abbrev Number: 16 (DW_TAG_subprogram) + <4205> DW_AT_external : 1 + <4205> DW_AT_name : (indirect string, offset: 0x3236): nxrmutex_lock + <4209> DW_AT_decl_file : 8 + <420a> DW_AT_decl_line : 387 + <420c> DW_AT_decl_column : 5 + <420d> DW_AT_prototyped : 1 + <420d> DW_AT_type : <0x3cc1> + <4211> DW_AT_low_pc : 0x7e6 + <4219> DW_AT_high_pc : 0x54 + <4221> DW_AT_frame_base : 1 byte block: 9c (DW_OP_call_frame_cfa) + <4223> DW_AT_GNU_all_call_sites: 1 + <4223> DW_AT_sibling : <0x42cc> + <2><4227>: Abbrev Number: 17 (DW_TAG_formal_parameter) + <4228> DW_AT_name : (indirect string, offset: 0x309a): rmutex + <422c> DW_AT_decl_file : 1 + <422d> DW_AT_decl_line : 536 + <422f> DW_AT_decl_column : 33 + <4230> DW_AT_type : <0x3f20> + <4234> DW_AT_location : 0x181d (location list) + <2><4238>: Abbrev Number: 18 (DW_TAG_variable) + <4239> DW_AT_name : ret + <423d> DW_AT_decl_file : 1 + <423e> DW_AT_decl_line : 538 + <4240> DW_AT_decl_column : 7 + <4241> DW_AT_type : <0x3cc1> + <4245> DW_AT_location : 0x1869 (location list) + <2><4249>: Abbrev Number: 24 (DW_TAG_inlined_subroutine) + <424a> DW_AT_abstract_origin: <0x4316> + <424e> DW_AT_low_pc : 0x7ee + <4256> DW_AT_high_pc : 0xc + <425e> DW_AT_call_file : 1 + <425f> DW_AT_call_line : 540 + <4261> DW_AT_call_column : 8 + <4262> DW_AT_sibling : <0x4284> + <3><4266>: Abbrev Number: 22 (DW_TAG_formal_parameter) + <4267> DW_AT_abstract_origin: <0x4328> + <426b> DW_AT_location : 0x18a0 (location list) + <3><426f>: Abbrev Number: 19 (DW_TAG_GNU_call_site) + <4270> DW_AT_low_pc : 0x7f6 + <4278> DW_AT_abstract_origin: <0x46c8> + <4><427c>: Abbrev Number: 20 (DW_TAG_GNU_call_site_parameter) + <427d> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <427f> DW_AT_GNU_call_site_value: 2 byte block: 78 0 (DW_OP_breg8 (s0): 0) + <4><4282>: Abbrev Number: 0 + <3><4283>: Abbrev Number: 0 + <2><4284>: Abbrev Number: 23 (DW_TAG_GNU_call_site) + <4285> DW_AT_low_pc : 0x806 + <428d> DW_AT_abstract_origin: <0x4631> + <4291> DW_AT_sibling : <0x429c> + <3><4295>: Abbrev Number: 20 (DW_TAG_GNU_call_site_parameter) + <4296> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <4298> DW_AT_GNU_call_site_value: 2 byte block: 78 0 (DW_OP_breg8 (s0): 0) + <3><429b>: Abbrev Number: 0 + <2><429c>: Abbrev Number: 19 (DW_TAG_GNU_call_site) + <429d> DW_AT_low_pc : 0x82e + <42a5> DW_AT_abstract_origin: <0x4aa3> + <3><42a9>: Abbrev Number: 20 (DW_TAG_GNU_call_site_parameter) + <42aa> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <42ac> DW_AT_GNU_call_site_value: 9 byte block: 3 48 e 0 0 0 0 0 0 (DW_OP_addr: e48) + <3><42b6>: Abbrev Number: 20 (DW_TAG_GNU_call_site_parameter) + <42b7> DW_AT_location : 1 byte block: 5b (DW_OP_reg11 (a1)) + <42b9> DW_AT_GNU_call_site_value: 3 byte block: a 23 2 (DW_OP_const2u: 547) + <3><42bd>: Abbrev Number: 20 (DW_TAG_GNU_call_site_parameter) + <42be> DW_AT_location : 1 byte block: 5c (DW_OP_reg12 (a2)) + <42c0> DW_AT_GNU_call_site_value: 9 byte block: 3 78 e 0 0 0 0 0 0 (DW_OP_addr: e78) + <3><42ca>: Abbrev Number: 0 + <2><42cb>: Abbrev Number: 0 + <1><42cc>: Abbrev Number: 16 (DW_TAG_subprogram) + <42cd> DW_AT_external : 1 + <42cd> DW_AT_name : (indirect string, offset: 0x2fd6): nxrmutex_is_locked + <42d1> DW_AT_decl_file : 8 + <42d2> DW_AT_decl_line : 366 + <42d4> DW_AT_decl_column : 6 + <42d5> DW_AT_prototyped : 1 + <42d5> DW_AT_type : <0x3e46> + <42d9> DW_AT_low_pc : 0x7de + <42e1> DW_AT_high_pc : 0x8 + <42e9> DW_AT_frame_base : 1 byte block: 9c (DW_OP_call_frame_cfa) + <42eb> DW_AT_GNU_all_call_sites: 1 + <42eb> DW_AT_sibling : <0x4316> + <2><42ef>: Abbrev Number: 17 (DW_TAG_formal_parameter) + <42f0> DW_AT_name : (indirect string, offset: 0x309a): rmutex + <42f4> DW_AT_decl_file : 1 + <42f5> DW_AT_decl_line : 512 + <42f7> DW_AT_decl_column : 39 + <42f8> DW_AT_type : <0x3f20> + <42fc> DW_AT_location : 0x18d6 (location list) + <2><4300>: Abbrev Number: 25 (DW_TAG_GNU_call_site) + <4301> DW_AT_low_pc : 0x7e6 + <4309> DW_AT_GNU_tail_call: 1 + <4309> DW_AT_abstract_origin: <0x465b> + <3><430d>: Abbrev Number: 20 (DW_TAG_GNU_call_site_parameter) + <430e> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <4310> DW_AT_GNU_call_site_value: 3 byte block: f3 1 5a (DW_OP_GNU_entry_value: (DW_OP_reg10 (a0))) + <3><4314>: Abbrev Number: 0 + <2><4315>: Abbrev Number: 0 + <1><4316>: Abbrev Number: 26 (DW_TAG_subprogram) + <4317> DW_AT_external : 1 + <4317> DW_AT_name : (indirect string, offset: 0x3202): nxrmutex_is_hold + <431b> DW_AT_decl_file : 8 + <431c> DW_AT_decl_line : 350 + <431e> DW_AT_decl_column : 6 + <431f> DW_AT_prototyped : 1 + <431f> DW_AT_type : <0x3e46> + <4323> DW_AT_inline : 1 (inlined) + <4324> DW_AT_sibling : <0x4336> + <2><4328>: Abbrev Number: 27 (DW_TAG_formal_parameter) + <4329> DW_AT_name : (indirect string, offset: 0x309a): rmutex + <432d> DW_AT_decl_file : 1 + <432e> DW_AT_decl_line : 493 + <4330> DW_AT_decl_column : 37 + <4331> DW_AT_type : <0x3f20> + <2><4335>: Abbrev Number: 0 + <1><4336>: Abbrev Number: 16 (DW_TAG_subprogram) + <4337> DW_AT_external : 1 + <4337> DW_AT_name : (indirect string, offset: 0x324a): nxrmutex_destroy + <433b> DW_AT_decl_file : 8 + <433c> DW_AT_decl_line : 334 + <433e> DW_AT_decl_column : 5 + <433f> DW_AT_prototyped : 1 + <433f> DW_AT_type : <0x3cc1> + <4343> DW_AT_low_pc : 0x7b6 + <434b> DW_AT_high_pc : 0x20 + <4353> DW_AT_frame_base : 1 byte block: 9c (DW_OP_call_frame_cfa) + <4355> DW_AT_GNU_all_call_sites: 1 + <4355> DW_AT_sibling : <0x438e> + <2><4359>: Abbrev Number: 17 (DW_TAG_formal_parameter) + <435a> DW_AT_name : (indirect string, offset: 0x309a): rmutex + <435e> DW_AT_decl_file : 1 + <435f> DW_AT_decl_line : 467 + <4361> DW_AT_decl_column : 36 + <4362> DW_AT_type : <0x3f20> + <4366> DW_AT_location : 0x190f (location list) + <2><436a>: Abbrev Number: 28 (DW_TAG_variable) + <436b> DW_AT_name : ret + <436f> DW_AT_decl_file : 1 + <4370> DW_AT_decl_line : 469 + <4372> DW_AT_decl_column : 7 + <4373> DW_AT_type : <0x3cc1> + <4377> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <2><4379>: Abbrev Number: 19 (DW_TAG_GNU_call_site) + <437a> DW_AT_low_pc : 0x7c6 + <4382> DW_AT_abstract_origin: <0x4708> + <3><4386>: Abbrev Number: 20 (DW_TAG_GNU_call_site_parameter) + <4387> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <4389> DW_AT_GNU_call_site_value: 2 byte block: 78 0 (DW_OP_breg8 (s0): 0) + <3><438c>: Abbrev Number: 0 + <2><438d>: Abbrev Number: 0 + <1><438e>: Abbrev Number: 16 (DW_TAG_subprogram) + <438f> DW_AT_external : 1 + <438f> DW_AT_name : (indirect string, offset: 0x2f0e): nxrmutex_init + <4393> DW_AT_decl_file : 8 + <4394> DW_AT_decl_line : 316 + <4396> DW_AT_decl_column : 5 + <4397> DW_AT_prototyped : 1 + <4397> DW_AT_type : <0x3cc1> + <439b> DW_AT_low_pc : 0x7aa + <43a3> DW_AT_high_pc : 0xc + <43ab> DW_AT_frame_base : 1 byte block: 9c (DW_OP_call_frame_cfa) + <43ad> DW_AT_GNU_all_call_sites: 1 + <43ad> DW_AT_sibling : <0x43d8> + <2><43b1>: Abbrev Number: 17 (DW_TAG_formal_parameter) + <43b2> DW_AT_name : (indirect string, offset: 0x309a): rmutex + <43b6> DW_AT_decl_file : 1 + <43b7> DW_AT_decl_line : 445 + <43b9> DW_AT_decl_column : 33 + <43ba> DW_AT_type : <0x3f20> + <43be> DW_AT_location : 0x195b (location list) + <2><43c2>: Abbrev Number: 25 (DW_TAG_GNU_call_site) + <43c3> DW_AT_low_pc : 0x7b6 + <43cb> DW_AT_GNU_tail_call: 1 + <43cb> DW_AT_abstract_origin: <0x475d> + <3><43cf>: Abbrev Number: 20 (DW_TAG_GNU_call_site_parameter) + <43d0> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <43d2> DW_AT_GNU_call_site_value: 3 byte block: f3 1 5a (DW_OP_GNU_entry_value: (DW_OP_reg10 (a0))) + <3><43d6>: Abbrev Number: 0 + <2><43d7>: Abbrev Number: 0 + <1><43d8>: Abbrev Number: 16 (DW_TAG_subprogram) + <43d9> DW_AT_external : 1 + <43d9> DW_AT_name : (indirect string, offset: 0x327e): nxmutex_restorelock + <43dd> DW_AT_decl_file : 8 + <43de> DW_AT_decl_line : 294 + <43e0> DW_AT_decl_column : 5 + <43e1> DW_AT_prototyped : 1 + <43e1> DW_AT_type : <0x3cc1> + <43e5> DW_AT_low_pc : 0x79c + <43ed> DW_AT_high_pc : 0xe + <43f5> DW_AT_frame_base : 1 byte block: 9c (DW_OP_call_frame_cfa) + <43f7> DW_AT_GNU_all_call_sites: 1 + <43f7> DW_AT_sibling : <0x4433> + <2><43fb>: Abbrev Number: 17 (DW_TAG_formal_parameter) + <43fc> DW_AT_name : (indirect string, offset: 0x3194): mutex + <4400> DW_AT_decl_file : 1 + <4401> DW_AT_decl_line : 420 + <4403> DW_AT_decl_column : 38 + <4404> DW_AT_type : <0x4433> + <4408> DW_AT_location : 0x1994 (location list) + <2><440c>: Abbrev Number: 17 (DW_TAG_formal_parameter) + <440d> DW_AT_name : (indirect string, offset: 0x31c5): locked + <4411> DW_AT_decl_file : 1 + <4412> DW_AT_decl_line : 420 + <4414> DW_AT_decl_column : 50 + <4415> DW_AT_type : <0x3e46> + <4419> DW_AT_location : 0x19f6 (location list) + <2><441d>: Abbrev Number: 25 (DW_TAG_GNU_call_site) + <441e> DW_AT_low_pc : 0x7a6 + <4426> DW_AT_GNU_tail_call: 1 + <4426> DW_AT_abstract_origin: <0x4631> + <3><442a>: Abbrev Number: 20 (DW_TAG_GNU_call_site_parameter) + <442b> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <442d> DW_AT_GNU_call_site_value: 3 byte block: f3 1 5a (DW_OP_GNU_entry_value: (DW_OP_reg10 (a0))) + <3><4431>: Abbrev Number: 0 + <2><4432>: Abbrev Number: 0 + <1><4433>: Abbrev Number: 13 (DW_TAG_pointer_type) + <4434> DW_AT_byte_size : 8 + <4435> DW_AT_type : <0x3e75> + <1><4439>: Abbrev Number: 16 (DW_TAG_subprogram) + <443a> DW_AT_external : 1 + <443a> DW_AT_name : (indirect string, offset: 0x32b0): nxmutex_breaklock + <443e> DW_AT_decl_file : 8 + <443f> DW_AT_decl_line : 275 + <4441> DW_AT_decl_column : 5 + <4442> DW_AT_prototyped : 1 + <4442> DW_AT_type : <0x3cc1> + <4446> DW_AT_low_pc : 0x760 + <444e> DW_AT_high_pc : 0x3c + <4456> DW_AT_frame_base : 1 byte block: 9c (DW_OP_call_frame_cfa) + <4458> DW_AT_GNU_all_call_sites: 1 + <4458> DW_AT_sibling : <0x44bc> + <2><445c>: Abbrev Number: 17 (DW_TAG_formal_parameter) + <445d> DW_AT_name : (indirect string, offset: 0x3194): mutex + <4461> DW_AT_decl_file : 1 + <4462> DW_AT_decl_line : 386 + <4464> DW_AT_decl_column : 36 + <4465> DW_AT_type : <0x4433> + <4469> DW_AT_location : 0x1a42 (location list) + <2><446d>: Abbrev Number: 17 (DW_TAG_formal_parameter) + <446e> DW_AT_name : (indirect string, offset: 0x31c5): locked + <4472> DW_AT_decl_file : 1 + <4473> DW_AT_decl_line : 386 + <4475> DW_AT_decl_column : 53 + <4476> DW_AT_type : <0x44bc> + <447a> DW_AT_location : 0x1aa1 (location list) + <2><447e>: Abbrev Number: 18 (DW_TAG_variable) + <447f> DW_AT_name : ret + <4483> DW_AT_decl_file : 1 + <4484> DW_AT_decl_line : 388 + <4486> DW_AT_decl_column : 7 + <4487> DW_AT_type : <0x3cc1> + <448b> DW_AT_location : 0x1b00 (location list) + <2><448f>: Abbrev Number: 23 (DW_TAG_GNU_call_site) + <4490> DW_AT_low_pc : 0x778 + <4498> DW_AT_abstract_origin: <0x46c8> + <449c> DW_AT_sibling : <0x44a7> + <3><44a0>: Abbrev Number: 20 (DW_TAG_GNU_call_site_parameter) + <44a1> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <44a3> DW_AT_GNU_call_site_value: 2 byte block: 79 0 (DW_OP_breg9 (s1): 0) + <3><44a6>: Abbrev Number: 0 + <2><44a7>: Abbrev Number: 19 (DW_TAG_GNU_call_site) + <44a8> DW_AT_low_pc : 0x784 + <44b0> DW_AT_abstract_origin: <0x44c2> + <3><44b4>: Abbrev Number: 20 (DW_TAG_GNU_call_site_parameter) + <44b5> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <44b7> DW_AT_GNU_call_site_value: 2 byte block: 79 0 (DW_OP_breg9 (s1): 0) + <3><44ba>: Abbrev Number: 0 + <2><44bb>: Abbrev Number: 0 + <1><44bc>: Abbrev Number: 13 (DW_TAG_pointer_type) + <44bd> DW_AT_byte_size : 8 + <44be> DW_AT_type : <0x3e46> + <1><44c2>: Abbrev Number: 29 (DW_TAG_subprogram) + <44c3> DW_AT_external : 1 + <44c3> DW_AT_name : (indirect string, offset: 0x325b): nxmutex_unlock + <44c7> DW_AT_decl_file : 8 + <44c8> DW_AT_decl_line : 240 + <44c9> DW_AT_decl_column : 5 + <44ca> DW_AT_prototyped : 1 + <44ca> DW_AT_type : <0x3cc1> + <44ce> DW_AT_inline : 1 (inlined) + <44cf> DW_AT_sibling : <0x44ee> + <2><44d3>: Abbrev Number: 27 (DW_TAG_formal_parameter) + <44d4> DW_AT_name : (indirect string, offset: 0x3194): mutex + <44d8> DW_AT_decl_file : 1 + <44d9> DW_AT_decl_line : 326 + <44db> DW_AT_decl_column : 33 + <44dc> DW_AT_type : <0x4433> + <2><44e0>: Abbrev Number: 30 (DW_TAG_variable) + <44e1> DW_AT_name : ret + <44e5> DW_AT_decl_file : 1 + <44e6> DW_AT_decl_line : 328 + <44e8> DW_AT_decl_column : 7 + <44e9> DW_AT_type : <0x3cc1> + <2><44ed>: Abbrev Number: 0 + <1><44ee>: Abbrev Number: 31 (DW_TAG_subprogram) + <44ef> DW_AT_external : 1 + <44ef> DW_AT_name : (indirect string, offset: 0x3155): nxmutex_timedlock + <44f3> DW_AT_decl_file : 8 + <44f4> DW_AT_decl_line : 218 + <44f5> DW_AT_decl_column : 5 + <44f6> DW_AT_prototyped : 1 + <44f6> DW_AT_type : <0x3cc1> + <44fa> DW_AT_low_pc : 0x688 + <4502> DW_AT_high_pc : 0x72 + <450a> DW_AT_frame_base : 1 byte block: 9c (DW_OP_call_frame_cfa) + <450c> DW_AT_GNU_all_call_sites: 1 + <450c> DW_AT_sibling : <0x4607> + <2><4510>: Abbrev Number: 17 (DW_TAG_formal_parameter) + <4511> DW_AT_name : (indirect string, offset: 0x3194): mutex + <4515> DW_AT_decl_file : 1 + <4516> DW_AT_decl_line : 279 + <4518> DW_AT_decl_column : 36 + <4519> DW_AT_type : <0x4433> + <451d> DW_AT_location : 0x1b4b (location list) + <2><4521>: Abbrev Number: 17 (DW_TAG_formal_parameter) + <4522> DW_AT_name : (indirect string, offset: 0x3321): timeout + <4526> DW_AT_decl_file : 1 + <4527> DW_AT_decl_line : 279 + <4529> DW_AT_decl_column : 56 + <452a> DW_AT_type : <0x3cd4> + <452e> DW_AT_location : 0x1b97 (location list) + <2><4532>: Abbrev Number: 18 (DW_TAG_variable) + <4533> DW_AT_name : ret + <4537> DW_AT_decl_file : 1 + <4538> DW_AT_decl_line : 281 + <453a> DW_AT_decl_column : 7 + <453b> DW_AT_type : <0x3cc1> + <453f> DW_AT_location : 0x1bd0 (location list) + <2><4543>: Abbrev Number: 28 (DW_TAG_variable) + <4544> DW_AT_name : now + <4548> DW_AT_decl_file : 1 + <4549> DW_AT_decl_line : 282 + <454b> DW_AT_decl_column : 19 + <454c> DW_AT_type : <0x3d61> + <4550> DW_AT_location : 3 byte block: 91 a0 7f (DW_OP_fbreg: -96) + <2><4554>: Abbrev Number: 32 (DW_TAG_variable) + <4555> DW_AT_name : (indirect string, offset: 0x301c): delay + <4559> DW_AT_decl_file : 1 + <455a> DW_AT_decl_line : 283 + <455c> DW_AT_decl_column : 19 + <455d> DW_AT_type : <0x3d61> + <4561> DW_AT_location : 3 byte block: 91 b0 7f (DW_OP_fbreg: -80) + <2><4565>: Abbrev Number: 32 (DW_TAG_variable) + <4566> DW_AT_name : (indirect string, offset: 0x2eb0): rqtp + <456a> DW_AT_decl_file : 1 + <456b> DW_AT_decl_line : 284 + <456d> DW_AT_decl_column : 19 + <456e> DW_AT_type : <0x3d61> + <4572> DW_AT_location : 2 byte block: 91 40 (DW_OP_fbreg: -64) + <2><4575>: Abbrev Number: 23 (DW_TAG_GNU_call_site) + <4576> DW_AT_low_pc : 0x6a4 + <457e> DW_AT_abstract_origin: <0x4aaf> + <4582> DW_AT_sibling : <0x4592> + <3><4586>: Abbrev Number: 20 (DW_TAG_GNU_call_site_parameter) + <4587> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <4589> DW_AT_GNU_call_site_value: 1 byte block: 31 (DW_OP_lit1) + <3><458b>: Abbrev Number: 20 (DW_TAG_GNU_call_site_parameter) + <458c> DW_AT_location : 1 byte block: 5b (DW_OP_reg11 (a1)) + <458e> DW_AT_GNU_call_site_value: 2 byte block: 72 0 (DW_OP_breg2 (sp): 0) + <3><4591>: Abbrev Number: 0 + <2><4592>: Abbrev Number: 23 (DW_TAG_GNU_call_site) + <4593> DW_AT_low_pc : 0x6b0 + <459b> DW_AT_abstract_origin: <0x4abb> + <459f> DW_AT_sibling : <0x45b1> + <3><45a3>: Abbrev Number: 20 (DW_TAG_GNU_call_site_parameter) + <45a4> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <45a6> DW_AT_GNU_call_site_value: 2 byte block: 78 0 (DW_OP_breg8 (s0): 0) + <3><45a9>: Abbrev Number: 20 (DW_TAG_GNU_call_site_parameter) + <45aa> DW_AT_location : 1 byte block: 5b (DW_OP_reg11 (a1)) + <45ac> DW_AT_GNU_call_site_value: 3 byte block: 91 b0 7f (DW_OP_fbreg: -80) + <3><45b0>: Abbrev Number: 0 + <2><45b1>: Abbrev Number: 23 (DW_TAG_GNU_call_site) + <45b2> DW_AT_low_pc : 0x6be + <45ba> DW_AT_abstract_origin: <0x4ac8> + <45be> DW_AT_sibling : <0x45d6> + <3><45c2>: Abbrev Number: 20 (DW_TAG_GNU_call_site_parameter) + <45c3> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <45c5> DW_AT_GNU_call_site_value: 2 byte block: 72 0 (DW_OP_breg2 (sp): 0) + <3><45c8>: Abbrev Number: 20 (DW_TAG_GNU_call_site_parameter) + <45c9> DW_AT_location : 1 byte block: 5b (DW_OP_reg11 (a1)) + <45cb> DW_AT_GNU_call_site_value: 3 byte block: 91 b0 7f (DW_OP_fbreg: -80) + <3><45cf>: Abbrev Number: 20 (DW_TAG_GNU_call_site_parameter) + <45d0> DW_AT_location : 1 byte block: 5c (DW_OP_reg12 (a2)) + <45d2> DW_AT_GNU_call_site_value: 2 byte block: 91 40 (DW_OP_fbreg: -64) + <3><45d5>: Abbrev Number: 0 + <2><45d6>: Abbrev Number: 23 (DW_TAG_GNU_call_site) + <45d7> DW_AT_low_pc : 0x6d2 + <45df> DW_AT_abstract_origin: <0x4ad5> + <45e3> DW_AT_sibling : <0x45f9> + <3><45e7>: Abbrev Number: 20 (DW_TAG_GNU_call_site_parameter) + <45e8> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <45ea> DW_AT_GNU_call_site_value: 2 byte block: 79 0 (DW_OP_breg9 (s1): 0) + <3><45ed>: Abbrev Number: 20 (DW_TAG_GNU_call_site_parameter) + <45ee> DW_AT_location : 1 byte block: 5b (DW_OP_reg11 (a1)) + <45f0> DW_AT_GNU_call_site_value: 1 byte block: 31 (DW_OP_lit1) + <3><45f2>: Abbrev Number: 20 (DW_TAG_GNU_call_site_parameter) + <45f3> DW_AT_location : 1 byte block: 5c (DW_OP_reg12 (a2)) + <45f5> DW_AT_GNU_call_site_value: 2 byte block: 91 40 (DW_OP_fbreg: -64) + <3><45f8>: Abbrev Number: 0 + <2><45f9>: Abbrev Number: 33 (DW_TAG_GNU_call_site) + <45fa> DW_AT_low_pc : 0x6e8 + <4602> DW_AT_abstract_origin: <0x4ae2> + <2><4606>: Abbrev Number: 0 + <1><4607>: Abbrev Number: 29 (DW_TAG_subprogram) + <4608> DW_AT_external : 1 + <4608> DW_AT_name : (indirect string, offset: 0x3292): nxmutex_trylock + <460c> DW_AT_decl_file : 8 + <460d> DW_AT_decl_line : 192 + <460e> DW_AT_decl_column : 5 + <460f> DW_AT_prototyped : 1 + <460f> DW_AT_type : <0x3cc1> + <4613> DW_AT_inline : 1 (inlined) + <4614> DW_AT_sibling : <0x4631> + <2><4618>: Abbrev Number: 34 (DW_TAG_formal_parameter) + <4619> DW_AT_name : (indirect string, offset: 0x3194): mutex + <461d> DW_AT_decl_file : 1 + <461e> DW_AT_decl_line : 240 + <461f> DW_AT_decl_column : 34 + <4620> DW_AT_type : <0x4433> + <2><4624>: Abbrev Number: 35 (DW_TAG_variable) + <4625> DW_AT_name : ret + <4629> DW_AT_decl_file : 1 + <462a> DW_AT_decl_line : 242 + <462b> DW_AT_decl_column : 7 + <462c> DW_AT_type : <0x3cc1> + <2><4630>: Abbrev Number: 0 + <1><4631>: Abbrev Number: 29 (DW_TAG_subprogram) + <4632> DW_AT_external : 1 + <4632> DW_AT_name : (indirect string, offset: 0x3182): nxmutex_lock + <4636> DW_AT_decl_file : 8 + <4637> DW_AT_decl_line : 169 + <4638> DW_AT_decl_column : 5 + <4639> DW_AT_prototyped : 1 + <4639> DW_AT_type : <0x3cc1> + <463d> DW_AT_inline : 1 (inlined) + <463e> DW_AT_sibling : <0x465b> + <2><4642>: Abbrev Number: 34 (DW_TAG_formal_parameter) + <4643> DW_AT_name : (indirect string, offset: 0x3194): mutex + <4647> DW_AT_decl_file : 1 + <4648> DW_AT_decl_line : 195 + <4649> DW_AT_decl_column : 31 + <464a> DW_AT_type : <0x4433> + <2><464e>: Abbrev Number: 35 (DW_TAG_variable) + <464f> DW_AT_name : ret + <4653> DW_AT_decl_file : 1 + <4654> DW_AT_decl_line : 197 + <4655> DW_AT_decl_column : 7 + <4656> DW_AT_type : <0x3cc1> + <2><465a>: Abbrev Number: 0 + <1><465b>: Abbrev Number: 31 (DW_TAG_subprogram) + <465c> DW_AT_external : 1 + <465c> DW_AT_name : (indirect string, offset: 0x300a): nxmutex_is_locked + <4660> DW_AT_decl_file : 8 + <4661> DW_AT_decl_line : 147 + <4662> DW_AT_decl_column : 6 + <4663> DW_AT_prototyped : 1 + <4663> DW_AT_type : <0x3e46> + <4667> DW_AT_low_pc : 0x5a2 + <466f> DW_AT_high_pc : 0x22 + <4677> DW_AT_frame_base : 1 byte block: 9c (DW_OP_call_frame_cfa) + <4679> DW_AT_GNU_all_call_sites: 1 + <4679> DW_AT_sibling : <0x46c8> + <2><467d>: Abbrev Number: 36 (DW_TAG_formal_parameter) + <467e> DW_AT_name : (indirect string, offset: 0x3194): mutex + <4682> DW_AT_decl_file : 1 + <4683> DW_AT_decl_line : 165 + <4684> DW_AT_decl_column : 37 + <4685> DW_AT_type : <0x4433> + <4689> DW_AT_location : 0x1bf3 (location list) + <2><468d>: Abbrev Number: 37 (DW_TAG_variable) + <468e> DW_AT_name : cnt + <4692> DW_AT_decl_file : 1 + <4693> DW_AT_decl_line : 167 + <4694> DW_AT_decl_column : 7 + <4695> DW_AT_type : <0x3cc1> + <4699> DW_AT_location : 2 byte block: 91 6c (DW_OP_fbreg: -20) + <2><469c>: Abbrev Number: 38 (DW_TAG_variable) + <469d> DW_AT_name : ret + <46a1> DW_AT_decl_file : 1 + <46a2> DW_AT_decl_line : 168 + <46a3> DW_AT_decl_column : 7 + <46a4> DW_AT_type : <0x3cc1> + <46a8> DW_AT_location : 0x1c2c (location list) + <2><46ac>: Abbrev Number: 19 (DW_TAG_GNU_call_site) + <46ad> DW_AT_low_pc : 0x5b0 + <46b5> DW_AT_abstract_origin: <0x4aef> + <3><46b9>: Abbrev Number: 20 (DW_TAG_GNU_call_site_parameter) + <46ba> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <46bc> DW_AT_GNU_call_site_value: 3 byte block: f3 1 5a (DW_OP_GNU_entry_value: (DW_OP_reg10 (a0))) + <3><46c0>: Abbrev Number: 20 (DW_TAG_GNU_call_site_parameter) + <46c1> DW_AT_location : 1 byte block: 5b (DW_OP_reg11 (a1)) + <46c3> DW_AT_GNU_call_site_value: 2 byte block: 91 6c (DW_OP_fbreg: -20) + <3><46c6>: Abbrev Number: 0 + <2><46c7>: Abbrev Number: 0 + <1><46c8>: Abbrev Number: 31 (DW_TAG_subprogram) + <46c9> DW_AT_external : 1 + <46c9> DW_AT_name : (indirect string, offset: 0x2ebc): nxmutex_is_hold + <46cd> DW_AT_decl_file : 8 + <46ce> DW_AT_decl_line : 132 + <46cf> DW_AT_decl_column : 6 + <46d0> DW_AT_prototyped : 1 + <46d0> DW_AT_type : <0x3e46> + <46d4> DW_AT_low_pc : 0x582 + <46dc> DW_AT_high_pc : 0x20 + <46e4> DW_AT_frame_base : 1 byte block: 9c (DW_OP_call_frame_cfa) + <46e6> DW_AT_GNU_all_call_sites: 1 + <46e6> DW_AT_sibling : <0x4708> + <2><46ea>: Abbrev Number: 36 (DW_TAG_formal_parameter) + <46eb> DW_AT_name : (indirect string, offset: 0x3194): mutex + <46ef> DW_AT_decl_file : 1 + <46f0> DW_AT_decl_line : 147 + <46f1> DW_AT_decl_column : 35 + <46f2> DW_AT_type : <0x4433> + <46f6> DW_AT_location : 0x1c62 (location list) + <2><46fa>: Abbrev Number: 33 (DW_TAG_GNU_call_site) + <46fb> DW_AT_low_pc : 0x592 + <4703> DW_AT_abstract_origin: <0x4ae2> + <2><4707>: Abbrev Number: 0 + <1><4708>: Abbrev Number: 31 (DW_TAG_subprogram) + <4709> DW_AT_external : 1 + <4709> DW_AT_name : (indirect string, offset: 0x2ede): nxmutex_destroy + <470d> DW_AT_decl_file : 8 + <470e> DW_AT_decl_line : 116 + <470f> DW_AT_decl_column : 5 + <4710> DW_AT_prototyped : 1 + <4710> DW_AT_type : <0x3cc1> + <4714> DW_AT_low_pc : 0x562 + <471c> DW_AT_high_pc : 0x20 + <4724> DW_AT_frame_base : 1 byte block: 9c (DW_OP_call_frame_cfa) + <4726> DW_AT_GNU_all_call_sites: 1 + <4726> DW_AT_sibling : <0x475d> + <2><472a>: Abbrev Number: 36 (DW_TAG_formal_parameter) + <472b> DW_AT_name : (indirect string, offset: 0x3194): mutex + <472f> DW_AT_decl_file : 1 + <4730> DW_AT_decl_line : 120 + <4731> DW_AT_decl_column : 34 + <4732> DW_AT_type : <0x4433> + <4736> DW_AT_location : 0x1c9b (location list) + <2><473a>: Abbrev Number: 37 (DW_TAG_variable) + <473b> DW_AT_name : ret + <473f> DW_AT_decl_file : 1 + <4740> DW_AT_decl_line : 122 + <4741> DW_AT_decl_column : 7 + <4742> DW_AT_type : <0x3cc1> + <4746> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <2><4748>: Abbrev Number: 19 (DW_TAG_GNU_call_site) + <4749> DW_AT_low_pc : 0x572 + <4751> DW_AT_abstract_origin: <0x4afc> + <3><4755>: Abbrev Number: 20 (DW_TAG_GNU_call_site_parameter) + <4756> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <4758> DW_AT_GNU_call_site_value: 2 byte block: 78 0 (DW_OP_breg8 (s0): 0) + <3><475b>: Abbrev Number: 0 + <2><475c>: Abbrev Number: 0 + <1><475d>: Abbrev Number: 31 (DW_TAG_subprogram) + <475e> DW_AT_external : 1 + <475e> DW_AT_name : (indirect string, offset: 0x3175): nxmutex_init + <4762> DW_AT_decl_file : 8 + <4763> DW_AT_decl_line : 95 + <4764> DW_AT_decl_column : 5 + <4765> DW_AT_prototyped : 1 + <4765> DW_AT_type : <0x3cc1> + <4769> DW_AT_low_pc : 0x52a + <4771> DW_AT_high_pc : 0x38 + <4779> DW_AT_frame_base : 1 byte block: 9c (DW_OP_call_frame_cfa) + <477b> DW_AT_GNU_all_call_sites: 1 + <477b> DW_AT_sibling : <0x47db> + <2><477f>: Abbrev Number: 36 (DW_TAG_formal_parameter) + <4780> DW_AT_name : (indirect string, offset: 0x3194): mutex + <4784> DW_AT_decl_file : 1 + <4785> DW_AT_decl_line : 83 + <4786> DW_AT_decl_column : 31 + <4787> DW_AT_type : <0x4433> + <478b> DW_AT_location : 0x1ce7 (location list) + <2><478f>: Abbrev Number: 38 (DW_TAG_variable) + <4790> DW_AT_name : ret + <4794> DW_AT_decl_file : 1 + <4795> DW_AT_decl_line : 85 + <4796> DW_AT_decl_column : 7 + <4797> DW_AT_type : <0x3cc1> + <479b> DW_AT_location : 0x1d33 (location list) + <2><479f>: Abbrev Number: 23 (DW_TAG_GNU_call_site) + <47a0> DW_AT_low_pc : 0x540 + <47a8> DW_AT_abstract_origin: <0x4b08> + <47ac> DW_AT_sibling : <0x47c1> + <3><47b0>: Abbrev Number: 20 (DW_TAG_GNU_call_site_parameter) + <47b1> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <47b3> DW_AT_GNU_call_site_value: 2 byte block: 79 0 (DW_OP_breg9 (s1): 0) + <3><47b6>: Abbrev Number: 20 (DW_TAG_GNU_call_site_parameter) + <47b7> DW_AT_location : 1 byte block: 5b (DW_OP_reg11 (a1)) + <47b9> DW_AT_GNU_call_site_value: 1 byte block: 30 (DW_OP_lit0) + <3><47bb>: Abbrev Number: 20 (DW_TAG_GNU_call_site_parameter) + <47bc> DW_AT_location : 1 byte block: 5c (DW_OP_reg12 (a2)) + <47be> DW_AT_GNU_call_site_value: 1 byte block: 31 (DW_OP_lit1) + <3><47c0>: Abbrev Number: 0 + <2><47c1>: Abbrev Number: 19 (DW_TAG_GNU_call_site) + <47c2> DW_AT_low_pc : 0x556 + <47ca> DW_AT_abstract_origin: <0x4b14> + <3><47ce>: Abbrev Number: 20 (DW_TAG_GNU_call_site_parameter) + <47cf> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <47d1> DW_AT_GNU_call_site_value: 2 byte block: 79 0 (DW_OP_breg9 (s1): 0) + <3><47d4>: Abbrev Number: 20 (DW_TAG_GNU_call_site_parameter) + <47d5> DW_AT_location : 1 byte block: 5b (DW_OP_reg11 (a1)) + <47d7> DW_AT_GNU_call_site_value: 1 byte block: 34 (DW_OP_lit4) + <3><47d9>: Abbrev Number: 0 + <2><47da>: Abbrev Number: 0 + <1><47db>: Abbrev Number: 39 (DW_TAG_subprogram) + <47dc> DW_AT_name : (indirect string, offset: 0x3065): nxmutex_is_reset + <47e0> DW_AT_decl_file : 1 + <47e1> DW_AT_decl_line : 55 + <47e2> DW_AT_decl_column : 13 + <47e3> DW_AT_prototyped : 1 + <47e3> DW_AT_type : <0x3e46> + <47e7> DW_AT_inline : 1 (inlined) + <47e8> DW_AT_sibling : <0x47f9> + <2><47ec>: Abbrev Number: 34 (DW_TAG_formal_parameter) + <47ed> DW_AT_name : (indirect string, offset: 0x3194): mutex + <47f1> DW_AT_decl_file : 1 + <47f2> DW_AT_decl_line : 55 + <47f3> DW_AT_decl_column : 43 + <47f4> DW_AT_type : <0x4433> + <2><47f8>: Abbrev Number: 0 + <1><47f9>: Abbrev Number: 40 (DW_TAG_subprogram) + <47fa> DW_AT_abstract_origin: <0x4631> + <47fe> DW_AT_low_pc : 0x5c4 + <4806> DW_AT_high_pc : 0x6e + <480e> DW_AT_frame_base : 1 byte block: 9c (DW_OP_call_frame_cfa) + <4810> DW_AT_GNU_all_call_sites: 1 + <4810> DW_AT_sibling : <0x48bd> + <2><4814>: Abbrev Number: 22 (DW_TAG_formal_parameter) + <4815> DW_AT_abstract_origin: <0x4642> + <4819> DW_AT_location : 0x1d56 (location list) + <2><481d>: Abbrev Number: 41 (DW_TAG_variable) + <481e> DW_AT_abstract_origin: <0x464e> + <4822> DW_AT_location : 0x1db5 (location list) + <2><4826>: Abbrev Number: 42 (DW_TAG_inlined_subroutine) + <4827> DW_AT_abstract_origin: <0x4631> + <482b> DW_AT_low_pc : 0x60c + <4833> DW_AT_high_pc : 0x1c + <483b> DW_AT_call_file : 8 + <483c> DW_AT_call_line : 169 + <483d> DW_AT_call_column : 5 + <483e> DW_AT_sibling : <0x487f> + <3><4842>: Abbrev Number: 22 (DW_TAG_formal_parameter) + <4843> DW_AT_abstract_origin: <0x4642> + <4847> DW_AT_location : 0x1deb (location list) + <3><484b>: Abbrev Number: 43 (DW_TAG_variable) + <484c> DW_AT_abstract_origin: <0x464e> + <3><4850>: Abbrev Number: 19 (DW_TAG_GNU_call_site) + <4851> DW_AT_low_pc : 0x628 + <4859> DW_AT_abstract_origin: <0x4aa3> + <4><485d>: Abbrev Number: 20 (DW_TAG_GNU_call_site_parameter) + <485e> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <4860> DW_AT_GNU_call_site_value: 9 byte block: 3 48 e 0 0 0 0 0 0 (DW_OP_addr: e48) + <4><486a>: Abbrev Number: 20 (DW_TAG_GNU_call_site_parameter) + <486b> DW_AT_location : 1 byte block: 5b (DW_OP_reg11 (a1)) + <486d> DW_AT_GNU_call_site_value: 2 byte block: 8 c7 (DW_OP_const1u: 199) + <4><4870>: Abbrev Number: 20 (DW_TAG_GNU_call_site_parameter) + <4871> DW_AT_location : 1 byte block: 5c (DW_OP_reg12 (a2)) + <4873> DW_AT_GNU_call_site_value: 9 byte block: 3 30 e 0 0 0 0 0 0 (DW_OP_addr: e30) + <4><487d>: Abbrev Number: 0 + <3><487e>: Abbrev Number: 0 + <2><487f>: Abbrev Number: 23 (DW_TAG_GNU_call_site) + <4880> DW_AT_low_pc : 0x5da + <4888> DW_AT_abstract_origin: <0x46c8> + <488c> DW_AT_sibling : <0x4897> + <3><4890>: Abbrev Number: 20 (DW_TAG_GNU_call_site_parameter) + <4891> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <4893> DW_AT_GNU_call_site_value: 2 byte block: 79 0 (DW_OP_breg9 (s1): 0) + <3><4896>: Abbrev Number: 0 + <2><4897>: Abbrev Number: 23 (DW_TAG_GNU_call_site) + <4898> DW_AT_low_pc : 0x5ec + <48a0> DW_AT_abstract_origin: <0x4b21> + <48a4> DW_AT_sibling : <0x48af> + <3><48a8>: Abbrev Number: 20 (DW_TAG_GNU_call_site_parameter) + <48a9> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <48ab> DW_AT_GNU_call_site_value: 2 byte block: 79 0 (DW_OP_breg9 (s1): 0) + <3><48ae>: Abbrev Number: 0 + <2><48af>: Abbrev Number: 33 (DW_TAG_GNU_call_site) + <48b0> DW_AT_low_pc : 0x5fa + <48b8> DW_AT_abstract_origin: <0x4ae2> + <2><48bc>: Abbrev Number: 0 + <1><48bd>: Abbrev Number: 40 (DW_TAG_subprogram) + <48be> DW_AT_abstract_origin: <0x4607> + <48c2> DW_AT_low_pc : 0x632 + <48ca> DW_AT_high_pc : 0x56 + <48d2> DW_AT_frame_base : 1 byte block: 9c (DW_OP_call_frame_cfa) + <48d4> DW_AT_GNU_all_call_sites: 1 + <48d4> DW_AT_sibling : <0x4981> + <2><48d8>: Abbrev Number: 22 (DW_TAG_formal_parameter) + <48d9> DW_AT_abstract_origin: <0x4618> + <48dd> DW_AT_location : 0x1e0e (location list) + <2><48e1>: Abbrev Number: 41 (DW_TAG_variable) + <48e2> DW_AT_abstract_origin: <0x4624> + <48e6> DW_AT_location : 0x1e5a (location list) + <2><48ea>: Abbrev Number: 42 (DW_TAG_inlined_subroutine) + <48eb> DW_AT_abstract_origin: <0x4607> + <48ef> DW_AT_low_pc : 0x646 + <48f7> DW_AT_high_pc : 0x1c + <48ff> DW_AT_call_file : 8 + <4900> DW_AT_call_line : 192 + <4901> DW_AT_call_column : 5 + <4902> DW_AT_sibling : <0x4943> + <3><4906>: Abbrev Number: 22 (DW_TAG_formal_parameter) + <4907> DW_AT_abstract_origin: <0x4618> + <490b> DW_AT_location : 0x1e7d (location list) + <3><490f>: Abbrev Number: 43 (DW_TAG_variable) + <4910> DW_AT_abstract_origin: <0x4624> + <3><4914>: Abbrev Number: 19 (DW_TAG_GNU_call_site) + <4915> DW_AT_low_pc : 0x662 + <491d> DW_AT_abstract_origin: <0x4aa3> + <4><4921>: Abbrev Number: 20 (DW_TAG_GNU_call_site_parameter) + <4922> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <4924> DW_AT_GNU_call_site_value: 9 byte block: 3 48 e 0 0 0 0 0 0 (DW_OP_addr: e48) + <4><492e>: Abbrev Number: 20 (DW_TAG_GNU_call_site_parameter) + <492f> DW_AT_location : 1 byte block: 5b (DW_OP_reg11 (a1)) + <4931> DW_AT_GNU_call_site_value: 2 byte block: 8 f4 (DW_OP_const1u: 244) + <4><4934>: Abbrev Number: 20 (DW_TAG_GNU_call_site_parameter) + <4935> DW_AT_location : 1 byte block: 5c (DW_OP_reg12 (a2)) + <4937> DW_AT_GNU_call_site_value: 9 byte block: 3 30 e 0 0 0 0 0 0 (DW_OP_addr: e30) + <4><4941>: Abbrev Number: 0 + <3><4942>: Abbrev Number: 0 + <2><4943>: Abbrev Number: 23 (DW_TAG_GNU_call_site) + <4944> DW_AT_low_pc : 0x644 + <494c> DW_AT_abstract_origin: <0x46c8> + <4950> DW_AT_sibling : <0x495b> + <3><4954>: Abbrev Number: 20 (DW_TAG_GNU_call_site_parameter) + <4955> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <4957> DW_AT_GNU_call_site_value: 2 byte block: 79 0 (DW_OP_breg9 (s1): 0) + <3><495a>: Abbrev Number: 0 + <2><495b>: Abbrev Number: 23 (DW_TAG_GNU_call_site) + <495c> DW_AT_low_pc : 0x66c + <4964> DW_AT_abstract_origin: <0x4b2d> + <4968> DW_AT_sibling : <0x4973> + <3><496c>: Abbrev Number: 20 (DW_TAG_GNU_call_site_parameter) + <496d> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <496f> DW_AT_GNU_call_site_value: 2 byte block: 79 0 (DW_OP_breg9 (s1): 0) + <3><4972>: Abbrev Number: 0 + <2><4973>: Abbrev Number: 33 (DW_TAG_GNU_call_site) + <4974> DW_AT_low_pc : 0x67a + <497c> DW_AT_abstract_origin: <0x4ae2> + <2><4980>: Abbrev Number: 0 + <1><4981>: Abbrev Number: 40 (DW_TAG_subprogram) + <4982> DW_AT_abstract_origin: <0x44c2> + <4986> DW_AT_low_pc : 0x6fa + <498e> DW_AT_high_pc : 0x66 + <4996> DW_AT_frame_base : 1 byte block: 9c (DW_OP_call_frame_cfa) + <4998> DW_AT_GNU_all_call_sites: 1 + <4998> DW_AT_sibling : <0x4a69> + <2><499c>: Abbrev Number: 22 (DW_TAG_formal_parameter) + <499d> DW_AT_abstract_origin: <0x44d3> + <49a1> DW_AT_location : 0x1ea0 (location list) + <2><49a5>: Abbrev Number: 41 (DW_TAG_variable) + <49a6> DW_AT_abstract_origin: <0x44e0> + <49aa> DW_AT_location : 0x1eff (location list) + <2><49ae>: Abbrev Number: 24 (DW_TAG_inlined_subroutine) + <49af> DW_AT_abstract_origin: <0x47db> + <49b3> DW_AT_low_pc : 0x6fa + <49bb> DW_AT_high_pc : 0x0 + <49c3> DW_AT_call_file : 1 + <49c4> DW_AT_call_line : 330 + <49c6> DW_AT_call_column : 7 + <49c7> DW_AT_sibling : <0x49d1> + <3><49cb>: Abbrev Number: 44 (DW_TAG_formal_parameter) + <49cc> DW_AT_abstract_origin: <0x47ec> + <3><49d0>: Abbrev Number: 0 + <2><49d1>: Abbrev Number: 42 (DW_TAG_inlined_subroutine) + <49d2> DW_AT_abstract_origin: <0x44c2> + <49d6> DW_AT_low_pc : 0x716 + <49de> DW_AT_high_pc : 0x1c + <49e6> DW_AT_call_file : 8 + <49e7> DW_AT_call_line : 240 + <49e8> DW_AT_call_column : 5 + <49e9> DW_AT_sibling : <0x4a2b> + <3><49ed>: Abbrev Number: 22 (DW_TAG_formal_parameter) + <49ee> DW_AT_abstract_origin: <0x44d3> + <49f2> DW_AT_location : 0x1f22 (location list) + <3><49f6>: Abbrev Number: 43 (DW_TAG_variable) + <49f7> DW_AT_abstract_origin: <0x44e0> + <3><49fb>: Abbrev Number: 19 (DW_TAG_GNU_call_site) + <49fc> DW_AT_low_pc : 0x732 + <4a04> DW_AT_abstract_origin: <0x4aa3> + <4><4a08>: Abbrev Number: 20 (DW_TAG_GNU_call_site_parameter) + <4a09> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <4a0b> DW_AT_GNU_call_site_value: 9 byte block: 3 48 e 0 0 0 0 0 0 (DW_OP_addr: e48) + <4><4a15>: Abbrev Number: 20 (DW_TAG_GNU_call_site_parameter) + <4a16> DW_AT_location : 1 byte block: 5b (DW_OP_reg11 (a1)) + <4a18> DW_AT_GNU_call_site_value: 3 byte block: a 4f 1 (DW_OP_const2u: 335) + <4><4a1c>: Abbrev Number: 20 (DW_TAG_GNU_call_site_parameter) + <4a1d> DW_AT_location : 1 byte block: 5c (DW_OP_reg12 (a2)) + <4a1f> DW_AT_GNU_call_site_value: 9 byte block: 3 60 e 0 0 0 0 0 0 (DW_OP_addr: e60) + <4><4a29>: Abbrev Number: 0 + <3><4a2a>: Abbrev Number: 0 + <2><4a2b>: Abbrev Number: 23 (DW_TAG_GNU_call_site) + <4a2c> DW_AT_low_pc : 0x714 + <4a34> DW_AT_abstract_origin: <0x46c8> + <4a38> DW_AT_sibling : <0x4a43> + <3><4a3c>: Abbrev Number: 20 (DW_TAG_GNU_call_site_parameter) + <4a3d> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <4a3f> DW_AT_GNU_call_site_value: 2 byte block: 78 0 (DW_OP_breg8 (s0): 0) + <3><4a42>: Abbrev Number: 0 + <2><4a43>: Abbrev Number: 23 (DW_TAG_GNU_call_site) + <4a44> DW_AT_low_pc : 0x740 + <4a4c> DW_AT_abstract_origin: <0x4b39> + <4a50> DW_AT_sibling : <0x4a5b> + <3><4a54>: Abbrev Number: 20 (DW_TAG_GNU_call_site_parameter) + <4a55> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <4a57> DW_AT_GNU_call_site_value: 2 byte block: 78 0 (DW_OP_breg8 (s0): 0) + <3><4a5a>: Abbrev Number: 0 + <2><4a5b>: Abbrev Number: 33 (DW_TAG_GNU_call_site) + <4a5c> DW_AT_low_pc : 0x74e + <4a64> DW_AT_abstract_origin: <0x4ae2> + <2><4a68>: Abbrev Number: 0 + <1><4a69>: Abbrev Number: 40 (DW_TAG_subprogram) + <4a6a> DW_AT_abstract_origin: <0x4316> + <4a6e> DW_AT_low_pc : 0x7d6 + <4a76> DW_AT_high_pc : 0x8 + <4a7e> DW_AT_frame_base : 1 byte block: 9c (DW_OP_call_frame_cfa) + <4a80> DW_AT_GNU_all_call_sites: 1 + <4a80> DW_AT_sibling : <0x4aa3> + <2><4a84>: Abbrev Number: 22 (DW_TAG_formal_parameter) + <4a85> DW_AT_abstract_origin: <0x4328> + <4a89> DW_AT_location : 0x1f45 (location list) + <2><4a8d>: Abbrev Number: 25 (DW_TAG_GNU_call_site) + <4a8e> DW_AT_low_pc : 0x7de + <4a96> DW_AT_GNU_tail_call: 1 + <4a96> DW_AT_abstract_origin: <0x46c8> + <3><4a9a>: Abbrev Number: 20 (DW_TAG_GNU_call_site_parameter) + <4a9b> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <4a9d> DW_AT_GNU_call_site_value: 3 byte block: f3 1 5a (DW_OP_GNU_entry_value: (DW_OP_reg10 (a0))) + <3><4aa1>: Abbrev Number: 0 + <2><4aa2>: Abbrev Number: 0 + <1><4aa3>: Abbrev Number: 45 (DW_TAG_subprogram) + <4aa4> DW_AT_external : 1 + <4aa4> DW_AT_declaration : 1 + <4aa4> DW_AT_linkage_name: (indirect string, offset: 0x3143): __assert + <4aa8> DW_AT_name : (indirect string, offset: 0x3143): __assert + <4aac> DW_AT_decl_file : 9 + <4aad> DW_AT_decl_line : 191 + <4aae> DW_AT_decl_column : 6 + <1><4aaf>: Abbrev Number: 45 (DW_TAG_subprogram) + <4ab0> DW_AT_external : 1 + <4ab0> DW_AT_declaration : 1 + <4ab0> DW_AT_linkage_name: (indirect string, offset: 0x3167): clock_gettime + <4ab4> DW_AT_name : (indirect string, offset: 0x3167): clock_gettime + <4ab8> DW_AT_decl_file : 5 + <4ab9> DW_AT_decl_line : 192 + <4aba> DW_AT_decl_column : 5 + <1><4abb>: Abbrev Number: 46 (DW_TAG_subprogram) + <4abc> DW_AT_external : 1 + <4abc> DW_AT_declaration : 1 + <4abc> DW_AT_linkage_name: (indirect string, offset: 0x3213): clock_ticks2time + <4ac0> DW_AT_name : (indirect string, offset: 0x3213): clock_ticks2time + <4ac4> DW_AT_decl_file : 10 + <4ac5> DW_AT_decl_line : 578 + <4ac7> DW_AT_decl_column : 5 + <1><4ac8>: Abbrev Number: 46 (DW_TAG_subprogram) + <4ac9> DW_AT_external : 1 + <4ac9> DW_AT_declaration : 1 + <4ac9> DW_AT_linkage_name: (indirect string, offset: 0x31ad): clock_timespec_add + <4acd> DW_AT_name : (indirect string, offset: 0x31ad): clock_timespec_add + <4ad1> DW_AT_decl_file : 10 + <4ad2> DW_AT_decl_line : 369 + <4ad4> DW_AT_decl_column : 6 + <1><4ad5>: Abbrev Number: 46 (DW_TAG_subprogram) + <4ad6> DW_AT_external : 1 + <4ad6> DW_AT_declaration : 1 + <4ad6> DW_AT_linkage_name: (indirect string, offset: 0x3311): nxsem_clockwait + <4ada> DW_AT_name : (indirect string, offset: 0x3311): nxsem_clockwait + <4ade> DW_AT_decl_file : 11 + <4adf> DW_AT_decl_line : 300 + <4ae1> DW_AT_decl_column : 5 + <1><4ae2>: Abbrev Number: 46 (DW_TAG_subprogram) + <4ae3> DW_AT_external : 1 + <4ae3> DW_AT_declaration : 1 + <4ae3> DW_AT_linkage_name: (indirect string, offset: 0x2ed7): gettid + <4ae7> DW_AT_name : (indirect string, offset: 0x2ed7): gettid + <4aeb> DW_AT_decl_file : 12 + <4aec> DW_AT_decl_line : 316 + <4aee> DW_AT_decl_column : 9 + <1><4aef>: Abbrev Number: 46 (DW_TAG_subprogram) + <4af0> DW_AT_external : 1 + <4af0> DW_AT_declaration : 1 + <4af0> DW_AT_linkage_name: (indirect string, offset: 0x30cb): nxsem_get_value + <4af4> DW_AT_name : (indirect string, offset: 0x30cb): nxsem_get_value + <4af8> DW_AT_decl_file : 11 + <4af9> DW_AT_decl_line : 385 + <4afb> DW_AT_decl_column : 5 + <1><4afc>: Abbrev Number: 45 (DW_TAG_subprogram) + <4afd> DW_AT_external : 1 + <4afd> DW_AT_declaration : 1 + <4afd> DW_AT_linkage_name: (indirect string, offset: 0x32a2): nxsem_destroy + <4b01> DW_AT_name : (indirect string, offset: 0x32a2): nxsem_destroy + <4b05> DW_AT_decl_file : 11 + <4b06> DW_AT_decl_line : 151 + <4b07> DW_AT_decl_column : 5 + <1><4b08>: Abbrev Number: 45 (DW_TAG_subprogram) + <4b09> DW_AT_external : 1 + <4b09> DW_AT_declaration : 1 + <4b09> DW_AT_linkage_name: (indirect string, offset: 0x2ecc): nxsem_init + <4b0d> DW_AT_name : (indirect string, offset: 0x2ecc): nxsem_init + <4b11> DW_AT_decl_file : 11 + <4b12> DW_AT_decl_line : 125 + <4b13> DW_AT_decl_column : 5 + <1><4b14>: Abbrev Number: 46 (DW_TAG_subprogram) + <4b15> DW_AT_external : 1 + <4b15> DW_AT_declaration : 1 + <4b15> DW_AT_linkage_name: (indirect string, offset: 0x30b8): nxsem_set_protocol + <4b19> DW_AT_name : (indirect string, offset: 0x30b8): nxsem_set_protocol + <4b1d> DW_AT_decl_file : 11 + <4b1e> DW_AT_decl_line : 559 + <4b20> DW_AT_decl_column : 5 + <1><4b21>: Abbrev Number: 45 (DW_TAG_subprogram) + <4b22> DW_AT_external : 1 + <4b22> DW_AT_declaration : 1 + <4b22> DW_AT_linkage_name: (indirect string, offset: 0x2eee): nxsem_wait + <4b26> DW_AT_name : (indirect string, offset: 0x2eee): nxsem_wait + <4b2a> DW_AT_decl_file : 11 + <4b2b> DW_AT_decl_line : 181 + <4b2c> DW_AT_decl_column : 5 + <1><4b2d>: Abbrev Number: 45 (DW_TAG_subprogram) + <4b2e> DW_AT_external : 1 + <4b2e> DW_AT_declaration : 1 + <4b2e> DW_AT_linkage_name: (indirect string, offset: 0x326a): nxsem_trywait + <4b32> DW_AT_name : (indirect string, offset: 0x326a): nxsem_trywait + <4b36> DW_AT_decl_file : 11 + <4b37> DW_AT_decl_line : 207 + <4b38> DW_AT_decl_column : 5 + <1><4b39>: Abbrev Number: 46 (DW_TAG_subprogram) + <4b3a> DW_AT_external : 1 + <4b3a> DW_AT_declaration : 1 + <4b3a> DW_AT_linkage_name: (indirect string, offset: 0x30ad): nxsem_post + <4b3e> DW_AT_name : (indirect string, offset: 0x30ad): nxsem_post + <4b42> DW_AT_decl_file : 11 + <4b43> DW_AT_decl_line : 357 + <4b45> DW_AT_decl_column : 5 + <1><4b46>: Abbrev Number: 0 + Compilation Unit @ offset 0x4b47: + Length: 0x150 (32-bit) + Version: 4 + Abbrev Offset: 0x15a7 + Pointer Size: 8 + <0><4b52>: Abbrev Number: 1 (DW_TAG_compile_unit) + <4b53> DW_AT_producer : (indirect string, offset: 0x3477): GNU C17 10.2.0 -mcmodel=medany -march=rv64imafdc -mabi=lp64d -march=rv64imafdc -g -Os -fno-common -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections + <4b57> DW_AT_language : 12 (ANSI C99) + <4b58> DW_AT_name : (indirect string, offset: 0x33e6): sched/clock_ticks2time.c + <4b5c> DW_AT_comp_dir : (indirect string, offset: 0x3450): /Users/Luppy/ox64/nuttx/libs/libc + <4b60> DW_AT_ranges : 0x4f0 + <4b64> DW_AT_low_pc : 0x0 + <4b6c> DW_AT_stmt_list : 0x2b60 + <1><4b70>: Abbrev Number: 2 (DW_TAG_base_type) + <4b71> DW_AT_byte_size : 1 + <4b72> DW_AT_encoding : 6 (signed char) + <4b73> DW_AT_name : (indirect string, offset: 0x3419): signed char + <1><4b77>: Abbrev Number: 2 (DW_TAG_base_type) + <4b78> DW_AT_byte_size : 1 + <4b79> DW_AT_encoding : 8 (unsigned char) + <4b7a> DW_AT_name : (indirect string, offset: 0x33a7): unsigned char + <1><4b7e>: Abbrev Number: 2 (DW_TAG_base_type) + <4b7f> DW_AT_byte_size : 2 + <4b80> DW_AT_encoding : 5 (signed) + <4b81> DW_AT_name : (indirect string, offset: 0x343e): short int + <1><4b85>: Abbrev Number: 2 (DW_TAG_base_type) + <4b86> DW_AT_byte_size : 2 + <4b87> DW_AT_encoding : 7 (unsigned) + <4b88> DW_AT_name : (indirect string, offset: 0x3406): short unsigned int + <1><4b8c>: Abbrev Number: 3 (DW_TAG_typedef) + <4b8d> DW_AT_name : (indirect string, offset: 0x3375): _int32_t + <4b91> DW_AT_decl_file : 2 + <4b92> DW_AT_decl_line : 58 + <4b93> DW_AT_decl_column : 28 + <4b94> DW_AT_type : <0x4b98> + <1><4b98>: Abbrev Number: 4 (DW_TAG_base_type) + <4b99> DW_AT_byte_size : 4 + <4b9a> DW_AT_encoding : 5 (signed) + <4b9b> DW_AT_name : int + <1><4b9f>: Abbrev Number: 3 (DW_TAG_typedef) + <4ba0> DW_AT_name : (indirect string, offset: 0x3346): _uint32_t + <4ba4> DW_AT_decl_file : 2 + <4ba5> DW_AT_decl_line : 59 + <4ba6> DW_AT_decl_column : 28 + <4ba7> DW_AT_type : <0x4bab> + <1><4bab>: Abbrev Number: 2 (DW_TAG_base_type) + <4bac> DW_AT_byte_size : 4 + <4bad> DW_AT_encoding : 7 (unsigned) + <4bae> DW_AT_name : (indirect string, offset: 0x3350): unsigned int + <1><4bb2>: Abbrev Number: 2 (DW_TAG_base_type) + <4bb3> DW_AT_byte_size : 8 + <4bb4> DW_AT_encoding : 5 (signed) + <4bb5> DW_AT_name : (indirect string, offset: 0x33c5): long int + <1><4bb9>: Abbrev Number: 2 (DW_TAG_base_type) + <4bba> DW_AT_byte_size : 8 + <4bbb> DW_AT_encoding : 7 (unsigned) + <4bbc> DW_AT_name : (indirect string, offset: 0x33d4): long unsigned int + <1><4bc0>: Abbrev Number: 2 (DW_TAG_base_type) + <4bc1> DW_AT_byte_size : 8 + <4bc2> DW_AT_encoding : 7 (unsigned) + <4bc3> DW_AT_name : (indirect string, offset: 0x3388): long long unsigned int + <1><4bc7>: Abbrev Number: 3 (DW_TAG_typedef) + <4bc8> DW_AT_name : (indirect string, offset: 0x3448): int32_t + <4bcc> DW_AT_decl_file : 3 + <4bcd> DW_AT_decl_line : 176 + <4bce> DW_AT_decl_column : 29 + <4bcf> DW_AT_type : <0x4b8c> + <1><4bd3>: Abbrev Number: 3 (DW_TAG_typedef) + <4bd4> DW_AT_name : (indirect string, offset: 0x33bc): uint32_t + <4bd8> DW_AT_decl_file : 3 + <4bd9> DW_AT_decl_line : 177 + <4bda> DW_AT_decl_column : 29 + <4bdb> DW_AT_type : <0x4b9f> + <1><4bdf>: Abbrev Number: 3 (DW_TAG_typedef) + <4be0> DW_AT_name : (indirect string, offset: 0x33b5): time_t + <4be4> DW_AT_decl_file : 4 + <4be5> DW_AT_decl_line : 255 + <4be6> DW_AT_decl_column : 22 + <4be7> DW_AT_type : <0x4bd3> + <1><4beb>: Abbrev Number: 2 (DW_TAG_base_type) + <4bec> DW_AT_byte_size : 1 + <4bed> DW_AT_encoding : 8 (unsigned char) + <4bee> DW_AT_name : (indirect string, offset: 0x3472): char + <1><4bf2>: Abbrev Number: 5 (DW_TAG_enumeration_type) + <4bf3> DW_AT_encoding : 5 (signed) + <4bf4> DW_AT_byte_size : 4 + <4bf5> DW_AT_type : <0x4b98> + <4bf9> DW_AT_decl_file : 4 + <4bfa> DW_AT_decl_line : 321 + <4bfc> DW_AT_decl_column : 1 + <4bfd> DW_AT_sibling : <0x4c0d> + <2><4c01>: Abbrev Number: 6 (DW_TAG_enumerator) + <4c02> DW_AT_name : (indirect string, offset: 0x336f): ERROR + <4c06> DW_AT_const_value : -1 + <2><4c07>: Abbrev Number: 7 (DW_TAG_enumerator) + <4c08> DW_AT_name : OK + <4c0b> DW_AT_const_value : 0 + <2><4c0c>: Abbrev Number: 0 + <1><4c0d>: Abbrev Number: 8 (DW_TAG_structure_type) + <4c0e> DW_AT_name : (indirect string, offset: 0x3366): timespec + <4c12> DW_AT_byte_size : 16 + <4c13> DW_AT_decl_file : 5 + <4c14> DW_AT_decl_line : 113 + <4c15> DW_AT_decl_column : 8 + <4c16> DW_AT_sibling : <0x4c35> + <2><4c1a>: Abbrev Number: 9 (DW_TAG_member) + <4c1b> DW_AT_name : (indirect string, offset: 0x33ff): tv_sec + <4c1f> DW_AT_decl_file : 5 + <4c20> DW_AT_decl_line : 115 + <4c21> DW_AT_decl_column : 10 + <4c22> DW_AT_type : <0x4bdf> + <4c26> DW_AT_data_member_location: 0 + <2><4c27>: Abbrev Number: 9 (DW_TAG_member) + <4c28> DW_AT_name : (indirect string, offset: 0x3436): tv_nsec + <4c2c> DW_AT_decl_file : 5 + <4c2d> DW_AT_decl_line : 116 + <4c2e> DW_AT_decl_column : 10 + <4c2f> DW_AT_type : <0x4bb2> + <4c33> DW_AT_data_member_location: 8 + <2><4c34>: Abbrev Number: 0 + <1><4c35>: Abbrev Number: 10 (DW_TAG_typedef) + <4c36> DW_AT_name : (indirect string, offset: 0x335d): sclock_t + <4c3a> DW_AT_decl_file : 6 + <4c3b> DW_AT_decl_line : 293 + <4c3d> DW_AT_decl_column : 17 + <4c3e> DW_AT_type : <0x4bc7> + <1><4c42>: Abbrev Number: 11 (DW_TAG_subprogram) + <4c43> DW_AT_external : 1 + <4c43> DW_AT_name : (indirect string, offset: 0x3425): clock_ticks2time + <4c47> DW_AT_decl_file : 6 + <4c48> DW_AT_decl_line : 578 + <4c4a> DW_AT_decl_column : 5 + <4c4b> DW_AT_prototyped : 1 + <4c4b> DW_AT_type : <0x4b98> + <4c4f> DW_AT_low_pc : 0x9a2 + <4c57> DW_AT_high_pc : 0x26 + <4c5f> DW_AT_frame_base : 1 byte block: 9c (DW_OP_call_frame_cfa) + <4c61> DW_AT_GNU_all_call_sites: 1 + <4c61> DW_AT_sibling : <0x4c94> + <2><4c65>: Abbrev Number: 12 (DW_TAG_formal_parameter) + <4c66> DW_AT_name : (indirect string, offset: 0x33ce): ticks + <4c6a> DW_AT_decl_file : 1 + <4c6b> DW_AT_decl_line : 51 + <4c6c> DW_AT_decl_column : 31 + <4c6d> DW_AT_type : <0x4c35> + <4c71> DW_AT_location : 0x1f7e (location list) + <2><4c75>: Abbrev Number: 13 (DW_TAG_formal_parameter) + <4c76> DW_AT_name : (indirect string, offset: 0x339f): reltime + <4c7a> DW_AT_decl_file : 1 + <4c7b> DW_AT_decl_line : 51 + <4c7c> DW_AT_decl_column : 59 + <4c7d> DW_AT_type : <0x4c94> + <4c81> DW_AT_location : 1 byte block: 5b (DW_OP_reg11 (a1)) + <2><4c83>: Abbrev Number: 14 (DW_TAG_variable) + <4c84> DW_AT_name : (indirect string, offset: 0x337e): remainder + <4c88> DW_AT_decl_file : 1 + <4c89> DW_AT_decl_line : 53 + <4c8a> DW_AT_decl_column : 12 + <4c8b> DW_AT_type : <0x4c35> + <4c8f> DW_AT_location : 0x1fb7 (location list) + <2><4c93>: Abbrev Number: 0 + <1><4c94>: Abbrev Number: 15 (DW_TAG_pointer_type) + <4c95> DW_AT_byte_size : 8 + <4c96> DW_AT_type : <0x4c0d> + <1><4c9a>: Abbrev Number: 0 + Compilation Unit @ offset 0x4c9b: + Length: 0x12f (32-bit) + Version: 4 + Abbrev Offset: 0x1690 + Pointer Size: 8 + <0><4ca6>: Abbrev Number: 1 (DW_TAG_compile_unit) + <4ca7> DW_AT_producer : (indirect string, offset: 0x3629): GNU C17 10.2.0 -mcmodel=medany -march=rv64imafdc -mabi=lp64d -march=rv64imafdc -g -Os -fno-common -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections + <4cab> DW_AT_language : 12 (ANSI C99) + <4cac> DW_AT_name : (indirect string, offset: 0x353e): sched/clock_timespec_add.c + <4cb0> DW_AT_comp_dir : (indirect string, offset: 0x3590): /Users/Luppy/ox64/nuttx/libs/libc + <4cb4> DW_AT_ranges : 0x510 + <4cb8> DW_AT_low_pc : 0x0 + <4cc0> DW_AT_stmt_list : 0x2cce + <1><4cc4>: Abbrev Number: 2 (DW_TAG_base_type) + <4cc5> DW_AT_byte_size : 1 + <4cc6> DW_AT_encoding : 6 (signed char) + <4cc7> DW_AT_name : (indirect string, offset: 0x3606): signed char + <1><4ccb>: Abbrev Number: 2 (DW_TAG_base_type) + <4ccc> DW_AT_byte_size : 1 + <4ccd> DW_AT_encoding : 8 (unsigned char) + <4cce> DW_AT_name : (indirect string, offset: 0x35b2): unsigned char + <1><4cd2>: Abbrev Number: 2 (DW_TAG_base_type) + <4cd3> DW_AT_byte_size : 2 + <4cd4> DW_AT_encoding : 5 (signed) + <4cd5> DW_AT_name : (indirect string, offset: 0x361a): short int + <1><4cd9>: Abbrev Number: 2 (DW_TAG_base_type) + <4cda> DW_AT_byte_size : 2 + <4cdb> DW_AT_encoding : 7 (unsigned) + <4cdc> DW_AT_name : (indirect string, offset: 0x35f3): short unsigned int + <1><4ce0>: Abbrev Number: 3 (DW_TAG_base_type) + <4ce1> DW_AT_byte_size : 4 + <4ce2> DW_AT_encoding : 5 (signed) + <4ce3> DW_AT_name : int + <1><4ce7>: Abbrev Number: 4 (DW_TAG_typedef) + <4ce8> DW_AT_name : (indirect string, offset: 0x3527): _uint32_t + <4cec> DW_AT_decl_file : 2 + <4ced> DW_AT_decl_line : 59 + <4cee> DW_AT_decl_column : 28 + <4cef> DW_AT_type : <0x4cf3> + <1><4cf3>: Abbrev Number: 2 (DW_TAG_base_type) + <4cf4> DW_AT_byte_size : 4 + <4cf5> DW_AT_encoding : 7 (unsigned) + <4cf6> DW_AT_name : (indirect string, offset: 0x3531): unsigned int + <1><4cfa>: Abbrev Number: 2 (DW_TAG_base_type) + <4cfb> DW_AT_byte_size : 8 + <4cfc> DW_AT_encoding : 5 (signed) + <4cfd> DW_AT_name : (indirect string, offset: 0x35d0): long int + <1><4d01>: Abbrev Number: 2 (DW_TAG_base_type) + <4d02> DW_AT_byte_size : 8 + <4d03> DW_AT_encoding : 7 (unsigned) + <4d04> DW_AT_name : (indirect string, offset: 0x3567): long unsigned int + <1><4d08>: Abbrev Number: 2 (DW_TAG_base_type) + <4d09> DW_AT_byte_size : 8 + <4d0a> DW_AT_encoding : 7 (unsigned) + <4d0b> DW_AT_name : (indirect string, offset: 0x3579): long long unsigned int + <1><4d0f>: Abbrev Number: 4 (DW_TAG_typedef) + <4d10> DW_AT_name : (indirect string, offset: 0x35c7): uint32_t + <4d14> DW_AT_decl_file : 3 + <4d15> DW_AT_decl_line : 177 + <4d16> DW_AT_decl_column : 29 + <4d17> DW_AT_type : <0x4ce7> + <1><4d1b>: Abbrev Number: 4 (DW_TAG_typedef) + <4d1c> DW_AT_name : (indirect string, offset: 0x35c0): time_t + <4d20> DW_AT_decl_file : 4 + <4d21> DW_AT_decl_line : 255 + <4d22> DW_AT_decl_column : 22 + <4d23> DW_AT_type : <0x4d0f> + <1><4d27>: Abbrev Number: 2 (DW_TAG_base_type) + <4d28> DW_AT_byte_size : 1 + <4d29> DW_AT_encoding : 8 (unsigned char) + <4d2a> DW_AT_name : (indirect string, offset: 0x3624): char + <1><4d2e>: Abbrev Number: 5 (DW_TAG_structure_type) + <4d2f> DW_AT_name : (indirect string, offset: 0x355e): timespec + <4d33> DW_AT_byte_size : 16 + <4d34> DW_AT_decl_file : 5 + <4d35> DW_AT_decl_line : 113 + <4d36> DW_AT_decl_column : 8 + <4d37> DW_AT_sibling : <0x4d56> + <2><4d3b>: Abbrev Number: 6 (DW_TAG_member) + <4d3c> DW_AT_name : (indirect string, offset: 0x35ec): tv_sec + <4d40> DW_AT_decl_file : 5 + <4d41> DW_AT_decl_line : 115 + <4d42> DW_AT_decl_column : 10 + <4d43> DW_AT_type : <0x4d1b> + <4d47> DW_AT_data_member_location: 0 + <2><4d48>: Abbrev Number: 6 (DW_TAG_member) + <4d49> DW_AT_name : (indirect string, offset: 0x3612): tv_nsec + <4d4d> DW_AT_decl_file : 5 + <4d4e> DW_AT_decl_line : 116 + <4d4f> DW_AT_decl_column : 10 + <4d50> DW_AT_type : <0x4cfa> + <4d54> DW_AT_data_member_location: 8 + <2><4d55>: Abbrev Number: 0 + <1><4d56>: Abbrev Number: 7 (DW_TAG_const_type) + <4d57> DW_AT_type : <0x4d2e> + <1><4d5b>: Abbrev Number: 8 (DW_TAG_subprogram) + <4d5c> DW_AT_external : 1 + <4d5c> DW_AT_name : (indirect string, offset: 0x35d9): clock_timespec_add + <4d60> DW_AT_decl_file : 6 + <4d61> DW_AT_decl_line : 369 + <4d63> DW_AT_decl_column : 6 + <4d64> DW_AT_prototyped : 1 + <4d64> DW_AT_low_pc : 0x9c8 + <4d6c> DW_AT_high_pc : 0x2e + <4d74> DW_AT_frame_base : 1 byte block: 9c (DW_OP_call_frame_cfa) + <4d76> DW_AT_GNU_all_call_sites: 1 + <4d76> DW_AT_sibling : <0x4dc1> + <2><4d7a>: Abbrev Number: 9 (DW_TAG_formal_parameter) + <4d7b> DW_AT_name : ts1 + <4d7f> DW_AT_decl_file : 1 + <4d80> DW_AT_decl_line : 51 + <4d81> DW_AT_decl_column : 52 + <4d82> DW_AT_type : <0x4dc1> + <4d86> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <2><4d88>: Abbrev Number: 9 (DW_TAG_formal_parameter) + <4d89> DW_AT_name : ts2 + <4d8d> DW_AT_decl_file : 1 + <4d8e> DW_AT_decl_line : 52 + <4d8f> DW_AT_decl_column : 52 + <4d90> DW_AT_type : <0x4dc1> + <4d94> DW_AT_location : 1 byte block: 5b (DW_OP_reg11 (a1)) + <2><4d96>: Abbrev Number: 9 (DW_TAG_formal_parameter) + <4d97> DW_AT_name : ts3 + <4d9b> DW_AT_decl_file : 1 + <4d9c> DW_AT_decl_line : 53 + <4d9d> DW_AT_decl_column : 46 + <4d9e> DW_AT_type : <0x4dc7> + <4da2> DW_AT_location : 1 byte block: 5c (DW_OP_reg12 (a2)) + <2><4da4>: Abbrev Number: 10 (DW_TAG_variable) + <4da5> DW_AT_name : sec + <4da9> DW_AT_decl_file : 1 + <4daa> DW_AT_decl_line : 55 + <4dab> DW_AT_decl_column : 10 + <4dac> DW_AT_type : <0x4d1b> + <4db0> DW_AT_location : 1 byte block: 60 (DW_OP_reg16 (a6)) + <2><4db2>: Abbrev Number: 11 (DW_TAG_variable) + <4db3> DW_AT_name : (indirect string, offset: 0x3559): nsec + <4db7> DW_AT_decl_file : 1 + <4db8> DW_AT_decl_line : 56 + <4db9> DW_AT_decl_column : 8 + <4dba> DW_AT_type : <0x4cfa> + <4dbe> DW_AT_location : 1 byte block: 5f (DW_OP_reg15 (a5)) + <2><4dc0>: Abbrev Number: 0 + <1><4dc1>: Abbrev Number: 12 (DW_TAG_pointer_type) + <4dc2> DW_AT_byte_size : 8 + <4dc3> DW_AT_type : <0x4d56> + <1><4dc7>: Abbrev Number: 12 (DW_TAG_pointer_type) + <4dc8> DW_AT_byte_size : 8 + <4dc9> DW_AT_type : <0x4d2e> + <1><4dcd>: Abbrev Number: 0 + Compilation Unit @ offset 0x4dce: + Length: 0x63a (32-bit) + Version: 4 + Abbrev Offset: 0x174a + Pointer Size: 8 + <0><4dd9>: Abbrev Number: 1 (DW_TAG_compile_unit) + <4dda> DW_AT_producer : (indirect string, offset: 0x3789): GNU C17 10.2.0 -mcmodel=medany -march=rv64imafdc -mabi=lp64d -march=rv64imafdc -g -Os -fno-common -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections + <4dde> DW_AT_language : 12 (ANSI C99) + <4ddf> DW_AT_name : (indirect string, offset: 0x3a74): sched/task_setcancelstate.c + <4de3> DW_AT_comp_dir : (indirect string, offset: 0x38f1): /Users/Luppy/ox64/nuttx/libs/libc + <4de7> DW_AT_ranges : 0x560 + <4deb> DW_AT_low_pc : 0x0 + <4df3> DW_AT_stmt_list : 0x2e7a + <1><4df7>: Abbrev Number: 2 (DW_TAG_base_type) + <4df8> DW_AT_byte_size : 1 + <4df9> DW_AT_encoding : 6 (signed char) + <4dfa> DW_AT_name : (indirect string, offset: 0x388d): signed char + <1><4dfe>: Abbrev Number: 3 (DW_TAG_typedef) + <4dff> DW_AT_name : (indirect string, offset: 0x3706): _uint8_t + <4e03> DW_AT_decl_file : 3 + <4e04> DW_AT_decl_line : 52 + <4e05> DW_AT_decl_column : 28 + <4e06> DW_AT_type : <0x4e0a> + <1><4e0a>: Abbrev Number: 2 (DW_TAG_base_type) + <4e0b> DW_AT_byte_size : 1 + <4e0c> DW_AT_encoding : 8 (unsigned char) + <4e0d> DW_AT_name : (indirect string, offset: 0x3947): unsigned char + <1><4e11>: Abbrev Number: 3 (DW_TAG_typedef) + <4e12> DW_AT_name : (indirect string, offset: 0x3955): _int16_t + <4e16> DW_AT_decl_file : 3 + <4e17> DW_AT_decl_line : 54 + <4e18> DW_AT_decl_column : 28 + <4e19> DW_AT_type : <0x4e1d> + <1><4e1d>: Abbrev Number: 2 (DW_TAG_base_type) + <4e1e> DW_AT_byte_size : 2 + <4e1f> DW_AT_encoding : 5 (signed) + <4e20> DW_AT_name : (indirect string, offset: 0x371c): short int + <1><4e24>: Abbrev Number: 3 (DW_TAG_typedef) + <4e25> DW_AT_name : (indirect string, offset: 0x3b01): _uint16_t + <4e29> DW_AT_decl_file : 3 + <4e2a> DW_AT_decl_line : 55 + <4e2b> DW_AT_decl_column : 28 + <4e2c> DW_AT_type : <0x4e30> + <1><4e30>: Abbrev Number: 2 (DW_TAG_base_type) + <4e31> DW_AT_byte_size : 2 + <4e32> DW_AT_encoding : 7 (unsigned) + <4e33> DW_AT_name : (indirect string, offset: 0x3a00): short unsigned int + <1><4e37>: Abbrev Number: 3 (DW_TAG_typedef) + <4e38> DW_AT_name : (indirect string, offset: 0x3936): _int32_t + <4e3c> DW_AT_decl_file : 3 + <4e3d> DW_AT_decl_line : 58 + <4e3e> DW_AT_decl_column : 28 + <4e3f> DW_AT_type : <0x4e43> + <1><4e43>: Abbrev Number: 4 (DW_TAG_base_type) + <4e44> DW_AT_byte_size : 4 + <4e45> DW_AT_encoding : 5 (signed) + <4e46> DW_AT_name : int + <1><4e4a>: Abbrev Number: 2 (DW_TAG_base_type) + <4e4b> DW_AT_byte_size : 4 + <4e4c> DW_AT_encoding : 7 (unsigned) + <4e4d> DW_AT_name : (indirect string, offset: 0x3b18): unsigned int + <1><4e51>: Abbrev Number: 2 (DW_TAG_base_type) + <4e52> DW_AT_byte_size : 8 + <4e53> DW_AT_encoding : 5 (signed) + <4e54> DW_AT_name : (indirect string, offset: 0x39ef): long int + <1><4e58>: Abbrev Number: 2 (DW_TAG_base_type) + <4e59> DW_AT_byte_size : 8 + <4e5a> DW_AT_encoding : 7 (unsigned) + <4e5b> DW_AT_name : (indirect string, offset: 0x39a1): long unsigned int + <1><4e5f>: Abbrev Number: 3 (DW_TAG_typedef) + <4e60> DW_AT_name : (indirect string, offset: 0x3b4a): _ssize_t + <4e64> DW_AT_decl_file : 3 + <4e65> DW_AT_decl_line : 91 + <4e66> DW_AT_decl_column : 28 + <4e67> DW_AT_type : <0x4e51> + <1><4e6b>: Abbrev Number: 3 (DW_TAG_typedef) + <4e6c> DW_AT_name : (indirect string, offset: 0x3ad5): _size_t + <4e70> DW_AT_decl_file : 3 + <4e71> DW_AT_decl_line : 93 + <4e72> DW_AT_decl_column : 28 + <4e73> DW_AT_type : <0x4e58> + <1><4e77>: Abbrev Number: 2 (DW_TAG_base_type) + <4e78> DW_AT_byte_size : 8 + <4e79> DW_AT_encoding : 7 (unsigned) + <4e7a> DW_AT_name : (indirect string, offset: 0x38ac): long long unsigned int + <1><4e7e>: Abbrev Number: 3 (DW_TAG_typedef) + <4e7f> DW_AT_name : (indirect string, offset: 0x3848): uint8_t + <4e83> DW_AT_decl_file : 4 + <4e84> DW_AT_decl_line : 166 + <4e85> DW_AT_decl_column : 29 + <4e86> DW_AT_type : <0x4dfe> + <1><4e8a>: Abbrev Number: 3 (DW_TAG_typedef) + <4e8b> DW_AT_name : (indirect string, offset: 0x3a13): int16_t + <4e8f> DW_AT_decl_file : 4 + <4e90> DW_AT_decl_line : 168 + <4e91> DW_AT_decl_column : 29 + <4e92> DW_AT_type : <0x4e11> + <1><4e96>: Abbrev Number: 5 (DW_TAG_volatile_type) + <4e97> DW_AT_type : <0x4e8a> + <1><4e9b>: Abbrev Number: 3 (DW_TAG_typedef) + <4e9c> DW_AT_name : (indirect string, offset: 0x398f): uint16_t + <4ea0> DW_AT_decl_file : 4 + <4ea1> DW_AT_decl_line : 169 + <4ea2> DW_AT_decl_column : 29 + <4ea3> DW_AT_type : <0x4e24> + <1><4ea7>: Abbrev Number: 3 (DW_TAG_typedef) + <4ea8> DW_AT_name : (indirect string, offset: 0x39f8): int32_t + <4eac> DW_AT_decl_file : 4 + <4ead> DW_AT_decl_line : 176 + <4eae> DW_AT_decl_column : 29 + <4eaf> DW_AT_type : <0x4e37> + <1><4eb3>: Abbrev Number: 3 (DW_TAG_typedef) + <4eb4> DW_AT_name : (indirect string, offset: 0x3a96): uintptr_t + <4eb8> DW_AT_decl_file : 4 + <4eb9> DW_AT_decl_line : 239 + <4eba> DW_AT_decl_column : 29 + <4ebb> DW_AT_type : <0x4e6b> + <1><4ebf>: Abbrev Number: 3 (DW_TAG_typedef) + <4ec0> DW_AT_name : (indirect string, offset: 0x3726): size_t + <4ec4> DW_AT_decl_file : 5 + <4ec5> DW_AT_decl_line : 133 + <4ec6> DW_AT_decl_column : 22 + <4ec7> DW_AT_type : <0x4e6b> + <1><4ecb>: Abbrev Number: 3 (DW_TAG_typedef) + <4ecc> DW_AT_name : (indirect string, offset: 0x3779): ssize_t + <4ed0> DW_AT_decl_file : 5 + <4ed1> DW_AT_decl_line : 134 + <4ed2> DW_AT_decl_column : 22 + <4ed3> DW_AT_type : <0x4e5f> + <1><4ed7>: Abbrev Number: 3 (DW_TAG_typedef) + <4ed8> DW_AT_name : (indirect string, offset: 0x3a90): pid_t + <4edc> DW_AT_decl_file : 5 + <4edd> DW_AT_decl_line : 162 + <4ede> DW_AT_decl_column : 22 + <4edf> DW_AT_type : <0x4e43> + <1><4ee3>: Abbrev Number: 3 (DW_TAG_typedef) + <4ee4> DW_AT_name : (indirect string, offset: 0x3aaa): off_t + <4ee8> DW_AT_decl_file : 5 + <4ee9> DW_AT_decl_line : 229 + <4eea> DW_AT_decl_column : 22 + <4eeb> DW_AT_type : <0x4ea7> + <1><4eef>: Abbrev Number: 6 (DW_TAG_pointer_type) + <4ef0> DW_AT_byte_size : 8 + <1><4ef1>: Abbrev Number: 7 (DW_TAG_pointer_type) + <4ef2> DW_AT_byte_size : 8 + <4ef3> DW_AT_type : <0x4ef7> + <1><4ef7>: Abbrev Number: 2 (DW_TAG_base_type) + <4ef8> DW_AT_byte_size : 1 + <4ef9> DW_AT_encoding : 8 (unsigned char) + <4efa> DW_AT_name : (indirect string, offset: 0x39e2): char + <1><4efe>: Abbrev Number: 8 (DW_TAG_const_type) + <4eff> DW_AT_type : <0x4ef7> + <1><4f03>: Abbrev Number: 7 (DW_TAG_pointer_type) + <4f04> DW_AT_byte_size : 8 + <4f05> DW_AT_type : <0x4ef1> + <1><4f09>: Abbrev Number: 9 (DW_TAG_enumeration_type) + <4f0a> DW_AT_encoding : 5 (signed) + <4f0b> DW_AT_byte_size : 4 + <4f0c> DW_AT_type : <0x4e43> + <4f10> DW_AT_decl_file : 5 + <4f11> DW_AT_decl_line : 321 + <4f13> DW_AT_decl_column : 1 + <4f14> DW_AT_sibling : <0x4f24> + <2><4f18>: Abbrev Number: 10 (DW_TAG_enumerator) + <4f19> DW_AT_name : (indirect string, offset: 0x3913): ERROR + <4f1d> DW_AT_const_value : -1 + <2><4f1e>: Abbrev Number: 11 (DW_TAG_enumerator) + <4f1f> DW_AT_name : OK + <4f22> DW_AT_const_value : 0 + <2><4f23>: Abbrev Number: 0 + <1><4f24>: Abbrev Number: 2 (DW_TAG_base_type) + <4f25> DW_AT_byte_size : 8 + <4f26> DW_AT_encoding : 5 (signed) + <4f27> DW_AT_name : (indirect string, offset: 0x389e): long long int + <1><4f2b>: Abbrev Number: 2 (DW_TAG_base_type) + <4f2c> DW_AT_byte_size : 16 + <4f2d> DW_AT_encoding : 4 (float) + <4f2e> DW_AT_name : (indirect string, offset: 0x392a): long double + <1><4f32>: Abbrev Number: 7 (DW_TAG_pointer_type) + <4f33> DW_AT_byte_size : 8 + <4f34> DW_AT_type : <0x4efe> + <1><4f38>: Abbrev Number: 12 (DW_TAG_structure_type) + <4f39> DW_AT_name : (indirect string, offset: 0x391f): dq_entry_s + <4f3d> DW_AT_byte_size : 16 + <4f3e> DW_AT_decl_file : 6 + <4f3f> DW_AT_decl_line : 303 + <4f41> DW_AT_decl_column : 8 + <4f42> DW_AT_sibling : <0x4f63> + <2><4f46>: Abbrev Number: 13 (DW_TAG_member) + <4f47> DW_AT_name : (indirect string, offset: 0x3919): flink + <4f4b> DW_AT_decl_file : 6 + <4f4c> DW_AT_decl_line : 305 + <4f4e> DW_AT_decl_column : 26 + <4f4f> DW_AT_type : <0x4f63> + <4f53> DW_AT_data_member_location: 0 + <2><4f54>: Abbrev Number: 13 (DW_TAG_member) + <4f55> DW_AT_name : (indirect string, offset: 0x3866): blink + <4f59> DW_AT_decl_file : 6 + <4f5a> DW_AT_decl_line : 306 + <4f5c> DW_AT_decl_column : 26 + <4f5d> DW_AT_type : <0x4f63> + <4f61> DW_AT_data_member_location: 8 + <2><4f62>: Abbrev Number: 0 + <1><4f63>: Abbrev Number: 7 (DW_TAG_pointer_type) + <4f64> DW_AT_byte_size : 8 + <4f65> DW_AT_type : <0x4f38> + <1><4f69>: Abbrev Number: 14 (DW_TAG_typedef) + <4f6a> DW_AT_name : (indirect string, offset: 0x3a29): dq_entry_t + <4f6e> DW_AT_decl_file : 6 + <4f6f> DW_AT_decl_line : 308 + <4f71> DW_AT_decl_column : 27 + <4f72> DW_AT_type : <0x4f38> + <1><4f76>: Abbrev Number: 12 (DW_TAG_structure_type) + <4f77> DW_AT_name : (indirect string, offset: 0x3b2e): dq_queue_s + <4f7b> DW_AT_byte_size : 16 + <4f7c> DW_AT_decl_file : 6 + <4f7d> DW_AT_decl_line : 317 + <4f7f> DW_AT_decl_column : 8 + <4f80> DW_AT_sibling : <0x4fa1> + <2><4f84>: Abbrev Number: 13 (DW_TAG_member) + <4f85> DW_AT_name : (indirect string, offset: 0x3843): head + <4f89> DW_AT_decl_file : 6 + <4f8a> DW_AT_decl_line : 319 + <4f8c> DW_AT_decl_column : 19 + <4f8d> DW_AT_type : <0x4fa1> + <4f91> DW_AT_data_member_location: 0 + <2><4f92>: Abbrev Number: 13 (DW_TAG_member) + <4f93> DW_AT_name : (indirect string, offset: 0x398a): tail + <4f97> DW_AT_decl_file : 6 + <4f98> DW_AT_decl_line : 320 + <4f9a> DW_AT_decl_column : 19 + <4f9b> DW_AT_type : <0x4fa1> + <4f9f> DW_AT_data_member_location: 8 + <2><4fa0>: Abbrev Number: 0 + <1><4fa1>: Abbrev Number: 7 (DW_TAG_pointer_type) + <4fa2> DW_AT_byte_size : 8 + <4fa3> DW_AT_type : <0x4f69> + <1><4fa7>: Abbrev Number: 14 (DW_TAG_typedef) + <4fa8> DW_AT_name : (indirect string, offset: 0x3aea): dq_queue_t + <4fac> DW_AT_decl_file : 6 + <4fad> DW_AT_decl_line : 322 + <4faf> DW_AT_decl_column : 27 + <4fb0> DW_AT_type : <0x4f76> + <1><4fb4>: Abbrev Number: 15 (DW_TAG_structure_type) + <4fb5> DW_AT_name : (indirect string, offset: 0x386c): sem_s + <4fb9> DW_AT_byte_size : 24 + <4fba> DW_AT_decl_file : 7 + <4fbb> DW_AT_decl_line : 99 + <4fbc> DW_AT_decl_column : 8 + <4fbd> DW_AT_sibling : <0x4fe9> + <2><4fc1>: Abbrev Number: 16 (DW_TAG_member) + <4fc2> DW_AT_name : (indirect string, offset: 0x3969): semcount + <4fc6> DW_AT_decl_file : 7 + <4fc7> DW_AT_decl_line : 101 + <4fc8> DW_AT_decl_column : 20 + <4fc9> DW_AT_type : <0x4e96> + <4fcd> DW_AT_data_member_location: 0 + <2><4fce>: Abbrev Number: 16 (DW_TAG_member) + <4fcf> DW_AT_name : (indirect string, offset: 0x3984): flags + <4fd3> DW_AT_decl_file : 7 + <4fd4> DW_AT_decl_line : 108 + <4fd5> DW_AT_decl_column : 11 + <4fd6> DW_AT_type : <0x4e7e> + <4fda> DW_AT_data_member_location: 2 + <2><4fdb>: Abbrev Number: 16 (DW_TAG_member) + <4fdc> DW_AT_name : (indirect string, offset: 0x3750): waitlist + <4fe0> DW_AT_decl_file : 7 + <4fe1> DW_AT_decl_line : 110 + <4fe2> DW_AT_decl_column : 14 + <4fe3> DW_AT_type : <0x4fa7> + <4fe7> DW_AT_data_member_location: 8 + <2><4fe8>: Abbrev Number: 0 + <1><4fe9>: Abbrev Number: 3 (DW_TAG_typedef) + <4fea> DW_AT_name : (indirect string, offset: 0x3872): sem_t + <4fee> DW_AT_decl_file : 7 + <4fef> DW_AT_decl_line : 121 + <4ff0> DW_AT_decl_column : 22 + <4ff1> DW_AT_type : <0x4fb4> + <1><4ff5>: Abbrev Number: 2 (DW_TAG_base_type) + <4ff6> DW_AT_byte_size : 1 + <4ff7> DW_AT_encoding : 2 (boolean) + <4ff8> DW_AT_name : (indirect string, offset: 0x3a1b): _Bool + <1><4ffc>: Abbrev Number: 15 (DW_TAG_structure_type) + <4ffd> DW_AT_name : (indirect string, offset: 0x39e7): mutex_s + <5001> DW_AT_byte_size : 32 + <5002> DW_AT_decl_file : 8 + <5003> DW_AT_decl_line : 46 + <5004> DW_AT_decl_column : 8 + <5005> DW_AT_sibling : <0x5024> + <2><5009>: Abbrev Number: 17 (DW_TAG_member) + <500a> DW_AT_name : sem + <500e> DW_AT_decl_file : 8 + <500f> DW_AT_decl_line : 48 + <5010> DW_AT_decl_column : 9 + <5011> DW_AT_type : <0x4fe9> + <5015> DW_AT_data_member_location: 0 + <2><5016>: Abbrev Number: 16 (DW_TAG_member) + <5017> DW_AT_name : (indirect string, offset: 0x38c3): holder + <501b> DW_AT_decl_file : 8 + <501c> DW_AT_decl_line : 49 + <501d> DW_AT_decl_column : 9 + <501e> DW_AT_type : <0x4ed7> + <5022> DW_AT_data_member_location: 24 + <2><5023>: Abbrev Number: 0 + <1><5024>: Abbrev Number: 3 (DW_TAG_typedef) + <5025> DW_AT_name : (indirect string, offset: 0x38e1): mutex_t + <5029> DW_AT_decl_file : 8 + <502a> DW_AT_decl_line : 52 + <502b> DW_AT_decl_column : 24 + <502c> DW_AT_type : <0x4ffc> + <1><5030>: Abbrev Number: 15 (DW_TAG_structure_type) + <5031> DW_AT_name : (indirect string, offset: 0x397b): rmutex_s + <5035> DW_AT_byte_size : 40 + <5036> DW_AT_decl_file : 8 + <5037> DW_AT_decl_line : 54 + <5038> DW_AT_decl_column : 8 + <5039> DW_AT_sibling : <0x5058> + <2><503d>: Abbrev Number: 16 (DW_TAG_member) + <503e> DW_AT_name : (indirect string, offset: 0x39c2): mutex + <5042> DW_AT_decl_file : 8 + <5043> DW_AT_decl_line : 56 + <5044> DW_AT_decl_column : 11 + <5045> DW_AT_type : <0x5024> + <5049> DW_AT_data_member_location: 0 + <2><504a>: Abbrev Number: 16 (DW_TAG_member) + <504b> DW_AT_name : (indirect string, offset: 0x3ab0): count + <504f> DW_AT_decl_file : 8 + <5050> DW_AT_decl_line : 57 + <5051> DW_AT_decl_column : 16 + <5052> DW_AT_type : <0x4e4a> + <5056> DW_AT_data_member_location: 32 + <2><5057>: Abbrev Number: 0 + <1><5058>: Abbrev Number: 3 (DW_TAG_typedef) + <5059> DW_AT_name : (indirect string, offset: 0x3b41): rmutex_t + <505d> DW_AT_decl_file : 8 + <505e> DW_AT_decl_line : 60 + <505f> DW_AT_decl_column : 25 + <5060> DW_AT_type : <0x5030> + <1><5064>: Abbrev Number: 14 (DW_TAG_typedef) + <5065> DW_AT_name : (indirect string, offset: 0x38ca): cookie_read_function_t + <5069> DW_AT_decl_file : 9 + <506a> DW_AT_decl_line : 441 + <506c> DW_AT_decl_column : 22 + <506d> DW_AT_type : <0x5071> + <1><5071>: Abbrev Number: 18 (DW_TAG_subroutine_type) + <5072> DW_AT_prototyped : 1 + <5072> DW_AT_type : <0x4ecb> + <5076> DW_AT_sibling : <0x508a> + <2><507a>: Abbrev Number: 19 (DW_TAG_formal_parameter) + <507b> DW_AT_type : <0x4eef> + <2><507f>: Abbrev Number: 19 (DW_TAG_formal_parameter) + <5080> DW_AT_type : <0x4ef1> + <2><5084>: Abbrev Number: 19 (DW_TAG_formal_parameter) + <5085> DW_AT_type : <0x4ebf> + <2><5089>: Abbrev Number: 0 + <1><508a>: Abbrev Number: 14 (DW_TAG_typedef) + <508b> DW_AT_name : (indirect string, offset: 0x3738): cookie_write_function_t + <508f> DW_AT_decl_file : 9 + <5090> DW_AT_decl_line : 443 + <5092> DW_AT_decl_column : 22 + <5093> DW_AT_type : <0x5097> + <1><5097>: Abbrev Number: 18 (DW_TAG_subroutine_type) + <5098> DW_AT_prototyped : 1 + <5098> DW_AT_type : <0x4ecb> + <509c> DW_AT_sibling : <0x50b0> + <2><50a0>: Abbrev Number: 19 (DW_TAG_formal_parameter) + <50a1> DW_AT_type : <0x4eef> + <2><50a5>: Abbrev Number: 19 (DW_TAG_formal_parameter) + <50a6> DW_AT_type : <0x4f32> + <2><50aa>: Abbrev Number: 19 (DW_TAG_formal_parameter) + <50ab> DW_AT_type : <0x4ebf> + <2><50af>: Abbrev Number: 0 + <1><50b0>: Abbrev Number: 14 (DW_TAG_typedef) + <50b1> DW_AT_name : (indirect string, offset: 0x3a4a): cookie_seek_function_t + <50b5> DW_AT_decl_file : 9 + <50b6> DW_AT_decl_line : 446 + <50b8> DW_AT_decl_column : 20 + <50b9> DW_AT_type : <0x50bd> + <1><50bd>: Abbrev Number: 18 (DW_TAG_subroutine_type) + <50be> DW_AT_prototyped : 1 + <50be> DW_AT_type : <0x4ee3> + <50c2> DW_AT_sibling : <0x50d6> + <2><50c6>: Abbrev Number: 19 (DW_TAG_formal_parameter) + <50c7> DW_AT_type : <0x4eef> + <2><50cb>: Abbrev Number: 19 (DW_TAG_formal_parameter) + <50cc> DW_AT_type : <0x50d6> + <2><50d0>: Abbrev Number: 19 (DW_TAG_formal_parameter) + <50d1> DW_AT_type : <0x4e43> + <2><50d5>: Abbrev Number: 0 + <1><50d6>: Abbrev Number: 7 (DW_TAG_pointer_type) + <50d7> DW_AT_byte_size : 8 + <50d8> DW_AT_type : <0x4ee3> + <1><50dc>: Abbrev Number: 14 (DW_TAG_typedef) + <50dd> DW_AT_name : (indirect string, offset: 0x3761): cookie_close_function_t + <50e1> DW_AT_decl_file : 9 + <50e2> DW_AT_decl_line : 449 + <50e4> DW_AT_decl_column : 18 + <50e5> DW_AT_type : <0x50e9> + <1><50e9>: Abbrev Number: 18 (DW_TAG_subroutine_type) + <50ea> DW_AT_prototyped : 1 + <50ea> DW_AT_type : <0x4e43> + <50ee> DW_AT_sibling : <0x50f8> + <2><50f2>: Abbrev Number: 19 (DW_TAG_formal_parameter) + <50f3> DW_AT_type : <0x4eef> + <2><50f7>: Abbrev Number: 0 + <1><50f8>: Abbrev Number: 12 (DW_TAG_structure_type) + <50f9> DW_AT_name : (indirect string, offset: 0x3850): cookie_io_functions_t + <50fd> DW_AT_byte_size : 32 + <50fe> DW_AT_decl_file : 9 + <50ff> DW_AT_decl_line : 451 + <5101> DW_AT_decl_column : 16 + <5102> DW_AT_sibling : <0x513f> + <2><5106>: Abbrev Number: 13 (DW_TAG_member) + <5107> DW_AT_name : (indirect string, offset: 0x3899): read + <510b> DW_AT_decl_file : 9 + <510c> DW_AT_decl_line : 453 + <510e> DW_AT_decl_column : 31 + <510f> DW_AT_type : <0x513f> + <5113> DW_AT_data_member_location: 0 + <2><5114>: Abbrev Number: 13 (DW_TAG_member) + <5115> DW_AT_name : (indirect string, offset: 0x36f4): write + <5119> DW_AT_decl_file : 9 + <511a> DW_AT_decl_line : 454 + <511c> DW_AT_decl_column : 32 + <511d> DW_AT_type : <0x5145> + <5121> DW_AT_data_member_location: 8 + <2><5122>: Abbrev Number: 13 (DW_TAG_member) + <5123> DW_AT_name : (indirect string, offset: 0x3add): seek + <5127> DW_AT_decl_file : 9 + <5128> DW_AT_decl_line : 455 + <512a> DW_AT_decl_column : 31 + <512b> DW_AT_type : <0x514b> + <512f> DW_AT_data_member_location: 16 + <2><5130>: Abbrev Number: 13 (DW_TAG_member) + <5131> DW_AT_name : (indirect string, offset: 0x36d9): close + <5135> DW_AT_decl_file : 9 + <5136> DW_AT_decl_line : 456 + <5138> DW_AT_decl_column : 32 + <5139> DW_AT_type : <0x5151> + <513d> DW_AT_data_member_location: 24 + <2><513e>: Abbrev Number: 0 + <1><513f>: Abbrev Number: 7 (DW_TAG_pointer_type) + <5140> DW_AT_byte_size : 8 + <5141> DW_AT_type : <0x5064> + <1><5145>: Abbrev Number: 7 (DW_TAG_pointer_type) + <5146> DW_AT_byte_size : 8 + <5147> DW_AT_type : <0x508a> + <1><514b>: Abbrev Number: 7 (DW_TAG_pointer_type) + <514c> DW_AT_byte_size : 8 + <514d> DW_AT_type : <0x50b0> + <1><5151>: Abbrev Number: 7 (DW_TAG_pointer_type) + <5152> DW_AT_byte_size : 8 + <5153> DW_AT_type : <0x50dc> + <1><5157>: Abbrev Number: 14 (DW_TAG_typedef) + <5158> DW_AT_name : (indirect string, offset: 0x3850): cookie_io_functions_t + <515c> DW_AT_decl_file : 9 + <515d> DW_AT_decl_line : 457 + <515f> DW_AT_decl_column : 3 + <5160> DW_AT_type : <0x50f8> + <1><5164>: Abbrev Number: 12 (DW_TAG_structure_type) + <5165> DW_AT_name : (indirect string, offset: 0x3a3e): file_struct + <5169> DW_AT_byte_size : 192 + <516a> DW_AT_decl_file : 9 + <516b> DW_AT_decl_line : 526 + <516d> DW_AT_decl_column : 8 + <516e> DW_AT_sibling : <0x5229> + <2><5172>: Abbrev Number: 13 (DW_TAG_member) + <5173> DW_AT_name : (indirect string, offset: 0x3a21): fs_next + <5177> DW_AT_decl_file : 9 + <5178> DW_AT_decl_line : 528 + <517a> DW_AT_decl_column : 27 + <517b> DW_AT_type : <0x5229> + <517f> DW_AT_data_member_location: 0 + <2><5180>: Abbrev Number: 13 (DW_TAG_member) + <5181> DW_AT_name : (indirect string, offset: 0x3ae2): fs_lock + <5185> DW_AT_decl_file : 9 + <5186> DW_AT_decl_line : 529 + <5188> DW_AT_decl_column : 27 + <5189> DW_AT_type : <0x5058> + <518d> DW_AT_data_member_location: 8 + <2><518e>: Abbrev Number: 13 (DW_TAG_member) + <518f> DW_AT_name : (indirect string, offset: 0x3a34): fs_iofunc + <5193> DW_AT_decl_file : 9 + <5194> DW_AT_decl_line : 530 + <5196> DW_AT_decl_column : 27 + <5197> DW_AT_type : <0x5157> + <519b> DW_AT_data_member_location: 48 + <2><519c>: Abbrev Number: 13 (DW_TAG_member) + <519d> DW_AT_name : (indirect string, offset: 0x3aa0): fs_cookie + <51a1> DW_AT_decl_file : 9 + <51a2> DW_AT_decl_line : 531 + <51a4> DW_AT_decl_column : 27 + <51a5> DW_AT_type : <0x4eef> + <51a9> DW_AT_data_member_location: 80 + <2><51aa>: Abbrev Number: 13 (DW_TAG_member) + <51ab> DW_AT_name : (indirect string, offset: 0x3af5): fs_bufstart + <51af> DW_AT_decl_file : 9 + <51b0> DW_AT_decl_line : 533 + <51b2> DW_AT_decl_column : 27 + <51b3> DW_AT_type : <0x4ef1> + <51b7> DW_AT_data_member_location: 88 + <2><51b8>: Abbrev Number: 13 (DW_TAG_member) + <51b9> DW_AT_name : (indirect string, offset: 0x3839): fs_bufend + <51bd> DW_AT_decl_file : 9 + <51be> DW_AT_decl_line : 534 + <51c0> DW_AT_decl_column : 27 + <51c1> DW_AT_type : <0x4ef1> + <51c5> DW_AT_data_member_location: 96 + <2><51c6>: Abbrev Number: 13 (DW_TAG_member) + <51c7> DW_AT_name : (indirect string, offset: 0x3883): fs_bufpos + <51cb> DW_AT_decl_file : 9 + <51cc> DW_AT_decl_line : 535 + <51ce> DW_AT_decl_column : 27 + <51cf> DW_AT_type : <0x4ef1> + <51d3> DW_AT_data_member_location: 104 + <2><51d4>: Abbrev Number: 13 (DW_TAG_member) + <51d5> DW_AT_name : (indirect string, offset: 0x3878): fs_bufread + <51d9> DW_AT_decl_file : 9 + <51da> DW_AT_decl_line : 536 + <51dc> DW_AT_decl_column : 27 + <51dd> DW_AT_type : <0x4ef1> + <51e1> DW_AT_data_member_location: 112 + <2><51e2>: Abbrev Number: 13 (DW_TAG_member) + <51e3> DW_AT_name : (indirect string, offset: 0x3a61): fs_buffer + <51e7> DW_AT_decl_file : 9 + <51e8> DW_AT_decl_line : 538 + <51ea> DW_AT_decl_column : 27 + <51eb> DW_AT_type : <0x522f> + <51ef> DW_AT_data_member_location: 120 + <2><51f0>: Abbrev Number: 13 (DW_TAG_member) + <51f1> DW_AT_name : (indirect string, offset: 0x39b3): fs_oflags + <51f5> DW_AT_decl_file : 9 + <51f6> DW_AT_decl_line : 541 + <51f8> DW_AT_decl_column : 27 + <51f9> DW_AT_type : <0x4e9b> + <51fd> DW_AT_data_member_location: 184 + <2><51fe>: Abbrev Number: 13 (DW_TAG_member) + <51ff> DW_AT_name : (indirect string, offset: 0x3b25): fs_flags + <5203> DW_AT_decl_file : 9 + <5204> DW_AT_decl_line : 542 + <5206> DW_AT_decl_column : 27 + <5207> DW_AT_type : <0x4e7e> + <520b> DW_AT_data_member_location: 186 + <2><520c>: Abbrev Number: 13 (DW_TAG_member) + <520d> DW_AT_name : (indirect string, offset: 0x3b0b): fs_nungotten + <5211> DW_AT_decl_file : 9 + <5212> DW_AT_decl_line : 544 + <5214> DW_AT_decl_column : 27 + <5215> DW_AT_type : <0x4e7e> + <5219> DW_AT_data_member_location: 187 + <2><521a>: Abbrev Number: 13 (DW_TAG_member) + <521b> DW_AT_name : (indirect string, offset: 0x36fa): fs_ungotten + <521f> DW_AT_decl_file : 9 + <5220> DW_AT_decl_line : 545 + <5222> DW_AT_decl_column : 27 + <5223> DW_AT_type : <0x523f> + <5227> DW_AT_data_member_location: 188 + <2><5228>: Abbrev Number: 0 + <1><5229>: Abbrev Number: 7 (DW_TAG_pointer_type) + <522a> DW_AT_byte_size : 8 + <522b> DW_AT_type : <0x5164> + <1><522f>: Abbrev Number: 20 (DW_TAG_array_type) + <5230> DW_AT_type : <0x4ef7> + <5234> DW_AT_sibling : <0x523f> + <2><5238>: Abbrev Number: 21 (DW_TAG_subrange_type) + <5239> DW_AT_type : <0x4e58> + <523d> DW_AT_upper_bound : 63 + <2><523e>: Abbrev Number: 0 + <1><523f>: Abbrev Number: 20 (DW_TAG_array_type) + <5240> DW_AT_type : <0x4ef7> + <5244> DW_AT_sibling : <0x524f> + <2><5248>: Abbrev Number: 21 (DW_TAG_subrange_type) + <5249> DW_AT_type : <0x4e58> + <524d> DW_AT_upper_bound : 1 + <2><524e>: Abbrev Number: 0 + <1><524f>: Abbrev Number: 22 (DW_TAG_structure_type) + <5250> DW_AT_name : (indirect string, offset: 0x372d): streamlist + <5254> DW_AT_byte_size : 624 + <5256> DW_AT_decl_file : 9 + <5257> DW_AT_decl_line : 549 + <5259> DW_AT_decl_column : 8 + <525a> DW_AT_sibling : <0x5299> + <2><525e>: Abbrev Number: 13 (DW_TAG_member) + <525f> DW_AT_name : (indirect string, offset: 0x393f): sl_lock + <5263> DW_AT_decl_file : 9 + <5264> DW_AT_decl_line : 551 + <5266> DW_AT_decl_column : 27 + <5267> DW_AT_type : <0x5024> + <526b> DW_AT_data_member_location: 0 + <2><526c>: Abbrev Number: 13 (DW_TAG_member) + <526d> DW_AT_name : (indirect string, offset: 0x3715): sl_std + <5271> DW_AT_decl_file : 9 + <5272> DW_AT_decl_line : 552 + <5274> DW_AT_decl_column : 27 + <5275> DW_AT_type : <0x5299> + <5279> DW_AT_data_member_location: 32 + <2><527a>: Abbrev Number: 23 (DW_TAG_member) + <527b> DW_AT_name : (indirect string, offset: 0x36ec): sl_head + <527f> DW_AT_decl_file : 9 + <5280> DW_AT_decl_line : 553 + <5282> DW_AT_decl_column : 27 + <5283> DW_AT_type : <0x5229> + <5287> DW_AT_data_member_location: 608 + <2><5289>: Abbrev Number: 23 (DW_TAG_member) + <528a> DW_AT_name : (indirect string, offset: 0x38e9): sl_tail + <528e> DW_AT_decl_file : 9 + <528f> DW_AT_decl_line : 554 + <5291> DW_AT_decl_column : 27 + <5292> DW_AT_type : <0x5229> + <5296> DW_AT_data_member_location: 616 + <2><5298>: Abbrev Number: 0 + <1><5299>: Abbrev Number: 20 (DW_TAG_array_type) + <529a> DW_AT_type : <0x5164> + <529e> DW_AT_sibling : <0x52a9> + <2><52a2>: Abbrev Number: 21 (DW_TAG_subrange_type) + <52a3> DW_AT_type : <0x4e58> + <52a7> DW_AT_upper_bound : 2 + <2><52a8>: Abbrev Number: 0 + <1><52a9>: Abbrev Number: 7 (DW_TAG_pointer_type) + <52aa> DW_AT_byte_size : 8 + <52ab> DW_AT_type : <0x4e43> + <1><52af>: Abbrev Number: 24 (DW_TAG_structure_type) + <52b0> DW_AT_name : (indirect string, offset: 0x39c8): task_info_s + <52b4> DW_AT_byte_size : 664 + <52b6> DW_AT_decl_file : 10 + <52b7> DW_AT_decl_line : 116 + <52b8> DW_AT_decl_column : 8 + <52b9> DW_AT_sibling : <0x52e5> + <2><52bd>: Abbrev Number: 16 (DW_TAG_member) + <52be> DW_AT_name : (indirect string, offset: 0x3781): ta_lock + <52c2> DW_AT_decl_file : 10 + <52c3> DW_AT_decl_line : 118 + <52c4> DW_AT_decl_column : 19 + <52c5> DW_AT_type : <0x5024> + <52c9> DW_AT_data_member_location: 0 + <2><52ca>: Abbrev Number: 16 (DW_TAG_member) + <52cb> DW_AT_name : (indirect string, offset: 0x39bd): argv + <52cf> DW_AT_decl_file : 10 + <52d0> DW_AT_decl_line : 119 + <52d1> DW_AT_decl_column : 19 + <52d2> DW_AT_type : <0x4f03> + <52d6> DW_AT_data_member_location: 32 + <2><52d7>: Abbrev Number: 16 (DW_TAG_member) + <52d8> DW_AT_name : (indirect string, offset: 0x39d4): ta_streamlist + <52dc> DW_AT_decl_file : 10 + <52dd> DW_AT_decl_line : 137 + <52de> DW_AT_decl_column : 21 + <52df> DW_AT_type : <0x524f> + <52e3> DW_AT_data_member_location: 40 + <2><52e4>: Abbrev Number: 0 + <1><52e5>: Abbrev Number: 7 (DW_TAG_pointer_type) + <52e6> DW_AT_byte_size : 8 + <52e7> DW_AT_type : <0x52af> + <1><52eb>: Abbrev Number: 15 (DW_TAG_structure_type) + <52ec> DW_AT_name : (indirect string, offset: 0x395e): tls_info_s + <52f0> DW_AT_byte_size : 16 + <52f1> DW_AT_decl_file : 10 + <52f2> DW_AT_decl_line : 191 + <52f3> DW_AT_decl_column : 8 + <52f4> DW_AT_sibling : <0x5320> + <2><52f8>: Abbrev Number: 16 (DW_TAG_member) + <52f9> DW_AT_name : (indirect string, offset: 0x3759): tl_task + <52fd> DW_AT_decl_file : 10 + <52fe> DW_AT_decl_line : 193 + <52ff> DW_AT_decl_column : 28 + <5300> DW_AT_type : <0x52e5> + <5304> DW_AT_data_member_location: 0 + <2><5305>: Abbrev Number: 16 (DW_TAG_member) + <5306> DW_AT_name : (indirect string, offset: 0x3aca): tl_cpstate + <530a> DW_AT_decl_file : 10 + <530b> DW_AT_decl_line : 209 + <530c> DW_AT_decl_column : 11 + <530d> DW_AT_type : <0x4e7e> + <5311> DW_AT_data_member_location: 8 + <2><5312>: Abbrev Number: 16 (DW_TAG_member) + <5313> DW_AT_name : (indirect string, offset: 0x3998): tl_errno + <5317> DW_AT_decl_file : 10 + <5318> DW_AT_decl_line : 215 + <5319> DW_AT_decl_column : 7 + <531a> DW_AT_type : <0x4e43> + <531e> DW_AT_data_member_location: 12 + <2><531f>: Abbrev Number: 0 + <1><5320>: Abbrev Number: 25 (DW_TAG_subprogram) + <5321> DW_AT_external : 1 + <5321> DW_AT_name : (indirect string, offset: 0x3ab6): task_setcancelstate + <5325> DW_AT_decl_file : 13 + <5326> DW_AT_decl_line : 232 + <5327> DW_AT_decl_column : 8 + <5328> DW_AT_prototyped : 1 + <5328> DW_AT_type : <0x4e43> + <532c> DW_AT_low_pc : 0x9f6 + <5334> DW_AT_high_pc : 0x6c + <533c> DW_AT_frame_base : 1 byte block: 9c (DW_OP_call_frame_cfa) + <533e> DW_AT_GNU_all_call_sites: 1 + <533e> DW_AT_sibling : <0x53cc> + <2><5342>: Abbrev Number: 26 (DW_TAG_formal_parameter) + <5343> DW_AT_name : (indirect string, offset: 0x370f): state + <5347> DW_AT_decl_file : 1 + <5348> DW_AT_decl_line : 63 + <5349> DW_AT_decl_column : 29 + <534a> DW_AT_type : <0x4e43> + <534e> DW_AT_location : 0x2013 (location list) + <2><5352>: Abbrev Number: 26 (DW_TAG_formal_parameter) + <5353> DW_AT_name : (indirect string, offset: 0x3a6b): oldstate + <5357> DW_AT_decl_file : 1 + <5358> DW_AT_decl_line : 63 + <5359> DW_AT_decl_column : 45 + <535a> DW_AT_type : <0x52a9> + <535e> DW_AT_location : 0x209e (location list) + <2><5362>: Abbrev Number: 27 (DW_TAG_variable) + <5363> DW_AT_name : tls + <5367> DW_AT_decl_file : 1 + <5368> DW_AT_decl_line : 65 + <5369> DW_AT_decl_column : 26 + <536a> DW_AT_type : <0x53cc> + <536e> DW_AT_location : 0x2129 (location list) + <2><5372>: Abbrev Number: 27 (DW_TAG_variable) + <5373> DW_AT_name : ret + <5377> DW_AT_decl_file : 1 + <5378> DW_AT_decl_line : 66 + <5379> DW_AT_decl_column : 7 + <537a> DW_AT_type : <0x4e43> + <537e> DW_AT_location : 0x2172 (location list) + <2><5382>: Abbrev Number: 28 (DW_TAG_inlined_subroutine) + <5383> DW_AT_abstract_origin: <0x53d2> + <5387> DW_AT_entry_pc : 0x9f6 + <538f> DW_AT_ranges : 0x530 + <5393> DW_AT_call_file : 1 + <5394> DW_AT_call_line : 65 + <5395> DW_AT_call_column : 32 + <5396> DW_AT_sibling : <0x53a6> + <3><539a>: Abbrev Number: 29 (DW_TAG_lexical_block) + <539b> DW_AT_ranges : 0x530 + <4><539f>: Abbrev Number: 30 (DW_TAG_variable) + <53a0> DW_AT_abstract_origin: <0x53e4> + <4><53a4>: Abbrev Number: 0 + <3><53a5>: Abbrev Number: 0 + <2><53a6>: Abbrev Number: 31 (DW_TAG_GNU_call_site) + <53a7> DW_AT_low_pc : 0xa32 + <53af> DW_AT_abstract_origin: <0x53f1> + <53b3> DW_AT_sibling : <0x53be> + <3><53b7>: Abbrev Number: 32 (DW_TAG_GNU_call_site_parameter) + <53b8> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <53ba> DW_AT_GNU_call_site_value: 2 byte block: 9 ff (DW_OP_const1s: -1) + <3><53bd>: Abbrev Number: 0 + <2><53be>: Abbrev Number: 33 (DW_TAG_GNU_call_site) + <53bf> DW_AT_low_pc : 0xa5a + <53c7> DW_AT_abstract_origin: <0x53fe> + <2><53cb>: Abbrev Number: 0 + <1><53cc>: Abbrev Number: 7 (DW_TAG_pointer_type) + <53cd> DW_AT_byte_size : 8 + <53ce> DW_AT_type : <0x52eb> + <1><53d2>: Abbrev Number: 34 (DW_TAG_subprogram) + <53d3> DW_AT_name : (indirect string, offset: 0x3972): up_getsp + <53d7> DW_AT_decl_file : 2 + <53d8> DW_AT_decl_line : 598 + <53da> DW_AT_decl_column : 25 + <53db> DW_AT_prototyped : 1 + <53db> DW_AT_type : <0x4eb3> + <53df> DW_AT_inline : 3 (declared as inline and inlined) + <53e0> DW_AT_sibling : <0x53f1> + <2><53e4>: Abbrev Number: 35 (DW_TAG_variable) + <53e5> DW_AT_name : sp + <53e8> DW_AT_decl_file : 2 + <53e9> DW_AT_decl_line : 600 + <53eb> DW_AT_decl_column : 22 + <53ec> DW_AT_type : <0x4eb3> + <2><53f0>: Abbrev Number: 0 + <1><53f1>: Abbrev Number: 36 (DW_TAG_subprogram) + <53f2> DW_AT_external : 1 + <53f2> DW_AT_declaration : 1 + <53f2> DW_AT_linkage_name: (indirect string, offset: 0x36df): pthread_exit + <53f6> DW_AT_name : (indirect string, offset: 0x36df): pthread_exit + <53fa> DW_AT_decl_file : 11 + <53fb> DW_AT_decl_line : 537 + <53fd> DW_AT_decl_column : 6 + <1><53fe>: Abbrev Number: 36 (DW_TAG_subprogram) + <53ff> DW_AT_external : 1 + <53ff> DW_AT_declaration : 1 + <53ff> DW_AT_linkage_name: (indirect string, offset: 0x3b39): __errno + <5403> DW_AT_name : (indirect string, offset: 0x3b39): __errno + <5407> DW_AT_decl_file : 12 + <5408> DW_AT_decl_line : 364 + <540a> DW_AT_decl_column : 10 + <1><540b>: Abbrev Number: 0 + Compilation Unit @ offset 0x540c: + Length: 0x2ed (32-bit) + Version: 4 + Abbrev Offset: 0x193d + Pointer Size: 8 + <0><5417>: Abbrev Number: 1 (DW_TAG_compile_unit) + <5418> DW_AT_producer : (indirect string, offset: 0x3ba4): GNU C17 10.2.0 -mcmodel=medany -march=rv64imafdc -mabi=lp64d -march=rv64imafdc -g -Os -fno-common -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections + <541c> DW_AT_language : 12 (ANSI C99) + <541d> DW_AT_name : (indirect string, offset: 0x3b53): semaphore/sem_init.c + <5421> DW_AT_comp_dir : (indirect string, offset: 0x3d41): /Users/Luppy/ox64/nuttx/libs/libc + <5425> DW_AT_ranges : 0x5c0 + <5429> DW_AT_low_pc : 0x0 + <5431> DW_AT_stmt_list : 0x3163 + <1><5435>: Abbrev Number: 2 (DW_TAG_base_type) + <5436> DW_AT_byte_size : 1 + <5437> DW_AT_encoding : 6 (signed char) + <5438> DW_AT_name : (indirect string, offset: 0x3c9e): signed char + <1><543c>: Abbrev Number: 3 (DW_TAG_typedef) + <543d> DW_AT_name : (indirect string, offset: 0x3b77): _uint8_t + <5441> DW_AT_decl_file : 2 + <5442> DW_AT_decl_line : 52 + <5443> DW_AT_decl_column : 28 + <5444> DW_AT_type : <0x5448> + <1><5448>: Abbrev Number: 2 (DW_TAG_base_type) + <5449> DW_AT_byte_size : 1 + <544a> DW_AT_encoding : 8 (unsigned char) + <544b> DW_AT_name : (indirect string, offset: 0x3c87): unsigned char + <1><544f>: Abbrev Number: 3 (DW_TAG_typedef) + <5450> DW_AT_name : (indirect string, offset: 0x3c95): _int16_t + <5454> DW_AT_decl_file : 2 + <5455> DW_AT_decl_line : 54 + <5456> DW_AT_decl_column : 28 + <5457> DW_AT_type : <0x545b> + <1><545b>: Abbrev Number: 2 (DW_TAG_base_type) + <545c> DW_AT_byte_size : 2 + <545d> DW_AT_encoding : 5 (signed) + <545e> DW_AT_name : (indirect string, offset: 0x3b8b): short int + <1><5462>: Abbrev Number: 2 (DW_TAG_base_type) + <5463> DW_AT_byte_size : 2 + <5464> DW_AT_encoding : 7 (unsigned) + <5465> DW_AT_name : (indirect string, offset: 0x3ce0): short unsigned int + <1><5469>: Abbrev Number: 4 (DW_TAG_base_type) + <546a> DW_AT_byte_size : 4 + <546b> DW_AT_encoding : 5 (signed) + <546c> DW_AT_name : int + <1><5470>: Abbrev Number: 2 (DW_TAG_base_type) + <5471> DW_AT_byte_size : 4 + <5472> DW_AT_encoding : 7 (unsigned) + <5473> DW_AT_name : (indirect string, offset: 0x3cd3): unsigned int + <1><5477>: Abbrev Number: 2 (DW_TAG_base_type) + <5478> DW_AT_byte_size : 8 + <5479> DW_AT_encoding : 5 (signed) + <547a> DW_AT_name : (indirect string, offset: 0x3c67): long int + <1><547e>: Abbrev Number: 2 (DW_TAG_base_type) + <547f> DW_AT_byte_size : 8 + <5480> DW_AT_encoding : 7 (unsigned) + <5481> DW_AT_name : (indirect string, offset: 0x3d16): long unsigned int + <1><5485>: Abbrev Number: 2 (DW_TAG_base_type) + <5486> DW_AT_byte_size : 8 + <5487> DW_AT_encoding : 7 (unsigned) + <5488> DW_AT_name : (indirect string, offset: 0x3cb3): long long unsigned int + <1><548c>: Abbrev Number: 3 (DW_TAG_typedef) + <548d> DW_AT_name : (indirect string, offset: 0x3c59): uint8_t + <5491> DW_AT_decl_file : 3 + <5492> DW_AT_decl_line : 166 + <5493> DW_AT_decl_column : 29 + <5494> DW_AT_type : <0x543c> + <1><5498>: Abbrev Number: 3 (DW_TAG_typedef) + <5499> DW_AT_name : (indirect string, offset: 0x3cf8): int16_t + <549d> DW_AT_decl_file : 3 + <549e> DW_AT_decl_line : 168 + <549f> DW_AT_decl_column : 29 + <54a0> DW_AT_type : <0x544f> + <1><54a4>: Abbrev Number: 5 (DW_TAG_volatile_type) + <54a5> DW_AT_type : <0x5498> + <1><54a9>: Abbrev Number: 2 (DW_TAG_base_type) + <54aa> DW_AT_byte_size : 1 + <54ab> DW_AT_encoding : 8 (unsigned char) + <54ac> DW_AT_name : (indirect string, offset: 0x3cf3): char + <1><54b0>: Abbrev Number: 6 (DW_TAG_enumeration_type) + <54b1> DW_AT_encoding : 5 (signed) + <54b2> DW_AT_byte_size : 4 + <54b3> DW_AT_type : <0x5469> + <54b7> DW_AT_decl_file : 8 + <54b8> DW_AT_decl_line : 321 + <54ba> DW_AT_decl_column : 1 + <54bb> DW_AT_sibling : <0x54cb> + <2><54bf>: Abbrev Number: 7 (DW_TAG_enumerator) + <54c0> DW_AT_name : (indirect string, offset: 0x3c70): ERROR + <54c4> DW_AT_const_value : -1 + <2><54c5>: Abbrev Number: 8 (DW_TAG_enumerator) + <54c6> DW_AT_name : OK + <54c9> DW_AT_const_value : 0 + <2><54ca>: Abbrev Number: 0 + <1><54cb>: Abbrev Number: 9 (DW_TAG_structure_type) + <54cc> DW_AT_name : (indirect string, offset: 0x3d00): dq_entry_s + <54d0> DW_AT_byte_size : 16 + <54d1> DW_AT_decl_file : 4 + <54d2> DW_AT_decl_line : 303 + <54d4> DW_AT_decl_column : 8 + <54d5> DW_AT_sibling : <0x54f6> + <2><54d9>: Abbrev Number: 10 (DW_TAG_member) + <54da> DW_AT_name : (indirect string, offset: 0x3c76): flink + <54de> DW_AT_decl_file : 4 + <54df> DW_AT_decl_line : 305 + <54e1> DW_AT_decl_column : 26 + <54e2> DW_AT_type : <0x54f6> + <54e6> DW_AT_data_member_location: 0 + <2><54e7>: Abbrev Number: 10 (DW_TAG_member) + <54e8> DW_AT_name : (indirect string, offset: 0x3b68): blink + <54ec> DW_AT_decl_file : 4 + <54ed> DW_AT_decl_line : 306 + <54ef> DW_AT_decl_column : 26 + <54f0> DW_AT_type : <0x54f6> + <54f4> DW_AT_data_member_location: 8 + <2><54f5>: Abbrev Number: 0 + <1><54f6>: Abbrev Number: 11 (DW_TAG_pointer_type) + <54f7> DW_AT_byte_size : 8 + <54f8> DW_AT_type : <0x54cb> + <1><54fc>: Abbrev Number: 12 (DW_TAG_typedef) + <54fd> DW_AT_name : (indirect string, offset: 0x3d0b): dq_entry_t + <5501> DW_AT_decl_file : 4 + <5502> DW_AT_decl_line : 308 + <5504> DW_AT_decl_column : 27 + <5505> DW_AT_type : <0x54cb> + <1><5509>: Abbrev Number: 9 (DW_TAG_structure_type) + <550a> DW_AT_name : (indirect string, offset: 0x3d30): dq_queue_s + <550e> DW_AT_byte_size : 16 + <550f> DW_AT_decl_file : 4 + <5510> DW_AT_decl_line : 317 + <5512> DW_AT_decl_column : 8 + <5513> DW_AT_sibling : <0x5534> + <2><5517>: Abbrev Number: 10 (DW_TAG_member) + <5518> DW_AT_name : (indirect string, offset: 0x3c54): head + <551c> DW_AT_decl_file : 4 + <551d> DW_AT_decl_line : 319 + <551f> DW_AT_decl_column : 19 + <5520> DW_AT_type : <0x5534> + <5524> DW_AT_data_member_location: 0 + <2><5525>: Abbrev Number: 10 (DW_TAG_member) + <5526> DW_AT_name : (indirect string, offset: 0x3c82): tail + <552a> DW_AT_decl_file : 4 + <552b> DW_AT_decl_line : 320 + <552d> DW_AT_decl_column : 19 + <552e> DW_AT_type : <0x5534> + <5532> DW_AT_data_member_location: 8 + <2><5533>: Abbrev Number: 0 + <1><5534>: Abbrev Number: 11 (DW_TAG_pointer_type) + <5535> DW_AT_byte_size : 8 + <5536> DW_AT_type : <0x54fc> + <1><553a>: Abbrev Number: 12 (DW_TAG_typedef) + <553b> DW_AT_name : (indirect string, offset: 0x3d63): dq_queue_t + <553f> DW_AT_decl_file : 4 + <5540> DW_AT_decl_line : 322 + <5542> DW_AT_decl_column : 27 + <5543> DW_AT_type : <0x5509> + <1><5547>: Abbrev Number: 13 (DW_TAG_structure_type) + <5548> DW_AT_name : (indirect string, offset: 0x3c61): sem_s + <554c> DW_AT_byte_size : 24 + <554d> DW_AT_decl_file : 5 + <554e> DW_AT_decl_line : 99 + <554f> DW_AT_decl_column : 8 + <5550> DW_AT_sibling : <0x557c> + <2><5554>: Abbrev Number: 14 (DW_TAG_member) + <5555> DW_AT_name : (indirect string, offset: 0x3caa): semcount + <5559> DW_AT_decl_file : 5 + <555a> DW_AT_decl_line : 101 + <555b> DW_AT_decl_column : 20 + <555c> DW_AT_type : <0x54a4> + <5560> DW_AT_data_member_location: 0 + <2><5561>: Abbrev Number: 14 (DW_TAG_member) + <5562> DW_AT_name : (indirect string, offset: 0x3c7c): flags + <5566> DW_AT_decl_file : 5 + <5567> DW_AT_decl_line : 108 + <5568> DW_AT_decl_column : 11 + <5569> DW_AT_type : <0x548c> + <556d> DW_AT_data_member_location: 2 + <2><556e>: Abbrev Number: 14 (DW_TAG_member) + <556f> DW_AT_name : (indirect string, offset: 0x3b9b): waitlist + <5573> DW_AT_decl_file : 5 + <5574> DW_AT_decl_line : 110 + <5575> DW_AT_decl_column : 14 + <5576> DW_AT_type : <0x553a> + <557a> DW_AT_data_member_location: 8 + <2><557b>: Abbrev Number: 0 + <1><557c>: Abbrev Number: 3 (DW_TAG_typedef) + <557d> DW_AT_name : (indirect string, offset: 0x3b95): sem_t + <5581> DW_AT_decl_file : 5 + <5582> DW_AT_decl_line : 121 + <5583> DW_AT_decl_column : 22 + <5584> DW_AT_type : <0x5547> + <1><5588>: Abbrev Number: 15 (DW_TAG_subprogram) + <5589> DW_AT_external : 1 + <5589> DW_AT_name : (indirect string, offset: 0x3b6e): sem_init + <558d> DW_AT_decl_file : 5 + <558e> DW_AT_decl_line : 164 + <558f> DW_AT_decl_column : 12 + <5590> DW_AT_prototyped : 1 + <5590> DW_AT_type : <0x5469> + <5594> DW_AT_low_pc : 0xaa6 + <559c> DW_AT_high_pc : 0x44 + <55a4> DW_AT_frame_base : 1 byte block: 9c (DW_OP_call_frame_cfa) + <55a6> DW_AT_GNU_all_call_sites: 1 + <55a6> DW_AT_sibling : <0x5612> + <2><55aa>: Abbrev Number: 16 (DW_TAG_formal_parameter) + <55ab> DW_AT_name : sem + <55af> DW_AT_decl_file : 1 + <55b0> DW_AT_decl_line : 115 + <55b1> DW_AT_decl_column : 25 + <55b2> DW_AT_type : <0x5612> + <55b6> DW_AT_location : 0x21d2 (location list) + <2><55ba>: Abbrev Number: 17 (DW_TAG_formal_parameter) + <55bb> DW_AT_name : (indirect string, offset: 0x3d28): pshared + <55bf> DW_AT_decl_file : 1 + <55c0> DW_AT_decl_line : 115 + <55c1> DW_AT_decl_column : 34 + <55c2> DW_AT_type : <0x5469> + <55c6> DW_AT_location : 0x2234 (location list) + <2><55ca>: Abbrev Number: 17 (DW_TAG_formal_parameter) + <55cb> DW_AT_name : (indirect string, offset: 0x3d3b): value + <55cf> DW_AT_decl_file : 1 + <55d0> DW_AT_decl_line : 115 + <55d1> DW_AT_decl_column : 56 + <55d2> DW_AT_type : <0x5470> + <55d6> DW_AT_location : 0x2296 (location list) + <2><55da>: Abbrev Number: 18 (DW_TAG_variable) + <55db> DW_AT_name : ret + <55df> DW_AT_decl_file : 1 + <55e0> DW_AT_decl_line : 117 + <55e1> DW_AT_decl_column : 7 + <55e2> DW_AT_type : <0x5469> + <55e6> DW_AT_location : 0x22f8 (location list) + <2><55ea>: Abbrev Number: 19 (DW_TAG_GNU_call_site) + <55eb> DW_AT_low_pc : 0xabc + <55f3> DW_AT_abstract_origin: <0x56e3> + <2><55f7>: Abbrev Number: 19 (DW_TAG_GNU_call_site) + <55f8> DW_AT_low_pc : 0xad4 + <5600> DW_AT_abstract_origin: <0x5618> + <2><5604>: Abbrev Number: 19 (DW_TAG_GNU_call_site) + <5605> DW_AT_low_pc : 0xae2 + <560d> DW_AT_abstract_origin: <0x56e3> + <2><5611>: Abbrev Number: 0 + <1><5612>: Abbrev Number: 11 (DW_TAG_pointer_type) + <5613> DW_AT_byte_size : 8 + <5614> DW_AT_type : <0x557c> + <1><5618>: Abbrev Number: 20 (DW_TAG_subprogram) + <5619> DW_AT_external : 1 + <5619> DW_AT_name : (indirect string, offset: 0x3b80): nxsem_init + <561d> DW_AT_decl_file : 9 + <561e> DW_AT_decl_line : 125 + <561f> DW_AT_decl_column : 5 + <5620> DW_AT_prototyped : 1 + <5620> DW_AT_type : <0x5469> + <5624> DW_AT_inline : 1 (inlined) + <5625> DW_AT_sibling : <0x564e> + <2><5629>: Abbrev Number: 21 (DW_TAG_formal_parameter) + <562a> DW_AT_name : sem + <562e> DW_AT_decl_file : 1 + <562f> DW_AT_decl_line : 63 + <5630> DW_AT_decl_column : 27 + <5631> DW_AT_type : <0x5612> + <2><5635>: Abbrev Number: 22 (DW_TAG_formal_parameter) + <5636> DW_AT_name : (indirect string, offset: 0x3d28): pshared + <563a> DW_AT_decl_file : 1 + <563b> DW_AT_decl_line : 63 + <563c> DW_AT_decl_column : 36 + <563d> DW_AT_type : <0x5469> + <2><5641>: Abbrev Number: 22 (DW_TAG_formal_parameter) + <5642> DW_AT_name : (indirect string, offset: 0x3d3b): value + <5646> DW_AT_decl_file : 1 + <5647> DW_AT_decl_line : 63 + <5648> DW_AT_decl_column : 58 + <5649> DW_AT_type : <0x5470> + <2><564d>: Abbrev Number: 0 + <1><564e>: Abbrev Number: 23 (DW_TAG_subprogram) + <564f> DW_AT_abstract_origin: <0x5618> + <5653> DW_AT_low_pc : 0xa62 + <565b> DW_AT_high_pc : 0x44 + <5663> DW_AT_frame_base : 1 byte block: 9c (DW_OP_call_frame_cfa) + <5665> DW_AT_GNU_all_call_sites: 1 + <5665> DW_AT_sibling : <0x56e3> + <2><5669>: Abbrev Number: 24 (DW_TAG_formal_parameter) + <566a> DW_AT_abstract_origin: <0x5629> + <566e> DW_AT_location : 0x2330 (location list) + <2><5672>: Abbrev Number: 24 (DW_TAG_formal_parameter) + <5673> DW_AT_abstract_origin: <0x5635> + <5677> DW_AT_location : 0x2392 (location list) + <2><567b>: Abbrev Number: 24 (DW_TAG_formal_parameter) + <567c> DW_AT_abstract_origin: <0x5641> + <5680> DW_AT_location : 0x23de (location list) + <2><5684>: Abbrev Number: 25 (DW_TAG_inlined_subroutine) + <5685> DW_AT_abstract_origin: <0x5618> + <5689> DW_AT_entry_pc : 0xa6a + <5691> DW_AT_ranges : 0x580 + <5695> DW_AT_call_file : 9 + <5696> DW_AT_call_line : 125 + <5697> DW_AT_call_column : 5 + <3><5698>: Abbrev Number: 24 (DW_TAG_formal_parameter) + <5699> DW_AT_abstract_origin: <0x5629> + <569d> DW_AT_location : 0x2440 (location list) + <3><56a1>: Abbrev Number: 24 (DW_TAG_formal_parameter) + <56a2> DW_AT_abstract_origin: <0x5635> + <56a6> DW_AT_location : 0x2479 (location list) + <3><56aa>: Abbrev Number: 24 (DW_TAG_formal_parameter) + <56ab> DW_AT_abstract_origin: <0x5641> + <56af> DW_AT_location : 0x249f (location list) + <3><56b3>: Abbrev Number: 26 (DW_TAG_GNU_call_site) + <56b4> DW_AT_low_pc : 0xa8a + <56bc> DW_AT_abstract_origin: <0x56f0> + <4><56c0>: Abbrev Number: 27 (DW_TAG_GNU_call_site_parameter) + <56c1> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <56c3> DW_AT_GNU_call_site_value: 9 byte block: 3 d8 e 0 0 0 0 0 0 (DW_OP_addr: ed8) + <4><56cd>: Abbrev Number: 27 (DW_TAG_GNU_call_site_parameter) + <56ce> DW_AT_location : 1 byte block: 5b (DW_OP_reg11 (a1)) + <56d0> DW_AT_GNU_call_site_value: 2 byte block: 8 43 (DW_OP_const1u: 67) + <4><56d3>: Abbrev Number: 27 (DW_TAG_GNU_call_site_parameter) + <56d4> DW_AT_location : 1 byte block: 5c (DW_OP_reg12 (a2)) + <56d6> DW_AT_GNU_call_site_value: 9 byte block: 3 b0 e 0 0 0 0 0 0 (DW_OP_addr: eb0) + <4><56e0>: Abbrev Number: 0 + <3><56e1>: Abbrev Number: 0 + <2><56e2>: Abbrev Number: 0 + <1><56e3>: Abbrev Number: 28 (DW_TAG_subprogram) + <56e4> DW_AT_external : 1 + <56e4> DW_AT_declaration : 1 + <56e4> DW_AT_linkage_name: (indirect string, offset: 0x3d6e): __errno + <56e8> DW_AT_name : (indirect string, offset: 0x3d6e): __errno + <56ec> DW_AT_decl_file : 6 + <56ed> DW_AT_decl_line : 364 + <56ef> DW_AT_decl_column : 10 + <1><56f0>: Abbrev Number: 29 (DW_TAG_subprogram) + <56f1> DW_AT_external : 1 + <56f1> DW_AT_declaration : 1 + <56f1> DW_AT_linkage_name: (indirect string, offset: 0x3cca): __assert + <56f5> DW_AT_name : (indirect string, offset: 0x3cca): __assert + <56f9> DW_AT_decl_file : 7 + <56fa> DW_AT_decl_line : 191 + <56fb> DW_AT_decl_column : 6 + <1><56fc>: Abbrev Number: 0 + Compilation Unit @ offset 0x56fd: + Length: 0x2c0 (32-bit) + Version: 4 + Abbrev Offset: 0x1af8 + Pointer Size: 8 + <0><5708>: Abbrev Number: 1 (DW_TAG_compile_unit) + <5709> DW_AT_producer : (indirect string, offset: 0x3d9e): GNU C17 10.2.0 -mcmodel=medany -march=rv64imafdc -mabi=lp64d -march=rv64imafdc -g -Os -fno-common -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections + <570d> DW_AT_language : 12 (ANSI C99) + <570e> DW_AT_name : (indirect string, offset: 0x3f86): semaphore/sem_setprotocol.c + <5712> DW_AT_comp_dir : (indirect string, offset: 0x3f64): /Users/Luppy/ox64/nuttx/libs/libc + <5716> DW_AT_ranges : 0x630 + <571a> DW_AT_low_pc : 0x0 + <5722> DW_AT_stmt_list : 0x341d + <1><5726>: Abbrev Number: 2 (DW_TAG_base_type) + <5727> DW_AT_byte_size : 1 + <5728> DW_AT_encoding : 6 (signed char) + <5729> DW_AT_name : (indirect string, offset: 0x3ec4): signed char + <1><572d>: Abbrev Number: 3 (DW_TAG_typedef) + <572e> DW_AT_name : (indirect string, offset: 0x3d7c): _uint8_t + <5732> DW_AT_decl_file : 2 + <5733> DW_AT_decl_line : 52 + <5734> DW_AT_decl_column : 28 + <5735> DW_AT_type : <0x5739> + <1><5739>: Abbrev Number: 2 (DW_TAG_base_type) + <573a> DW_AT_byte_size : 1 + <573b> DW_AT_encoding : 8 (unsigned char) + <573c> DW_AT_name : (indirect string, offset: 0x3ead): unsigned char + <1><5740>: Abbrev Number: 3 (DW_TAG_typedef) + <5741> DW_AT_name : (indirect string, offset: 0x3ebb): _int16_t + <5745> DW_AT_decl_file : 2 + <5746> DW_AT_decl_line : 54 + <5747> DW_AT_decl_column : 28 + <5748> DW_AT_type : <0x574c> + <1><574c>: Abbrev Number: 2 (DW_TAG_base_type) + <574d> DW_AT_byte_size : 2 + <574e> DW_AT_encoding : 5 (signed) + <574f> DW_AT_name : (indirect string, offset: 0x3d85): short int + <1><5753>: Abbrev Number: 2 (DW_TAG_base_type) + <5754> DW_AT_byte_size : 2 + <5755> DW_AT_encoding : 7 (unsigned) + <5756> DW_AT_name : (indirect string, offset: 0x3f06): short unsigned int + <1><575a>: Abbrev Number: 4 (DW_TAG_base_type) + <575b> DW_AT_byte_size : 4 + <575c> DW_AT_encoding : 5 (signed) + <575d> DW_AT_name : int + <1><5761>: Abbrev Number: 2 (DW_TAG_base_type) + <5762> DW_AT_byte_size : 4 + <5763> DW_AT_encoding : 7 (unsigned) + <5764> DW_AT_name : (indirect string, offset: 0x3ef9): unsigned int + <1><5768>: Abbrev Number: 2 (DW_TAG_base_type) + <5769> DW_AT_byte_size : 8 + <576a> DW_AT_encoding : 5 (signed) + <576b> DW_AT_name : (indirect string, offset: 0x3e6a): long int + <1><576f>: Abbrev Number: 2 (DW_TAG_base_type) + <5770> DW_AT_byte_size : 8 + <5771> DW_AT_encoding : 7 (unsigned) + <5772> DW_AT_name : (indirect string, offset: 0x3f3c): long unsigned int + <1><5776>: Abbrev Number: 2 (DW_TAG_base_type) + <5777> DW_AT_byte_size : 8 + <5778> DW_AT_encoding : 7 (unsigned) + <5779> DW_AT_name : (indirect string, offset: 0x3ed9): long long unsigned int + <1><577d>: Abbrev Number: 3 (DW_TAG_typedef) + <577e> DW_AT_name : (indirect string, offset: 0x3e53): uint8_t + <5782> DW_AT_decl_file : 3 + <5783> DW_AT_decl_line : 166 + <5784> DW_AT_decl_column : 29 + <5785> DW_AT_type : <0x572d> + <1><5789>: Abbrev Number: 3 (DW_TAG_typedef) + <578a> DW_AT_name : (indirect string, offset: 0x3f1e): int16_t + <578e> DW_AT_decl_file : 3 + <578f> DW_AT_decl_line : 168 + <5790> DW_AT_decl_column : 29 + <5791> DW_AT_type : <0x5740> + <1><5795>: Abbrev Number: 5 (DW_TAG_volatile_type) + <5796> DW_AT_type : <0x5789> + <1><579a>: Abbrev Number: 2 (DW_TAG_base_type) + <579b> DW_AT_byte_size : 1 + <579c> DW_AT_encoding : 8 (unsigned char) + <579d> DW_AT_name : (indirect string, offset: 0x3f19): char + <1><57a1>: Abbrev Number: 6 (DW_TAG_enumeration_type) + <57a2> DW_AT_encoding : 5 (signed) + <57a3> DW_AT_byte_size : 4 + <57a4> DW_AT_type : <0x575a> + <57a8> DW_AT_decl_file : 8 + <57a9> DW_AT_decl_line : 321 + <57ab> DW_AT_decl_column : 1 + <57ac> DW_AT_sibling : <0x57bc> + <2><57b0>: Abbrev Number: 7 (DW_TAG_enumerator) + <57b1> DW_AT_name : (indirect string, offset: 0x3e73): ERROR + <57b5> DW_AT_const_value : -1 + <2><57b6>: Abbrev Number: 8 (DW_TAG_enumerator) + <57b7> DW_AT_name : OK + <57ba> DW_AT_const_value : 0 + <2><57bb>: Abbrev Number: 0 + <1><57bc>: Abbrev Number: 9 (DW_TAG_structure_type) + <57bd> DW_AT_name : (indirect string, offset: 0x3f26): dq_entry_s + <57c1> DW_AT_byte_size : 16 + <57c2> DW_AT_decl_file : 4 + <57c3> DW_AT_decl_line : 303 + <57c5> DW_AT_decl_column : 8 + <57c6> DW_AT_sibling : <0x57e7> + <2><57ca>: Abbrev Number: 10 (DW_TAG_member) + <57cb> DW_AT_name : (indirect string, offset: 0x3e79): flink + <57cf> DW_AT_decl_file : 4 + <57d0> DW_AT_decl_line : 305 + <57d2> DW_AT_decl_column : 26 + <57d3> DW_AT_type : <0x57e7> + <57d7> DW_AT_data_member_location: 0 + <2><57d8>: Abbrev Number: 10 (DW_TAG_member) + <57d9> DW_AT_name : (indirect string, offset: 0x3d76): blink + <57dd> DW_AT_decl_file : 4 + <57de> DW_AT_decl_line : 306 + <57e0> DW_AT_decl_column : 26 + <57e1> DW_AT_type : <0x57e7> + <57e5> DW_AT_data_member_location: 8 + <2><57e6>: Abbrev Number: 0 + <1><57e7>: Abbrev Number: 11 (DW_TAG_pointer_type) + <57e8> DW_AT_byte_size : 8 + <57e9> DW_AT_type : <0x57bc> + <1><57ed>: Abbrev Number: 12 (DW_TAG_typedef) + <57ee> DW_AT_name : (indirect string, offset: 0x3f31): dq_entry_t + <57f2> DW_AT_decl_file : 4 + <57f3> DW_AT_decl_line : 308 + <57f5> DW_AT_decl_column : 27 + <57f6> DW_AT_type : <0x57bc> + <1><57fa>: Abbrev Number: 9 (DW_TAG_structure_type) + <57fb> DW_AT_name : (indirect string, offset: 0x3f4e): dq_queue_s + <57ff> DW_AT_byte_size : 16 + <5800> DW_AT_decl_file : 4 + <5801> DW_AT_decl_line : 317 + <5803> DW_AT_decl_column : 8 + <5804> DW_AT_sibling : <0x5825> + <2><5808>: Abbrev Number: 10 (DW_TAG_member) + <5809> DW_AT_name : (indirect string, offset: 0x3e4e): head + <580d> DW_AT_decl_file : 4 + <580e> DW_AT_decl_line : 319 + <5810> DW_AT_decl_column : 19 + <5811> DW_AT_type : <0x5825> + <5815> DW_AT_data_member_location: 0 + <2><5816>: Abbrev Number: 10 (DW_TAG_member) + <5817> DW_AT_name : (indirect string, offset: 0x3e98): tail + <581b> DW_AT_decl_file : 4 + <581c> DW_AT_decl_line : 320 + <581e> DW_AT_decl_column : 19 + <581f> DW_AT_type : <0x5825> + <5823> DW_AT_data_member_location: 8 + <2><5824>: Abbrev Number: 0 + <1><5825>: Abbrev Number: 11 (DW_TAG_pointer_type) + <5826> DW_AT_byte_size : 8 + <5827> DW_AT_type : <0x57ed> + <1><582b>: Abbrev Number: 12 (DW_TAG_typedef) + <582c> DW_AT_name : (indirect string, offset: 0x3f59): dq_queue_t + <5830> DW_AT_decl_file : 4 + <5831> DW_AT_decl_line : 322 + <5833> DW_AT_decl_column : 27 + <5834> DW_AT_type : <0x57fa> + <1><5838>: Abbrev Number: 13 (DW_TAG_structure_type) + <5839> DW_AT_name : (indirect string, offset: 0x3e5b): sem_s + <583d> DW_AT_byte_size : 24 + <583e> DW_AT_decl_file : 5 + <583f> DW_AT_decl_line : 99 + <5840> DW_AT_decl_column : 8 + <5841> DW_AT_sibling : <0x586d> + <2><5845>: Abbrev Number: 14 (DW_TAG_member) + <5846> DW_AT_name : (indirect string, offset: 0x3ed0): semcount + <584a> DW_AT_decl_file : 5 + <584b> DW_AT_decl_line : 101 + <584c> DW_AT_decl_column : 20 + <584d> DW_AT_type : <0x5795> + <5851> DW_AT_data_member_location: 0 + <2><5852>: Abbrev Number: 14 (DW_TAG_member) + <5853> DW_AT_name : (indirect string, offset: 0x3e7f): flags + <5857> DW_AT_decl_file : 5 + <5858> DW_AT_decl_line : 108 + <5859> DW_AT_decl_column : 11 + <585a> DW_AT_type : <0x577d> + <585e> DW_AT_data_member_location: 2 + <2><585f>: Abbrev Number: 14 (DW_TAG_member) + <5860> DW_AT_name : (indirect string, offset: 0x3d95): waitlist + <5864> DW_AT_decl_file : 5 + <5865> DW_AT_decl_line : 110 + <5866> DW_AT_decl_column : 14 + <5867> DW_AT_type : <0x582b> + <586b> DW_AT_data_member_location: 8 + <2><586c>: Abbrev Number: 0 + <1><586d>: Abbrev Number: 3 (DW_TAG_typedef) + <586e> DW_AT_name : (indirect string, offset: 0x3d8f): sem_t + <5872> DW_AT_decl_file : 5 + <5873> DW_AT_decl_line : 121 + <5874> DW_AT_decl_column : 22 + <5875> DW_AT_type : <0x5838> + <1><5879>: Abbrev Number: 15 (DW_TAG_subprogram) + <587a> DW_AT_external : 1 + <587a> DW_AT_name : (indirect string, offset: 0x3e9d): sem_setprotocol + <587e> DW_AT_decl_file : 5 + <587f> DW_AT_decl_line : 217 + <5880> DW_AT_decl_column : 5 + <5881> DW_AT_prototyped : 1 + <5881> DW_AT_type : <0x575a> + <5885> DW_AT_low_pc : 0xb2c + <588d> DW_AT_high_pc : 0x2e + <5895> DW_AT_frame_base : 1 byte block: 9c (DW_OP_call_frame_cfa) + <5897> DW_AT_GNU_all_call_sites: 1 + <5897> DW_AT_sibling : <0x58f2> + <2><589b>: Abbrev Number: 16 (DW_TAG_formal_parameter) + <589c> DW_AT_name : sem + <58a0> DW_AT_decl_file : 1 + <58a1> DW_AT_decl_line : 136 + <58a2> DW_AT_decl_column : 32 + <58a3> DW_AT_type : <0x58f2> + <58a7> DW_AT_location : 0x24c2 (location list) + <2><58ab>: Abbrev Number: 17 (DW_TAG_formal_parameter) + <58ac> DW_AT_name : (indirect string, offset: 0x3e61): protocol + <58b0> DW_AT_decl_file : 1 + <58b1> DW_AT_decl_line : 136 + <58b2> DW_AT_decl_column : 41 + <58b3> DW_AT_type : <0x575a> + <58b7> DW_AT_location : 0x24fb (location list) + <2><58bb>: Abbrev Number: 18 (DW_TAG_variable) + <58bc> DW_AT_name : ret + <58c0> DW_AT_decl_file : 1 + <58c1> DW_AT_decl_line : 138 + <58c2> DW_AT_decl_column : 7 + <58c3> DW_AT_type : <0x575a> + <58c7> DW_AT_location : 0x2534 (location list) + <2><58cb>: Abbrev Number: 19 (DW_TAG_GNU_call_site) + <58cc> DW_AT_low_pc : 0xb3a + <58d4> DW_AT_abstract_origin: <0x58f8> + <58d8> DW_AT_sibling : <0x58e4> + <3><58dc>: Abbrev Number: 20 (DW_TAG_GNU_call_site_parameter) + <58dd> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <58df> DW_AT_GNU_call_site_value: 3 byte block: f3 1 5a (DW_OP_GNU_entry_value: (DW_OP_reg10 (a0))) + <3><58e3>: Abbrev Number: 0 + <2><58e4>: Abbrev Number: 21 (DW_TAG_GNU_call_site) + <58e5> DW_AT_low_pc : 0xb4c + <58ed> DW_AT_abstract_origin: <0x59a7> + <2><58f1>: Abbrev Number: 0 + <1><58f2>: Abbrev Number: 11 (DW_TAG_pointer_type) + <58f3> DW_AT_byte_size : 8 + <58f4> DW_AT_type : <0x586d> + <1><58f8>: Abbrev Number: 22 (DW_TAG_subprogram) + <58f9> DW_AT_external : 1 + <58f9> DW_AT_name : (indirect string, offset: 0x3e85): nxsem_set_protocol + <58fd> DW_AT_decl_file : 9 + <58fe> DW_AT_decl_line : 559 + <5900> DW_AT_decl_column : 5 + <5901> DW_AT_prototyped : 1 + <5901> DW_AT_type : <0x575a> + <5905> DW_AT_inline : 1 (inlined) + <5906> DW_AT_sibling : <0x5923> + <2><590a>: Abbrev Number: 23 (DW_TAG_formal_parameter) + <590b> DW_AT_name : sem + <590f> DW_AT_decl_file : 1 + <5910> DW_AT_decl_line : 76 + <5911> DW_AT_decl_column : 35 + <5912> DW_AT_type : <0x58f2> + <2><5916>: Abbrev Number: 24 (DW_TAG_formal_parameter) + <5917> DW_AT_name : (indirect string, offset: 0x3e61): protocol + <591b> DW_AT_decl_file : 1 + <591c> DW_AT_decl_line : 76 + <591d> DW_AT_decl_column : 44 + <591e> DW_AT_type : <0x575a> + <2><5922>: Abbrev Number: 0 + <1><5923>: Abbrev Number: 25 (DW_TAG_subprogram) + <5924> DW_AT_abstract_origin: <0x58f8> + <5928> DW_AT_low_pc : 0xaea + <5930> DW_AT_high_pc : 0x42 + <5938> DW_AT_frame_base : 1 byte block: 9c (DW_OP_call_frame_cfa) + <593a> DW_AT_GNU_all_call_sites: 1 + <593a> DW_AT_sibling : <0x59a7> + <2><593e>: Abbrev Number: 26 (DW_TAG_formal_parameter) + <593f> DW_AT_abstract_origin: <0x590a> + <5943> DW_AT_location : 0x257f (location list) + <2><5947>: Abbrev Number: 26 (DW_TAG_formal_parameter) + <5948> DW_AT_abstract_origin: <0x5916> + <594c> DW_AT_location : 0x261d (location list) + <2><5950>: Abbrev Number: 27 (DW_TAG_inlined_subroutine) + <5951> DW_AT_abstract_origin: <0x58f8> + <5955> DW_AT_entry_pc : 0xaec + <595d> DW_AT_ranges : 0x5f0 + <5961> DW_AT_call_file : 9 + <5962> DW_AT_call_line : 559 + <5964> DW_AT_call_column : 5 + <3><5965>: Abbrev Number: 26 (DW_TAG_formal_parameter) + <5966> DW_AT_abstract_origin: <0x590a> + <596a> DW_AT_location : 0x2669 (location list) + <3><596e>: Abbrev Number: 26 (DW_TAG_formal_parameter) + <596f> DW_AT_abstract_origin: <0x5916> + <5973> DW_AT_location : 0x268d (location list) + <3><5977>: Abbrev Number: 28 (DW_TAG_GNU_call_site) + <5978> DW_AT_low_pc : 0xb0c + <5980> DW_AT_abstract_origin: <0x59b4> + <4><5984>: Abbrev Number: 20 (DW_TAG_GNU_call_site_parameter) + <5985> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <5987> DW_AT_GNU_call_site_value: 9 byte block: 3 8 f 0 0 0 0 0 0 (DW_OP_addr: f08) + <4><5991>: Abbrev Number: 20 (DW_TAG_GNU_call_site_parameter) + <5992> DW_AT_location : 1 byte block: 5b (DW_OP_reg11 (a1)) + <5994> DW_AT_GNU_call_site_value: 2 byte block: 8 4e (DW_OP_const1u: 78) + <4><5997>: Abbrev Number: 20 (DW_TAG_GNU_call_site_parameter) + <5998> DW_AT_location : 1 byte block: 5c (DW_OP_reg12 (a2)) + <599a> DW_AT_GNU_call_site_value: 9 byte block: 3 f0 e 0 0 0 0 0 0 (DW_OP_addr: ef0) + <4><59a4>: Abbrev Number: 0 + <3><59a5>: Abbrev Number: 0 + <2><59a6>: Abbrev Number: 0 + <1><59a7>: Abbrev Number: 29 (DW_TAG_subprogram) + <59a8> DW_AT_external : 1 + <59a8> DW_AT_declaration : 1 + <59a8> DW_AT_linkage_name: (indirect string, offset: 0x3fa2): __errno + <59ac> DW_AT_name : (indirect string, offset: 0x3fa2): __errno + <59b0> DW_AT_decl_file : 6 + <59b1> DW_AT_decl_line : 364 + <59b3> DW_AT_decl_column : 10 + <1><59b4>: Abbrev Number: 30 (DW_TAG_subprogram) + <59b5> DW_AT_external : 1 + <59b5> DW_AT_declaration : 1 + <59b5> DW_AT_linkage_name: (indirect string, offset: 0x3ef0): __assert + <59b9> DW_AT_name : (indirect string, offset: 0x3ef0): __assert + <59bd> DW_AT_decl_file : 7 + <59be> DW_AT_decl_line : 191 + <59bf> DW_AT_decl_column : 6 + <1><59c0>: Abbrev Number: 0 + Compilation Unit @ offset 0x59c1: + Length: 0x254 (32-bit) + Version: 4 + Abbrev Offset: 0x1cc0 + Pointer Size: 8 + <0><59cc>: Abbrev Number: 1 (DW_TAG_compile_unit) + <59cd> DW_AT_producer : (indirect string, offset: 0x3fd2): GNU C17 10.2.0 -mcmodel=medany -march=rv64imafdc -mabi=lp64d -march=rv64imafdc -g -Os -fno-common -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections + <59d1> DW_AT_language : 12 (ANSI C99) + <59d2> DW_AT_name : (indirect string, offset: 0x40ab): semaphore/sem_getvalue.c + <59d6> DW_AT_comp_dir : (indirect string, offset: 0x4193): /Users/Luppy/ox64/nuttx/libs/libc + <59da> DW_AT_ranges : 0x660 + <59de> DW_AT_low_pc : 0x0 + <59e6> DW_AT_stmt_list : 0x3684 + <1><59ea>: Abbrev Number: 2 (DW_TAG_base_type) + <59eb> DW_AT_byte_size : 1 + <59ec> DW_AT_encoding : 6 (signed char) + <59ed> DW_AT_name : (indirect string, offset: 0x4102): signed char + <1><59f1>: Abbrev Number: 3 (DW_TAG_typedef) + <59f2> DW_AT_name : (indirect string, offset: 0x3fb0): _uint8_t + <59f6> DW_AT_decl_file : 2 + <59f7> DW_AT_decl_line : 52 + <59f8> DW_AT_decl_column : 28 + <59f9> DW_AT_type : <0x59fd> + <1><59fd>: Abbrev Number: 2 (DW_TAG_base_type) + <59fe> DW_AT_byte_size : 1 + <59ff> DW_AT_encoding : 8 (unsigned char) + <5a00> DW_AT_name : (indirect string, offset: 0x40eb): unsigned char + <1><5a04>: Abbrev Number: 3 (DW_TAG_typedef) + <5a05> DW_AT_name : (indirect string, offset: 0x40f9): _int16_t + <5a09> DW_AT_decl_file : 2 + <5a0a> DW_AT_decl_line : 54 + <5a0b> DW_AT_decl_column : 28 + <5a0c> DW_AT_type : <0x5a10> + <1><5a10>: Abbrev Number: 2 (DW_TAG_base_type) + <5a11> DW_AT_byte_size : 2 + <5a12> DW_AT_encoding : 5 (signed) + <5a13> DW_AT_name : (indirect string, offset: 0x3fb9): short int + <1><5a17>: Abbrev Number: 2 (DW_TAG_base_type) + <5a18> DW_AT_byte_size : 2 + <5a19> DW_AT_encoding : 7 (unsigned) + <5a1a> DW_AT_name : (indirect string, offset: 0x413b): short unsigned int + <1><5a1e>: Abbrev Number: 4 (DW_TAG_base_type) + <5a1f> DW_AT_byte_size : 4 + <5a20> DW_AT_encoding : 5 (signed) + <5a21> DW_AT_name : int + <1><5a25>: Abbrev Number: 2 (DW_TAG_base_type) + <5a26> DW_AT_byte_size : 4 + <5a27> DW_AT_encoding : 7 (unsigned) + <5a28> DW_AT_name : (indirect string, offset: 0x412e): unsigned int + <1><5a2c>: Abbrev Number: 2 (DW_TAG_base_type) + <5a2d> DW_AT_byte_size : 8 + <5a2e> DW_AT_encoding : 5 (signed) + <5a2f> DW_AT_name : (indirect string, offset: 0x40a2): long int + <1><5a33>: Abbrev Number: 2 (DW_TAG_base_type) + <5a34> DW_AT_byte_size : 8 + <5a35> DW_AT_encoding : 7 (unsigned) + <5a36> DW_AT_name : (indirect string, offset: 0x4176): long unsigned int + <1><5a3a>: Abbrev Number: 2 (DW_TAG_base_type) + <5a3b> DW_AT_byte_size : 8 + <5a3c> DW_AT_encoding : 7 (unsigned) + <5a3d> DW_AT_name : (indirect string, offset: 0x4117): long long unsigned int + <1><5a41>: Abbrev Number: 3 (DW_TAG_typedef) + <5a42> DW_AT_name : (indirect string, offset: 0x4094): uint8_t + <5a46> DW_AT_decl_file : 3 + <5a47> DW_AT_decl_line : 166 + <5a48> DW_AT_decl_column : 29 + <5a49> DW_AT_type : <0x59f1> + <1><5a4d>: Abbrev Number: 3 (DW_TAG_typedef) + <5a4e> DW_AT_name : (indirect string, offset: 0x4158): int16_t + <5a52> DW_AT_decl_file : 3 + <5a53> DW_AT_decl_line : 168 + <5a54> DW_AT_decl_column : 29 + <5a55> DW_AT_type : <0x5a04> + <1><5a59>: Abbrev Number: 5 (DW_TAG_volatile_type) + <5a5a> DW_AT_type : <0x5a4d> + <1><5a5e>: Abbrev Number: 2 (DW_TAG_base_type) + <5a5f> DW_AT_byte_size : 1 + <5a60> DW_AT_encoding : 8 (unsigned char) + <5a61> DW_AT_name : (indirect string, offset: 0x414e): char + <1><5a65>: Abbrev Number: 6 (DW_TAG_enumeration_type) + <5a66> DW_AT_encoding : 5 (signed) + <5a67> DW_AT_byte_size : 4 + <5a68> DW_AT_type : <0x5a1e> + <5a6c> DW_AT_decl_file : 7 + <5a6d> DW_AT_decl_line : 321 + <5a6f> DW_AT_decl_column : 1 + <5a70> DW_AT_sibling : <0x5a80> + <2><5a74>: Abbrev Number: 7 (DW_TAG_enumerator) + <5a75> DW_AT_name : (indirect string, offset: 0x40c4): ERROR + <5a79> DW_AT_const_value : -1 + <2><5a7a>: Abbrev Number: 8 (DW_TAG_enumerator) + <5a7b> DW_AT_name : OK + <5a7e> DW_AT_const_value : 0 + <2><5a7f>: Abbrev Number: 0 + <1><5a80>: Abbrev Number: 9 (DW_TAG_structure_type) + <5a81> DW_AT_name : (indirect string, offset: 0x4160): dq_entry_s + <5a85> DW_AT_byte_size : 16 + <5a86> DW_AT_decl_file : 4 + <5a87> DW_AT_decl_line : 303 + <5a89> DW_AT_decl_column : 8 + <5a8a> DW_AT_sibling : <0x5aab> + <2><5a8e>: Abbrev Number: 10 (DW_TAG_member) + <5a8f> DW_AT_name : (indirect string, offset: 0x40ca): flink + <5a93> DW_AT_decl_file : 4 + <5a94> DW_AT_decl_line : 305 + <5a96> DW_AT_decl_column : 26 + <5a97> DW_AT_type : <0x5aab> + <5a9b> DW_AT_data_member_location: 0 + <2><5a9c>: Abbrev Number: 10 (DW_TAG_member) + <5a9d> DW_AT_name : (indirect string, offset: 0x3faa): blink + <5aa1> DW_AT_decl_file : 4 + <5aa2> DW_AT_decl_line : 306 + <5aa4> DW_AT_decl_column : 26 + <5aa5> DW_AT_type : <0x5aab> + <5aa9> DW_AT_data_member_location: 8 + <2><5aaa>: Abbrev Number: 0 + <1><5aab>: Abbrev Number: 11 (DW_TAG_pointer_type) + <5aac> DW_AT_byte_size : 8 + <5aad> DW_AT_type : <0x5a80> + <1><5ab1>: Abbrev Number: 12 (DW_TAG_typedef) + <5ab2> DW_AT_name : (indirect string, offset: 0x416b): dq_entry_t + <5ab6> DW_AT_decl_file : 4 + <5ab7> DW_AT_decl_line : 308 + <5ab9> DW_AT_decl_column : 27 + <5aba> DW_AT_type : <0x5a80> + <1><5abe>: Abbrev Number: 9 (DW_TAG_structure_type) + <5abf> DW_AT_name : (indirect string, offset: 0x4188): dq_queue_s + <5ac3> DW_AT_byte_size : 16 + <5ac4> DW_AT_decl_file : 4 + <5ac5> DW_AT_decl_line : 317 + <5ac7> DW_AT_decl_column : 8 + <5ac8> DW_AT_sibling : <0x5ae9> + <2><5acc>: Abbrev Number: 10 (DW_TAG_member) + <5acd> DW_AT_name : (indirect string, offset: 0x408f): head + <5ad1> DW_AT_decl_file : 4 + <5ad2> DW_AT_decl_line : 319 + <5ad4> DW_AT_decl_column : 19 + <5ad5> DW_AT_type : <0x5ae9> + <5ad9> DW_AT_data_member_location: 0 + <2><5ada>: Abbrev Number: 10 (DW_TAG_member) + <5adb> DW_AT_name : (indirect string, offset: 0x40e6): tail + <5adf> DW_AT_decl_file : 4 + <5ae0> DW_AT_decl_line : 320 + <5ae2> DW_AT_decl_column : 19 + <5ae3> DW_AT_type : <0x5ae9> + <5ae7> DW_AT_data_member_location: 8 + <2><5ae8>: Abbrev Number: 0 + <1><5ae9>: Abbrev Number: 11 (DW_TAG_pointer_type) + <5aea> DW_AT_byte_size : 8 + <5aeb> DW_AT_type : <0x5ab1> + <1><5aef>: Abbrev Number: 12 (DW_TAG_typedef) + <5af0> DW_AT_name : (indirect string, offset: 0x41b5): dq_queue_t + <5af4> DW_AT_decl_file : 4 + <5af5> DW_AT_decl_line : 322 + <5af7> DW_AT_decl_column : 27 + <5af8> DW_AT_type : <0x5abe> + <1><5afc>: Abbrev Number: 13 (DW_TAG_structure_type) + <5afd> DW_AT_name : (indirect string, offset: 0x409c): sem_s + <5b01> DW_AT_byte_size : 24 + <5b02> DW_AT_decl_file : 5 + <5b03> DW_AT_decl_line : 99 + <5b04> DW_AT_decl_column : 8 + <5b05> DW_AT_sibling : <0x5b31> + <2><5b09>: Abbrev Number: 14 (DW_TAG_member) + <5b0a> DW_AT_name : (indirect string, offset: 0x410e): semcount + <5b0e> DW_AT_decl_file : 5 + <5b0f> DW_AT_decl_line : 101 + <5b10> DW_AT_decl_column : 20 + <5b11> DW_AT_type : <0x5a59> + <5b15> DW_AT_data_member_location: 0 + <2><5b16>: Abbrev Number: 14 (DW_TAG_member) + <5b17> DW_AT_name : (indirect string, offset: 0x40d0): flags + <5b1b> DW_AT_decl_file : 5 + <5b1c> DW_AT_decl_line : 108 + <5b1d> DW_AT_decl_column : 11 + <5b1e> DW_AT_type : <0x5a41> + <5b22> DW_AT_data_member_location: 2 + <2><5b23>: Abbrev Number: 14 (DW_TAG_member) + <5b24> DW_AT_name : (indirect string, offset: 0x3fc9): waitlist + <5b28> DW_AT_decl_file : 5 + <5b29> DW_AT_decl_line : 110 + <5b2a> DW_AT_decl_column : 14 + <5b2b> DW_AT_type : <0x5aef> + <5b2f> DW_AT_data_member_location: 8 + <2><5b30>: Abbrev Number: 0 + <1><5b31>: Abbrev Number: 3 (DW_TAG_typedef) + <5b32> DW_AT_name : (indirect string, offset: 0x3fc3): sem_t + <5b36> DW_AT_decl_file : 5 + <5b37> DW_AT_decl_line : 121 + <5b38> DW_AT_decl_column : 22 + <5b39> DW_AT_type : <0x5afc> + <1><5b3d>: Abbrev Number: 15 (DW_TAG_subprogram) + <5b3e> DW_AT_external : 1 + <5b3e> DW_AT_name : (indirect string, offset: 0x4082): sem_getvalue + <5b42> DW_AT_decl_file : 5 + <5b43> DW_AT_decl_line : 172 + <5b44> DW_AT_decl_column : 12 + <5b45> DW_AT_prototyped : 1 + <5b45> DW_AT_type : <0x5a1e> + <5b49> DW_AT_low_pc : 0xb76 + <5b51> DW_AT_high_pc : 0x2e + <5b59> DW_AT_frame_base : 1 byte block: 9c (DW_OP_call_frame_cfa) + <5b5b> DW_AT_GNU_all_call_sites: 1 + <5b5b> DW_AT_sibling : <0x5bbd> + <2><5b5f>: Abbrev Number: 16 (DW_TAG_formal_parameter) + <5b60> DW_AT_name : sem + <5b64> DW_AT_decl_file : 1 + <5b65> DW_AT_decl_line : 96 + <5b66> DW_AT_decl_column : 29 + <5b67> DW_AT_type : <0x5bbd> + <5b6b> DW_AT_location : 0x26b0 (location list) + <2><5b6f>: Abbrev Number: 17 (DW_TAG_formal_parameter) + <5b70> DW_AT_name : (indirect string, offset: 0x4153): sval + <5b74> DW_AT_decl_file : 1 + <5b75> DW_AT_decl_line : 96 + <5b76> DW_AT_decl_column : 43 + <5b77> DW_AT_type : <0x5bc3> + <5b7b> DW_AT_location : 0x26e9 (location list) + <2><5b7f>: Abbrev Number: 18 (DW_TAG_variable) + <5b80> DW_AT_name : ret + <5b84> DW_AT_decl_file : 1 + <5b85> DW_AT_decl_line : 98 + <5b86> DW_AT_decl_column : 7 + <5b87> DW_AT_type : <0x5a1e> + <5b8b> DW_AT_location : 0x2722 (location list) + <2><5b8f>: Abbrev Number: 19 (DW_TAG_GNU_call_site) + <5b90> DW_AT_low_pc : 0xb84 + <5b98> DW_AT_abstract_origin: <0x5bc9> + <5b9c> DW_AT_sibling : <0x5baf> + <3><5ba0>: Abbrev Number: 20 (DW_TAG_GNU_call_site_parameter) + <5ba1> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <5ba3> DW_AT_GNU_call_site_value: 3 byte block: f3 1 5a (DW_OP_GNU_entry_value: (DW_OP_reg10 (a0))) + <3><5ba7>: Abbrev Number: 20 (DW_TAG_GNU_call_site_parameter) + <5ba8> DW_AT_location : 1 byte block: 5b (DW_OP_reg11 (a1)) + <5baa> DW_AT_GNU_call_site_value: 3 byte block: f3 1 5b (DW_OP_GNU_entry_value: (DW_OP_reg11 (a1))) + <3><5bae>: Abbrev Number: 0 + <2><5baf>: Abbrev Number: 21 (DW_TAG_GNU_call_site) + <5bb0> DW_AT_low_pc : 0xb96 + <5bb8> DW_AT_abstract_origin: <0x5c0b> + <2><5bbc>: Abbrev Number: 0 + <1><5bbd>: Abbrev Number: 11 (DW_TAG_pointer_type) + <5bbe> DW_AT_byte_size : 8 + <5bbf> DW_AT_type : <0x5b31> + <1><5bc3>: Abbrev Number: 11 (DW_TAG_pointer_type) + <5bc4> DW_AT_byte_size : 8 + <5bc5> DW_AT_type : <0x5a1e> + <1><5bc9>: Abbrev Number: 22 (DW_TAG_subprogram) + <5bca> DW_AT_external : 1 + <5bca> DW_AT_name : (indirect string, offset: 0x40d6): nxsem_get_value + <5bce> DW_AT_decl_file : 6 + <5bcf> DW_AT_decl_line : 385 + <5bd1> DW_AT_decl_column : 5 + <5bd2> DW_AT_prototyped : 1 + <5bd2> DW_AT_type : <0x5a1e> + <5bd6> DW_AT_low_pc : 0xb5a + <5bde> DW_AT_high_pc : 0x1c + <5be6> DW_AT_frame_base : 1 byte block: 9c (DW_OP_call_frame_cfa) + <5be8> DW_AT_GNU_all_call_sites: 1 + <5be8> DW_AT_sibling : <0x5c0b> + <2><5bec>: Abbrev Number: 16 (DW_TAG_formal_parameter) + <5bed> DW_AT_name : sem + <5bf1> DW_AT_decl_file : 1 + <5bf2> DW_AT_decl_line : 61 + <5bf3> DW_AT_decl_column : 32 + <5bf4> DW_AT_type : <0x5bbd> + <5bf8> DW_AT_location : 0x276d (location list) + <2><5bfc>: Abbrev Number: 23 (DW_TAG_formal_parameter) + <5bfd> DW_AT_name : (indirect string, offset: 0x4153): sval + <5c01> DW_AT_decl_file : 1 + <5c02> DW_AT_decl_line : 61 + <5c03> DW_AT_decl_column : 46 + <5c04> DW_AT_type : <0x5bc3> + <5c08> DW_AT_location : 1 byte block: 5b (DW_OP_reg11 (a1)) + <2><5c0a>: Abbrev Number: 0 + <1><5c0b>: Abbrev Number: 24 (DW_TAG_subprogram) + <5c0c> DW_AT_external : 1 + <5c0c> DW_AT_declaration : 1 + <5c0c> DW_AT_linkage_name: (indirect string, offset: 0x41c0): __errno + <5c10> DW_AT_name : (indirect string, offset: 0x41c0): __errno + <5c14> DW_AT_decl_file : 8 + <5c15> DW_AT_decl_line : 364 + <5c17> DW_AT_decl_column : 10 + <1><5c18>: Abbrev Number: 0 + Compilation Unit @ offset 0x5c19: + Length: 0x5b5 (32-bit) + Version: 4 + Abbrev Offset: 0x1e38 + Pointer Size: 8 + <0><5c24>: Abbrev Number: 1 (DW_TAG_compile_unit) + <5c25> DW_AT_producer : (indirect string, offset: 0x4275): GNU C17 10.2.0 -mcmodel=medany -march=rv64imafdc -mabi=lp64d -march=rv64imafdc -g -Os -fno-common -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections + <5c29> DW_AT_language : 12 (ANSI C99) + <5c2a> DW_AT_name : (indirect string, offset: 0x44c4): stdio/lib_fflush.c + <5c2e> DW_AT_comp_dir : (indirect string, offset: 0x43a8): /Users/Luppy/ox64/nuttx/libs/libc + <5c32> DW_AT_ranges : 0x690 + <5c36> DW_AT_low_pc : 0x0 + <5c3e> DW_AT_stmt_list : 0x389f + <1><5c42>: Abbrev Number: 2 (DW_TAG_base_type) + <5c43> DW_AT_byte_size : 1 + <5c44> DW_AT_encoding : 6 (signed char) + <5c45> DW_AT_name : (indirect string, offset: 0x4384): signed char + <1><5c49>: Abbrev Number: 3 (DW_TAG_typedef) + <5c4a> DW_AT_name : (indirect string, offset: 0x41f0): _uint8_t + <5c4e> DW_AT_decl_file : 2 + <5c4f> DW_AT_decl_line : 52 + <5c50> DW_AT_decl_column : 28 + <5c51> DW_AT_type : <0x5c55> + <1><5c55>: Abbrev Number: 2 (DW_TAG_base_type) + <5c56> DW_AT_byte_size : 1 + <5c57> DW_AT_encoding : 8 (unsigned char) + <5c58> DW_AT_name : (indirect string, offset: 0x443b): unsigned char + <1><5c5c>: Abbrev Number: 3 (DW_TAG_typedef) + <5c5d> DW_AT_name : (indirect string, offset: 0x4449): _int16_t + <5c61> DW_AT_decl_file : 2 + <5c62> DW_AT_decl_line : 54 + <5c63> DW_AT_decl_column : 28 + <5c64> DW_AT_type : <0x5c68> + <1><5c68>: Abbrev Number: 2 (DW_TAG_base_type) + <5c69> DW_AT_byte_size : 2 + <5c6a> DW_AT_encoding : 5 (signed) + <5c6b> DW_AT_name : (indirect string, offset: 0x426b): short int + <1><5c6f>: Abbrev Number: 3 (DW_TAG_typedef) + <5c70> DW_AT_name : (indirect string, offset: 0x45a1): _uint16_t + <5c74> DW_AT_decl_file : 2 + <5c75> DW_AT_decl_line : 55 + <5c76> DW_AT_decl_column : 28 + <5c77> DW_AT_type : <0x5c7b> + <1><5c7b>: Abbrev Number: 2 (DW_TAG_base_type) + <5c7c> DW_AT_byte_size : 2 + <5c7d> DW_AT_encoding : 7 (unsigned) + <5c7e> DW_AT_name : (indirect string, offset: 0x44b1): short unsigned int + <1><5c82>: Abbrev Number: 3 (DW_TAG_typedef) + <5c83> DW_AT_name : (indirect string, offset: 0x4432): _int32_t + <5c87> DW_AT_decl_file : 2 + <5c88> DW_AT_decl_line : 58 + <5c89> DW_AT_decl_column : 28 + <5c8a> DW_AT_type : <0x5c8e> + <1><5c8e>: Abbrev Number: 4 (DW_TAG_base_type) + <5c8f> DW_AT_byte_size : 4 + <5c90> DW_AT_encoding : 5 (signed) + <5c91> DW_AT_name : int + <1><5c95>: Abbrev Number: 2 (DW_TAG_base_type) + <5c96> DW_AT_byte_size : 4 + <5c97> DW_AT_encoding : 7 (unsigned) + <5c98> DW_AT_name : (indirect string, offset: 0x45b8): unsigned int + <1><5c9c>: Abbrev Number: 2 (DW_TAG_base_type) + <5c9d> DW_AT_byte_size : 8 + <5c9e> DW_AT_encoding : 5 (signed) + <5c9f> DW_AT_name : (indirect string, offset: 0x44ef): long int + <1><5ca3>: Abbrev Number: 2 (DW_TAG_base_type) + <5ca4> DW_AT_byte_size : 8 + <5ca5> DW_AT_encoding : 7 (unsigned) + <5ca6> DW_AT_name : (indirect string, offset: 0x448f): long unsigned int + <1><5caa>: Abbrev Number: 3 (DW_TAG_typedef) + <5cab> DW_AT_name : (indirect string, offset: 0x45ea): _ssize_t + <5caf> DW_AT_decl_file : 2 + <5cb0> DW_AT_decl_line : 91 + <5cb1> DW_AT_decl_column : 28 + <5cb2> DW_AT_type : <0x5c9c> + <1><5cb6>: Abbrev Number: 3 (DW_TAG_typedef) + <5cb7> DW_AT_name : (indirect string, offset: 0x4575): _size_t + <5cbb> DW_AT_decl_file : 2 + <5cbc> DW_AT_decl_line : 93 + <5cbd> DW_AT_decl_column : 28 + <5cbe> DW_AT_type : <0x5ca3> + <1><5cc2>: Abbrev Number: 2 (DW_TAG_base_type) + <5cc3> DW_AT_byte_size : 8 + <5cc4> DW_AT_encoding : 7 (unsigned) + <5cc5> DW_AT_name : (indirect string, offset: 0x446a): long long unsigned int + <1><5cc9>: Abbrev Number: 3 (DW_TAG_typedef) + <5cca> DW_AT_name : (indirect string, offset: 0x4334): uint8_t + <5cce> DW_AT_decl_file : 3 + <5ccf> DW_AT_decl_line : 166 + <5cd0> DW_AT_decl_column : 29 + <5cd1> DW_AT_type : <0x5c49> + <1><5cd5>: Abbrev Number: 3 (DW_TAG_typedef) + <5cd6> DW_AT_name : (indirect string, offset: 0x4500): int16_t + <5cda> DW_AT_decl_file : 3 + <5cdb> DW_AT_decl_line : 168 + <5cdc> DW_AT_decl_column : 29 + <5cdd> DW_AT_type : <0x5c5c> + <1><5ce1>: Abbrev Number: 5 (DW_TAG_volatile_type) + <5ce2> DW_AT_type : <0x5cd5> + <1><5ce6>: Abbrev Number: 3 (DW_TAG_typedef) + <5ce7> DW_AT_name : (indirect string, offset: 0x4486): uint16_t + <5ceb> DW_AT_decl_file : 3 + <5cec> DW_AT_decl_line : 169 + <5ced> DW_AT_decl_column : 29 + <5cee> DW_AT_type : <0x5c6f> + <1><5cf2>: Abbrev Number: 3 (DW_TAG_typedef) + <5cf3> DW_AT_name : (indirect string, offset: 0x44f8): int32_t + <5cf7> DW_AT_decl_file : 3 + <5cf8> DW_AT_decl_line : 176 + <5cf9> DW_AT_decl_column : 29 + <5cfa> DW_AT_type : <0x5c82> + <1><5cfe>: Abbrev Number: 3 (DW_TAG_typedef) + <5cff> DW_AT_name : (indirect string, offset: 0x420d): size_t + <5d03> DW_AT_decl_file : 4 + <5d04> DW_AT_decl_line : 133 + <5d05> DW_AT_decl_column : 22 + <5d06> DW_AT_type : <0x5cb6> + <1><5d0a>: Abbrev Number: 3 (DW_TAG_typedef) + <5d0b> DW_AT_name : (indirect string, offset: 0x4263): ssize_t + <5d0f> DW_AT_decl_file : 4 + <5d10> DW_AT_decl_line : 134 + <5d11> DW_AT_decl_column : 22 + <5d12> DW_AT_type : <0x5caa> + <1><5d16>: Abbrev Number: 3 (DW_TAG_typedef) + <5d17> DW_AT_name : (indirect string, offset: 0x4559): pid_t + <5d1b> DW_AT_decl_file : 4 + <5d1c> DW_AT_decl_line : 162 + <5d1d> DW_AT_decl_column : 22 + <5d1e> DW_AT_type : <0x5c8e> + <1><5d22>: Abbrev Number: 3 (DW_TAG_typedef) + <5d23> DW_AT_name : (indirect string, offset: 0x4569): off_t + <5d27> DW_AT_decl_file : 4 + <5d28> DW_AT_decl_line : 229 + <5d29> DW_AT_decl_column : 22 + <5d2a> DW_AT_type : <0x5cf2> + <1><5d2e>: Abbrev Number: 6 (DW_TAG_pointer_type) + <5d2f> DW_AT_byte_size : 8 + <1><5d30>: Abbrev Number: 7 (DW_TAG_pointer_type) + <5d31> DW_AT_byte_size : 8 + <5d32> DW_AT_type : <0x5d36> + <1><5d36>: Abbrev Number: 2 (DW_TAG_base_type) + <5d37> DW_AT_byte_size : 1 + <5d38> DW_AT_encoding : 8 (unsigned char) + <5d39> DW_AT_name : (indirect string, offset: 0x43ca): char + <1><5d3d>: Abbrev Number: 8 (DW_TAG_const_type) + <5d3e> DW_AT_type : <0x5d36> + <1><5d42>: Abbrev Number: 9 (DW_TAG_enumeration_type) + <5d43> DW_AT_encoding : 5 (signed) + <5d44> DW_AT_byte_size : 4 + <5d45> DW_AT_type : <0x5c8e> + <5d49> DW_AT_decl_file : 4 + <5d4a> DW_AT_decl_line : 321 + <5d4c> DW_AT_decl_column : 1 + <5d4d> DW_AT_sibling : <0x5d5d> + <2><5d51>: Abbrev Number: 10 (DW_TAG_enumerator) + <5d52> DW_AT_name : (indirect string, offset: 0x4408): ERROR + <5d56> DW_AT_const_value : -1 + <2><5d57>: Abbrev Number: 11 (DW_TAG_enumerator) + <5d58> DW_AT_name : OK + <5d5b> DW_AT_const_value : 0 + <2><5d5c>: Abbrev Number: 0 + <1><5d5d>: Abbrev Number: 7 (DW_TAG_pointer_type) + <5d5e> DW_AT_byte_size : 8 + <5d5f> DW_AT_type : <0x5d3d> + <1><5d63>: Abbrev Number: 12 (DW_TAG_structure_type) + <5d64> DW_AT_name : (indirect string, offset: 0x441b): dq_entry_s + <5d68> DW_AT_byte_size : 16 + <5d69> DW_AT_decl_file : 5 + <5d6a> DW_AT_decl_line : 303 + <5d6c> DW_AT_decl_column : 8 + <5d6d> DW_AT_sibling : <0x5d8e> + <2><5d71>: Abbrev Number: 13 (DW_TAG_member) + <5d72> DW_AT_name : (indirect string, offset: 0x440e): flink + <5d76> DW_AT_decl_file : 5 + <5d77> DW_AT_decl_line : 305 + <5d79> DW_AT_decl_column : 26 + <5d7a> DW_AT_type : <0x5d8e> + <5d7e> DW_AT_data_member_location: 0 + <2><5d7f>: Abbrev Number: 13 (DW_TAG_member) + <5d80> DW_AT_name : (indirect string, offset: 0x435d): blink + <5d84> DW_AT_decl_file : 5 + <5d85> DW_AT_decl_line : 306 + <5d87> DW_AT_decl_column : 26 + <5d88> DW_AT_type : <0x5d8e> + <5d8c> DW_AT_data_member_location: 8 + <2><5d8d>: Abbrev Number: 0 + <1><5d8e>: Abbrev Number: 7 (DW_TAG_pointer_type) + <5d8f> DW_AT_byte_size : 8 + <5d90> DW_AT_type : <0x5d63> + <1><5d94>: Abbrev Number: 14 (DW_TAG_typedef) + <5d95> DW_AT_name : (indirect string, offset: 0x4516): dq_entry_t + <5d99> DW_AT_decl_file : 5 + <5d9a> DW_AT_decl_line : 308 + <5d9c> DW_AT_decl_column : 27 + <5d9d> DW_AT_type : <0x5d63> + <1><5da1>: Abbrev Number: 12 (DW_TAG_structure_type) + <5da2> DW_AT_name : (indirect string, offset: 0x45ce): dq_queue_s + <5da6> DW_AT_byte_size : 16 + <5da7> DW_AT_decl_file : 5 + <5da8> DW_AT_decl_line : 317 + <5daa> DW_AT_decl_column : 8 + <5dab> DW_AT_sibling : <0x5dcc> + <2><5daf>: Abbrev Number: 13 (DW_TAG_member) + <5db0> DW_AT_name : (indirect string, offset: 0x432f): head + <5db4> DW_AT_decl_file : 5 + <5db5> DW_AT_decl_line : 319 + <5db7> DW_AT_decl_column : 19 + <5db8> DW_AT_type : <0x5dcc> + <5dbc> DW_AT_data_member_location: 0 + <2><5dbd>: Abbrev Number: 13 (DW_TAG_member) + <5dbe> DW_AT_name : (indirect string, offset: 0x4481): tail + <5dc2> DW_AT_decl_file : 5 + <5dc3> DW_AT_decl_line : 320 + <5dc5> DW_AT_decl_column : 19 + <5dc6> DW_AT_type : <0x5dcc> + <5dca> DW_AT_data_member_location: 8 + <2><5dcb>: Abbrev Number: 0 + <1><5dcc>: Abbrev Number: 7 (DW_TAG_pointer_type) + <5dcd> DW_AT_byte_size : 8 + <5dce> DW_AT_type : <0x5d94> + <1><5dd2>: Abbrev Number: 14 (DW_TAG_typedef) + <5dd3> DW_AT_name : (indirect string, offset: 0x458a): dq_queue_t + <5dd7> DW_AT_decl_file : 5 + <5dd8> DW_AT_decl_line : 322 + <5dda> DW_AT_decl_column : 27 + <5ddb> DW_AT_type : <0x5da1> + <1><5ddf>: Abbrev Number: 15 (DW_TAG_structure_type) + <5de0> DW_AT_name : (indirect string, offset: 0x4363): sem_s + <5de4> DW_AT_byte_size : 24 + <5de5> DW_AT_decl_file : 6 + <5de6> DW_AT_decl_line : 99 + <5de7> DW_AT_decl_column : 8 + <5de8> DW_AT_sibling : <0x5e14> + <2><5dec>: Abbrev Number: 16 (DW_TAG_member) + <5ded> DW_AT_name : (indirect string, offset: 0x4452): semcount + <5df1> DW_AT_decl_file : 6 + <5df2> DW_AT_decl_line : 101 + <5df3> DW_AT_decl_column : 20 + <5df4> DW_AT_type : <0x5ce1> + <5df8> DW_AT_data_member_location: 0 + <2><5df9>: Abbrev Number: 16 (DW_TAG_member) + <5dfa> DW_AT_name : (indirect string, offset: 0x4464): flags + <5dfe> DW_AT_decl_file : 6 + <5dff> DW_AT_decl_line : 108 + <5e00> DW_AT_decl_column : 11 + <5e01> DW_AT_type : <0x5cc9> + <5e05> DW_AT_data_member_location: 2 + <2><5e06>: Abbrev Number: 16 (DW_TAG_member) + <5e07> DW_AT_name : (indirect string, offset: 0x4242): waitlist + <5e0b> DW_AT_decl_file : 6 + <5e0c> DW_AT_decl_line : 110 + <5e0d> DW_AT_decl_column : 14 + <5e0e> DW_AT_type : <0x5dd2> + <5e12> DW_AT_data_member_location: 8 + <2><5e13>: Abbrev Number: 0 + <1><5e14>: Abbrev Number: 3 (DW_TAG_typedef) + <5e15> DW_AT_name : (indirect string, offset: 0x4369): sem_t + <5e19> DW_AT_decl_file : 6 + <5e1a> DW_AT_decl_line : 121 + <5e1b> DW_AT_decl_column : 22 + <5e1c> DW_AT_type : <0x5ddf> + <1><5e20>: Abbrev Number: 15 (DW_TAG_structure_type) + <5e21> DW_AT_name : (indirect string, offset: 0x44e7): mutex_s + <5e25> DW_AT_byte_size : 32 + <5e26> DW_AT_decl_file : 7 + <5e27> DW_AT_decl_line : 46 + <5e28> DW_AT_decl_column : 8 + <5e29> DW_AT_sibling : <0x5e48> + <2><5e2d>: Abbrev Number: 17 (DW_TAG_member) + <5e2e> DW_AT_name : sem + <5e32> DW_AT_decl_file : 7 + <5e33> DW_AT_decl_line : 48 + <5e34> DW_AT_decl_column : 9 + <5e35> DW_AT_type : <0x5e14> + <5e39> DW_AT_data_member_location: 0 + <2><5e3a>: Abbrev Number: 16 (DW_TAG_member) + <5e3b> DW_AT_name : (indirect string, offset: 0x43cf): holder + <5e3f> DW_AT_decl_file : 7 + <5e40> DW_AT_decl_line : 49 + <5e41> DW_AT_decl_column : 9 + <5e42> DW_AT_type : <0x5d16> + <5e46> DW_AT_data_member_location: 24 + <2><5e47>: Abbrev Number: 0 + <1><5e48>: Abbrev Number: 3 (DW_TAG_typedef) + <5e49> DW_AT_name : (indirect string, offset: 0x43ed): mutex_t + <5e4d> DW_AT_decl_file : 7 + <5e4e> DW_AT_decl_line : 52 + <5e4f> DW_AT_decl_column : 24 + <5e50> DW_AT_type : <0x5e20> + <1><5e54>: Abbrev Number: 15 (DW_TAG_structure_type) + <5e55> DW_AT_name : (indirect string, offset: 0x445b): rmutex_s + <5e59> DW_AT_byte_size : 40 + <5e5a> DW_AT_decl_file : 7 + <5e5b> DW_AT_decl_line : 54 + <5e5c> DW_AT_decl_column : 8 + <5e5d> DW_AT_sibling : <0x5e7c> + <2><5e61>: Abbrev Number: 16 (DW_TAG_member) + <5e62> DW_AT_name : (indirect string, offset: 0x44ab): mutex + <5e66> DW_AT_decl_file : 7 + <5e67> DW_AT_decl_line : 56 + <5e68> DW_AT_decl_column : 11 + <5e69> DW_AT_type : <0x5e48> + <5e6d> DW_AT_data_member_location: 0 + <2><5e6e>: Abbrev Number: 16 (DW_TAG_member) + <5e6f> DW_AT_name : (indirect string, offset: 0x456f): count + <5e73> DW_AT_decl_file : 7 + <5e74> DW_AT_decl_line : 57 + <5e75> DW_AT_decl_column : 16 + <5e76> DW_AT_type : <0x5c95> + <5e7a> DW_AT_data_member_location: 32 + <2><5e7b>: Abbrev Number: 0 + <1><5e7c>: Abbrev Number: 3 (DW_TAG_typedef) + <5e7d> DW_AT_name : (indirect string, offset: 0x45e1): rmutex_t + <5e81> DW_AT_decl_file : 7 + <5e82> DW_AT_decl_line : 60 + <5e83> DW_AT_decl_column : 25 + <5e84> DW_AT_type : <0x5e54> + <1><5e88>: Abbrev Number: 2 (DW_TAG_base_type) + <5e89> DW_AT_byte_size : 8 + <5e8a> DW_AT_encoding : 5 (signed) + <5e8b> DW_AT_name : (indirect string, offset: 0x439a): long long int + <1><5e8f>: Abbrev Number: 2 (DW_TAG_base_type) + <5e90> DW_AT_byte_size : 16 + <5e91> DW_AT_encoding : 4 (float) + <5e92> DW_AT_name : (indirect string, offset: 0x4426): long double + <1><5e96>: Abbrev Number: 2 (DW_TAG_base_type) + <5e97> DW_AT_byte_size : 1 + <5e98> DW_AT_encoding : 2 (boolean) + <5e99> DW_AT_name : (indirect string, offset: 0x4508): _Bool + <1><5e9d>: Abbrev Number: 14 (DW_TAG_typedef) + <5e9e> DW_AT_name : (indirect string, offset: 0x43d6): cookie_read_function_t + <5ea2> DW_AT_decl_file : 8 + <5ea3> DW_AT_decl_line : 441 + <5ea5> DW_AT_decl_column : 22 + <5ea6> DW_AT_type : <0x5eaa> + <1><5eaa>: Abbrev Number: 18 (DW_TAG_subroutine_type) + <5eab> DW_AT_prototyped : 1 + <5eab> DW_AT_type : <0x5d0a> + <5eaf> DW_AT_sibling : <0x5ec3> + <2><5eb3>: Abbrev Number: 19 (DW_TAG_formal_parameter) + <5eb4> DW_AT_type : <0x5d2e> + <2><5eb8>: Abbrev Number: 19 (DW_TAG_formal_parameter) + <5eb9> DW_AT_type : <0x5d30> + <2><5ebd>: Abbrev Number: 19 (DW_TAG_formal_parameter) + <5ebe> DW_AT_type : <0x5cfe> + <2><5ec2>: Abbrev Number: 0 + <1><5ec3>: Abbrev Number: 14 (DW_TAG_typedef) + <5ec4> DW_AT_name : (indirect string, offset: 0x422a): cookie_write_function_t + <5ec8> DW_AT_decl_file : 8 + <5ec9> DW_AT_decl_line : 443 + <5ecb> DW_AT_decl_column : 22 + <5ecc> DW_AT_type : <0x5ed0> + <1><5ed0>: Abbrev Number: 18 (DW_TAG_subroutine_type) + <5ed1> DW_AT_prototyped : 1 + <5ed1> DW_AT_type : <0x5d0a> + <5ed5> DW_AT_sibling : <0x5ee9> + <2><5ed9>: Abbrev Number: 19 (DW_TAG_formal_parameter) + <5eda> DW_AT_type : <0x5d2e> + <2><5ede>: Abbrev Number: 19 (DW_TAG_formal_parameter) + <5edf> DW_AT_type : <0x5d5d> + <2><5ee3>: Abbrev Number: 19 (DW_TAG_formal_parameter) + <5ee4> DW_AT_type : <0x5cfe> + <2><5ee8>: Abbrev Number: 0 + <1><5ee9>: Abbrev Number: 14 (DW_TAG_typedef) + <5eea> DW_AT_name : (indirect string, offset: 0x452b): cookie_seek_function_t + <5eee> DW_AT_decl_file : 8 + <5eef> DW_AT_decl_line : 446 + <5ef1> DW_AT_decl_column : 20 + <5ef2> DW_AT_type : <0x5ef6> + <1><5ef6>: Abbrev Number: 18 (DW_TAG_subroutine_type) + <5ef7> DW_AT_prototyped : 1 + <5ef7> DW_AT_type : <0x5d22> + <5efb> DW_AT_sibling : <0x5f0f> + <2><5eff>: Abbrev Number: 19 (DW_TAG_formal_parameter) + <5f00> DW_AT_type : <0x5d2e> + <2><5f04>: Abbrev Number: 19 (DW_TAG_formal_parameter) + <5f05> DW_AT_type : <0x5f0f> + <2><5f09>: Abbrev Number: 19 (DW_TAG_formal_parameter) + <5f0a> DW_AT_type : <0x5c8e> + <2><5f0e>: Abbrev Number: 0 + <1><5f0f>: Abbrev Number: 7 (DW_TAG_pointer_type) + <5f10> DW_AT_byte_size : 8 + <5f11> DW_AT_type : <0x5d22> + <1><5f15>: Abbrev Number: 14 (DW_TAG_typedef) + <5f16> DW_AT_name : (indirect string, offset: 0x424b): cookie_close_function_t + <5f1a> DW_AT_decl_file : 8 + <5f1b> DW_AT_decl_line : 449 + <5f1d> DW_AT_decl_column : 18 + <5f1e> DW_AT_type : <0x5f22> + <1><5f22>: Abbrev Number: 18 (DW_TAG_subroutine_type) + <5f23> DW_AT_prototyped : 1 + <5f23> DW_AT_type : <0x5c8e> + <5f27> DW_AT_sibling : <0x5f31> + <2><5f2b>: Abbrev Number: 19 (DW_TAG_formal_parameter) + <5f2c> DW_AT_type : <0x5d2e> + <2><5f30>: Abbrev Number: 0 + <1><5f31>: Abbrev Number: 12 (DW_TAG_structure_type) + <5f32> DW_AT_name : (indirect string, offset: 0x4347): cookie_io_functions_t + <5f36> DW_AT_byte_size : 32 + <5f37> DW_AT_decl_file : 8 + <5f38> DW_AT_decl_line : 451 + <5f3a> DW_AT_decl_column : 16 + <5f3b> DW_AT_sibling : <0x5f78> + <2><5f3f>: Abbrev Number: 13 (DW_TAG_member) + <5f40> DW_AT_name : (indirect string, offset: 0x4395): read + <5f44> DW_AT_decl_file : 8 + <5f45> DW_AT_decl_line : 453 + <5f47> DW_AT_decl_column : 31 + <5f48> DW_AT_type : <0x5f78> + <5f4c> DW_AT_data_member_location: 0 + <2><5f4d>: Abbrev Number: 13 (DW_TAG_member) + <5f4e> DW_AT_name : (indirect string, offset: 0x41de): write + <5f52> DW_AT_decl_file : 8 + <5f53> DW_AT_decl_line : 454 + <5f55> DW_AT_decl_column : 32 + <5f56> DW_AT_type : <0x5f7e> + <5f5a> DW_AT_data_member_location: 8 + <2><5f5b>: Abbrev Number: 13 (DW_TAG_member) + <5f5c> DW_AT_name : (indirect string, offset: 0x457d): seek + <5f60> DW_AT_decl_file : 8 + <5f61> DW_AT_decl_line : 455 + <5f63> DW_AT_decl_column : 31 + <5f64> DW_AT_type : <0x5f84> + <5f68> DW_AT_data_member_location: 16 + <2><5f69>: Abbrev Number: 13 (DW_TAG_member) + <5f6a> DW_AT_name : (indirect string, offset: 0x41c8): close + <5f6e> DW_AT_decl_file : 8 + <5f6f> DW_AT_decl_line : 456 + <5f71> DW_AT_decl_column : 32 + <5f72> DW_AT_type : <0x5f8a> + <5f76> DW_AT_data_member_location: 24 + <2><5f77>: Abbrev Number: 0 + <1><5f78>: Abbrev Number: 7 (DW_TAG_pointer_type) + <5f79> DW_AT_byte_size : 8 + <5f7a> DW_AT_type : <0x5e9d> + <1><5f7e>: Abbrev Number: 7 (DW_TAG_pointer_type) + <5f7f> DW_AT_byte_size : 8 + <5f80> DW_AT_type : <0x5ec3> + <1><5f84>: Abbrev Number: 7 (DW_TAG_pointer_type) + <5f85> DW_AT_byte_size : 8 + <5f86> DW_AT_type : <0x5ee9> + <1><5f8a>: Abbrev Number: 7 (DW_TAG_pointer_type) + <5f8b> DW_AT_byte_size : 8 + <5f8c> DW_AT_type : <0x5f15> + <1><5f90>: Abbrev Number: 14 (DW_TAG_typedef) + <5f91> DW_AT_name : (indirect string, offset: 0x4347): cookie_io_functions_t + <5f95> DW_AT_decl_file : 8 + <5f96> DW_AT_decl_line : 457 + <5f98> DW_AT_decl_column : 3 + <5f99> DW_AT_type : <0x5f31> + <1><5f9d>: Abbrev Number: 12 (DW_TAG_structure_type) + <5f9e> DW_AT_name : (indirect string, offset: 0x43f5): file_struct + <5fa2> DW_AT_byte_size : 192 + <5fa3> DW_AT_decl_file : 8 + <5fa4> DW_AT_decl_line : 526 + <5fa6> DW_AT_decl_column : 8 + <5fa7> DW_AT_sibling : <0x6062> + <2><5fab>: Abbrev Number: 13 (DW_TAG_member) + <5fac> DW_AT_name : (indirect string, offset: 0x450e): fs_next + <5fb0> DW_AT_decl_file : 8 + <5fb1> DW_AT_decl_line : 528 + <5fb3> DW_AT_decl_column : 27 + <5fb4> DW_AT_type : <0x6062> + <5fb8> DW_AT_data_member_location: 0 + <2><5fb9>: Abbrev Number: 13 (DW_TAG_member) + <5fba> DW_AT_name : (indirect string, offset: 0x4582): fs_lock + <5fbe> DW_AT_decl_file : 8 + <5fbf> DW_AT_decl_line : 529 + <5fc1> DW_AT_decl_column : 27 + <5fc2> DW_AT_type : <0x5e7c> + <5fc6> DW_AT_data_member_location: 8 + <2><5fc7>: Abbrev Number: 13 (DW_TAG_member) + <5fc8> DW_AT_name : (indirect string, offset: 0x4521): fs_iofunc + <5fcc> DW_AT_decl_file : 8 + <5fcd> DW_AT_decl_line : 530 + <5fcf> DW_AT_decl_column : 27 + <5fd0> DW_AT_type : <0x5f90> + <5fd4> DW_AT_data_member_location: 48 + <2><5fd5>: Abbrev Number: 13 (DW_TAG_member) + <5fd6> DW_AT_name : (indirect string, offset: 0x455f): fs_cookie + <5fda> DW_AT_decl_file : 8 + <5fdb> DW_AT_decl_line : 531 + <5fdd> DW_AT_decl_column : 27 + <5fde> DW_AT_type : <0x5d2e> + <5fe2> DW_AT_data_member_location: 80 + <2><5fe3>: Abbrev Number: 13 (DW_TAG_member) + <5fe4> DW_AT_name : (indirect string, offset: 0x4595): fs_bufstart + <5fe8> DW_AT_decl_file : 8 + <5fe9> DW_AT_decl_line : 533 + <5feb> DW_AT_decl_column : 27 + <5fec> DW_AT_type : <0x5d30> + <5ff0> DW_AT_data_member_location: 88 + <2><5ff1>: Abbrev Number: 13 (DW_TAG_member) + <5ff2> DW_AT_name : (indirect string, offset: 0x4325): fs_bufend + <5ff6> DW_AT_decl_file : 8 + <5ff7> DW_AT_decl_line : 534 + <5ff9> DW_AT_decl_column : 27 + <5ffa> DW_AT_type : <0x5d30> + <5ffe> DW_AT_data_member_location: 96 + <2><5fff>: Abbrev Number: 13 (DW_TAG_member) + <6000> DW_AT_name : (indirect string, offset: 0x437a): fs_bufpos + <6004> DW_AT_decl_file : 8 + <6005> DW_AT_decl_line : 535 + <6007> DW_AT_decl_column : 27 + <6008> DW_AT_type : <0x5d30> + <600c> DW_AT_data_member_location: 104 + <2><600d>: Abbrev Number: 13 (DW_TAG_member) + <600e> DW_AT_name : (indirect string, offset: 0x436f): fs_bufread + <6012> DW_AT_decl_file : 8 + <6013> DW_AT_decl_line : 536 + <6015> DW_AT_decl_column : 27 + <6016> DW_AT_type : <0x5d30> + <601a> DW_AT_data_member_location: 112 + <2><601b>: Abbrev Number: 13 (DW_TAG_member) + <601c> DW_AT_name : (indirect string, offset: 0x4542): fs_buffer + <6020> DW_AT_decl_file : 8 + <6021> DW_AT_decl_line : 538 + <6023> DW_AT_decl_column : 27 + <6024> DW_AT_type : <0x6068> + <6028> DW_AT_data_member_location: 120 + <2><6029>: Abbrev Number: 13 (DW_TAG_member) + <602a> DW_AT_name : (indirect string, offset: 0x44a1): fs_oflags + <602e> DW_AT_decl_file : 8 + <602f> DW_AT_decl_line : 541 + <6031> DW_AT_decl_column : 27 + <6032> DW_AT_type : <0x5ce6> + <6036> DW_AT_data_member_location: 184 + <2><6037>: Abbrev Number: 13 (DW_TAG_member) + <6038> DW_AT_name : (indirect string, offset: 0x45c5): fs_flags + <603c> DW_AT_decl_file : 8 + <603d> DW_AT_decl_line : 542 + <603f> DW_AT_decl_column : 27 + <6040> DW_AT_type : <0x5cc9> + <6044> DW_AT_data_member_location: 186 + <2><6045>: Abbrev Number: 13 (DW_TAG_member) + <6046> DW_AT_name : (indirect string, offset: 0x45ab): fs_nungotten + <604a> DW_AT_decl_file : 8 + <604b> DW_AT_decl_line : 544 + <604d> DW_AT_decl_column : 27 + <604e> DW_AT_type : <0x5cc9> + <6052> DW_AT_data_member_location: 187 + <2><6053>: Abbrev Number: 13 (DW_TAG_member) + <6054> DW_AT_name : (indirect string, offset: 0x41e4): fs_ungotten + <6058> DW_AT_decl_file : 8 + <6059> DW_AT_decl_line : 545 + <605b> DW_AT_decl_column : 27 + <605c> DW_AT_type : <0x6078> + <6060> DW_AT_data_member_location: 188 + <2><6061>: Abbrev Number: 0 + <1><6062>: Abbrev Number: 7 (DW_TAG_pointer_type) + <6063> DW_AT_byte_size : 8 + <6064> DW_AT_type : <0x5f9d> + <1><6068>: Abbrev Number: 20 (DW_TAG_array_type) + <6069> DW_AT_type : <0x5d36> + <606d> DW_AT_sibling : <0x6078> + <2><6071>: Abbrev Number: 21 (DW_TAG_subrange_type) + <6072> DW_AT_type : <0x5ca3> + <6076> DW_AT_upper_bound : 63 + <2><6077>: Abbrev Number: 0 + <1><6078>: Abbrev Number: 20 (DW_TAG_array_type) + <6079> DW_AT_type : <0x5d36> + <607d> DW_AT_sibling : <0x6088> + <2><6081>: Abbrev Number: 21 (DW_TAG_subrange_type) + <6082> DW_AT_type : <0x5ca3> + <6086> DW_AT_upper_bound : 1 + <2><6087>: Abbrev Number: 0 + <1><6088>: Abbrev Number: 3 (DW_TAG_typedef) + <6089> DW_AT_name : (indirect string, offset: 0x4390): FILE + <608d> DW_AT_decl_file : 9 + <608e> DW_AT_decl_line : 112 + <608f> DW_AT_decl_column : 28 + <6090> DW_AT_type : <0x5f9d> + <1><6094>: Abbrev Number: 7 (DW_TAG_pointer_type) + <6095> DW_AT_byte_size : 8 + <6096> DW_AT_type : <0x6088> + <1><609a>: Abbrev Number: 22 (DW_TAG_subprogram) + <609b> DW_AT_external : 1 + <609b> DW_AT_name : (indirect string, offset: 0x4414): fflush + <609f> DW_AT_decl_file : 9 + <60a0> DW_AT_decl_line : 144 + <60a1> DW_AT_decl_column : 8 + <60a2> DW_AT_prototyped : 1 + <60a2> DW_AT_type : <0x5c8e> + <60a6> DW_AT_low_pc : 0xbea + <60ae> DW_AT_high_pc : 0x46 + <60b6> DW_AT_frame_base : 1 byte block: 9c (DW_OP_call_frame_cfa) + <60b8> DW_AT_GNU_all_call_sites: 1 + <60b8> DW_AT_sibling : <0x6111> + <2><60bc>: Abbrev Number: 23 (DW_TAG_formal_parameter) + <60bd> DW_AT_name : (indirect string, offset: 0x4401): stream + <60c1> DW_AT_decl_file : 1 + <60c2> DW_AT_decl_line : 90 + <60c3> DW_AT_decl_column : 22 + <60c4> DW_AT_type : <0x6094> + <60c8> DW_AT_location : 0x27cc (location list) + <2><60cc>: Abbrev Number: 24 (DW_TAG_variable) + <60cd> DW_AT_name : ret + <60d1> DW_AT_decl_file : 1 + <60d2> DW_AT_decl_line : 92 + <60d3> DW_AT_decl_column : 7 + <60d4> DW_AT_type : <0x5c8e> + <60d8> DW_AT_location : 0x282e (location list) + <2><60dc>: Abbrev Number: 25 (DW_TAG_GNU_call_site) + <60dd> DW_AT_low_pc : 0xbfa + <60e5> DW_AT_abstract_origin: <0x6188> + <2><60e9>: Abbrev Number: 25 (DW_TAG_GNU_call_site) + <60ea> DW_AT_low_pc : 0xc02 + <60f2> DW_AT_abstract_origin: <0x6194> + <2><60f6>: Abbrev Number: 25 (DW_TAG_GNU_call_site) + <60f7> DW_AT_low_pc : 0xc12 + <60ff> DW_AT_abstract_origin: <0x61a0> + <2><6103>: Abbrev Number: 25 (DW_TAG_GNU_call_site) + <6104> DW_AT_low_pc : 0xc2a + <610c> DW_AT_abstract_origin: <0x61ad> + <2><6110>: Abbrev Number: 0 + <1><6111>: Abbrev Number: 22 (DW_TAG_subprogram) + <6112> DW_AT_external : 1 + <6112> DW_AT_name : (indirect string, offset: 0x41ce): fflush_unlocked + <6116> DW_AT_decl_file : 9 + <6117> DW_AT_decl_line : 145 + <6118> DW_AT_decl_column : 8 + <6119> DW_AT_prototyped : 1 + <6119> DW_AT_type : <0x5c8e> + <611d> DW_AT_low_pc : 0xba4 + <6125> DW_AT_high_pc : 0x46 + <612d> DW_AT_frame_base : 1 byte block: 9c (DW_OP_call_frame_cfa) + <612f> DW_AT_GNU_all_call_sites: 1 + <612f> DW_AT_sibling : <0x6188> + <2><6133>: Abbrev Number: 23 (DW_TAG_formal_parameter) + <6134> DW_AT_name : (indirect string, offset: 0x4401): stream + <6138> DW_AT_decl_file : 1 + <6139> DW_AT_decl_line : 55 + <613a> DW_AT_decl_column : 31 + <613b> DW_AT_type : <0x6094> + <613f> DW_AT_location : 0x287a (location list) + <2><6143>: Abbrev Number: 24 (DW_TAG_variable) + <6144> DW_AT_name : ret + <6148> DW_AT_decl_file : 1 + <6149> DW_AT_decl_line : 57 + <614a> DW_AT_decl_column : 7 + <614b> DW_AT_type : <0x5c8e> + <614f> DW_AT_location : 0x28dc (location list) + <2><6153>: Abbrev Number: 25 (DW_TAG_GNU_call_site) + <6154> DW_AT_low_pc : 0xbb4 + <615c> DW_AT_abstract_origin: <0x6188> + <2><6160>: Abbrev Number: 25 (DW_TAG_GNU_call_site) + <6161> DW_AT_low_pc : 0xbbc + <6169> DW_AT_abstract_origin: <0x61b9> + <2><616d>: Abbrev Number: 25 (DW_TAG_GNU_call_site) + <616e> DW_AT_low_pc : 0xbcc + <6176> DW_AT_abstract_origin: <0x61a0> + <2><617a>: Abbrev Number: 25 (DW_TAG_GNU_call_site) + <617b> DW_AT_low_pc : 0xbe4 + <6183> DW_AT_abstract_origin: <0x61c5> + <2><6187>: Abbrev Number: 0 + <1><6188>: Abbrev Number: 26 (DW_TAG_subprogram) + <6189> DW_AT_external : 1 + <6189> DW_AT_declaration : 1 + <6189> DW_AT_linkage_name: (indirect string, offset: 0x44d7): lib_get_streams + <618d> DW_AT_name : (indirect string, offset: 0x44d7): lib_get_streams + <6191> DW_AT_decl_file : 10 + <6192> DW_AT_decl_line : 111 + <6193> DW_AT_decl_column : 24 + <1><6194>: Abbrev Number: 26 (DW_TAG_subprogram) + <6195> DW_AT_external : 1 + <6195> DW_AT_declaration : 1 + <6195> DW_AT_linkage_name: (indirect string, offset: 0x454c): lib_flushall + <6199> DW_AT_name : (indirect string, offset: 0x454c): lib_flushall + <619d> DW_AT_decl_file : 11 + <619e> DW_AT_decl_line : 215 + <619f> DW_AT_decl_column : 5 + <1><61a0>: Abbrev Number: 27 (DW_TAG_subprogram) + <61a1> DW_AT_external : 1 + <61a1> DW_AT_declaration : 1 + <61a1> DW_AT_linkage_name: (indirect string, offset: 0x45d9): __errno + <61a5> DW_AT_name : (indirect string, offset: 0x45d9): __errno + <61a9> DW_AT_decl_file : 12 + <61aa> DW_AT_decl_line : 364 + <61ac> DW_AT_decl_column : 10 + <1><61ad>: Abbrev Number: 26 (DW_TAG_subprogram) + <61ae> DW_AT_external : 1 + <61ae> DW_AT_declaration : 1 + <61ae> DW_AT_linkage_name: (indirect string, offset: 0x433c): lib_fflush + <61b2> DW_AT_name : (indirect string, offset: 0x433c): lib_fflush + <61b6> DW_AT_decl_file : 11 + <61b7> DW_AT_decl_line : 221 + <61b8> DW_AT_decl_column : 9 + <1><61b9>: Abbrev Number: 26 (DW_TAG_subprogram) + <61ba> DW_AT_external : 1 + <61ba> DW_AT_declaration : 1 + <61ba> DW_AT_linkage_name: (indirect string, offset: 0x4214): lib_flushall_unlocked + <61be> DW_AT_name : (indirect string, offset: 0x4214): lib_flushall_unlocked + <61c2> DW_AT_decl_file : 11 + <61c3> DW_AT_decl_line : 216 + <61c4> DW_AT_decl_column : 5 + <1><61c5>: Abbrev Number: 26 (DW_TAG_subprogram) + <61c6> DW_AT_external : 1 + <61c6> DW_AT_declaration : 1 + <61c6> DW_AT_linkage_name: (indirect string, offset: 0x41f9): lib_fflush_unlocked + <61ca> DW_AT_name : (indirect string, offset: 0x41f9): lib_fflush_unlocked + <61ce> DW_AT_decl_file : 11 + <61cf> DW_AT_decl_line : 222 + <61d0> DW_AT_decl_column : 9 + <1><61d1>: Abbrev Number: 0 + Compilation Unit @ offset 0x61d2: + Length: 0x6e8 (32-bit) + Version: 4 + Abbrev Offset: 0x1fad + Pointer Size: 8 + <0><61dd>: Abbrev Number: 1 (DW_TAG_compile_unit) + <61de> DW_AT_producer : (indirect string, offset: 0x46aa): GNU C17 10.2.0 -mcmodel=medany -march=rv64imafdc -mabi=lp64d -march=rv64imafdc -g -Os -fno-common -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections + <61e2> DW_AT_language : 12 (ANSI C99) + <61e3> DW_AT_name : (indirect string, offset: 0x497a): stdio/lib_libflushall.c + <61e7> DW_AT_comp_dir : (indirect string, offset: 0x47d1): /Users/Luppy/ox64/nuttx/libs/libc + <61eb> DW_AT_ranges : 0x740 + <61ef> DW_AT_low_pc : 0x0 + <61f7> DW_AT_stmt_list : 0x3b9d + <1><61fb>: Abbrev Number: 2 (DW_TAG_base_type) + <61fc> DW_AT_byte_size : 1 + <61fd> DW_AT_encoding : 6 (signed char) + <61fe> DW_AT_name : (indirect string, offset: 0x4886): signed char + <1><6202>: Abbrev Number: 3 (DW_TAG_typedef) + <6203> DW_AT_name : (indirect string, offset: 0x4613): _uint8_t + <6207> DW_AT_decl_file : 2 + <6208> DW_AT_decl_line : 52 + <6209> DW_AT_decl_column : 28 + <620a> DW_AT_type : <0x620e> + <1><620e>: Abbrev Number: 2 (DW_TAG_base_type) + <620f> DW_AT_byte_size : 1 + <6210> DW_AT_encoding : 8 (unsigned char) + <6211> DW_AT_name : (indirect string, offset: 0x485c): unsigned char + <1><6215>: Abbrev Number: 3 (DW_TAG_typedef) + <6216> DW_AT_name : (indirect string, offset: 0x486a): _int16_t + <621a> DW_AT_decl_file : 2 + <621b> DW_AT_decl_line : 54 + <621c> DW_AT_decl_column : 28 + <621d> DW_AT_type : <0x6221> + <1><6221>: Abbrev Number: 2 (DW_TAG_base_type) + <6222> DW_AT_byte_size : 2 + <6223> DW_AT_encoding : 5 (signed) + <6224> DW_AT_name : (indirect string, offset: 0x46a0): short int + <1><6228>: Abbrev Number: 3 (DW_TAG_typedef) + <6229> DW_AT_name : (indirect string, offset: 0x49f6): _uint16_t + <622d> DW_AT_decl_file : 2 + <622e> DW_AT_decl_line : 55 + <622f> DW_AT_decl_column : 28 + <6230> DW_AT_type : <0x6234> + <1><6234>: Abbrev Number: 2 (DW_TAG_base_type) + <6235> DW_AT_byte_size : 2 + <6236> DW_AT_encoding : 7 (unsigned) + <6237> DW_AT_name : (indirect string, offset: 0x48ec): short unsigned int + <1><623b>: Abbrev Number: 3 (DW_TAG_typedef) + <623c> DW_AT_name : (indirect string, offset: 0x484b): _int32_t + <6240> DW_AT_decl_file : 2 + <6241> DW_AT_decl_line : 58 + <6242> DW_AT_decl_column : 28 + <6243> DW_AT_type : <0x6247> + <1><6247>: Abbrev Number: 4 (DW_TAG_base_type) + <6248> DW_AT_byte_size : 4 + <6249> DW_AT_encoding : 5 (signed) + <624a> DW_AT_name : int + <1><624e>: Abbrev Number: 2 (DW_TAG_base_type) + <624f> DW_AT_byte_size : 4 + <6250> DW_AT_encoding : 7 (unsigned) + <6251> DW_AT_name : (indirect string, offset: 0x4a0d): unsigned int + <1><6255>: Abbrev Number: 2 (DW_TAG_base_type) + <6256> DW_AT_byte_size : 8 + <6257> DW_AT_encoding : 5 (signed) + <6258> DW_AT_name : (indirect string, offset: 0x490c): long int + <1><625c>: Abbrev Number: 2 (DW_TAG_base_type) + <625d> DW_AT_byte_size : 8 + <625e> DW_AT_encoding : 7 (unsigned) + <625f> DW_AT_name : (indirect string, offset: 0x48bd): long unsigned int + <1><6263>: Abbrev Number: 3 (DW_TAG_typedef) + <6264> DW_AT_name : (indirect string, offset: 0x4a40): _ssize_t + <6268> DW_AT_decl_file : 2 + <6269> DW_AT_decl_line : 91 + <626a> DW_AT_decl_column : 28 + <626b> DW_AT_type : <0x6255> + <1><626f>: Abbrev Number: 3 (DW_TAG_typedef) + <6270> DW_AT_name : (indirect string, offset: 0x49ca): _size_t + <6274> DW_AT_decl_file : 2 + <6275> DW_AT_decl_line : 93 + <6276> DW_AT_decl_column : 28 + <6277> DW_AT_type : <0x625c> + <1><627b>: Abbrev Number: 2 (DW_TAG_base_type) + <627c> DW_AT_byte_size : 8 + <627d> DW_AT_encoding : 7 (unsigned) + <627e> DW_AT_name : (indirect string, offset: 0x4898): long long unsigned int + <1><6282>: Abbrev Number: 3 (DW_TAG_typedef) + <6283> DW_AT_name : (indirect string, offset: 0x4769): uint8_t + <6287> DW_AT_decl_file : 3 + <6288> DW_AT_decl_line : 166 + <6289> DW_AT_decl_column : 29 + <628a> DW_AT_type : <0x6202> + <1><628e>: Abbrev Number: 3 (DW_TAG_typedef) + <628f> DW_AT_name : (indirect string, offset: 0x4922): int16_t + <6293> DW_AT_decl_file : 3 + <6294> DW_AT_decl_line : 168 + <6295> DW_AT_decl_column : 29 + <6296> DW_AT_type : <0x6215> + <1><629a>: Abbrev Number: 5 (DW_TAG_volatile_type) + <629b> DW_AT_type : <0x628e> + <1><629f>: Abbrev Number: 3 (DW_TAG_typedef) + <62a0> DW_AT_name : (indirect string, offset: 0x48b4): uint16_t + <62a4> DW_AT_decl_file : 3 + <62a5> DW_AT_decl_line : 169 + <62a6> DW_AT_decl_column : 29 + <62a7> DW_AT_type : <0x6228> + <1><62ab>: Abbrev Number: 3 (DW_TAG_typedef) + <62ac> DW_AT_name : (indirect string, offset: 0x4915): int32_t + <62b0> DW_AT_decl_file : 3 + <62b1> DW_AT_decl_line : 176 + <62b2> DW_AT_decl_column : 29 + <62b3> DW_AT_type : <0x623b> + <1><62b7>: Abbrev Number: 3 (DW_TAG_typedef) + <62b8> DW_AT_name : (indirect string, offset: 0x4637): size_t + <62bc> DW_AT_decl_file : 4 + <62bd> DW_AT_decl_line : 133 + <62be> DW_AT_decl_column : 22 + <62bf> DW_AT_type : <0x626f> + <1><62c3>: Abbrev Number: 3 (DW_TAG_typedef) + <62c4> DW_AT_name : (indirect string, offset: 0x4698): ssize_t + <62c8> DW_AT_decl_file : 4 + <62c9> DW_AT_decl_line : 134 + <62ca> DW_AT_decl_column : 22 + <62cb> DW_AT_type : <0x6263> + <1><62cf>: Abbrev Number: 3 (DW_TAG_typedef) + <62d0> DW_AT_name : (indirect string, offset: 0x499f): pid_t + <62d4> DW_AT_decl_file : 4 + <62d5> DW_AT_decl_line : 162 + <62d6> DW_AT_decl_column : 22 + <62d7> DW_AT_type : <0x6247> + <1><62db>: Abbrev Number: 3 (DW_TAG_typedef) + <62dc> DW_AT_name : (indirect string, offset: 0x49be): off_t + <62e0> DW_AT_decl_file : 4 + <62e1> DW_AT_decl_line : 229 + <62e2> DW_AT_decl_column : 22 + <62e3> DW_AT_type : <0x62ab> + <1><62e7>: Abbrev Number: 6 (DW_TAG_pointer_type) + <62e8> DW_AT_byte_size : 8 + <1><62e9>: Abbrev Number: 7 (DW_TAG_pointer_type) + <62ea> DW_AT_byte_size : 8 + <62eb> DW_AT_type : <0x62ef> + <1><62ef>: Abbrev Number: 2 (DW_TAG_base_type) + <62f0> DW_AT_byte_size : 1 + <62f1> DW_AT_encoding : 8 (unsigned char) + <62f2> DW_AT_name : (indirect string, offset: 0x48ff): char + <1><62f6>: Abbrev Number: 8 (DW_TAG_const_type) + <62f7> DW_AT_type : <0x62ef> + <1><62fb>: Abbrev Number: 9 (DW_TAG_enumeration_type) + <62fc> DW_AT_encoding : 5 (signed) + <62fd> DW_AT_byte_size : 4 + <62fe> DW_AT_type : <0x6247> + <6302> DW_AT_decl_file : 4 + <6303> DW_AT_decl_line : 321 + <6305> DW_AT_decl_column : 1 + <6306> DW_AT_sibling : <0x6316> + <2><630a>: Abbrev Number: 10 (DW_TAG_enumerator) + <630b> DW_AT_name : (indirect string, offset: 0x4828): ERROR + <630f> DW_AT_const_value : -1 + <2><6310>: Abbrev Number: 11 (DW_TAG_enumerator) + <6311> DW_AT_name : OK + <6314> DW_AT_const_value : 0 + <2><6315>: Abbrev Number: 0 + <1><6316>: Abbrev Number: 7 (DW_TAG_pointer_type) + <6317> DW_AT_byte_size : 8 + <6318> DW_AT_type : <0x62f6> + <1><631c>: Abbrev Number: 12 (DW_TAG_structure_type) + <631d> DW_AT_name : (indirect string, offset: 0x4834): dq_entry_s + <6321> DW_AT_byte_size : 16 + <6322> DW_AT_decl_file : 5 + <6323> DW_AT_decl_line : 303 + <6325> DW_AT_decl_column : 8 + <6326> DW_AT_sibling : <0x6347> + <2><632a>: Abbrev Number: 13 (DW_TAG_member) + <632b> DW_AT_name : (indirect string, offset: 0x482e): flink + <632f> DW_AT_decl_file : 5 + <6330> DW_AT_decl_line : 305 + <6332> DW_AT_decl_column : 26 + <6333> DW_AT_type : <0x6347> + <6337> DW_AT_data_member_location: 0 + <2><6338>: Abbrev Number: 13 (DW_TAG_member) + <6339> DW_AT_name : (indirect string, offset: 0x4792): blink + <633d> DW_AT_decl_file : 5 + <633e> DW_AT_decl_line : 306 + <6340> DW_AT_decl_column : 26 + <6341> DW_AT_type : <0x6347> + <6345> DW_AT_data_member_location: 8 + <2><6346>: Abbrev Number: 0 + <1><6347>: Abbrev Number: 7 (DW_TAG_pointer_type) + <6348> DW_AT_byte_size : 8 + <6349> DW_AT_type : <0x631c> + <1><634d>: Abbrev Number: 14 (DW_TAG_typedef) + <634e> DW_AT_name : (indirect string, offset: 0x4938): dq_entry_t + <6352> DW_AT_decl_file : 5 + <6353> DW_AT_decl_line : 308 + <6355> DW_AT_decl_column : 27 + <6356> DW_AT_type : <0x631c> + <1><635a>: Abbrev Number: 12 (DW_TAG_structure_type) + <635b> DW_AT_name : (indirect string, offset: 0x4a23): dq_queue_s + <635f> DW_AT_byte_size : 16 + <6360> DW_AT_decl_file : 5 + <6361> DW_AT_decl_line : 317 + <6363> DW_AT_decl_column : 8 + <6364> DW_AT_sibling : <0x6385> + <2><6368>: Abbrev Number: 13 (DW_TAG_member) + <6369> DW_AT_name : (indirect string, offset: 0x4764): head + <636d> DW_AT_decl_file : 5 + <636e> DW_AT_decl_line : 319 + <6370> DW_AT_decl_column : 19 + <6371> DW_AT_type : <0x6385> + <6375> DW_AT_data_member_location: 0 + <2><6376>: Abbrev Number: 13 (DW_TAG_member) + <6377> DW_AT_name : (indirect string, offset: 0x48af): tail + <637b> DW_AT_decl_file : 5 + <637c> DW_AT_decl_line : 320 + <637e> DW_AT_decl_column : 19 + <637f> DW_AT_type : <0x6385> + <6383> DW_AT_data_member_location: 8 + <2><6384>: Abbrev Number: 0 + <1><6385>: Abbrev Number: 7 (DW_TAG_pointer_type) + <6386> DW_AT_byte_size : 8 + <6387> DW_AT_type : <0x634d> + <1><638b>: Abbrev Number: 14 (DW_TAG_typedef) + <638c> DW_AT_name : (indirect string, offset: 0x49df): dq_queue_t + <6390> DW_AT_decl_file : 5 + <6391> DW_AT_decl_line : 322 + <6393> DW_AT_decl_column : 27 + <6394> DW_AT_type : <0x635a> + <1><6398>: Abbrev Number: 15 (DW_TAG_structure_type) + <6399> DW_AT_name : (indirect string, offset: 0x4798): sem_s + <639d> DW_AT_byte_size : 24 + <639e> DW_AT_decl_file : 6 + <639f> DW_AT_decl_line : 99 + <63a0> DW_AT_decl_column : 8 + <63a1> DW_AT_sibling : <0x63cd> + <2><63a5>: Abbrev Number: 16 (DW_TAG_member) + <63a6> DW_AT_name : (indirect string, offset: 0x487d): semcount + <63aa> DW_AT_decl_file : 6 + <63ab> DW_AT_decl_line : 101 + <63ac> DW_AT_decl_column : 20 + <63ad> DW_AT_type : <0x629a> + <63b1> DW_AT_data_member_location: 0 + <2><63b2>: Abbrev Number: 16 (DW_TAG_member) + <63b3> DW_AT_name : (indirect string, offset: 0x4892): flags + <63b7> DW_AT_decl_file : 6 + <63b8> DW_AT_decl_line : 108 + <63b9> DW_AT_decl_column : 11 + <63ba> DW_AT_type : <0x6282> + <63be> DW_AT_data_member_location: 2 + <2><63bf>: Abbrev Number: 16 (DW_TAG_member) + <63c0> DW_AT_name : (indirect string, offset: 0x4677): waitlist + <63c4> DW_AT_decl_file : 6 + <63c5> DW_AT_decl_line : 110 + <63c6> DW_AT_decl_column : 14 + <63c7> DW_AT_type : <0x638b> + <63cb> DW_AT_data_member_location: 8 + <2><63cc>: Abbrev Number: 0 + <1><63cd>: Abbrev Number: 3 (DW_TAG_typedef) + <63ce> DW_AT_name : (indirect string, offset: 0x479e): sem_t + <63d2> DW_AT_decl_file : 6 + <63d3> DW_AT_decl_line : 121 + <63d4> DW_AT_decl_column : 22 + <63d5> DW_AT_type : <0x6398> + <1><63d9>: Abbrev Number: 15 (DW_TAG_structure_type) + <63da> DW_AT_name : (indirect string, offset: 0x4904): mutex_s + <63de> DW_AT_byte_size : 32 + <63df> DW_AT_decl_file : 7 + <63e0> DW_AT_decl_line : 46 + <63e1> DW_AT_decl_column : 8 + <63e2> DW_AT_sibling : <0x6401> + <2><63e6>: Abbrev Number: 17 (DW_TAG_member) + <63e7> DW_AT_name : sem + <63eb> DW_AT_decl_file : 7 + <63ec> DW_AT_decl_line : 48 + <63ed> DW_AT_decl_column : 9 + <63ee> DW_AT_type : <0x63cd> + <63f2> DW_AT_data_member_location: 0 + <2><63f3>: Abbrev Number: 16 (DW_TAG_member) + <63f4> DW_AT_name : (indirect string, offset: 0x47f3): holder + <63f8> DW_AT_decl_file : 7 + <63f9> DW_AT_decl_line : 49 + <63fa> DW_AT_decl_column : 9 + <63fb> DW_AT_type : <0x62cf> + <63ff> DW_AT_data_member_location: 24 + <2><6400>: Abbrev Number: 0 + <1><6401>: Abbrev Number: 3 (DW_TAG_typedef) + <6402> DW_AT_name : (indirect string, offset: 0x4811): mutex_t + <6406> DW_AT_decl_file : 7 + <6407> DW_AT_decl_line : 52 + <6408> DW_AT_decl_column : 24 + <6409> DW_AT_type : <0x63d9> + <1><640d>: Abbrev Number: 15 (DW_TAG_structure_type) + <640e> DW_AT_name : (indirect string, offset: 0x4a2e): rmutex_s + <6412> DW_AT_byte_size : 40 + <6413> DW_AT_decl_file : 7 + <6414> DW_AT_decl_line : 54 + <6415> DW_AT_decl_column : 8 + <6416> DW_AT_sibling : <0x6435> + <2><641a>: Abbrev Number: 16 (DW_TAG_member) + <641b> DW_AT_name : (indirect string, offset: 0x48e6): mutex + <641f> DW_AT_decl_file : 7 + <6420> DW_AT_decl_line : 56 + <6421> DW_AT_decl_column : 11 + <6422> DW_AT_type : <0x6401> + <6426> DW_AT_data_member_location: 0 + <2><6427>: Abbrev Number: 16 (DW_TAG_member) + <6428> DW_AT_name : (indirect string, offset: 0x49c4): count + <642c> DW_AT_decl_file : 7 + <642d> DW_AT_decl_line : 57 + <642e> DW_AT_decl_column : 16 + <642f> DW_AT_type : <0x624e> + <6433> DW_AT_data_member_location: 32 + <2><6434>: Abbrev Number: 0 + <1><6435>: Abbrev Number: 3 (DW_TAG_typedef) + <6436> DW_AT_name : (indirect string, offset: 0x4a37): rmutex_t + <643a> DW_AT_decl_file : 7 + <643b> DW_AT_decl_line : 60 + <643c> DW_AT_decl_column : 25 + <643d> DW_AT_type : <0x640d> + <1><6441>: Abbrev Number: 2 (DW_TAG_base_type) + <6442> DW_AT_byte_size : 8 + <6443> DW_AT_encoding : 5 (signed) + <6444> DW_AT_name : (indirect string, offset: 0x47c3): long long int + <1><6448>: Abbrev Number: 2 (DW_TAG_base_type) + <6449> DW_AT_byte_size : 16 + <644a> DW_AT_encoding : 4 (float) + <644b> DW_AT_name : (indirect string, offset: 0x483f): long double + <1><644f>: Abbrev Number: 2 (DW_TAG_base_type) + <6450> DW_AT_byte_size : 1 + <6451> DW_AT_encoding : 2 (boolean) + <6452> DW_AT_name : (indirect string, offset: 0x492a): _Bool + <1><6456>: Abbrev Number: 14 (DW_TAG_typedef) + <6457> DW_AT_name : (indirect string, offset: 0x47fa): cookie_read_function_t + <645b> DW_AT_decl_file : 8 + <645c> DW_AT_decl_line : 441 + <645e> DW_AT_decl_column : 22 + <645f> DW_AT_type : <0x6463> + <1><6463>: Abbrev Number: 18 (DW_TAG_subroutine_type) + <6464> DW_AT_prototyped : 1 + <6464> DW_AT_type : <0x62c3> + <6468> DW_AT_sibling : <0x647c> + <2><646c>: Abbrev Number: 19 (DW_TAG_formal_parameter) + <646d> DW_AT_type : <0x62e7> + <2><6471>: Abbrev Number: 19 (DW_TAG_formal_parameter) + <6472> DW_AT_type : <0x62e9> + <2><6476>: Abbrev Number: 19 (DW_TAG_formal_parameter) + <6477> DW_AT_type : <0x62b7> + <2><647b>: Abbrev Number: 0 + <1><647c>: Abbrev Number: 14 (DW_TAG_typedef) + <647d> DW_AT_name : (indirect string, offset: 0x465f): cookie_write_function_t + <6481> DW_AT_decl_file : 8 + <6482> DW_AT_decl_line : 443 + <6484> DW_AT_decl_column : 22 + <6485> DW_AT_type : <0x6489> + <1><6489>: Abbrev Number: 18 (DW_TAG_subroutine_type) + <648a> DW_AT_prototyped : 1 + <648a> DW_AT_type : <0x62c3> + <648e> DW_AT_sibling : <0x64a2> + <2><6492>: Abbrev Number: 19 (DW_TAG_formal_parameter) + <6493> DW_AT_type : <0x62e7> + <2><6497>: Abbrev Number: 19 (DW_TAG_formal_parameter) + <6498> DW_AT_type : <0x6316> + <2><649c>: Abbrev Number: 19 (DW_TAG_formal_parameter) + <649d> DW_AT_type : <0x62b7> + <2><64a1>: Abbrev Number: 0 + <1><64a2>: Abbrev Number: 14 (DW_TAG_typedef) + <64a3> DW_AT_name : (indirect string, offset: 0x4959): cookie_seek_function_t + <64a7> DW_AT_decl_file : 8 + <64a8> DW_AT_decl_line : 446 + <64aa> DW_AT_decl_column : 20 + <64ab> DW_AT_type : <0x64af> + <1><64af>: Abbrev Number: 18 (DW_TAG_subroutine_type) + <64b0> DW_AT_prototyped : 1 + <64b0> DW_AT_type : <0x62db> + <64b4> DW_AT_sibling : <0x64c8> + <2><64b8>: Abbrev Number: 19 (DW_TAG_formal_parameter) + <64b9> DW_AT_type : <0x62e7> + <2><64bd>: Abbrev Number: 19 (DW_TAG_formal_parameter) + <64be> DW_AT_type : <0x64c8> + <2><64c2>: Abbrev Number: 19 (DW_TAG_formal_parameter) + <64c3> DW_AT_type : <0x6247> + <2><64c7>: Abbrev Number: 0 + <1><64c8>: Abbrev Number: 7 (DW_TAG_pointer_type) + <64c9> DW_AT_byte_size : 8 + <64ca> DW_AT_type : <0x62db> + <1><64ce>: Abbrev Number: 14 (DW_TAG_typedef) + <64cf> DW_AT_name : (indirect string, offset: 0x4680): cookie_close_function_t + <64d3> DW_AT_decl_file : 8 + <64d4> DW_AT_decl_line : 449 + <64d6> DW_AT_decl_column : 18 + <64d7> DW_AT_type : <0x64db> + <1><64db>: Abbrev Number: 18 (DW_TAG_subroutine_type) + <64dc> DW_AT_prototyped : 1 + <64dc> DW_AT_type : <0x6247> + <64e0> DW_AT_sibling : <0x64ea> + <2><64e4>: Abbrev Number: 19 (DW_TAG_formal_parameter) + <64e5> DW_AT_type : <0x62e7> + <2><64e9>: Abbrev Number: 0 + <1><64ea>: Abbrev Number: 12 (DW_TAG_structure_type) + <64eb> DW_AT_name : (indirect string, offset: 0x477c): cookie_io_functions_t + <64ef> DW_AT_byte_size : 32 + <64f0> DW_AT_decl_file : 8 + <64f1> DW_AT_decl_line : 451 + <64f3> DW_AT_decl_column : 16 + <64f4> DW_AT_sibling : <0x6531> + <2><64f8>: Abbrev Number: 13 (DW_TAG_member) + <64f9> DW_AT_name : (indirect string, offset: 0x47be): read + <64fd> DW_AT_decl_file : 8 + <64fe> DW_AT_decl_line : 453 + <6500> DW_AT_decl_column : 31 + <6501> DW_AT_type : <0x6531> + <6505> DW_AT_data_member_location: 0 + <2><6506>: Abbrev Number: 13 (DW_TAG_member) + <6507> DW_AT_name : (indirect string, offset: 0x4601): write + <650b> DW_AT_decl_file : 8 + <650c> DW_AT_decl_line : 454 + <650e> DW_AT_decl_column : 32 + <650f> DW_AT_type : <0x6537> + <6513> DW_AT_data_member_location: 8 + <2><6514>: Abbrev Number: 13 (DW_TAG_member) + <6515> DW_AT_name : (indirect string, offset: 0x49d2): seek + <6519> DW_AT_decl_file : 8 + <651a> DW_AT_decl_line : 455 + <651c> DW_AT_decl_column : 31 + <651d> DW_AT_type : <0x653d> + <6521> DW_AT_data_member_location: 16 + <2><6522>: Abbrev Number: 13 (DW_TAG_member) + <6523> DW_AT_name : (indirect string, offset: 0x45f3): close + <6527> DW_AT_decl_file : 8 + <6528> DW_AT_decl_line : 456 + <652a> DW_AT_decl_column : 32 + <652b> DW_AT_type : <0x6543> + <652f> DW_AT_data_member_location: 24 + <2><6530>: Abbrev Number: 0 + <1><6531>: Abbrev Number: 7 (DW_TAG_pointer_type) + <6532> DW_AT_byte_size : 8 + <6533> DW_AT_type : <0x6456> + <1><6537>: Abbrev Number: 7 (DW_TAG_pointer_type) + <6538> DW_AT_byte_size : 8 + <6539> DW_AT_type : <0x647c> + <1><653d>: Abbrev Number: 7 (DW_TAG_pointer_type) + <653e> DW_AT_byte_size : 8 + <653f> DW_AT_type : <0x64a2> + <1><6543>: Abbrev Number: 7 (DW_TAG_pointer_type) + <6544> DW_AT_byte_size : 8 + <6545> DW_AT_type : <0x64ce> + <1><6549>: Abbrev Number: 14 (DW_TAG_typedef) + <654a> DW_AT_name : (indirect string, offset: 0x477c): cookie_io_functions_t + <654e> DW_AT_decl_file : 8 + <654f> DW_AT_decl_line : 457 + <6551> DW_AT_decl_column : 3 + <6552> DW_AT_type : <0x64ea> + <1><6556>: Abbrev Number: 12 (DW_TAG_structure_type) + <6557> DW_AT_name : (indirect string, offset: 0x494d): file_struct + <655b> DW_AT_byte_size : 192 + <655c> DW_AT_decl_file : 8 + <655d> DW_AT_decl_line : 526 + <655f> DW_AT_decl_column : 8 + <6560> DW_AT_sibling : <0x661b> + <2><6564>: Abbrev Number: 13 (DW_TAG_member) + <6565> DW_AT_name : (indirect string, offset: 0x4930): fs_next + <6569> DW_AT_decl_file : 8 + <656a> DW_AT_decl_line : 528 + <656c> DW_AT_decl_column : 27 + <656d> DW_AT_type : <0x661b> + <6571> DW_AT_data_member_location: 0 + <2><6572>: Abbrev Number: 13 (DW_TAG_member) + <6573> DW_AT_name : (indirect string, offset: 0x49d7): fs_lock + <6577> DW_AT_decl_file : 8 + <6578> DW_AT_decl_line : 529 + <657a> DW_AT_decl_column : 27 + <657b> DW_AT_type : <0x6435> + <657f> DW_AT_data_member_location: 8 + <2><6580>: Abbrev Number: 13 (DW_TAG_member) + <6581> DW_AT_name : (indirect string, offset: 0x4943): fs_iofunc + <6585> DW_AT_decl_file : 8 + <6586> DW_AT_decl_line : 530 + <6588> DW_AT_decl_column : 27 + <6589> DW_AT_type : <0x6549> + <658d> DW_AT_data_member_location: 48 + <2><658e>: Abbrev Number: 13 (DW_TAG_member) + <658f> DW_AT_name : (indirect string, offset: 0x49b4): fs_cookie + <6593> DW_AT_decl_file : 8 + <6594> DW_AT_decl_line : 531 + <6596> DW_AT_decl_column : 27 + <6597> DW_AT_type : <0x62e7> + <659b> DW_AT_data_member_location: 80 + <2><659c>: Abbrev Number: 13 (DW_TAG_member) + <659d> DW_AT_name : (indirect string, offset: 0x49ea): fs_bufstart + <65a1> DW_AT_decl_file : 8 + <65a2> DW_AT_decl_line : 533 + <65a4> DW_AT_decl_column : 27 + <65a5> DW_AT_type : <0x62e9> + <65a9> DW_AT_data_member_location: 88 + <2><65aa>: Abbrev Number: 13 (DW_TAG_member) + <65ab> DW_AT_name : (indirect string, offset: 0x475a): fs_bufend + <65af> DW_AT_decl_file : 8 + <65b0> DW_AT_decl_line : 534 + <65b2> DW_AT_decl_column : 27 + <65b3> DW_AT_type : <0x62e9> + <65b7> DW_AT_data_member_location: 96 + <2><65b8>: Abbrev Number: 13 (DW_TAG_member) + <65b9> DW_AT_name : (indirect string, offset: 0x47af): fs_bufpos + <65bd> DW_AT_decl_file : 8 + <65be> DW_AT_decl_line : 535 + <65c0> DW_AT_decl_column : 27 + <65c1> DW_AT_type : <0x62e9> + <65c5> DW_AT_data_member_location: 104 + <2><65c6>: Abbrev Number: 13 (DW_TAG_member) + <65c7> DW_AT_name : (indirect string, offset: 0x47a4): fs_bufread + <65cb> DW_AT_decl_file : 8 + <65cc> DW_AT_decl_line : 536 + <65ce> DW_AT_decl_column : 27 + <65cf> DW_AT_type : <0x62e9> + <65d3> DW_AT_data_member_location: 112 + <2><65d4>: Abbrev Number: 13 (DW_TAG_member) + <65d5> DW_AT_name : (indirect string, offset: 0x4970): fs_buffer + <65d9> DW_AT_decl_file : 8 + <65da> DW_AT_decl_line : 538 + <65dc> DW_AT_decl_column : 27 + <65dd> DW_AT_type : <0x6621> + <65e1> DW_AT_data_member_location: 120 + <2><65e2>: Abbrev Number: 13 (DW_TAG_member) + <65e3> DW_AT_name : (indirect string, offset: 0x48cf): fs_oflags + <65e7> DW_AT_decl_file : 8 + <65e8> DW_AT_decl_line : 541 + <65ea> DW_AT_decl_column : 27 + <65eb> DW_AT_type : <0x629f> + <65ef> DW_AT_data_member_location: 184 + <2><65f0>: Abbrev Number: 13 (DW_TAG_member) + <65f1> DW_AT_name : (indirect string, offset: 0x4a1a): fs_flags + <65f5> DW_AT_decl_file : 8 + <65f6> DW_AT_decl_line : 542 + <65f8> DW_AT_decl_column : 27 + <65f9> DW_AT_type : <0x6282> + <65fd> DW_AT_data_member_location: 186 + <2><65fe>: Abbrev Number: 13 (DW_TAG_member) + <65ff> DW_AT_name : (indirect string, offset: 0x4a00): fs_nungotten + <6603> DW_AT_decl_file : 8 + <6604> DW_AT_decl_line : 544 + <6606> DW_AT_decl_column : 27 + <6607> DW_AT_type : <0x6282> + <660b> DW_AT_data_member_location: 187 + <2><660c>: Abbrev Number: 13 (DW_TAG_member) + <660d> DW_AT_name : (indirect string, offset: 0x4607): fs_ungotten + <6611> DW_AT_decl_file : 8 + <6612> DW_AT_decl_line : 545 + <6614> DW_AT_decl_column : 27 + <6615> DW_AT_type : <0x6631> + <6619> DW_AT_data_member_location: 188 + <2><661a>: Abbrev Number: 0 + <1><661b>: Abbrev Number: 7 (DW_TAG_pointer_type) + <661c> DW_AT_byte_size : 8 + <661d> DW_AT_type : <0x6556> + <1><6621>: Abbrev Number: 20 (DW_TAG_array_type) + <6622> DW_AT_type : <0x62ef> + <6626> DW_AT_sibling : <0x6631> + <2><662a>: Abbrev Number: 21 (DW_TAG_subrange_type) + <662b> DW_AT_type : <0x625c> + <662f> DW_AT_upper_bound : 63 + <2><6630>: Abbrev Number: 0 + <1><6631>: Abbrev Number: 20 (DW_TAG_array_type) + <6632> DW_AT_type : <0x62ef> + <6636> DW_AT_sibling : <0x6641> + <2><663a>: Abbrev Number: 21 (DW_TAG_subrange_type) + <663b> DW_AT_type : <0x625c> + <663f> DW_AT_upper_bound : 1 + <2><6640>: Abbrev Number: 0 + <1><6641>: Abbrev Number: 22 (DW_TAG_structure_type) + <6642> DW_AT_name : (indirect string, offset: 0x463e): streamlist + <6646> DW_AT_byte_size : 624 + <6648> DW_AT_decl_file : 8 + <6649> DW_AT_decl_line : 549 + <664b> DW_AT_decl_column : 8 + <664c> DW_AT_sibling : <0x668b> + <2><6650>: Abbrev Number: 13 (DW_TAG_member) + <6651> DW_AT_name : (indirect string, offset: 0x4854): sl_lock + <6655> DW_AT_decl_file : 8 + <6656> DW_AT_decl_line : 551 + <6658> DW_AT_decl_column : 27 + <6659> DW_AT_type : <0x6401> + <665d> DW_AT_data_member_location: 0 + <2><665e>: Abbrev Number: 13 (DW_TAG_member) + <665f> DW_AT_name : (indirect string, offset: 0x461c): sl_std + <6663> DW_AT_decl_file : 8 + <6664> DW_AT_decl_line : 552 + <6666> DW_AT_decl_column : 27 + <6667> DW_AT_type : <0x668b> + <666b> DW_AT_data_member_location: 32 + <2><666c>: Abbrev Number: 23 (DW_TAG_member) + <666d> DW_AT_name : (indirect string, offset: 0x45f9): sl_head + <6671> DW_AT_decl_file : 8 + <6672> DW_AT_decl_line : 553 + <6674> DW_AT_decl_column : 27 + <6675> DW_AT_type : <0x661b> + <6679> DW_AT_data_member_location: 608 + <2><667b>: Abbrev Number: 23 (DW_TAG_member) + <667c> DW_AT_name : (indirect string, offset: 0x4819): sl_tail + <6680> DW_AT_decl_file : 8 + <6681> DW_AT_decl_line : 554 + <6683> DW_AT_decl_column : 27 + <6684> DW_AT_type : <0x661b> + <6688> DW_AT_data_member_location: 616 + <2><668a>: Abbrev Number: 0 + <1><668b>: Abbrev Number: 20 (DW_TAG_array_type) + <668c> DW_AT_type : <0x6556> + <6690> DW_AT_sibling : <0x669b> + <2><6694>: Abbrev Number: 21 (DW_TAG_subrange_type) + <6695> DW_AT_type : <0x625c> + <6699> DW_AT_upper_bound : 2 + <2><669a>: Abbrev Number: 0 + <1><669b>: Abbrev Number: 3 (DW_TAG_typedef) + <669c> DW_AT_name : (indirect string, offset: 0x47b9): FILE + <66a0> DW_AT_decl_file : 9 + <66a1> DW_AT_decl_line : 112 + <66a2> DW_AT_decl_column : 28 + <66a3> DW_AT_type : <0x6556> + <1><66a7>: Abbrev Number: 7 (DW_TAG_pointer_type) + <66a8> DW_AT_byte_size : 8 + <66a9> DW_AT_type : <0x669b> + <1><66ad>: Abbrev Number: 24 (DW_TAG_subprogram) + <66ae> DW_AT_external : 1 + <66ae> DW_AT_name : (indirect string, offset: 0x4992): lib_flushall + <66b2> DW_AT_decl_file : 1 + <66b3> DW_AT_decl_line : 96 + <66b4> DW_AT_decl_column : 5 + <66b5> DW_AT_prototyped : 1 + <66b5> DW_AT_type : <0x6247> + <66b9> DW_AT_low_pc : 0xc94 + <66c1> DW_AT_high_pc : 0x7a + <66c9> DW_AT_frame_base : 1 byte block: 9c (DW_OP_call_frame_cfa) + <66cb> DW_AT_GNU_all_call_sites: 1 + <66cb> DW_AT_sibling : <0x67b2> + <2><66cf>: Abbrev Number: 25 (DW_TAG_formal_parameter) + <66d0> DW_AT_name : (indirect string, offset: 0x491d): list + <66d4> DW_AT_decl_file : 1 + <66d5> DW_AT_decl_line : 96 + <66d6> DW_AT_decl_column : 41 + <66d7> DW_AT_type : <0x67b2> + <66db> DW_AT_location : 0x2928 (location list) + <2><66df>: Abbrev Number: 26 (DW_TAG_variable) + <66e0> DW_AT_name : (indirect string, offset: 0x4873): lasterrno + <66e4> DW_AT_decl_file : 1 + <66e5> DW_AT_decl_line : 98 + <66e6> DW_AT_decl_column : 7 + <66e7> DW_AT_type : <0x6247> + <66eb> DW_AT_location : 0x2987 (location list) + <2><66ef>: Abbrev Number: 27 (DW_TAG_variable) + <66f0> DW_AT_name : ret + <66f4> DW_AT_decl_file : 1 + <66f5> DW_AT_decl_line : 99 + <66f6> DW_AT_decl_column : 7 + <66f7> DW_AT_type : <0x6247> + <66fb> DW_AT_location : 0x29d1 (location list) + <2><66ff>: Abbrev Number: 28 (DW_TAG_lexical_block) + <6700> DW_AT_ranges : 0x700 + <3><6704>: Abbrev Number: 26 (DW_TAG_variable) + <6705> DW_AT_name : (indirect string, offset: 0x4821): stream + <6709> DW_AT_decl_file : 1 + <670a> DW_AT_decl_line : 105 + <670b> DW_AT_decl_column : 17 + <670c> DW_AT_type : <0x66a7> + <6710> DW_AT_location : 0x29f4 (location list) + <3><6714>: Abbrev Number: 27 (DW_TAG_variable) + <6715> DW_AT_name : i + <6717> DW_AT_decl_file : 1 + <6718> DW_AT_decl_line : 106 + <6719> DW_AT_decl_column : 11 + <671a> DW_AT_type : <0x6247> + <671e> DW_AT_location : 0x2a2a (location list) + <3><6722>: Abbrev Number: 29 (DW_TAG_GNU_call_site) + <6723> DW_AT_low_pc : 0xcac + <672b> DW_AT_abstract_origin: <0x688d> + <672f> DW_AT_sibling : <0x673a> + <4><6733>: Abbrev Number: 30 (DW_TAG_GNU_call_site_parameter) + <6734> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <6736> DW_AT_GNU_call_site_value: 2 byte block: 78 0 (DW_OP_breg8 (s0): 0) + <4><6739>: Abbrev Number: 0 + <3><673a>: Abbrev Number: 29 (DW_TAG_GNU_call_site) + <673b> DW_AT_low_pc : 0xcb8 + <6743> DW_AT_abstract_origin: <0x6899> + <6747> DW_AT_sibling : <0x6752> + <4><674b>: Abbrev Number: 30 (DW_TAG_GNU_call_site_parameter) + <674c> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <674e> DW_AT_GNU_call_site_value: 2 byte block: 78 20 (DW_OP_breg8 (s0): 32) + <4><6751>: Abbrev Number: 0 + <3><6752>: Abbrev Number: 29 (DW_TAG_GNU_call_site) + <6753> DW_AT_low_pc : 0xcc4 + <675b> DW_AT_abstract_origin: <0x6899> + <675f> DW_AT_sibling : <0x676b> + <4><6763>: Abbrev Number: 30 (DW_TAG_GNU_call_site_parameter) + <6764> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <6766> DW_AT_GNU_call_site_value: 3 byte block: 78 e0 1 (DW_OP_breg8 (s0): 224) + <4><676a>: Abbrev Number: 0 + <3><676b>: Abbrev Number: 29 (DW_TAG_GNU_call_site) + <676c> DW_AT_low_pc : 0xcd0 + <6774> DW_AT_abstract_origin: <0x6899> + <6778> DW_AT_sibling : <0x6784> + <4><677c>: Abbrev Number: 30 (DW_TAG_GNU_call_site_parameter) + <677d> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <677f> DW_AT_GNU_call_site_value: 3 byte block: 78 a0 3 (DW_OP_breg8 (s0): 416) + <4><6783>: Abbrev Number: 0 + <3><6784>: Abbrev Number: 29 (DW_TAG_GNU_call_site) + <6785> DW_AT_low_pc : 0xce2 + <678d> DW_AT_abstract_origin: <0x68a5> + <6791> DW_AT_sibling : <0x679c> + <4><6795>: Abbrev Number: 30 (DW_TAG_GNU_call_site_parameter) + <6796> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <6798> DW_AT_GNU_call_site_value: 2 byte block: 78 0 (DW_OP_breg8 (s0): 0) + <4><679b>: Abbrev Number: 0 + <3><679c>: Abbrev Number: 31 (DW_TAG_GNU_call_site) + <679d> DW_AT_low_pc : 0xd02 + <67a5> DW_AT_abstract_origin: <0x6899> + <4><67a9>: Abbrev Number: 30 (DW_TAG_GNU_call_site_parameter) + <67aa> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <67ac> DW_AT_GNU_call_site_value: 2 byte block: 79 0 (DW_OP_breg9 (s1): 0) + <4><67af>: Abbrev Number: 0 + <3><67b0>: Abbrev Number: 0 + <2><67b1>: Abbrev Number: 0 + <1><67b2>: Abbrev Number: 7 (DW_TAG_pointer_type) + <67b3> DW_AT_byte_size : 8 + <67b4> DW_AT_type : <0x6641> + <1><67b8>: Abbrev Number: 24 (DW_TAG_subprogram) + <67b9> DW_AT_external : 1 + <67b9> DW_AT_name : (indirect string, offset: 0x4649): lib_flushall_unlocked + <67bd> DW_AT_decl_file : 1 + <67be> DW_AT_decl_line : 48 + <67bf> DW_AT_decl_column : 5 + <67c0> DW_AT_prototyped : 1 + <67c0> DW_AT_type : <0x6247> + <67c4> DW_AT_low_pc : 0xc30 + <67cc> DW_AT_high_pc : 0x64 + <67d4> DW_AT_frame_base : 1 byte block: 9c (DW_OP_call_frame_cfa) + <67d6> DW_AT_GNU_all_call_sites: 1 + <67d6> DW_AT_sibling : <0x688d> + <2><67da>: Abbrev Number: 25 (DW_TAG_formal_parameter) + <67db> DW_AT_name : (indirect string, offset: 0x491d): list + <67df> DW_AT_decl_file : 1 + <67e0> DW_AT_decl_line : 48 + <67e1> DW_AT_decl_column : 50 + <67e2> DW_AT_type : <0x67b2> + <67e6> DW_AT_location : 0x2a9e (location list) + <2><67ea>: Abbrev Number: 26 (DW_TAG_variable) + <67eb> DW_AT_name : (indirect string, offset: 0x4873): lasterrno + <67ef> DW_AT_decl_file : 1 + <67f0> DW_AT_decl_line : 50 + <67f1> DW_AT_decl_column : 7 + <67f2> DW_AT_type : <0x6247> + <67f6> DW_AT_location : 0x2aea (location list) + <2><67fa>: Abbrev Number: 27 (DW_TAG_variable) + <67fb> DW_AT_name : ret + <67ff> DW_AT_decl_file : 1 + <6800> DW_AT_decl_line : 51 + <6801> DW_AT_decl_column : 7 + <6802> DW_AT_type : <0x6247> + <6806> DW_AT_location : 0x2b34 (location list) + <2><680a>: Abbrev Number: 28 (DW_TAG_lexical_block) + <680b> DW_AT_ranges : 0x6c0 + <3><680f>: Abbrev Number: 26 (DW_TAG_variable) + <6810> DW_AT_name : (indirect string, offset: 0x4821): stream + <6814> DW_AT_decl_file : 1 + <6815> DW_AT_decl_line : 57 + <6816> DW_AT_decl_column : 17 + <6817> DW_AT_type : <0x66a7> + <681b> DW_AT_location : 0x2b57 (location list) + <3><681f>: Abbrev Number: 27 (DW_TAG_variable) + <6820> DW_AT_name : i + <6822> DW_AT_decl_file : 1 + <6823> DW_AT_decl_line : 58 + <6824> DW_AT_decl_column : 11 + <6825> DW_AT_type : <0x6247> + <6829> DW_AT_location : 0x2b8d (location list) + <3><682d>: Abbrev Number: 29 (DW_TAG_GNU_call_site) + <682e> DW_AT_low_pc : 0xc4a + <6836> DW_AT_abstract_origin: <0x68b1> + <683a> DW_AT_sibling : <0x6845> + <4><683e>: Abbrev Number: 30 (DW_TAG_GNU_call_site_parameter) + <683f> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <6841> DW_AT_GNU_call_site_value: 2 byte block: 78 20 (DW_OP_breg8 (s0): 32) + <4><6844>: Abbrev Number: 0 + <3><6845>: Abbrev Number: 29 (DW_TAG_GNU_call_site) + <6846> DW_AT_low_pc : 0xc56 + <684e> DW_AT_abstract_origin: <0x68b1> + <6852> DW_AT_sibling : <0x685e> + <4><6856>: Abbrev Number: 30 (DW_TAG_GNU_call_site_parameter) + <6857> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <6859> DW_AT_GNU_call_site_value: 3 byte block: 78 e0 1 (DW_OP_breg8 (s0): 224) + <4><685d>: Abbrev Number: 0 + <3><685e>: Abbrev Number: 29 (DW_TAG_GNU_call_site) + <685f> DW_AT_low_pc : 0xc62 + <6867> DW_AT_abstract_origin: <0x68b1> + <686b> DW_AT_sibling : <0x6877> + <4><686f>: Abbrev Number: 30 (DW_TAG_GNU_call_site_parameter) + <6870> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <6872> DW_AT_GNU_call_site_value: 3 byte block: 78 a0 3 (DW_OP_breg8 (s0): 416) + <4><6876>: Abbrev Number: 0 + <3><6877>: Abbrev Number: 31 (DW_TAG_GNU_call_site) + <6878> DW_AT_low_pc : 0xc88 + <6880> DW_AT_abstract_origin: <0x68b1> + <4><6884>: Abbrev Number: 30 (DW_TAG_GNU_call_site_parameter) + <6885> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <6887> DW_AT_GNU_call_site_value: 2 byte block: 78 0 (DW_OP_breg8 (s0): 0) + <4><688a>: Abbrev Number: 0 + <3><688b>: Abbrev Number: 0 + <2><688c>: Abbrev Number: 0 + <1><688d>: Abbrev Number: 32 (DW_TAG_subprogram) + <688e> DW_AT_external : 1 + <688e> DW_AT_declaration : 1 + <688e> DW_AT_linkage_name: (indirect string, offset: 0x48d9): nxmutex_lock + <6892> DW_AT_name : (indirect string, offset: 0x48d9): nxmutex_lock + <6896> DW_AT_decl_file : 7 + <6897> DW_AT_decl_line : 169 + <6898> DW_AT_decl_column : 5 + <1><6899>: Abbrev Number: 32 (DW_TAG_subprogram) + <689a> DW_AT_external : 1 + <689a> DW_AT_declaration : 1 + <689a> DW_AT_linkage_name: (indirect string, offset: 0x4771): lib_fflush + <689e> DW_AT_name : (indirect string, offset: 0x4771): lib_fflush + <68a2> DW_AT_decl_file : 10 + <68a3> DW_AT_decl_line : 221 + <68a4> DW_AT_decl_column : 9 + <1><68a5>: Abbrev Number: 32 (DW_TAG_subprogram) + <68a6> DW_AT_external : 1 + <68a6> DW_AT_declaration : 1 + <68a6> DW_AT_linkage_name: (indirect string, offset: 0x49a5): nxmutex_unlock + <68aa> DW_AT_name : (indirect string, offset: 0x49a5): nxmutex_unlock + <68ae> DW_AT_decl_file : 7 + <68af> DW_AT_decl_line : 240 + <68b0> DW_AT_decl_column : 5 + <1><68b1>: Abbrev Number: 32 (DW_TAG_subprogram) + <68b2> DW_AT_external : 1 + <68b2> DW_AT_declaration : 1 + <68b2> DW_AT_linkage_name: (indirect string, offset: 0x4623): lib_fflush_unlocked + <68b6> DW_AT_name : (indirect string, offset: 0x4623): lib_fflush_unlocked + <68ba> DW_AT_decl_file : 10 + <68bb> DW_AT_decl_line : 222 + <68bc> DW_AT_decl_column : 9 + <1><68bd>: Abbrev Number: 0 + Compilation Unit @ offset 0x68be: + Length: 0x125 (32-bit) + Version: 4 + Abbrev Offset: 0x2162 + Pointer Size: 8 + <0><68c9>: Abbrev Number: 1 (DW_TAG_compile_unit) + <68ca> DW_AT_producer : (indirect string, offset: 0x4b42): GNU C17 10.2.0 -mcmodel=medany -march=rv64imafdc -mabi=lp64d -march=rv64imafdc -g -Os -fno-common -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections + <68ce> DW_AT_language : 12 (ANSI C99) + <68cf> DW_AT_name : (indirect string, offset: 0x4a95): assert/lib_assert.c + <68d3> DW_AT_comp_dir : (indirect string, offset: 0x4b20): /Users/Luppy/ox64/nuttx/libs/libc + <68d7> DW_AT_ranges : 0x770 + <68db> DW_AT_low_pc : 0x0 + <68e3> DW_AT_stmt_list : 0x3f98 + <1><68e7>: Abbrev Number: 2 (DW_TAG_base_type) + <68e8> DW_AT_byte_size : 1 + <68e9> DW_AT_encoding : 6 (signed char) + <68ea> DW_AT_name : (indirect string, offset: 0x4ae6): signed char + <1><68ee>: Abbrev Number: 2 (DW_TAG_base_type) + <68ef> DW_AT_byte_size : 1 + <68f0> DW_AT_encoding : 8 (unsigned char) + <68f1> DW_AT_name : (indirect string, offset: 0x4ab1): unsigned char + <1><68f5>: Abbrev Number: 2 (DW_TAG_base_type) + <68f6> DW_AT_byte_size : 2 + <68f7> DW_AT_encoding : 5 (signed) + <68f8> DW_AT_name : (indirect string, offset: 0x4b0d): short int + <1><68fc>: Abbrev Number: 2 (DW_TAG_base_type) + <68fd> DW_AT_byte_size : 2 + <68fe> DW_AT_encoding : 7 (unsigned) + <68ff> DW_AT_name : (indirect string, offset: 0x4ad3): short unsigned int + <1><6903>: Abbrev Number: 3 (DW_TAG_base_type) + <6904> DW_AT_byte_size : 4 + <6905> DW_AT_encoding : 5 (signed) + <6906> DW_AT_name : int + <1><690a>: Abbrev Number: 2 (DW_TAG_base_type) + <690b> DW_AT_byte_size : 4 + <690c> DW_AT_encoding : 7 (unsigned) + <690d> DW_AT_name : (indirect string, offset: 0x4a57): unsigned int + <1><6911>: Abbrev Number: 2 (DW_TAG_base_type) + <6912> DW_AT_byte_size : 8 + <6913> DW_AT_encoding : 5 (signed) + <6914> DW_AT_name : (indirect string, offset: 0x4ac4): long int + <1><6918>: Abbrev Number: 2 (DW_TAG_base_type) + <6919> DW_AT_byte_size : 8 + <691a> DW_AT_encoding : 7 (unsigned) + <691b> DW_AT_name : (indirect string, offset: 0x4a6c): long unsigned int + <1><691f>: Abbrev Number: 2 (DW_TAG_base_type) + <6920> DW_AT_byte_size : 8 + <6921> DW_AT_encoding : 7 (unsigned) + <6922> DW_AT_name : (indirect string, offset: 0x4a7e): long long unsigned int + <1><6926>: Abbrev Number: 2 (DW_TAG_base_type) + <6927> DW_AT_byte_size : 1 + <6928> DW_AT_encoding : 8 (unsigned char) + <6929> DW_AT_name : (indirect string, offset: 0x4abf): char + <1><692d>: Abbrev Number: 4 (DW_TAG_const_type) + <692e> DW_AT_type : <0x6926> + <1><6932>: Abbrev Number: 2 (DW_TAG_base_type) + <6933> DW_AT_byte_size : 8 + <6934> DW_AT_encoding : 5 (signed) + <6935> DW_AT_name : (indirect string, offset: 0x4a49): long long int + <1><6939>: Abbrev Number: 2 (DW_TAG_base_type) + <693a> DW_AT_byte_size : 16 + <693b> DW_AT_encoding : 4 (float) + <693c> DW_AT_name : (indirect string, offset: 0x4afb): long double + <1><6940>: Abbrev Number: 5 (DW_TAG_pointer_type) + <6941> DW_AT_byte_size : 8 + <6942> DW_AT_type : <0x692d> + <1><6946>: Abbrev Number: 2 (DW_TAG_base_type) + <6947> DW_AT_byte_size : 1 + <6948> DW_AT_encoding : 2 (boolean) + <6949> DW_AT_name : (indirect string, offset: 0x4acd): _Bool + <1><694d>: Abbrev Number: 6 (DW_TAG_subprogram) + <694e> DW_AT_external : 1 + <694e> DW_AT_name : (indirect string, offset: 0x4af2): __assert + <6952> DW_AT_decl_file : 1 + <6953> DW_AT_decl_line : 34 + <6954> DW_AT_decl_column : 6 + <6955> DW_AT_prototyped : 1 + <6955> DW_AT_noreturn : 1 + <6955> DW_AT_low_pc : 0xd0e + <695d> DW_AT_high_pc : 0x16 + <6965> DW_AT_frame_base : 1 byte block: 9c (DW_OP_call_frame_cfa) + <6967> DW_AT_GNU_all_call_sites: 1 + <6967> DW_AT_sibling : <0x69ce> + <2><696b>: Abbrev Number: 7 (DW_TAG_formal_parameter) + <696c> DW_AT_name : (indirect string, offset: 0x4b17): filename + <6970> DW_AT_decl_file : 1 + <6971> DW_AT_decl_line : 34 + <6972> DW_AT_decl_column : 31 + <6973> DW_AT_type : <0x6940> + <6977> DW_AT_location : 0x2c01 (location list) + <2><697b>: Abbrev Number: 7 (DW_TAG_formal_parameter) + <697c> DW_AT_name : (indirect string, offset: 0x4a64): linenum + <6980> DW_AT_decl_file : 1 + <6981> DW_AT_decl_line : 34 + <6982> DW_AT_decl_column : 45 + <6983> DW_AT_type : <0x6903> + <6987> DW_AT_location : 0x2c3a (location list) + <2><698b>: Abbrev Number: 8 (DW_TAG_formal_parameter) + <698c> DW_AT_name : msg + <6990> DW_AT_decl_file : 1 + <6991> DW_AT_decl_line : 34 + <6992> DW_AT_decl_column : 70 + <6993> DW_AT_type : <0x6940> + <6997> DW_AT_location : 0x2c73 (location list) + <2><699b>: Abbrev Number: 9 (DW_TAG_GNU_call_site) + <699c> DW_AT_low_pc : 0xd1c + <69a4> DW_AT_abstract_origin: <0x69ce> + <69a8> DW_AT_sibling : <0x69c0> + <3><69ac>: Abbrev Number: 10 (DW_TAG_GNU_call_site_parameter) + <69ad> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <69af> DW_AT_GNU_call_site_value: 3 byte block: f3 1 5a (DW_OP_GNU_entry_value: (DW_OP_reg10 (a0))) + <3><69b3>: Abbrev Number: 10 (DW_TAG_GNU_call_site_parameter) + <69b4> DW_AT_location : 1 byte block: 5c (DW_OP_reg12 (a2)) + <69b6> DW_AT_GNU_call_site_value: 3 byte block: f3 1 5c (DW_OP_GNU_entry_value: (DW_OP_reg12 (a2))) + <3><69ba>: Abbrev Number: 10 (DW_TAG_GNU_call_site_parameter) + <69bb> DW_AT_location : 1 byte block: 5d (DW_OP_reg13 (a3)) + <69bd> DW_AT_GNU_call_site_value: 1 byte block: 30 (DW_OP_lit0) + <3><69bf>: Abbrev Number: 0 + <2><69c0>: Abbrev Number: 11 (DW_TAG_GNU_call_site) + <69c1> DW_AT_low_pc : 0xd24 + <69c9> DW_AT_abstract_origin: <0x69da> + <2><69cd>: Abbrev Number: 0 + <1><69ce>: Abbrev Number: 12 (DW_TAG_subprogram) + <69cf> DW_AT_external : 1 + <69cf> DW_AT_declaration : 1 + <69cf> DW_AT_linkage_name: (indirect string, offset: 0x4aa9): _assert + <69d3> DW_AT_name : (indirect string, offset: 0x4aa9): _assert + <69d7> DW_AT_decl_file : 2 + <69d8> DW_AT_decl_line : 180 + <69d9> DW_AT_decl_column : 6 + <1><69da>: Abbrev Number: 12 (DW_TAG_subprogram) + <69db> DW_AT_external : 1 + <69db> DW_AT_declaration : 1 + <69db> DW_AT_linkage_name: (indirect string, offset: 0x4b07): abort + <69df> DW_AT_name : (indirect string, offset: 0x4b07): abort + <69e3> DW_AT_decl_file : 3 + <69e4> DW_AT_decl_line : 171 + <69e5> DW_AT_decl_column : 11 + <1><69e6>: Abbrev Number: 0 + Compilation Unit @ offset 0x69e7: + Length: 0xfb (32-bit) + Version: 4 + Abbrev Offset: 0x2214 + Pointer Size: 8 + <0><69f2>: Abbrev Number: 1 (DW_TAG_compile_unit) + <69f3> DW_AT_producer : (indirect string, offset: 0x4d02): GNU C17 10.2.0 -mcmodel=medany -march=rv64imafdc -mabi=lp64d -march=rv64imafdc -g -Os -fno-common -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections + <69f7> DW_AT_language : 12 (ANSI C99) + <69f8> DW_AT_name : (indirect string, offset: 0x4cbf): pthread/pthread_exit.c + <69fc> DW_AT_comp_dir : (indirect string, offset: 0x4ce0): /Users/Luppy/ox64/nuttx/libs/libc + <6a00> DW_AT_ranges : 0x790 + <6a04> DW_AT_low_pc : 0x0 + <6a0c> DW_AT_stmt_list : 0x404a + <1><6a10>: Abbrev Number: 2 (DW_TAG_base_type) + <6a11> DW_AT_byte_size : 1 + <6a12> DW_AT_encoding : 6 (signed char) + <6a13> DW_AT_name : (indirect string, offset: 0x4ca7): signed char + <1><6a17>: Abbrev Number: 2 (DW_TAG_base_type) + <6a18> DW_AT_byte_size : 1 + <6a19> DW_AT_encoding : 8 (unsigned char) + <6a1a> DW_AT_name : (indirect string, offset: 0x4c64): unsigned char + <1><6a1e>: Abbrev Number: 2 (DW_TAG_base_type) + <6a1f> DW_AT_byte_size : 2 + <6a20> DW_AT_encoding : 5 (signed) + <6a21> DW_AT_name : (indirect string, offset: 0x4cd6): short int + <1><6a25>: Abbrev Number: 2 (DW_TAG_base_type) + <6a26> DW_AT_byte_size : 2 + <6a27> DW_AT_encoding : 7 (unsigned) + <6a28> DW_AT_name : (indirect string, offset: 0x4c94): short unsigned int + <1><6a2c>: Abbrev Number: 3 (DW_TAG_base_type) + <6a2d> DW_AT_byte_size : 4 + <6a2e> DW_AT_encoding : 5 (signed) + <6a2f> DW_AT_name : int + <1><6a33>: Abbrev Number: 2 (DW_TAG_base_type) + <6a34> DW_AT_byte_size : 4 + <6a35> DW_AT_encoding : 7 (unsigned) + <6a36> DW_AT_name : (indirect string, offset: 0x4bfd): unsigned int + <1><6a3a>: Abbrev Number: 2 (DW_TAG_base_type) + <6a3b> DW_AT_byte_size : 8 + <6a3c> DW_AT_encoding : 5 (signed) + <6a3d> DW_AT_name : (indirect string, offset: 0x4c77): long int + <1><6a41>: Abbrev Number: 2 (DW_TAG_base_type) + <6a42> DW_AT_byte_size : 8 + <6a43> DW_AT_encoding : 7 (unsigned) + <6a44> DW_AT_name : (indirect string, offset: 0x4c1a): long unsigned int + <1><6a48>: Abbrev Number: 2 (DW_TAG_base_type) + <6a49> DW_AT_byte_size : 8 + <6a4a> DW_AT_encoding : 7 (unsigned) + <6a4b> DW_AT_name : (indirect string, offset: 0x4c40): long long unsigned int + <1><6a4f>: Abbrev Number: 4 (DW_TAG_pointer_type) + <6a50> DW_AT_byte_size : 8 + <1><6a51>: Abbrev Number: 2 (DW_TAG_base_type) + <6a52> DW_AT_byte_size : 1 + <6a53> DW_AT_encoding : 8 (unsigned char) + <6a54> DW_AT_name : (indirect string, offset: 0x4c72): char + <1><6a58>: Abbrev Number: 2 (DW_TAG_base_type) + <6a59> DW_AT_byte_size : 8 + <6a5a> DW_AT_encoding : 5 (signed) + <6a5b> DW_AT_name : (indirect string, offset: 0x4c86): long long int + <1><6a5f>: Abbrev Number: 2 (DW_TAG_base_type) + <6a60> DW_AT_byte_size : 16 + <6a61> DW_AT_encoding : 4 (float) + <6a62> DW_AT_name : (indirect string, offset: 0x4cb3): long double + <1><6a66>: Abbrev Number: 2 (DW_TAG_base_type) + <6a67> DW_AT_byte_size : 1 + <6a68> DW_AT_encoding : 2 (boolean) + <6a69> DW_AT_name : (indirect string, offset: 0x4c80): _Bool + <1><6a6d>: Abbrev Number: 5 (DW_TAG_subprogram) + <6a6e> DW_AT_external : 1 + <6a6e> DW_AT_name : (indirect string, offset: 0x4c57): pthread_exit + <6a72> DW_AT_decl_file : 4 + <6a73> DW_AT_decl_line : 537 + <6a75> DW_AT_decl_column : 6 + <6a76> DW_AT_prototyped : 1 + <6a76> DW_AT_noreturn : 1 + <6a76> DW_AT_low_pc : 0xd24 + <6a7e> DW_AT_high_pc : 0x1e + <6a86> DW_AT_frame_base : 1 byte block: 9c (DW_OP_call_frame_cfa) + <6a88> DW_AT_GNU_all_call_sites: 1 + <6a88> DW_AT_sibling : <0x6acd> + <2><6a8c>: Abbrev Number: 6 (DW_TAG_formal_parameter) + <6a8d> DW_AT_name : (indirect string, offset: 0x4bf2): exit_value + <6a91> DW_AT_decl_file : 1 + <6a92> DW_AT_decl_line : 54 + <6a93> DW_AT_decl_column : 29 + <6a94> DW_AT_type : <0x6a4f> + <6a98> DW_AT_location : 0x2cac (location list) + <2><6a9c>: Abbrev Number: 7 (DW_TAG_GNU_call_site) + <6a9d> DW_AT_low_pc : 0xd38 + <6aa5> DW_AT_abstract_origin: <0x6acd> + <6aa9> DW_AT_sibling : <0x6ab8> + <3><6aad>: Abbrev Number: 8 (DW_TAG_GNU_call_site_parameter) + <6aae> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <6ab0> DW_AT_GNU_call_site_value: 1 byte block: 31 (DW_OP_lit1) + <3><6ab2>: Abbrev Number: 8 (DW_TAG_GNU_call_site_parameter) + <6ab3> DW_AT_location : 1 byte block: 5b (DW_OP_reg11 (a1)) + <6ab5> DW_AT_GNU_call_site_value: 1 byte block: 30 (DW_OP_lit0) + <3><6ab7>: Abbrev Number: 0 + <2><6ab8>: Abbrev Number: 9 (DW_TAG_GNU_call_site) + <6ab9> DW_AT_low_pc : 0xd42 + <6ac1> DW_AT_abstract_origin: <0x6ad9> + <3><6ac5>: Abbrev Number: 8 (DW_TAG_GNU_call_site_parameter) + <6ac6> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <6ac8> DW_AT_GNU_call_site_value: 2 byte block: 78 0 (DW_OP_breg8 (s0): 0) + <3><6acb>: Abbrev Number: 0 + <2><6acc>: Abbrev Number: 0 + <1><6acd>: Abbrev Number: 10 (DW_TAG_subprogram) + <6ace> DW_AT_external : 1 + <6ace> DW_AT_declaration : 1 + <6ace> DW_AT_linkage_name: (indirect string, offset: 0x4c2c): task_setcancelstate + <6ad2> DW_AT_name : (indirect string, offset: 0x4c2c): task_setcancelstate + <6ad6> DW_AT_decl_file : 2 + <6ad7> DW_AT_decl_line : 232 + <6ad8> DW_AT_decl_column : 8 + <1><6ad9>: Abbrev Number: 10 (DW_TAG_subprogram) + <6ada> DW_AT_external : 1 + <6ada> DW_AT_declaration : 1 + <6ada> DW_AT_linkage_name: (indirect string, offset: 0x4c0a): nx_pthread_exit + <6ade> DW_AT_name : (indirect string, offset: 0x4c0a): nx_pthread_exit + <6ae2> DW_AT_decl_file : 3 + <6ae3> DW_AT_decl_line : 164 + <6ae4> DW_AT_decl_column : 6 + <1><6ae5>: Abbrev Number: 0 + Compilation Unit @ offset 0x6ae6: + Length: 0xb2 (32-bit) + Version: 4 + Abbrev Offset: 0x22ac + Pointer Size: 8 + <0><6af1>: Abbrev Number: 1 (DW_TAG_compile_unit) + <6af2> DW_AT_producer : (indirect string, offset: 0x4e01): GNU C17 10.2.0 -mcmodel=medany -march=rv64imafdc -mabi=lp64d -march=rv64imafdc -g -Os -fno-common -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections + <6af6> DW_AT_language : 12 (ANSI C99) + <6af7> DW_AT_name : (indirect string, offset: 0x4ec0): stdlib/lib_abort.c + <6afb> DW_AT_comp_dir : (indirect string, offset: 0x4f02): /Users/Luppy/ox64/nuttx/libs/libc + <6aff> DW_AT_ranges : 0x7b0 + <6b03> DW_AT_low_pc : 0x0 + <6b0b> DW_AT_stmt_list : 0x4142 + <1><6b0f>: Abbrev Number: 2 (DW_TAG_base_type) + <6b10> DW_AT_byte_size : 1 + <6b11> DW_AT_encoding : 6 (signed char) + <6b12> DW_AT_name : (indirect string, offset: 0x4ee6): signed char + <1><6b16>: Abbrev Number: 2 (DW_TAG_base_type) + <6b17> DW_AT_byte_size : 1 + <6b18> DW_AT_encoding : 8 (unsigned char) + <6b19> DW_AT_name : (indirect string, offset: 0x4dee): unsigned char + <1><6b1d>: Abbrev Number: 2 (DW_TAG_base_type) + <6b1e> DW_AT_byte_size : 2 + <6b1f> DW_AT_encoding : 5 (signed) + <6b20> DW_AT_name : (indirect string, offset: 0x4ef8): short int + <1><6b24>: Abbrev Number: 2 (DW_TAG_base_type) + <6b25> DW_AT_byte_size : 2 + <6b26> DW_AT_encoding : 7 (unsigned) + <6b27> DW_AT_name : (indirect string, offset: 0x4ed3): short unsigned int + <1><6b2b>: Abbrev Number: 3 (DW_TAG_base_type) + <6b2c> DW_AT_byte_size : 4 + <6b2d> DW_AT_encoding : 5 (signed) + <6b2e> DW_AT_name : int + <1><6b32>: Abbrev Number: 2 (DW_TAG_base_type) + <6b33> DW_AT_byte_size : 4 + <6b34> DW_AT_encoding : 7 (unsigned) + <6b35> DW_AT_name : (indirect string, offset: 0x4db2): unsigned int + <1><6b39>: Abbrev Number: 2 (DW_TAG_base_type) + <6b3a> DW_AT_byte_size : 8 + <6b3b> DW_AT_encoding : 5 (signed) + <6b3c> DW_AT_name : (indirect string, offset: 0x4eb1): long int + <1><6b40>: Abbrev Number: 2 (DW_TAG_base_type) + <6b41> DW_AT_byte_size : 8 + <6b42> DW_AT_encoding : 7 (unsigned) + <6b43> DW_AT_name : (indirect string, offset: 0x4dbf): long unsigned int + <1><6b47>: Abbrev Number: 2 (DW_TAG_base_type) + <6b48> DW_AT_byte_size : 8 + <6b49> DW_AT_encoding : 7 (unsigned) + <6b4a> DW_AT_name : (indirect string, offset: 0x4dd1): long long unsigned int + <1><6b4e>: Abbrev Number: 2 (DW_TAG_base_type) + <6b4f> DW_AT_byte_size : 1 + <6b50> DW_AT_encoding : 8 (unsigned char) + <6b51> DW_AT_name : (indirect string, offset: 0x4dfc): char + <1><6b55>: Abbrev Number: 2 (DW_TAG_base_type) + <6b56> DW_AT_byte_size : 1 + <6b57> DW_AT_encoding : 2 (boolean) + <6b58> DW_AT_name : (indirect string, offset: 0x4eba): _Bool + <1><6b5c>: Abbrev Number: 4 (DW_TAG_subprogram) + <6b5d> DW_AT_external : 1 + <6b5d> DW_AT_name : (indirect string, offset: 0x4ef2): abort + <6b61> DW_AT_decl_file : 2 + <6b62> DW_AT_decl_line : 171 + <6b63> DW_AT_decl_column : 11 + <6b64> DW_AT_prototyped : 1 + <6b64> DW_AT_noreturn : 1 + <6b64> DW_AT_low_pc : 0xd42 + <6b6c> DW_AT_high_pc : 0xe + <6b74> DW_AT_frame_base : 1 byte block: 9c (DW_OP_call_frame_cfa) + <6b76> DW_AT_GNU_all_call_sites: 1 + <6b76> DW_AT_sibling : <0x6b8e> + <2><6b7a>: Abbrev Number: 5 (DW_TAG_GNU_call_site) + <6b7b> DW_AT_low_pc : 0xd50 + <6b83> DW_AT_abstract_origin: <0x6b8e> + <3><6b87>: Abbrev Number: 6 (DW_TAG_GNU_call_site_parameter) + <6b88> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <6b8a> DW_AT_GNU_call_site_value: 1 byte block: 31 (DW_OP_lit1) + <3><6b8c>: Abbrev Number: 0 + <2><6b8d>: Abbrev Number: 0 + <1><6b8e>: Abbrev Number: 7 (DW_TAG_subprogram) + <6b8f> DW_AT_external : 1 + <6b8f> DW_AT_declaration : 1 + <6b8f> DW_AT_linkage_name: (indirect string, offset: 0x4de8): _exit + <6b93> DW_AT_name : (indirect string, offset: 0x4de8): _exit + <6b97> DW_AT_decl_file : 3 + <6b98> DW_AT_decl_line : 318 + <6b9a> DW_AT_decl_column : 9 + <1><6b9b>: Abbrev Number: 0 + Compilation Unit @ offset 0x6b9c: + Length: 0x530 (32-bit) + Version: 4 + Abbrev Offset: 0x231f + Pointer Size: 8 + <0><6ba7>: Abbrev Number: 1 (DW_TAG_compile_unit) + <6ba8> DW_AT_producer : (indirect string, offset: 0x5777): GNU C17 10.2.0 -mcmodel=medany -march=rv64imafdc -mabi=lp64d -march=rv64imafdc -g -Os -fno-common -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections + <6bac> DW_AT_language : 12 (ANSI C99) + <6bad> DW_AT_name : (indirect string, offset: 0x510b): proxies/PROXY__assert.c + <6bb1> DW_AT_comp_dir : (indirect string, offset: 0x55bb): /Users/Luppy/ox64/nuttx/syscall + <6bb5> DW_AT_ranges : 0x7d0 + <6bb9> DW_AT_low_pc : 0x0 + <6bc1> DW_AT_stmt_list : 0x41ec + <1><6bc5>: Abbrev Number: 2 (DW_TAG_base_type) + <6bc6> DW_AT_byte_size : 1 + <6bc7> DW_AT_encoding : 6 (signed char) + <6bc8> DW_AT_name : (indirect string, offset: 0x509e): signed char + <1><6bcc>: Abbrev Number: 2 (DW_TAG_base_type) + <6bcd> DW_AT_byte_size : 1 + <6bce> DW_AT_encoding : 8 (unsigned char) + <6bcf> DW_AT_name : (indirect string, offset: 0x54ce): unsigned char + <1><6bd3>: Abbrev Number: 2 (DW_TAG_base_type) + <6bd4> DW_AT_byte_size : 2 + <6bd5> DW_AT_encoding : 5 (signed) + <6bd6> DW_AT_name : (indirect string, offset: 0x550b): short int + <1><6bda>: Abbrev Number: 2 (DW_TAG_base_type) + <6bdb> DW_AT_byte_size : 2 + <6bdc> DW_AT_encoding : 7 (unsigned) + <6bdd> DW_AT_name : (indirect string, offset: 0x5290): short unsigned int + <1><6be1>: Abbrev Number: 3 (DW_TAG_base_type) + <6be2> DW_AT_byte_size : 4 + <6be3> DW_AT_encoding : 5 (signed) + <6be4> DW_AT_name : int + <1><6be8>: Abbrev Number: 2 (DW_TAG_base_type) + <6be9> DW_AT_byte_size : 4 + <6bea> DW_AT_encoding : 7 (unsigned) + <6beb> DW_AT_name : (indirect string, offset: 0x522c): unsigned int + <1><6bef>: Abbrev Number: 2 (DW_TAG_base_type) + <6bf0> DW_AT_byte_size : 8 + <6bf1> DW_AT_encoding : 5 (signed) + <6bf2> DW_AT_name : (indirect string, offset: 0x4fe3): long int + <1><6bf6>: Abbrev Number: 2 (DW_TAG_base_type) + <6bf7> DW_AT_byte_size : 8 + <6bf8> DW_AT_encoding : 7 (unsigned) + <6bf9> DW_AT_name : (indirect string, offset: 0x5254): long unsigned int + <1><6bfd>: Abbrev Number: 4 (DW_TAG_typedef) + <6bfe> DW_AT_name : (indirect string, offset: 0x533f): _size_t + <6c02> DW_AT_decl_file : 3 + <6c03> DW_AT_decl_line : 93 + <6c04> DW_AT_decl_column : 28 + <6c05> DW_AT_type : <0x6bf6> + <1><6c09>: Abbrev Number: 2 (DW_TAG_base_type) + <6c0a> DW_AT_byte_size : 8 + <6c0b> DW_AT_encoding : 7 (unsigned) + <6c0c> DW_AT_name : (indirect string, offset: 0x5005): long long unsigned int + <1><6c10>: Abbrev Number: 4 (DW_TAG_typedef) + <6c11> DW_AT_name : (indirect string, offset: 0x4f77): uintptr_t + <6c15> DW_AT_decl_file : 4 + <6c16> DW_AT_decl_line : 239 + <6c17> DW_AT_decl_column : 29 + <6c18> DW_AT_type : <0x6bfd> + <1><6c1c>: Abbrev Number: 5 (DW_TAG_enumeration_type) + <6c1d> DW_AT_encoding : 7 (unsigned) + <6c1e> DW_AT_byte_size : 4 + <6c1f> DW_AT_type : <0x6be8> + <6c23> DW_AT_decl_file : 5 + <6c24> DW_AT_decl_line : 57 + <6c25> DW_AT_decl_column : 1 + <6c26> DW_AT_sibling : <0x6f67> + <2><6c2a>: Abbrev Number: 6 (DW_TAG_enumerator) + <6c2b> DW_AT_name : (indirect string, offset: 0x53b7): SYS__exit + <6c2f> DW_AT_const_value : 8 + <2><6c30>: Abbrev Number: 6 (DW_TAG_enumerator) + <6c31> DW_AT_name : (indirect string, offset: 0x5578): SYS__assert + <6c35> DW_AT_const_value : 9 + <2><6c36>: Abbrev Number: 6 (DW_TAG_enumerator) + <6c37> DW_AT_name : (indirect string, offset: 0x51fb): SYS_getpid + <6c3b> DW_AT_const_value : 10 + <2><6c3c>: Abbrev Number: 6 (DW_TAG_enumerator) + <6c3d> DW_AT_name : (indirect string, offset: 0x546e): SYS_gettid + <6c41> DW_AT_const_value : 11 + <2><6c42>: Abbrev Number: 6 (DW_TAG_enumerator) + <6c43> DW_AT_name : (indirect string, offset: 0x58d6): SYS_prctl + <6c47> DW_AT_const_value : 12 + <2><6c48>: Abbrev Number: 6 (DW_TAG_enumerator) + <6c49> DW_AT_name : (indirect string, offset: 0x5060): SYS_sched_getparam + <6c4d> DW_AT_const_value : 13 + <2><6c4e>: Abbrev Number: 6 (DW_TAG_enumerator) + <6c4f> DW_AT_name : (indirect string, offset: 0x58bf): SYS_sched_getscheduler + <6c53> DW_AT_const_value : 14 + <2><6c54>: Abbrev Number: 6 (DW_TAG_enumerator) + <6c55> DW_AT_name : (indirect string, offset: 0x53e9): SYS_sched_lock + <6c59> DW_AT_const_value : 15 + <2><6c5a>: Abbrev Number: 6 (DW_TAG_enumerator) + <6c5b> DW_AT_name : (indirect string, offset: 0x5743): SYS_sched_lockcount + <6c5f> DW_AT_const_value : 16 + <2><6c60>: Abbrev Number: 6 (DW_TAG_enumerator) + <6c61> DW_AT_name : (indirect string, offset: 0x5685): SYS_sched_rr_get_interval + <6c65> DW_AT_const_value : 17 + <2><6c66>: Abbrev Number: 6 (DW_TAG_enumerator) + <6c67> DW_AT_name : (indirect string, offset: 0x5672): SYS_sched_setparam + <6c6b> DW_AT_const_value : 18 + <2><6c6c>: Abbrev Number: 6 (DW_TAG_enumerator) + <6c6d> DW_AT_name : (indirect string, offset: 0x5355): SYS_sched_setscheduler + <6c71> DW_AT_const_value : 19 + <2><6c72>: Abbrev Number: 6 (DW_TAG_enumerator) + <6c73> DW_AT_name : (indirect string, offset: 0x587b): SYS_sched_unlock + <6c77> DW_AT_const_value : 20 + <2><6c78>: Abbrev Number: 6 (DW_TAG_enumerator) + <6c79> DW_AT_name : (indirect string, offset: 0x4f8b): SYS_sched_yield + <6c7d> DW_AT_const_value : 21 + <2><6c7e>: Abbrev Number: 6 (DW_TAG_enumerator) + <6c7f> DW_AT_name : (indirect string, offset: 0x55a1): SYS_nxsched_get_stackinfo + <6c83> DW_AT_const_value : 22 + <2><6c84>: Abbrev Number: 6 (DW_TAG_enumerator) + <6c85> DW_AT_name : (indirect string, offset: 0x540c): SYS_sysinfo + <6c89> DW_AT_const_value : 23 + <2><6c8a>: Abbrev Number: 6 (DW_TAG_enumerator) + <6c8b> DW_AT_name : (indirect string, offset: 0x5591): SYS_gethostname + <6c8f> DW_AT_const_value : 24 + <2><6c90>: Abbrev Number: 6 (DW_TAG_enumerator) + <6c91> DW_AT_name : (indirect string, offset: 0x5210): SYS_sethostname + <6c95> DW_AT_const_value : 25 + <2><6c96>: Abbrev Number: 6 (DW_TAG_enumerator) + <6c97> DW_AT_name : (indirect string, offset: 0x52cc): SYS_nxsem_destroy + <6c9b> DW_AT_const_value : 26 + <2><6c9c>: Abbrev Number: 6 (DW_TAG_enumerator) + <6c9d> DW_AT_name : (indirect string, offset: 0x548c): SYS_nxsem_post + <6ca1> DW_AT_const_value : 27 + <2><6ca2>: Abbrev Number: 6 (DW_TAG_enumerator) + <6ca3> DW_AT_name : (indirect string, offset: 0x50f7): SYS_nxsem_clockwait + <6ca7> DW_AT_const_value : 28 + <2><6ca8>: Abbrev Number: 6 (DW_TAG_enumerator) + <6ca9> DW_AT_name : (indirect string, offset: 0x52f7): SYS_nxsem_timedwait + <6cad> DW_AT_const_value : 29 + <2><6cae>: Abbrev Number: 6 (DW_TAG_enumerator) + <6caf> DW_AT_name : (indirect string, offset: 0x5385): SYS_nxsem_trywait + <6cb3> DW_AT_const_value : 30 + <2><6cb4>: Abbrev Number: 6 (DW_TAG_enumerator) + <6cb5> DW_AT_name : (indirect string, offset: 0x4fa6): SYS_nxsem_wait + <6cb9> DW_AT_const_value : 31 + <2><6cba>: Abbrev Number: 6 (DW_TAG_enumerator) + <6cbb> DW_AT_name : (indirect string, offset: 0x5757): SYS_pgalloc + <6cbf> DW_AT_const_value : 32 + <2><6cc0>: Abbrev Number: 6 (DW_TAG_enumerator) + <6cc1> DW_AT_name : (indirect string, offset: 0x556c): SYS_up_fork + <6cc5> DW_AT_const_value : 33 + <2><6cc6>: Abbrev Number: 6 (DW_TAG_enumerator) + <6cc7> DW_AT_name : (indirect string, offset: 0x561c): SYS_waitpid + <6ccb> DW_AT_const_value : 34 + <2><6ccc>: Abbrev Number: 6 (DW_TAG_enumerator) + <6ccd> DW_AT_name : (indirect string, offset: 0x5050): SYS_posix_spawn + <6cd1> DW_AT_const_value : 35 + <2><6cd2>: Abbrev Number: 6 (DW_TAG_enumerator) + <6cd3> DW_AT_name : (indirect string, offset: 0x5561): SYS_execve + <6cd7> DW_AT_const_value : 36 + <2><6cd8>: Abbrev Number: 6 (DW_TAG_enumerator) + <6cd9> DW_AT_name : (indirect string, offset: 0x54f7): SYS_kill + <6cdd> DW_AT_const_value : 37 + <2><6cde>: Abbrev Number: 6 (DW_TAG_enumerator) + <6cdf> DW_AT_name : (indirect string, offset: 0x4f41): SYS_tgkill + <6ce3> DW_AT_const_value : 38 + <2><6ce4>: Abbrev Number: 6 (DW_TAG_enumerator) + <6ce5> DW_AT_name : (indirect string, offset: 0x5239): SYS_sigaction + <6ce9> DW_AT_const_value : 39 + <2><6cea>: Abbrev Number: 6 (DW_TAG_enumerator) + <6ceb> DW_AT_name : (indirect string, offset: 0x54dc): SYS_sigpending + <6cef> DW_AT_const_value : 40 + <2><6cf0>: Abbrev Number: 6 (DW_TAG_enumerator) + <6cf1> DW_AT_name : (indirect string, offset: 0x516a): SYS_sigprocmask + <6cf5> DW_AT_const_value : 41 + <2><6cf6>: Abbrev Number: 6 (DW_TAG_enumerator) + <6cf7> DW_AT_name : (indirect string, offset: 0x5719): SYS_sigqueue + <6cfb> DW_AT_const_value : 42 + <2><6cfc>: Abbrev Number: 6 (DW_TAG_enumerator) + <6cfd> DW_AT_name : (indirect string, offset: 0x53a8): SYS_sigsuspend + <6d01> DW_AT_const_value : 43 + <2><6d02>: Abbrev Number: 6 (DW_TAG_enumerator) + <6d03> DW_AT_name : (indirect string, offset: 0x50c2): SYS_sigtimedwait + <6d07> DW_AT_const_value : 44 + <2><6d08>: Abbrev Number: 6 (DW_TAG_enumerator) + <6d09> DW_AT_name : (indirect string, offset: 0x5040): SYS_sigwaitinfo + <6d0d> DW_AT_const_value : 45 + <2><6d0e>: Abbrev Number: 6 (DW_TAG_enumerator) + <6d0f> DW_AT_name : (indirect string, offset: 0x53f8): SYS_clock_nanosleep + <6d13> DW_AT_const_value : 46 + <2><6d14>: Abbrev Number: 6 (DW_TAG_enumerator) + <6d15> DW_AT_name : (indirect string, offset: 0x5130): SYS_clock + <6d19> DW_AT_const_value : 47 + <2><6d1a>: Abbrev Number: 6 (DW_TAG_enumerator) + <6d1b> DW_AT_name : (indirect string, offset: 0x56b4): SYS_clock_gettime + <6d1f> DW_AT_const_value : 48 + <2><6d20>: Abbrev Number: 6 (DW_TAG_enumerator) + <6d21> DW_AT_name : (indirect string, offset: 0x51df): SYS_clock_settime + <6d25> DW_AT_const_value : 49 + <2><6d26>: Abbrev Number: 6 (DW_TAG_enumerator) + <6d27> DW_AT_name : (indirect string, offset: 0x4f66): SYS_timer_create + <6d2b> DW_AT_const_value : 50 + <2><6d2c>: Abbrev Number: 6 (DW_TAG_enumerator) + <6d2d> DW_AT_name : (indirect string, offset: 0x5397): SYS_timer_delete + <6d31> DW_AT_const_value : 51 + <2><6d32>: Abbrev Number: 6 (DW_TAG_enumerator) + <6d33> DW_AT_name : (indirect string, offset: 0x52ad): SYS_timer_getoverrun + <6d37> DW_AT_const_value : 52 + <2><6d38>: Abbrev Number: 6 (DW_TAG_enumerator) + <6d39> DW_AT_name : (indirect string, offset: 0x5827): SYS_timer_gettime + <6d3d> DW_AT_const_value : 53 + <2><6d3e>: Abbrev Number: 6 (DW_TAG_enumerator) + <6d3f> DW_AT_name : (indirect string, offset: 0x5270): SYS_timer_settime + <6d43> DW_AT_const_value : 54 + <2><6d44>: Abbrev Number: 6 (DW_TAG_enumerator) + <6d45> DW_AT_name : (indirect string, offset: 0x5347): SYS_getitimer + <6d49> DW_AT_const_value : 55 + <2><6d4a>: Abbrev Number: 6 (DW_TAG_enumerator) + <6d4b> DW_AT_name : (indirect string, offset: 0x518d): SYS_setitimer + <6d4f> DW_AT_const_value : 56 + <2><6d50>: Abbrev Number: 6 (DW_TAG_enumerator) + <6d51> DW_AT_name : (indirect string, offset: 0x530b): SYS_nx_vsyslog + <6d55> DW_AT_const_value : 57 + <2><6d56>: Abbrev Number: 6 (DW_TAG_enumerator) + <6d57> DW_AT_name : (indirect string, offset: 0x50d3): SYS_close + <6d5b> DW_AT_const_value : 58 + <2><6d5c>: Abbrev Number: 6 (DW_TAG_enumerator) + <6d5d> DW_AT_name : (indirect string, offset: 0x5871): SYS_ioctl + <6d61> DW_AT_const_value : 59 + <2><6d62>: Abbrev Number: 6 (DW_TAG_enumerator) + <6d63> DW_AT_name : (indirect string, offset: 0x5095): SYS_read + <6d67> DW_AT_const_value : 60 + <2><6d68>: Abbrev Number: 6 (DW_TAG_enumerator) + <6d69> DW_AT_name : (indirect string, offset: 0x51f1): SYS_write + <6d6d> DW_AT_const_value : 61 + <2><6d6e>: Abbrev Number: 6 (DW_TAG_enumerator) + <6d6f> DW_AT_name : (indirect string, offset: 0x5036): SYS_pread + <6d73> DW_AT_const_value : 62 + <2><6d74>: Abbrev Number: 6 (DW_TAG_enumerator) + <6d75> DW_AT_name : (indirect string, offset: 0x5433): SYS_pwrite + <6d79> DW_AT_const_value : 63 + <2><6d7a>: Abbrev Number: 6 (DW_TAG_enumerator) + <6d7b> DW_AT_name : (indirect string, offset: 0x4f38): SYS_poll + <6d7f> DW_AT_const_value : 64 + <2><6d80>: Abbrev Number: 6 (DW_TAG_enumerator) + <6d81> DW_AT_name : (indirect string, offset: 0x4ffa): SYS_select + <6d85> DW_AT_const_value : 65 + <2><6d86>: Abbrev Number: 6 (DW_TAG_enumerator) + <6d87> DW_AT_name : (indirect string, offset: 0x4fb5): SYS_ppoll + <6d8b> DW_AT_const_value : 66 + <2><6d8c>: Abbrev Number: 6 (DW_TAG_enumerator) + <6d8d> DW_AT_name : (indirect string, offset: 0x531a): SYS_pselect + <6d91> DW_AT_const_value : 67 + <2><6d92>: Abbrev Number: 6 (DW_TAG_enumerator) + <6d93> DW_AT_name : (indirect string, offset: 0x5123): SYS_boardctl + <6d97> DW_AT_const_value : 68 + <2><6d98>: Abbrev Number: 6 (DW_TAG_enumerator) + <6d99> DW_AT_name : (indirect string, offset: 0x5484): SYS_dup + <6d9d> DW_AT_const_value : 69 + <2><6d9e>: Abbrev Number: 6 (DW_TAG_enumerator) + <6d9f> DW_AT_name : (indirect string, offset: 0x5515): SYS_dup2 + <6da3> DW_AT_const_value : 70 + <2><6da4>: Abbrev Number: 6 (DW_TAG_enumerator) + <6da5> DW_AT_name : (indirect string, offset: 0x5266): SYS_fcntl + <6da9> DW_AT_const_value : 71 + <2><6daa>: Abbrev Number: 6 (DW_TAG_enumerator) + <6dab> DW_AT_name : (indirect string, offset: 0x5863): SYS_ftruncate + <6daf> DW_AT_const_value : 72 + <2><6db0>: Abbrev Number: 6 (DW_TAG_enumerator) + <6db1> DW_AT_name : (indirect string, offset: 0x508b): SYS_lseek + <6db5> DW_AT_const_value : 73 + <2><6db6>: Abbrev Number: 6 (DW_TAG_enumerator) + <6db7> DW_AT_name : (indirect string, offset: 0x51a5): SYS_mmap + <6dbb> DW_AT_const_value : 74 + <2><6dbc>: Abbrev Number: 6 (DW_TAG_enumerator) + <6dbd> DW_AT_name : (indirect string, offset: 0x5710): SYS_open + <6dc1> DW_AT_const_value : 75 + <2><6dc2>: Abbrev Number: 6 (DW_TAG_enumerator) + <6dc3> DW_AT_name : (indirect string, offset: 0x5479): SYS_rename + <6dc7> DW_AT_const_value : 76 + <2><6dc8>: Abbrev Number: 6 (DW_TAG_enumerator) + <6dc9> DW_AT_name : (indirect string, offset: 0x589d): SYS_stat + <6dcd> DW_AT_const_value : 77 + <2><6dce>: Abbrev Number: 6 (DW_TAG_enumerator) + <6dcf> DW_AT_name : (indirect string, offset: 0x56aa): SYS_lstat + <6dd3> DW_AT_const_value : 78 + <2><6dd4>: Abbrev Number: 6 (DW_TAG_enumerator) + <6dd5> DW_AT_name : (indirect string, offset: 0x4f81): SYS_fstat + <6dd9> DW_AT_const_value : 79 + <2><6dda>: Abbrev Number: 6 (DW_TAG_enumerator) + <6ddb> DW_AT_name : (indirect string, offset: 0x5334): SYS_statfs + <6ddf> DW_AT_const_value : 80 + <2><6de0>: Abbrev Number: 6 (DW_TAG_enumerator) + <6de1> DW_AT_name : (indirect string, offset: 0x54eb): SYS_fstatfs + <6de5> DW_AT_const_value : 81 + <2><6de6>: Abbrev Number: 6 (DW_TAG_enumerator) + <6de7> DW_AT_name : (indirect string, offset: 0x56c6): SYS_sendfile + <6deb> DW_AT_const_value : 82 + <2><6dec>: Abbrev Number: 6 (DW_TAG_enumerator) + <6ded> DW_AT_name : (indirect string, offset: 0x551e): SYS_sync + <6df1> DW_AT_const_value : 83 + <2><6df2>: Abbrev Number: 6 (DW_TAG_enumerator) + <6df3> DW_AT_name : (indirect string, offset: 0x5206): SYS_fsync + <6df7> DW_AT_const_value : 84 + <2><6df8>: Abbrev Number: 6 (DW_TAG_enumerator) + <6df9> DW_AT_name : (indirect string, offset: 0x52ed): SYS_chmod + <6dfd> DW_AT_const_value : 85 + <2><6dfe>: Abbrev Number: 6 (DW_TAG_enumerator) + <6dff> DW_AT_name : (indirect string, offset: 0x5858): SYS_lchmod + <6e03> DW_AT_const_value : 86 + <2><6e04>: Abbrev Number: 6 (DW_TAG_enumerator) + <6e05> DW_AT_name : (indirect string, offset: 0x5463): SYS_fchmod + <6e09> DW_AT_const_value : 87 + <2><6e0a>: Abbrev Number: 6 (DW_TAG_enumerator) + <6e0b> DW_AT_name : (indirect string, offset: 0x50b8): SYS_chown + <6e0f> DW_AT_const_value : 88 + <2><6e10>: Abbrev Number: 6 (DW_TAG_enumerator) + <6e11> DW_AT_name : (indirect string, offset: 0x54af): SYS_lchown + <6e15> DW_AT_const_value : 89 + <2><6e16>: Abbrev Number: 6 (DW_TAG_enumerator) + <6e17> DW_AT_name : (indirect string, offset: 0x51c5): SYS_fchown + <6e1b> DW_AT_const_value : 90 + <2><6e1c>: Abbrev Number: 6 (DW_TAG_enumerator) + <6e1d> DW_AT_name : (indirect string, offset: 0x5220): SYS_utimens + <6e21> DW_AT_const_value : 91 + <2><6e22>: Abbrev Number: 6 (DW_TAG_enumerator) + <6e23> DW_AT_name : (indirect string, offset: 0x584b): SYS_lutimens + <6e27> DW_AT_const_value : 92 + <2><6e28>: Abbrev Number: 6 (DW_TAG_enumerator) + <6e29> DW_AT_name : (indirect string, offset: 0x5584): SYS_futimens + <6e2d> DW_AT_const_value : 93 + <2><6e2e>: Abbrev Number: 6 (DW_TAG_enumerator) + <6e2f> DW_AT_name : (indirect string, offset: 0x569f): SYS_munmap + <6e33> DW_AT_const_value : 94 + <2><6e34>: Abbrev Number: 6 (DW_TAG_enumerator) + <6e35> DW_AT_name : (indirect string, offset: 0x52c2): SYS_mount + <6e39> DW_AT_const_value : 95 + <2><6e3a>: Abbrev Number: 6 (DW_TAG_enumerator) + <6e3b> DW_AT_name : (indirect string, offset: 0x519b): SYS_mkdir + <6e3f> DW_AT_const_value : 96 + <2><6e40>: Abbrev Number: 6 (DW_TAG_enumerator) + <6e41> DW_AT_name : (indirect string, offset: 0x52a3): SYS_rmdir + <6e45> DW_AT_const_value : 97 + <2><6e46>: Abbrev Number: 6 (DW_TAG_enumerator) + <6e47> DW_AT_name : (indirect string, offset: 0x5666): SYS_umount2 + <6e4b> DW_AT_const_value : 98 + <2><6e4c>: Abbrev Number: 6 (DW_TAG_enumerator) + <6e4d> DW_AT_name : (indirect string, offset: 0x58e0): SYS_unlink + <6e51> DW_AT_const_value : 99 + <2><6e52>: Abbrev Number: 6 (DW_TAG_enumerator) + <6e53> DW_AT_name : (indirect string, offset: 0x544a): SYS_pthread_barrier_wait + <6e57> DW_AT_const_value : 100 + <2><6e58>: Abbrev Number: 6 (DW_TAG_enumerator) + <6e59> DW_AT_name : (indirect string, offset: 0x517a): SYS_pthread_cancel + <6e5d> DW_AT_const_value : 101 + <2><6e5e>: Abbrev Number: 6 (DW_TAG_enumerator) + <6e5f> DW_AT_name : (indirect string, offset: 0x5418): SYS_pthread_cond_broadcast + <6e63> DW_AT_const_value : 102 + <2><6e64>: Abbrev Number: 6 (DW_TAG_enumerator) + <6e65> DW_AT_name : (indirect string, offset: 0x5073): SYS_pthread_cond_signal + <6e69> DW_AT_const_value : 103 + <2><6e6a>: Abbrev Number: 6 (DW_TAG_enumerator) + <6e6b> DW_AT_name : (indirect string, offset: 0x56fa): SYS_pthread_cond_wait + <6e6f> DW_AT_const_value : 104 + <2><6e70>: Abbrev Number: 6 (DW_TAG_enumerator) + <6e71> DW_AT_name : (indirect string, offset: 0x5149): SYS_nx_pthread_create + <6e75> DW_AT_const_value : 105 + <2><6e76>: Abbrev Number: 6 (DW_TAG_enumerator) + <6e77> DW_AT_name : (indirect string, offset: 0x4fd0): SYS_pthread_detach + <6e7b> DW_AT_const_value : 106 + <2><6e7c>: Abbrev Number: 6 (DW_TAG_enumerator) + <6e7d> DW_AT_name : (indirect string, offset: 0x54ba): SYS_nx_pthread_exit + <6e81> DW_AT_const_value : 107 + <2><6e82>: Abbrev Number: 6 (DW_TAG_enumerator) + <6e83> DW_AT_name : (indirect string, offset: 0x5527): SYS_pthread_getschedparam + <6e87> DW_AT_const_value : 108 + <2><6e88>: Abbrev Number: 6 (DW_TAG_enumerator) + <6e89> DW_AT_name : (indirect string, offset: 0x588c): SYS_pthread_join + <6e8d> DW_AT_const_value : 109 + <2><6e8e>: Abbrev Number: 6 (DW_TAG_enumerator) + <6e8f> DW_AT_name : (indirect string, offset: 0x501c): SYS_pthread_mutex_destroy + <6e93> DW_AT_const_value : 110 + <2><6e94>: Abbrev Number: 6 (DW_TAG_enumerator) + <6e95> DW_AT_name : (indirect string, offset: 0x564f): SYS_pthread_mutex_init + <6e99> DW_AT_const_value : 111 + <2><6e9a>: Abbrev Number: 6 (DW_TAG_enumerator) + <6e9b> DW_AT_name : (indirect string, offset: 0x5600): SYS_pthread_mutex_timedlock + <6e9f> DW_AT_const_value : 112 + <2><6ea0>: Abbrev Number: 6 (DW_TAG_enumerator) + <6ea1> DW_AT_name : (indirect string, offset: 0x4f4c): SYS_pthread_mutex_trylock + <6ea5> DW_AT_const_value : 113 + <2><6ea6>: Abbrev Number: 6 (DW_TAG_enumerator) + <6ea7> DW_AT_name : (indirect string, offset: 0x536c): SYS_pthread_mutex_unlock + <6eab> DW_AT_const_value : 114 + <2><6eac>: Abbrev Number: 6 (DW_TAG_enumerator) + <6ead> DW_AT_name : (indirect string, offset: 0x5726): SYS_pthread_mutex_consistent + <6eb1> DW_AT_const_value : 115 + <2><6eb2>: Abbrev Number: 6 (DW_TAG_enumerator) + <6eb3> DW_AT_name : (indirect string, offset: 0x50dd): SYS_pthread_setschedparam + <6eb7> DW_AT_const_value : 116 + <2><6eb8>: Abbrev Number: 6 (DW_TAG_enumerator) + <6eb9> DW_AT_name : (indirect string, offset: 0x53d0): SYS_pthread_setschedprio + <6ebd> DW_AT_const_value : 117 + <2><6ebe>: Abbrev Number: 6 (DW_TAG_enumerator) + <6ebf> DW_AT_name : (indirect string, offset: 0x56d3): SYS_pthread_cond_clockwait + <6ec3> DW_AT_const_value : 118 + <2><6ec4>: Abbrev Number: 6 (DW_TAG_enumerator) + <6ec5> DW_AT_name : (indirect string, offset: 0x5763): SYS_pthread_sigmask + <6ec9> DW_AT_const_value : 119 + <2><6eca>: Abbrev Number: 6 (DW_TAG_enumerator) + <6ecb> DW_AT_name : (indirect string, offset: 0x5247): SYS_mq_close + <6ecf> DW_AT_const_value : 120 + <2><6ed0>: Abbrev Number: 6 (DW_TAG_enumerator) + <6ed1> DW_AT_name : (indirect string, offset: 0x513a): SYS_mq_getattr + <6ed5> DW_AT_const_value : 121 + <2><6ed6>: Abbrev Number: 6 (DW_TAG_enumerator) + <6ed7> DW_AT_name : (indirect string, offset: 0x5326): SYS_mq_notify + <6edb> DW_AT_const_value : 122 + <2><6edc>: Abbrev Number: 6 (DW_TAG_enumerator) + <6edd> DW_AT_name : (indirect string, offset: 0x56ee): SYS_mq_open + <6ee1> DW_AT_const_value : 123 + <2><6ee2>: Abbrev Number: 6 (DW_TAG_enumerator) + <6ee3> DW_AT_name : (indirect string, offset: 0x51d0): SYS_mq_receive + <6ee7> DW_AT_const_value : 124 + <2><6ee8>: Abbrev Number: 6 (DW_TAG_enumerator) + <6ee9> DW_AT_name : (indirect string, offset: 0x543e): SYS_mq_send + <6eed> DW_AT_const_value : 125 + <2><6eee>: Abbrev Number: 6 (DW_TAG_enumerator) + <6eef> DW_AT_name : (indirect string, offset: 0x5552): SYS_mq_setattr + <6ef3> DW_AT_const_value : 126 + <2><6ef4>: Abbrev Number: 6 (DW_TAG_enumerator) + <6ef5> DW_AT_name : (indirect string, offset: 0x549b): SYS_mq_timedreceive + <6ef9> DW_AT_const_value : 127 + <2><6efa>: Abbrev Number: 6 (DW_TAG_enumerator) + <6efb> DW_AT_name : (indirect string, offset: 0x4fbf): SYS_mq_timedsend + <6eff> DW_AT_const_value : 128 + <2><6f00>: Abbrev Number: 6 (DW_TAG_enumerator) + <6f01> DW_AT_name : (indirect string, offset: 0x5282): SYS_mq_unlink + <6f05> DW_AT_const_value : 129 + <2><6f06>: Abbrev Number: 6 (DW_TAG_enumerator) + <6f07> DW_AT_name : (indirect string, offset: 0x55ec): SYS_get_environ_ptr + <6f0b> DW_AT_const_value : 130 + <2><6f0c>: Abbrev Number: 6 (DW_TAG_enumerator) + <6f0d> DW_AT_name : (indirect string, offset: 0x5642): SYS_clearenv + <6f11> DW_AT_const_value : 131 + <2><6f12>: Abbrev Number: 6 (DW_TAG_enumerator) + <6f13> DW_AT_name : (indirect string, offset: 0x58a6): SYS_getenv + <6f17> DW_AT_const_value : 132 + <2><6f18>: Abbrev Number: 6 (DW_TAG_enumerator) + <6f19> DW_AT_name : (indirect string, offset: 0x4f9b): SYS_putenv + <6f1d> DW_AT_const_value : 133 + <2><6f1e>: Abbrev Number: 6 (DW_TAG_enumerator) + <6f1f> DW_AT_name : (indirect string, offset: 0x5500): SYS_setenv + <6f23> DW_AT_const_value : 134 + <2><6f24>: Abbrev Number: 6 (DW_TAG_enumerator) + <6f25> DW_AT_name : (indirect string, offset: 0x51ae): SYS_unsetenv + <6f29> DW_AT_const_value : 135 + <2><6f2a>: Abbrev Number: 6 (DW_TAG_enumerator) + <6f2b> DW_AT_name : (indirect string, offset: 0x58b1): SYS_getrandom + <6f2f> DW_AT_const_value : 136 + <2><6f30>: Abbrev Number: 6 (DW_TAG_enumerator) + <6f31> DW_AT_name : (indirect string, offset: 0x50aa): SYS_nanosleep + <6f35> DW_AT_const_value : 137 + <2><6f36>: Abbrev Number: 6 (DW_TAG_enumerator) + <6f37> DW_AT_name : (indirect string, offset: 0x5839): SYS_epoll_create1 + <6f3b> DW_AT_const_value : 138 + <2><6f3c>: Abbrev Number: 6 (DW_TAG_enumerator) + <6f3d> DW_AT_name : (indirect string, offset: 0x4fec): SYS_epoll_ctl + <6f41> DW_AT_const_value : 139 + <2><6f42>: Abbrev Number: 6 (DW_TAG_enumerator) + <6f43> DW_AT_name : (indirect string, offset: 0x53c1): SYS_epoll_wait + <6f47> DW_AT_const_value : 140 + <2><6f48>: Abbrev Number: 6 (DW_TAG_enumerator) + <6f49> DW_AT_name : (indirect string, offset: 0x5628): SYS_time + <6f4d> DW_AT_const_value : 141 + <2><6f4e>: Abbrev Number: 6 (DW_TAG_enumerator) + <6f4f> DW_AT_name : (indirect string, offset: 0x5631): SYS_gettimeofday + <6f53> DW_AT_const_value : 142 + <2><6f54>: Abbrev Number: 6 (DW_TAG_enumerator) + <6f55> DW_AT_name : (indirect string, offset: 0x5541): SYS_settimeofday + <6f59> DW_AT_const_value : 143 + <2><6f5a>: Abbrev Number: 6 (DW_TAG_enumerator) + <6f5b> DW_AT_name : (indirect string, offset: 0x515f): SYS_signal + <6f5f> DW_AT_const_value : 144 + <2><6f60>: Abbrev Number: 6 (DW_TAG_enumerator) + <6f61> DW_AT_name : (indirect string, offset: 0x52de): SYS_maxsyscall + <6f65> DW_AT_const_value : 145 + <2><6f66>: Abbrev Number: 0 + <1><6f67>: Abbrev Number: 7 (DW_TAG_pointer_type) + <6f68> DW_AT_byte_size : 8 + <6f69> DW_AT_type : <0x6f74> + <1><6f6d>: Abbrev Number: 2 (DW_TAG_base_type) + <6f6e> DW_AT_byte_size : 1 + <6f6f> DW_AT_encoding : 8 (unsigned char) + <6f70> DW_AT_name : (indirect string, offset: 0x55e7): char + <1><6f74>: Abbrev Number: 8 (DW_TAG_const_type) + <6f75> DW_AT_type : <0x6f6d> + <1><6f79>: Abbrev Number: 9 (DW_TAG_subprogram) + <6f7a> DW_AT_external : 1 + <6f7a> DW_AT_name : (indirect string, offset: 0x4f30): _assert + <6f7e> DW_AT_decl_file : 1 + <6f7f> DW_AT_decl_line : 7 + <6f80> DW_AT_decl_column : 6 + <6f81> DW_AT_prototyped : 1 + <6f81> DW_AT_low_pc : 0xd50 + <6f89> DW_AT_high_pc : 0x18 + <6f91> DW_AT_frame_base : 1 byte block: 9c (DW_OP_call_frame_cfa) + <6f93> DW_AT_GNU_all_call_sites: 1 + <6f93> DW_AT_sibling : <0x7041> + <2><6f97>: Abbrev Number: 10 (DW_TAG_formal_parameter) + <6f98> DW_AT_name : (indirect string, offset: 0x55db): parm1 + <6f9c> DW_AT_decl_file : 1 + <6f9d> DW_AT_decl_line : 7 + <6f9e> DW_AT_decl_column : 31 + <6f9f> DW_AT_type : <0x6f67> + <6fa3> DW_AT_location : 0x2ce2 (location list) + <2><6fa7>: Abbrev Number: 10 (DW_TAG_formal_parameter) + <6fa8> DW_AT_name : (indirect string, offset: 0x55e1): parm2 + <6fac> DW_AT_decl_file : 1 + <6fad> DW_AT_decl_line : 7 + <6fae> DW_AT_decl_column : 42 + <6faf> DW_AT_type : <0x6be1> + <6fb3> DW_AT_location : 0x2d18 (location list) + <2><6fb7>: Abbrev Number: 10 (DW_TAG_formal_parameter) + <6fb8> DW_AT_name : (indirect string, offset: 0x4f24): parm3 + <6fbc> DW_AT_decl_file : 1 + <6fbd> DW_AT_decl_line : 7 + <6fbe> DW_AT_decl_column : 66 + <6fbf> DW_AT_type : <0x6f67> + <6fc3> DW_AT_location : 0x2d51 (location list) + <2><6fc7>: Abbrev Number: 10 (DW_TAG_formal_parameter) + <6fc8> DW_AT_name : (indirect string, offset: 0x4f2a): parm4 + <6fcc> DW_AT_decl_file : 1 + <6fcd> DW_AT_decl_line : 7 + <6fce> DW_AT_decl_column : 84 + <6fcf> DW_AT_type : <0x7041> + <6fd3> DW_AT_location : 0x2d87 (location list) + <2><6fd7>: Abbrev Number: 11 (DW_TAG_inlined_subroutine) + <6fd8> DW_AT_abstract_origin: <0x7043> + <6fdc> DW_AT_low_pc : 0xd58 + <6fe4> DW_AT_high_pc : 0xe + <6fec> DW_AT_call_file : 1 + <6fed> DW_AT_call_line : 9 + <6fee> DW_AT_call_column : 3 + <3><6fef>: Abbrev Number: 12 (DW_TAG_formal_parameter) + <6ff0> DW_AT_abstract_origin: <0x7051> + <6ff4> DW_AT_location : 0x2dbd (location list) + <3><6ff8>: Abbrev Number: 12 (DW_TAG_formal_parameter) + <6ff9> DW_AT_abstract_origin: <0x7085> + <6ffd> DW_AT_location : 0x2de1 (location list) + <3><7001>: Abbrev Number: 12 (DW_TAG_formal_parameter) + <7002> DW_AT_abstract_origin: <0x7078> + <7006> DW_AT_location : 0x2e17 (location list) + <3><700a>: Abbrev Number: 12 (DW_TAG_formal_parameter) + <700b> DW_AT_abstract_origin: <0x706b> + <700f> DW_AT_location : 0x2e4d (location list) + <3><7013>: Abbrev Number: 12 (DW_TAG_formal_parameter) + <7014> DW_AT_abstract_origin: <0x705e> + <7018> DW_AT_location : 0x2e78 (location list) + <3><701c>: Abbrev Number: 13 (DW_TAG_variable) + <701d> DW_AT_abstract_origin: <0x7092> + <7021> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <3><7023>: Abbrev Number: 13 (DW_TAG_variable) + <7024> DW_AT_abstract_origin: <0x709e> + <7028> DW_AT_location : 1 byte block: 5b (DW_OP_reg11 (a1)) + <3><702a>: Abbrev Number: 13 (DW_TAG_variable) + <702b> DW_AT_abstract_origin: <0x70aa> + <702f> DW_AT_location : 1 byte block: 5c (DW_OP_reg12 (a2)) + <3><7031>: Abbrev Number: 13 (DW_TAG_variable) + <7032> DW_AT_abstract_origin: <0x70b6> + <7036> DW_AT_location : 1 byte block: 5d (DW_OP_reg13 (a3)) + <3><7038>: Abbrev Number: 13 (DW_TAG_variable) + <7039> DW_AT_abstract_origin: <0x70c2> + <703d> DW_AT_location : 1 byte block: 5e (DW_OP_reg14 (a4)) + <3><703f>: Abbrev Number: 0 + <2><7040>: Abbrev Number: 0 + <1><7041>: Abbrev Number: 14 (DW_TAG_pointer_type) + <7042> DW_AT_byte_size : 8 + <1><7043>: Abbrev Number: 15 (DW_TAG_subprogram) + <7044> DW_AT_name : (indirect string, offset: 0x51bb): sys_call4 + <7048> DW_AT_decl_file : 2 + <7049> DW_AT_decl_line : 277 + <704b> DW_AT_decl_column : 25 + <704c> DW_AT_prototyped : 1 + <704c> DW_AT_type : <0x6c10> + <7050> DW_AT_inline : 3 (declared as inline and inlined) + <2><7051>: Abbrev Number: 16 (DW_TAG_formal_parameter) + <7052> DW_AT_name : nbr + <7056> DW_AT_decl_file : 2 + <7057> DW_AT_decl_line : 277 + <7059> DW_AT_decl_column : 48 + <705a> DW_AT_type : <0x6be8> + <2><705e>: Abbrev Number: 17 (DW_TAG_formal_parameter) + <705f> DW_AT_name : (indirect string, offset: 0x55db): parm1 + <7063> DW_AT_decl_file : 2 + <7064> DW_AT_decl_line : 277 + <7066> DW_AT_decl_column : 63 + <7067> DW_AT_type : <0x6c10> + <2><706b>: Abbrev Number: 17 (DW_TAG_formal_parameter) + <706c> DW_AT_name : (indirect string, offset: 0x55e1): parm2 + <7070> DW_AT_decl_file : 2 + <7071> DW_AT_decl_line : 278 + <7073> DW_AT_decl_column : 45 + <7074> DW_AT_type : <0x6c10> + <2><7078>: Abbrev Number: 17 (DW_TAG_formal_parameter) + <7079> DW_AT_name : (indirect string, offset: 0x4f24): parm3 + <707d> DW_AT_decl_file : 2 + <707e> DW_AT_decl_line : 278 + <7080> DW_AT_decl_column : 62 + <7081> DW_AT_type : <0x6c10> + <2><7085>: Abbrev Number: 17 (DW_TAG_formal_parameter) + <7086> DW_AT_name : (indirect string, offset: 0x4f2a): parm4 + <708a> DW_AT_decl_file : 2 + <708b> DW_AT_decl_line : 279 + <708d> DW_AT_decl_column : 45 + <708e> DW_AT_type : <0x6c10> + <2><7092>: Abbrev Number: 18 (DW_TAG_variable) + <7093> DW_AT_name : r0 + <7096> DW_AT_decl_file : 2 + <7097> DW_AT_decl_line : 281 + <7099> DW_AT_decl_column : 17 + <709a> DW_AT_type : <0x6bef> + <2><709e>: Abbrev Number: 18 (DW_TAG_variable) + <709f> DW_AT_name : r1 + <70a2> DW_AT_decl_file : 2 + <70a3> DW_AT_decl_line : 282 + <70a5> DW_AT_decl_column : 17 + <70a6> DW_AT_type : <0x6bef> + <2><70aa>: Abbrev Number: 18 (DW_TAG_variable) + <70ab> DW_AT_name : r2 + <70ae> DW_AT_decl_file : 2 + <70af> DW_AT_decl_line : 283 + <70b1> DW_AT_decl_column : 17 + <70b2> DW_AT_type : <0x6bef> + <2><70b6>: Abbrev Number: 18 (DW_TAG_variable) + <70b7> DW_AT_name : r3 + <70ba> DW_AT_decl_file : 2 + <70bb> DW_AT_decl_line : 284 + <70bd> DW_AT_decl_column : 17 + <70be> DW_AT_type : <0x6bef> + <2><70c2>: Abbrev Number: 18 (DW_TAG_variable) + <70c3> DW_AT_name : r4 + <70c6> DW_AT_decl_file : 2 + <70c7> DW_AT_decl_line : 285 + <70c9> DW_AT_decl_column : 17 + <70ca> DW_AT_type : <0x6bef> + <2><70ce>: Abbrev Number: 0 + <1><70cf>: Abbrev Number: 0 + Compilation Unit @ offset 0x70d0: + Length: 0x474 (32-bit) + Version: 4 + Abbrev Offset: 0x241b + Pointer Size: 8 + <0><70db>: Abbrev Number: 1 (DW_TAG_compile_unit) + <70dc> DW_AT_producer : (indirect string, offset: 0x6128): GNU C17 10.2.0 -mcmodel=medany -march=rv64imafdc -mabi=lp64d -march=rv64imafdc -g -Os -fno-common -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections + <70e0> DW_AT_language : 12 (ANSI C99) + <70e1> DW_AT_name : (indirect string, offset: 0x5e27): proxies/PROXY__exit.c + <70e5> DW_AT_comp_dir : (indirect string, offset: 0x5f6c): /Users/Luppy/ox64/nuttx/syscall + <70e9> DW_AT_ranges : 0x7f0 + <70ed> DW_AT_low_pc : 0x0 + <70f5> DW_AT_stmt_list : 0x4355 + <1><70f9>: Abbrev Number: 2 (DW_TAG_base_type) + <70fa> DW_AT_byte_size : 1 + <70fb> DW_AT_encoding : 6 (signed char) + <70fc> DW_AT_name : (indirect string, offset: 0x5a52): signed char + <1><7100>: Abbrev Number: 2 (DW_TAG_base_type) + <7101> DW_AT_byte_size : 1 + <7102> DW_AT_encoding : 8 (unsigned char) + <7103> DW_AT_name : (indirect string, offset: 0x5e7f): unsigned char + <1><7107>: Abbrev Number: 2 (DW_TAG_base_type) + <7108> DW_AT_byte_size : 2 + <7109> DW_AT_encoding : 5 (signed) + <710a> DW_AT_name : (indirect string, offset: 0x5ebc): short int + <1><710e>: Abbrev Number: 2 (DW_TAG_base_type) + <710f> DW_AT_byte_size : 2 + <7110> DW_AT_encoding : 7 (unsigned) + <7111> DW_AT_name : (indirect string, offset: 0x5c44): short unsigned int + <1><7115>: Abbrev Number: 3 (DW_TAG_base_type) + <7116> DW_AT_byte_size : 4 + <7117> DW_AT_encoding : 5 (signed) + <7118> DW_AT_name : int + <1><711c>: Abbrev Number: 2 (DW_TAG_base_type) + <711d> DW_AT_byte_size : 4 + <711e> DW_AT_encoding : 7 (unsigned) + <711f> DW_AT_name : (indirect string, offset: 0x5be0): unsigned int + <1><7123>: Abbrev Number: 2 (DW_TAG_base_type) + <7124> DW_AT_byte_size : 8 + <7125> DW_AT_encoding : 5 (signed) + <7126> DW_AT_name : (indirect string, offset: 0x5abf): long int + <1><712a>: Abbrev Number: 2 (DW_TAG_base_type) + <712b> DW_AT_byte_size : 8 + <712c> DW_AT_encoding : 7 (unsigned) + <712d> DW_AT_name : (indirect string, offset: 0x5c08): long unsigned int + <1><7131>: Abbrev Number: 4 (DW_TAG_typedef) + <7132> DW_AT_name : (indirect string, offset: 0x5cfb): _size_t + <7136> DW_AT_decl_file : 3 + <7137> DW_AT_decl_line : 93 + <7138> DW_AT_decl_column : 28 + <7139> DW_AT_type : <0x712a> + <1><713d>: Abbrev Number: 2 (DW_TAG_base_type) + <713e> DW_AT_byte_size : 8 + <713f> DW_AT_encoding : 7 (unsigned) + <7140> DW_AT_name : (indirect string, offset: 0x59b9): long long unsigned int + <1><7144>: Abbrev Number: 4 (DW_TAG_typedef) + <7145> DW_AT_name : (indirect string, offset: 0x592a): uintptr_t + <7149> DW_AT_decl_file : 4 + <714a> DW_AT_decl_line : 239 + <714b> DW_AT_decl_column : 29 + <714c> DW_AT_type : <0x7131> + <1><7150>: Abbrev Number: 2 (DW_TAG_base_type) + <7151> DW_AT_byte_size : 1 + <7152> DW_AT_encoding : 8 (unsigned char) + <7153> DW_AT_name : (indirect string, offset: 0x5f92): char + <1><7157>: Abbrev Number: 5 (DW_TAG_enumeration_type) + <7158> DW_AT_encoding : 7 (unsigned) + <7159> DW_AT_byte_size : 4 + <715a> DW_AT_type : <0x711c> + <715e> DW_AT_decl_file : 5 + <715f> DW_AT_decl_line : 57 + <7160> DW_AT_decl_column : 1 + <7161> DW_AT_sibling : <0x74a2> + <2><7165>: Abbrev Number: 6 (DW_TAG_enumerator) + <7166> DW_AT_name : (indirect string, offset: 0x5d73): SYS__exit + <716a> DW_AT_const_value : 8 + <2><716b>: Abbrev Number: 6 (DW_TAG_enumerator) + <716c> DW_AT_name : (indirect string, offset: 0x5f29): SYS__assert + <7170> DW_AT_const_value : 9 + <2><7171>: Abbrev Number: 6 (DW_TAG_enumerator) + <7172> DW_AT_name : (indirect string, offset: 0x5baf): SYS_getpid + <7176> DW_AT_const_value : 10 + <2><7177>: Abbrev Number: 6 (DW_TAG_enumerator) + <7178> DW_AT_name : (indirect string, offset: 0x5e11): SYS_gettid + <717c> DW_AT_const_value : 11 + <2><717d>: Abbrev Number: 6 (DW_TAG_enumerator) + <717e> DW_AT_name : (indirect string, offset: 0x6287): SYS_prctl + <7182> DW_AT_const_value : 12 + <2><7183>: Abbrev Number: 6 (DW_TAG_enumerator) + <7184> DW_AT_name : (indirect string, offset: 0x5a14): SYS_sched_getparam + <7188> DW_AT_const_value : 13 + <2><7189>: Abbrev Number: 6 (DW_TAG_enumerator) + <718a> DW_AT_name : (indirect string, offset: 0x6270): SYS_sched_getscheduler + <718e> DW_AT_const_value : 14 + <2><718f>: Abbrev Number: 6 (DW_TAG_enumerator) + <7190> DW_AT_name : (indirect string, offset: 0x5d8c): SYS_sched_lock + <7194> DW_AT_const_value : 15 + <2><7195>: Abbrev Number: 6 (DW_TAG_enumerator) + <7196> DW_AT_name : (indirect string, offset: 0x60ee): SYS_sched_lockcount + <719a> DW_AT_const_value : 16 + <2><719b>: Abbrev Number: 6 (DW_TAG_enumerator) + <719c> DW_AT_name : (indirect string, offset: 0x6030): SYS_sched_rr_get_interval + <71a0> DW_AT_const_value : 17 + <2><71a1>: Abbrev Number: 6 (DW_TAG_enumerator) + <71a2> DW_AT_name : (indirect string, offset: 0x601d): SYS_sched_setparam + <71a6> DW_AT_const_value : 18 + <2><71a7>: Abbrev Number: 6 (DW_TAG_enumerator) + <71a8> DW_AT_name : (indirect string, offset: 0x5d11): SYS_sched_setscheduler + <71ac> DW_AT_const_value : 19 + <2><71ad>: Abbrev Number: 6 (DW_TAG_enumerator) + <71ae> DW_AT_name : (indirect string, offset: 0x622c): SYS_sched_unlock + <71b2> DW_AT_const_value : 20 + <2><71b3>: Abbrev Number: 6 (DW_TAG_enumerator) + <71b4> DW_AT_name : (indirect string, offset: 0x593e): SYS_sched_yield + <71b8> DW_AT_const_value : 21 + <2><71b9>: Abbrev Number: 6 (DW_TAG_enumerator) + <71ba> DW_AT_name : (indirect string, offset: 0x5f52): SYS_nxsched_get_stackinfo + <71be> DW_AT_const_value : 22 + <2><71bf>: Abbrev Number: 6 (DW_TAG_enumerator) + <71c0> DW_AT_name : (indirect string, offset: 0x5daf): SYS_sysinfo + <71c4> DW_AT_const_value : 23 + <2><71c5>: Abbrev Number: 6 (DW_TAG_enumerator) + <71c6> DW_AT_name : (indirect string, offset: 0x5f42): SYS_gethostname + <71ca> DW_AT_const_value : 24 + <2><71cb>: Abbrev Number: 6 (DW_TAG_enumerator) + <71cc> DW_AT_name : (indirect string, offset: 0x5bc4): SYS_sethostname + <71d0> DW_AT_const_value : 25 + <2><71d1>: Abbrev Number: 6 (DW_TAG_enumerator) + <71d2> DW_AT_name : (indirect string, offset: 0x5c88): SYS_nxsem_destroy + <71d6> DW_AT_const_value : 26 + <2><71d7>: Abbrev Number: 6 (DW_TAG_enumerator) + <71d8> DW_AT_name : (indirect string, offset: 0x5e3d): SYS_nxsem_post + <71dc> DW_AT_const_value : 27 + <2><71dd>: Abbrev Number: 6 (DW_TAG_enumerator) + <71de> DW_AT_name : (indirect string, offset: 0x5aab): SYS_nxsem_clockwait + <71e2> DW_AT_const_value : 28 + <2><71e3>: Abbrev Number: 6 (DW_TAG_enumerator) + <71e4> DW_AT_name : (indirect string, offset: 0x5cb3): SYS_nxsem_timedwait + <71e8> DW_AT_const_value : 29 + <2><71e9>: Abbrev Number: 6 (DW_TAG_enumerator) + <71ea> DW_AT_name : (indirect string, offset: 0x5d41): SYS_nxsem_trywait + <71ee> DW_AT_const_value : 30 + <2><71ef>: Abbrev Number: 6 (DW_TAG_enumerator) + <71f0> DW_AT_name : (indirect string, offset: 0x5959): SYS_nxsem_wait + <71f4> DW_AT_const_value : 31 + <2><71f5>: Abbrev Number: 6 (DW_TAG_enumerator) + <71f6> DW_AT_name : (indirect string, offset: 0x6102): SYS_pgalloc + <71fa> DW_AT_const_value : 32 + <2><71fb>: Abbrev Number: 6 (DW_TAG_enumerator) + <71fc> DW_AT_name : (indirect string, offset: 0x5f1d): SYS_up_fork + <7200> DW_AT_const_value : 33 + <2><7201>: Abbrev Number: 6 (DW_TAG_enumerator) + <7202> DW_AT_name : (indirect string, offset: 0x5fc7): SYS_waitpid + <7206> DW_AT_const_value : 34 + <2><7207>: Abbrev Number: 6 (DW_TAG_enumerator) + <7208> DW_AT_name : (indirect string, offset: 0x5a04): SYS_posix_spawn + <720c> DW_AT_const_value : 35 + <2><720d>: Abbrev Number: 6 (DW_TAG_enumerator) + <720e> DW_AT_name : (indirect string, offset: 0x5f12): SYS_execve + <7212> DW_AT_const_value : 36 + <2><7213>: Abbrev Number: 6 (DW_TAG_enumerator) + <7214> DW_AT_name : (indirect string, offset: 0x5ea8): SYS_kill + <7218> DW_AT_const_value : 37 + <2><7219>: Abbrev Number: 6 (DW_TAG_enumerator) + <721a> DW_AT_name : (indirect string, offset: 0x58f4): SYS_tgkill + <721e> DW_AT_const_value : 38 + <2><721f>: Abbrev Number: 6 (DW_TAG_enumerator) + <7220> DW_AT_name : (indirect string, offset: 0x5bed): SYS_sigaction + <7224> DW_AT_const_value : 39 + <2><7225>: Abbrev Number: 6 (DW_TAG_enumerator) + <7226> DW_AT_name : (indirect string, offset: 0x5e8d): SYS_sigpending + <722a> DW_AT_const_value : 40 + <2><722b>: Abbrev Number: 6 (DW_TAG_enumerator) + <722c> DW_AT_name : (indirect string, offset: 0x5b1e): SYS_sigprocmask + <7230> DW_AT_const_value : 41 + <2><7231>: Abbrev Number: 6 (DW_TAG_enumerator) + <7232> DW_AT_name : (indirect string, offset: 0x60c4): SYS_sigqueue + <7236> DW_AT_const_value : 42 + <2><7237>: Abbrev Number: 6 (DW_TAG_enumerator) + <7238> DW_AT_name : (indirect string, offset: 0x5d64): SYS_sigsuspend + <723c> DW_AT_const_value : 43 + <2><723d>: Abbrev Number: 6 (DW_TAG_enumerator) + <723e> DW_AT_name : (indirect string, offset: 0x5a76): SYS_sigtimedwait + <7242> DW_AT_const_value : 44 + <2><7243>: Abbrev Number: 6 (DW_TAG_enumerator) + <7244> DW_AT_name : (indirect string, offset: 0x59f4): SYS_sigwaitinfo + <7248> DW_AT_const_value : 45 + <2><7249>: Abbrev Number: 6 (DW_TAG_enumerator) + <724a> DW_AT_name : (indirect string, offset: 0x5d9b): SYS_clock_nanosleep + <724e> DW_AT_const_value : 46 + <2><724f>: Abbrev Number: 6 (DW_TAG_enumerator) + <7250> DW_AT_name : (indirect string, offset: 0x5996): SYS_clock + <7254> DW_AT_const_value : 47 + <2><7255>: Abbrev Number: 6 (DW_TAG_enumerator) + <7256> DW_AT_name : (indirect string, offset: 0x605f): SYS_clock_gettime + <725a> DW_AT_const_value : 48 + <2><725b>: Abbrev Number: 6 (DW_TAG_enumerator) + <725c> DW_AT_name : (indirect string, offset: 0x5b93): SYS_clock_settime + <7260> DW_AT_const_value : 49 + <2><7261>: Abbrev Number: 6 (DW_TAG_enumerator) + <7262> DW_AT_name : (indirect string, offset: 0x5919): SYS_timer_create + <7266> DW_AT_const_value : 50 + <2><7267>: Abbrev Number: 6 (DW_TAG_enumerator) + <7268> DW_AT_name : (indirect string, offset: 0x5d53): SYS_timer_delete + <726c> DW_AT_const_value : 51 + <2><726d>: Abbrev Number: 6 (DW_TAG_enumerator) + <726e> DW_AT_name : (indirect string, offset: 0x5c61): SYS_timer_getoverrun + <7272> DW_AT_const_value : 52 + <2><7273>: Abbrev Number: 6 (DW_TAG_enumerator) + <7274> DW_AT_name : (indirect string, offset: 0x61d8): SYS_timer_gettime + <7278> DW_AT_const_value : 53 + <2><7279>: Abbrev Number: 6 (DW_TAG_enumerator) + <727a> DW_AT_name : (indirect string, offset: 0x5c24): SYS_timer_settime + <727e> DW_AT_const_value : 54 + <2><727f>: Abbrev Number: 6 (DW_TAG_enumerator) + <7280> DW_AT_name : (indirect string, offset: 0x5d03): SYS_getitimer + <7284> DW_AT_const_value : 55 + <2><7285>: Abbrev Number: 6 (DW_TAG_enumerator) + <7286> DW_AT_name : (indirect string, offset: 0x5b41): SYS_setitimer + <728a> DW_AT_const_value : 56 + <2><728b>: Abbrev Number: 6 (DW_TAG_enumerator) + <728c> DW_AT_name : (indirect string, offset: 0x5cc7): SYS_nx_vsyslog + <7290> DW_AT_const_value : 57 + <2><7291>: Abbrev Number: 6 (DW_TAG_enumerator) + <7292> DW_AT_name : (indirect string, offset: 0x5a87): SYS_close + <7296> DW_AT_const_value : 58 + <2><7297>: Abbrev Number: 6 (DW_TAG_enumerator) + <7298> DW_AT_name : (indirect string, offset: 0x6222): SYS_ioctl + <729c> DW_AT_const_value : 59 + <2><729d>: Abbrev Number: 6 (DW_TAG_enumerator) + <729e> DW_AT_name : (indirect string, offset: 0x5a49): SYS_read + <72a2> DW_AT_const_value : 60 + <2><72a3>: Abbrev Number: 6 (DW_TAG_enumerator) + <72a4> DW_AT_name : (indirect string, offset: 0x5ba5): SYS_write + <72a8> DW_AT_const_value : 61 + <2><72a9>: Abbrev Number: 6 (DW_TAG_enumerator) + <72aa> DW_AT_name : (indirect string, offset: 0x59ea): SYS_pread + <72ae> DW_AT_const_value : 62 + <2><72af>: Abbrev Number: 6 (DW_TAG_enumerator) + <72b0> DW_AT_name : (indirect string, offset: 0x5dd6): SYS_pwrite + <72b4> DW_AT_const_value : 63 + <2><72b5>: Abbrev Number: 6 (DW_TAG_enumerator) + <72b6> DW_AT_name : (indirect string, offset: 0x58eb): SYS_poll + <72ba> DW_AT_const_value : 64 + <2><72bb>: Abbrev Number: 6 (DW_TAG_enumerator) + <72bc> DW_AT_name : (indirect string, offset: 0x59ae): SYS_select + <72c0> DW_AT_const_value : 65 + <2><72c1>: Abbrev Number: 6 (DW_TAG_enumerator) + <72c2> DW_AT_name : (indirect string, offset: 0x5968): SYS_ppoll + <72c6> DW_AT_const_value : 66 + <2><72c7>: Abbrev Number: 6 (DW_TAG_enumerator) + <72c8> DW_AT_name : (indirect string, offset: 0x5cd6): SYS_pselect + <72cc> DW_AT_const_value : 67 + <2><72cd>: Abbrev Number: 6 (DW_TAG_enumerator) + <72ce> DW_AT_name : (indirect string, offset: 0x5ac8): SYS_boardctl + <72d2> DW_AT_const_value : 68 + <2><72d3>: Abbrev Number: 6 (DW_TAG_enumerator) + <72d4> DW_AT_name : (indirect string, offset: 0x5c80): SYS_dup + <72d8> DW_AT_const_value : 69 + <2><72d9>: Abbrev Number: 6 (DW_TAG_enumerator) + <72da> DW_AT_name : (indirect string, offset: 0x5ec6): SYS_dup2 + <72de> DW_AT_const_value : 70 + <2><72df>: Abbrev Number: 6 (DW_TAG_enumerator) + <72e0> DW_AT_name : (indirect string, offset: 0x5c1a): SYS_fcntl + <72e4> DW_AT_const_value : 71 + <2><72e5>: Abbrev Number: 6 (DW_TAG_enumerator) + <72e6> DW_AT_name : (indirect string, offset: 0x6214): SYS_ftruncate + <72ea> DW_AT_const_value : 72 + <2><72eb>: Abbrev Number: 6 (DW_TAG_enumerator) + <72ec> DW_AT_name : (indirect string, offset: 0x5a3f): SYS_lseek + <72f0> DW_AT_const_value : 73 + <2><72f1>: Abbrev Number: 6 (DW_TAG_enumerator) + <72f2> DW_AT_name : (indirect string, offset: 0x5b59): SYS_mmap + <72f6> DW_AT_const_value : 74 + <2><72f7>: Abbrev Number: 6 (DW_TAG_enumerator) + <72f8> DW_AT_name : (indirect string, offset: 0x60bb): SYS_open + <72fc> DW_AT_const_value : 75 + <2><72fd>: Abbrev Number: 6 (DW_TAG_enumerator) + <72fe> DW_AT_name : (indirect string, offset: 0x5e1c): SYS_rename + <7302> DW_AT_const_value : 76 + <2><7303>: Abbrev Number: 6 (DW_TAG_enumerator) + <7304> DW_AT_name : (indirect string, offset: 0x624e): SYS_stat + <7308> DW_AT_const_value : 77 + <2><7309>: Abbrev Number: 6 (DW_TAG_enumerator) + <730a> DW_AT_name : (indirect string, offset: 0x6055): SYS_lstat + <730e> DW_AT_const_value : 78 + <2><730f>: Abbrev Number: 6 (DW_TAG_enumerator) + <7310> DW_AT_name : (indirect string, offset: 0x5934): SYS_fstat + <7314> DW_AT_const_value : 79 + <2><7315>: Abbrev Number: 6 (DW_TAG_enumerator) + <7316> DW_AT_name : (indirect string, offset: 0x5cf0): SYS_statfs + <731a> DW_AT_const_value : 80 + <2><731b>: Abbrev Number: 6 (DW_TAG_enumerator) + <731c> DW_AT_name : (indirect string, offset: 0x5e9c): SYS_fstatfs + <7320> DW_AT_const_value : 81 + <2><7321>: Abbrev Number: 6 (DW_TAG_enumerator) + <7322> DW_AT_name : (indirect string, offset: 0x6071): SYS_sendfile + <7326> DW_AT_const_value : 82 + <2><7327>: Abbrev Number: 6 (DW_TAG_enumerator) + <7328> DW_AT_name : (indirect string, offset: 0x5ecf): SYS_sync + <732c> DW_AT_const_value : 83 + <2><732d>: Abbrev Number: 6 (DW_TAG_enumerator) + <732e> DW_AT_name : (indirect string, offset: 0x5bba): SYS_fsync + <7332> DW_AT_const_value : 84 + <2><7333>: Abbrev Number: 6 (DW_TAG_enumerator) + <7334> DW_AT_name : (indirect string, offset: 0x5ca9): SYS_chmod + <7338> DW_AT_const_value : 85 + <2><7339>: Abbrev Number: 6 (DW_TAG_enumerator) + <733a> DW_AT_name : (indirect string, offset: 0x6209): SYS_lchmod + <733e> DW_AT_const_value : 86 + <2><733f>: Abbrev Number: 6 (DW_TAG_enumerator) + <7340> DW_AT_name : (indirect string, offset: 0x5e06): SYS_fchmod + <7344> DW_AT_const_value : 87 + <2><7345>: Abbrev Number: 6 (DW_TAG_enumerator) + <7346> DW_AT_name : (indirect string, offset: 0x5a6c): SYS_chown + <734a> DW_AT_const_value : 88 + <2><734b>: Abbrev Number: 6 (DW_TAG_enumerator) + <734c> DW_AT_name : (indirect string, offset: 0x5e60): SYS_lchown + <7350> DW_AT_const_value : 89 + <2><7351>: Abbrev Number: 6 (DW_TAG_enumerator) + <7352> DW_AT_name : (indirect string, offset: 0x5b79): SYS_fchown + <7356> DW_AT_const_value : 90 + <2><7357>: Abbrev Number: 6 (DW_TAG_enumerator) + <7358> DW_AT_name : (indirect string, offset: 0x5bd4): SYS_utimens + <735c> DW_AT_const_value : 91 + <2><735d>: Abbrev Number: 6 (DW_TAG_enumerator) + <735e> DW_AT_name : (indirect string, offset: 0x61fc): SYS_lutimens + <7362> DW_AT_const_value : 92 + <2><7363>: Abbrev Number: 6 (DW_TAG_enumerator) + <7364> DW_AT_name : (indirect string, offset: 0x5f35): SYS_futimens + <7368> DW_AT_const_value : 93 + <2><7369>: Abbrev Number: 6 (DW_TAG_enumerator) + <736a> DW_AT_name : (indirect string, offset: 0x604a): SYS_munmap + <736e> DW_AT_const_value : 94 + <2><736f>: Abbrev Number: 6 (DW_TAG_enumerator) + <7370> DW_AT_name : (indirect string, offset: 0x5c76): SYS_mount + <7374> DW_AT_const_value : 95 + <2><7375>: Abbrev Number: 6 (DW_TAG_enumerator) + <7376> DW_AT_name : (indirect string, offset: 0x5b4f): SYS_mkdir + <737a> DW_AT_const_value : 96 + <2><737b>: Abbrev Number: 6 (DW_TAG_enumerator) + <737c> DW_AT_name : (indirect string, offset: 0x5c57): SYS_rmdir + <7380> DW_AT_const_value : 97 + <2><7381>: Abbrev Number: 6 (DW_TAG_enumerator) + <7382> DW_AT_name : (indirect string, offset: 0x6011): SYS_umount2 + <7386> DW_AT_const_value : 98 + <2><7387>: Abbrev Number: 6 (DW_TAG_enumerator) + <7388> DW_AT_name : (indirect string, offset: 0x6291): SYS_unlink + <738c> DW_AT_const_value : 99 + <2><738d>: Abbrev Number: 6 (DW_TAG_enumerator) + <738e> DW_AT_name : (indirect string, offset: 0x5ded): SYS_pthread_barrier_wait + <7392> DW_AT_const_value : 100 + <2><7393>: Abbrev Number: 6 (DW_TAG_enumerator) + <7394> DW_AT_name : (indirect string, offset: 0x5b2e): SYS_pthread_cancel + <7398> DW_AT_const_value : 101 + <2><7399>: Abbrev Number: 6 (DW_TAG_enumerator) + <739a> DW_AT_name : (indirect string, offset: 0x5dbb): SYS_pthread_cond_broadcast + <739e> DW_AT_const_value : 102 + <2><739f>: Abbrev Number: 6 (DW_TAG_enumerator) + <73a0> DW_AT_name : (indirect string, offset: 0x5a27): SYS_pthread_cond_signal + <73a4> DW_AT_const_value : 103 + <2><73a5>: Abbrev Number: 6 (DW_TAG_enumerator) + <73a6> DW_AT_name : (indirect string, offset: 0x60a5): SYS_pthread_cond_wait + <73aa> DW_AT_const_value : 104 + <2><73ab>: Abbrev Number: 6 (DW_TAG_enumerator) + <73ac> DW_AT_name : (indirect string, offset: 0x5afd): SYS_nx_pthread_create + <73b0> DW_AT_const_value : 105 + <2><73b1>: Abbrev Number: 6 (DW_TAG_enumerator) + <73b2> DW_AT_name : (indirect string, offset: 0x5983): SYS_pthread_detach + <73b6> DW_AT_const_value : 106 + <2><73b7>: Abbrev Number: 6 (DW_TAG_enumerator) + <73b8> DW_AT_name : (indirect string, offset: 0x5e6b): SYS_nx_pthread_exit + <73bc> DW_AT_const_value : 107 + <2><73bd>: Abbrev Number: 6 (DW_TAG_enumerator) + <73be> DW_AT_name : (indirect string, offset: 0x5ed8): SYS_pthread_getschedparam + <73c2> DW_AT_const_value : 108 + <2><73c3>: Abbrev Number: 6 (DW_TAG_enumerator) + <73c4> DW_AT_name : (indirect string, offset: 0x623d): SYS_pthread_join + <73c8> DW_AT_const_value : 109 + <2><73c9>: Abbrev Number: 6 (DW_TAG_enumerator) + <73ca> DW_AT_name : (indirect string, offset: 0x59d0): SYS_pthread_mutex_destroy + <73ce> DW_AT_const_value : 110 + <2><73cf>: Abbrev Number: 6 (DW_TAG_enumerator) + <73d0> DW_AT_name : (indirect string, offset: 0x5ffa): SYS_pthread_mutex_init + <73d4> DW_AT_const_value : 111 + <2><73d5>: Abbrev Number: 6 (DW_TAG_enumerator) + <73d6> DW_AT_name : (indirect string, offset: 0x5fab): SYS_pthread_mutex_timedlock + <73da> DW_AT_const_value : 112 + <2><73db>: Abbrev Number: 6 (DW_TAG_enumerator) + <73dc> DW_AT_name : (indirect string, offset: 0x58ff): SYS_pthread_mutex_trylock + <73e0> DW_AT_const_value : 113 + <2><73e1>: Abbrev Number: 6 (DW_TAG_enumerator) + <73e2> DW_AT_name : (indirect string, offset: 0x5d28): SYS_pthread_mutex_unlock + <73e6> DW_AT_const_value : 114 + <2><73e7>: Abbrev Number: 6 (DW_TAG_enumerator) + <73e8> DW_AT_name : (indirect string, offset: 0x60d1): SYS_pthread_mutex_consistent + <73ec> DW_AT_const_value : 115 + <2><73ed>: Abbrev Number: 6 (DW_TAG_enumerator) + <73ee> DW_AT_name : (indirect string, offset: 0x5a91): SYS_pthread_setschedparam + <73f2> DW_AT_const_value : 116 + <2><73f3>: Abbrev Number: 6 (DW_TAG_enumerator) + <73f4> DW_AT_name : (indirect string, offset: 0x5ad5): SYS_pthread_setschedprio + <73f8> DW_AT_const_value : 117 + <2><73f9>: Abbrev Number: 6 (DW_TAG_enumerator) + <73fa> DW_AT_name : (indirect string, offset: 0x607e): SYS_pthread_cond_clockwait + <73fe> DW_AT_const_value : 118 + <2><73ff>: Abbrev Number: 6 (DW_TAG_enumerator) + <7400> DW_AT_name : (indirect string, offset: 0x610e): SYS_pthread_sigmask + <7404> DW_AT_const_value : 119 + <2><7405>: Abbrev Number: 6 (DW_TAG_enumerator) + <7406> DW_AT_name : (indirect string, offset: 0x5bfb): SYS_mq_close + <740a> DW_AT_const_value : 120 + <2><740b>: Abbrev Number: 6 (DW_TAG_enumerator) + <740c> DW_AT_name : (indirect string, offset: 0x5aee): SYS_mq_getattr + <7410> DW_AT_const_value : 121 + <2><7411>: Abbrev Number: 6 (DW_TAG_enumerator) + <7412> DW_AT_name : (indirect string, offset: 0x5ce2): SYS_mq_notify + <7416> DW_AT_const_value : 122 + <2><7417>: Abbrev Number: 6 (DW_TAG_enumerator) + <7418> DW_AT_name : (indirect string, offset: 0x6099): SYS_mq_open + <741c> DW_AT_const_value : 123 + <2><741d>: Abbrev Number: 6 (DW_TAG_enumerator) + <741e> DW_AT_name : (indirect string, offset: 0x5b84): SYS_mq_receive + <7422> DW_AT_const_value : 124 + <2><7423>: Abbrev Number: 6 (DW_TAG_enumerator) + <7424> DW_AT_name : (indirect string, offset: 0x5de1): SYS_mq_send + <7428> DW_AT_const_value : 125 + <2><7429>: Abbrev Number: 6 (DW_TAG_enumerator) + <742a> DW_AT_name : (indirect string, offset: 0x5f03): SYS_mq_setattr + <742e> DW_AT_const_value : 126 + <2><742f>: Abbrev Number: 6 (DW_TAG_enumerator) + <7430> DW_AT_name : (indirect string, offset: 0x5e4c): SYS_mq_timedreceive + <7434> DW_AT_const_value : 127 + <2><7435>: Abbrev Number: 6 (DW_TAG_enumerator) + <7436> DW_AT_name : (indirect string, offset: 0x5972): SYS_mq_timedsend + <743a> DW_AT_const_value : 128 + <2><743b>: Abbrev Number: 6 (DW_TAG_enumerator) + <743c> DW_AT_name : (indirect string, offset: 0x5c36): SYS_mq_unlink + <7440> DW_AT_const_value : 129 + <2><7441>: Abbrev Number: 6 (DW_TAG_enumerator) + <7442> DW_AT_name : (indirect string, offset: 0x5f97): SYS_get_environ_ptr + <7446> DW_AT_const_value : 130 + <2><7447>: Abbrev Number: 6 (DW_TAG_enumerator) + <7448> DW_AT_name : (indirect string, offset: 0x5fed): SYS_clearenv + <744c> DW_AT_const_value : 131 + <2><744d>: Abbrev Number: 6 (DW_TAG_enumerator) + <744e> DW_AT_name : (indirect string, offset: 0x6257): SYS_getenv + <7452> DW_AT_const_value : 132 + <2><7453>: Abbrev Number: 6 (DW_TAG_enumerator) + <7454> DW_AT_name : (indirect string, offset: 0x594e): SYS_putenv + <7458> DW_AT_const_value : 133 + <2><7459>: Abbrev Number: 6 (DW_TAG_enumerator) + <745a> DW_AT_name : (indirect string, offset: 0x5eb1): SYS_setenv + <745e> DW_AT_const_value : 134 + <2><745f>: Abbrev Number: 6 (DW_TAG_enumerator) + <7460> DW_AT_name : (indirect string, offset: 0x5b62): SYS_unsetenv + <7464> DW_AT_const_value : 135 + <2><7465>: Abbrev Number: 6 (DW_TAG_enumerator) + <7466> DW_AT_name : (indirect string, offset: 0x6262): SYS_getrandom + <746a> DW_AT_const_value : 136 + <2><746b>: Abbrev Number: 6 (DW_TAG_enumerator) + <746c> DW_AT_name : (indirect string, offset: 0x5a5e): SYS_nanosleep + <7470> DW_AT_const_value : 137 + <2><7471>: Abbrev Number: 6 (DW_TAG_enumerator) + <7472> DW_AT_name : (indirect string, offset: 0x61ea): SYS_epoll_create1 + <7476> DW_AT_const_value : 138 + <2><7477>: Abbrev Number: 6 (DW_TAG_enumerator) + <7478> DW_AT_name : (indirect string, offset: 0x59a0): SYS_epoll_ctl + <747c> DW_AT_const_value : 139 + <2><747d>: Abbrev Number: 6 (DW_TAG_enumerator) + <747e> DW_AT_name : (indirect string, offset: 0x5d7d): SYS_epoll_wait + <7482> DW_AT_const_value : 140 + <2><7483>: Abbrev Number: 6 (DW_TAG_enumerator) + <7484> DW_AT_name : (indirect string, offset: 0x5fd3): SYS_time + <7488> DW_AT_const_value : 141 + <2><7489>: Abbrev Number: 6 (DW_TAG_enumerator) + <748a> DW_AT_name : (indirect string, offset: 0x5fdc): SYS_gettimeofday + <748e> DW_AT_const_value : 142 + <2><748f>: Abbrev Number: 6 (DW_TAG_enumerator) + <7490> DW_AT_name : (indirect string, offset: 0x5ef2): SYS_settimeofday + <7494> DW_AT_const_value : 143 + <2><7495>: Abbrev Number: 6 (DW_TAG_enumerator) + <7496> DW_AT_name : (indirect string, offset: 0x5b13): SYS_signal + <749a> DW_AT_const_value : 144 + <2><749b>: Abbrev Number: 6 (DW_TAG_enumerator) + <749c> DW_AT_name : (indirect string, offset: 0x5c9a): SYS_maxsyscall + <74a0> DW_AT_const_value : 145 + <2><74a1>: Abbrev Number: 0 + <1><74a2>: Abbrev Number: 7 (DW_TAG_subprogram) + <74a3> DW_AT_external : 1 + <74a3> DW_AT_name : (indirect string, offset: 0x6122): _exit + <74a7> DW_AT_decl_file : 6 + <74a8> DW_AT_decl_line : 318 + <74aa> DW_AT_decl_column : 9 + <74ab> DW_AT_prototyped : 1 + <74ab> DW_AT_noreturn : 1 + <74ab> DW_AT_low_pc : 0xd68 + <74b3> DW_AT_high_pc : 0xc + <74bb> DW_AT_frame_base : 1 byte block: 9c (DW_OP_call_frame_cfa) + <74bd> DW_AT_GNU_all_call_sites: 1 + <74bd> DW_AT_sibling : <0x750b> + <2><74c1>: Abbrev Number: 8 (DW_TAG_formal_parameter) + <74c2> DW_AT_name : (indirect string, offset: 0x5f8c): parm1 + <74c6> DW_AT_decl_file : 1 + <74c7> DW_AT_decl_line : 7 + <74c8> DW_AT_decl_column : 16 + <74c9> DW_AT_type : <0x7115> + <74cd> DW_AT_location : 0x2eae (location list) + <2><74d1>: Abbrev Number: 9 (DW_TAG_inlined_subroutine) + <74d2> DW_AT_abstract_origin: <0x750b> + <74d6> DW_AT_low_pc : 0xd6a + <74de> DW_AT_high_pc : 0x8 + <74e6> DW_AT_call_file : 1 + <74e7> DW_AT_call_line : 9 + <74e8> DW_AT_call_column : 3 + <3><74e9>: Abbrev Number: 10 (DW_TAG_formal_parameter) + <74ea> DW_AT_abstract_origin: <0x7518> + <74ee> DW_AT_location : 0x2ee7 (location list) + <3><74f2>: Abbrev Number: 10 (DW_TAG_formal_parameter) + <74f3> DW_AT_abstract_origin: <0x7524> + <74f7> DW_AT_location : 0x2f0b (location list) + <3><74fb>: Abbrev Number: 11 (DW_TAG_variable) + <74fc> DW_AT_abstract_origin: <0x7530> + <7500> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <3><7502>: Abbrev Number: 11 (DW_TAG_variable) + <7503> DW_AT_abstract_origin: <0x753b> + <7507> DW_AT_location : 1 byte block: 5b (DW_OP_reg11 (a1)) + <3><7509>: Abbrev Number: 0 + <2><750a>: Abbrev Number: 0 + <1><750b>: Abbrev Number: 12 (DW_TAG_subprogram) + <750c> DW_AT_name : (indirect string, offset: 0x5b6f): sys_call1 + <7510> DW_AT_decl_file : 2 + <7511> DW_AT_decl_line : 197 + <7512> DW_AT_decl_column : 25 + <7513> DW_AT_prototyped : 1 + <7513> DW_AT_type : <0x7144> + <7517> DW_AT_inline : 3 (declared as inline and inlined) + <2><7518>: Abbrev Number: 13 (DW_TAG_formal_parameter) + <7519> DW_AT_name : nbr + <751d> DW_AT_decl_file : 2 + <751e> DW_AT_decl_line : 197 + <751f> DW_AT_decl_column : 48 + <7520> DW_AT_type : <0x711c> + <2><7524>: Abbrev Number: 14 (DW_TAG_formal_parameter) + <7525> DW_AT_name : (indirect string, offset: 0x5f8c): parm1 + <7529> DW_AT_decl_file : 2 + <752a> DW_AT_decl_line : 197 + <752b> DW_AT_decl_column : 63 + <752c> DW_AT_type : <0x7144> + <2><7530>: Abbrev Number: 15 (DW_TAG_variable) + <7531> DW_AT_name : r0 + <7534> DW_AT_decl_file : 2 + <7535> DW_AT_decl_line : 199 + <7536> DW_AT_decl_column : 17 + <7537> DW_AT_type : <0x7123> + <2><753b>: Abbrev Number: 15 (DW_TAG_variable) + <753c> DW_AT_name : r1 + <753f> DW_AT_decl_file : 2 + <7540> DW_AT_decl_line : 200 + <7541> DW_AT_decl_column : 17 + <7542> DW_AT_type : <0x7123> + <2><7546>: Abbrev Number: 0 + <1><7547>: Abbrev Number: 0 + Compilation Unit @ offset 0x7548: + Length: 0x50d (32-bit) + Version: 4 + Abbrev Offset: 0x2503 + Pointer Size: 8 + <0><7553>: Abbrev Number: 1 (DW_TAG_compile_unit) + <7554> DW_AT_producer : (indirect string, offset: 0x6b28): GNU C17 10.2.0 -mcmodel=medany -march=rv64imafdc -mabi=lp64d -march=rv64imafdc -g -Os -fno-common -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections + <7558> DW_AT_language : 12 (ANSI C99) + <7559> DW_AT_name : (indirect string, offset: 0x639f): proxies/PROXY_clock_gettime.c + <755d> DW_AT_comp_dir : (indirect string, offset: 0x696c): /Users/Luppy/ox64/nuttx/syscall + <7561> DW_AT_ranges : 0x810 + <7565> DW_AT_low_pc : 0x0 + <756d> DW_AT_stmt_list : 0x44ab + <1><7571>: Abbrev Number: 2 (DW_TAG_base_type) + <7572> DW_AT_byte_size : 1 + <7573> DW_AT_encoding : 6 (signed char) + <7574> DW_AT_name : (indirect string, offset: 0x641b): signed char + <1><7578>: Abbrev Number: 2 (DW_TAG_base_type) + <7579> DW_AT_byte_size : 1 + <757a> DW_AT_encoding : 8 (unsigned char) + <757b> DW_AT_name : (indirect string, offset: 0x686d): unsigned char + <1><757f>: Abbrev Number: 2 (DW_TAG_base_type) + <7580> DW_AT_byte_size : 2 + <7581> DW_AT_encoding : 5 (signed) + <7582> DW_AT_name : (indirect string, offset: 0x68aa): short int + <1><7586>: Abbrev Number: 2 (DW_TAG_base_type) + <7587> DW_AT_byte_size : 2 + <7588> DW_AT_encoding : 7 (unsigned) + <7589> DW_AT_name : (indirect string, offset: 0x662b): short unsigned int + <1><758d>: Abbrev Number: 3 (DW_TAG_base_type) + <758e> DW_AT_byte_size : 4 + <758f> DW_AT_encoding : 5 (signed) + <7590> DW_AT_name : int + <1><7594>: Abbrev Number: 4 (DW_TAG_typedef) + <7595> DW_AT_name : (indirect string, offset: 0x62ef): _uint32_t + <7599> DW_AT_decl_file : 3 + <759a> DW_AT_decl_line : 59 + <759b> DW_AT_decl_column : 28 + <759c> DW_AT_type : <0x75a0> + <1><75a0>: Abbrev Number: 2 (DW_TAG_base_type) + <75a1> DW_AT_byte_size : 4 + <75a2> DW_AT_encoding : 7 (unsigned) + <75a3> DW_AT_name : (indirect string, offset: 0x65a9): unsigned int + <1><75a7>: Abbrev Number: 2 (DW_TAG_base_type) + <75a8> DW_AT_byte_size : 8 + <75a9> DW_AT_encoding : 5 (signed) + <75aa> DW_AT_name : (indirect string, offset: 0x6488): long int + <1><75ae>: Abbrev Number: 2 (DW_TAG_base_type) + <75af> DW_AT_byte_size : 8 + <75b0> DW_AT_encoding : 7 (unsigned) + <75b1> DW_AT_name : (indirect string, offset: 0x65d1): long unsigned int + <1><75b5>: Abbrev Number: 4 (DW_TAG_typedef) + <75b6> DW_AT_name : (indirect string, offset: 0x66ec): _size_t + <75ba> DW_AT_decl_file : 3 + <75bb> DW_AT_decl_line : 93 + <75bc> DW_AT_decl_column : 28 + <75bd> DW_AT_type : <0x75ae> + <1><75c1>: Abbrev Number: 2 (DW_TAG_base_type) + <75c2> DW_AT_byte_size : 8 + <75c3> DW_AT_encoding : 7 (unsigned) + <75c4> DW_AT_name : (indirect string, offset: 0x6364): long long unsigned int + <1><75c8>: Abbrev Number: 4 (DW_TAG_typedef) + <75c9> DW_AT_name : (indirect string, offset: 0x6949): uint32_t + <75cd> DW_AT_decl_file : 4 + <75ce> DW_AT_decl_line : 177 + <75cf> DW_AT_decl_column : 29 + <75d0> DW_AT_type : <0x7594> + <1><75d4>: Abbrev Number: 4 (DW_TAG_typedef) + <75d5> DW_AT_name : (indirect string, offset: 0x62db): uintptr_t + <75d9> DW_AT_decl_file : 4 + <75da> DW_AT_decl_line : 239 + <75db> DW_AT_decl_column : 29 + <75dc> DW_AT_type : <0x75b5> + <1><75e0>: Abbrev Number: 4 (DW_TAG_typedef) + <75e1> DW_AT_name : (indirect string, offset: 0x6811): time_t + <75e5> DW_AT_decl_file : 5 + <75e6> DW_AT_decl_line : 255 + <75e7> DW_AT_decl_column : 22 + <75e8> DW_AT_type : <0x75c8> + <1><75ec>: Abbrev Number: 5 (DW_TAG_typedef) + <75ed> DW_AT_name : (indirect string, offset: 0x6c47): clockid_t + <75f1> DW_AT_decl_file : 5 + <75f2> DW_AT_decl_line : 257 + <75f4> DW_AT_decl_column : 22 + <75f5> DW_AT_type : <0x758d> + <1><75f9>: Abbrev Number: 2 (DW_TAG_base_type) + <75fa> DW_AT_byte_size : 1 + <75fb> DW_AT_encoding : 8 (unsigned char) + <75fc> DW_AT_name : (indirect string, offset: 0x6998): char + <1><7600>: Abbrev Number: 6 (DW_TAG_structure_type) + <7601> DW_AT_name : (indirect string, offset: 0x68bd): timespec + <7605> DW_AT_byte_size : 16 + <7606> DW_AT_decl_file : 6 + <7607> DW_AT_decl_line : 113 + <7608> DW_AT_decl_column : 8 + <7609> DW_AT_sibling : <0x7628> + <2><760d>: Abbrev Number: 7 (DW_TAG_member) + <760e> DW_AT_name : (indirect string, offset: 0x6785): tv_sec + <7612> DW_AT_decl_file : 6 + <7613> DW_AT_decl_line : 115 + <7614> DW_AT_decl_column : 10 + <7615> DW_AT_type : <0x75e0> + <7619> DW_AT_data_member_location: 0 + <2><761a>: Abbrev Number: 7 (DW_TAG_member) + <761b> DW_AT_name : (indirect string, offset: 0x6764): tv_nsec + <761f> DW_AT_decl_file : 6 + <7620> DW_AT_decl_line : 116 + <7621> DW_AT_decl_column : 10 + <7622> DW_AT_type : <0x75a7> + <7626> DW_AT_data_member_location: 8 + <2><7627>: Abbrev Number: 0 + <1><7628>: Abbrev Number: 8 (DW_TAG_enumeration_type) + <7629> DW_AT_encoding : 7 (unsigned) + <762a> DW_AT_byte_size : 4 + <762b> DW_AT_type : <0x75a0> + <762f> DW_AT_decl_file : 7 + <7630> DW_AT_decl_line : 57 + <7631> DW_AT_decl_column : 1 + <7632> DW_AT_sibling : <0x7973> + <2><7636>: Abbrev Number: 9 (DW_TAG_enumerator) + <7637> DW_AT_name : (indirect string, offset: 0x676c): SYS__exit + <763b> DW_AT_const_value : 8 + <2><763c>: Abbrev Number: 9 (DW_TAG_enumerator) + <763d> DW_AT_name : (indirect string, offset: 0x6920): SYS__assert + <7641> DW_AT_const_value : 9 + <2><7642>: Abbrev Number: 9 (DW_TAG_enumerator) + <7643> DW_AT_name : (indirect string, offset: 0x6578): SYS_getpid + <7647> DW_AT_const_value : 10 + <2><7648>: Abbrev Number: 9 (DW_TAG_enumerator) + <7649> DW_AT_name : (indirect string, offset: 0x6bea): SYS_gettid + <764d> DW_AT_const_value : 11 + <2><764e>: Abbrev Number: 9 (DW_TAG_enumerator) + <764f> DW_AT_name : (indirect string, offset: 0x6c8a): SYS_prctl + <7653> DW_AT_const_value : 12 + <2><7654>: Abbrev Number: 9 (DW_TAG_enumerator) + <7655> DW_AT_name : (indirect string, offset: 0x63dd): SYS_sched_getparam + <7659> DW_AT_const_value : 13 + <2><765a>: Abbrev Number: 9 (DW_TAG_enumerator) + <765b> DW_AT_name : (indirect string, offset: 0x6c73): SYS_sched_getscheduler + <765f> DW_AT_const_value : 14 + <2><7660>: Abbrev Number: 9 (DW_TAG_enumerator) + <7661> DW_AT_name : (indirect string, offset: 0x678c): SYS_sched_lock + <7665> DW_AT_const_value : 15 + <2><7666>: Abbrev Number: 9 (DW_TAG_enumerator) + <7667> DW_AT_name : (indirect string, offset: 0x6af4): SYS_sched_lockcount + <766b> DW_AT_const_value : 16 + <2><766c>: Abbrev Number: 9 (DW_TAG_enumerator) + <766d> DW_AT_name : (indirect string, offset: 0x6a36): SYS_sched_rr_get_interval + <7671> DW_AT_const_value : 17 + <2><7672>: Abbrev Number: 9 (DW_TAG_enumerator) + <7673> DW_AT_name : (indirect string, offset: 0x6a23): SYS_sched_setparam + <7677> DW_AT_const_value : 18 + <2><7678>: Abbrev Number: 9 (DW_TAG_enumerator) + <7679> DW_AT_name : (indirect string, offset: 0x6702): SYS_sched_setscheduler + <767d> DW_AT_const_value : 19 + <2><767e>: Abbrev Number: 9 (DW_TAG_enumerator) + <767f> DW_AT_name : (indirect string, offset: 0x6c25): SYS_sched_unlock + <7683> DW_AT_const_value : 20 + <2><7684>: Abbrev Number: 9 (DW_TAG_enumerator) + <7685> DW_AT_name : (indirect string, offset: 0x65e3): SYS_sched_yield + <7689> DW_AT_const_value : 21 + <2><768a>: Abbrev Number: 9 (DW_TAG_enumerator) + <768b> DW_AT_name : (indirect string, offset: 0x6952): SYS_nxsched_get_stackinfo + <768f> DW_AT_const_value : 22 + <2><7690>: Abbrev Number: 9 (DW_TAG_enumerator) + <7691> DW_AT_name : (indirect string, offset: 0x67af): SYS_sysinfo + <7695> DW_AT_const_value : 23 + <2><7696>: Abbrev Number: 9 (DW_TAG_enumerator) + <7697> DW_AT_name : (indirect string, offset: 0x6939): SYS_gethostname + <769b> DW_AT_const_value : 24 + <2><769c>: Abbrev Number: 9 (DW_TAG_enumerator) + <769d> DW_AT_name : (indirect string, offset: 0x658d): SYS_sethostname + <76a1> DW_AT_const_value : 25 + <2><76a2>: Abbrev Number: 9 (DW_TAG_enumerator) + <76a3> DW_AT_name : (indirect string, offset: 0x6679): SYS_nxsem_destroy + <76a7> DW_AT_const_value : 26 + <2><76a8>: Abbrev Number: 9 (DW_TAG_enumerator) + <76a9> DW_AT_name : (indirect string, offset: 0x682b): SYS_nxsem_post + <76ad> DW_AT_const_value : 27 + <2><76ae>: Abbrev Number: 9 (DW_TAG_enumerator) + <76af> DW_AT_name : (indirect string, offset: 0x6474): SYS_nxsem_clockwait + <76b3> DW_AT_const_value : 28 + <2><76b4>: Abbrev Number: 9 (DW_TAG_enumerator) + <76b5> DW_AT_name : (indirect string, offset: 0x66a4): SYS_nxsem_timedwait + <76b9> DW_AT_const_value : 29 + <2><76ba>: Abbrev Number: 9 (DW_TAG_enumerator) + <76bb> DW_AT_name : (indirect string, offset: 0x6732): SYS_nxsem_trywait + <76bf> DW_AT_const_value : 30 + <2><76c0>: Abbrev Number: 9 (DW_TAG_enumerator) + <76c1> DW_AT_name : (indirect string, offset: 0x6304): SYS_nxsem_wait + <76c5> DW_AT_const_value : 31 + <2><76c6>: Abbrev Number: 9 (DW_TAG_enumerator) + <76c7> DW_AT_name : (indirect string, offset: 0x6b08): SYS_pgalloc + <76cb> DW_AT_const_value : 32 + <2><76cc>: Abbrev Number: 9 (DW_TAG_enumerator) + <76cd> DW_AT_name : (indirect string, offset: 0x6914): SYS_up_fork + <76d1> DW_AT_const_value : 33 + <2><76d2>: Abbrev Number: 9 (DW_TAG_enumerator) + <76d3> DW_AT_name : (indirect string, offset: 0x69cd): SYS_waitpid + <76d7> DW_AT_const_value : 34 + <2><76d8>: Abbrev Number: 9 (DW_TAG_enumerator) + <76d9> DW_AT_name : (indirect string, offset: 0x63cd): SYS_posix_spawn + <76dd> DW_AT_const_value : 35 + <2><76de>: Abbrev Number: 9 (DW_TAG_enumerator) + <76df> DW_AT_name : (indirect string, offset: 0x6909): SYS_execve + <76e3> DW_AT_const_value : 36 + <2><76e4>: Abbrev Number: 9 (DW_TAG_enumerator) + <76e5> DW_AT_name : (indirect string, offset: 0x6896): SYS_kill + <76e9> DW_AT_const_value : 37 + <2><76ea>: Abbrev Number: 9 (DW_TAG_enumerator) + <76eb> DW_AT_name : (indirect string, offset: 0x62a5): SYS_tgkill + <76ef> DW_AT_const_value : 38 + <2><76f0>: Abbrev Number: 9 (DW_TAG_enumerator) + <76f1> DW_AT_name : (indirect string, offset: 0x65b6): SYS_sigaction + <76f5> DW_AT_const_value : 39 + <2><76f6>: Abbrev Number: 9 (DW_TAG_enumerator) + <76f7> DW_AT_name : (indirect string, offset: 0x687b): SYS_sigpending + <76fb> DW_AT_const_value : 40 + <2><76fc>: Abbrev Number: 9 (DW_TAG_enumerator) + <76fd> DW_AT_name : (indirect string, offset: 0x64e7): SYS_sigprocmask + <7701> DW_AT_const_value : 41 + <2><7702>: Abbrev Number: 9 (DW_TAG_enumerator) + <7703> DW_AT_name : (indirect string, offset: 0x6aca): SYS_sigqueue + <7707> DW_AT_const_value : 42 + <2><7708>: Abbrev Number: 9 (DW_TAG_enumerator) + <7709> DW_AT_name : (indirect string, offset: 0x6755): SYS_sigsuspend + <770d> DW_AT_const_value : 43 + <2><770e>: Abbrev Number: 9 (DW_TAG_enumerator) + <770f> DW_AT_name : (indirect string, offset: 0x643f): SYS_sigtimedwait + <7713> DW_AT_const_value : 44 + <2><7714>: Abbrev Number: 9 (DW_TAG_enumerator) + <7715> DW_AT_name : (indirect string, offset: 0x63bd): SYS_sigwaitinfo + <7719> DW_AT_const_value : 45 + <2><771a>: Abbrev Number: 9 (DW_TAG_enumerator) + <771b> DW_AT_name : (indirect string, offset: 0x679b): SYS_clock_nanosleep + <771f> DW_AT_const_value : 46 + <2><7720>: Abbrev Number: 9 (DW_TAG_enumerator) + <7721> DW_AT_name : (indirect string, offset: 0x6341): SYS_clock + <7725> DW_AT_const_value : 47 + <2><7726>: Abbrev Number: 9 (DW_TAG_enumerator) + <7727> DW_AT_name : (indirect string, offset: 0x6a65): SYS_clock_gettime + <772b> DW_AT_const_value : 48 + <2><772c>: Abbrev Number: 9 (DW_TAG_enumerator) + <772d> DW_AT_name : (indirect string, offset: 0x655c): SYS_clock_settime + <7731> DW_AT_const_value : 49 + <2><7732>: Abbrev Number: 9 (DW_TAG_enumerator) + <7733> DW_AT_name : (indirect string, offset: 0x62ca): SYS_timer_create + <7737> DW_AT_const_value : 50 + <2><7738>: Abbrev Number: 9 (DW_TAG_enumerator) + <7739> DW_AT_name : (indirect string, offset: 0x6744): SYS_timer_delete + <773d> DW_AT_const_value : 51 + <2><773e>: Abbrev Number: 9 (DW_TAG_enumerator) + <773f> DW_AT_name : (indirect string, offset: 0x665a): SYS_timer_getoverrun + <7743> DW_AT_const_value : 52 + <2><7744>: Abbrev Number: 9 (DW_TAG_enumerator) + <7745> DW_AT_name : (indirect string, offset: 0x6bd8): SYS_timer_gettime + <7749> DW_AT_const_value : 53 + <2><774a>: Abbrev Number: 9 (DW_TAG_enumerator) + <774b> DW_AT_name : (indirect string, offset: 0x660b): SYS_timer_settime + <774f> DW_AT_const_value : 54 + <2><7750>: Abbrev Number: 9 (DW_TAG_enumerator) + <7751> DW_AT_name : (indirect string, offset: 0x66f4): SYS_getitimer + <7755> DW_AT_const_value : 55 + <2><7756>: Abbrev Number: 9 (DW_TAG_enumerator) + <7757> DW_AT_name : (indirect string, offset: 0x650a): SYS_setitimer + <775b> DW_AT_const_value : 56 + <2><775c>: Abbrev Number: 9 (DW_TAG_enumerator) + <775d> DW_AT_name : (indirect string, offset: 0x66b8): SYS_nx_vsyslog + <7761> DW_AT_const_value : 57 + <2><7762>: Abbrev Number: 9 (DW_TAG_enumerator) + <7763> DW_AT_name : (indirect string, offset: 0x6450): SYS_close + <7767> DW_AT_const_value : 58 + <2><7768>: Abbrev Number: 9 (DW_TAG_enumerator) + <7769> DW_AT_name : (indirect string, offset: 0x6c1b): SYS_ioctl + <776d> DW_AT_const_value : 59 + <2><776e>: Abbrev Number: 9 (DW_TAG_enumerator) + <776f> DW_AT_name : (indirect string, offset: 0x6412): SYS_read + <7773> DW_AT_const_value : 60 + <2><7774>: Abbrev Number: 9 (DW_TAG_enumerator) + <7775> DW_AT_name : (indirect string, offset: 0x656e): SYS_write + <7779> DW_AT_const_value : 61 + <2><777a>: Abbrev Number: 9 (DW_TAG_enumerator) + <777b> DW_AT_name : (indirect string, offset: 0x6395): SYS_pread + <777f> DW_AT_const_value : 62 + <2><7780>: Abbrev Number: 9 (DW_TAG_enumerator) + <7781> DW_AT_name : (indirect string, offset: 0x67d6): SYS_pwrite + <7785> DW_AT_const_value : 63 + <2><7786>: Abbrev Number: 9 (DW_TAG_enumerator) + <7787> DW_AT_name : (indirect string, offset: 0x629c): SYS_poll + <778b> DW_AT_const_value : 64 + <2><778c>: Abbrev Number: 9 (DW_TAG_enumerator) + <778d> DW_AT_name : (indirect string, offset: 0x6359): SYS_select + <7791> DW_AT_const_value : 65 + <2><7792>: Abbrev Number: 9 (DW_TAG_enumerator) + <7793> DW_AT_name : (indirect string, offset: 0x6313): SYS_ppoll + <7797> DW_AT_const_value : 66 + <2><7798>: Abbrev Number: 9 (DW_TAG_enumerator) + <7799> DW_AT_name : (indirect string, offset: 0x66c7): SYS_pselect + <779d> DW_AT_const_value : 67 + <2><779e>: Abbrev Number: 9 (DW_TAG_enumerator) + <779f> DW_AT_name : (indirect string, offset: 0x6491): SYS_boardctl + <77a3> DW_AT_const_value : 68 + <2><77a4>: Abbrev Number: 9 (DW_TAG_enumerator) + <77a5> DW_AT_name : (indirect string, offset: 0x6823): SYS_dup + <77a9> DW_AT_const_value : 69 + <2><77aa>: Abbrev Number: 9 (DW_TAG_enumerator) + <77ab> DW_AT_name : (indirect string, offset: 0x68b4): SYS_dup2 + <77af> DW_AT_const_value : 70 + <2><77b0>: Abbrev Number: 9 (DW_TAG_enumerator) + <77b1> DW_AT_name : (indirect string, offset: 0x6601): SYS_fcntl + <77b5> DW_AT_const_value : 71 + <2><77b6>: Abbrev Number: 9 (DW_TAG_enumerator) + <77b7> DW_AT_name : (indirect string, offset: 0x6c0d): SYS_ftruncate + <77bb> DW_AT_const_value : 72 + <2><77bc>: Abbrev Number: 9 (DW_TAG_enumerator) + <77bd> DW_AT_name : (indirect string, offset: 0x6408): SYS_lseek + <77c1> DW_AT_const_value : 73 + <2><77c2>: Abbrev Number: 9 (DW_TAG_enumerator) + <77c3> DW_AT_name : (indirect string, offset: 0x6522): SYS_mmap + <77c7> DW_AT_const_value : 74 + <2><77c8>: Abbrev Number: 9 (DW_TAG_enumerator) + <77c9> DW_AT_name : (indirect string, offset: 0x6ac1): SYS_open + <77cd> DW_AT_const_value : 75 + <2><77ce>: Abbrev Number: 9 (DW_TAG_enumerator) + <77cf> DW_AT_name : (indirect string, offset: 0x6818): SYS_rename + <77d3> DW_AT_const_value : 76 + <2><77d4>: Abbrev Number: 9 (DW_TAG_enumerator) + <77d5> DW_AT_name : (indirect string, offset: 0x6c51): SYS_stat + <77d9> DW_AT_const_value : 77 + <2><77da>: Abbrev Number: 9 (DW_TAG_enumerator) + <77db> DW_AT_name : (indirect string, offset: 0x6a5b): SYS_lstat + <77df> DW_AT_const_value : 78 + <2><77e0>: Abbrev Number: 9 (DW_TAG_enumerator) + <77e1> DW_AT_name : (indirect string, offset: 0x62e5): SYS_fstat + <77e5> DW_AT_const_value : 79 + <2><77e6>: Abbrev Number: 9 (DW_TAG_enumerator) + <77e7> DW_AT_name : (indirect string, offset: 0x66e1): SYS_statfs + <77eb> DW_AT_const_value : 80 + <2><77ec>: Abbrev Number: 9 (DW_TAG_enumerator) + <77ed> DW_AT_name : (indirect string, offset: 0x688a): SYS_fstatfs + <77f1> DW_AT_const_value : 81 + <2><77f2>: Abbrev Number: 9 (DW_TAG_enumerator) + <77f3> DW_AT_name : (indirect string, offset: 0x6a77): SYS_sendfile + <77f7> DW_AT_const_value : 82 + <2><77f8>: Abbrev Number: 9 (DW_TAG_enumerator) + <77f9> DW_AT_name : (indirect string, offset: 0x68c6): SYS_sync + <77fd> DW_AT_const_value : 83 + <2><77fe>: Abbrev Number: 9 (DW_TAG_enumerator) + <77ff> DW_AT_name : (indirect string, offset: 0x6583): SYS_fsync + <7803> DW_AT_const_value : 84 + <2><7804>: Abbrev Number: 9 (DW_TAG_enumerator) + <7805> DW_AT_name : (indirect string, offset: 0x669a): SYS_chmod + <7809> DW_AT_const_value : 85 + <2><780a>: Abbrev Number: 9 (DW_TAG_enumerator) + <780b> DW_AT_name : (indirect string, offset: 0x6c02): SYS_lchmod + <780f> DW_AT_const_value : 86 + <2><7810>: Abbrev Number: 9 (DW_TAG_enumerator) + <7811> DW_AT_name : (indirect string, offset: 0x6806): SYS_fchmod + <7815> DW_AT_const_value : 87 + <2><7816>: Abbrev Number: 9 (DW_TAG_enumerator) + <7817> DW_AT_name : (indirect string, offset: 0x6435): SYS_chown + <781b> DW_AT_const_value : 88 + <2><781c>: Abbrev Number: 9 (DW_TAG_enumerator) + <781d> DW_AT_name : (indirect string, offset: 0x684e): SYS_lchown + <7821> DW_AT_const_value : 89 + <2><7822>: Abbrev Number: 9 (DW_TAG_enumerator) + <7823> DW_AT_name : (indirect string, offset: 0x6542): SYS_fchown + <7827> DW_AT_const_value : 90 + <2><7828>: Abbrev Number: 9 (DW_TAG_enumerator) + <7829> DW_AT_name : (indirect string, offset: 0x659d): SYS_utimens + <782d> DW_AT_const_value : 91 + <2><782e>: Abbrev Number: 9 (DW_TAG_enumerator) + <782f> DW_AT_name : (indirect string, offset: 0x6bf5): SYS_lutimens + <7833> DW_AT_const_value : 92 + <2><7834>: Abbrev Number: 9 (DW_TAG_enumerator) + <7835> DW_AT_name : (indirect string, offset: 0x692c): SYS_futimens + <7839> DW_AT_const_value : 93 + <2><783a>: Abbrev Number: 9 (DW_TAG_enumerator) + <783b> DW_AT_name : (indirect string, offset: 0x6a50): SYS_munmap + <783f> DW_AT_const_value : 94 + <2><7840>: Abbrev Number: 9 (DW_TAG_enumerator) + <7841> DW_AT_name : (indirect string, offset: 0x666f): SYS_mount + <7845> DW_AT_const_value : 95 + <2><7846>: Abbrev Number: 9 (DW_TAG_enumerator) + <7847> DW_AT_name : (indirect string, offset: 0x6518): SYS_mkdir + <784b> DW_AT_const_value : 96 + <2><784c>: Abbrev Number: 9 (DW_TAG_enumerator) + <784d> DW_AT_name : (indirect string, offset: 0x6650): SYS_rmdir + <7851> DW_AT_const_value : 97 + <2><7852>: Abbrev Number: 9 (DW_TAG_enumerator) + <7853> DW_AT_name : (indirect string, offset: 0x6a17): SYS_umount2 + <7857> DW_AT_const_value : 98 + <2><7858>: Abbrev Number: 9 (DW_TAG_enumerator) + <7859> DW_AT_name : (indirect string, offset: 0x6c94): SYS_unlink + <785d> DW_AT_const_value : 99 + <2><785e>: Abbrev Number: 9 (DW_TAG_enumerator) + <785f> DW_AT_name : (indirect string, offset: 0x67ed): SYS_pthread_barrier_wait + <7863> DW_AT_const_value : 100 + <2><7864>: Abbrev Number: 9 (DW_TAG_enumerator) + <7865> DW_AT_name : (indirect string, offset: 0x64f7): SYS_pthread_cancel + <7869> DW_AT_const_value : 101 + <2><786a>: Abbrev Number: 9 (DW_TAG_enumerator) + <786b> DW_AT_name : (indirect string, offset: 0x67bb): SYS_pthread_cond_broadcast + <786f> DW_AT_const_value : 102 + <2><7870>: Abbrev Number: 9 (DW_TAG_enumerator) + <7871> DW_AT_name : (indirect string, offset: 0x63f0): SYS_pthread_cond_signal + <7875> DW_AT_const_value : 103 + <2><7876>: Abbrev Number: 9 (DW_TAG_enumerator) + <7877> DW_AT_name : (indirect string, offset: 0x6aab): SYS_pthread_cond_wait + <787b> DW_AT_const_value : 104 + <2><787c>: Abbrev Number: 9 (DW_TAG_enumerator) + <787d> DW_AT_name : (indirect string, offset: 0x64c6): SYS_nx_pthread_create + <7881> DW_AT_const_value : 105 + <2><7882>: Abbrev Number: 9 (DW_TAG_enumerator) + <7883> DW_AT_name : (indirect string, offset: 0x632e): SYS_pthread_detach + <7887> DW_AT_const_value : 106 + <2><7888>: Abbrev Number: 9 (DW_TAG_enumerator) + <7889> DW_AT_name : (indirect string, offset: 0x6859): SYS_nx_pthread_exit + <788d> DW_AT_const_value : 107 + <2><788e>: Abbrev Number: 9 (DW_TAG_enumerator) + <788f> DW_AT_name : (indirect string, offset: 0x68cf): SYS_pthread_getschedparam + <7893> DW_AT_const_value : 108 + <2><7894>: Abbrev Number: 9 (DW_TAG_enumerator) + <7895> DW_AT_name : (indirect string, offset: 0x6c36): SYS_pthread_join + <7899> DW_AT_const_value : 109 + <2><789a>: Abbrev Number: 9 (DW_TAG_enumerator) + <789b> DW_AT_name : (indirect string, offset: 0x637b): SYS_pthread_mutex_destroy + <789f> DW_AT_const_value : 110 + <2><78a0>: Abbrev Number: 9 (DW_TAG_enumerator) + <78a1> DW_AT_name : (indirect string, offset: 0x6a00): SYS_pthread_mutex_init + <78a5> DW_AT_const_value : 111 + <2><78a6>: Abbrev Number: 9 (DW_TAG_enumerator) + <78a7> DW_AT_name : (indirect string, offset: 0x69b1): SYS_pthread_mutex_timedlock + <78ab> DW_AT_const_value : 112 + <2><78ac>: Abbrev Number: 9 (DW_TAG_enumerator) + <78ad> DW_AT_name : (indirect string, offset: 0x62b0): SYS_pthread_mutex_trylock + <78b1> DW_AT_const_value : 113 + <2><78b2>: Abbrev Number: 9 (DW_TAG_enumerator) + <78b3> DW_AT_name : (indirect string, offset: 0x6719): SYS_pthread_mutex_unlock + <78b7> DW_AT_const_value : 114 + <2><78b8>: Abbrev Number: 9 (DW_TAG_enumerator) + <78b9> DW_AT_name : (indirect string, offset: 0x6ad7): SYS_pthread_mutex_consistent + <78bd> DW_AT_const_value : 115 + <2><78be>: Abbrev Number: 9 (DW_TAG_enumerator) + <78bf> DW_AT_name : (indirect string, offset: 0x645a): SYS_pthread_setschedparam + <78c3> DW_AT_const_value : 116 + <2><78c4>: Abbrev Number: 9 (DW_TAG_enumerator) + <78c5> DW_AT_name : (indirect string, offset: 0x649e): SYS_pthread_setschedprio + <78c9> DW_AT_const_value : 117 + <2><78ca>: Abbrev Number: 9 (DW_TAG_enumerator) + <78cb> DW_AT_name : (indirect string, offset: 0x6a84): SYS_pthread_cond_clockwait + <78cf> DW_AT_const_value : 118 + <2><78d0>: Abbrev Number: 9 (DW_TAG_enumerator) + <78d1> DW_AT_name : (indirect string, offset: 0x6b14): SYS_pthread_sigmask + <78d5> DW_AT_const_value : 119 + <2><78d6>: Abbrev Number: 9 (DW_TAG_enumerator) + <78d7> DW_AT_name : (indirect string, offset: 0x65c4): SYS_mq_close + <78db> DW_AT_const_value : 120 + <2><78dc>: Abbrev Number: 9 (DW_TAG_enumerator) + <78dd> DW_AT_name : (indirect string, offset: 0x64b7): SYS_mq_getattr + <78e1> DW_AT_const_value : 121 + <2><78e2>: Abbrev Number: 9 (DW_TAG_enumerator) + <78e3> DW_AT_name : (indirect string, offset: 0x66d3): SYS_mq_notify + <78e7> DW_AT_const_value : 122 + <2><78e8>: Abbrev Number: 9 (DW_TAG_enumerator) + <78e9> DW_AT_name : (indirect string, offset: 0x6a9f): SYS_mq_open + <78ed> DW_AT_const_value : 123 + <2><78ee>: Abbrev Number: 9 (DW_TAG_enumerator) + <78ef> DW_AT_name : (indirect string, offset: 0x654d): SYS_mq_receive + <78f3> DW_AT_const_value : 124 + <2><78f4>: Abbrev Number: 9 (DW_TAG_enumerator) + <78f5> DW_AT_name : (indirect string, offset: 0x67e1): SYS_mq_send + <78f9> DW_AT_const_value : 125 + <2><78fa>: Abbrev Number: 9 (DW_TAG_enumerator) + <78fb> DW_AT_name : (indirect string, offset: 0x68fa): SYS_mq_setattr + <78ff> DW_AT_const_value : 126 + <2><7900>: Abbrev Number: 9 (DW_TAG_enumerator) + <7901> DW_AT_name : (indirect string, offset: 0x683a): SYS_mq_timedreceive + <7905> DW_AT_const_value : 127 + <2><7906>: Abbrev Number: 9 (DW_TAG_enumerator) + <7907> DW_AT_name : (indirect string, offset: 0x631d): SYS_mq_timedsend + <790b> DW_AT_const_value : 128 + <2><790c>: Abbrev Number: 9 (DW_TAG_enumerator) + <790d> DW_AT_name : (indirect string, offset: 0x661d): SYS_mq_unlink + <7911> DW_AT_const_value : 129 + <2><7912>: Abbrev Number: 9 (DW_TAG_enumerator) + <7913> DW_AT_name : (indirect string, offset: 0x699d): SYS_get_environ_ptr + <7917> DW_AT_const_value : 130 + <2><7918>: Abbrev Number: 9 (DW_TAG_enumerator) + <7919> DW_AT_name : (indirect string, offset: 0x69f3): SYS_clearenv + <791d> DW_AT_const_value : 131 + <2><791e>: Abbrev Number: 9 (DW_TAG_enumerator) + <791f> DW_AT_name : (indirect string, offset: 0x6c5a): SYS_getenv + <7923> DW_AT_const_value : 132 + <2><7924>: Abbrev Number: 9 (DW_TAG_enumerator) + <7925> DW_AT_name : (indirect string, offset: 0x62f9): SYS_putenv + <7929> DW_AT_const_value : 133 + <2><792a>: Abbrev Number: 9 (DW_TAG_enumerator) + <792b> DW_AT_name : (indirect string, offset: 0x689f): SYS_setenv + <792f> DW_AT_const_value : 134 + <2><7930>: Abbrev Number: 9 (DW_TAG_enumerator) + <7931> DW_AT_name : (indirect string, offset: 0x652b): SYS_unsetenv + <7935> DW_AT_const_value : 135 + <2><7936>: Abbrev Number: 9 (DW_TAG_enumerator) + <7937> DW_AT_name : (indirect string, offset: 0x6c65): SYS_getrandom + <793b> DW_AT_const_value : 136 + <2><793c>: Abbrev Number: 9 (DW_TAG_enumerator) + <793d> DW_AT_name : (indirect string, offset: 0x6427): SYS_nanosleep + <7941> DW_AT_const_value : 137 + <2><7942>: Abbrev Number: 9 (DW_TAG_enumerator) + <7943> DW_AT_name : (indirect string, offset: 0x663e): SYS_epoll_create1 + <7947> DW_AT_const_value : 138 + <2><7948>: Abbrev Number: 9 (DW_TAG_enumerator) + <7949> DW_AT_name : (indirect string, offset: 0x634b): SYS_epoll_ctl + <794d> DW_AT_const_value : 139 + <2><794e>: Abbrev Number: 9 (DW_TAG_enumerator) + <794f> DW_AT_name : (indirect string, offset: 0x6776): SYS_epoll_wait + <7953> DW_AT_const_value : 140 + <2><7954>: Abbrev Number: 9 (DW_TAG_enumerator) + <7955> DW_AT_name : (indirect string, offset: 0x69d9): SYS_time + <7959> DW_AT_const_value : 141 + <2><795a>: Abbrev Number: 9 (DW_TAG_enumerator) + <795b> DW_AT_name : (indirect string, offset: 0x69e2): SYS_gettimeofday + <795f> DW_AT_const_value : 142 + <2><7960>: Abbrev Number: 9 (DW_TAG_enumerator) + <7961> DW_AT_name : (indirect string, offset: 0x68e9): SYS_settimeofday + <7965> DW_AT_const_value : 143 + <2><7966>: Abbrev Number: 9 (DW_TAG_enumerator) + <7967> DW_AT_name : (indirect string, offset: 0x64dc): SYS_signal + <796b> DW_AT_const_value : 144 + <2><796c>: Abbrev Number: 9 (DW_TAG_enumerator) + <796d> DW_AT_name : (indirect string, offset: 0x668b): SYS_maxsyscall + <7971> DW_AT_const_value : 145 + <2><7972>: Abbrev Number: 0 + <1><7973>: Abbrev Number: 10 (DW_TAG_subprogram) + <7974> DW_AT_external : 1 + <7974> DW_AT_name : (indirect string, offset: 0x65f3): clock_gettime + <7978> DW_AT_decl_file : 6 + <7979> DW_AT_decl_line : 192 + <797a> DW_AT_decl_column : 5 + <797b> DW_AT_prototyped : 1 + <797b> DW_AT_type : <0x758d> + <797f> DW_AT_low_pc : 0xd74 + <7987> DW_AT_high_pc : 0x14 + <798f> DW_AT_frame_base : 1 byte block: 9c (DW_OP_call_frame_cfa) + <7991> DW_AT_GNU_all_call_sites: 1 + <7991> DW_AT_sibling : <0x79ff> + <2><7995>: Abbrev Number: 11 (DW_TAG_formal_parameter) + <7996> DW_AT_name : (indirect string, offset: 0x698c): parm1 + <799a> DW_AT_decl_file : 1 + <799b> DW_AT_decl_line : 7 + <799c> DW_AT_decl_column : 29 + <799d> DW_AT_type : <0x75ec> + <79a1> DW_AT_location : 0x2f36 (location list) + <2><79a5>: Abbrev Number: 11 (DW_TAG_formal_parameter) + <79a6> DW_AT_name : (indirect string, offset: 0x6992): parm2 + <79aa> DW_AT_decl_file : 1 + <79ab> DW_AT_decl_line : 7 + <79ac> DW_AT_decl_column : 58 + <79ad> DW_AT_type : <0x79ff> + <79b1> DW_AT_location : 0x2f6f (location list) + <2><79b5>: Abbrev Number: 12 (DW_TAG_inlined_subroutine) + <79b6> DW_AT_abstract_origin: <0x7a05> + <79ba> DW_AT_low_pc : 0xd78 + <79c2> DW_AT_high_pc : 0xc + <79ca> DW_AT_call_file : 1 + <79cb> DW_AT_call_line : 9 + <79cc> DW_AT_call_column : 15 + <3><79cd>: Abbrev Number: 13 (DW_TAG_formal_parameter) + <79ce> DW_AT_abstract_origin: <0x7a12> + <79d2> DW_AT_location : 0x2fa5 (location list) + <3><79d6>: Abbrev Number: 13 (DW_TAG_formal_parameter) + <79d7> DW_AT_abstract_origin: <0x7a2a> + <79db> DW_AT_location : 0x2fca (location list) + <3><79df>: Abbrev Number: 13 (DW_TAG_formal_parameter) + <79e0> DW_AT_abstract_origin: <0x7a1e> + <79e4> DW_AT_location : 0x3000 (location list) + <3><79e8>: Abbrev Number: 14 (DW_TAG_variable) + <79e9> DW_AT_abstract_origin: <0x7a36> + <79ed> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <3><79ef>: Abbrev Number: 14 (DW_TAG_variable) + <79f0> DW_AT_abstract_origin: <0x7a41> + <79f4> DW_AT_location : 1 byte block: 5b (DW_OP_reg11 (a1)) + <3><79f6>: Abbrev Number: 14 (DW_TAG_variable) + <79f7> DW_AT_abstract_origin: <0x7a4c> + <79fb> DW_AT_location : 1 byte block: 5c (DW_OP_reg12 (a2)) + <3><79fd>: Abbrev Number: 0 + <2><79fe>: Abbrev Number: 0 + <1><79ff>: Abbrev Number: 15 (DW_TAG_pointer_type) + <7a00> DW_AT_byte_size : 8 + <7a01> DW_AT_type : <0x7600> + <1><7a05>: Abbrev Number: 16 (DW_TAG_subprogram) + <7a06> DW_AT_name : (indirect string, offset: 0x6538): sys_call2 + <7a0a> DW_AT_decl_file : 2 + <7a0b> DW_AT_decl_line : 222 + <7a0c> DW_AT_decl_column : 25 + <7a0d> DW_AT_prototyped : 1 + <7a0d> DW_AT_type : <0x75d4> + <7a11> DW_AT_inline : 3 (declared as inline and inlined) + <2><7a12>: Abbrev Number: 17 (DW_TAG_formal_parameter) + <7a13> DW_AT_name : nbr + <7a17> DW_AT_decl_file : 2 + <7a18> DW_AT_decl_line : 222 + <7a19> DW_AT_decl_column : 48 + <7a1a> DW_AT_type : <0x75a0> + <2><7a1e>: Abbrev Number: 18 (DW_TAG_formal_parameter) + <7a1f> DW_AT_name : (indirect string, offset: 0x698c): parm1 + <7a23> DW_AT_decl_file : 2 + <7a24> DW_AT_decl_line : 222 + <7a25> DW_AT_decl_column : 63 + <7a26> DW_AT_type : <0x75d4> + <2><7a2a>: Abbrev Number: 18 (DW_TAG_formal_parameter) + <7a2b> DW_AT_name : (indirect string, offset: 0x6992): parm2 + <7a2f> DW_AT_decl_file : 2 + <7a30> DW_AT_decl_line : 223 + <7a31> DW_AT_decl_column : 45 + <7a32> DW_AT_type : <0x75d4> + <2><7a36>: Abbrev Number: 19 (DW_TAG_variable) + <7a37> DW_AT_name : r0 + <7a3a> DW_AT_decl_file : 2 + <7a3b> DW_AT_decl_line : 225 + <7a3c> DW_AT_decl_column : 17 + <7a3d> DW_AT_type : <0x75a7> + <2><7a41>: Abbrev Number: 19 (DW_TAG_variable) + <7a42> DW_AT_name : r1 + <7a45> DW_AT_decl_file : 2 + <7a46> DW_AT_decl_line : 226 + <7a47> DW_AT_decl_column : 17 + <7a48> DW_AT_type : <0x75a7> + <2><7a4c>: Abbrev Number: 19 (DW_TAG_variable) + <7a4d> DW_AT_name : r2 + <7a50> DW_AT_decl_file : 2 + <7a51> DW_AT_decl_line : 227 + <7a52> DW_AT_decl_column : 17 + <7a53> DW_AT_type : <0x75a7> + <2><7a57>: Abbrev Number: 0 + <1><7a58>: Abbrev Number: 0 + Compilation Unit @ offset 0x7a59: + Length: 0x44d (32-bit) + Version: 4 + Abbrev Offset: 0x2624 + Pointer Size: 8 + <0><7a64>: Abbrev Number: 1 (DW_TAG_compile_unit) + <7a65> DW_AT_producer : (indirect string, offset: 0x74d8): GNU C17 10.2.0 -mcmodel=medany -march=rv64imafdc -mabi=lp64d -march=rv64imafdc -g -Os -fno-common -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections + <7a69> DW_AT_language : 12 (ANSI C99) + <7a6a> DW_AT_name : (indirect string, offset: 0x7205): proxies/PROXY_gettid.c + <7a6e> DW_AT_comp_dir : (indirect string, offset: 0x7328): /Users/Luppy/ox64/nuttx/syscall + <7a72> DW_AT_ranges : 0x830 + <7a76> DW_AT_low_pc : 0x0 + <7a7e> DW_AT_stmt_list : 0x460b + <1><7a82>: Abbrev Number: 2 (DW_TAG_base_type) + <7a83> DW_AT_byte_size : 1 + <7a84> DW_AT_encoding : 6 (signed char) + <7a85> DW_AT_name : (indirect string, offset: 0x6e0d): signed char + <1><7a89>: Abbrev Number: 2 (DW_TAG_base_type) + <7a8a> DW_AT_byte_size : 1 + <7a8b> DW_AT_encoding : 8 (unsigned char) + <7a8c> DW_AT_name : (indirect string, offset: 0x723b): unsigned char + <1><7a90>: Abbrev Number: 2 (DW_TAG_base_type) + <7a91> DW_AT_byte_size : 2 + <7a92> DW_AT_encoding : 5 (signed) + <7a93> DW_AT_name : (indirect string, offset: 0x7278): short int + <1><7a97>: Abbrev Number: 2 (DW_TAG_base_type) + <7a98> DW_AT_byte_size : 2 + <7a99> DW_AT_encoding : 7 (unsigned) + <7a9a> DW_AT_name : (indirect string, offset: 0x6fff): short unsigned int + <1><7a9e>: Abbrev Number: 3 (DW_TAG_base_type) + <7a9f> DW_AT_byte_size : 4 + <7aa0> DW_AT_encoding : 5 (signed) + <7aa1> DW_AT_name : int + <1><7aa5>: Abbrev Number: 2 (DW_TAG_base_type) + <7aa6> DW_AT_byte_size : 4 + <7aa7> DW_AT_encoding : 7 (unsigned) + <7aa8> DW_AT_name : (indirect string, offset: 0x6f9b): unsigned int + <1><7aac>: Abbrev Number: 2 (DW_TAG_base_type) + <7aad> DW_AT_byte_size : 8 + <7aae> DW_AT_encoding : 5 (signed) + <7aaf> DW_AT_name : (indirect string, offset: 0x6e7a): long int + <1><7ab3>: Abbrev Number: 2 (DW_TAG_base_type) + <7ab4> DW_AT_byte_size : 8 + <7ab5> DW_AT_encoding : 7 (unsigned) + <7ab6> DW_AT_name : (indirect string, offset: 0x6fc3): long unsigned int + <1><7aba>: Abbrev Number: 4 (DW_TAG_typedef) + <7abb> DW_AT_name : (indirect string, offset: 0x70ae): _size_t + <7abf> DW_AT_decl_file : 3 + <7ac0> DW_AT_decl_line : 93 + <7ac1> DW_AT_decl_column : 28 + <7ac2> DW_AT_type : <0x7ab3> + <1><7ac6>: Abbrev Number: 2 (DW_TAG_base_type) + <7ac7> DW_AT_byte_size : 8 + <7ac8> DW_AT_encoding : 7 (unsigned) + <7ac9> DW_AT_name : (indirect string, offset: 0x6d74): long long unsigned int + <1><7acd>: Abbrev Number: 4 (DW_TAG_typedef) + <7ace> DW_AT_name : (indirect string, offset: 0x6cde): uintptr_t + <7ad2> DW_AT_decl_file : 4 + <7ad3> DW_AT_decl_line : 239 + <7ad4> DW_AT_decl_column : 29 + <7ad5> DW_AT_type : <0x7aba> + <1><7ad9>: Abbrev Number: 4 (DW_TAG_typedef) + <7ada> DW_AT_name : (indirect string, offset: 0x75dc): pid_t + <7ade> DW_AT_decl_file : 5 + <7adf> DW_AT_decl_line : 162 + <7ae0> DW_AT_decl_column : 22 + <7ae1> DW_AT_type : <0x7a9e> + <1><7ae5>: Abbrev Number: 2 (DW_TAG_base_type) + <7ae6> DW_AT_byte_size : 1 + <7ae7> DW_AT_encoding : 8 (unsigned char) + <7ae8> DW_AT_name : (indirect string, offset: 0x7348): char + <1><7aec>: Abbrev Number: 5 (DW_TAG_enumeration_type) + <7aed> DW_AT_encoding : 7 (unsigned) + <7aee> DW_AT_byte_size : 4 + <7aef> DW_AT_type : <0x7aa5> + <7af3> DW_AT_decl_file : 6 + <7af4> DW_AT_decl_line : 57 + <7af5> DW_AT_decl_column : 1 + <7af6> DW_AT_sibling : <0x7e37> + <2><7afa>: Abbrev Number: 6 (DW_TAG_enumerator) + <7afb> DW_AT_name : (indirect string, offset: 0x7126): SYS__exit + <7aff> DW_AT_const_value : 8 + <2><7b00>: Abbrev Number: 6 (DW_TAG_enumerator) + <7b01> DW_AT_name : (indirect string, offset: 0x72e5): SYS__assert + <7b05> DW_AT_const_value : 9 + <2><7b06>: Abbrev Number: 6 (DW_TAG_enumerator) + <7b07> DW_AT_name : (indirect string, offset: 0x6f6a): SYS_getpid + <7b0b> DW_AT_const_value : 10 + <2><7b0c>: Abbrev Number: 6 (DW_TAG_enumerator) + <7b0d> DW_AT_name : (indirect string, offset: 0x71c4): SYS_gettid + <7b11> DW_AT_const_value : 11 + <2><7b12>: Abbrev Number: 6 (DW_TAG_enumerator) + <7b13> DW_AT_name : (indirect string, offset: 0x763d): SYS_prctl + <7b17> DW_AT_const_value : 12 + <2><7b18>: Abbrev Number: 6 (DW_TAG_enumerator) + <7b19> DW_AT_name : (indirect string, offset: 0x6dcf): SYS_sched_getparam + <7b1d> DW_AT_const_value : 13 + <2><7b1e>: Abbrev Number: 6 (DW_TAG_enumerator) + <7b1f> DW_AT_name : (indirect string, offset: 0x7626): SYS_sched_getscheduler + <7b23> DW_AT_const_value : 14 + <2><7b24>: Abbrev Number: 6 (DW_TAG_enumerator) + <7b25> DW_AT_name : (indirect string, offset: 0x713f): SYS_sched_lock + <7b29> DW_AT_const_value : 15 + <2><7b2a>: Abbrev Number: 6 (DW_TAG_enumerator) + <7b2b> DW_AT_name : (indirect string, offset: 0x74a4): SYS_sched_lockcount + <7b2f> DW_AT_const_value : 16 + <2><7b30>: Abbrev Number: 6 (DW_TAG_enumerator) + <7b31> DW_AT_name : (indirect string, offset: 0x73e6): SYS_sched_rr_get_interval + <7b35> DW_AT_const_value : 17 + <2><7b36>: Abbrev Number: 6 (DW_TAG_enumerator) + <7b37> DW_AT_name : (indirect string, offset: 0x73d3): SYS_sched_setparam + <7b3b> DW_AT_const_value : 18 + <2><7b3c>: Abbrev Number: 6 (DW_TAG_enumerator) + <7b3d> DW_AT_name : (indirect string, offset: 0x70c4): SYS_sched_setscheduler + <7b41> DW_AT_const_value : 19 + <2><7b42>: Abbrev Number: 6 (DW_TAG_enumerator) + <7b43> DW_AT_name : (indirect string, offset: 0x75e2): SYS_sched_unlock + <7b47> DW_AT_const_value : 20 + <2><7b48>: Abbrev Number: 6 (DW_TAG_enumerator) + <7b49> DW_AT_name : (indirect string, offset: 0x6cf2): SYS_sched_yield + <7b4d> DW_AT_const_value : 21 + <2><7b4e>: Abbrev Number: 6 (DW_TAG_enumerator) + <7b4f> DW_AT_name : (indirect string, offset: 0x730e): SYS_nxsched_get_stackinfo + <7b53> DW_AT_const_value : 22 + <2><7b54>: Abbrev Number: 6 (DW_TAG_enumerator) + <7b55> DW_AT_name : (indirect string, offset: 0x7162): SYS_sysinfo + <7b59> DW_AT_const_value : 23 + <2><7b5a>: Abbrev Number: 6 (DW_TAG_enumerator) + <7b5b> DW_AT_name : (indirect string, offset: 0x72fe): SYS_gethostname + <7b5f> DW_AT_const_value : 24 + <2><7b60>: Abbrev Number: 6 (DW_TAG_enumerator) + <7b61> DW_AT_name : (indirect string, offset: 0x6f7f): SYS_sethostname + <7b65> DW_AT_const_value : 25 + <2><7b66>: Abbrev Number: 6 (DW_TAG_enumerator) + <7b67> DW_AT_name : (indirect string, offset: 0x703b): SYS_nxsem_destroy + <7b6b> DW_AT_const_value : 26 + <2><7b6c>: Abbrev Number: 6 (DW_TAG_enumerator) + <7b6d> DW_AT_name : (indirect string, offset: 0x71e2): SYS_nxsem_post + <7b71> DW_AT_const_value : 27 + <2><7b72>: Abbrev Number: 6 (DW_TAG_enumerator) + <7b73> DW_AT_name : (indirect string, offset: 0x6e66): SYS_nxsem_clockwait + <7b77> DW_AT_const_value : 28 + <2><7b78>: Abbrev Number: 6 (DW_TAG_enumerator) + <7b79> DW_AT_name : (indirect string, offset: 0x7066): SYS_nxsem_timedwait + <7b7d> DW_AT_const_value : 29 + <2><7b7e>: Abbrev Number: 6 (DW_TAG_enumerator) + <7b7f> DW_AT_name : (indirect string, offset: 0x70f4): SYS_nxsem_trywait + <7b83> DW_AT_const_value : 30 + <2><7b84>: Abbrev Number: 6 (DW_TAG_enumerator) + <7b85> DW_AT_name : (indirect string, offset: 0x6d0d): SYS_nxsem_wait + <7b89> DW_AT_const_value : 31 + <2><7b8a>: Abbrev Number: 6 (DW_TAG_enumerator) + <7b8b> DW_AT_name : (indirect string, offset: 0x74b8): SYS_pgalloc + <7b8f> DW_AT_const_value : 32 + <2><7b90>: Abbrev Number: 6 (DW_TAG_enumerator) + <7b91> DW_AT_name : (indirect string, offset: 0x72d9): SYS_up_fork + <7b95> DW_AT_const_value : 33 + <2><7b96>: Abbrev Number: 6 (DW_TAG_enumerator) + <7b97> DW_AT_name : (indirect string, offset: 0x737d): SYS_waitpid + <7b9b> DW_AT_const_value : 34 + <2><7b9c>: Abbrev Number: 6 (DW_TAG_enumerator) + <7b9d> DW_AT_name : (indirect string, offset: 0x6dbf): SYS_posix_spawn + <7ba1> DW_AT_const_value : 35 + <2><7ba2>: Abbrev Number: 6 (DW_TAG_enumerator) + <7ba3> DW_AT_name : (indirect string, offset: 0x72ce): SYS_execve + <7ba7> DW_AT_const_value : 36 + <2><7ba8>: Abbrev Number: 6 (DW_TAG_enumerator) + <7ba9> DW_AT_name : (indirect string, offset: 0x7264): SYS_kill + <7bad> DW_AT_const_value : 37 + <2><7bae>: Abbrev Number: 6 (DW_TAG_enumerator) + <7baf> DW_AT_name : (indirect string, offset: 0x6ca8): SYS_tgkill + <7bb3> DW_AT_const_value : 38 + <2><7bb4>: Abbrev Number: 6 (DW_TAG_enumerator) + <7bb5> DW_AT_name : (indirect string, offset: 0x6fa8): SYS_sigaction + <7bb9> DW_AT_const_value : 39 + <2><7bba>: Abbrev Number: 6 (DW_TAG_enumerator) + <7bbb> DW_AT_name : (indirect string, offset: 0x7249): SYS_sigpending + <7bbf> DW_AT_const_value : 40 + <2><7bc0>: Abbrev Number: 6 (DW_TAG_enumerator) + <7bc1> DW_AT_name : (indirect string, offset: 0x6ed9): SYS_sigprocmask + <7bc5> DW_AT_const_value : 41 + <2><7bc6>: Abbrev Number: 6 (DW_TAG_enumerator) + <7bc7> DW_AT_name : (indirect string, offset: 0x747a): SYS_sigqueue + <7bcb> DW_AT_const_value : 42 + <2><7bcc>: Abbrev Number: 6 (DW_TAG_enumerator) + <7bcd> DW_AT_name : (indirect string, offset: 0x7117): SYS_sigsuspend + <7bd1> DW_AT_const_value : 43 + <2><7bd2>: Abbrev Number: 6 (DW_TAG_enumerator) + <7bd3> DW_AT_name : (indirect string, offset: 0x6e31): SYS_sigtimedwait + <7bd7> DW_AT_const_value : 44 + <2><7bd8>: Abbrev Number: 6 (DW_TAG_enumerator) + <7bd9> DW_AT_name : (indirect string, offset: 0x6daf): SYS_sigwaitinfo + <7bdd> DW_AT_const_value : 45 + <2><7bde>: Abbrev Number: 6 (DW_TAG_enumerator) + <7bdf> DW_AT_name : (indirect string, offset: 0x714e): SYS_clock_nanosleep + <7be3> DW_AT_const_value : 46 + <2><7be4>: Abbrev Number: 6 (DW_TAG_enumerator) + <7be5> DW_AT_name : (indirect string, offset: 0x6d4a): SYS_clock + <7be9> DW_AT_const_value : 47 + <2><7bea>: Abbrev Number: 6 (DW_TAG_enumerator) + <7beb> DW_AT_name : (indirect string, offset: 0x7415): SYS_clock_gettime + <7bef> DW_AT_const_value : 48 + <2><7bf0>: Abbrev Number: 6 (DW_TAG_enumerator) + <7bf1> DW_AT_name : (indirect string, offset: 0x6f4e): SYS_clock_settime + <7bf5> DW_AT_const_value : 49 + <2><7bf6>: Abbrev Number: 6 (DW_TAG_enumerator) + <7bf7> DW_AT_name : (indirect string, offset: 0x6ccd): SYS_timer_create + <7bfb> DW_AT_const_value : 50 + <2><7bfc>: Abbrev Number: 6 (DW_TAG_enumerator) + <7bfd> DW_AT_name : (indirect string, offset: 0x7106): SYS_timer_delete + <7c01> DW_AT_const_value : 51 + <2><7c02>: Abbrev Number: 6 (DW_TAG_enumerator) + <7c03> DW_AT_name : (indirect string, offset: 0x701c): SYS_timer_getoverrun + <7c07> DW_AT_const_value : 52 + <2><7c08>: Abbrev Number: 6 (DW_TAG_enumerator) + <7c09> DW_AT_name : (indirect string, offset: 0x7588): SYS_timer_gettime + <7c0d> DW_AT_const_value : 53 + <2><7c0e>: Abbrev Number: 6 (DW_TAG_enumerator) + <7c0f> DW_AT_name : (indirect string, offset: 0x6fdf): SYS_timer_settime + <7c13> DW_AT_const_value : 54 + <2><7c14>: Abbrev Number: 6 (DW_TAG_enumerator) + <7c15> DW_AT_name : (indirect string, offset: 0x70b6): SYS_getitimer + <7c19> DW_AT_const_value : 55 + <2><7c1a>: Abbrev Number: 6 (DW_TAG_enumerator) + <7c1b> DW_AT_name : (indirect string, offset: 0x6efc): SYS_setitimer + <7c1f> DW_AT_const_value : 56 + <2><7c20>: Abbrev Number: 6 (DW_TAG_enumerator) + <7c21> DW_AT_name : (indirect string, offset: 0x707a): SYS_nx_vsyslog + <7c25> DW_AT_const_value : 57 + <2><7c26>: Abbrev Number: 6 (DW_TAG_enumerator) + <7c27> DW_AT_name : (indirect string, offset: 0x6e42): SYS_close + <7c2b> DW_AT_const_value : 58 + <2><7c2c>: Abbrev Number: 6 (DW_TAG_enumerator) + <7c2d> DW_AT_name : (indirect string, offset: 0x75d2): SYS_ioctl + <7c31> DW_AT_const_value : 59 + <2><7c32>: Abbrev Number: 6 (DW_TAG_enumerator) + <7c33> DW_AT_name : (indirect string, offset: 0x6e04): SYS_read + <7c37> DW_AT_const_value : 60 + <2><7c38>: Abbrev Number: 6 (DW_TAG_enumerator) + <7c39> DW_AT_name : (indirect string, offset: 0x6f60): SYS_write + <7c3d> DW_AT_const_value : 61 + <2><7c3e>: Abbrev Number: 6 (DW_TAG_enumerator) + <7c3f> DW_AT_name : (indirect string, offset: 0x6da5): SYS_pread + <7c43> DW_AT_const_value : 62 + <2><7c44>: Abbrev Number: 6 (DW_TAG_enumerator) + <7c45> DW_AT_name : (indirect string, offset: 0x7189): SYS_pwrite + <7c49> DW_AT_const_value : 63 + <2><7c4a>: Abbrev Number: 6 (DW_TAG_enumerator) + <7c4b> DW_AT_name : (indirect string, offset: 0x6c9f): SYS_poll + <7c4f> DW_AT_const_value : 64 + <2><7c50>: Abbrev Number: 6 (DW_TAG_enumerator) + <7c51> DW_AT_name : (indirect string, offset: 0x6d69): SYS_select + <7c55> DW_AT_const_value : 65 + <2><7c56>: Abbrev Number: 6 (DW_TAG_enumerator) + <7c57> DW_AT_name : (indirect string, offset: 0x6d1c): SYS_ppoll + <7c5b> DW_AT_const_value : 66 + <2><7c5c>: Abbrev Number: 6 (DW_TAG_enumerator) + <7c5d> DW_AT_name : (indirect string, offset: 0x7089): SYS_pselect + <7c61> DW_AT_const_value : 67 + <2><7c62>: Abbrev Number: 6 (DW_TAG_enumerator) + <7c63> DW_AT_name : (indirect string, offset: 0x6e83): SYS_boardctl + <7c67> DW_AT_const_value : 68 + <2><7c68>: Abbrev Number: 6 (DW_TAG_enumerator) + <7c69> DW_AT_name : (indirect string, offset: 0x71da): SYS_dup + <7c6d> DW_AT_const_value : 69 + <2><7c6e>: Abbrev Number: 6 (DW_TAG_enumerator) + <7c6f> DW_AT_name : (indirect string, offset: 0x7282): SYS_dup2 + <7c73> DW_AT_const_value : 70 + <2><7c74>: Abbrev Number: 6 (DW_TAG_enumerator) + <7c75> DW_AT_name : (indirect string, offset: 0x6fd5): SYS_fcntl + <7c79> DW_AT_const_value : 71 + <2><7c7a>: Abbrev Number: 6 (DW_TAG_enumerator) + <7c7b> DW_AT_name : (indirect string, offset: 0x75c4): SYS_ftruncate + <7c7f> DW_AT_const_value : 72 + <2><7c80>: Abbrev Number: 6 (DW_TAG_enumerator) + <7c81> DW_AT_name : (indirect string, offset: 0x6dfa): SYS_lseek + <7c85> DW_AT_const_value : 73 + <2><7c86>: Abbrev Number: 6 (DW_TAG_enumerator) + <7c87> DW_AT_name : (indirect string, offset: 0x6f14): SYS_mmap + <7c8b> DW_AT_const_value : 74 + <2><7c8c>: Abbrev Number: 6 (DW_TAG_enumerator) + <7c8d> DW_AT_name : (indirect string, offset: 0x7471): SYS_open + <7c91> DW_AT_const_value : 75 + <2><7c92>: Abbrev Number: 6 (DW_TAG_enumerator) + <7c93> DW_AT_name : (indirect string, offset: 0x71cf): SYS_rename + <7c97> DW_AT_const_value : 76 + <2><7c98>: Abbrev Number: 6 (DW_TAG_enumerator) + <7c99> DW_AT_name : (indirect string, offset: 0x7604): SYS_stat + <7c9d> DW_AT_const_value : 77 + <2><7c9e>: Abbrev Number: 6 (DW_TAG_enumerator) + <7c9f> DW_AT_name : (indirect string, offset: 0x740b): SYS_lstat + <7ca3> DW_AT_const_value : 78 + <2><7ca4>: Abbrev Number: 6 (DW_TAG_enumerator) + <7ca5> DW_AT_name : (indirect string, offset: 0x6ce8): SYS_fstat + <7ca9> DW_AT_const_value : 79 + <2><7caa>: Abbrev Number: 6 (DW_TAG_enumerator) + <7cab> DW_AT_name : (indirect string, offset: 0x70a3): SYS_statfs + <7caf> DW_AT_const_value : 80 + <2><7cb0>: Abbrev Number: 6 (DW_TAG_enumerator) + <7cb1> DW_AT_name : (indirect string, offset: 0x7258): SYS_fstatfs + <7cb5> DW_AT_const_value : 81 + <2><7cb6>: Abbrev Number: 6 (DW_TAG_enumerator) + <7cb7> DW_AT_name : (indirect string, offset: 0x7427): SYS_sendfile + <7cbb> DW_AT_const_value : 82 + <2><7cbc>: Abbrev Number: 6 (DW_TAG_enumerator) + <7cbd> DW_AT_name : (indirect string, offset: 0x728b): SYS_sync + <7cc1> DW_AT_const_value : 83 + <2><7cc2>: Abbrev Number: 6 (DW_TAG_enumerator) + <7cc3> DW_AT_name : (indirect string, offset: 0x6f75): SYS_fsync + <7cc7> DW_AT_const_value : 84 + <2><7cc8>: Abbrev Number: 6 (DW_TAG_enumerator) + <7cc9> DW_AT_name : (indirect string, offset: 0x705c): SYS_chmod + <7ccd> DW_AT_const_value : 85 + <2><7cce>: Abbrev Number: 6 (DW_TAG_enumerator) + <7ccf> DW_AT_name : (indirect string, offset: 0x75b9): SYS_lchmod + <7cd3> DW_AT_const_value : 86 + <2><7cd4>: Abbrev Number: 6 (DW_TAG_enumerator) + <7cd5> DW_AT_name : (indirect string, offset: 0x71b9): SYS_fchmod + <7cd9> DW_AT_const_value : 87 + <2><7cda>: Abbrev Number: 6 (DW_TAG_enumerator) + <7cdb> DW_AT_name : (indirect string, offset: 0x6e27): SYS_chown + <7cdf> DW_AT_const_value : 88 + <2><7ce0>: Abbrev Number: 6 (DW_TAG_enumerator) + <7ce1> DW_AT_name : (indirect string, offset: 0x721c): SYS_lchown + <7ce5> DW_AT_const_value : 89 + <2><7ce6>: Abbrev Number: 6 (DW_TAG_enumerator) + <7ce7> DW_AT_name : (indirect string, offset: 0x6f34): SYS_fchown + <7ceb> DW_AT_const_value : 90 + <2><7cec>: Abbrev Number: 6 (DW_TAG_enumerator) + <7ced> DW_AT_name : (indirect string, offset: 0x6f8f): SYS_utimens + <7cf1> DW_AT_const_value : 91 + <2><7cf2>: Abbrev Number: 6 (DW_TAG_enumerator) + <7cf3> DW_AT_name : (indirect string, offset: 0x75ac): SYS_lutimens + <7cf7> DW_AT_const_value : 92 + <2><7cf8>: Abbrev Number: 6 (DW_TAG_enumerator) + <7cf9> DW_AT_name : (indirect string, offset: 0x72f1): SYS_futimens + <7cfd> DW_AT_const_value : 93 + <2><7cfe>: Abbrev Number: 6 (DW_TAG_enumerator) + <7cff> DW_AT_name : (indirect string, offset: 0x7400): SYS_munmap + <7d03> DW_AT_const_value : 94 + <2><7d04>: Abbrev Number: 6 (DW_TAG_enumerator) + <7d05> DW_AT_name : (indirect string, offset: 0x7031): SYS_mount + <7d09> DW_AT_const_value : 95 + <2><7d0a>: Abbrev Number: 6 (DW_TAG_enumerator) + <7d0b> DW_AT_name : (indirect string, offset: 0x6f0a): SYS_mkdir + <7d0f> DW_AT_const_value : 96 + <2><7d10>: Abbrev Number: 6 (DW_TAG_enumerator) + <7d11> DW_AT_name : (indirect string, offset: 0x7012): SYS_rmdir + <7d15> DW_AT_const_value : 97 + <2><7d16>: Abbrev Number: 6 (DW_TAG_enumerator) + <7d17> DW_AT_name : (indirect string, offset: 0x73c7): SYS_umount2 + <7d1b> DW_AT_const_value : 98 + <2><7d1c>: Abbrev Number: 6 (DW_TAG_enumerator) + <7d1d> DW_AT_name : (indirect string, offset: 0x7647): SYS_unlink + <7d21> DW_AT_const_value : 99 + <2><7d22>: Abbrev Number: 6 (DW_TAG_enumerator) + <7d23> DW_AT_name : (indirect string, offset: 0x71a0): SYS_pthread_barrier_wait + <7d27> DW_AT_const_value : 100 + <2><7d28>: Abbrev Number: 6 (DW_TAG_enumerator) + <7d29> DW_AT_name : (indirect string, offset: 0x6ee9): SYS_pthread_cancel + <7d2d> DW_AT_const_value : 101 + <2><7d2e>: Abbrev Number: 6 (DW_TAG_enumerator) + <7d2f> DW_AT_name : (indirect string, offset: 0x716e): SYS_pthread_cond_broadcast + <7d33> DW_AT_const_value : 102 + <2><7d34>: Abbrev Number: 6 (DW_TAG_enumerator) + <7d35> DW_AT_name : (indirect string, offset: 0x6de2): SYS_pthread_cond_signal + <7d39> DW_AT_const_value : 103 + <2><7d3a>: Abbrev Number: 6 (DW_TAG_enumerator) + <7d3b> DW_AT_name : (indirect string, offset: 0x745b): SYS_pthread_cond_wait + <7d3f> DW_AT_const_value : 104 + <2><7d40>: Abbrev Number: 6 (DW_TAG_enumerator) + <7d41> DW_AT_name : (indirect string, offset: 0x6eb8): SYS_nx_pthread_create + <7d45> DW_AT_const_value : 105 + <2><7d46>: Abbrev Number: 6 (DW_TAG_enumerator) + <7d47> DW_AT_name : (indirect string, offset: 0x6d37): SYS_pthread_detach + <7d4b> DW_AT_const_value : 106 + <2><7d4c>: Abbrev Number: 6 (DW_TAG_enumerator) + <7d4d> DW_AT_name : (indirect string, offset: 0x7227): SYS_nx_pthread_exit + <7d51> DW_AT_const_value : 107 + <2><7d52>: Abbrev Number: 6 (DW_TAG_enumerator) + <7d53> DW_AT_name : (indirect string, offset: 0x7294): SYS_pthread_getschedparam + <7d57> DW_AT_const_value : 108 + <2><7d58>: Abbrev Number: 6 (DW_TAG_enumerator) + <7d59> DW_AT_name : (indirect string, offset: 0x75f3): SYS_pthread_join + <7d5d> DW_AT_const_value : 109 + <2><7d5e>: Abbrev Number: 6 (DW_TAG_enumerator) + <7d5f> DW_AT_name : (indirect string, offset: 0x6d8b): SYS_pthread_mutex_destroy + <7d63> DW_AT_const_value : 110 + <2><7d64>: Abbrev Number: 6 (DW_TAG_enumerator) + <7d65> DW_AT_name : (indirect string, offset: 0x73b0): SYS_pthread_mutex_init + <7d69> DW_AT_const_value : 111 + <2><7d6a>: Abbrev Number: 6 (DW_TAG_enumerator) + <7d6b> DW_AT_name : (indirect string, offset: 0x7361): SYS_pthread_mutex_timedlock + <7d6f> DW_AT_const_value : 112 + <2><7d70>: Abbrev Number: 6 (DW_TAG_enumerator) + <7d71> DW_AT_name : (indirect string, offset: 0x6cb3): SYS_pthread_mutex_trylock + <7d75> DW_AT_const_value : 113 + <2><7d76>: Abbrev Number: 6 (DW_TAG_enumerator) + <7d77> DW_AT_name : (indirect string, offset: 0x70db): SYS_pthread_mutex_unlock + <7d7b> DW_AT_const_value : 114 + <2><7d7c>: Abbrev Number: 6 (DW_TAG_enumerator) + <7d7d> DW_AT_name : (indirect string, offset: 0x7487): SYS_pthread_mutex_consistent + <7d81> DW_AT_const_value : 115 + <2><7d82>: Abbrev Number: 6 (DW_TAG_enumerator) + <7d83> DW_AT_name : (indirect string, offset: 0x6e4c): SYS_pthread_setschedparam + <7d87> DW_AT_const_value : 116 + <2><7d88>: Abbrev Number: 6 (DW_TAG_enumerator) + <7d89> DW_AT_name : (indirect string, offset: 0x6e90): SYS_pthread_setschedprio + <7d8d> DW_AT_const_value : 117 + <2><7d8e>: Abbrev Number: 6 (DW_TAG_enumerator) + <7d8f> DW_AT_name : (indirect string, offset: 0x7434): SYS_pthread_cond_clockwait + <7d93> DW_AT_const_value : 118 + <2><7d94>: Abbrev Number: 6 (DW_TAG_enumerator) + <7d95> DW_AT_name : (indirect string, offset: 0x74c4): SYS_pthread_sigmask + <7d99> DW_AT_const_value : 119 + <2><7d9a>: Abbrev Number: 6 (DW_TAG_enumerator) + <7d9b> DW_AT_name : (indirect string, offset: 0x6fb6): SYS_mq_close + <7d9f> DW_AT_const_value : 120 + <2><7da0>: Abbrev Number: 6 (DW_TAG_enumerator) + <7da1> DW_AT_name : (indirect string, offset: 0x6ea9): SYS_mq_getattr + <7da5> DW_AT_const_value : 121 + <2><7da6>: Abbrev Number: 6 (DW_TAG_enumerator) + <7da7> DW_AT_name : (indirect string, offset: 0x7095): SYS_mq_notify + <7dab> DW_AT_const_value : 122 + <2><7dac>: Abbrev Number: 6 (DW_TAG_enumerator) + <7dad> DW_AT_name : (indirect string, offset: 0x744f): SYS_mq_open + <7db1> DW_AT_const_value : 123 + <2><7db2>: Abbrev Number: 6 (DW_TAG_enumerator) + <7db3> DW_AT_name : (indirect string, offset: 0x6f3f): SYS_mq_receive + <7db7> DW_AT_const_value : 124 + <2><7db8>: Abbrev Number: 6 (DW_TAG_enumerator) + <7db9> DW_AT_name : (indirect string, offset: 0x7194): SYS_mq_send + <7dbd> DW_AT_const_value : 125 + <2><7dbe>: Abbrev Number: 6 (DW_TAG_enumerator) + <7dbf> DW_AT_name : (indirect string, offset: 0x72bf): SYS_mq_setattr + <7dc3> DW_AT_const_value : 126 + <2><7dc4>: Abbrev Number: 6 (DW_TAG_enumerator) + <7dc5> DW_AT_name : (indirect string, offset: 0x71f1): SYS_mq_timedreceive + <7dc9> DW_AT_const_value : 127 + <2><7dca>: Abbrev Number: 6 (DW_TAG_enumerator) + <7dcb> DW_AT_name : (indirect string, offset: 0x6d26): SYS_mq_timedsend + <7dcf> DW_AT_const_value : 128 + <2><7dd0>: Abbrev Number: 6 (DW_TAG_enumerator) + <7dd1> DW_AT_name : (indirect string, offset: 0x6ff1): SYS_mq_unlink + <7dd5> DW_AT_const_value : 129 + <2><7dd6>: Abbrev Number: 6 (DW_TAG_enumerator) + <7dd7> DW_AT_name : (indirect string, offset: 0x734d): SYS_get_environ_ptr + <7ddb> DW_AT_const_value : 130 + <2><7ddc>: Abbrev Number: 6 (DW_TAG_enumerator) + <7ddd> DW_AT_name : (indirect string, offset: 0x73a3): SYS_clearenv + <7de1> DW_AT_const_value : 131 + <2><7de2>: Abbrev Number: 6 (DW_TAG_enumerator) + <7de3> DW_AT_name : (indirect string, offset: 0x760d): SYS_getenv + <7de7> DW_AT_const_value : 132 + <2><7de8>: Abbrev Number: 6 (DW_TAG_enumerator) + <7de9> DW_AT_name : (indirect string, offset: 0x6d02): SYS_putenv + <7ded> DW_AT_const_value : 133 + <2><7dee>: Abbrev Number: 6 (DW_TAG_enumerator) + <7def> DW_AT_name : (indirect string, offset: 0x726d): SYS_setenv + <7df3> DW_AT_const_value : 134 + <2><7df4>: Abbrev Number: 6 (DW_TAG_enumerator) + <7df5> DW_AT_name : (indirect string, offset: 0x6f1d): SYS_unsetenv + <7df9> DW_AT_const_value : 135 + <2><7dfa>: Abbrev Number: 6 (DW_TAG_enumerator) + <7dfb> DW_AT_name : (indirect string, offset: 0x7618): SYS_getrandom + <7dff> DW_AT_const_value : 136 + <2><7e00>: Abbrev Number: 6 (DW_TAG_enumerator) + <7e01> DW_AT_name : (indirect string, offset: 0x6e19): SYS_nanosleep + <7e05> DW_AT_const_value : 137 + <2><7e06>: Abbrev Number: 6 (DW_TAG_enumerator) + <7e07> DW_AT_name : (indirect string, offset: 0x759a): SYS_epoll_create1 + <7e0b> DW_AT_const_value : 138 + <2><7e0c>: Abbrev Number: 6 (DW_TAG_enumerator) + <7e0d> DW_AT_name : (indirect string, offset: 0x6d5b): SYS_epoll_ctl + <7e11> DW_AT_const_value : 139 + <2><7e12>: Abbrev Number: 6 (DW_TAG_enumerator) + <7e13> DW_AT_name : (indirect string, offset: 0x7130): SYS_epoll_wait + <7e17> DW_AT_const_value : 140 + <2><7e18>: Abbrev Number: 6 (DW_TAG_enumerator) + <7e19> DW_AT_name : (indirect string, offset: 0x7389): SYS_time + <7e1d> DW_AT_const_value : 141 + <2><7e1e>: Abbrev Number: 6 (DW_TAG_enumerator) + <7e1f> DW_AT_name : (indirect string, offset: 0x7392): SYS_gettimeofday + <7e23> DW_AT_const_value : 142 + <2><7e24>: Abbrev Number: 6 (DW_TAG_enumerator) + <7e25> DW_AT_name : (indirect string, offset: 0x72ae): SYS_settimeofday + <7e29> DW_AT_const_value : 143 + <2><7e2a>: Abbrev Number: 6 (DW_TAG_enumerator) + <7e2b> DW_AT_name : (indirect string, offset: 0x6ece): SYS_signal + <7e2f> DW_AT_const_value : 144 + <2><7e30>: Abbrev Number: 6 (DW_TAG_enumerator) + <7e31> DW_AT_name : (indirect string, offset: 0x704d): SYS_maxsyscall + <7e35> DW_AT_const_value : 145 + <2><7e36>: Abbrev Number: 0 + <1><7e37>: Abbrev Number: 7 (DW_TAG_subprogram) + <7e38> DW_AT_external : 1 + <7e38> DW_AT_name : (indirect string, offset: 0x6d54): gettid + <7e3c> DW_AT_decl_file : 7 + <7e3d> DW_AT_decl_line : 316 + <7e3f> DW_AT_decl_column : 9 + <7e40> DW_AT_prototyped : 1 + <7e40> DW_AT_type : <0x7ad9> + <7e44> DW_AT_low_pc : 0xd88 + <7e4c> DW_AT_high_pc : 0xc + <7e54> DW_AT_frame_base : 1 byte block: 9c (DW_OP_call_frame_cfa) + <7e56> DW_AT_GNU_all_call_sites: 1 + <7e56> DW_AT_sibling : <0x7e84> + <2><7e5a>: Abbrev Number: 8 (DW_TAG_inlined_subroutine) + <7e5b> DW_AT_abstract_origin: <0x7e84> + <7e5f> DW_AT_low_pc : 0xd88 + <7e67> DW_AT_high_pc : 0x8 + <7e6f> DW_AT_call_file : 1 + <7e70> DW_AT_call_line : 9 + <7e71> DW_AT_call_column : 17 + <3><7e72>: Abbrev Number: 9 (DW_TAG_formal_parameter) + <7e73> DW_AT_abstract_origin: <0x7e91> + <7e77> DW_AT_location : 0x302b (location list) + <3><7e7b>: Abbrev Number: 10 (DW_TAG_variable) + <7e7c> DW_AT_abstract_origin: <0x7e9d> + <7e80> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <3><7e82>: Abbrev Number: 0 + <2><7e83>: Abbrev Number: 0 + <1><7e84>: Abbrev Number: 11 (DW_TAG_subprogram) + <7e85> DW_AT_name : (indirect string, offset: 0x6f2a): sys_call0 + <7e89> DW_AT_decl_file : 2 + <7e8a> DW_AT_decl_line : 173 + <7e8b> DW_AT_decl_column : 25 + <7e8c> DW_AT_prototyped : 1 + <7e8c> DW_AT_type : <0x7acd> + <7e90> DW_AT_inline : 3 (declared as inline and inlined) + <2><7e91>: Abbrev Number: 12 (DW_TAG_formal_parameter) + <7e92> DW_AT_name : nbr + <7e96> DW_AT_decl_file : 2 + <7e97> DW_AT_decl_line : 173 + <7e98> DW_AT_decl_column : 48 + <7e99> DW_AT_type : <0x7aa5> + <2><7e9d>: Abbrev Number: 13 (DW_TAG_variable) + <7e9e> DW_AT_name : r0 + <7ea1> DW_AT_decl_file : 2 + <7ea2> DW_AT_decl_line : 175 + <7ea3> DW_AT_decl_column : 17 + <7ea4> DW_AT_type : <0x7aac> + <2><7ea8>: Abbrev Number: 0 + <1><7ea9>: Abbrev Number: 0 + Compilation Unit @ offset 0x7eaa: + Length: 0x50a (32-bit) + Version: 4 + Abbrev Offset: 0x26eb + Pointer Size: 8 + <0><7eb5>: Abbrev Number: 1 (DW_TAG_compile_unit) + <7eb6> DW_AT_producer : (indirect string, offset: 0x7e96): GNU C17 10.2.0 -mcmodel=medany -march=rv64imafdc -mabi=lp64d -march=rv64imafdc -g -Os -fno-common -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections + <7eba> DW_AT_language : 12 (ANSI C99) + <7ebb> DW_AT_name : (indirect string, offset: 0x7fa0): proxies/PROXY_lseek.c + <7ebf> DW_AT_comp_dir : (indirect string, offset: 0x7cda): /Users/Luppy/ox64/nuttx/syscall + <7ec3> DW_AT_ranges : 0x850 + <7ec7> DW_AT_low_pc : 0x0 + <7ecf> DW_AT_stmt_list : 0x4742 + <1><7ed3>: Abbrev Number: 2 (DW_TAG_base_type) + <7ed4> DW_AT_byte_size : 1 + <7ed5> DW_AT_encoding : 6 (signed char) + <7ed6> DW_AT_name : (indirect string, offset: 0x77cc): signed char + <1><7eda>: Abbrev Number: 2 (DW_TAG_base_type) + <7edb> DW_AT_byte_size : 1 + <7edc> DW_AT_encoding : 8 (unsigned char) + <7edd> DW_AT_name : (indirect string, offset: 0x7bed): unsigned char + <1><7ee1>: Abbrev Number: 2 (DW_TAG_base_type) + <7ee2> DW_AT_byte_size : 2 + <7ee3> DW_AT_encoding : 5 (signed) + <7ee4> DW_AT_name : (indirect string, offset: 0x7c2a): short int + <1><7ee8>: Abbrev Number: 2 (DW_TAG_base_type) + <7ee9> DW_AT_byte_size : 2 + <7eea> DW_AT_encoding : 7 (unsigned) + <7eeb> DW_AT_name : (indirect string, offset: 0x79b7): short unsigned int + <1><7eef>: Abbrev Number: 3 (DW_TAG_typedef) + <7ef0> DW_AT_name : (indirect string, offset: 0x7abe): _int32_t + <7ef4> DW_AT_decl_file : 3 + <7ef5> DW_AT_decl_line : 58 + <7ef6> DW_AT_decl_column : 28 + <7ef7> DW_AT_type : <0x7efb> + <1><7efb>: Abbrev Number: 4 (DW_TAG_base_type) + <7efc> DW_AT_byte_size : 4 + <7efd> DW_AT_encoding : 5 (signed) + <7efe> DW_AT_name : int + <1><7f02>: Abbrev Number: 2 (DW_TAG_base_type) + <7f03> DW_AT_byte_size : 4 + <7f04> DW_AT_encoding : 7 (unsigned) + <7f05> DW_AT_name : (indirect string, offset: 0x7953): unsigned int + <1><7f09>: Abbrev Number: 2 (DW_TAG_base_type) + <7f0a> DW_AT_byte_size : 8 + <7f0b> DW_AT_encoding : 5 (signed) + <7f0c> DW_AT_name : (indirect string, offset: 0x7839): long int + <1><7f10>: Abbrev Number: 2 (DW_TAG_base_type) + <7f11> DW_AT_byte_size : 8 + <7f12> DW_AT_encoding : 7 (unsigned) + <7f13> DW_AT_name : (indirect string, offset: 0x797b): long unsigned int + <1><7f17>: Abbrev Number: 3 (DW_TAG_typedef) + <7f18> DW_AT_name : (indirect string, offset: 0x7a66): _size_t + <7f1c> DW_AT_decl_file : 3 + <7f1d> DW_AT_decl_line : 93 + <7f1e> DW_AT_decl_column : 28 + <7f1f> DW_AT_type : <0x7f10> + <1><7f23>: Abbrev Number: 2 (DW_TAG_base_type) + <7f24> DW_AT_byte_size : 8 + <7f25> DW_AT_encoding : 7 (unsigned) + <7f26> DW_AT_name : (indirect string, offset: 0x7733): long long unsigned int + <1><7f2a>: Abbrev Number: 3 (DW_TAG_typedef) + <7f2b> DW_AT_name : (indirect string, offset: 0x7be5): int32_t + <7f2f> DW_AT_decl_file : 4 + <7f30> DW_AT_decl_line : 176 + <7f31> DW_AT_decl_column : 29 + <7f32> DW_AT_type : <0x7eef> + <1><7f36>: Abbrev Number: 3 (DW_TAG_typedef) + <7f37> DW_AT_name : (indirect string, offset: 0x7697): uintptr_t + <7f3b> DW_AT_decl_file : 4 + <7f3c> DW_AT_decl_line : 239 + <7f3d> DW_AT_decl_column : 29 + <7f3e> DW_AT_type : <0x7f17> + <1><7f42>: Abbrev Number: 3 (DW_TAG_typedef) + <7f43> DW_AT_name : (indirect string, offset: 0x78dc): off_t + <7f47> DW_AT_decl_file : 5 + <7f48> DW_AT_decl_line : 229 + <7f49> DW_AT_decl_column : 22 + <7f4a> DW_AT_type : <0x7f2a> + <1><7f4e>: Abbrev Number: 2 (DW_TAG_base_type) + <7f4f> DW_AT_byte_size : 1 + <7f50> DW_AT_encoding : 8 (unsigned char) + <7f51> DW_AT_name : (indirect string, offset: 0x7d06): char + <1><7f55>: Abbrev Number: 5 (DW_TAG_enumeration_type) + <7f56> DW_AT_encoding : 7 (unsigned) + <7f57> DW_AT_byte_size : 4 + <7f58> DW_AT_type : <0x7f02> + <7f5c> DW_AT_decl_file : 6 + <7f5d> DW_AT_decl_line : 57 + <7f5e> DW_AT_decl_column : 1 + <7f5f> DW_AT_sibling : <0x82a0> + <2><7f63>: Abbrev Number: 6 (DW_TAG_enumerator) + <7f64> DW_AT_name : (indirect string, offset: 0x7ae7): SYS__exit + <7f68> DW_AT_const_value : 8 + <2><7f69>: Abbrev Number: 6 (DW_TAG_enumerator) + <7f6a> DW_AT_name : (indirect string, offset: 0x7c97): SYS__assert + <7f6e> DW_AT_const_value : 9 + <2><7f6f>: Abbrev Number: 6 (DW_TAG_enumerator) + <7f70> DW_AT_name : (indirect string, offset: 0x7922): SYS_getpid + <7f74> DW_AT_const_value : 10 + <2><7f75>: Abbrev Number: 6 (DW_TAG_enumerator) + <7f76> DW_AT_name : (indirect string, offset: 0x7b85): SYS_gettid + <7f7a> DW_AT_const_value : 11 + <2><7f7b>: Abbrev Number: 6 (DW_TAG_enumerator) + <7f7c> DW_AT_name : (indirect string, offset: 0x8011): SYS_prctl + <7f80> DW_AT_const_value : 12 + <2><7f81>: Abbrev Number: 6 (DW_TAG_enumerator) + <7f82> DW_AT_name : (indirect string, offset: 0x778e): SYS_sched_getparam + <7f86> DW_AT_const_value : 13 + <2><7f87>: Abbrev Number: 6 (DW_TAG_enumerator) + <7f88> DW_AT_name : (indirect string, offset: 0x7ffa): SYS_sched_getscheduler + <7f8c> DW_AT_const_value : 14 + <2><7f8d>: Abbrev Number: 6 (DW_TAG_enumerator) + <7f8e> DW_AT_name : (indirect string, offset: 0x7b00): SYS_sched_lock + <7f92> DW_AT_const_value : 15 + <2><7f93>: Abbrev Number: 6 (DW_TAG_enumerator) + <7f94> DW_AT_name : (indirect string, offset: 0x7e62): SYS_sched_lockcount + <7f98> DW_AT_const_value : 16 + <2><7f99>: Abbrev Number: 6 (DW_TAG_enumerator) + <7f9a> DW_AT_name : (indirect string, offset: 0x7da4): SYS_sched_rr_get_interval + <7f9e> DW_AT_const_value : 17 + <2><7f9f>: Abbrev Number: 6 (DW_TAG_enumerator) + <7fa0> DW_AT_name : (indirect string, offset: 0x7d91): SYS_sched_setparam + <7fa4> DW_AT_const_value : 18 + <2><7fa5>: Abbrev Number: 6 (DW_TAG_enumerator) + <7fa6> DW_AT_name : (indirect string, offset: 0x7a7c): SYS_sched_setscheduler + <7faa> DW_AT_const_value : 19 + <2><7fab>: Abbrev Number: 6 (DW_TAG_enumerator) + <7fac> DW_AT_name : (indirect string, offset: 0x7fb6): SYS_sched_unlock + <7fb0> DW_AT_const_value : 20 + <2><7fb1>: Abbrev Number: 6 (DW_TAG_enumerator) + <7fb2> DW_AT_name : (indirect string, offset: 0x76ab): SYS_sched_yield + <7fb6> DW_AT_const_value : 21 + <2><7fb7>: Abbrev Number: 6 (DW_TAG_enumerator) + <7fb8> DW_AT_name : (indirect string, offset: 0x7cc0): SYS_nxsched_get_stackinfo + <7fbc> DW_AT_const_value : 22 + <2><7fbd>: Abbrev Number: 6 (DW_TAG_enumerator) + <7fbe> DW_AT_name : (indirect string, offset: 0x7b23): SYS_sysinfo + <7fc2> DW_AT_const_value : 23 + <2><7fc3>: Abbrev Number: 6 (DW_TAG_enumerator) + <7fc4> DW_AT_name : (indirect string, offset: 0x7cb0): SYS_gethostname + <7fc8> DW_AT_const_value : 24 + <2><7fc9>: Abbrev Number: 6 (DW_TAG_enumerator) + <7fca> DW_AT_name : (indirect string, offset: 0x7937): SYS_sethostname + <7fce> DW_AT_const_value : 25 + <2><7fcf>: Abbrev Number: 6 (DW_TAG_enumerator) + <7fd0> DW_AT_name : (indirect string, offset: 0x79f3): SYS_nxsem_destroy + <7fd4> DW_AT_const_value : 26 + <2><7fd5>: Abbrev Number: 6 (DW_TAG_enumerator) + <7fd6> DW_AT_name : (indirect string, offset: 0x7ba3): SYS_nxsem_post + <7fda> DW_AT_const_value : 27 + <2><7fdb>: Abbrev Number: 6 (DW_TAG_enumerator) + <7fdc> DW_AT_name : (indirect string, offset: 0x7825): SYS_nxsem_clockwait + <7fe0> DW_AT_const_value : 28 + <2><7fe1>: Abbrev Number: 6 (DW_TAG_enumerator) + <7fe2> DW_AT_name : (indirect string, offset: 0x7a1e): SYS_nxsem_timedwait + <7fe6> DW_AT_const_value : 29 + <2><7fe7>: Abbrev Number: 6 (DW_TAG_enumerator) + <7fe8> DW_AT_name : (indirect string, offset: 0x7aac): SYS_nxsem_trywait + <7fec> DW_AT_const_value : 30 + <2><7fed>: Abbrev Number: 6 (DW_TAG_enumerator) + <7fee> DW_AT_name : (indirect string, offset: 0x76c6): SYS_nxsem_wait + <7ff2> DW_AT_const_value : 31 + <2><7ff3>: Abbrev Number: 6 (DW_TAG_enumerator) + <7ff4> DW_AT_name : (indirect string, offset: 0x7e76): SYS_pgalloc + <7ff8> DW_AT_const_value : 32 + <2><7ff9>: Abbrev Number: 6 (DW_TAG_enumerator) + <7ffa> DW_AT_name : (indirect string, offset: 0x7c8b): SYS_up_fork + <7ffe> DW_AT_const_value : 33 + <2><7fff>: Abbrev Number: 6 (DW_TAG_enumerator) + <8000> DW_AT_name : (indirect string, offset: 0x7d3b): SYS_waitpid + <8004> DW_AT_const_value : 34 + <2><8005>: Abbrev Number: 6 (DW_TAG_enumerator) + <8006> DW_AT_name : (indirect string, offset: 0x777e): SYS_posix_spawn + <800a> DW_AT_const_value : 35 + <2><800b>: Abbrev Number: 6 (DW_TAG_enumerator) + <800c> DW_AT_name : (indirect string, offset: 0x7c80): SYS_execve + <8010> DW_AT_const_value : 36 + <2><8011>: Abbrev Number: 6 (DW_TAG_enumerator) + <8012> DW_AT_name : (indirect string, offset: 0x7c16): SYS_kill + <8016> DW_AT_const_value : 37 + <2><8017>: Abbrev Number: 6 (DW_TAG_enumerator) + <8018> DW_AT_name : (indirect string, offset: 0x7661): SYS_tgkill + <801c> DW_AT_const_value : 38 + <2><801d>: Abbrev Number: 6 (DW_TAG_enumerator) + <801e> DW_AT_name : (indirect string, offset: 0x7960): SYS_sigaction + <8022> DW_AT_const_value : 39 + <2><8023>: Abbrev Number: 6 (DW_TAG_enumerator) + <8024> DW_AT_name : (indirect string, offset: 0x7bfb): SYS_sigpending + <8028> DW_AT_const_value : 40 + <2><8029>: Abbrev Number: 6 (DW_TAG_enumerator) + <802a> DW_AT_name : (indirect string, offset: 0x7898): SYS_sigprocmask + <802e> DW_AT_const_value : 41 + <2><802f>: Abbrev Number: 6 (DW_TAG_enumerator) + <8030> DW_AT_name : (indirect string, offset: 0x7e38): SYS_sigqueue + <8034> DW_AT_const_value : 42 + <2><8035>: Abbrev Number: 6 (DW_TAG_enumerator) + <8036> DW_AT_name : (indirect string, offset: 0x7ad8): SYS_sigsuspend + <803a> DW_AT_const_value : 43 + <2><803b>: Abbrev Number: 6 (DW_TAG_enumerator) + <803c> DW_AT_name : (indirect string, offset: 0x77f0): SYS_sigtimedwait + <8040> DW_AT_const_value : 44 + <2><8041>: Abbrev Number: 6 (DW_TAG_enumerator) + <8042> DW_AT_name : (indirect string, offset: 0x776e): SYS_sigwaitinfo + <8046> DW_AT_const_value : 45 + <2><8047>: Abbrev Number: 6 (DW_TAG_enumerator) + <8048> DW_AT_name : (indirect string, offset: 0x7b0f): SYS_clock_nanosleep + <804c> DW_AT_const_value : 46 + <2><804d>: Abbrev Number: 6 (DW_TAG_enumerator) + <804e> DW_AT_name : (indirect string, offset: 0x7710): SYS_clock + <8052> DW_AT_const_value : 47 + <2><8053>: Abbrev Number: 6 (DW_TAG_enumerator) + <8054> DW_AT_name : (indirect string, offset: 0x7dd3): SYS_clock_gettime + <8058> DW_AT_const_value : 48 + <2><8059>: Abbrev Number: 6 (DW_TAG_enumerator) + <805a> DW_AT_name : (indirect string, offset: 0x7906): SYS_clock_settime + <805e> DW_AT_const_value : 49 + <2><805f>: Abbrev Number: 6 (DW_TAG_enumerator) + <8060> DW_AT_name : (indirect string, offset: 0x7686): SYS_timer_create + <8064> DW_AT_const_value : 50 + <2><8065>: Abbrev Number: 6 (DW_TAG_enumerator) + <8066> DW_AT_name : (indirect string, offset: 0x7ac7): SYS_timer_delete + <806a> DW_AT_const_value : 51 + <2><806b>: Abbrev Number: 6 (DW_TAG_enumerator) + <806c> DW_AT_name : (indirect string, offset: 0x79d4): SYS_timer_getoverrun + <8070> DW_AT_const_value : 52 + <2><8071>: Abbrev Number: 6 (DW_TAG_enumerator) + <8072> DW_AT_name : (indirect string, offset: 0x7f46): SYS_timer_gettime + <8076> DW_AT_const_value : 53 + <2><8077>: Abbrev Number: 6 (DW_TAG_enumerator) + <8078> DW_AT_name : (indirect string, offset: 0x7997): SYS_timer_settime + <807c> DW_AT_const_value : 54 + <2><807d>: Abbrev Number: 6 (DW_TAG_enumerator) + <807e> DW_AT_name : (indirect string, offset: 0x7a6e): SYS_getitimer + <8082> DW_AT_const_value : 55 + <2><8083>: Abbrev Number: 6 (DW_TAG_enumerator) + <8084> DW_AT_name : (indirect string, offset: 0x78bb): SYS_setitimer + <8088> DW_AT_const_value : 56 + <2><8089>: Abbrev Number: 6 (DW_TAG_enumerator) + <808a> DW_AT_name : (indirect string, offset: 0x7a32): SYS_nx_vsyslog + <808e> DW_AT_const_value : 57 + <2><808f>: Abbrev Number: 6 (DW_TAG_enumerator) + <8090> DW_AT_name : (indirect string, offset: 0x7801): SYS_close + <8094> DW_AT_const_value : 58 + <2><8095>: Abbrev Number: 6 (DW_TAG_enumerator) + <8096> DW_AT_name : (indirect string, offset: 0x7f96): SYS_ioctl + <809a> DW_AT_const_value : 59 + <2><809b>: Abbrev Number: 6 (DW_TAG_enumerator) + <809c> DW_AT_name : (indirect string, offset: 0x77c3): SYS_read + <80a0> DW_AT_const_value : 60 + <2><80a1>: Abbrev Number: 6 (DW_TAG_enumerator) + <80a2> DW_AT_name : (indirect string, offset: 0x7918): SYS_write + <80a6> DW_AT_const_value : 61 + <2><80a7>: Abbrev Number: 6 (DW_TAG_enumerator) + <80a8> DW_AT_name : (indirect string, offset: 0x7764): SYS_pread + <80ac> DW_AT_const_value : 62 + <2><80ad>: Abbrev Number: 6 (DW_TAG_enumerator) + <80ae> DW_AT_name : (indirect string, offset: 0x7b4a): SYS_pwrite + <80b2> DW_AT_const_value : 63 + <2><80b3>: Abbrev Number: 6 (DW_TAG_enumerator) + <80b4> DW_AT_name : (indirect string, offset: 0x7658): SYS_poll + <80b8> DW_AT_const_value : 64 + <2><80b9>: Abbrev Number: 6 (DW_TAG_enumerator) + <80ba> DW_AT_name : (indirect string, offset: 0x7728): SYS_select + <80be> DW_AT_const_value : 65 + <2><80bf>: Abbrev Number: 6 (DW_TAG_enumerator) + <80c0> DW_AT_name : (indirect string, offset: 0x76d5): SYS_ppoll + <80c4> DW_AT_const_value : 66 + <2><80c5>: Abbrev Number: 6 (DW_TAG_enumerator) + <80c6> DW_AT_name : (indirect string, offset: 0x7a41): SYS_pselect + <80ca> DW_AT_const_value : 67 + <2><80cb>: Abbrev Number: 6 (DW_TAG_enumerator) + <80cc> DW_AT_name : (indirect string, offset: 0x7842): SYS_boardctl + <80d0> DW_AT_const_value : 68 + <2><80d1>: Abbrev Number: 6 (DW_TAG_enumerator) + <80d2> DW_AT_name : (indirect string, offset: 0x7b9b): SYS_dup + <80d6> DW_AT_const_value : 69 + <2><80d7>: Abbrev Number: 6 (DW_TAG_enumerator) + <80d8> DW_AT_name : (indirect string, offset: 0x7c34): SYS_dup2 + <80dc> DW_AT_const_value : 70 + <2><80dd>: Abbrev Number: 6 (DW_TAG_enumerator) + <80de> DW_AT_name : (indirect string, offset: 0x798d): SYS_fcntl + <80e2> DW_AT_const_value : 71 + <2><80e3>: Abbrev Number: 6 (DW_TAG_enumerator) + <80e4> DW_AT_name : (indirect string, offset: 0x7f88): SYS_ftruncate + <80e8> DW_AT_const_value : 72 + <2><80e9>: Abbrev Number: 6 (DW_TAG_enumerator) + <80ea> DW_AT_name : (indirect string, offset: 0x77b9): SYS_lseek + <80ee> DW_AT_const_value : 73 + <2><80ef>: Abbrev Number: 6 (DW_TAG_enumerator) + <80f0> DW_AT_name : (indirect string, offset: 0x78d3): SYS_mmap + <80f4> DW_AT_const_value : 74 + <2><80f5>: Abbrev Number: 6 (DW_TAG_enumerator) + <80f6> DW_AT_name : (indirect string, offset: 0x7e2f): SYS_open + <80fa> DW_AT_const_value : 75 + <2><80fb>: Abbrev Number: 6 (DW_TAG_enumerator) + <80fc> DW_AT_name : (indirect string, offset: 0x7b90): SYS_rename + <8100> DW_AT_const_value : 76 + <2><8101>: Abbrev Number: 6 (DW_TAG_enumerator) + <8102> DW_AT_name : (indirect string, offset: 0x7fd8): SYS_stat + <8106> DW_AT_const_value : 77 + <2><8107>: Abbrev Number: 6 (DW_TAG_enumerator) + <8108> DW_AT_name : (indirect string, offset: 0x7dc9): SYS_lstat + <810c> DW_AT_const_value : 78 + <2><810d>: Abbrev Number: 6 (DW_TAG_enumerator) + <810e> DW_AT_name : (indirect string, offset: 0x76a1): SYS_fstat + <8112> DW_AT_const_value : 79 + <2><8113>: Abbrev Number: 6 (DW_TAG_enumerator) + <8114> DW_AT_name : (indirect string, offset: 0x7a5b): SYS_statfs + <8118> DW_AT_const_value : 80 + <2><8119>: Abbrev Number: 6 (DW_TAG_enumerator) + <811a> DW_AT_name : (indirect string, offset: 0x7c0a): SYS_fstatfs + <811e> DW_AT_const_value : 81 + <2><811f>: Abbrev Number: 6 (DW_TAG_enumerator) + <8120> DW_AT_name : (indirect string, offset: 0x7de5): SYS_sendfile + <8124> DW_AT_const_value : 82 + <2><8125>: Abbrev Number: 6 (DW_TAG_enumerator) + <8126> DW_AT_name : (indirect string, offset: 0x7c3d): SYS_sync + <812a> DW_AT_const_value : 83 + <2><812b>: Abbrev Number: 6 (DW_TAG_enumerator) + <812c> DW_AT_name : (indirect string, offset: 0x792d): SYS_fsync + <8130> DW_AT_const_value : 84 + <2><8131>: Abbrev Number: 6 (DW_TAG_enumerator) + <8132> DW_AT_name : (indirect string, offset: 0x7a14): SYS_chmod + <8136> DW_AT_const_value : 85 + <2><8137>: Abbrev Number: 6 (DW_TAG_enumerator) + <8138> DW_AT_name : (indirect string, offset: 0x7f7d): SYS_lchmod + <813c> DW_AT_const_value : 86 + <2><813d>: Abbrev Number: 6 (DW_TAG_enumerator) + <813e> DW_AT_name : (indirect string, offset: 0x7b7a): SYS_fchmod + <8142> DW_AT_const_value : 87 + <2><8143>: Abbrev Number: 6 (DW_TAG_enumerator) + <8144> DW_AT_name : (indirect string, offset: 0x77e6): SYS_chown + <8148> DW_AT_const_value : 88 + <2><8149>: Abbrev Number: 6 (DW_TAG_enumerator) + <814a> DW_AT_name : (indirect string, offset: 0x7bc6): SYS_lchown + <814e> DW_AT_const_value : 89 + <2><814f>: Abbrev Number: 6 (DW_TAG_enumerator) + <8150> DW_AT_name : (indirect string, offset: 0x78ec): SYS_fchown + <8154> DW_AT_const_value : 90 + <2><8155>: Abbrev Number: 6 (DW_TAG_enumerator) + <8156> DW_AT_name : (indirect string, offset: 0x7947): SYS_utimens + <815a> DW_AT_const_value : 91 + <2><815b>: Abbrev Number: 6 (DW_TAG_enumerator) + <815c> DW_AT_name : (indirect string, offset: 0x7f6a): SYS_lutimens + <8160> DW_AT_const_value : 92 + <2><8161>: Abbrev Number: 6 (DW_TAG_enumerator) + <8162> DW_AT_name : (indirect string, offset: 0x7ca3): SYS_futimens + <8166> DW_AT_const_value : 93 + <2><8167>: Abbrev Number: 6 (DW_TAG_enumerator) + <8168> DW_AT_name : (indirect string, offset: 0x7dbe): SYS_munmap + <816c> DW_AT_const_value : 94 + <2><816d>: Abbrev Number: 6 (DW_TAG_enumerator) + <816e> DW_AT_name : (indirect string, offset: 0x79e9): SYS_mount + <8172> DW_AT_const_value : 95 + <2><8173>: Abbrev Number: 6 (DW_TAG_enumerator) + <8174> DW_AT_name : (indirect string, offset: 0x78c9): SYS_mkdir + <8178> DW_AT_const_value : 96 + <2><8179>: Abbrev Number: 6 (DW_TAG_enumerator) + <817a> DW_AT_name : (indirect string, offset: 0x79ca): SYS_rmdir + <817e> DW_AT_const_value : 97 + <2><817f>: Abbrev Number: 6 (DW_TAG_enumerator) + <8180> DW_AT_name : (indirect string, offset: 0x7d85): SYS_umount2 + <8184> DW_AT_const_value : 98 + <2><8185>: Abbrev Number: 6 (DW_TAG_enumerator) + <8186> DW_AT_name : (indirect string, offset: 0x801b): SYS_unlink + <818a> DW_AT_const_value : 99 + <2><818b>: Abbrev Number: 6 (DW_TAG_enumerator) + <818c> DW_AT_name : (indirect string, offset: 0x7b61): SYS_pthread_barrier_wait + <8190> DW_AT_const_value : 100 + <2><8191>: Abbrev Number: 6 (DW_TAG_enumerator) + <8192> DW_AT_name : (indirect string, offset: 0x78a8): SYS_pthread_cancel + <8196> DW_AT_const_value : 101 + <2><8197>: Abbrev Number: 6 (DW_TAG_enumerator) + <8198> DW_AT_name : (indirect string, offset: 0x7b2f): SYS_pthread_cond_broadcast + <819c> DW_AT_const_value : 102 + <2><819d>: Abbrev Number: 6 (DW_TAG_enumerator) + <819e> DW_AT_name : (indirect string, offset: 0x77a1): SYS_pthread_cond_signal + <81a2> DW_AT_const_value : 103 + <2><81a3>: Abbrev Number: 6 (DW_TAG_enumerator) + <81a4> DW_AT_name : (indirect string, offset: 0x7e19): SYS_pthread_cond_wait + <81a8> DW_AT_const_value : 104 + <2><81a9>: Abbrev Number: 6 (DW_TAG_enumerator) + <81aa> DW_AT_name : (indirect string, offset: 0x7877): SYS_nx_pthread_create + <81ae> DW_AT_const_value : 105 + <2><81af>: Abbrev Number: 6 (DW_TAG_enumerator) + <81b0> DW_AT_name : (indirect string, offset: 0x76fd): SYS_pthread_detach + <81b4> DW_AT_const_value : 106 + <2><81b5>: Abbrev Number: 6 (DW_TAG_enumerator) + <81b6> DW_AT_name : (indirect string, offset: 0x7bd1): SYS_nx_pthread_exit + <81ba> DW_AT_const_value : 107 + <2><81bb>: Abbrev Number: 6 (DW_TAG_enumerator) + <81bc> DW_AT_name : (indirect string, offset: 0x7c46): SYS_pthread_getschedparam + <81c0> DW_AT_const_value : 108 + <2><81c1>: Abbrev Number: 6 (DW_TAG_enumerator) + <81c2> DW_AT_name : (indirect string, offset: 0x7fc7): SYS_pthread_join + <81c6> DW_AT_const_value : 109 + <2><81c7>: Abbrev Number: 6 (DW_TAG_enumerator) + <81c8> DW_AT_name : (indirect string, offset: 0x774a): SYS_pthread_mutex_destroy + <81cc> DW_AT_const_value : 110 + <2><81cd>: Abbrev Number: 6 (DW_TAG_enumerator) + <81ce> DW_AT_name : (indirect string, offset: 0x7d6e): SYS_pthread_mutex_init + <81d2> DW_AT_const_value : 111 + <2><81d3>: Abbrev Number: 6 (DW_TAG_enumerator) + <81d4> DW_AT_name : (indirect string, offset: 0x7d1f): SYS_pthread_mutex_timedlock + <81d8> DW_AT_const_value : 112 + <2><81d9>: Abbrev Number: 6 (DW_TAG_enumerator) + <81da> DW_AT_name : (indirect string, offset: 0x766c): SYS_pthread_mutex_trylock + <81de> DW_AT_const_value : 113 + <2><81df>: Abbrev Number: 6 (DW_TAG_enumerator) + <81e0> DW_AT_name : (indirect string, offset: 0x7a93): SYS_pthread_mutex_unlock + <81e4> DW_AT_const_value : 114 + <2><81e5>: Abbrev Number: 6 (DW_TAG_enumerator) + <81e6> DW_AT_name : (indirect string, offset: 0x7e45): SYS_pthread_mutex_consistent + <81ea> DW_AT_const_value : 115 + <2><81eb>: Abbrev Number: 6 (DW_TAG_enumerator) + <81ec> DW_AT_name : (indirect string, offset: 0x780b): SYS_pthread_setschedparam + <81f0> DW_AT_const_value : 116 + <2><81f1>: Abbrev Number: 6 (DW_TAG_enumerator) + <81f2> DW_AT_name : (indirect string, offset: 0x784f): SYS_pthread_setschedprio + <81f6> DW_AT_const_value : 117 + <2><81f7>: Abbrev Number: 6 (DW_TAG_enumerator) + <81f8> DW_AT_name : (indirect string, offset: 0x7df2): SYS_pthread_cond_clockwait + <81fc> DW_AT_const_value : 118 + <2><81fd>: Abbrev Number: 6 (DW_TAG_enumerator) + <81fe> DW_AT_name : (indirect string, offset: 0x7e82): SYS_pthread_sigmask + <8202> DW_AT_const_value : 119 + <2><8203>: Abbrev Number: 6 (DW_TAG_enumerator) + <8204> DW_AT_name : (indirect string, offset: 0x796e): SYS_mq_close + <8208> DW_AT_const_value : 120 + <2><8209>: Abbrev Number: 6 (DW_TAG_enumerator) + <820a> DW_AT_name : (indirect string, offset: 0x7868): SYS_mq_getattr + <820e> DW_AT_const_value : 121 + <2><820f>: Abbrev Number: 6 (DW_TAG_enumerator) + <8210> DW_AT_name : (indirect string, offset: 0x7a4d): SYS_mq_notify + <8214> DW_AT_const_value : 122 + <2><8215>: Abbrev Number: 6 (DW_TAG_enumerator) + <8216> DW_AT_name : (indirect string, offset: 0x7e0d): SYS_mq_open + <821a> DW_AT_const_value : 123 + <2><821b>: Abbrev Number: 6 (DW_TAG_enumerator) + <821c> DW_AT_name : (indirect string, offset: 0x78f7): SYS_mq_receive + <8220> DW_AT_const_value : 124 + <2><8221>: Abbrev Number: 6 (DW_TAG_enumerator) + <8222> DW_AT_name : (indirect string, offset: 0x7b55): SYS_mq_send + <8226> DW_AT_const_value : 125 + <2><8227>: Abbrev Number: 6 (DW_TAG_enumerator) + <8228> DW_AT_name : (indirect string, offset: 0x7c71): SYS_mq_setattr + <822c> DW_AT_const_value : 126 + <2><822d>: Abbrev Number: 6 (DW_TAG_enumerator) + <822e> DW_AT_name : (indirect string, offset: 0x7bb2): SYS_mq_timedreceive + <8232> DW_AT_const_value : 127 + <2><8233>: Abbrev Number: 6 (DW_TAG_enumerator) + <8234> DW_AT_name : (indirect string, offset: 0x76ec): SYS_mq_timedsend + <8238> DW_AT_const_value : 128 + <2><8239>: Abbrev Number: 6 (DW_TAG_enumerator) + <823a> DW_AT_name : (indirect string, offset: 0x79a9): SYS_mq_unlink + <823e> DW_AT_const_value : 129 + <2><823f>: Abbrev Number: 6 (DW_TAG_enumerator) + <8240> DW_AT_name : (indirect string, offset: 0x7d0b): SYS_get_environ_ptr + <8244> DW_AT_const_value : 130 + <2><8245>: Abbrev Number: 6 (DW_TAG_enumerator) + <8246> DW_AT_name : (indirect string, offset: 0x7d61): SYS_clearenv + <824a> DW_AT_const_value : 131 + <2><824b>: Abbrev Number: 6 (DW_TAG_enumerator) + <824c> DW_AT_name : (indirect string, offset: 0x7fe1): SYS_getenv + <8250> DW_AT_const_value : 132 + <2><8251>: Abbrev Number: 6 (DW_TAG_enumerator) + <8252> DW_AT_name : (indirect string, offset: 0x76bb): SYS_putenv + <8256> DW_AT_const_value : 133 + <2><8257>: Abbrev Number: 6 (DW_TAG_enumerator) + <8258> DW_AT_name : (indirect string, offset: 0x7c1f): SYS_setenv + <825c> DW_AT_const_value : 134 + <2><825d>: Abbrev Number: 6 (DW_TAG_enumerator) + <825e> DW_AT_name : (indirect string, offset: 0x76df): SYS_unsetenv + <8262> DW_AT_const_value : 135 + <2><8263>: Abbrev Number: 6 (DW_TAG_enumerator) + <8264> DW_AT_name : (indirect string, offset: 0x7fec): SYS_getrandom + <8268> DW_AT_const_value : 136 + <2><8269>: Abbrev Number: 6 (DW_TAG_enumerator) + <826a> DW_AT_name : (indirect string, offset: 0x77d8): SYS_nanosleep + <826e> DW_AT_const_value : 137 + <2><826f>: Abbrev Number: 6 (DW_TAG_enumerator) + <8270> DW_AT_name : (indirect string, offset: 0x7f58): SYS_epoll_create1 + <8274> DW_AT_const_value : 138 + <2><8275>: Abbrev Number: 6 (DW_TAG_enumerator) + <8276> DW_AT_name : (indirect string, offset: 0x771a): SYS_epoll_ctl + <827a> DW_AT_const_value : 139 + <2><827b>: Abbrev Number: 6 (DW_TAG_enumerator) + <827c> DW_AT_name : (indirect string, offset: 0x7af1): SYS_epoll_wait + <8280> DW_AT_const_value : 140 + <2><8281>: Abbrev Number: 6 (DW_TAG_enumerator) + <8282> DW_AT_name : (indirect string, offset: 0x7d47): SYS_time + <8286> DW_AT_const_value : 141 + <2><8287>: Abbrev Number: 6 (DW_TAG_enumerator) + <8288> DW_AT_name : (indirect string, offset: 0x7d50): SYS_gettimeofday + <828c> DW_AT_const_value : 142 + <2><828d>: Abbrev Number: 6 (DW_TAG_enumerator) + <828e> DW_AT_name : (indirect string, offset: 0x7c60): SYS_settimeofday + <8292> DW_AT_const_value : 143 + <2><8293>: Abbrev Number: 6 (DW_TAG_enumerator) + <8294> DW_AT_name : (indirect string, offset: 0x788d): SYS_signal + <8298> DW_AT_const_value : 144 + <2><8299>: Abbrev Number: 6 (DW_TAG_enumerator) + <829a> DW_AT_name : (indirect string, offset: 0x7a05): SYS_maxsyscall + <829e> DW_AT_const_value : 145 + <2><829f>: Abbrev Number: 0 + <1><82a0>: Abbrev Number: 7 (DW_TAG_subprogram) + <82a1> DW_AT_external : 1 + <82a1> DW_AT_name : (indirect string, offset: 0x7f77): lseek + <82a5> DW_AT_decl_file : 7 + <82a6> DW_AT_decl_line : 333 + <82a8> DW_AT_decl_column : 9 + <82a9> DW_AT_prototyped : 1 + <82a9> DW_AT_type : <0x7f42> + <82ad> DW_AT_low_pc : 0xd94 + <82b5> DW_AT_high_pc : 0x18 + <82bd> DW_AT_frame_base : 1 byte block: 9c (DW_OP_call_frame_cfa) + <82bf> DW_AT_GNU_all_call_sites: 1 + <82bf> DW_AT_sibling : <0x834d> + <2><82c3>: Abbrev Number: 8 (DW_TAG_formal_parameter) + <82c4> DW_AT_name : (indirect string, offset: 0x7cfa): parm1 + <82c8> DW_AT_decl_file : 1 + <82c9> DW_AT_decl_line : 7 + <82ca> DW_AT_decl_column : 17 + <82cb> DW_AT_type : <0x7efb> + <82cf> DW_AT_location : 0x304f (location list) + <2><82d3>: Abbrev Number: 8 (DW_TAG_formal_parameter) + <82d4> DW_AT_name : (indirect string, offset: 0x7d00): parm2 + <82d8> DW_AT_decl_file : 1 + <82d9> DW_AT_decl_line : 7 + <82da> DW_AT_decl_column : 30 + <82db> DW_AT_type : <0x7f42> + <82df> DW_AT_location : 0x3088 (location list) + <2><82e3>: Abbrev Number: 8 (DW_TAG_formal_parameter) + <82e4> DW_AT_name : (indirect string, offset: 0x7652): parm3 + <82e8> DW_AT_decl_file : 1 + <82e9> DW_AT_decl_line : 7 + <82ea> DW_AT_decl_column : 41 + <82eb> DW_AT_type : <0x7efb> + <82ef> DW_AT_location : 0x30c1 (location list) + <2><82f3>: Abbrev Number: 9 (DW_TAG_inlined_subroutine) + <82f4> DW_AT_abstract_origin: <0x834d> + <82f8> DW_AT_low_pc : 0xd9a + <8300> DW_AT_high_pc : 0xe + <8308> DW_AT_call_file : 1 + <8309> DW_AT_call_line : 9 + <830a> DW_AT_call_column : 17 + <3><830b>: Abbrev Number: 10 (DW_TAG_formal_parameter) + <830c> DW_AT_abstract_origin: <0x835a> + <8310> DW_AT_location : 0x30fa (location list) + <3><8314>: Abbrev Number: 10 (DW_TAG_formal_parameter) + <8315> DW_AT_abstract_origin: <0x837e> + <8319> DW_AT_location : 0x311f (location list) + <3><831d>: Abbrev Number: 10 (DW_TAG_formal_parameter) + <831e> DW_AT_abstract_origin: <0x8372> + <8322> DW_AT_location : 0x314a (location list) + <3><8326>: Abbrev Number: 10 (DW_TAG_formal_parameter) + <8327> DW_AT_abstract_origin: <0x8366> + <832b> DW_AT_location : 0x3175 (location list) + <3><832f>: Abbrev Number: 11 (DW_TAG_variable) + <8330> DW_AT_abstract_origin: <0x838a> + <8334> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <3><8336>: Abbrev Number: 11 (DW_TAG_variable) + <8337> DW_AT_abstract_origin: <0x8395> + <833b> DW_AT_location : 1 byte block: 5b (DW_OP_reg11 (a1)) + <3><833d>: Abbrev Number: 11 (DW_TAG_variable) + <833e> DW_AT_abstract_origin: <0x83a0> + <8342> DW_AT_location : 1 byte block: 5c (DW_OP_reg12 (a2)) + <3><8344>: Abbrev Number: 11 (DW_TAG_variable) + <8345> DW_AT_abstract_origin: <0x83ab> + <8349> DW_AT_location : 1 byte block: 5d (DW_OP_reg13 (a3)) + <3><834b>: Abbrev Number: 0 + <2><834c>: Abbrev Number: 0 + <1><834d>: Abbrev Number: 12 (DW_TAG_subprogram) + <834e> DW_AT_name : (indirect string, offset: 0x78e2): sys_call3 + <8352> DW_AT_decl_file : 2 + <8353> DW_AT_decl_line : 249 + <8354> DW_AT_decl_column : 25 + <8355> DW_AT_prototyped : 1 + <8355> DW_AT_type : <0x7f36> + <8359> DW_AT_inline : 3 (declared as inline and inlined) + <2><835a>: Abbrev Number: 13 (DW_TAG_formal_parameter) + <835b> DW_AT_name : nbr + <835f> DW_AT_decl_file : 2 + <8360> DW_AT_decl_line : 249 + <8361> DW_AT_decl_column : 48 + <8362> DW_AT_type : <0x7f02> + <2><8366>: Abbrev Number: 14 (DW_TAG_formal_parameter) + <8367> DW_AT_name : (indirect string, offset: 0x7cfa): parm1 + <836b> DW_AT_decl_file : 2 + <836c> DW_AT_decl_line : 249 + <836d> DW_AT_decl_column : 63 + <836e> DW_AT_type : <0x7f36> + <2><8372>: Abbrev Number: 14 (DW_TAG_formal_parameter) + <8373> DW_AT_name : (indirect string, offset: 0x7d00): parm2 + <8377> DW_AT_decl_file : 2 + <8378> DW_AT_decl_line : 250 + <8379> DW_AT_decl_column : 45 + <837a> DW_AT_type : <0x7f36> + <2><837e>: Abbrev Number: 14 (DW_TAG_formal_parameter) + <837f> DW_AT_name : (indirect string, offset: 0x7652): parm3 + <8383> DW_AT_decl_file : 2 + <8384> DW_AT_decl_line : 250 + <8385> DW_AT_decl_column : 62 + <8386> DW_AT_type : <0x7f36> + <2><838a>: Abbrev Number: 15 (DW_TAG_variable) + <838b> DW_AT_name : r0 + <838e> DW_AT_decl_file : 2 + <838f> DW_AT_decl_line : 252 + <8390> DW_AT_decl_column : 17 + <8391> DW_AT_type : <0x7f09> + <2><8395>: Abbrev Number: 15 (DW_TAG_variable) + <8396> DW_AT_name : r1 + <8399> DW_AT_decl_file : 2 + <839a> DW_AT_decl_line : 253 + <839b> DW_AT_decl_column : 17 + <839c> DW_AT_type : <0x7f09> + <2><83a0>: Abbrev Number: 15 (DW_TAG_variable) + <83a1> DW_AT_name : r2 + <83a4> DW_AT_decl_file : 2 + <83a5> DW_AT_decl_line : 254 + <83a6> DW_AT_decl_column : 17 + <83a7> DW_AT_type : <0x7f09> + <2><83ab>: Abbrev Number: 15 (DW_TAG_variable) + <83ac> DW_AT_name : r3 + <83af> DW_AT_decl_file : 2 + <83b0> DW_AT_decl_line : 255 + <83b1> DW_AT_decl_column : 17 + <83b2> DW_AT_type : <0x7f09> + <2><83b6>: Abbrev Number: 0 + <1><83b7>: Abbrev Number: 0 + Compilation Unit @ offset 0x83b8: + Length: 0x496 (32-bit) + Version: 4 + Abbrev Offset: 0x27d2 + Pointer Size: 8 + <0><83c3>: Abbrev Number: 1 (DW_TAG_compile_unit) + <83c4> DW_AT_producer : (indirect string, offset: 0x88a6): GNU C17 10.2.0 -mcmodel=medany -march=rv64imafdc -mabi=lp64d -march=rv64imafdc -g -Os -fno-common -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections + <83c8> DW_AT_language : 12 (ANSI C99) + <83c9> DW_AT_name : (indirect string, offset: 0x8533): proxies/PROXY_nx_pthread_exit.c + <83cd> DW_AT_comp_dir : (indirect string, offset: 0x86e1): /Users/Luppy/ox64/nuttx/syscall + <83d1> DW_AT_ranges : 0x870 + <83d5> DW_AT_low_pc : 0x0 + <83dd> DW_AT_stmt_list : 0x48ae + <1><83e1>: Abbrev Number: 2 (DW_TAG_base_type) + <83e2> DW_AT_byte_size : 1 + <83e3> DW_AT_encoding : 6 (signed char) + <83e4> DW_AT_name : (indirect string, offset: 0x819b): signed char + <1><83e8>: Abbrev Number: 2 (DW_TAG_base_type) + <83e9> DW_AT_byte_size : 1 + <83ea> DW_AT_encoding : 8 (unsigned char) + <83eb> DW_AT_name : (indirect string, offset: 0x85f4): unsigned char + <1><83ef>: Abbrev Number: 2 (DW_TAG_base_type) + <83f0> DW_AT_byte_size : 2 + <83f1> DW_AT_encoding : 5 (signed) + <83f2> DW_AT_name : (indirect string, offset: 0x8631): short int + <1><83f6>: Abbrev Number: 2 (DW_TAG_base_type) + <83f7> DW_AT_byte_size : 2 + <83f8> DW_AT_encoding : 7 (unsigned) + <83f9> DW_AT_name : (indirect string, offset: 0x839d): short unsigned int + <1><83fd>: Abbrev Number: 3 (DW_TAG_base_type) + <83fe> DW_AT_byte_size : 4 + <83ff> DW_AT_encoding : 5 (signed) + <8400> DW_AT_name : int + <1><8404>: Abbrev Number: 2 (DW_TAG_base_type) + <8405> DW_AT_byte_size : 4 + <8406> DW_AT_encoding : 7 (unsigned) + <8407> DW_AT_name : (indirect string, offset: 0x8329): unsigned int + <1><840b>: Abbrev Number: 2 (DW_TAG_base_type) + <840c> DW_AT_byte_size : 8 + <840d> DW_AT_encoding : 5 (signed) + <840e> DW_AT_name : (indirect string, offset: 0x8208): long int + <1><8412>: Abbrev Number: 2 (DW_TAG_base_type) + <8413> DW_AT_byte_size : 8 + <8414> DW_AT_encoding : 7 (unsigned) + <8415> DW_AT_name : (indirect string, offset: 0x8361): long unsigned int + <1><8419>: Abbrev Number: 4 (DW_TAG_typedef) + <841a> DW_AT_name : (indirect string, offset: 0x844c): _size_t + <841e> DW_AT_decl_file : 3 + <841f> DW_AT_decl_line : 93 + <8420> DW_AT_decl_column : 28 + <8421> DW_AT_type : <0x8412> + <1><8425>: Abbrev Number: 2 (DW_TAG_base_type) + <8426> DW_AT_byte_size : 8 + <8427> DW_AT_encoding : 7 (unsigned) + <8428> DW_AT_name : (indirect string, offset: 0x80f4): long long unsigned int + <1><842c>: Abbrev Number: 4 (DW_TAG_typedef) + <842d> DW_AT_name : (indirect string, offset: 0x8065): uintptr_t + <8431> DW_AT_decl_file : 4 + <8432> DW_AT_decl_line : 239 + <8433> DW_AT_decl_column : 29 + <8434> DW_AT_type : <0x8419> + <1><8438>: Abbrev Number: 5 (DW_TAG_pointer_type) + <8439> DW_AT_byte_size : 8 + <1><843a>: Abbrev Number: 2 (DW_TAG_base_type) + <843b> DW_AT_byte_size : 1 + <843c> DW_AT_encoding : 8 (unsigned char) + <843d> DW_AT_name : (indirect string, offset: 0x8707): char + <1><8441>: Abbrev Number: 4 (DW_TAG_typedef) + <8442> DW_AT_name : (indirect string, offset: 0x87f3): pthread_addr_t + <8446> DW_AT_decl_file : 5 + <8447> DW_AT_decl_line : 212 + <8448> DW_AT_decl_column : 19 + <8449> DW_AT_type : <0x8438> + <1><844d>: Abbrev Number: 2 (DW_TAG_base_type) + <844e> DW_AT_byte_size : 1 + <844f> DW_AT_encoding : 2 (boolean) + <8450> DW_AT_name : (indirect string, offset: 0x85ee): _Bool + <1><8454>: Abbrev Number: 2 (DW_TAG_base_type) + <8455> DW_AT_byte_size : 8 + <8456> DW_AT_encoding : 5 (signed) + <8457> DW_AT_name : (indirect string, offset: 0x818d): long long int + <1><845b>: Abbrev Number: 2 (DW_TAG_base_type) + <845c> DW_AT_byte_size : 16 + <845d> DW_AT_encoding : 4 (float) + <845e> DW_AT_name : (indirect string, offset: 0x84ce): long double + <1><8462>: Abbrev Number: 6 (DW_TAG_enumeration_type) + <8463> DW_AT_encoding : 7 (unsigned) + <8464> DW_AT_byte_size : 4 + <8465> DW_AT_type : <0x8404> + <8469> DW_AT_decl_file : 6 + <846a> DW_AT_decl_line : 57 + <846b> DW_AT_decl_column : 1 + <846c> DW_AT_sibling : <0x87ad> + <2><8470>: Abbrev Number: 7 (DW_TAG_enumerator) + <8471> DW_AT_name : (indirect string, offset: 0x84c4): SYS__exit + <8475> DW_AT_const_value : 8 + <2><8476>: Abbrev Number: 7 (DW_TAG_enumerator) + <8477> DW_AT_name : (indirect string, offset: 0x869e): SYS__assert + <847b> DW_AT_const_value : 9 + <2><847c>: Abbrev Number: 7 (DW_TAG_enumerator) + <847d> DW_AT_name : (indirect string, offset: 0x82f8): SYS_getpid + <8481> DW_AT_const_value : 10 + <2><8482>: Abbrev Number: 7 (DW_TAG_enumerator) + <8483> DW_AT_name : (indirect string, offset: 0x858e): SYS_gettid + <8487> DW_AT_const_value : 11 + <2><8488>: Abbrev Number: 7 (DW_TAG_enumerator) + <8489> DW_AT_name : (indirect string, offset: 0x8a05): SYS_prctl + <848d> DW_AT_const_value : 12 + <2><848e>: Abbrev Number: 7 (DW_TAG_enumerator) + <848f> DW_AT_name : (indirect string, offset: 0x814f): SYS_sched_getparam + <8493> DW_AT_const_value : 13 + <2><8494>: Abbrev Number: 7 (DW_TAG_enumerator) + <8495> DW_AT_name : (indirect string, offset: 0x89ee): SYS_sched_getscheduler + <8499> DW_AT_const_value : 14 + <2><849a>: Abbrev Number: 7 (DW_TAG_enumerator) + <849b> DW_AT_name : (indirect string, offset: 0x84e9): SYS_sched_lock + <849f> DW_AT_const_value : 15 + <2><84a0>: Abbrev Number: 7 (DW_TAG_enumerator) + <84a1> DW_AT_name : (indirect string, offset: 0x8872): SYS_sched_lockcount + <84a5> DW_AT_const_value : 16 + <2><84a6>: Abbrev Number: 7 (DW_TAG_enumerator) + <84a7> DW_AT_name : (indirect string, offset: 0x87a5): SYS_sched_rr_get_interval + <84ab> DW_AT_const_value : 17 + <2><84ac>: Abbrev Number: 7 (DW_TAG_enumerator) + <84ad> DW_AT_name : (indirect string, offset: 0x8792): SYS_sched_setparam + <84b1> DW_AT_const_value : 18 + <2><84b2>: Abbrev Number: 7 (DW_TAG_enumerator) + <84b3> DW_AT_name : (indirect string, offset: 0x8462): SYS_sched_setscheduler + <84b7> DW_AT_const_value : 19 + <2><84b8>: Abbrev Number: 7 (DW_TAG_enumerator) + <84b9> DW_AT_name : (indirect string, offset: 0x89aa): SYS_sched_unlock + <84bd> DW_AT_const_value : 20 + <2><84be>: Abbrev Number: 7 (DW_TAG_enumerator) + <84bf> DW_AT_name : (indirect string, offset: 0x8079): SYS_sched_yield + <84c3> DW_AT_const_value : 21 + <2><84c4>: Abbrev Number: 7 (DW_TAG_enumerator) + <84c5> DW_AT_name : (indirect string, offset: 0x86c7): SYS_nxsched_get_stackinfo + <84c9> DW_AT_const_value : 22 + <2><84ca>: Abbrev Number: 7 (DW_TAG_enumerator) + <84cb> DW_AT_name : (indirect string, offset: 0x850c): SYS_sysinfo + <84cf> DW_AT_const_value : 23 + <2><84d0>: Abbrev Number: 7 (DW_TAG_enumerator) + <84d1> DW_AT_name : (indirect string, offset: 0x86b7): SYS_gethostname + <84d5> DW_AT_const_value : 24 + <2><84d6>: Abbrev Number: 7 (DW_TAG_enumerator) + <84d7> DW_AT_name : (indirect string, offset: 0x830d): SYS_sethostname + <84db> DW_AT_const_value : 25 + <2><84dc>: Abbrev Number: 7 (DW_TAG_enumerator) + <84dd> DW_AT_name : (indirect string, offset: 0x83d9): SYS_nxsem_destroy + <84e1> DW_AT_const_value : 26 + <2><84e2>: Abbrev Number: 7 (DW_TAG_enumerator) + <84e3> DW_AT_name : (indirect string, offset: 0x85ac): SYS_nxsem_post + <84e7> DW_AT_const_value : 27 + <2><84e8>: Abbrev Number: 7 (DW_TAG_enumerator) + <84e9> DW_AT_name : (indirect string, offset: 0x81f4): SYS_nxsem_clockwait + <84ed> DW_AT_const_value : 28 + <2><84ee>: Abbrev Number: 7 (DW_TAG_enumerator) + <84ef> DW_AT_name : (indirect string, offset: 0x8404): SYS_nxsem_timedwait + <84f3> DW_AT_const_value : 29 + <2><84f4>: Abbrev Number: 7 (DW_TAG_enumerator) + <84f5> DW_AT_name : (indirect string, offset: 0x8492): SYS_nxsem_trywait + <84f9> DW_AT_const_value : 30 + <2><84fa>: Abbrev Number: 7 (DW_TAG_enumerator) + <84fb> DW_AT_name : (indirect string, offset: 0x8094): SYS_nxsem_wait + <84ff> DW_AT_const_value : 31 + <2><8500>: Abbrev Number: 7 (DW_TAG_enumerator) + <8501> DW_AT_name : (indirect string, offset: 0x8886): SYS_pgalloc + <8505> DW_AT_const_value : 32 + <2><8506>: Abbrev Number: 7 (DW_TAG_enumerator) + <8507> DW_AT_name : (indirect string, offset: 0x8692): SYS_up_fork + <850b> DW_AT_const_value : 33 + <2><850c>: Abbrev Number: 7 (DW_TAG_enumerator) + <850d> DW_AT_name : (indirect string, offset: 0x873c): SYS_waitpid + <8511> DW_AT_const_value : 34 + <2><8512>: Abbrev Number: 7 (DW_TAG_enumerator) + <8513> DW_AT_name : (indirect string, offset: 0x813f): SYS_posix_spawn + <8517> DW_AT_const_value : 35 + <2><8518>: Abbrev Number: 7 (DW_TAG_enumerator) + <8519> DW_AT_name : (indirect string, offset: 0x8687): SYS_execve + <851d> DW_AT_const_value : 36 + <2><851e>: Abbrev Number: 7 (DW_TAG_enumerator) + <851f> DW_AT_name : (indirect string, offset: 0x861d): SYS_kill + <8523> DW_AT_const_value : 37 + <2><8524>: Abbrev Number: 7 (DW_TAG_enumerator) + <8525> DW_AT_name : (indirect string, offset: 0x802f): SYS_tgkill + <8529> DW_AT_const_value : 38 + <2><852a>: Abbrev Number: 7 (DW_TAG_enumerator) + <852b> DW_AT_name : (indirect string, offset: 0x8336): SYS_sigaction + <852f> DW_AT_const_value : 39 + <2><8530>: Abbrev Number: 7 (DW_TAG_enumerator) + <8531> DW_AT_name : (indirect string, offset: 0x8602): SYS_sigpending + <8535> DW_AT_const_value : 40 + <2><8536>: Abbrev Number: 7 (DW_TAG_enumerator) + <8537> DW_AT_name : (indirect string, offset: 0x8267): SYS_sigprocmask + <853b> DW_AT_const_value : 41 + <2><853c>: Abbrev Number: 7 (DW_TAG_enumerator) + <853d> DW_AT_name : (indirect string, offset: 0x8848): SYS_sigqueue + <8541> DW_AT_const_value : 42 + <2><8542>: Abbrev Number: 7 (DW_TAG_enumerator) + <8543> DW_AT_name : (indirect string, offset: 0x84b5): SYS_sigsuspend + <8547> DW_AT_const_value : 43 + <2><8548>: Abbrev Number: 7 (DW_TAG_enumerator) + <8549> DW_AT_name : (indirect string, offset: 0x81bf): SYS_sigtimedwait + <854d> DW_AT_const_value : 44 + <2><854e>: Abbrev Number: 7 (DW_TAG_enumerator) + <854f> DW_AT_name : (indirect string, offset: 0x812f): SYS_sigwaitinfo + <8553> DW_AT_const_value : 45 + <2><8554>: Abbrev Number: 7 (DW_TAG_enumerator) + <8555> DW_AT_name : (indirect string, offset: 0x84f8): SYS_clock_nanosleep + <8559> DW_AT_const_value : 46 + <2><855a>: Abbrev Number: 7 (DW_TAG_enumerator) + <855b> DW_AT_name : (indirect string, offset: 0x80d1): SYS_clock + <855f> DW_AT_const_value : 47 + <2><8560>: Abbrev Number: 7 (DW_TAG_enumerator) + <8561> DW_AT_name : (indirect string, offset: 0x87d4): SYS_clock_gettime + <8565> DW_AT_const_value : 48 + <2><8566>: Abbrev Number: 7 (DW_TAG_enumerator) + <8567> DW_AT_name : (indirect string, offset: 0x82dc): SYS_clock_settime + <856b> DW_AT_const_value : 49 + <2><856c>: Abbrev Number: 7 (DW_TAG_enumerator) + <856d> DW_AT_name : (indirect string, offset: 0x8054): SYS_timer_create + <8571> DW_AT_const_value : 50 + <2><8572>: Abbrev Number: 7 (DW_TAG_enumerator) + <8573> DW_AT_name : (indirect string, offset: 0x84a4): SYS_timer_delete + <8577> DW_AT_const_value : 51 + <2><8578>: Abbrev Number: 7 (DW_TAG_enumerator) + <8579> DW_AT_name : (indirect string, offset: 0x83ba): SYS_timer_getoverrun + <857d> DW_AT_const_value : 52 + <2><857e>: Abbrev Number: 7 (DW_TAG_enumerator) + <857f> DW_AT_name : (indirect string, offset: 0x8956): SYS_timer_gettime + <8583> DW_AT_const_value : 53 + <2><8584>: Abbrev Number: 7 (DW_TAG_enumerator) + <8585> DW_AT_name : (indirect string, offset: 0x837d): SYS_timer_settime + <8589> DW_AT_const_value : 54 + <2><858a>: Abbrev Number: 7 (DW_TAG_enumerator) + <858b> DW_AT_name : (indirect string, offset: 0x8454): SYS_getitimer + <858f> DW_AT_const_value : 55 + <2><8590>: Abbrev Number: 7 (DW_TAG_enumerator) + <8591> DW_AT_name : (indirect string, offset: 0x828a): SYS_setitimer + <8595> DW_AT_const_value : 56 + <2><8596>: Abbrev Number: 7 (DW_TAG_enumerator) + <8597> DW_AT_name : (indirect string, offset: 0x8418): SYS_nx_vsyslog + <859b> DW_AT_const_value : 57 + <2><859c>: Abbrev Number: 7 (DW_TAG_enumerator) + <859d> DW_AT_name : (indirect string, offset: 0x81d0): SYS_close + <85a1> DW_AT_const_value : 58 + <2><85a2>: Abbrev Number: 7 (DW_TAG_enumerator) + <85a3> DW_AT_name : (indirect string, offset: 0x89a0): SYS_ioctl + <85a7> DW_AT_const_value : 59 + <2><85a8>: Abbrev Number: 7 (DW_TAG_enumerator) + <85a9> DW_AT_name : (indirect string, offset: 0x8184): SYS_read + <85ad> DW_AT_const_value : 60 + <2><85ae>: Abbrev Number: 7 (DW_TAG_enumerator) + <85af> DW_AT_name : (indirect string, offset: 0x82ee): SYS_write + <85b3> DW_AT_const_value : 61 + <2><85b4>: Abbrev Number: 7 (DW_TAG_enumerator) + <85b5> DW_AT_name : (indirect string, offset: 0x8125): SYS_pread + <85b9> DW_AT_const_value : 62 + <2><85ba>: Abbrev Number: 7 (DW_TAG_enumerator) + <85bb> DW_AT_name : (indirect string, offset: 0x8553): SYS_pwrite + <85bf> DW_AT_const_value : 63 + <2><85c0>: Abbrev Number: 7 (DW_TAG_enumerator) + <85c1> DW_AT_name : (indirect string, offset: 0x8026): SYS_poll + <85c5> DW_AT_const_value : 64 + <2><85c6>: Abbrev Number: 7 (DW_TAG_enumerator) + <85c7> DW_AT_name : (indirect string, offset: 0x80e9): SYS_select + <85cb> DW_AT_const_value : 65 + <2><85cc>: Abbrev Number: 7 (DW_TAG_enumerator) + <85cd> DW_AT_name : (indirect string, offset: 0x80a3): SYS_ppoll + <85d1> DW_AT_const_value : 66 + <2><85d2>: Abbrev Number: 7 (DW_TAG_enumerator) + <85d3> DW_AT_name : (indirect string, offset: 0x8427): SYS_pselect + <85d7> DW_AT_const_value : 67 + <2><85d8>: Abbrev Number: 7 (DW_TAG_enumerator) + <85d9> DW_AT_name : (indirect string, offset: 0x8211): SYS_boardctl + <85dd> DW_AT_const_value : 68 + <2><85de>: Abbrev Number: 7 (DW_TAG_enumerator) + <85df> DW_AT_name : (indirect string, offset: 0x85a4): SYS_dup + <85e3> DW_AT_const_value : 69 + <2><85e4>: Abbrev Number: 7 (DW_TAG_enumerator) + <85e5> DW_AT_name : (indirect string, offset: 0x863b): SYS_dup2 + <85e9> DW_AT_const_value : 70 + <2><85ea>: Abbrev Number: 7 (DW_TAG_enumerator) + <85eb> DW_AT_name : (indirect string, offset: 0x8373): SYS_fcntl + <85ef> DW_AT_const_value : 71 + <2><85f0>: Abbrev Number: 7 (DW_TAG_enumerator) + <85f1> DW_AT_name : (indirect string, offset: 0x8992): SYS_ftruncate + <85f5> DW_AT_const_value : 72 + <2><85f6>: Abbrev Number: 7 (DW_TAG_enumerator) + <85f7> DW_AT_name : (indirect string, offset: 0x817a): SYS_lseek + <85fb> DW_AT_const_value : 73 + <2><85fc>: Abbrev Number: 7 (DW_TAG_enumerator) + <85fd> DW_AT_name : (indirect string, offset: 0x82a2): SYS_mmap + <8601> DW_AT_const_value : 74 + <2><8602>: Abbrev Number: 7 (DW_TAG_enumerator) + <8603> DW_AT_name : (indirect string, offset: 0x883f): SYS_open + <8607> DW_AT_const_value : 75 + <2><8608>: Abbrev Number: 7 (DW_TAG_enumerator) + <8609> DW_AT_name : (indirect string, offset: 0x8599): SYS_rename + <860d> DW_AT_const_value : 76 + <2><860e>: Abbrev Number: 7 (DW_TAG_enumerator) + <860f> DW_AT_name : (indirect string, offset: 0x89cc): SYS_stat + <8613> DW_AT_const_value : 77 + <2><8614>: Abbrev Number: 7 (DW_TAG_enumerator) + <8615> DW_AT_name : (indirect string, offset: 0x87ca): SYS_lstat + <8619> DW_AT_const_value : 78 + <2><861a>: Abbrev Number: 7 (DW_TAG_enumerator) + <861b> DW_AT_name : (indirect string, offset: 0x806f): SYS_fstat + <861f> DW_AT_const_value : 79 + <2><8620>: Abbrev Number: 7 (DW_TAG_enumerator) + <8621> DW_AT_name : (indirect string, offset: 0x8441): SYS_statfs + <8625> DW_AT_const_value : 80 + <2><8626>: Abbrev Number: 7 (DW_TAG_enumerator) + <8627> DW_AT_name : (indirect string, offset: 0x8611): SYS_fstatfs + <862b> DW_AT_const_value : 81 + <2><862c>: Abbrev Number: 7 (DW_TAG_enumerator) + <862d> DW_AT_name : (indirect string, offset: 0x87e6): SYS_sendfile + <8631> DW_AT_const_value : 82 + <2><8632>: Abbrev Number: 7 (DW_TAG_enumerator) + <8633> DW_AT_name : (indirect string, offset: 0x8644): SYS_sync + <8637> DW_AT_const_value : 83 + <2><8638>: Abbrev Number: 7 (DW_TAG_enumerator) + <8639> DW_AT_name : (indirect string, offset: 0x8303): SYS_fsync + <863d> DW_AT_const_value : 84 + <2><863e>: Abbrev Number: 7 (DW_TAG_enumerator) + <863f> DW_AT_name : (indirect string, offset: 0x83fa): SYS_chmod + <8643> DW_AT_const_value : 85 + <2><8644>: Abbrev Number: 7 (DW_TAG_enumerator) + <8645> DW_AT_name : (indirect string, offset: 0x8987): SYS_lchmod + <8649> DW_AT_const_value : 86 + <2><864a>: Abbrev Number: 7 (DW_TAG_enumerator) + <864b> DW_AT_name : (indirect string, offset: 0x8583): SYS_fchmod + <864f> DW_AT_const_value : 87 + <2><8650>: Abbrev Number: 7 (DW_TAG_enumerator) + <8651> DW_AT_name : (indirect string, offset: 0x81b5): SYS_chown + <8655> DW_AT_const_value : 88 + <2><8656>: Abbrev Number: 7 (DW_TAG_enumerator) + <8657> DW_AT_name : (indirect string, offset: 0x85cf): SYS_lchown + <865b> DW_AT_const_value : 89 + <2><865c>: Abbrev Number: 7 (DW_TAG_enumerator) + <865d> DW_AT_name : (indirect string, offset: 0x82c2): SYS_fchown + <8661> DW_AT_const_value : 90 + <2><8662>: Abbrev Number: 7 (DW_TAG_enumerator) + <8663> DW_AT_name : (indirect string, offset: 0x831d): SYS_utimens + <8667> DW_AT_const_value : 91 + <2><8668>: Abbrev Number: 7 (DW_TAG_enumerator) + <8669> DW_AT_name : (indirect string, offset: 0x897a): SYS_lutimens + <866d> DW_AT_const_value : 92 + <2><866e>: Abbrev Number: 7 (DW_TAG_enumerator) + <866f> DW_AT_name : (indirect string, offset: 0x86aa): SYS_futimens + <8673> DW_AT_const_value : 93 + <2><8674>: Abbrev Number: 7 (DW_TAG_enumerator) + <8675> DW_AT_name : (indirect string, offset: 0x87bf): SYS_munmap + <8679> DW_AT_const_value : 94 + <2><867a>: Abbrev Number: 7 (DW_TAG_enumerator) + <867b> DW_AT_name : (indirect string, offset: 0x83cf): SYS_mount + <867f> DW_AT_const_value : 95 + <2><8680>: Abbrev Number: 7 (DW_TAG_enumerator) + <8681> DW_AT_name : (indirect string, offset: 0x8298): SYS_mkdir + <8685> DW_AT_const_value : 96 + <2><8686>: Abbrev Number: 7 (DW_TAG_enumerator) + <8687> DW_AT_name : (indirect string, offset: 0x83b0): SYS_rmdir + <868b> DW_AT_const_value : 97 + <2><868c>: Abbrev Number: 7 (DW_TAG_enumerator) + <868d> DW_AT_name : (indirect string, offset: 0x8786): SYS_umount2 + <8691> DW_AT_const_value : 98 + <2><8692>: Abbrev Number: 7 (DW_TAG_enumerator) + <8693> DW_AT_name : (indirect string, offset: 0x8a0f): SYS_unlink + <8697> DW_AT_const_value : 99 + <2><8698>: Abbrev Number: 7 (DW_TAG_enumerator) + <8699> DW_AT_name : (indirect string, offset: 0x856a): SYS_pthread_barrier_wait + <869d> DW_AT_const_value : 100 + <2><869e>: Abbrev Number: 7 (DW_TAG_enumerator) + <869f> DW_AT_name : (indirect string, offset: 0x8277): SYS_pthread_cancel + <86a3> DW_AT_const_value : 101 + <2><86a4>: Abbrev Number: 7 (DW_TAG_enumerator) + <86a5> DW_AT_name : (indirect string, offset: 0x8518): SYS_pthread_cond_broadcast + <86a9> DW_AT_const_value : 102 + <2><86aa>: Abbrev Number: 7 (DW_TAG_enumerator) + <86ab> DW_AT_name : (indirect string, offset: 0x8162): SYS_pthread_cond_signal + <86af> DW_AT_const_value : 103 + <2><86b0>: Abbrev Number: 7 (DW_TAG_enumerator) + <86b1> DW_AT_name : (indirect string, offset: 0x8829): SYS_pthread_cond_wait + <86b5> DW_AT_const_value : 104 + <2><86b6>: Abbrev Number: 7 (DW_TAG_enumerator) + <86b7> DW_AT_name : (indirect string, offset: 0x8246): SYS_nx_pthread_create + <86bb> DW_AT_const_value : 105 + <2><86bc>: Abbrev Number: 7 (DW_TAG_enumerator) + <86bd> DW_AT_name : (indirect string, offset: 0x80be): SYS_pthread_detach + <86c1> DW_AT_const_value : 106 + <2><86c2>: Abbrev Number: 7 (DW_TAG_enumerator) + <86c3> DW_AT_name : (indirect string, offset: 0x85da): SYS_nx_pthread_exit + <86c7> DW_AT_const_value : 107 + <2><86c8>: Abbrev Number: 7 (DW_TAG_enumerator) + <86c9> DW_AT_name : (indirect string, offset: 0x864d): SYS_pthread_getschedparam + <86cd> DW_AT_const_value : 108 + <2><86ce>: Abbrev Number: 7 (DW_TAG_enumerator) + <86cf> DW_AT_name : (indirect string, offset: 0x89bb): SYS_pthread_join + <86d3> DW_AT_const_value : 109 + <2><86d4>: Abbrev Number: 7 (DW_TAG_enumerator) + <86d5> DW_AT_name : (indirect string, offset: 0x810b): SYS_pthread_mutex_destroy + <86d9> DW_AT_const_value : 110 + <2><86da>: Abbrev Number: 7 (DW_TAG_enumerator) + <86db> DW_AT_name : (indirect string, offset: 0x876f): SYS_pthread_mutex_init + <86df> DW_AT_const_value : 111 + <2><86e0>: Abbrev Number: 7 (DW_TAG_enumerator) + <86e1> DW_AT_name : (indirect string, offset: 0x8720): SYS_pthread_mutex_timedlock + <86e5> DW_AT_const_value : 112 + <2><86e6>: Abbrev Number: 7 (DW_TAG_enumerator) + <86e7> DW_AT_name : (indirect string, offset: 0x803a): SYS_pthread_mutex_trylock + <86eb> DW_AT_const_value : 113 + <2><86ec>: Abbrev Number: 7 (DW_TAG_enumerator) + <86ed> DW_AT_name : (indirect string, offset: 0x8479): SYS_pthread_mutex_unlock + <86f1> DW_AT_const_value : 114 + <2><86f2>: Abbrev Number: 7 (DW_TAG_enumerator) + <86f3> DW_AT_name : (indirect string, offset: 0x8855): SYS_pthread_mutex_consistent + <86f7> DW_AT_const_value : 115 + <2><86f8>: Abbrev Number: 7 (DW_TAG_enumerator) + <86f9> DW_AT_name : (indirect string, offset: 0x81da): SYS_pthread_setschedparam + <86fd> DW_AT_const_value : 116 + <2><86fe>: Abbrev Number: 7 (DW_TAG_enumerator) + <86ff> DW_AT_name : (indirect string, offset: 0x821e): SYS_pthread_setschedprio + <8703> DW_AT_const_value : 117 + <2><8704>: Abbrev Number: 7 (DW_TAG_enumerator) + <8705> DW_AT_name : (indirect string, offset: 0x8802): SYS_pthread_cond_clockwait + <8709> DW_AT_const_value : 118 + <2><870a>: Abbrev Number: 7 (DW_TAG_enumerator) + <870b> DW_AT_name : (indirect string, offset: 0x8892): SYS_pthread_sigmask + <870f> DW_AT_const_value : 119 + <2><8710>: Abbrev Number: 7 (DW_TAG_enumerator) + <8711> DW_AT_name : (indirect string, offset: 0x8344): SYS_mq_close + <8715> DW_AT_const_value : 120 + <2><8716>: Abbrev Number: 7 (DW_TAG_enumerator) + <8717> DW_AT_name : (indirect string, offset: 0x8237): SYS_mq_getattr + <871b> DW_AT_const_value : 121 + <2><871c>: Abbrev Number: 7 (DW_TAG_enumerator) + <871d> DW_AT_name : (indirect string, offset: 0x8433): SYS_mq_notify + <8721> DW_AT_const_value : 122 + <2><8722>: Abbrev Number: 7 (DW_TAG_enumerator) + <8723> DW_AT_name : (indirect string, offset: 0x881d): SYS_mq_open + <8727> DW_AT_const_value : 123 + <2><8728>: Abbrev Number: 7 (DW_TAG_enumerator) + <8729> DW_AT_name : (indirect string, offset: 0x82cd): SYS_mq_receive + <872d> DW_AT_const_value : 124 + <2><872e>: Abbrev Number: 7 (DW_TAG_enumerator) + <872f> DW_AT_name : (indirect string, offset: 0x855e): SYS_mq_send + <8733> DW_AT_const_value : 125 + <2><8734>: Abbrev Number: 7 (DW_TAG_enumerator) + <8735> DW_AT_name : (indirect string, offset: 0x8678): SYS_mq_setattr + <8739> DW_AT_const_value : 126 + <2><873a>: Abbrev Number: 7 (DW_TAG_enumerator) + <873b> DW_AT_name : (indirect string, offset: 0x85bb): SYS_mq_timedreceive + <873f> DW_AT_const_value : 127 + <2><8740>: Abbrev Number: 7 (DW_TAG_enumerator) + <8741> DW_AT_name : (indirect string, offset: 0x80ad): SYS_mq_timedsend + <8745> DW_AT_const_value : 128 + <2><8746>: Abbrev Number: 7 (DW_TAG_enumerator) + <8747> DW_AT_name : (indirect string, offset: 0x838f): SYS_mq_unlink + <874b> DW_AT_const_value : 129 + <2><874c>: Abbrev Number: 7 (DW_TAG_enumerator) + <874d> DW_AT_name : (indirect string, offset: 0x870c): SYS_get_environ_ptr + <8751> DW_AT_const_value : 130 + <2><8752>: Abbrev Number: 7 (DW_TAG_enumerator) + <8753> DW_AT_name : (indirect string, offset: 0x8762): SYS_clearenv + <8757> DW_AT_const_value : 131 + <2><8758>: Abbrev Number: 7 (DW_TAG_enumerator) + <8759> DW_AT_name : (indirect string, offset: 0x89d5): SYS_getenv + <875d> DW_AT_const_value : 132 + <2><875e>: Abbrev Number: 7 (DW_TAG_enumerator) + <875f> DW_AT_name : (indirect string, offset: 0x8089): SYS_putenv + <8763> DW_AT_const_value : 133 + <2><8764>: Abbrev Number: 7 (DW_TAG_enumerator) + <8765> DW_AT_name : (indirect string, offset: 0x8626): SYS_setenv + <8769> DW_AT_const_value : 134 + <2><876a>: Abbrev Number: 7 (DW_TAG_enumerator) + <876b> DW_AT_name : (indirect string, offset: 0x82ab): SYS_unsetenv + <876f> DW_AT_const_value : 135 + <2><8770>: Abbrev Number: 7 (DW_TAG_enumerator) + <8771> DW_AT_name : (indirect string, offset: 0x89e0): SYS_getrandom + <8775> DW_AT_const_value : 136 + <2><8776>: Abbrev Number: 7 (DW_TAG_enumerator) + <8777> DW_AT_name : (indirect string, offset: 0x81a7): SYS_nanosleep + <877b> DW_AT_const_value : 137 + <2><877c>: Abbrev Number: 7 (DW_TAG_enumerator) + <877d> DW_AT_name : (indirect string, offset: 0x8968): SYS_epoll_create1 + <8781> DW_AT_const_value : 138 + <2><8782>: Abbrev Number: 7 (DW_TAG_enumerator) + <8783> DW_AT_name : (indirect string, offset: 0x80db): SYS_epoll_ctl + <8787> DW_AT_const_value : 139 + <2><8788>: Abbrev Number: 7 (DW_TAG_enumerator) + <8789> DW_AT_name : (indirect string, offset: 0x84da): SYS_epoll_wait + <878d> DW_AT_const_value : 140 + <2><878e>: Abbrev Number: 7 (DW_TAG_enumerator) + <878f> DW_AT_name : (indirect string, offset: 0x8748): SYS_time + <8793> DW_AT_const_value : 141 + <2><8794>: Abbrev Number: 7 (DW_TAG_enumerator) + <8795> DW_AT_name : (indirect string, offset: 0x8751): SYS_gettimeofday + <8799> DW_AT_const_value : 142 + <2><879a>: Abbrev Number: 7 (DW_TAG_enumerator) + <879b> DW_AT_name : (indirect string, offset: 0x8667): SYS_settimeofday + <879f> DW_AT_const_value : 143 + <2><87a0>: Abbrev Number: 7 (DW_TAG_enumerator) + <87a1> DW_AT_name : (indirect string, offset: 0x825c): SYS_signal + <87a5> DW_AT_const_value : 144 + <2><87a6>: Abbrev Number: 7 (DW_TAG_enumerator) + <87a7> DW_AT_name : (indirect string, offset: 0x83eb): SYS_maxsyscall + <87ab> DW_AT_const_value : 145 + <2><87ac>: Abbrev Number: 0 + <1><87ad>: Abbrev Number: 8 (DW_TAG_subprogram) + <87ae> DW_AT_external : 1 + <87ae> DW_AT_name : (indirect string, offset: 0x8351): nx_pthread_exit + <87b2> DW_AT_decl_file : 7 + <87b3> DW_AT_decl_line : 164 + <87b4> DW_AT_decl_column : 6 + <87b5> DW_AT_prototyped : 1 + <87b5> DW_AT_noreturn : 1 + <87b5> DW_AT_low_pc : 0xdac + <87bd> DW_AT_high_pc : 0xe + <87c5> DW_AT_frame_base : 1 byte block: 9c (DW_OP_call_frame_cfa) + <87c7> DW_AT_GNU_all_call_sites: 1 + <87c7> DW_AT_sibling : <0x8815> + <2><87cb>: Abbrev Number: 9 (DW_TAG_formal_parameter) + <87cc> DW_AT_name : (indirect string, offset: 0x8701): parm1 + <87d0> DW_AT_decl_file : 1 + <87d1> DW_AT_decl_line : 9 + <87d2> DW_AT_decl_column : 37 + <87d3> DW_AT_type : <0x8441> + <87d7> DW_AT_location : 0x31a0 (location list) + <2><87db>: Abbrev Number: 10 (DW_TAG_inlined_subroutine) + <87dc> DW_AT_abstract_origin: <0x8815> + <87e0> DW_AT_low_pc : 0xdae + <87e8> DW_AT_high_pc : 0xa + <87f0> DW_AT_call_file : 1 + <87f1> DW_AT_call_line : 11 + <87f2> DW_AT_call_column : 3 + <3><87f3>: Abbrev Number: 11 (DW_TAG_formal_parameter) + <87f4> DW_AT_abstract_origin: <0x8822> + <87f8> DW_AT_location : 0x31d6 (location list) + <3><87fc>: Abbrev Number: 11 (DW_TAG_formal_parameter) + <87fd> DW_AT_abstract_origin: <0x882e> + <8801> DW_AT_location : 0x31fb (location list) + <3><8805>: Abbrev Number: 12 (DW_TAG_variable) + <8806> DW_AT_abstract_origin: <0x883a> + <880a> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <3><880c>: Abbrev Number: 12 (DW_TAG_variable) + <880d> DW_AT_abstract_origin: <0x8845> + <8811> DW_AT_location : 1 byte block: 5b (DW_OP_reg11 (a1)) + <3><8813>: Abbrev Number: 0 + <2><8814>: Abbrev Number: 0 + <1><8815>: Abbrev Number: 13 (DW_TAG_subprogram) + <8816> DW_AT_name : (indirect string, offset: 0x82b8): sys_call1 + <881a> DW_AT_decl_file : 2 + <881b> DW_AT_decl_line : 197 + <881c> DW_AT_decl_column : 25 + <881d> DW_AT_prototyped : 1 + <881d> DW_AT_type : <0x842c> + <8821> DW_AT_inline : 3 (declared as inline and inlined) + <2><8822>: Abbrev Number: 14 (DW_TAG_formal_parameter) + <8823> DW_AT_name : nbr + <8827> DW_AT_decl_file : 2 + <8828> DW_AT_decl_line : 197 + <8829> DW_AT_decl_column : 48 + <882a> DW_AT_type : <0x8404> + <2><882e>: Abbrev Number: 15 (DW_TAG_formal_parameter) + <882f> DW_AT_name : (indirect string, offset: 0x8701): parm1 + <8833> DW_AT_decl_file : 2 + <8834> DW_AT_decl_line : 197 + <8835> DW_AT_decl_column : 63 + <8836> DW_AT_type : <0x842c> + <2><883a>: Abbrev Number: 16 (DW_TAG_variable) + <883b> DW_AT_name : r0 + <883e> DW_AT_decl_file : 2 + <883f> DW_AT_decl_line : 199 + <8840> DW_AT_decl_column : 17 + <8841> DW_AT_type : <0x840b> + <2><8845>: Abbrev Number: 16 (DW_TAG_variable) + <8846> DW_AT_name : r1 + <8849> DW_AT_decl_file : 2 + <884a> DW_AT_decl_line : 200 + <884b> DW_AT_decl_column : 17 + <884c> DW_AT_type : <0x840b> + <2><8850>: Abbrev Number: 0 + <1><8851>: Abbrev Number: 0 + Compilation Unit @ offset 0x8852: + Length: 0x642 (32-bit) + Version: 4 + Abbrev Offset: 0x28c1 + Pointer Size: 8 + <0><885d>: Abbrev Number: 1 (DW_TAG_compile_unit) + <885e> DW_AT_producer : (indirect string, offset: 0x931e): GNU C17 10.2.0 -mcmodel=medany -march=rv64imafdc -mabi=lp64d -march=rv64imafdc -g -Os -fno-common -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections + <8862> DW_AT_language : 12 (ANSI C99) + <8863> DW_AT_name : (indirect string, offset: 0x9209): proxies/PROXY_nxsem_clockwait.c + <8867> DW_AT_comp_dir : (indirect string, offset: 0x914c): /Users/Luppy/ox64/nuttx/syscall + <886b> DW_AT_ranges : 0x890 + <886f> DW_AT_low_pc : 0x0 + <8877> DW_AT_stmt_list : 0x4a44 + <1><887b>: Abbrev Number: 2 (DW_TAG_base_type) + <887c> DW_AT_byte_size : 1 + <887d> DW_AT_encoding : 6 (signed char) + <887e> DW_AT_name : (indirect string, offset: 0x8bd9): signed char + <1><8882>: Abbrev Number: 3 (DW_TAG_typedef) + <8883> DW_AT_name : (indirect string, offset: 0x910b): _uint8_t + <8887> DW_AT_decl_file : 3 + <8888> DW_AT_decl_line : 52 + <8889> DW_AT_decl_column : 28 + <888a> DW_AT_type : <0x888e> + <1><888e>: Abbrev Number: 2 (DW_TAG_base_type) + <888f> DW_AT_byte_size : 1 + <8890> DW_AT_encoding : 8 (unsigned char) + <8891> DW_AT_name : (indirect string, offset: 0x905c): unsigned char + <1><8895>: Abbrev Number: 3 (DW_TAG_typedef) + <8896> DW_AT_name : (indirect string, offset: 0x9461): _int16_t + <889a> DW_AT_decl_file : 3 + <889b> DW_AT_decl_line : 54 + <889c> DW_AT_decl_column : 28 + <889d> DW_AT_type : <0x88a1> + <1><88a1>: Abbrev Number: 2 (DW_TAG_base_type) + <88a2> DW_AT_byte_size : 2 + <88a3> DW_AT_encoding : 5 (signed) + <88a4> DW_AT_name : (indirect string, offset: 0x9099): short int + <1><88a8>: Abbrev Number: 2 (DW_TAG_base_type) + <88a9> DW_AT_byte_size : 2 + <88aa> DW_AT_encoding : 7 (unsigned) + <88ab> DW_AT_name : (indirect string, offset: 0x8e1e): short unsigned int + <1><88af>: Abbrev Number: 4 (DW_TAG_base_type) + <88b0> DW_AT_byte_size : 4 + <88b1> DW_AT_encoding : 5 (signed) + <88b2> DW_AT_name : int + <1><88b6>: Abbrev Number: 3 (DW_TAG_typedef) + <88b7> DW_AT_name : (indirect string, offset: 0x8ab6): _uint32_t + <88bb> DW_AT_decl_file : 3 + <88bc> DW_AT_decl_line : 59 + <88bd> DW_AT_decl_column : 28 + <88be> DW_AT_type : <0x88c2> + <1><88c2>: Abbrev Number: 2 (DW_TAG_base_type) + <88c3> DW_AT_byte_size : 4 + <88c4> DW_AT_encoding : 7 (unsigned) + <88c5> DW_AT_name : (indirect string, offset: 0x8d9c): unsigned int + <1><88c9>: Abbrev Number: 2 (DW_TAG_base_type) + <88ca> DW_AT_byte_size : 8 + <88cb> DW_AT_encoding : 5 (signed) + <88cc> DW_AT_name : (indirect string, offset: 0x8c50): long int + <1><88d0>: Abbrev Number: 2 (DW_TAG_base_type) + <88d1> DW_AT_byte_size : 8 + <88d2> DW_AT_encoding : 7 (unsigned) + <88d3> DW_AT_name : (indirect string, offset: 0x8dc4): long unsigned int + <1><88d7>: Abbrev Number: 3 (DW_TAG_typedef) + <88d8> DW_AT_name : (indirect string, offset: 0x8ed6): _size_t + <88dc> DW_AT_decl_file : 3 + <88dd> DW_AT_decl_line : 93 + <88de> DW_AT_decl_column : 28 + <88df> DW_AT_type : <0x88d0> + <1><88e3>: Abbrev Number: 2 (DW_TAG_base_type) + <88e4> DW_AT_byte_size : 8 + <88e5> DW_AT_encoding : 7 (unsigned) + <88e6> DW_AT_name : (indirect string, offset: 0x8b38): long long unsigned int + <1><88ea>: Abbrev Number: 3 (DW_TAG_typedef) + <88eb> DW_AT_name : (indirect string, offset: 0x93ce): uint8_t + <88ef> DW_AT_decl_file : 4 + <88f0> DW_AT_decl_line : 166 + <88f1> DW_AT_decl_column : 29 + <88f2> DW_AT_type : <0x8882> + <1><88f6>: Abbrev Number: 3 (DW_TAG_typedef) + <88f7> DW_AT_name : (indirect string, offset: 0x8bc8): int16_t + <88fb> DW_AT_decl_file : 4 + <88fc> DW_AT_decl_line : 168 + <88fd> DW_AT_decl_column : 29 + <88fe> DW_AT_type : <0x8895> + <1><8902>: Abbrev Number: 5 (DW_TAG_volatile_type) + <8903> DW_AT_type : <0x88f6> + <1><8907>: Abbrev Number: 3 (DW_TAG_typedef) + <8908> DW_AT_name : (indirect string, offset: 0x9129): uint32_t + <890c> DW_AT_decl_file : 4 + <890d> DW_AT_decl_line : 177 + <890e> DW_AT_decl_column : 29 + <890f> DW_AT_type : <0x88b6> + <1><8913>: Abbrev Number: 3 (DW_TAG_typedef) + <8914> DW_AT_name : (indirect string, offset: 0x8a88): uintptr_t + <8918> DW_AT_decl_file : 4 + <8919> DW_AT_decl_line : 239 + <891a> DW_AT_decl_column : 29 + <891b> DW_AT_type : <0x88d7> + <1><891f>: Abbrev Number: 3 (DW_TAG_typedef) + <8920> DW_AT_name : (indirect string, offset: 0x9000): time_t + <8924> DW_AT_decl_file : 5 + <8925> DW_AT_decl_line : 255 + <8926> DW_AT_decl_column : 22 + <8927> DW_AT_type : <0x8907> + <1><892b>: Abbrev Number: 6 (DW_TAG_typedef) + <892c> DW_AT_name : (indirect string, offset: 0x944e): clockid_t + <8930> DW_AT_decl_file : 5 + <8931> DW_AT_decl_line : 257 + <8933> DW_AT_decl_column : 22 + <8934> DW_AT_type : <0x88af> + <1><8938>: Abbrev Number: 2 (DW_TAG_base_type) + <8939> DW_AT_byte_size : 1 + <893a> DW_AT_encoding : 8 (unsigned char) + <893b> DW_AT_name : (indirect string, offset: 0x917e): char + <1><893f>: Abbrev Number: 7 (DW_TAG_structure_type) + <8940> DW_AT_name : (indirect string, offset: 0x90ac): timespec + <8944> DW_AT_byte_size : 16 + <8945> DW_AT_decl_file : 6 + <8946> DW_AT_decl_line : 113 + <8947> DW_AT_decl_column : 8 + <8948> DW_AT_sibling : <0x8967> + <2><894c>: Abbrev Number: 8 (DW_TAG_member) + <894d> DW_AT_name : (indirect string, offset: 0x8f81): tv_sec + <8951> DW_AT_decl_file : 6 + <8952> DW_AT_decl_line : 115 + <8953> DW_AT_decl_column : 10 + <8954> DW_AT_type : <0x891f> + <8958> DW_AT_data_member_location: 0 + <2><8959>: Abbrev Number: 8 (DW_TAG_member) + <895a> DW_AT_name : (indirect string, offset: 0x8f60): tv_nsec + <895e> DW_AT_decl_file : 6 + <895f> DW_AT_decl_line : 116 + <8960> DW_AT_decl_column : 10 + <8961> DW_AT_type : <0x88c9> + <8965> DW_AT_data_member_location: 8 + <2><8966>: Abbrev Number: 0 + <1><8967>: Abbrev Number: 9 (DW_TAG_const_type) + <8968> DW_AT_type : <0x893f> + <1><896c>: Abbrev Number: 10 (DW_TAG_structure_type) + <896d> DW_AT_name : (indirect string, offset: 0x93e7): dq_entry_s + <8971> DW_AT_byte_size : 16 + <8972> DW_AT_decl_file : 7 + <8973> DW_AT_decl_line : 303 + <8975> DW_AT_decl_column : 8 + <8976> DW_AT_sibling : <0x8997> + <2><897a>: Abbrev Number: 11 (DW_TAG_member) + <897b> DW_AT_name : (indirect string, offset: 0x8de6): flink + <897f> DW_AT_decl_file : 7 + <8980> DW_AT_decl_line : 305 + <8982> DW_AT_decl_column : 26 + <8983> DW_AT_type : <0x8997> + <8987> DW_AT_data_member_location: 0 + <2><8988>: Abbrev Number: 11 (DW_TAG_member) + <8989> DW_AT_name : (indirect string, offset: 0x92b1): blink + <898d> DW_AT_decl_file : 7 + <898e> DW_AT_decl_line : 306 + <8990> DW_AT_decl_column : 26 + <8991> DW_AT_type : <0x8997> + <8995> DW_AT_data_member_location: 8 + <2><8996>: Abbrev Number: 0 + <1><8997>: Abbrev Number: 12 (DW_TAG_pointer_type) + <8998> DW_AT_byte_size : 8 + <8999> DW_AT_type : <0x896c> + <1><899d>: Abbrev Number: 6 (DW_TAG_typedef) + <899e> DW_AT_name : (indirect string, offset: 0x93f2): dq_entry_t + <89a2> DW_AT_decl_file : 7 + <89a3> DW_AT_decl_line : 308 + <89a5> DW_AT_decl_column : 27 + <89a6> DW_AT_type : <0x896c> + <1><89aa>: Abbrev Number: 10 (DW_TAG_structure_type) + <89ab> DW_AT_name : (indirect string, offset: 0x90be): dq_queue_s + <89af> DW_AT_byte_size : 16 + <89b0> DW_AT_decl_file : 7 + <89b1> DW_AT_decl_line : 317 + <89b3> DW_AT_decl_column : 8 + <89b4> DW_AT_sibling : <0x89d5> + <2><89b8>: Abbrev Number: 11 (DW_TAG_member) + <89b9> DW_AT_name : (indirect string, offset: 0x9114): head + <89bd> DW_AT_decl_file : 7 + <89be> DW_AT_decl_line : 319 + <89c0> DW_AT_decl_column : 19 + <89c1> DW_AT_type : <0x89d5> + <89c5> DW_AT_data_member_location: 0 + <2><89c6>: Abbrev Number: 11 (DW_TAG_member) + <89c7> DW_AT_name : (indirect string, offset: 0x8f5b): tail + <89cb> DW_AT_decl_file : 7 + <89cc> DW_AT_decl_line : 320 + <89ce> DW_AT_decl_column : 19 + <89cf> DW_AT_type : <0x89d5> + <89d3> DW_AT_data_member_location: 8 + <2><89d4>: Abbrev Number: 0 + <1><89d5>: Abbrev Number: 12 (DW_TAG_pointer_type) + <89d6> DW_AT_byte_size : 8 + <89d7> DW_AT_type : <0x899d> + <1><89db>: Abbrev Number: 6 (DW_TAG_typedef) + <89dc> DW_AT_name : (indirect string, offset: 0x90c9): dq_queue_t + <89e0> DW_AT_decl_file : 7 + <89e1> DW_AT_decl_line : 322 + <89e3> DW_AT_decl_column : 27 + <89e4> DW_AT_type : <0x89aa> + <1><89e8>: Abbrev Number: 7 (DW_TAG_structure_type) + <89e9> DW_AT_name : (indirect string, offset: 0x9420): sem_s + <89ed> DW_AT_byte_size : 24 + <89ee> DW_AT_decl_file : 8 + <89ef> DW_AT_decl_line : 99 + <89f0> DW_AT_decl_column : 8 + <89f1> DW_AT_sibling : <0x8a1d> + <2><89f5>: Abbrev Number: 8 (DW_TAG_member) + <89f6> DW_AT_name : (indirect string, offset: 0x8e6c): semcount + <89fa> DW_AT_decl_file : 8 + <89fb> DW_AT_decl_line : 101 + <89fc> DW_AT_decl_column : 20 + <89fd> DW_AT_type : <0x8902> + <8a01> DW_AT_data_member_location: 0 + <2><8a02>: Abbrev Number: 8 (DW_TAG_member) + <8a03> DW_AT_name : (indirect string, offset: 0x93d6): flags + <8a07> DW_AT_decl_file : 8 + <8a08> DW_AT_decl_line : 108 + <8a09> DW_AT_decl_column : 11 + <8a0a> DW_AT_type : <0x88ea> + <8a0e> DW_AT_data_member_location: 2 + <2><8a0f>: Abbrev Number: 8 (DW_TAG_member) + <8a10> DW_AT_name : (indirect string, offset: 0x8c66): waitlist + <8a14> DW_AT_decl_file : 8 + <8a15> DW_AT_decl_line : 110 + <8a16> DW_AT_decl_column : 14 + <8a17> DW_AT_type : <0x89db> + <8a1b> DW_AT_data_member_location: 8 + <2><8a1c>: Abbrev Number: 0 + <1><8a1d>: Abbrev Number: 3 (DW_TAG_typedef) + <8a1e> DW_AT_name : (indirect string, offset: 0x9426): sem_t + <8a22> DW_AT_decl_file : 8 + <8a23> DW_AT_decl_line : 121 + <8a24> DW_AT_decl_column : 22 + <8a25> DW_AT_type : <0x89e8> + <1><8a29>: Abbrev Number: 13 (DW_TAG_enumeration_type) + <8a2a> DW_AT_encoding : 7 (unsigned) + <8a2b> DW_AT_byte_size : 4 + <8a2c> DW_AT_type : <0x88c2> + <8a30> DW_AT_decl_file : 9 + <8a31> DW_AT_decl_line : 57 + <8a32> DW_AT_decl_column : 1 + <8a33> DW_AT_sibling : <0x8d74> + <2><8a37>: Abbrev Number: 14 (DW_TAG_enumerator) + <8a38> DW_AT_name : (indirect string, offset: 0x8f68): SYS__exit + <8a3c> DW_AT_const_value : 8 + <2><8a3d>: Abbrev Number: 14 (DW_TAG_enumerator) + <8a3e> DW_AT_name : (indirect string, offset: 0x8fe9): SYS__assert + <8a42> DW_AT_const_value : 9 + <2><8a43>: Abbrev Number: 14 (DW_TAG_enumerator) + <8a44> DW_AT_name : (indirect string, offset: 0x8d6b): SYS_getpid + <8a48> DW_AT_const_value : 10 + <2><8a49>: Abbrev Number: 14 (DW_TAG_enumerator) + <8a4a> DW_AT_name : (indirect string, offset: 0x93dc): SYS_gettid + <8a4e> DW_AT_const_value : 11 + <2><8a4f>: Abbrev Number: 14 (DW_TAG_enumerator) + <8a50> DW_AT_name : (indirect string, offset: 0x949a): SYS_prctl + <8a54> DW_AT_const_value : 12 + <2><8a55>: Abbrev Number: 14 (DW_TAG_enumerator) + <8a56> DW_AT_name : (indirect string, offset: 0x8b93): SYS_sched_getparam + <8a5a> DW_AT_const_value : 13 + <2><8a5b>: Abbrev Number: 14 (DW_TAG_enumerator) + <8a5c> DW_AT_name : (indirect string, offset: 0x9483): SYS_sched_getscheduler + <8a60> DW_AT_const_value : 14 + <2><8a61>: Abbrev Number: 14 (DW_TAG_enumerator) + <8a62> DW_AT_name : (indirect string, offset: 0x8f88): SYS_sched_lock + <8a66> DW_AT_const_value : 15 + <2><8a67>: Abbrev Number: 14 (DW_TAG_enumerator) + <8a68> DW_AT_name : (indirect string, offset: 0x92ea): SYS_sched_lockcount + <8a6c> DW_AT_const_value : 16 + <2><8a6d>: Abbrev Number: 14 (DW_TAG_enumerator) + <8a6e> DW_AT_name : (indirect string, offset: 0x923c): SYS_sched_rr_get_interval + <8a72> DW_AT_const_value : 17 + <2><8a73>: Abbrev Number: 14 (DW_TAG_enumerator) + <8a74> DW_AT_name : (indirect string, offset: 0x9229): SYS_sched_setparam + <8a78> DW_AT_const_value : 18 + <2><8a79>: Abbrev Number: 14 (DW_TAG_enumerator) + <8a7a> DW_AT_name : (indirect string, offset: 0x8eec): SYS_sched_setscheduler + <8a7e> DW_AT_const_value : 19 + <2><8a7f>: Abbrev Number: 14 (DW_TAG_enumerator) + <8a80> DW_AT_name : (indirect string, offset: 0x942c): SYS_sched_unlock + <8a84> DW_AT_const_value : 20 + <2><8a85>: Abbrev Number: 14 (DW_TAG_enumerator) + <8a86> DW_AT_name : (indirect string, offset: 0x8dd6): SYS_sched_yield + <8a8a> DW_AT_const_value : 21 + <2><8a8b>: Abbrev Number: 14 (DW_TAG_enumerator) + <8a8c> DW_AT_name : (indirect string, offset: 0x9132): SYS_nxsched_get_stackinfo + <8a90> DW_AT_const_value : 22 + <2><8a91>: Abbrev Number: 14 (DW_TAG_enumerator) + <8a92> DW_AT_name : (indirect string, offset: 0x8fab): SYS_sysinfo + <8a96> DW_AT_const_value : 23 + <2><8a97>: Abbrev Number: 14 (DW_TAG_enumerator) + <8a98> DW_AT_name : (indirect string, offset: 0x9119): SYS_gethostname + <8a9c> DW_AT_const_value : 24 + <2><8a9d>: Abbrev Number: 14 (DW_TAG_enumerator) + <8a9e> DW_AT_name : (indirect string, offset: 0x8d80): SYS_sethostname + <8aa2> DW_AT_const_value : 25 + <2><8aa3>: Abbrev Number: 14 (DW_TAG_enumerator) + <8aa4> DW_AT_name : (indirect string, offset: 0x8dfe): SYS_nxsem_destroy + <8aa8> DW_AT_const_value : 26 + <2><8aa9>: Abbrev Number: 14 (DW_TAG_enumerator) + <8aaa> DW_AT_name : (indirect string, offset: 0x901a): SYS_nxsem_post + <8aae> DW_AT_const_value : 27 + <2><8aaf>: Abbrev Number: 14 (DW_TAG_enumerator) + <8ab0> DW_AT_name : (indirect string, offset: 0x8c32): SYS_nxsem_clockwait + <8ab4> DW_AT_const_value : 28 + <2><8ab5>: Abbrev Number: 14 (DW_TAG_enumerator) + <8ab6> DW_AT_name : (indirect string, offset: 0x8e8e): SYS_nxsem_timedwait + <8aba> DW_AT_const_value : 29 + <2><8abb>: Abbrev Number: 14 (DW_TAG_enumerator) + <8abc> DW_AT_name : (indirect string, offset: 0x8f29): SYS_nxsem_trywait + <8ac0> DW_AT_const_value : 30 + <2><8ac1>: Abbrev Number: 14 (DW_TAG_enumerator) + <8ac2> DW_AT_name : (indirect string, offset: 0x8acb): SYS_nxsem_wait + <8ac6> DW_AT_const_value : 31 + <2><8ac7>: Abbrev Number: 14 (DW_TAG_enumerator) + <8ac8> DW_AT_name : (indirect string, offset: 0x92fe): SYS_pgalloc + <8acc> DW_AT_const_value : 32 + <2><8acd>: Abbrev Number: 14 (DW_TAG_enumerator) + <8ace> DW_AT_name : (indirect string, offset: 0x90ff): SYS_up_fork + <8ad2> DW_AT_const_value : 33 + <2><8ad3>: Abbrev Number: 14 (DW_TAG_enumerator) + <8ad4> DW_AT_name : (indirect string, offset: 0x91b3): SYS_waitpid + <8ad8> DW_AT_const_value : 34 + <2><8ad9>: Abbrev Number: 14 (DW_TAG_enumerator) + <8ada> DW_AT_name : (indirect string, offset: 0x8b83): SYS_posix_spawn + <8ade> DW_AT_const_value : 35 + <2><8adf>: Abbrev Number: 14 (DW_TAG_enumerator) + <8ae0> DW_AT_name : (indirect string, offset: 0x90f4): SYS_execve + <8ae4> DW_AT_const_value : 36 + <2><8ae5>: Abbrev Number: 14 (DW_TAG_enumerator) + <8ae6> DW_AT_name : (indirect string, offset: 0x9085): SYS_kill + <8aea> DW_AT_const_value : 37 + <2><8aeb>: Abbrev Number: 14 (DW_TAG_enumerator) + <8aec> DW_AT_name : (indirect string, offset: 0x8a39): SYS_tgkill + <8af0> DW_AT_const_value : 38 + <2><8af1>: Abbrev Number: 14 (DW_TAG_enumerator) + <8af2> DW_AT_name : (indirect string, offset: 0x8da9): SYS_sigaction + <8af6> DW_AT_const_value : 39 + <2><8af7>: Abbrev Number: 14 (DW_TAG_enumerator) + <8af8> DW_AT_name : (indirect string, offset: 0x906a): SYS_sigpending + <8afc> DW_AT_const_value : 40 + <2><8afd>: Abbrev Number: 14 (DW_TAG_enumerator) + <8afe> DW_AT_name : (indirect string, offset: 0x8cb8): SYS_sigprocmask + <8b02> DW_AT_const_value : 41 + <2><8b03>: Abbrev Number: 14 (DW_TAG_enumerator) + <8b04> DW_AT_name : (indirect string, offset: 0x92c0): SYS_sigqueue + <8b08> DW_AT_const_value : 42 + <2><8b09>: Abbrev Number: 14 (DW_TAG_enumerator) + <8b0a> DW_AT_name : (indirect string, offset: 0x8f4c): SYS_sigsuspend + <8b0e> DW_AT_const_value : 43 + <2><8b0f>: Abbrev Number: 14 (DW_TAG_enumerator) + <8b10> DW_AT_name : (indirect string, offset: 0x8bfd): SYS_sigtimedwait + <8b14> DW_AT_const_value : 44 + <2><8b15>: Abbrev Number: 14 (DW_TAG_enumerator) + <8b16> DW_AT_name : (indirect string, offset: 0x8b73): SYS_sigwaitinfo + <8b1a> DW_AT_const_value : 45 + <2><8b1b>: Abbrev Number: 14 (DW_TAG_enumerator) + <8b1c> DW_AT_name : (indirect string, offset: 0x8f97): SYS_clock_nanosleep + <8b20> DW_AT_const_value : 46 + <2><8b21>: Abbrev Number: 14 (DW_TAG_enumerator) + <8b22> DW_AT_name : (indirect string, offset: 0x8b15): SYS_clock + <8b26> DW_AT_const_value : 47 + <2><8b27>: Abbrev Number: 14 (DW_TAG_enumerator) + <8b28> DW_AT_name : (indirect string, offset: 0x926b): SYS_clock_gettime + <8b2c> DW_AT_const_value : 48 + <2><8b2d>: Abbrev Number: 14 (DW_TAG_enumerator) + <8b2e> DW_AT_name : (indirect string, offset: 0x8d4f): SYS_clock_settime + <8b32> DW_AT_const_value : 49 + <2><8b33>: Abbrev Number: 14 (DW_TAG_enumerator) + <8b34> DW_AT_name : (indirect string, offset: 0x8a5e): SYS_timer_create + <8b38> DW_AT_const_value : 50 + <2><8b39>: Abbrev Number: 14 (DW_TAG_enumerator) + <8b3a> DW_AT_name : (indirect string, offset: 0x8f3b): SYS_timer_delete + <8b3e> DW_AT_const_value : 51 + <2><8b3f>: Abbrev Number: 14 (DW_TAG_enumerator) + <8b40> DW_AT_name : (indirect string, offset: 0x8e4d): SYS_timer_getoverrun + <8b44> DW_AT_const_value : 52 + <2><8b45>: Abbrev Number: 14 (DW_TAG_enumerator) + <8b46> DW_AT_name : (indirect string, offset: 0x8d19): SYS_timer_gettime + <8b4a> DW_AT_const_value : 53 + <2><8b4b>: Abbrev Number: 14 (DW_TAG_enumerator) + <8b4c> DW_AT_name : (indirect string, offset: 0x8dec): SYS_timer_settime + <8b50> DW_AT_const_value : 54 + <2><8b51>: Abbrev Number: 14 (DW_TAG_enumerator) + <8b52> DW_AT_name : (indirect string, offset: 0x8ede): SYS_getitimer + <8b56> DW_AT_const_value : 55 + <2><8b57>: Abbrev Number: 14 (DW_TAG_enumerator) + <8b58> DW_AT_name : (indirect string, offset: 0x8cdb): SYS_setitimer + <8b5c> DW_AT_const_value : 56 + <2><8b5d>: Abbrev Number: 14 (DW_TAG_enumerator) + <8b5e> DW_AT_name : (indirect string, offset: 0x8ea2): SYS_nx_vsyslog + <8b62> DW_AT_const_value : 57 + <2><8b63>: Abbrev Number: 14 (DW_TAG_enumerator) + <8b64> DW_AT_name : (indirect string, offset: 0x8c0e): SYS_close + <8b68> DW_AT_const_value : 58 + <2><8b69>: Abbrev Number: 14 (DW_TAG_enumerator) + <8b6a> DW_AT_name : (indirect string, offset: 0x9416): SYS_ioctl + <8b6e> DW_AT_const_value : 59 + <2><8b6f>: Abbrev Number: 14 (DW_TAG_enumerator) + <8b70> DW_AT_name : (indirect string, offset: 0x8bd0): SYS_read + <8b74> DW_AT_const_value : 60 + <2><8b75>: Abbrev Number: 14 (DW_TAG_enumerator) + <8b76> DW_AT_name : (indirect string, offset: 0x8d61): SYS_write + <8b7a> DW_AT_const_value : 61 + <2><8b7b>: Abbrev Number: 14 (DW_TAG_enumerator) + <8b7c> DW_AT_name : (indirect string, offset: 0x8b69): SYS_pread + <8b80> DW_AT_const_value : 62 + <2><8b81>: Abbrev Number: 14 (DW_TAG_enumerator) + <8b82> DW_AT_name : (indirect string, offset: 0x8fd2): SYS_pwrite + <8b86> DW_AT_const_value : 63 + <2><8b87>: Abbrev Number: 14 (DW_TAG_enumerator) + <8b88> DW_AT_name : (indirect string, offset: 0x8a30): SYS_poll + <8b8c> DW_AT_const_value : 64 + <2><8b8d>: Abbrev Number: 14 (DW_TAG_enumerator) + <8b8e> DW_AT_name : (indirect string, offset: 0x8b2d): SYS_select + <8b92> DW_AT_const_value : 65 + <2><8b93>: Abbrev Number: 14 (DW_TAG_enumerator) + <8b94> DW_AT_name : (indirect string, offset: 0x8ada): SYS_ppoll + <8b98> DW_AT_const_value : 66 + <2><8b99>: Abbrev Number: 14 (DW_TAG_enumerator) + <8b9a> DW_AT_name : (indirect string, offset: 0x8eb1): SYS_pselect + <8b9e> DW_AT_const_value : 67 + <2><8b9f>: Abbrev Number: 14 (DW_TAG_enumerator) + <8ba0> DW_AT_name : (indirect string, offset: 0x8c59): SYS_boardctl + <8ba4> DW_AT_const_value : 68 + <2><8ba5>: Abbrev Number: 14 (DW_TAG_enumerator) + <8ba6> DW_AT_name : (indirect string, offset: 0x9012): SYS_dup + <8baa> DW_AT_const_value : 69 + <2><8bab>: Abbrev Number: 14 (DW_TAG_enumerator) + <8bac> DW_AT_name : (indirect string, offset: 0x90a3): SYS_dup2 + <8bb0> DW_AT_const_value : 70 + <2><8bb1>: Abbrev Number: 14 (DW_TAG_enumerator) + <8bb2> DW_AT_name : (indirect string, offset: 0x8bbe): SYS_fcntl + <8bb6> DW_AT_const_value : 71 + <2><8bb7>: Abbrev Number: 14 (DW_TAG_enumerator) + <8bb8> DW_AT_name : (indirect string, offset: 0x9408): SYS_ftruncate + <8bbc> DW_AT_const_value : 72 + <2><8bbd>: Abbrev Number: 14 (DW_TAG_enumerator) + <8bbe> DW_AT_name : (indirect string, offset: 0x8c46): SYS_lseek + <8bc2> DW_AT_const_value : 73 + <2><8bc3>: Abbrev Number: 14 (DW_TAG_enumerator) + <8bc4> DW_AT_name : (indirect string, offset: 0x8cf3): SYS_mmap + <8bc8> DW_AT_const_value : 74 + <2><8bc9>: Abbrev Number: 14 (DW_TAG_enumerator) + <8bca> DW_AT_name : (indirect string, offset: 0x92b7): SYS_open + <8bce> DW_AT_const_value : 75 + <2><8bcf>: Abbrev Number: 14 (DW_TAG_enumerator) + <8bd0> DW_AT_name : (indirect string, offset: 0x9007): SYS_rename + <8bd4> DW_AT_const_value : 76 + <2><8bd5>: Abbrev Number: 14 (DW_TAG_enumerator) + <8bd6> DW_AT_name : (indirect string, offset: 0x9458): SYS_stat + <8bda> DW_AT_const_value : 77 + <2><8bdb>: Abbrev Number: 14 (DW_TAG_enumerator) + <8bdc> DW_AT_name : (indirect string, offset: 0x9261): SYS_lstat + <8be0> DW_AT_const_value : 78 + <2><8be1>: Abbrev Number: 14 (DW_TAG_enumerator) + <8be2> DW_AT_name : (indirect string, offset: 0x8a92): SYS_fstat + <8be6> DW_AT_const_value : 79 + <2><8be7>: Abbrev Number: 14 (DW_TAG_enumerator) + <8be8> DW_AT_name : (indirect string, offset: 0x8ecb): SYS_statfs + <8bec> DW_AT_const_value : 80 + <2><8bed>: Abbrev Number: 14 (DW_TAG_enumerator) + <8bee> DW_AT_name : (indirect string, offset: 0x9079): SYS_fstatfs + <8bf2> DW_AT_const_value : 81 + <2><8bf3>: Abbrev Number: 14 (DW_TAG_enumerator) + <8bf4> DW_AT_name : (indirect string, offset: 0x927d): SYS_sendfile + <8bf8> DW_AT_const_value : 82 + <2><8bf9>: Abbrev Number: 14 (DW_TAG_enumerator) + <8bfa> DW_AT_name : (indirect string, offset: 0x90b5): SYS_sync + <8bfe> DW_AT_const_value : 83 + <2><8bff>: Abbrev Number: 14 (DW_TAG_enumerator) + <8c00> DW_AT_name : (indirect string, offset: 0x8d76): SYS_fsync + <8c04> DW_AT_const_value : 84 + <2><8c05>: Abbrev Number: 14 (DW_TAG_enumerator) + <8c06> DW_AT_name : (indirect string, offset: 0x8e84): SYS_chmod + <8c0a> DW_AT_const_value : 85 + <2><8c0b>: Abbrev Number: 14 (DW_TAG_enumerator) + <8c0c> DW_AT_name : (indirect string, offset: 0x93fd): SYS_lchmod + <8c10> DW_AT_const_value : 86 + <2><8c11>: Abbrev Number: 14 (DW_TAG_enumerator) + <8c12> DW_AT_name : (indirect string, offset: 0x8ff5): SYS_fchmod + <8c16> DW_AT_const_value : 87 + <2><8c17>: Abbrev Number: 14 (DW_TAG_enumerator) + <8c18> DW_AT_name : (indirect string, offset: 0x8bf3): SYS_chown + <8c1c> DW_AT_const_value : 88 + <2><8c1d>: Abbrev Number: 14 (DW_TAG_enumerator) + <8c1e> DW_AT_name : (indirect string, offset: 0x903d): SYS_lchown + <8c22> DW_AT_const_value : 89 + <2><8c23>: Abbrev Number: 14 (DW_TAG_enumerator) + <8c24> DW_AT_name : (indirect string, offset: 0x8d35): SYS_fchown + <8c28> DW_AT_const_value : 90 + <2><8c29>: Abbrev Number: 14 (DW_TAG_enumerator) + <8c2a> DW_AT_name : (indirect string, offset: 0x8d90): SYS_utimens + <8c2e> DW_AT_const_value : 91 + <2><8c2f>: Abbrev Number: 14 (DW_TAG_enumerator) + <8c30> DW_AT_name : (indirect string, offset: 0x8f1c): SYS_lutimens + <8c34> DW_AT_const_value : 92 + <2><8c35>: Abbrev Number: 14 (DW_TAG_enumerator) + <8c36> DW_AT_name : (indirect string, offset: 0x8ae4): SYS_futimens + <8c3a> DW_AT_const_value : 93 + <2><8c3b>: Abbrev Number: 14 (DW_TAG_enumerator) + <8c3c> DW_AT_name : (indirect string, offset: 0x9256): SYS_munmap + <8c40> DW_AT_const_value : 94 + <2><8c41>: Abbrev Number: 14 (DW_TAG_enumerator) + <8c42> DW_AT_name : (indirect string, offset: 0x8e62): SYS_mount + <8c46> DW_AT_const_value : 95 + <2><8c47>: Abbrev Number: 14 (DW_TAG_enumerator) + <8c48> DW_AT_name : (indirect string, offset: 0x8ce9): SYS_mkdir + <8c4c> DW_AT_const_value : 96 + <2><8c4d>: Abbrev Number: 14 (DW_TAG_enumerator) + <8c4e> DW_AT_name : (indirect string, offset: 0x8e43): SYS_rmdir + <8c52> DW_AT_const_value : 97 + <2><8c53>: Abbrev Number: 14 (DW_TAG_enumerator) + <8c54> DW_AT_name : (indirect string, offset: 0x91fd): SYS_umount2 + <8c58> DW_AT_const_value : 98 + <2><8c59>: Abbrev Number: 14 (DW_TAG_enumerator) + <8c5a> DW_AT_name : (indirect string, offset: 0x94a4): SYS_unlink + <8c5e> DW_AT_const_value : 99 + <2><8c5f>: Abbrev Number: 14 (DW_TAG_enumerator) + <8c60> DW_AT_name : (indirect string, offset: 0x8a6f): SYS_pthread_barrier_wait + <8c64> DW_AT_const_value : 100 + <2><8c65>: Abbrev Number: 14 (DW_TAG_enumerator) + <8c66> DW_AT_name : (indirect string, offset: 0x8cc8): SYS_pthread_cancel + <8c6a> DW_AT_const_value : 101 + <2><8c6b>: Abbrev Number: 14 (DW_TAG_enumerator) + <8c6c> DW_AT_name : (indirect string, offset: 0x8fb7): SYS_pthread_cond_broadcast + <8c70> DW_AT_const_value : 102 + <2><8c71>: Abbrev Number: 14 (DW_TAG_enumerator) + <8c72> DW_AT_name : (indirect string, offset: 0x8ba6): SYS_pthread_cond_signal + <8c76> DW_AT_const_value : 103 + <2><8c77>: Abbrev Number: 14 (DW_TAG_enumerator) + <8c78> DW_AT_name : (indirect string, offset: 0x8a1a): SYS_pthread_cond_wait + <8c7c> DW_AT_const_value : 104 + <2><8c7d>: Abbrev Number: 14 (DW_TAG_enumerator) + <8c7e> DW_AT_name : (indirect string, offset: 0x8c97): SYS_nx_pthread_create + <8c82> DW_AT_const_value : 105 + <2><8c83>: Abbrev Number: 14 (DW_TAG_enumerator) + <8c84> DW_AT_name : (indirect string, offset: 0x8b02): SYS_pthread_detach + <8c88> DW_AT_const_value : 106 + <2><8c89>: Abbrev Number: 14 (DW_TAG_enumerator) + <8c8a> DW_AT_name : (indirect string, offset: 0x9048): SYS_nx_pthread_exit + <8c8e> DW_AT_const_value : 107 + <2><8c8f>: Abbrev Number: 14 (DW_TAG_enumerator) + <8c90> DW_AT_name : (indirect string, offset: 0x8a9c): SYS_pthread_getschedparam + <8c94> DW_AT_const_value : 108 + <2><8c95>: Abbrev Number: 14 (DW_TAG_enumerator) + <8c96> DW_AT_name : (indirect string, offset: 0x943d): SYS_pthread_join + <8c9a> DW_AT_const_value : 109 + <2><8c9b>: Abbrev Number: 14 (DW_TAG_enumerator) + <8c9c> DW_AT_name : (indirect string, offset: 0x8b4f): SYS_pthread_mutex_destroy + <8ca0> DW_AT_const_value : 110 + <2><8ca1>: Abbrev Number: 14 (DW_TAG_enumerator) + <8ca2> DW_AT_name : (indirect string, offset: 0x91e6): SYS_pthread_mutex_init + <8ca6> DW_AT_const_value : 111 + <2><8ca7>: Abbrev Number: 14 (DW_TAG_enumerator) + <8ca8> DW_AT_name : (indirect string, offset: 0x9197): SYS_pthread_mutex_timedlock + <8cac> DW_AT_const_value : 112 + <2><8cad>: Abbrev Number: 14 (DW_TAG_enumerator) + <8cae> DW_AT_name : (indirect string, offset: 0x8a44): SYS_pthread_mutex_trylock + <8cb2> DW_AT_const_value : 113 + <2><8cb3>: Abbrev Number: 14 (DW_TAG_enumerator) + <8cb4> DW_AT_name : (indirect string, offset: 0x8f03): SYS_pthread_mutex_unlock + <8cb8> DW_AT_const_value : 114 + <2><8cb9>: Abbrev Number: 14 (DW_TAG_enumerator) + <8cba> DW_AT_name : (indirect string, offset: 0x92cd): SYS_pthread_mutex_consistent + <8cbe> DW_AT_const_value : 115 + <2><8cbf>: Abbrev Number: 14 (DW_TAG_enumerator) + <8cc0> DW_AT_name : (indirect string, offset: 0x8c18): SYS_pthread_setschedparam + <8cc4> DW_AT_const_value : 116 + <2><8cc5>: Abbrev Number: 14 (DW_TAG_enumerator) + <8cc6> DW_AT_name : (indirect string, offset: 0x8c6f): SYS_pthread_setschedprio + <8cca> DW_AT_const_value : 117 + <2><8ccb>: Abbrev Number: 14 (DW_TAG_enumerator) + <8ccc> DW_AT_name : (indirect string, offset: 0x928a): SYS_pthread_cond_clockwait + <8cd0> DW_AT_const_value : 118 + <2><8cd1>: Abbrev Number: 14 (DW_TAG_enumerator) + <8cd2> DW_AT_name : (indirect string, offset: 0x930a): SYS_pthread_sigmask + <8cd6> DW_AT_const_value : 119 + <2><8cd7>: Abbrev Number: 14 (DW_TAG_enumerator) + <8cd8> DW_AT_name : (indirect string, offset: 0x8db7): SYS_mq_close + <8cdc> DW_AT_const_value : 120 + <2><8cdd>: Abbrev Number: 14 (DW_TAG_enumerator) + <8cde> DW_AT_name : (indirect string, offset: 0x8c88): SYS_mq_getattr + <8ce2> DW_AT_const_value : 121 + <2><8ce3>: Abbrev Number: 14 (DW_TAG_enumerator) + <8ce4> DW_AT_name : (indirect string, offset: 0x8ebd): SYS_mq_notify + <8ce8> DW_AT_const_value : 122 + <2><8ce9>: Abbrev Number: 14 (DW_TAG_enumerator) + <8cea> DW_AT_name : (indirect string, offset: 0x92a5): SYS_mq_open + <8cee> DW_AT_const_value : 123 + <2><8cef>: Abbrev Number: 14 (DW_TAG_enumerator) + <8cf0> DW_AT_name : (indirect string, offset: 0x8d40): SYS_mq_receive + <8cf4> DW_AT_const_value : 124 + <2><8cf5>: Abbrev Number: 14 (DW_TAG_enumerator) + <8cf6> DW_AT_name : (indirect string, offset: 0x8fdd): SYS_mq_send + <8cfa> DW_AT_const_value : 125 + <2><8cfb>: Abbrev Number: 14 (DW_TAG_enumerator) + <8cfc> DW_AT_name : (indirect string, offset: 0x90e5): SYS_mq_setattr + <8d00> DW_AT_const_value : 126 + <2><8d01>: Abbrev Number: 14 (DW_TAG_enumerator) + <8d02> DW_AT_name : (indirect string, offset: 0x9029): SYS_mq_timedreceive + <8d06> DW_AT_const_value : 127 + <2><8d07>: Abbrev Number: 14 (DW_TAG_enumerator) + <8d08> DW_AT_name : (indirect string, offset: 0x8af1): SYS_mq_timedsend + <8d0c> DW_AT_const_value : 128 + <2><8d0d>: Abbrev Number: 14 (DW_TAG_enumerator) + <8d0e> DW_AT_name : (indirect string, offset: 0x8e10): SYS_mq_unlink + <8d12> DW_AT_const_value : 129 + <2><8d13>: Abbrev Number: 14 (DW_TAG_enumerator) + <8d14> DW_AT_name : (indirect string, offset: 0x9183): SYS_get_environ_ptr + <8d18> DW_AT_const_value : 130 + <2><8d19>: Abbrev Number: 14 (DW_TAG_enumerator) + <8d1a> DW_AT_name : (indirect string, offset: 0x91d9): SYS_clearenv + <8d1e> DW_AT_const_value : 131 + <2><8d1f>: Abbrev Number: 14 (DW_TAG_enumerator) + <8d20> DW_AT_name : (indirect string, offset: 0x946a): SYS_getenv + <8d24> DW_AT_const_value : 132 + <2><8d25>: Abbrev Number: 14 (DW_TAG_enumerator) + <8d26> DW_AT_name : (indirect string, offset: 0x8ac0): SYS_putenv + <8d2a> DW_AT_const_value : 133 + <2><8d2b>: Abbrev Number: 14 (DW_TAG_enumerator) + <8d2c> DW_AT_name : (indirect string, offset: 0x908e): SYS_setenv + <8d30> DW_AT_const_value : 134 + <2><8d31>: Abbrev Number: 14 (DW_TAG_enumerator) + <8d32> DW_AT_name : (indirect string, offset: 0x8d0c): SYS_unsetenv + <8d36> DW_AT_const_value : 135 + <2><8d37>: Abbrev Number: 14 (DW_TAG_enumerator) + <8d38> DW_AT_name : (indirect string, offset: 0x9475): SYS_getrandom + <8d3c> DW_AT_const_value : 136 + <2><8d3d>: Abbrev Number: 14 (DW_TAG_enumerator) + <8d3e> DW_AT_name : (indirect string, offset: 0x8be5): SYS_nanosleep + <8d42> DW_AT_const_value : 137 + <2><8d43>: Abbrev Number: 14 (DW_TAG_enumerator) + <8d44> DW_AT_name : (indirect string, offset: 0x8e31): SYS_epoll_create1 + <8d48> DW_AT_const_value : 138 + <2><8d49>: Abbrev Number: 14 (DW_TAG_enumerator) + <8d4a> DW_AT_name : (indirect string, offset: 0x8b1f): SYS_epoll_ctl + <8d4e> DW_AT_const_value : 139 + <2><8d4f>: Abbrev Number: 14 (DW_TAG_enumerator) + <8d50> DW_AT_name : (indirect string, offset: 0x8f72): SYS_epoll_wait + <8d54> DW_AT_const_value : 140 + <2><8d55>: Abbrev Number: 14 (DW_TAG_enumerator) + <8d56> DW_AT_name : (indirect string, offset: 0x91bf): SYS_time + <8d5a> DW_AT_const_value : 141 + <2><8d5b>: Abbrev Number: 14 (DW_TAG_enumerator) + <8d5c> DW_AT_name : (indirect string, offset: 0x91c8): SYS_gettimeofday + <8d60> DW_AT_const_value : 142 + <2><8d61>: Abbrev Number: 14 (DW_TAG_enumerator) + <8d62> DW_AT_name : (indirect string, offset: 0x90d4): SYS_settimeofday + <8d66> DW_AT_const_value : 143 + <2><8d67>: Abbrev Number: 14 (DW_TAG_enumerator) + <8d68> DW_AT_name : (indirect string, offset: 0x8cad): SYS_signal + <8d6c> DW_AT_const_value : 144 + <2><8d6d>: Abbrev Number: 14 (DW_TAG_enumerator) + <8d6e> DW_AT_name : (indirect string, offset: 0x8e75): SYS_maxsyscall + <8d72> DW_AT_const_value : 145 + <2><8d73>: Abbrev Number: 0 + <1><8d74>: Abbrev Number: 15 (DW_TAG_subprogram) + <8d75> DW_AT_external : 1 + <8d75> DW_AT_name : (indirect string, offset: 0x8cfc): nxsem_clockwait + <8d79> DW_AT_decl_file : 10 + <8d7a> DW_AT_decl_line : 300 + <8d7c> DW_AT_decl_column : 5 + <8d7d> DW_AT_prototyped : 1 + <8d7d> DW_AT_type : <0x88af> + <8d81> DW_AT_low_pc : 0xdba + <8d89> DW_AT_high_pc : 0x16 + <8d91> DW_AT_frame_base : 1 byte block: 9c (DW_OP_call_frame_cfa) + <8d93> DW_AT_GNU_all_call_sites: 1 + <8d93> DW_AT_sibling : <0x8e21> + <2><8d97>: Abbrev Number: 16 (DW_TAG_formal_parameter) + <8d98> DW_AT_name : (indirect string, offset: 0x916c): parm1 + <8d9c> DW_AT_decl_file : 1 + <8d9d> DW_AT_decl_line : 7 + <8d9e> DW_AT_decl_column : 33 + <8d9f> DW_AT_type : <0x8e21> + <8da3> DW_AT_location : 0x3231 (location list) + <2><8da7>: Abbrev Number: 16 (DW_TAG_formal_parameter) + <8da8> DW_AT_name : (indirect string, offset: 0x9172): parm2 + <8dac> DW_AT_decl_file : 1 + <8dad> DW_AT_decl_line : 7 + <8dae> DW_AT_decl_column : 50 + <8daf> DW_AT_type : <0x892b> + <8db3> DW_AT_location : 0x3267 (location list) + <2><8db7>: Abbrev Number: 16 (DW_TAG_formal_parameter) + <8db8> DW_AT_name : (indirect string, offset: 0x9178): parm3 + <8dbc> DW_AT_decl_file : 1 + <8dbd> DW_AT_decl_line : 7 + <8dbe> DW_AT_decl_column : 85 + <8dbf> DW_AT_type : <0x8e27> + <8dc3> DW_AT_location : 0x32a0 (location list) + <2><8dc7>: Abbrev Number: 17 (DW_TAG_inlined_subroutine) + <8dc8> DW_AT_abstract_origin: <0x8e2d> + <8dcc> DW_AT_low_pc : 0xdc0 + <8dd4> DW_AT_high_pc : 0xc + <8ddc> DW_AT_call_file : 1 + <8ddd> DW_AT_call_line : 9 + <8dde> DW_AT_call_column : 15 + <3><8ddf>: Abbrev Number: 18 (DW_TAG_formal_parameter) + <8de0> DW_AT_abstract_origin: <0x8e3a> + <8de4> DW_AT_location : 0x32d6 (location list) + <3><8de8>: Abbrev Number: 18 (DW_TAG_formal_parameter) + <8de9> DW_AT_abstract_origin: <0x8e5e> + <8ded> DW_AT_location : 0x32fa (location list) + <3><8df1>: Abbrev Number: 18 (DW_TAG_formal_parameter) + <8df2> DW_AT_abstract_origin: <0x8e52> + <8df6> DW_AT_location : 0x3330 (location list) + <3><8dfa>: Abbrev Number: 18 (DW_TAG_formal_parameter) + <8dfb> DW_AT_abstract_origin: <0x8e46> + <8dff> DW_AT_location : 0x335b (location list) + <3><8e03>: Abbrev Number: 19 (DW_TAG_variable) + <8e04> DW_AT_abstract_origin: <0x8e6a> + <8e08> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <3><8e0a>: Abbrev Number: 19 (DW_TAG_variable) + <8e0b> DW_AT_abstract_origin: <0x8e75> + <8e0f> DW_AT_location : 1 byte block: 5b (DW_OP_reg11 (a1)) + <3><8e11>: Abbrev Number: 19 (DW_TAG_variable) + <8e12> DW_AT_abstract_origin: <0x8e80> + <8e16> DW_AT_location : 1 byte block: 5c (DW_OP_reg12 (a2)) + <3><8e18>: Abbrev Number: 19 (DW_TAG_variable) + <8e19> DW_AT_abstract_origin: <0x8e8b> + <8e1d> DW_AT_location : 1 byte block: 5d (DW_OP_reg13 (a3)) + <3><8e1f>: Abbrev Number: 0 + <2><8e20>: Abbrev Number: 0 + <1><8e21>: Abbrev Number: 12 (DW_TAG_pointer_type) + <8e22> DW_AT_byte_size : 8 + <8e23> DW_AT_type : <0x8a1d> + <1><8e27>: Abbrev Number: 12 (DW_TAG_pointer_type) + <8e28> DW_AT_byte_size : 8 + <8e29> DW_AT_type : <0x8967> + <1><8e2d>: Abbrev Number: 20 (DW_TAG_subprogram) + <8e2e> DW_AT_name : (indirect string, offset: 0x8d2b): sys_call3 + <8e32> DW_AT_decl_file : 2 + <8e33> DW_AT_decl_line : 249 + <8e34> DW_AT_decl_column : 25 + <8e35> DW_AT_prototyped : 1 + <8e35> DW_AT_type : <0x8913> + <8e39> DW_AT_inline : 3 (declared as inline and inlined) + <2><8e3a>: Abbrev Number: 21 (DW_TAG_formal_parameter) + <8e3b> DW_AT_name : nbr + <8e3f> DW_AT_decl_file : 2 + <8e40> DW_AT_decl_line : 249 + <8e41> DW_AT_decl_column : 48 + <8e42> DW_AT_type : <0x88c2> + <2><8e46>: Abbrev Number: 22 (DW_TAG_formal_parameter) + <8e47> DW_AT_name : (indirect string, offset: 0x916c): parm1 + <8e4b> DW_AT_decl_file : 2 + <8e4c> DW_AT_decl_line : 249 + <8e4d> DW_AT_decl_column : 63 + <8e4e> DW_AT_type : <0x8913> + <2><8e52>: Abbrev Number: 22 (DW_TAG_formal_parameter) + <8e53> DW_AT_name : (indirect string, offset: 0x9172): parm2 + <8e57> DW_AT_decl_file : 2 + <8e58> DW_AT_decl_line : 250 + <8e59> DW_AT_decl_column : 45 + <8e5a> DW_AT_type : <0x8913> + <2><8e5e>: Abbrev Number: 22 (DW_TAG_formal_parameter) + <8e5f> DW_AT_name : (indirect string, offset: 0x9178): parm3 + <8e63> DW_AT_decl_file : 2 + <8e64> DW_AT_decl_line : 250 + <8e65> DW_AT_decl_column : 62 + <8e66> DW_AT_type : <0x8913> + <2><8e6a>: Abbrev Number: 23 (DW_TAG_variable) + <8e6b> DW_AT_name : r0 + <8e6e> DW_AT_decl_file : 2 + <8e6f> DW_AT_decl_line : 252 + <8e70> DW_AT_decl_column : 17 + <8e71> DW_AT_type : <0x88c9> + <2><8e75>: Abbrev Number: 23 (DW_TAG_variable) + <8e76> DW_AT_name : r1 + <8e79> DW_AT_decl_file : 2 + <8e7a> DW_AT_decl_line : 253 + <8e7b> DW_AT_decl_column : 17 + <8e7c> DW_AT_type : <0x88c9> + <2><8e80>: Abbrev Number: 23 (DW_TAG_variable) + <8e81> DW_AT_name : r2 + <8e84> DW_AT_decl_file : 2 + <8e85> DW_AT_decl_line : 254 + <8e86> DW_AT_decl_column : 17 + <8e87> DW_AT_type : <0x88c9> + <2><8e8b>: Abbrev Number: 23 (DW_TAG_variable) + <8e8c> DW_AT_name : r3 + <8e8f> DW_AT_decl_file : 2 + <8e90> DW_AT_decl_line : 255 + <8e91> DW_AT_decl_column : 17 + <8e92> DW_AT_type : <0x88c9> + <2><8e96>: Abbrev Number: 0 + <1><8e97>: Abbrev Number: 0 + Compilation Unit @ offset 0x8e98: + Length: 0x56f (32-bit) + Version: 4 + Abbrev Offset: 0x2a12 + Pointer Size: 8 + <0><8ea3>: Abbrev Number: 1 (DW_TAG_compile_unit) + <8ea4> DW_AT_producer : (indirect string, offset: 0x9d6a): GNU C17 10.2.0 -mcmodel=medany -march=rv64imafdc -mabi=lp64d -march=rv64imafdc -g -Os -fno-common -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections + <8ea8> DW_AT_language : 12 (ANSI C99) + <8ea9> DW_AT_name : (indirect string, offset: 0x98d4): proxies/PROXY_nxsem_destroy.c + <8ead> DW_AT_comp_dir : (indirect string, offset: 0x9bb5): /Users/Luppy/ox64/nuttx/syscall + <8eb1> DW_AT_ranges : 0x8b0 + <8eb5> DW_AT_low_pc : 0x0 + <8ebd> DW_AT_stmt_list : 0x4c07 + <1><8ec1>: Abbrev Number: 2 (DW_TAG_base_type) + <8ec2> DW_AT_byte_size : 1 + <8ec3> DW_AT_encoding : 6 (signed char) + <8ec4> DW_AT_name : (indirect string, offset: 0x9674): signed char + <1><8ec8>: Abbrev Number: 3 (DW_TAG_typedef) + <8ec9> DW_AT_name : (indirect string, offset: 0x9b7d): _uint8_t + <8ecd> DW_AT_decl_file : 3 + <8ece> DW_AT_decl_line : 52 + <8ecf> DW_AT_decl_column : 28 + <8ed0> DW_AT_type : <0x8ed4> + <1><8ed4>: Abbrev Number: 2 (DW_TAG_base_type) + <8ed5> DW_AT_byte_size : 1 + <8ed6> DW_AT_encoding : 8 (unsigned char) + <8ed7> DW_AT_name : (indirect string, offset: 0x9ad7): unsigned char + <1><8edb>: Abbrev Number: 3 (DW_TAG_typedef) + <8edc> DW_AT_name : (indirect string, offset: 0x9eaa): _int16_t + <8ee0> DW_AT_decl_file : 3 + <8ee1> DW_AT_decl_line : 54 + <8ee2> DW_AT_decl_column : 28 + <8ee3> DW_AT_type : <0x8ee7> + <1><8ee7>: Abbrev Number: 2 (DW_TAG_base_type) + <8ee8> DW_AT_byte_size : 2 + <8ee9> DW_AT_encoding : 5 (signed) + <8eea> DW_AT_name : (indirect string, offset: 0x9b14): short int + <1><8eee>: Abbrev Number: 2 (DW_TAG_base_type) + <8eef> DW_AT_byte_size : 2 + <8ef0> DW_AT_encoding : 7 (unsigned) + <8ef1> DW_AT_name : (indirect string, offset: 0x988f): short unsigned int + <1><8ef5>: Abbrev Number: 4 (DW_TAG_base_type) + <8ef6> DW_AT_byte_size : 4 + <8ef7> DW_AT_encoding : 5 (signed) + <8ef8> DW_AT_name : int + <1><8efc>: Abbrev Number: 2 (DW_TAG_base_type) + <8efd> DW_AT_byte_size : 4 + <8efe> DW_AT_encoding : 7 (unsigned) + <8eff> DW_AT_name : (indirect string, offset: 0x981d): unsigned int + <1><8f03>: Abbrev Number: 2 (DW_TAG_base_type) + <8f04> DW_AT_byte_size : 8 + <8f05> DW_AT_encoding : 5 (signed) + <8f06> DW_AT_name : (indirect string, offset: 0x96eb): long int + <1><8f0a>: Abbrev Number: 2 (DW_TAG_base_type) + <8f0b> DW_AT_byte_size : 8 + <8f0c> DW_AT_encoding : 7 (unsigned) + <8f0d> DW_AT_name : (indirect string, offset: 0x9845): long unsigned int + <1><8f11>: Abbrev Number: 3 (DW_TAG_typedef) + <8f12> DW_AT_name : (indirect string, offset: 0x9952): _size_t + <8f16> DW_AT_decl_file : 3 + <8f17> DW_AT_decl_line : 93 + <8f18> DW_AT_decl_column : 28 + <8f19> DW_AT_type : <0x8f0a> + <1><8f1d>: Abbrev Number: 2 (DW_TAG_base_type) + <8f1e> DW_AT_byte_size : 8 + <8f1f> DW_AT_encoding : 7 (unsigned) + <8f20> DW_AT_name : (indirect string, offset: 0x95d3): long long unsigned int + <1><8f24>: Abbrev Number: 3 (DW_TAG_typedef) + <8f25> DW_AT_name : (indirect string, offset: 0x9e1a): uint8_t + <8f29> DW_AT_decl_file : 4 + <8f2a> DW_AT_decl_line : 166 + <8f2b> DW_AT_decl_column : 29 + <8f2c> DW_AT_type : <0x8ec8> + <1><8f30>: Abbrev Number: 3 (DW_TAG_typedef) + <8f31> DW_AT_name : (indirect string, offset: 0x9663): int16_t + <8f35> DW_AT_decl_file : 4 + <8f36> DW_AT_decl_line : 168 + <8f37> DW_AT_decl_column : 29 + <8f38> DW_AT_type : <0x8edb> + <1><8f3c>: Abbrev Number: 5 (DW_TAG_volatile_type) + <8f3d> DW_AT_type : <0x8f30> + <1><8f41>: Abbrev Number: 3 (DW_TAG_typedef) + <8f42> DW_AT_name : (indirect string, offset: 0x951d): uintptr_t + <8f46> DW_AT_decl_file : 4 + <8f47> DW_AT_decl_line : 239 + <8f48> DW_AT_decl_column : 29 + <8f49> DW_AT_type : <0x8f11> + <1><8f4d>: Abbrev Number: 2 (DW_TAG_base_type) + <8f4e> DW_AT_byte_size : 1 + <8f4f> DW_AT_encoding : 8 (unsigned char) + <8f50> DW_AT_name : (indirect string, offset: 0x9bdb): char + <1><8f54>: Abbrev Number: 6 (DW_TAG_structure_type) + <8f55> DW_AT_name : (indirect string, offset: 0x9e3a): dq_entry_s + <8f59> DW_AT_byte_size : 16 + <8f5a> DW_AT_decl_file : 5 + <8f5b> DW_AT_decl_line : 303 + <8f5d> DW_AT_decl_column : 8 + <8f5e> DW_AT_sibling : <0x8f7f> + <2><8f62>: Abbrev Number: 7 (DW_TAG_member) + <8f63> DW_AT_name : (indirect string, offset: 0x9857): flink + <8f67> DW_AT_decl_file : 5 + <8f68> DW_AT_decl_line : 305 + <8f6a> DW_AT_decl_column : 26 + <8f6b> DW_AT_type : <0x8f7f> + <8f6f> DW_AT_data_member_location: 0 + <2><8f70>: Abbrev Number: 7 (DW_TAG_member) + <8f71> DW_AT_name : (indirect string, offset: 0x9cfd): blink + <8f75> DW_AT_decl_file : 5 + <8f76> DW_AT_decl_line : 306 + <8f78> DW_AT_decl_column : 26 + <8f79> DW_AT_type : <0x8f7f> + <8f7d> DW_AT_data_member_location: 8 + <2><8f7e>: Abbrev Number: 0 + <1><8f7f>: Abbrev Number: 8 (DW_TAG_pointer_type) + <8f80> DW_AT_byte_size : 8 + <8f81> DW_AT_type : <0x8f54> + <1><8f85>: Abbrev Number: 9 (DW_TAG_typedef) + <8f86> DW_AT_name : (indirect string, offset: 0x9e45): dq_entry_t + <8f8a> DW_AT_decl_file : 5 + <8f8b> DW_AT_decl_line : 308 + <8f8d> DW_AT_decl_column : 27 + <8f8e> DW_AT_type : <0x8f54> + <1><8f92>: Abbrev Number: 6 (DW_TAG_structure_type) + <8f93> DW_AT_name : (indirect string, offset: 0x9b30): dq_queue_s + <8f97> DW_AT_byte_size : 16 + <8f98> DW_AT_decl_file : 5 + <8f99> DW_AT_decl_line : 317 + <8f9b> DW_AT_decl_column : 8 + <8f9c> DW_AT_sibling : <0x8fbd> + <2><8fa0>: Abbrev Number: 7 (DW_TAG_member) + <8fa1> DW_AT_name : (indirect string, offset: 0x9b86): head + <8fa5> DW_AT_decl_file : 5 + <8fa6> DW_AT_decl_line : 319 + <8fa8> DW_AT_decl_column : 19 + <8fa9> DW_AT_type : <0x8fbd> + <8fad> DW_AT_data_member_location: 0 + <2><8fae>: Abbrev Number: 7 (DW_TAG_member) + <8faf> DW_AT_name : (indirect string, offset: 0x99d7): tail + <8fb3> DW_AT_decl_file : 5 + <8fb4> DW_AT_decl_line : 320 + <8fb6> DW_AT_decl_column : 19 + <8fb7> DW_AT_type : <0x8fbd> + <8fbb> DW_AT_data_member_location: 8 + <2><8fbc>: Abbrev Number: 0 + <1><8fbd>: Abbrev Number: 8 (DW_TAG_pointer_type) + <8fbe> DW_AT_byte_size : 8 + <8fbf> DW_AT_type : <0x8f85> + <1><8fc3>: Abbrev Number: 9 (DW_TAG_typedef) + <8fc4> DW_AT_name : (indirect string, offset: 0x9b3b): dq_queue_t + <8fc8> DW_AT_decl_file : 5 + <8fc9> DW_AT_decl_line : 322 + <8fcb> DW_AT_decl_column : 27 + <8fcc> DW_AT_type : <0x8f92> + <1><8fd0>: Abbrev Number: 10 (DW_TAG_structure_type) + <8fd1> DW_AT_name : (indirect string, offset: 0x9e73): sem_s + <8fd5> DW_AT_byte_size : 24 + <8fd6> DW_AT_decl_file : 6 + <8fd7> DW_AT_decl_line : 99 + <8fd8> DW_AT_decl_column : 8 + <8fd9> DW_AT_sibling : <0x9005> + <2><8fdd>: Abbrev Number: 11 (DW_TAG_member) + <8fde> DW_AT_name : (indirect string, offset: 0x98cb): semcount + <8fe2> DW_AT_decl_file : 6 + <8fe3> DW_AT_decl_line : 101 + <8fe4> DW_AT_decl_column : 20 + <8fe5> DW_AT_type : <0x8f3c> + <8fe9> DW_AT_data_member_location: 0 + <2><8fea>: Abbrev Number: 11 (DW_TAG_member) + <8feb> DW_AT_name : (indirect string, offset: 0x9e22): flags + <8fef> DW_AT_decl_file : 6 + <8ff0> DW_AT_decl_line : 108 + <8ff1> DW_AT_decl_column : 11 + <8ff2> DW_AT_type : <0x8f24> + <8ff6> DW_AT_data_member_location: 2 + <2><8ff7>: Abbrev Number: 11 (DW_TAG_member) + <8ff8> DW_AT_name : (indirect string, offset: 0x9701): waitlist + <8ffc> DW_AT_decl_file : 6 + <8ffd> DW_AT_decl_line : 110 + <8ffe> DW_AT_decl_column : 14 + <8fff> DW_AT_type : <0x8fc3> + <9003> DW_AT_data_member_location: 8 + <2><9004>: Abbrev Number: 0 + <1><9005>: Abbrev Number: 3 (DW_TAG_typedef) + <9006> DW_AT_name : (indirect string, offset: 0x9e79): sem_t + <900a> DW_AT_decl_file : 6 + <900b> DW_AT_decl_line : 121 + <900c> DW_AT_decl_column : 22 + <900d> DW_AT_type : <0x8fd0> + <1><9011>: Abbrev Number: 12 (DW_TAG_enumeration_type) + <9012> DW_AT_encoding : 7 (unsigned) + <9013> DW_AT_byte_size : 4 + <9014> DW_AT_type : <0x8efc> + <9018> DW_AT_decl_file : 7 + <9019> DW_AT_decl_line : 57 + <901a> DW_AT_decl_column : 1 + <901b> DW_AT_sibling : <0x935c> + <2><901f>: Abbrev Number: 13 (DW_TAG_enumerator) + <9020> DW_AT_name : (indirect string, offset: 0x99dc): SYS__exit + <9024> DW_AT_const_value : 8 + <2><9025>: Abbrev Number: 13 (DW_TAG_enumerator) + <9026> DW_AT_name : (indirect string, offset: 0x9a60): SYS__assert + <902a> DW_AT_const_value : 9 + <2><902b>: Abbrev Number: 13 (DW_TAG_enumerator) + <902c> DW_AT_name : (indirect string, offset: 0x97ec): SYS_getpid + <9030> DW_AT_const_value : 10 + <2><9031>: Abbrev Number: 13 (DW_TAG_enumerator) + <9032> DW_AT_name : (indirect string, offset: 0x9a77): SYS_gettid + <9036> DW_AT_const_value : 11 + <2><9037>: Abbrev Number: 13 (DW_TAG_enumerator) + <9038> DW_AT_name : (indirect string, offset: 0x9ee3): SYS_prctl + <903c> DW_AT_const_value : 12 + <2><903d>: Abbrev Number: 13 (DW_TAG_enumerator) + <903e> DW_AT_name : (indirect string, offset: 0x962e): SYS_sched_getparam + <9042> DW_AT_const_value : 13 + <2><9043>: Abbrev Number: 13 (DW_TAG_enumerator) + <9044> DW_AT_name : (indirect string, offset: 0x9ecc): SYS_sched_getscheduler + <9048> DW_AT_const_value : 14 + <2><9049>: Abbrev Number: 13 (DW_TAG_enumerator) + <904a> DW_AT_name : (indirect string, offset: 0x99ff): SYS_sched_lock + <904e> DW_AT_const_value : 15 + <2><904f>: Abbrev Number: 13 (DW_TAG_enumerator) + <9050> DW_AT_name : (indirect string, offset: 0x9d36): SYS_sched_lockcount + <9054> DW_AT_const_value : 16 + <2><9055>: Abbrev Number: 13 (DW_TAG_enumerator) + <9056> DW_AT_name : (indirect string, offset: 0x9c88): SYS_sched_rr_get_interval + <905a> DW_AT_const_value : 17 + <2><905b>: Abbrev Number: 13 (DW_TAG_enumerator) + <905c> DW_AT_name : (indirect string, offset: 0x9c75): SYS_sched_setparam + <9060> DW_AT_const_value : 18 + <2><9061>: Abbrev Number: 13 (DW_TAG_enumerator) + <9062> DW_AT_name : (indirect string, offset: 0x9968): SYS_sched_setscheduler + <9066> DW_AT_const_value : 19 + <2><9067>: Abbrev Number: 13 (DW_TAG_enumerator) + <9068> DW_AT_name : (indirect string, offset: 0x9e7f): SYS_sched_unlock + <906c> DW_AT_const_value : 20 + <2><906d>: Abbrev Number: 13 (DW_TAG_enumerator) + <906e> DW_AT_name : (indirect string, offset: 0x954b): SYS_sched_yield + <9072> DW_AT_const_value : 21 + <2><9073>: Abbrev Number: 13 (DW_TAG_enumerator) + <9074> DW_AT_name : (indirect string, offset: 0x9b9b): SYS_nxsched_get_stackinfo + <9078> DW_AT_const_value : 22 + <2><9079>: Abbrev Number: 13 (DW_TAG_enumerator) + <907a> DW_AT_name : (indirect string, offset: 0x9a22): SYS_sysinfo + <907e> DW_AT_const_value : 23 + <2><907f>: Abbrev Number: 13 (DW_TAG_enumerator) + <9080> DW_AT_name : (indirect string, offset: 0x9b8b): SYS_gethostname + <9084> DW_AT_const_value : 24 + <2><9085>: Abbrev Number: 13 (DW_TAG_enumerator) + <9086> DW_AT_name : (indirect string, offset: 0x9801): SYS_sethostname + <908a> DW_AT_const_value : 25 + <2><908b>: Abbrev Number: 13 (DW_TAG_enumerator) + <908c> DW_AT_name : (indirect string, offset: 0x986f): SYS_nxsem_destroy + <9090> DW_AT_const_value : 26 + <2><9091>: Abbrev Number: 13 (DW_TAG_enumerator) + <9092> DW_AT_name : (indirect string, offset: 0x9a95): SYS_nxsem_post + <9096> DW_AT_const_value : 27 + <2><9097>: Abbrev Number: 13 (DW_TAG_enumerator) + <9098> DW_AT_name : (indirect string, offset: 0x96cd): SYS_nxsem_clockwait + <909c> DW_AT_const_value : 28 + <2><909d>: Abbrev Number: 13 (DW_TAG_enumerator) + <909e> DW_AT_name : (indirect string, offset: 0x990a): SYS_nxsem_timedwait + <90a2> DW_AT_const_value : 29 + <2><90a3>: Abbrev Number: 13 (DW_TAG_enumerator) + <90a4> DW_AT_name : (indirect string, offset: 0x99a5): SYS_nxsem_trywait + <90a8> DW_AT_const_value : 30 + <2><90a9>: Abbrev Number: 13 (DW_TAG_enumerator) + <90aa> DW_AT_name : (indirect string, offset: 0x9566): SYS_nxsem_wait + <90ae> DW_AT_const_value : 31 + <2><90af>: Abbrev Number: 13 (DW_TAG_enumerator) + <90b0> DW_AT_name : (indirect string, offset: 0x9d4a): SYS_pgalloc + <90b4> DW_AT_const_value : 32 + <2><90b5>: Abbrev Number: 13 (DW_TAG_enumerator) + <90b6> DW_AT_name : (indirect string, offset: 0x9b71): SYS_up_fork + <90ba> DW_AT_const_value : 33 + <2><90bb>: Abbrev Number: 13 (DW_TAG_enumerator) + <90bc> DW_AT_name : (indirect string, offset: 0x9c1f): SYS_waitpid + <90c0> DW_AT_const_value : 34 + <2><90c1>: Abbrev Number: 13 (DW_TAG_enumerator) + <90c2> DW_AT_name : (indirect string, offset: 0x961e): SYS_posix_spawn + <90c6> DW_AT_const_value : 35 + <2><90c7>: Abbrev Number: 13 (DW_TAG_enumerator) + <90c8> DW_AT_name : (indirect string, offset: 0x9b66): SYS_execve + <90cc> DW_AT_const_value : 36 + <2><90cd>: Abbrev Number: 13 (DW_TAG_enumerator) + <90ce> DW_AT_name : (indirect string, offset: 0x9b00): SYS_kill + <90d2> DW_AT_const_value : 37 + <2><90d3>: Abbrev Number: 13 (DW_TAG_enumerator) + <90d4> DW_AT_name : (indirect string, offset: 0x94ce): SYS_tgkill + <90d8> DW_AT_const_value : 38 + <2><90d9>: Abbrev Number: 13 (DW_TAG_enumerator) + <90da> DW_AT_name : (indirect string, offset: 0x982a): SYS_sigaction + <90de> DW_AT_const_value : 39 + <2><90df>: Abbrev Number: 13 (DW_TAG_enumerator) + <90e0> DW_AT_name : (indirect string, offset: 0x9ae5): SYS_sigpending + <90e4> DW_AT_const_value : 40 + <2><90e5>: Abbrev Number: 13 (DW_TAG_enumerator) + <90e6> DW_AT_name : (indirect string, offset: 0x9753): SYS_sigprocmask + <90ea> DW_AT_const_value : 41 + <2><90eb>: Abbrev Number: 13 (DW_TAG_enumerator) + <90ec> DW_AT_name : (indirect string, offset: 0x9d0c): SYS_sigqueue + <90f0> DW_AT_const_value : 42 + <2><90f1>: Abbrev Number: 13 (DW_TAG_enumerator) + <90f2> DW_AT_name : (indirect string, offset: 0x99c8): SYS_sigsuspend + <90f6> DW_AT_const_value : 43 + <2><90f7>: Abbrev Number: 13 (DW_TAG_enumerator) + <90f8> DW_AT_name : (indirect string, offset: 0x9698): SYS_sigtimedwait + <90fc> DW_AT_const_value : 44 + <2><90fd>: Abbrev Number: 13 (DW_TAG_enumerator) + <90fe> DW_AT_name : (indirect string, offset: 0x960e): SYS_sigwaitinfo + <9102> DW_AT_const_value : 45 + <2><9103>: Abbrev Number: 13 (DW_TAG_enumerator) + <9104> DW_AT_name : (indirect string, offset: 0x9a0e): SYS_clock_nanosleep + <9108> DW_AT_const_value : 46 + <2><9109>: Abbrev Number: 13 (DW_TAG_enumerator) + <910a> DW_AT_name : (indirect string, offset: 0x95b0): SYS_clock + <910e> DW_AT_const_value : 47 + <2><910f>: Abbrev Number: 13 (DW_TAG_enumerator) + <9110> DW_AT_name : (indirect string, offset: 0x9cb7): SYS_clock_gettime + <9114> DW_AT_const_value : 48 + <2><9115>: Abbrev Number: 13 (DW_TAG_enumerator) + <9116> DW_AT_name : (indirect string, offset: 0x97d0): SYS_clock_settime + <911a> DW_AT_const_value : 49 + <2><911b>: Abbrev Number: 13 (DW_TAG_enumerator) + <911c> DW_AT_name : (indirect string, offset: 0x94f3): SYS_timer_create + <9120> DW_AT_const_value : 50 + <2><9121>: Abbrev Number: 13 (DW_TAG_enumerator) + <9122> DW_AT_name : (indirect string, offset: 0x99b7): SYS_timer_delete + <9126> DW_AT_const_value : 51 + <2><9127>: Abbrev Number: 13 (DW_TAG_enumerator) + <9128> DW_AT_name : (indirect string, offset: 0x98ac): SYS_timer_getoverrun + <912c> DW_AT_const_value : 52 + <2><912d>: Abbrev Number: 13 (DW_TAG_enumerator) + <912e> DW_AT_name : (indirect string, offset: 0x97a4): SYS_timer_gettime + <9132> DW_AT_const_value : 53 + <2><9133>: Abbrev Number: 13 (DW_TAG_enumerator) + <9134> DW_AT_name : (indirect string, offset: 0x985d): SYS_timer_settime + <9138> DW_AT_const_value : 54 + <2><9139>: Abbrev Number: 13 (DW_TAG_enumerator) + <913a> DW_AT_name : (indirect string, offset: 0x995a): SYS_getitimer + <913e> DW_AT_const_value : 55 + <2><913f>: Abbrev Number: 13 (DW_TAG_enumerator) + <9140> DW_AT_name : (indirect string, offset: 0x9776): SYS_setitimer + <9144> DW_AT_const_value : 56 + <2><9145>: Abbrev Number: 13 (DW_TAG_enumerator) + <9146> DW_AT_name : (indirect string, offset: 0x991e): SYS_nx_vsyslog + <914a> DW_AT_const_value : 57 + <2><914b>: Abbrev Number: 13 (DW_TAG_enumerator) + <914c> DW_AT_name : (indirect string, offset: 0x96a9): SYS_close + <9150> DW_AT_const_value : 58 + <2><9151>: Abbrev Number: 13 (DW_TAG_enumerator) + <9152> DW_AT_name : (indirect string, offset: 0x9e69): SYS_ioctl + <9156> DW_AT_const_value : 59 + <2><9157>: Abbrev Number: 13 (DW_TAG_enumerator) + <9158> DW_AT_name : (indirect string, offset: 0x966b): SYS_read + <915c> DW_AT_const_value : 60 + <2><915d>: Abbrev Number: 13 (DW_TAG_enumerator) + <915e> DW_AT_name : (indirect string, offset: 0x97e2): SYS_write + <9162> DW_AT_const_value : 61 + <2><9163>: Abbrev Number: 13 (DW_TAG_enumerator) + <9164> DW_AT_name : (indirect string, offset: 0x9604): SYS_pread + <9168> DW_AT_const_value : 62 + <2><9169>: Abbrev Number: 13 (DW_TAG_enumerator) + <916a> DW_AT_name : (indirect string, offset: 0x9a49): SYS_pwrite + <916e> DW_AT_const_value : 63 + <2><916f>: Abbrev Number: 13 (DW_TAG_enumerator) + <9170> DW_AT_name : (indirect string, offset: 0x94c5): SYS_poll + <9174> DW_AT_const_value : 64 + <2><9175>: Abbrev Number: 13 (DW_TAG_enumerator) + <9176> DW_AT_name : (indirect string, offset: 0x95c8): SYS_select + <917a> DW_AT_const_value : 65 + <2><917b>: Abbrev Number: 13 (DW_TAG_enumerator) + <917c> DW_AT_name : (indirect string, offset: 0x9575): SYS_ppoll + <9180> DW_AT_const_value : 66 + <2><9181>: Abbrev Number: 13 (DW_TAG_enumerator) + <9182> DW_AT_name : (indirect string, offset: 0x992d): SYS_pselect + <9186> DW_AT_const_value : 67 + <2><9187>: Abbrev Number: 13 (DW_TAG_enumerator) + <9188> DW_AT_name : (indirect string, offset: 0x96f4): SYS_boardctl + <918c> DW_AT_const_value : 68 + <2><918d>: Abbrev Number: 13 (DW_TAG_enumerator) + <918e> DW_AT_name : (indirect string, offset: 0x9a8d): SYS_dup + <9192> DW_AT_const_value : 69 + <2><9193>: Abbrev Number: 13 (DW_TAG_enumerator) + <9194> DW_AT_name : (indirect string, offset: 0x9b1e): SYS_dup2 + <9198> DW_AT_const_value : 70 + <2><9199>: Abbrev Number: 13 (DW_TAG_enumerator) + <919a> DW_AT_name : (indirect string, offset: 0x9659): SYS_fcntl + <919e> DW_AT_const_value : 71 + <2><919f>: Abbrev Number: 13 (DW_TAG_enumerator) + <91a0> DW_AT_name : (indirect string, offset: 0x9e5b): SYS_ftruncate + <91a4> DW_AT_const_value : 72 + <2><91a5>: Abbrev Number: 13 (DW_TAG_enumerator) + <91a6> DW_AT_name : (indirect string, offset: 0x96e1): SYS_lseek + <91aa> DW_AT_const_value : 73 + <2><91ab>: Abbrev Number: 13 (DW_TAG_enumerator) + <91ac> DW_AT_name : (indirect string, offset: 0x978e): SYS_mmap + <91b0> DW_AT_const_value : 74 + <2><91b1>: Abbrev Number: 13 (DW_TAG_enumerator) + <91b2> DW_AT_name : (indirect string, offset: 0x9d03): SYS_open + <91b6> DW_AT_const_value : 75 + <2><91b7>: Abbrev Number: 13 (DW_TAG_enumerator) + <91b8> DW_AT_name : (indirect string, offset: 0x9a82): SYS_rename + <91bc> DW_AT_const_value : 76 + <2><91bd>: Abbrev Number: 13 (DW_TAG_enumerator) + <91be> DW_AT_name : (indirect string, offset: 0x9ea1): SYS_stat + <91c2> DW_AT_const_value : 77 + <2><91c3>: Abbrev Number: 13 (DW_TAG_enumerator) + <91c4> DW_AT_name : (indirect string, offset: 0x9cad): SYS_lstat + <91c8> DW_AT_const_value : 78 + <2><91c9>: Abbrev Number: 13 (DW_TAG_enumerator) + <91ca> DW_AT_name : (indirect string, offset: 0x9527): SYS_fstat + <91ce> DW_AT_const_value : 79 + <2><91cf>: Abbrev Number: 13 (DW_TAG_enumerator) + <91d0> DW_AT_name : (indirect string, offset: 0x9947): SYS_statfs + <91d4> DW_AT_const_value : 80 + <2><91d5>: Abbrev Number: 13 (DW_TAG_enumerator) + <91d6> DW_AT_name : (indirect string, offset: 0x9af4): SYS_fstatfs + <91da> DW_AT_const_value : 81 + <2><91db>: Abbrev Number: 13 (DW_TAG_enumerator) + <91dc> DW_AT_name : (indirect string, offset: 0x9cc9): SYS_sendfile + <91e0> DW_AT_const_value : 82 + <2><91e1>: Abbrev Number: 13 (DW_TAG_enumerator) + <91e2> DW_AT_name : (indirect string, offset: 0x9b27): SYS_sync + <91e6> DW_AT_const_value : 83 + <2><91e7>: Abbrev Number: 13 (DW_TAG_enumerator) + <91e8> DW_AT_name : (indirect string, offset: 0x97f7): SYS_fsync + <91ec> DW_AT_const_value : 84 + <2><91ed>: Abbrev Number: 13 (DW_TAG_enumerator) + <91ee> DW_AT_name : (indirect string, offset: 0x9900): SYS_chmod + <91f2> DW_AT_const_value : 85 + <2><91f3>: Abbrev Number: 13 (DW_TAG_enumerator) + <91f4> DW_AT_name : (indirect string, offset: 0x9e50): SYS_lchmod + <91f8> DW_AT_const_value : 86 + <2><91f9>: Abbrev Number: 13 (DW_TAG_enumerator) + <91fa> DW_AT_name : (indirect string, offset: 0x9a6c): SYS_fchmod + <91fe> DW_AT_const_value : 87 + <2><91ff>: Abbrev Number: 13 (DW_TAG_enumerator) + <9200> DW_AT_name : (indirect string, offset: 0x968e): SYS_chown + <9204> DW_AT_const_value : 88 + <2><9205>: Abbrev Number: 13 (DW_TAG_enumerator) + <9206> DW_AT_name : (indirect string, offset: 0x9ab8): SYS_lchown + <920a> DW_AT_const_value : 89 + <2><920b>: Abbrev Number: 13 (DW_TAG_enumerator) + <920c> DW_AT_name : (indirect string, offset: 0x97b6): SYS_fchown + <9210> DW_AT_const_value : 90 + <2><9211>: Abbrev Number: 13 (DW_TAG_enumerator) + <9212> DW_AT_name : (indirect string, offset: 0x9811): SYS_utimens + <9216> DW_AT_const_value : 91 + <2><9217>: Abbrev Number: 13 (DW_TAG_enumerator) + <9218> DW_AT_name : (indirect string, offset: 0x9998): SYS_lutimens + <921c> DW_AT_const_value : 92 + <2><921d>: Abbrev Number: 13 (DW_TAG_enumerator) + <921e> DW_AT_name : (indirect string, offset: 0x957f): SYS_futimens + <9222> DW_AT_const_value : 93 + <2><9223>: Abbrev Number: 13 (DW_TAG_enumerator) + <9224> DW_AT_name : (indirect string, offset: 0x9ca2): SYS_munmap + <9228> DW_AT_const_value : 94 + <2><9229>: Abbrev Number: 13 (DW_TAG_enumerator) + <922a> DW_AT_name : (indirect string, offset: 0x98c1): SYS_mount + <922e> DW_AT_const_value : 95 + <2><922f>: Abbrev Number: 13 (DW_TAG_enumerator) + <9230> DW_AT_name : (indirect string, offset: 0x9784): SYS_mkdir + <9234> DW_AT_const_value : 96 + <2><9235>: Abbrev Number: 13 (DW_TAG_enumerator) + <9236> DW_AT_name : (indirect string, offset: 0x98a2): SYS_rmdir + <923a> DW_AT_const_value : 97 + <2><923b>: Abbrev Number: 13 (DW_TAG_enumerator) + <923c> DW_AT_name : (indirect string, offset: 0x9c69): SYS_umount2 + <9240> DW_AT_const_value : 98 + <2><9241>: Abbrev Number: 13 (DW_TAG_enumerator) + <9242> DW_AT_name : (indirect string, offset: 0x9eed): SYS_unlink + <9246> DW_AT_const_value : 99 + <2><9247>: Abbrev Number: 13 (DW_TAG_enumerator) + <9248> DW_AT_name : (indirect string, offset: 0x9504): SYS_pthread_barrier_wait + <924c> DW_AT_const_value : 100 + <2><924d>: Abbrev Number: 13 (DW_TAG_enumerator) + <924e> DW_AT_name : (indirect string, offset: 0x9763): SYS_pthread_cancel + <9252> DW_AT_const_value : 101 + <2><9253>: Abbrev Number: 13 (DW_TAG_enumerator) + <9254> DW_AT_name : (indirect string, offset: 0x9a2e): SYS_pthread_cond_broadcast + <9258> DW_AT_const_value : 102 + <2><9259>: Abbrev Number: 13 (DW_TAG_enumerator) + <925a> DW_AT_name : (indirect string, offset: 0x9641): SYS_pthread_cond_signal + <925e> DW_AT_const_value : 103 + <2><925f>: Abbrev Number: 13 (DW_TAG_enumerator) + <9260> DW_AT_name : (indirect string, offset: 0x94af): SYS_pthread_cond_wait + <9264> DW_AT_const_value : 104 + <2><9265>: Abbrev Number: 13 (DW_TAG_enumerator) + <9266> DW_AT_name : (indirect string, offset: 0x9732): SYS_nx_pthread_create + <926a> DW_AT_const_value : 105 + <2><926b>: Abbrev Number: 13 (DW_TAG_enumerator) + <926c> DW_AT_name : (indirect string, offset: 0x959d): SYS_pthread_detach + <9270> DW_AT_const_value : 106 + <2><9271>: Abbrev Number: 13 (DW_TAG_enumerator) + <9272> DW_AT_name : (indirect string, offset: 0x9ac3): SYS_nx_pthread_exit + <9276> DW_AT_const_value : 107 + <2><9277>: Abbrev Number: 13 (DW_TAG_enumerator) + <9278> DW_AT_name : (indirect string, offset: 0x9531): SYS_pthread_getschedparam + <927c> DW_AT_const_value : 108 + <2><927d>: Abbrev Number: 13 (DW_TAG_enumerator) + <927e> DW_AT_name : (indirect string, offset: 0x9e90): SYS_pthread_join + <9282> DW_AT_const_value : 109 + <2><9283>: Abbrev Number: 13 (DW_TAG_enumerator) + <9284> DW_AT_name : (indirect string, offset: 0x95ea): SYS_pthread_mutex_destroy + <9288> DW_AT_const_value : 110 + <2><9289>: Abbrev Number: 13 (DW_TAG_enumerator) + <928a> DW_AT_name : (indirect string, offset: 0x9c52): SYS_pthread_mutex_init + <928e> DW_AT_const_value : 111 + <2><928f>: Abbrev Number: 13 (DW_TAG_enumerator) + <9290> DW_AT_name : (indirect string, offset: 0x9c03): SYS_pthread_mutex_timedlock + <9294> DW_AT_const_value : 112 + <2><9295>: Abbrev Number: 13 (DW_TAG_enumerator) + <9296> DW_AT_name : (indirect string, offset: 0x94d9): SYS_pthread_mutex_trylock + <929a> DW_AT_const_value : 113 + <2><929b>: Abbrev Number: 13 (DW_TAG_enumerator) + <929c> DW_AT_name : (indirect string, offset: 0x997f): SYS_pthread_mutex_unlock + <92a0> DW_AT_const_value : 114 + <2><92a1>: Abbrev Number: 13 (DW_TAG_enumerator) + <92a2> DW_AT_name : (indirect string, offset: 0x9d19): SYS_pthread_mutex_consistent + <92a6> DW_AT_const_value : 115 + <2><92a7>: Abbrev Number: 13 (DW_TAG_enumerator) + <92a8> DW_AT_name : (indirect string, offset: 0x96b3): SYS_pthread_setschedparam + <92ac> DW_AT_const_value : 116 + <2><92ad>: Abbrev Number: 13 (DW_TAG_enumerator) + <92ae> DW_AT_name : (indirect string, offset: 0x970a): SYS_pthread_setschedprio + <92b2> DW_AT_const_value : 117 + <2><92b3>: Abbrev Number: 13 (DW_TAG_enumerator) + <92b4> DW_AT_name : (indirect string, offset: 0x9cd6): SYS_pthread_cond_clockwait + <92b8> DW_AT_const_value : 118 + <2><92b9>: Abbrev Number: 13 (DW_TAG_enumerator) + <92ba> DW_AT_name : (indirect string, offset: 0x9d56): SYS_pthread_sigmask + <92be> DW_AT_const_value : 119 + <2><92bf>: Abbrev Number: 13 (DW_TAG_enumerator) + <92c0> DW_AT_name : (indirect string, offset: 0x9838): SYS_mq_close + <92c4> DW_AT_const_value : 120 + <2><92c5>: Abbrev Number: 13 (DW_TAG_enumerator) + <92c6> DW_AT_name : (indirect string, offset: 0x9723): SYS_mq_getattr + <92ca> DW_AT_const_value : 121 + <2><92cb>: Abbrev Number: 13 (DW_TAG_enumerator) + <92cc> DW_AT_name : (indirect string, offset: 0x9939): SYS_mq_notify + <92d0> DW_AT_const_value : 122 + <2><92d1>: Abbrev Number: 13 (DW_TAG_enumerator) + <92d2> DW_AT_name : (indirect string, offset: 0x9cf1): SYS_mq_open + <92d6> DW_AT_const_value : 123 + <2><92d7>: Abbrev Number: 13 (DW_TAG_enumerator) + <92d8> DW_AT_name : (indirect string, offset: 0x97c1): SYS_mq_receive + <92dc> DW_AT_const_value : 124 + <2><92dd>: Abbrev Number: 13 (DW_TAG_enumerator) + <92de> DW_AT_name : (indirect string, offset: 0x9a54): SYS_mq_send + <92e2> DW_AT_const_value : 125 + <2><92e3>: Abbrev Number: 13 (DW_TAG_enumerator) + <92e4> DW_AT_name : (indirect string, offset: 0x9b57): SYS_mq_setattr + <92e8> DW_AT_const_value : 126 + <2><92e9>: Abbrev Number: 13 (DW_TAG_enumerator) + <92ea> DW_AT_name : (indirect string, offset: 0x9aa4): SYS_mq_timedreceive + <92ee> DW_AT_const_value : 127 + <2><92ef>: Abbrev Number: 13 (DW_TAG_enumerator) + <92f0> DW_AT_name : (indirect string, offset: 0x958c): SYS_mq_timedsend + <92f4> DW_AT_const_value : 128 + <2><92f5>: Abbrev Number: 13 (DW_TAG_enumerator) + <92f6> DW_AT_name : (indirect string, offset: 0x9881): SYS_mq_unlink + <92fa> DW_AT_const_value : 129 + <2><92fb>: Abbrev Number: 13 (DW_TAG_enumerator) + <92fc> DW_AT_name : (indirect string, offset: 0x9be0): SYS_get_environ_ptr + <9300> DW_AT_const_value : 130 + <2><9301>: Abbrev Number: 13 (DW_TAG_enumerator) + <9302> DW_AT_name : (indirect string, offset: 0x9c45): SYS_clearenv + <9306> DW_AT_const_value : 131 + <2><9307>: Abbrev Number: 13 (DW_TAG_enumerator) + <9308> DW_AT_name : (indirect string, offset: 0x9eb3): SYS_getenv + <930c> DW_AT_const_value : 132 + <2><930d>: Abbrev Number: 13 (DW_TAG_enumerator) + <930e> DW_AT_name : (indirect string, offset: 0x955b): SYS_putenv + <9312> DW_AT_const_value : 133 + <2><9313>: Abbrev Number: 13 (DW_TAG_enumerator) + <9314> DW_AT_name : (indirect string, offset: 0x9b09): SYS_setenv + <9318> DW_AT_const_value : 134 + <2><9319>: Abbrev Number: 13 (DW_TAG_enumerator) + <931a> DW_AT_name : (indirect string, offset: 0x9797): SYS_unsetenv + <931e> DW_AT_const_value : 135 + <2><931f>: Abbrev Number: 13 (DW_TAG_enumerator) + <9320> DW_AT_name : (indirect string, offset: 0x9ebe): SYS_getrandom + <9324> DW_AT_const_value : 136 + <2><9325>: Abbrev Number: 13 (DW_TAG_enumerator) + <9326> DW_AT_name : (indirect string, offset: 0x9680): SYS_nanosleep + <932a> DW_AT_const_value : 137 + <2><932b>: Abbrev Number: 13 (DW_TAG_enumerator) + <932c> DW_AT_name : (indirect string, offset: 0x9e28): SYS_epoll_create1 + <9330> DW_AT_const_value : 138 + <2><9331>: Abbrev Number: 13 (DW_TAG_enumerator) + <9332> DW_AT_name : (indirect string, offset: 0x95ba): SYS_epoll_ctl + <9336> DW_AT_const_value : 139 + <2><9337>: Abbrev Number: 13 (DW_TAG_enumerator) + <9338> DW_AT_name : (indirect string, offset: 0x99e6): SYS_epoll_wait + <933c> DW_AT_const_value : 140 + <2><933d>: Abbrev Number: 13 (DW_TAG_enumerator) + <933e> DW_AT_name : (indirect string, offset: 0x9c2b): SYS_time + <9342> DW_AT_const_value : 141 + <2><9343>: Abbrev Number: 13 (DW_TAG_enumerator) + <9344> DW_AT_name : (indirect string, offset: 0x9c34): SYS_gettimeofday + <9348> DW_AT_const_value : 142 + <2><9349>: Abbrev Number: 13 (DW_TAG_enumerator) + <934a> DW_AT_name : (indirect string, offset: 0x9b46): SYS_settimeofday + <934e> DW_AT_const_value : 143 + <2><934f>: Abbrev Number: 13 (DW_TAG_enumerator) + <9350> DW_AT_name : (indirect string, offset: 0x9748): SYS_signal + <9354> DW_AT_const_value : 144 + <2><9355>: Abbrev Number: 13 (DW_TAG_enumerator) + <9356> DW_AT_name : (indirect string, offset: 0x9bf4): SYS_maxsyscall + <935a> DW_AT_const_value : 145 + <2><935b>: Abbrev Number: 0 + <1><935c>: Abbrev Number: 14 (DW_TAG_subprogram) + <935d> DW_AT_external : 1 + <935d> DW_AT_name : (indirect string, offset: 0x98f2): nxsem_destroy + <9361> DW_AT_decl_file : 8 + <9362> DW_AT_decl_line : 151 + <9363> DW_AT_decl_column : 5 + <9364> DW_AT_prototyped : 1 + <9364> DW_AT_type : <0x8ef5> + <9368> DW_AT_low_pc : 0xdd0 + <9370> DW_AT_high_pc : 0xe + <9378> DW_AT_frame_base : 1 byte block: 9c (DW_OP_call_frame_cfa) + <937a> DW_AT_GNU_all_call_sites: 1 + <937a> DW_AT_sibling : <0x93c8> + <2><937e>: Abbrev Number: 15 (DW_TAG_formal_parameter) + <937f> DW_AT_name : (indirect string, offset: 0x9bd5): parm1 + <9383> DW_AT_decl_file : 1 + <9384> DW_AT_decl_line : 7 + <9385> DW_AT_decl_column : 31 + <9386> DW_AT_type : <0x93c8> + <938a> DW_AT_location : 0x3391 (location list) + <2><938e>: Abbrev Number: 16 (DW_TAG_inlined_subroutine) + <938f> DW_AT_abstract_origin: <0x93ce> + <9393> DW_AT_low_pc : 0xdd2 + <939b> DW_AT_high_pc : 0x8 + <93a3> DW_AT_call_file : 1 + <93a4> DW_AT_call_line : 9 + <93a5> DW_AT_call_column : 15 + <3><93a6>: Abbrev Number: 17 (DW_TAG_formal_parameter) + <93a7> DW_AT_abstract_origin: <0x93db> + <93ab> DW_AT_location : 0x33c7 (location list) + <3><93af>: Abbrev Number: 17 (DW_TAG_formal_parameter) + <93b0> DW_AT_abstract_origin: <0x93e7> + <93b4> DW_AT_location : 0x33eb (location list) + <3><93b8>: Abbrev Number: 18 (DW_TAG_variable) + <93b9> DW_AT_abstract_origin: <0x93f3> + <93bd> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <3><93bf>: Abbrev Number: 18 (DW_TAG_variable) + <93c0> DW_AT_abstract_origin: <0x93fe> + <93c4> DW_AT_location : 1 byte block: 5b (DW_OP_reg11 (a1)) + <3><93c6>: Abbrev Number: 0 + <2><93c7>: Abbrev Number: 0 + <1><93c8>: Abbrev Number: 8 (DW_TAG_pointer_type) + <93c9> DW_AT_byte_size : 8 + <93ca> DW_AT_type : <0x9005> + <1><93ce>: Abbrev Number: 19 (DW_TAG_subprogram) + <93cf> DW_AT_name : (indirect string, offset: 0x99f5): sys_call1 + <93d3> DW_AT_decl_file : 2 + <93d4> DW_AT_decl_line : 197 + <93d5> DW_AT_decl_column : 25 + <93d6> DW_AT_prototyped : 1 + <93d6> DW_AT_type : <0x8f41> + <93da> DW_AT_inline : 3 (declared as inline and inlined) + <2><93db>: Abbrev Number: 20 (DW_TAG_formal_parameter) + <93dc> DW_AT_name : nbr + <93e0> DW_AT_decl_file : 2 + <93e1> DW_AT_decl_line : 197 + <93e2> DW_AT_decl_column : 48 + <93e3> DW_AT_type : <0x8efc> + <2><93e7>: Abbrev Number: 21 (DW_TAG_formal_parameter) + <93e8> DW_AT_name : (indirect string, offset: 0x9bd5): parm1 + <93ec> DW_AT_decl_file : 2 + <93ed> DW_AT_decl_line : 197 + <93ee> DW_AT_decl_column : 63 + <93ef> DW_AT_type : <0x8f41> + <2><93f3>: Abbrev Number: 22 (DW_TAG_variable) + <93f4> DW_AT_name : r0 + <93f7> DW_AT_decl_file : 2 + <93f8> DW_AT_decl_line : 199 + <93f9> DW_AT_decl_column : 17 + <93fa> DW_AT_type : <0x8f03> + <2><93fe>: Abbrev Number: 22 (DW_TAG_variable) + <93ff> DW_AT_name : r1 + <9402> DW_AT_decl_file : 2 + <9403> DW_AT_decl_line : 200 + <9404> DW_AT_decl_column : 17 + <9405> DW_AT_type : <0x8f03> + <2><9409>: Abbrev Number: 0 + <1><940a>: Abbrev Number: 0 + Compilation Unit @ offset 0x940b: + Length: 0x570 (32-bit) + Version: 4 + Abbrev Offset: 0x2b5c + Pointer Size: 8 + <0><9416>: Abbrev Number: 1 (DW_TAG_compile_unit) + <9417> DW_AT_producer : (indirect string, offset: 0xa7ad): GNU C17 10.2.0 -mcmodel=medany -march=rv64imafdc -mabi=lp64d -march=rv64imafdc -g -Os -fno-common -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections + <941b> DW_AT_language : 12 (ANSI C99) + <941c> DW_AT_name : (indirect string, offset: 0xa6f1): proxies/PROXY_nxsem_post.c + <9420> DW_AT_comp_dir : (indirect string, offset: 0xa5ec): /Users/Luppy/ox64/nuttx/syscall + <9424> DW_AT_ranges : 0x8d0 + <9428> DW_AT_low_pc : 0x0 + <9430> DW_AT_stmt_list : 0x4d8f + <1><9434>: Abbrev Number: 2 (DW_TAG_base_type) + <9435> DW_AT_byte_size : 1 + <9436> DW_AT_encoding : 6 (signed char) + <9437> DW_AT_name : (indirect string, offset: 0xa0bd): signed char + <1><943b>: Abbrev Number: 3 (DW_TAG_typedef) + <943c> DW_AT_name : (indirect string, offset: 0xa5b4): _uint8_t + <9440> DW_AT_decl_file : 3 + <9441> DW_AT_decl_line : 52 + <9442> DW_AT_decl_column : 28 + <9443> DW_AT_type : <0x9447> + <1><9447>: Abbrev Number: 2 (DW_TAG_base_type) + <9448> DW_AT_byte_size : 1 + <9449> DW_AT_encoding : 8 (unsigned char) + <944a> DW_AT_name : (indirect string, offset: 0xa50e): unsigned char + <1><944e>: Abbrev Number: 3 (DW_TAG_typedef) + <944f> DW_AT_name : (indirect string, offset: 0xa8ed): _int16_t + <9453> DW_AT_decl_file : 3 + <9454> DW_AT_decl_line : 54 + <9455> DW_AT_decl_column : 28 + <9456> DW_AT_type : <0x945a> + <1><945a>: Abbrev Number: 2 (DW_TAG_base_type) + <945b> DW_AT_byte_size : 2 + <945c> DW_AT_encoding : 5 (signed) + <945d> DW_AT_name : (indirect string, offset: 0xa54b): short int + <1><9461>: Abbrev Number: 2 (DW_TAG_base_type) + <9462> DW_AT_byte_size : 2 + <9463> DW_AT_encoding : 7 (unsigned) + <9464> DW_AT_name : (indirect string, offset: 0xa2d8): short unsigned int + <1><9468>: Abbrev Number: 4 (DW_TAG_base_type) + <9469> DW_AT_byte_size : 4 + <946a> DW_AT_encoding : 5 (signed) + <946b> DW_AT_name : int + <1><946f>: Abbrev Number: 2 (DW_TAG_base_type) + <9470> DW_AT_byte_size : 4 + <9471> DW_AT_encoding : 7 (unsigned) + <9472> DW_AT_name : (indirect string, offset: 0xa266): unsigned int + <1><9476>: Abbrev Number: 2 (DW_TAG_base_type) + <9477> DW_AT_byte_size : 8 + <9478> DW_AT_encoding : 5 (signed) + <9479> DW_AT_name : (indirect string, offset: 0xa134): long int + <1><947d>: Abbrev Number: 2 (DW_TAG_base_type) + <947e> DW_AT_byte_size : 8 + <947f> DW_AT_encoding : 7 (unsigned) + <9480> DW_AT_name : (indirect string, offset: 0xa28e): long unsigned int + <1><9484>: Abbrev Number: 3 (DW_TAG_typedef) + <9485> DW_AT_name : (indirect string, offset: 0xa37e): _size_t + <9489> DW_AT_decl_file : 3 + <948a> DW_AT_decl_line : 93 + <948b> DW_AT_decl_column : 28 + <948c> DW_AT_type : <0x947d> + <1><9490>: Abbrev Number: 2 (DW_TAG_base_type) + <9491> DW_AT_byte_size : 8 + <9492> DW_AT_encoding : 7 (unsigned) + <9493> DW_AT_name : (indirect string, offset: 0xa01c): long long unsigned int + <1><9497>: Abbrev Number: 3 (DW_TAG_typedef) + <9498> DW_AT_name : (indirect string, offset: 0xa85d): uint8_t + <949c> DW_AT_decl_file : 4 + <949d> DW_AT_decl_line : 166 + <949e> DW_AT_decl_column : 29 + <949f> DW_AT_type : <0x943b> + <1><94a3>: Abbrev Number: 3 (DW_TAG_typedef) + <94a4> DW_AT_name : (indirect string, offset: 0xa0ac): int16_t + <94a8> DW_AT_decl_file : 4 + <94a9> DW_AT_decl_line : 168 + <94aa> DW_AT_decl_column : 29 + <94ab> DW_AT_type : <0x944e> + <1><94af>: Abbrev Number: 5 (DW_TAG_volatile_type) + <94b0> DW_AT_type : <0x94a3> + <1><94b4>: Abbrev Number: 3 (DW_TAG_typedef) + <94b5> DW_AT_name : (indirect string, offset: 0x9f66): uintptr_t + <94b9> DW_AT_decl_file : 4 + <94ba> DW_AT_decl_line : 239 + <94bb> DW_AT_decl_column : 29 + <94bc> DW_AT_type : <0x9484> + <1><94c0>: Abbrev Number: 2 (DW_TAG_base_type) + <94c1> DW_AT_byte_size : 1 + <94c2> DW_AT_encoding : 8 (unsigned char) + <94c3> DW_AT_name : (indirect string, offset: 0xa612): char + <1><94c7>: Abbrev Number: 6 (DW_TAG_structure_type) + <94c8> DW_AT_name : (indirect string, offset: 0xa87d): dq_entry_s + <94cc> DW_AT_byte_size : 16 + <94cd> DW_AT_decl_file : 5 + <94ce> DW_AT_decl_line : 303 + <94d0> DW_AT_decl_column : 8 + <94d1> DW_AT_sibling : <0x94f2> + <2><94d5>: Abbrev Number: 7 (DW_TAG_member) + <94d6> DW_AT_name : (indirect string, offset: 0xa2a0): flink + <94da> DW_AT_decl_file : 5 + <94db> DW_AT_decl_line : 305 + <94dd> DW_AT_decl_column : 26 + <94de> DW_AT_type : <0x94f2> + <94e2> DW_AT_data_member_location: 0 + <2><94e3>: Abbrev Number: 7 (DW_TAG_member) + <94e4> DW_AT_name : (indirect string, offset: 0xa740): blink + <94e8> DW_AT_decl_file : 5 + <94e9> DW_AT_decl_line : 306 + <94eb> DW_AT_decl_column : 26 + <94ec> DW_AT_type : <0x94f2> + <94f0> DW_AT_data_member_location: 8 + <2><94f1>: Abbrev Number: 0 + <1><94f2>: Abbrev Number: 8 (DW_TAG_pointer_type) + <94f3> DW_AT_byte_size : 8 + <94f4> DW_AT_type : <0x94c7> + <1><94f8>: Abbrev Number: 9 (DW_TAG_typedef) + <94f9> DW_AT_name : (indirect string, offset: 0xa888): dq_entry_t + <94fd> DW_AT_decl_file : 5 + <94fe> DW_AT_decl_line : 308 + <9500> DW_AT_decl_column : 27 + <9501> DW_AT_type : <0x94c7> + <1><9505>: Abbrev Number: 6 (DW_TAG_structure_type) + <9506> DW_AT_name : (indirect string, offset: 0xa567): dq_queue_s + <950a> DW_AT_byte_size : 16 + <950b> DW_AT_decl_file : 5 + <950c> DW_AT_decl_line : 317 + <950e> DW_AT_decl_column : 8 + <950f> DW_AT_sibling : <0x9530> + <2><9513>: Abbrev Number: 7 (DW_TAG_member) + <9514> DW_AT_name : (indirect string, offset: 0xa5bd): head + <9518> DW_AT_decl_file : 5 + <9519> DW_AT_decl_line : 319 + <951b> DW_AT_decl_column : 19 + <951c> DW_AT_type : <0x9530> + <9520> DW_AT_data_member_location: 0 + <2><9521>: Abbrev Number: 7 (DW_TAG_member) + <9522> DW_AT_name : (indirect string, offset: 0xa403): tail + <9526> DW_AT_decl_file : 5 + <9527> DW_AT_decl_line : 320 + <9529> DW_AT_decl_column : 19 + <952a> DW_AT_type : <0x9530> + <952e> DW_AT_data_member_location: 8 + <2><952f>: Abbrev Number: 0 + <1><9530>: Abbrev Number: 8 (DW_TAG_pointer_type) + <9531> DW_AT_byte_size : 8 + <9532> DW_AT_type : <0x94f8> + <1><9536>: Abbrev Number: 9 (DW_TAG_typedef) + <9537> DW_AT_name : (indirect string, offset: 0xa572): dq_queue_t + <953b> DW_AT_decl_file : 5 + <953c> DW_AT_decl_line : 322 + <953e> DW_AT_decl_column : 27 + <953f> DW_AT_type : <0x9505> + <1><9543>: Abbrev Number: 10 (DW_TAG_structure_type) + <9544> DW_AT_name : (indirect string, offset: 0xa8b6): sem_s + <9548> DW_AT_byte_size : 24 + <9549> DW_AT_decl_file : 6 + <954a> DW_AT_decl_line : 99 + <954b> DW_AT_decl_column : 8 + <954c> DW_AT_sibling : <0x9578> + <2><9550>: Abbrev Number: 11 (DW_TAG_member) + <9551> DW_AT_name : (indirect string, offset: 0xa314): semcount + <9555> DW_AT_decl_file : 6 + <9556> DW_AT_decl_line : 101 + <9557> DW_AT_decl_column : 20 + <9558> DW_AT_type : <0x94af> + <955c> DW_AT_data_member_location: 0 + <2><955d>: Abbrev Number: 11 (DW_TAG_member) + <955e> DW_AT_name : (indirect string, offset: 0xa865): flags + <9562> DW_AT_decl_file : 6 + <9563> DW_AT_decl_line : 108 + <9564> DW_AT_decl_column : 11 + <9565> DW_AT_type : <0x9497> + <9569> DW_AT_data_member_location: 2 + <2><956a>: Abbrev Number: 11 (DW_TAG_member) + <956b> DW_AT_name : (indirect string, offset: 0xa14a): waitlist + <956f> DW_AT_decl_file : 6 + <9570> DW_AT_decl_line : 110 + <9571> DW_AT_decl_column : 14 + <9572> DW_AT_type : <0x9536> + <9576> DW_AT_data_member_location: 8 + <2><9577>: Abbrev Number: 0 + <1><9578>: Abbrev Number: 3 (DW_TAG_typedef) + <9579> DW_AT_name : (indirect string, offset: 0xa8bc): sem_t + <957d> DW_AT_decl_file : 6 + <957e> DW_AT_decl_line : 121 + <957f> DW_AT_decl_column : 22 + <9580> DW_AT_type : <0x9543> + <1><9584>: Abbrev Number: 12 (DW_TAG_enumeration_type) + <9585> DW_AT_encoding : 7 (unsigned) + <9586> DW_AT_byte_size : 4 + <9587> DW_AT_type : <0x946f> + <958b> DW_AT_decl_file : 7 + <958c> DW_AT_decl_line : 57 + <958d> DW_AT_decl_column : 1 + <958e> DW_AT_sibling : <0x98cf> + <2><9592>: Abbrev Number: 13 (DW_TAG_enumerator) + <9593> DW_AT_name : (indirect string, offset: 0xa408): SYS__exit + <9597> DW_AT_const_value : 8 + <2><9598>: Abbrev Number: 13 (DW_TAG_enumerator) + <9599> DW_AT_name : (indirect string, offset: 0xa48c): SYS__assert + <959d> DW_AT_const_value : 9 + <2><959e>: Abbrev Number: 13 (DW_TAG_enumerator) + <959f> DW_AT_name : (indirect string, offset: 0xa235): SYS_getpid + <95a3> DW_AT_const_value : 10 + <2><95a4>: Abbrev Number: 13 (DW_TAG_enumerator) + <95a5> DW_AT_name : (indirect string, offset: 0xa4a3): SYS_gettid + <95a9> DW_AT_const_value : 11 + <2><95aa>: Abbrev Number: 13 (DW_TAG_enumerator) + <95ab> DW_AT_name : (indirect string, offset: 0xa926): SYS_prctl + <95af> DW_AT_const_value : 12 + <2><95b0>: Abbrev Number: 13 (DW_TAG_enumerator) + <95b1> DW_AT_name : (indirect string, offset: 0xa077): SYS_sched_getparam + <95b5> DW_AT_const_value : 13 + <2><95b6>: Abbrev Number: 13 (DW_TAG_enumerator) + <95b7> DW_AT_name : (indirect string, offset: 0xa90f): SYS_sched_getscheduler + <95bb> DW_AT_const_value : 14 + <2><95bc>: Abbrev Number: 13 (DW_TAG_enumerator) + <95bd> DW_AT_name : (indirect string, offset: 0xa42b): SYS_sched_lock + <95c1> DW_AT_const_value : 15 + <2><95c2>: Abbrev Number: 13 (DW_TAG_enumerator) + <95c3> DW_AT_name : (indirect string, offset: 0xa779): SYS_sched_lockcount + <95c7> DW_AT_const_value : 16 + <2><95c8>: Abbrev Number: 13 (DW_TAG_enumerator) + <95c9> DW_AT_name : (indirect string, offset: 0xa6b0): SYS_sched_rr_get_interval + <95cd> DW_AT_const_value : 17 + <2><95ce>: Abbrev Number: 13 (DW_TAG_enumerator) + <95cf> DW_AT_name : (indirect string, offset: 0xa69d): SYS_sched_setparam + <95d3> DW_AT_const_value : 18 + <2><95d4>: Abbrev Number: 13 (DW_TAG_enumerator) + <95d5> DW_AT_name : (indirect string, offset: 0xa394): SYS_sched_setscheduler + <95d9> DW_AT_const_value : 19 + <2><95da>: Abbrev Number: 13 (DW_TAG_enumerator) + <95db> DW_AT_name : (indirect string, offset: 0xa8c2): SYS_sched_unlock + <95df> DW_AT_const_value : 20 + <2><95e0>: Abbrev Number: 13 (DW_TAG_enumerator) + <95e1> DW_AT_name : (indirect string, offset: 0x9f94): SYS_sched_yield + <95e5> DW_AT_const_value : 21 + <2><95e6>: Abbrev Number: 13 (DW_TAG_enumerator) + <95e7> DW_AT_name : (indirect string, offset: 0xa5d2): SYS_nxsched_get_stackinfo + <95eb> DW_AT_const_value : 22 + <2><95ec>: Abbrev Number: 13 (DW_TAG_enumerator) + <95ed> DW_AT_name : (indirect string, offset: 0xa44e): SYS_sysinfo + <95f1> DW_AT_const_value : 23 + <2><95f2>: Abbrev Number: 13 (DW_TAG_enumerator) + <95f3> DW_AT_name : (indirect string, offset: 0xa5c2): SYS_gethostname + <95f7> DW_AT_const_value : 24 + <2><95f8>: Abbrev Number: 13 (DW_TAG_enumerator) + <95f9> DW_AT_name : (indirect string, offset: 0xa24a): SYS_sethostname + <95fd> DW_AT_const_value : 25 + <2><95fe>: Abbrev Number: 13 (DW_TAG_enumerator) + <95ff> DW_AT_name : (indirect string, offset: 0xa2b8): SYS_nxsem_destroy + <9603> DW_AT_const_value : 26 + <2><9604>: Abbrev Number: 13 (DW_TAG_enumerator) + <9605> DW_AT_name : (indirect string, offset: 0xa4cc): SYS_nxsem_post + <9609> DW_AT_const_value : 27 + <2><960a>: Abbrev Number: 13 (DW_TAG_enumerator) + <960b> DW_AT_name : (indirect string, offset: 0xa116): SYS_nxsem_clockwait + <960f> DW_AT_const_value : 28 + <2><9610>: Abbrev Number: 13 (DW_TAG_enumerator) + <9611> DW_AT_name : (indirect string, offset: 0xa336): SYS_nxsem_timedwait + <9615> DW_AT_const_value : 29 + <2><9616>: Abbrev Number: 13 (DW_TAG_enumerator) + <9617> DW_AT_name : (indirect string, offset: 0xa3d1): SYS_nxsem_trywait + <961b> DW_AT_const_value : 30 + <2><961c>: Abbrev Number: 13 (DW_TAG_enumerator) + <961d> DW_AT_name : (indirect string, offset: 0x9faf): SYS_nxsem_wait + <9621> DW_AT_const_value : 31 + <2><9622>: Abbrev Number: 13 (DW_TAG_enumerator) + <9623> DW_AT_name : (indirect string, offset: 0xa78d): SYS_pgalloc + <9627> DW_AT_const_value : 32 + <2><9628>: Abbrev Number: 13 (DW_TAG_enumerator) + <9629> DW_AT_name : (indirect string, offset: 0xa5a8): SYS_up_fork + <962d> DW_AT_const_value : 33 + <2><962e>: Abbrev Number: 13 (DW_TAG_enumerator) + <962f> DW_AT_name : (indirect string, offset: 0xa647): SYS_waitpid + <9633> DW_AT_const_value : 34 + <2><9634>: Abbrev Number: 13 (DW_TAG_enumerator) + <9635> DW_AT_name : (indirect string, offset: 0xa067): SYS_posix_spawn + <9639> DW_AT_const_value : 35 + <2><963a>: Abbrev Number: 13 (DW_TAG_enumerator) + <963b> DW_AT_name : (indirect string, offset: 0xa59d): SYS_execve + <963f> DW_AT_const_value : 36 + <2><9640>: Abbrev Number: 13 (DW_TAG_enumerator) + <9641> DW_AT_name : (indirect string, offset: 0xa537): SYS_kill + <9645> DW_AT_const_value : 37 + <2><9646>: Abbrev Number: 13 (DW_TAG_enumerator) + <9647> DW_AT_name : (indirect string, offset: 0x9f17): SYS_tgkill + <964b> DW_AT_const_value : 38 + <2><964c>: Abbrev Number: 13 (DW_TAG_enumerator) + <964d> DW_AT_name : (indirect string, offset: 0xa273): SYS_sigaction + <9651> DW_AT_const_value : 39 + <2><9652>: Abbrev Number: 13 (DW_TAG_enumerator) + <9653> DW_AT_name : (indirect string, offset: 0xa51c): SYS_sigpending + <9657> DW_AT_const_value : 40 + <2><9658>: Abbrev Number: 13 (DW_TAG_enumerator) + <9659> DW_AT_name : (indirect string, offset: 0xa19c): SYS_sigprocmask + <965d> DW_AT_const_value : 41 + <2><965e>: Abbrev Number: 13 (DW_TAG_enumerator) + <965f> DW_AT_name : (indirect string, offset: 0xa74f): SYS_sigqueue + <9663> DW_AT_const_value : 42 + <2><9664>: Abbrev Number: 13 (DW_TAG_enumerator) + <9665> DW_AT_name : (indirect string, offset: 0xa3f4): SYS_sigsuspend + <9669> DW_AT_const_value : 43 + <2><966a>: Abbrev Number: 13 (DW_TAG_enumerator) + <966b> DW_AT_name : (indirect string, offset: 0xa0e1): SYS_sigtimedwait + <966f> DW_AT_const_value : 44 + <2><9670>: Abbrev Number: 13 (DW_TAG_enumerator) + <9671> DW_AT_name : (indirect string, offset: 0xa057): SYS_sigwaitinfo + <9675> DW_AT_const_value : 45 + <2><9676>: Abbrev Number: 13 (DW_TAG_enumerator) + <9677> DW_AT_name : (indirect string, offset: 0xa43a): SYS_clock_nanosleep + <967b> DW_AT_const_value : 46 + <2><967c>: Abbrev Number: 13 (DW_TAG_enumerator) + <967d> DW_AT_name : (indirect string, offset: 0x9ff9): SYS_clock + <9681> DW_AT_const_value : 47 + <2><9682>: Abbrev Number: 13 (DW_TAG_enumerator) + <9683> DW_AT_name : (indirect string, offset: 0xa6df): SYS_clock_gettime + <9687> DW_AT_const_value : 48 + <2><9688>: Abbrev Number: 13 (DW_TAG_enumerator) + <9689> DW_AT_name : (indirect string, offset: 0xa219): SYS_clock_settime + <968d> DW_AT_const_value : 49 + <2><968e>: Abbrev Number: 13 (DW_TAG_enumerator) + <968f> DW_AT_name : (indirect string, offset: 0x9f3c): SYS_timer_create + <9693> DW_AT_const_value : 50 + <2><9694>: Abbrev Number: 13 (DW_TAG_enumerator) + <9695> DW_AT_name : (indirect string, offset: 0xa3e3): SYS_timer_delete + <9699> DW_AT_const_value : 51 + <2><969a>: Abbrev Number: 13 (DW_TAG_enumerator) + <969b> DW_AT_name : (indirect string, offset: 0xa2f5): SYS_timer_getoverrun + <969f> DW_AT_const_value : 52 + <2><96a0>: Abbrev Number: 13 (DW_TAG_enumerator) + <96a1> DW_AT_name : (indirect string, offset: 0xa1ed): SYS_timer_gettime + <96a5> DW_AT_const_value : 53 + <2><96a6>: Abbrev Number: 13 (DW_TAG_enumerator) + <96a7> DW_AT_name : (indirect string, offset: 0xa2a6): SYS_timer_settime + <96ab> DW_AT_const_value : 54 + <2><96ac>: Abbrev Number: 13 (DW_TAG_enumerator) + <96ad> DW_AT_name : (indirect string, offset: 0xa386): SYS_getitimer + <96b1> DW_AT_const_value : 55 + <2><96b2>: Abbrev Number: 13 (DW_TAG_enumerator) + <96b3> DW_AT_name : (indirect string, offset: 0xa1bf): SYS_setitimer + <96b7> DW_AT_const_value : 56 + <2><96b8>: Abbrev Number: 13 (DW_TAG_enumerator) + <96b9> DW_AT_name : (indirect string, offset: 0xa34a): SYS_nx_vsyslog + <96bd> DW_AT_const_value : 57 + <2><96be>: Abbrev Number: 13 (DW_TAG_enumerator) + <96bf> DW_AT_name : (indirect string, offset: 0xa0f2): SYS_close + <96c3> DW_AT_const_value : 58 + <2><96c4>: Abbrev Number: 13 (DW_TAG_enumerator) + <96c5> DW_AT_name : (indirect string, offset: 0xa8ac): SYS_ioctl + <96c9> DW_AT_const_value : 59 + <2><96ca>: Abbrev Number: 13 (DW_TAG_enumerator) + <96cb> DW_AT_name : (indirect string, offset: 0xa0b4): SYS_read + <96cf> DW_AT_const_value : 60 + <2><96d0>: Abbrev Number: 13 (DW_TAG_enumerator) + <96d1> DW_AT_name : (indirect string, offset: 0xa22b): SYS_write + <96d5> DW_AT_const_value : 61 + <2><96d6>: Abbrev Number: 13 (DW_TAG_enumerator) + <96d7> DW_AT_name : (indirect string, offset: 0xa04d): SYS_pread + <96db> DW_AT_const_value : 62 + <2><96dc>: Abbrev Number: 13 (DW_TAG_enumerator) + <96dd> DW_AT_name : (indirect string, offset: 0xa475): SYS_pwrite + <96e1> DW_AT_const_value : 63 + <2><96e2>: Abbrev Number: 13 (DW_TAG_enumerator) + <96e3> DW_AT_name : (indirect string, offset: 0x9f0e): SYS_poll + <96e7> DW_AT_const_value : 64 + <2><96e8>: Abbrev Number: 13 (DW_TAG_enumerator) + <96e9> DW_AT_name : (indirect string, offset: 0xa011): SYS_select + <96ed> DW_AT_const_value : 65 + <2><96ee>: Abbrev Number: 13 (DW_TAG_enumerator) + <96ef> DW_AT_name : (indirect string, offset: 0x9fbe): SYS_ppoll + <96f3> DW_AT_const_value : 66 + <2><96f4>: Abbrev Number: 13 (DW_TAG_enumerator) + <96f5> DW_AT_name : (indirect string, offset: 0xa359): SYS_pselect + <96f9> DW_AT_const_value : 67 + <2><96fa>: Abbrev Number: 13 (DW_TAG_enumerator) + <96fb> DW_AT_name : (indirect string, offset: 0xa13d): SYS_boardctl + <96ff> DW_AT_const_value : 68 + <2><9700>: Abbrev Number: 13 (DW_TAG_enumerator) + <9701> DW_AT_name : (indirect string, offset: 0xa4c4): SYS_dup + <9705> DW_AT_const_value : 69 + <2><9706>: Abbrev Number: 13 (DW_TAG_enumerator) + <9707> DW_AT_name : (indirect string, offset: 0xa555): SYS_dup2 + <970b> DW_AT_const_value : 70 + <2><970c>: Abbrev Number: 13 (DW_TAG_enumerator) + <970d> DW_AT_name : (indirect string, offset: 0xa0a2): SYS_fcntl + <9711> DW_AT_const_value : 71 + <2><9712>: Abbrev Number: 13 (DW_TAG_enumerator) + <9713> DW_AT_name : (indirect string, offset: 0xa89e): SYS_ftruncate + <9717> DW_AT_const_value : 72 + <2><9718>: Abbrev Number: 13 (DW_TAG_enumerator) + <9719> DW_AT_name : (indirect string, offset: 0xa12a): SYS_lseek + <971d> DW_AT_const_value : 73 + <2><971e>: Abbrev Number: 13 (DW_TAG_enumerator) + <971f> DW_AT_name : (indirect string, offset: 0xa1d7): SYS_mmap + <9723> DW_AT_const_value : 74 + <2><9724>: Abbrev Number: 13 (DW_TAG_enumerator) + <9725> DW_AT_name : (indirect string, offset: 0xa746): SYS_open + <9729> DW_AT_const_value : 75 + <2><972a>: Abbrev Number: 13 (DW_TAG_enumerator) + <972b> DW_AT_name : (indirect string, offset: 0xa4b9): SYS_rename + <972f> DW_AT_const_value : 76 + <2><9730>: Abbrev Number: 13 (DW_TAG_enumerator) + <9731> DW_AT_name : (indirect string, offset: 0xa8e4): SYS_stat + <9735> DW_AT_const_value : 77 + <2><9736>: Abbrev Number: 13 (DW_TAG_enumerator) + <9737> DW_AT_name : (indirect string, offset: 0xa6d5): SYS_lstat + <973b> DW_AT_const_value : 78 + <2><973c>: Abbrev Number: 13 (DW_TAG_enumerator) + <973d> DW_AT_name : (indirect string, offset: 0x9f70): SYS_fstat + <9741> DW_AT_const_value : 79 + <2><9742>: Abbrev Number: 13 (DW_TAG_enumerator) + <9743> DW_AT_name : (indirect string, offset: 0xa373): SYS_statfs + <9747> DW_AT_const_value : 80 + <2><9748>: Abbrev Number: 13 (DW_TAG_enumerator) + <9749> DW_AT_name : (indirect string, offset: 0xa52b): SYS_fstatfs + <974d> DW_AT_const_value : 81 + <2><974e>: Abbrev Number: 13 (DW_TAG_enumerator) + <974f> DW_AT_name : (indirect string, offset: 0xa70c): SYS_sendfile + <9753> DW_AT_const_value : 82 + <2><9754>: Abbrev Number: 13 (DW_TAG_enumerator) + <9755> DW_AT_name : (indirect string, offset: 0xa55e): SYS_sync + <9759> DW_AT_const_value : 83 + <2><975a>: Abbrev Number: 13 (DW_TAG_enumerator) + <975b> DW_AT_name : (indirect string, offset: 0xa240): SYS_fsync + <975f> DW_AT_const_value : 84 + <2><9760>: Abbrev Number: 13 (DW_TAG_enumerator) + <9761> DW_AT_name : (indirect string, offset: 0xa32c): SYS_chmod + <9765> DW_AT_const_value : 85 + <2><9766>: Abbrev Number: 13 (DW_TAG_enumerator) + <9767> DW_AT_name : (indirect string, offset: 0xa893): SYS_lchmod + <976b> DW_AT_const_value : 86 + <2><976c>: Abbrev Number: 13 (DW_TAG_enumerator) + <976d> DW_AT_name : (indirect string, offset: 0xa498): SYS_fchmod + <9771> DW_AT_const_value : 87 + <2><9772>: Abbrev Number: 13 (DW_TAG_enumerator) + <9773> DW_AT_name : (indirect string, offset: 0xa0d7): SYS_chown + <9777> DW_AT_const_value : 88 + <2><9778>: Abbrev Number: 13 (DW_TAG_enumerator) + <9779> DW_AT_name : (indirect string, offset: 0xa4ef): SYS_lchown + <977d> DW_AT_const_value : 89 + <2><977e>: Abbrev Number: 13 (DW_TAG_enumerator) + <977f> DW_AT_name : (indirect string, offset: 0xa1ff): SYS_fchown + <9783> DW_AT_const_value : 90 + <2><9784>: Abbrev Number: 13 (DW_TAG_enumerator) + <9785> DW_AT_name : (indirect string, offset: 0xa25a): SYS_utimens + <9789> DW_AT_const_value : 91 + <2><978a>: Abbrev Number: 13 (DW_TAG_enumerator) + <978b> DW_AT_name : (indirect string, offset: 0xa3c4): SYS_lutimens + <978f> DW_AT_const_value : 92 + <2><9790>: Abbrev Number: 13 (DW_TAG_enumerator) + <9791> DW_AT_name : (indirect string, offset: 0x9fc8): SYS_futimens + <9795> DW_AT_const_value : 93 + <2><9796>: Abbrev Number: 13 (DW_TAG_enumerator) + <9797> DW_AT_name : (indirect string, offset: 0xa6ca): SYS_munmap + <979b> DW_AT_const_value : 94 + <2><979c>: Abbrev Number: 13 (DW_TAG_enumerator) + <979d> DW_AT_name : (indirect string, offset: 0xa30a): SYS_mount + <97a1> DW_AT_const_value : 95 + <2><97a2>: Abbrev Number: 13 (DW_TAG_enumerator) + <97a3> DW_AT_name : (indirect string, offset: 0xa1cd): SYS_mkdir + <97a7> DW_AT_const_value : 96 + <2><97a8>: Abbrev Number: 13 (DW_TAG_enumerator) + <97a9> DW_AT_name : (indirect string, offset: 0xa2eb): SYS_rmdir + <97ad> DW_AT_const_value : 97 + <2><97ae>: Abbrev Number: 13 (DW_TAG_enumerator) + <97af> DW_AT_name : (indirect string, offset: 0xa691): SYS_umount2 + <97b3> DW_AT_const_value : 98 + <2><97b4>: Abbrev Number: 13 (DW_TAG_enumerator) + <97b5> DW_AT_name : (indirect string, offset: 0xa930): SYS_unlink + <97b9> DW_AT_const_value : 99 + <2><97ba>: Abbrev Number: 13 (DW_TAG_enumerator) + <97bb> DW_AT_name : (indirect string, offset: 0x9f4d): SYS_pthread_barrier_wait + <97bf> DW_AT_const_value : 100 + <2><97c0>: Abbrev Number: 13 (DW_TAG_enumerator) + <97c1> DW_AT_name : (indirect string, offset: 0xa1ac): SYS_pthread_cancel + <97c5> DW_AT_const_value : 101 + <2><97c6>: Abbrev Number: 13 (DW_TAG_enumerator) + <97c7> DW_AT_name : (indirect string, offset: 0xa45a): SYS_pthread_cond_broadcast + <97cb> DW_AT_const_value : 102 + <2><97cc>: Abbrev Number: 13 (DW_TAG_enumerator) + <97cd> DW_AT_name : (indirect string, offset: 0xa08a): SYS_pthread_cond_signal + <97d1> DW_AT_const_value : 103 + <2><97d2>: Abbrev Number: 13 (DW_TAG_enumerator) + <97d3> DW_AT_name : (indirect string, offset: 0x9ef8): SYS_pthread_cond_wait + <97d7> DW_AT_const_value : 104 + <2><97d8>: Abbrev Number: 13 (DW_TAG_enumerator) + <97d9> DW_AT_name : (indirect string, offset: 0xa17b): SYS_nx_pthread_create + <97dd> DW_AT_const_value : 105 + <2><97de>: Abbrev Number: 13 (DW_TAG_enumerator) + <97df> DW_AT_name : (indirect string, offset: 0x9fe6): SYS_pthread_detach + <97e3> DW_AT_const_value : 106 + <2><97e4>: Abbrev Number: 13 (DW_TAG_enumerator) + <97e5> DW_AT_name : (indirect string, offset: 0xa4fa): SYS_nx_pthread_exit + <97e9> DW_AT_const_value : 107 + <2><97ea>: Abbrev Number: 13 (DW_TAG_enumerator) + <97eb> DW_AT_name : (indirect string, offset: 0x9f7a): SYS_pthread_getschedparam + <97ef> DW_AT_const_value : 108 + <2><97f0>: Abbrev Number: 13 (DW_TAG_enumerator) + <97f1> DW_AT_name : (indirect string, offset: 0xa8d3): SYS_pthread_join + <97f5> DW_AT_const_value : 109 + <2><97f6>: Abbrev Number: 13 (DW_TAG_enumerator) + <97f7> DW_AT_name : (indirect string, offset: 0xa033): SYS_pthread_mutex_destroy + <97fb> DW_AT_const_value : 110 + <2><97fc>: Abbrev Number: 13 (DW_TAG_enumerator) + <97fd> DW_AT_name : (indirect string, offset: 0xa67a): SYS_pthread_mutex_init + <9801> DW_AT_const_value : 111 + <2><9802>: Abbrev Number: 13 (DW_TAG_enumerator) + <9803> DW_AT_name : (indirect string, offset: 0xa62b): SYS_pthread_mutex_timedlock + <9807> DW_AT_const_value : 112 + <2><9808>: Abbrev Number: 13 (DW_TAG_enumerator) + <9809> DW_AT_name : (indirect string, offset: 0x9f22): SYS_pthread_mutex_trylock + <980d> DW_AT_const_value : 113 + <2><980e>: Abbrev Number: 13 (DW_TAG_enumerator) + <980f> DW_AT_name : (indirect string, offset: 0xa3ab): SYS_pthread_mutex_unlock + <9813> DW_AT_const_value : 114 + <2><9814>: Abbrev Number: 13 (DW_TAG_enumerator) + <9815> DW_AT_name : (indirect string, offset: 0xa75c): SYS_pthread_mutex_consistent + <9819> DW_AT_const_value : 115 + <2><981a>: Abbrev Number: 13 (DW_TAG_enumerator) + <981b> DW_AT_name : (indirect string, offset: 0xa0fc): SYS_pthread_setschedparam + <981f> DW_AT_const_value : 116 + <2><9820>: Abbrev Number: 13 (DW_TAG_enumerator) + <9821> DW_AT_name : (indirect string, offset: 0xa153): SYS_pthread_setschedprio + <9825> DW_AT_const_value : 117 + <2><9826>: Abbrev Number: 13 (DW_TAG_enumerator) + <9827> DW_AT_name : (indirect string, offset: 0xa719): SYS_pthread_cond_clockwait + <982b> DW_AT_const_value : 118 + <2><982c>: Abbrev Number: 13 (DW_TAG_enumerator) + <982d> DW_AT_name : (indirect string, offset: 0xa799): SYS_pthread_sigmask + <9831> DW_AT_const_value : 119 + <2><9832>: Abbrev Number: 13 (DW_TAG_enumerator) + <9833> DW_AT_name : (indirect string, offset: 0xa281): SYS_mq_close + <9837> DW_AT_const_value : 120 + <2><9838>: Abbrev Number: 13 (DW_TAG_enumerator) + <9839> DW_AT_name : (indirect string, offset: 0xa16c): SYS_mq_getattr + <983d> DW_AT_const_value : 121 + <2><983e>: Abbrev Number: 13 (DW_TAG_enumerator) + <983f> DW_AT_name : (indirect string, offset: 0xa365): SYS_mq_notify + <9843> DW_AT_const_value : 122 + <2><9844>: Abbrev Number: 13 (DW_TAG_enumerator) + <9845> DW_AT_name : (indirect string, offset: 0xa734): SYS_mq_open + <9849> DW_AT_const_value : 123 + <2><984a>: Abbrev Number: 13 (DW_TAG_enumerator) + <984b> DW_AT_name : (indirect string, offset: 0xa20a): SYS_mq_receive + <984f> DW_AT_const_value : 124 + <2><9850>: Abbrev Number: 13 (DW_TAG_enumerator) + <9851> DW_AT_name : (indirect string, offset: 0xa480): SYS_mq_send + <9855> DW_AT_const_value : 125 + <2><9856>: Abbrev Number: 13 (DW_TAG_enumerator) + <9857> DW_AT_name : (indirect string, offset: 0xa58e): SYS_mq_setattr + <985b> DW_AT_const_value : 126 + <2><985c>: Abbrev Number: 13 (DW_TAG_enumerator) + <985d> DW_AT_name : (indirect string, offset: 0xa4db): SYS_mq_timedreceive + <9861> DW_AT_const_value : 127 + <2><9862>: Abbrev Number: 13 (DW_TAG_enumerator) + <9863> DW_AT_name : (indirect string, offset: 0x9fd5): SYS_mq_timedsend + <9867> DW_AT_const_value : 128 + <2><9868>: Abbrev Number: 13 (DW_TAG_enumerator) + <9869> DW_AT_name : (indirect string, offset: 0xa2ca): SYS_mq_unlink + <986d> DW_AT_const_value : 129 + <2><986e>: Abbrev Number: 13 (DW_TAG_enumerator) + <986f> DW_AT_name : (indirect string, offset: 0xa617): SYS_get_environ_ptr + <9873> DW_AT_const_value : 130 + <2><9874>: Abbrev Number: 13 (DW_TAG_enumerator) + <9875> DW_AT_name : (indirect string, offset: 0xa66d): SYS_clearenv + <9879> DW_AT_const_value : 131 + <2><987a>: Abbrev Number: 13 (DW_TAG_enumerator) + <987b> DW_AT_name : (indirect string, offset: 0xa8f6): SYS_getenv + <987f> DW_AT_const_value : 132 + <2><9880>: Abbrev Number: 13 (DW_TAG_enumerator) + <9881> DW_AT_name : (indirect string, offset: 0x9fa4): SYS_putenv + <9885> DW_AT_const_value : 133 + <2><9886>: Abbrev Number: 13 (DW_TAG_enumerator) + <9887> DW_AT_name : (indirect string, offset: 0xa540): SYS_setenv + <988b> DW_AT_const_value : 134 + <2><988c>: Abbrev Number: 13 (DW_TAG_enumerator) + <988d> DW_AT_name : (indirect string, offset: 0xa1e0): SYS_unsetenv + <9891> DW_AT_const_value : 135 + <2><9892>: Abbrev Number: 13 (DW_TAG_enumerator) + <9893> DW_AT_name : (indirect string, offset: 0xa901): SYS_getrandom + <9897> DW_AT_const_value : 136 + <2><9898>: Abbrev Number: 13 (DW_TAG_enumerator) + <9899> DW_AT_name : (indirect string, offset: 0xa0c9): SYS_nanosleep + <989d> DW_AT_const_value : 137 + <2><989e>: Abbrev Number: 13 (DW_TAG_enumerator) + <989f> DW_AT_name : (indirect string, offset: 0xa86b): SYS_epoll_create1 + <98a3> DW_AT_const_value : 138 + <2><98a4>: Abbrev Number: 13 (DW_TAG_enumerator) + <98a5> DW_AT_name : (indirect string, offset: 0xa003): SYS_epoll_ctl + <98a9> DW_AT_const_value : 139 + <2><98aa>: Abbrev Number: 13 (DW_TAG_enumerator) + <98ab> DW_AT_name : (indirect string, offset: 0xa412): SYS_epoll_wait + <98af> DW_AT_const_value : 140 + <2><98b0>: Abbrev Number: 13 (DW_TAG_enumerator) + <98b1> DW_AT_name : (indirect string, offset: 0xa653): SYS_time + <98b5> DW_AT_const_value : 141 + <2><98b6>: Abbrev Number: 13 (DW_TAG_enumerator) + <98b7> DW_AT_name : (indirect string, offset: 0xa65c): SYS_gettimeofday + <98bb> DW_AT_const_value : 142 + <2><98bc>: Abbrev Number: 13 (DW_TAG_enumerator) + <98bd> DW_AT_name : (indirect string, offset: 0xa57d): SYS_settimeofday + <98c1> DW_AT_const_value : 143 + <2><98c2>: Abbrev Number: 13 (DW_TAG_enumerator) + <98c3> DW_AT_name : (indirect string, offset: 0xa191): SYS_signal + <98c7> DW_AT_const_value : 144 + <2><98c8>: Abbrev Number: 13 (DW_TAG_enumerator) + <98c9> DW_AT_name : (indirect string, offset: 0xa31d): SYS_maxsyscall + <98cd> DW_AT_const_value : 145 + <2><98ce>: Abbrev Number: 0 + <1><98cf>: Abbrev Number: 14 (DW_TAG_subprogram) + <98d0> DW_AT_external : 1 + <98d0> DW_AT_name : (indirect string, offset: 0xa4ae): nxsem_post + <98d4> DW_AT_decl_file : 8 + <98d5> DW_AT_decl_line : 357 + <98d7> DW_AT_decl_column : 5 + <98d8> DW_AT_prototyped : 1 + <98d8> DW_AT_type : <0x9468> + <98dc> DW_AT_low_pc : 0xdde + <98e4> DW_AT_high_pc : 0xe + <98ec> DW_AT_frame_base : 1 byte block: 9c (DW_OP_call_frame_cfa) + <98ee> DW_AT_GNU_all_call_sites: 1 + <98ee> DW_AT_sibling : <0x993c> + <2><98f2>: Abbrev Number: 15 (DW_TAG_formal_parameter) + <98f3> DW_AT_name : (indirect string, offset: 0xa60c): parm1 + <98f7> DW_AT_decl_file : 1 + <98f8> DW_AT_decl_line : 7 + <98f9> DW_AT_decl_column : 28 + <98fa> DW_AT_type : <0x993c> + <98fe> DW_AT_location : 0x3421 (location list) + <2><9902>: Abbrev Number: 16 (DW_TAG_inlined_subroutine) + <9903> DW_AT_abstract_origin: <0x9942> + <9907> DW_AT_low_pc : 0xde0 + <990f> DW_AT_high_pc : 0x8 + <9917> DW_AT_call_file : 1 + <9918> DW_AT_call_line : 9 + <9919> DW_AT_call_column : 15 + <3><991a>: Abbrev Number: 17 (DW_TAG_formal_parameter) + <991b> DW_AT_abstract_origin: <0x994f> + <991f> DW_AT_location : 0x3457 (location list) + <3><9923>: Abbrev Number: 17 (DW_TAG_formal_parameter) + <9924> DW_AT_abstract_origin: <0x995b> + <9928> DW_AT_location : 0x347b (location list) + <3><992c>: Abbrev Number: 18 (DW_TAG_variable) + <992d> DW_AT_abstract_origin: <0x9967> + <9931> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <3><9933>: Abbrev Number: 18 (DW_TAG_variable) + <9934> DW_AT_abstract_origin: <0x9972> + <9938> DW_AT_location : 1 byte block: 5b (DW_OP_reg11 (a1)) + <3><993a>: Abbrev Number: 0 + <2><993b>: Abbrev Number: 0 + <1><993c>: Abbrev Number: 8 (DW_TAG_pointer_type) + <993d> DW_AT_byte_size : 8 + <993e> DW_AT_type : <0x9578> + <1><9942>: Abbrev Number: 19 (DW_TAG_subprogram) + <9943> DW_AT_name : (indirect string, offset: 0xa421): sys_call1 + <9947> DW_AT_decl_file : 2 + <9948> DW_AT_decl_line : 197 + <9949> DW_AT_decl_column : 25 + <994a> DW_AT_prototyped : 1 + <994a> DW_AT_type : <0x94b4> + <994e> DW_AT_inline : 3 (declared as inline and inlined) + <2><994f>: Abbrev Number: 20 (DW_TAG_formal_parameter) + <9950> DW_AT_name : nbr + <9954> DW_AT_decl_file : 2 + <9955> DW_AT_decl_line : 197 + <9956> DW_AT_decl_column : 48 + <9957> DW_AT_type : <0x946f> + <2><995b>: Abbrev Number: 21 (DW_TAG_formal_parameter) + <995c> DW_AT_name : (indirect string, offset: 0xa60c): parm1 + <9960> DW_AT_decl_file : 2 + <9961> DW_AT_decl_line : 197 + <9962> DW_AT_decl_column : 63 + <9963> DW_AT_type : <0x94b4> + <2><9967>: Abbrev Number: 22 (DW_TAG_variable) + <9968> DW_AT_name : r0 + <996b> DW_AT_decl_file : 2 + <996c> DW_AT_decl_line : 199 + <996d> DW_AT_decl_column : 17 + <996e> DW_AT_type : <0x9476> + <2><9972>: Abbrev Number: 22 (DW_TAG_variable) + <9973> DW_AT_name : r1 + <9976> DW_AT_decl_file : 2 + <9977> DW_AT_decl_line : 200 + <9978> DW_AT_decl_column : 17 + <9979> DW_AT_type : <0x9476> + <2><997d>: Abbrev Number: 0 + <1><997e>: Abbrev Number: 0 + Compilation Unit @ offset 0x997f: + Length: 0x56f (32-bit) + Version: 4 + Abbrev Offset: 0x2ca6 + Pointer Size: 8 + <0><998a>: Abbrev Number: 1 (DW_TAG_compile_unit) + <998b> DW_AT_producer : (indirect string, offset: 0xb1f6): GNU C17 10.2.0 -mcmodel=medany -march=rv64imafdc -mabi=lp64d -march=rv64imafdc -g -Os -fno-common -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections + <998f> DW_AT_language : 12 (ANSI C99) + <9990> DW_AT_name : (indirect string, offset: 0xb137): proxies/PROXY_nxsem_trywait.c + <9994> DW_AT_comp_dir : (indirect string, offset: 0xb032): /Users/Luppy/ox64/nuttx/syscall + <9998> DW_AT_ranges : 0x8f0 + <999c> DW_AT_low_pc : 0x0 + <99a4> DW_AT_stmt_list : 0x4f14 + <1><99a8>: Abbrev Number: 2 (DW_TAG_base_type) + <99a9> DW_AT_byte_size : 1 + <99aa> DW_AT_encoding : 6 (signed char) + <99ab> DW_AT_name : (indirect string, offset: 0xab00): signed char + <1><99af>: Abbrev Number: 3 (DW_TAG_typedef) + <99b0> DW_AT_name : (indirect string, offset: 0xaffa): _uint8_t + <99b4> DW_AT_decl_file : 3 + <99b5> DW_AT_decl_line : 52 + <99b6> DW_AT_decl_column : 28 + <99b7> DW_AT_type : <0x99bb> + <1><99bb>: Abbrev Number: 2 (DW_TAG_base_type) + <99bc> DW_AT_byte_size : 1 + <99bd> DW_AT_encoding : 8 (unsigned char) + <99be> DW_AT_name : (indirect string, offset: 0xaf54): unsigned char + <1><99c2>: Abbrev Number: 3 (DW_TAG_typedef) + <99c3> DW_AT_name : (indirect string, offset: 0xb336): _int16_t + <99c7> DW_AT_decl_file : 3 + <99c8> DW_AT_decl_line : 54 + <99c9> DW_AT_decl_column : 28 + <99ca> DW_AT_type : <0x99ce> + <1><99ce>: Abbrev Number: 2 (DW_TAG_base_type) + <99cf> DW_AT_byte_size : 2 + <99d0> DW_AT_encoding : 5 (signed) + <99d1> DW_AT_name : (indirect string, offset: 0xaf91): short int + <1><99d5>: Abbrev Number: 2 (DW_TAG_base_type) + <99d6> DW_AT_byte_size : 2 + <99d7> DW_AT_encoding : 7 (unsigned) + <99d8> DW_AT_name : (indirect string, offset: 0xad1b): short unsigned int + <1><99dc>: Abbrev Number: 4 (DW_TAG_base_type) + <99dd> DW_AT_byte_size : 4 + <99de> DW_AT_encoding : 5 (signed) + <99df> DW_AT_name : int + <1><99e3>: Abbrev Number: 2 (DW_TAG_base_type) + <99e4> DW_AT_byte_size : 4 + <99e5> DW_AT_encoding : 7 (unsigned) + <99e6> DW_AT_name : (indirect string, offset: 0xaca9): unsigned int + <1><99ea>: Abbrev Number: 2 (DW_TAG_base_type) + <99eb> DW_AT_byte_size : 8 + <99ec> DW_AT_encoding : 5 (signed) + <99ed> DW_AT_name : (indirect string, offset: 0xab77): long int + <1><99f1>: Abbrev Number: 2 (DW_TAG_base_type) + <99f2> DW_AT_byte_size : 8 + <99f3> DW_AT_encoding : 7 (unsigned) + <99f4> DW_AT_name : (indirect string, offset: 0xacd1): long unsigned int + <1><99f8>: Abbrev Number: 3 (DW_TAG_typedef) + <99f9> DW_AT_name : (indirect string, offset: 0xadc1): _size_t + <99fd> DW_AT_decl_file : 3 + <99fe> DW_AT_decl_line : 93 + <99ff> DW_AT_decl_column : 28 + <9a00> DW_AT_type : <0x99f1> + <1><9a04>: Abbrev Number: 2 (DW_TAG_base_type) + <9a05> DW_AT_byte_size : 8 + <9a06> DW_AT_encoding : 7 (unsigned) + <9a07> DW_AT_name : (indirect string, offset: 0xaa5f): long long unsigned int + <1><9a0b>: Abbrev Number: 3 (DW_TAG_typedef) + <9a0c> DW_AT_name : (indirect string, offset: 0xb2a6): uint8_t + <9a10> DW_AT_decl_file : 4 + <9a11> DW_AT_decl_line : 166 + <9a12> DW_AT_decl_column : 29 + <9a13> DW_AT_type : <0x99af> + <1><9a17>: Abbrev Number: 3 (DW_TAG_typedef) + <9a18> DW_AT_name : (indirect string, offset: 0xaaef): int16_t + <9a1c> DW_AT_decl_file : 4 + <9a1d> DW_AT_decl_line : 168 + <9a1e> DW_AT_decl_column : 29 + <9a1f> DW_AT_type : <0x99c2> + <1><9a23>: Abbrev Number: 5 (DW_TAG_volatile_type) + <9a24> DW_AT_type : <0x9a17> + <1><9a28>: Abbrev Number: 3 (DW_TAG_typedef) + <9a29> DW_AT_name : (indirect string, offset: 0xa9a9): uintptr_t + <9a2d> DW_AT_decl_file : 4 + <9a2e> DW_AT_decl_line : 239 + <9a2f> DW_AT_decl_column : 29 + <9a30> DW_AT_type : <0x99f8> + <1><9a34>: Abbrev Number: 2 (DW_TAG_base_type) + <9a35> DW_AT_byte_size : 1 + <9a36> DW_AT_encoding : 8 (unsigned char) + <9a37> DW_AT_name : (indirect string, offset: 0xb058): char + <1><9a3b>: Abbrev Number: 6 (DW_TAG_structure_type) + <9a3c> DW_AT_name : (indirect string, offset: 0xb2c6): dq_entry_s + <9a40> DW_AT_byte_size : 16 + <9a41> DW_AT_decl_file : 5 + <9a42> DW_AT_decl_line : 303 + <9a44> DW_AT_decl_column : 8 + <9a45> DW_AT_sibling : <0x9a66> + <2><9a49>: Abbrev Number: 7 (DW_TAG_member) + <9a4a> DW_AT_name : (indirect string, offset: 0xace3): flink + <9a4e> DW_AT_decl_file : 5 + <9a4f> DW_AT_decl_line : 305 + <9a51> DW_AT_decl_column : 26 + <9a52> DW_AT_type : <0x9a66> + <9a56> DW_AT_data_member_location: 0 + <2><9a57>: Abbrev Number: 7 (DW_TAG_member) + <9a58> DW_AT_name : (indirect string, offset: 0xb189): blink + <9a5c> DW_AT_decl_file : 5 + <9a5d> DW_AT_decl_line : 306 + <9a5f> DW_AT_decl_column : 26 + <9a60> DW_AT_type : <0x9a66> + <9a64> DW_AT_data_member_location: 8 + <2><9a65>: Abbrev Number: 0 + <1><9a66>: Abbrev Number: 8 (DW_TAG_pointer_type) + <9a67> DW_AT_byte_size : 8 + <9a68> DW_AT_type : <0x9a3b> + <1><9a6c>: Abbrev Number: 9 (DW_TAG_typedef) + <9a6d> DW_AT_name : (indirect string, offset: 0xb2d1): dq_entry_t + <9a71> DW_AT_decl_file : 5 + <9a72> DW_AT_decl_line : 308 + <9a74> DW_AT_decl_column : 27 + <9a75> DW_AT_type : <0x9a3b> + <1><9a79>: Abbrev Number: 6 (DW_TAG_structure_type) + <9a7a> DW_AT_name : (indirect string, offset: 0xafad): dq_queue_s + <9a7e> DW_AT_byte_size : 16 + <9a7f> DW_AT_decl_file : 5 + <9a80> DW_AT_decl_line : 317 + <9a82> DW_AT_decl_column : 8 + <9a83> DW_AT_sibling : <0x9aa4> + <2><9a87>: Abbrev Number: 7 (DW_TAG_member) + <9a88> DW_AT_name : (indirect string, offset: 0xb003): head + <9a8c> DW_AT_decl_file : 5 + <9a8d> DW_AT_decl_line : 319 + <9a8f> DW_AT_decl_column : 19 + <9a90> DW_AT_type : <0x9aa4> + <9a94> DW_AT_data_member_location: 0 + <2><9a95>: Abbrev Number: 7 (DW_TAG_member) + <9a96> DW_AT_name : (indirect string, offset: 0xae46): tail + <9a9a> DW_AT_decl_file : 5 + <9a9b> DW_AT_decl_line : 320 + <9a9d> DW_AT_decl_column : 19 + <9a9e> DW_AT_type : <0x9aa4> + <9aa2> DW_AT_data_member_location: 8 + <2><9aa3>: Abbrev Number: 0 + <1><9aa4>: Abbrev Number: 8 (DW_TAG_pointer_type) + <9aa5> DW_AT_byte_size : 8 + <9aa6> DW_AT_type : <0x9a6c> + <1><9aaa>: Abbrev Number: 9 (DW_TAG_typedef) + <9aab> DW_AT_name : (indirect string, offset: 0xafb8): dq_queue_t + <9aaf> DW_AT_decl_file : 5 + <9ab0> DW_AT_decl_line : 322 + <9ab2> DW_AT_decl_column : 27 + <9ab3> DW_AT_type : <0x9a79> + <1><9ab7>: Abbrev Number: 10 (DW_TAG_structure_type) + <9ab8> DW_AT_name : (indirect string, offset: 0xb2ff): sem_s + <9abc> DW_AT_byte_size : 24 + <9abd> DW_AT_decl_file : 6 + <9abe> DW_AT_decl_line : 99 + <9abf> DW_AT_decl_column : 8 + <9ac0> DW_AT_sibling : <0x9aec> + <2><9ac4>: Abbrev Number: 11 (DW_TAG_member) + <9ac5> DW_AT_name : (indirect string, offset: 0xad57): semcount + <9ac9> DW_AT_decl_file : 6 + <9aca> DW_AT_decl_line : 101 + <9acb> DW_AT_decl_column : 20 + <9acc> DW_AT_type : <0x9a23> + <9ad0> DW_AT_data_member_location: 0 + <2><9ad1>: Abbrev Number: 11 (DW_TAG_member) + <9ad2> DW_AT_name : (indirect string, offset: 0xb2ae): flags + <9ad6> DW_AT_decl_file : 6 + <9ad7> DW_AT_decl_line : 108 + <9ad8> DW_AT_decl_column : 11 + <9ad9> DW_AT_type : <0x9a0b> + <9add> DW_AT_data_member_location: 2 + <2><9ade>: Abbrev Number: 11 (DW_TAG_member) + <9adf> DW_AT_name : (indirect string, offset: 0xab8d): waitlist + <9ae3> DW_AT_decl_file : 6 + <9ae4> DW_AT_decl_line : 110 + <9ae5> DW_AT_decl_column : 14 + <9ae6> DW_AT_type : <0x9aaa> + <9aea> DW_AT_data_member_location: 8 + <2><9aeb>: Abbrev Number: 0 + <1><9aec>: Abbrev Number: 3 (DW_TAG_typedef) + <9aed> DW_AT_name : (indirect string, offset: 0xb305): sem_t + <9af1> DW_AT_decl_file : 6 + <9af2> DW_AT_decl_line : 121 + <9af3> DW_AT_decl_column : 22 + <9af4> DW_AT_type : <0x9ab7> + <1><9af8>: Abbrev Number: 12 (DW_TAG_enumeration_type) + <9af9> DW_AT_encoding : 7 (unsigned) + <9afa> DW_AT_byte_size : 4 + <9afb> DW_AT_type : <0x99e3> + <9aff> DW_AT_decl_file : 7 + <9b00> DW_AT_decl_line : 57 + <9b01> DW_AT_decl_column : 1 + <9b02> DW_AT_sibling : <0x9e43> + <2><9b06>: Abbrev Number: 13 (DW_TAG_enumerator) + <9b07> DW_AT_name : (indirect string, offset: 0xae4b): SYS__exit + <9b0b> DW_AT_const_value : 8 + <2><9b0c>: Abbrev Number: 13 (DW_TAG_enumerator) + <9b0d> DW_AT_name : (indirect string, offset: 0xaedd): SYS__assert + <9b11> DW_AT_const_value : 9 + <2><9b12>: Abbrev Number: 13 (DW_TAG_enumerator) + <9b13> DW_AT_name : (indirect string, offset: 0xac78): SYS_getpid + <9b17> DW_AT_const_value : 10 + <2><9b18>: Abbrev Number: 13 (DW_TAG_enumerator) + <9b19> DW_AT_name : (indirect string, offset: 0xaef4): SYS_gettid + <9b1d> DW_AT_const_value : 11 + <2><9b1e>: Abbrev Number: 13 (DW_TAG_enumerator) + <9b1f> DW_AT_name : (indirect string, offset: 0xb36f): SYS_prctl + <9b23> DW_AT_const_value : 12 + <2><9b24>: Abbrev Number: 13 (DW_TAG_enumerator) + <9b25> DW_AT_name : (indirect string, offset: 0xaaba): SYS_sched_getparam + <9b29> DW_AT_const_value : 13 + <2><9b2a>: Abbrev Number: 13 (DW_TAG_enumerator) + <9b2b> DW_AT_name : (indirect string, offset: 0xb358): SYS_sched_getscheduler + <9b2f> DW_AT_const_value : 14 + <2><9b30>: Abbrev Number: 13 (DW_TAG_enumerator) + <9b31> DW_AT_name : (indirect string, offset: 0xae6e): SYS_sched_lock + <9b35> DW_AT_const_value : 15 + <2><9b36>: Abbrev Number: 13 (DW_TAG_enumerator) + <9b37> DW_AT_name : (indirect string, offset: 0xb1c2): SYS_sched_lockcount + <9b3b> DW_AT_const_value : 16 + <2><9b3c>: Abbrev Number: 13 (DW_TAG_enumerator) + <9b3d> DW_AT_name : (indirect string, offset: 0xb0f6): SYS_sched_rr_get_interval + <9b41> DW_AT_const_value : 17 + <2><9b42>: Abbrev Number: 13 (DW_TAG_enumerator) + <9b43> DW_AT_name : (indirect string, offset: 0xb0e3): SYS_sched_setparam + <9b47> DW_AT_const_value : 18 + <2><9b48>: Abbrev Number: 13 (DW_TAG_enumerator) + <9b49> DW_AT_name : (indirect string, offset: 0xadd7): SYS_sched_setscheduler + <9b4d> DW_AT_const_value : 19 + <2><9b4e>: Abbrev Number: 13 (DW_TAG_enumerator) + <9b4f> DW_AT_name : (indirect string, offset: 0xb30b): SYS_sched_unlock + <9b53> DW_AT_const_value : 20 + <2><9b54>: Abbrev Number: 13 (DW_TAG_enumerator) + <9b55> DW_AT_name : (indirect string, offset: 0xa9d7): SYS_sched_yield + <9b59> DW_AT_const_value : 21 + <2><9b5a>: Abbrev Number: 13 (DW_TAG_enumerator) + <9b5b> DW_AT_name : (indirect string, offset: 0xb018): SYS_nxsched_get_stackinfo + <9b5f> DW_AT_const_value : 22 + <2><9b60>: Abbrev Number: 13 (DW_TAG_enumerator) + <9b61> DW_AT_name : (indirect string, offset: 0xae9f): SYS_sysinfo + <9b65> DW_AT_const_value : 23 + <2><9b66>: Abbrev Number: 13 (DW_TAG_enumerator) + <9b67> DW_AT_name : (indirect string, offset: 0xb008): SYS_gethostname + <9b6b> DW_AT_const_value : 24 + <2><9b6c>: Abbrev Number: 13 (DW_TAG_enumerator) + <9b6d> DW_AT_name : (indirect string, offset: 0xac8d): SYS_sethostname + <9b71> DW_AT_const_value : 25 + <2><9b72>: Abbrev Number: 13 (DW_TAG_enumerator) + <9b73> DW_AT_name : (indirect string, offset: 0xacfb): SYS_nxsem_destroy + <9b77> DW_AT_const_value : 26 + <2><9b78>: Abbrev Number: 13 (DW_TAG_enumerator) + <9b79> DW_AT_name : (indirect string, offset: 0xaf12): SYS_nxsem_post + <9b7d> DW_AT_const_value : 27 + <2><9b7e>: Abbrev Number: 13 (DW_TAG_enumerator) + <9b7f> DW_AT_name : (indirect string, offset: 0xab59): SYS_nxsem_clockwait + <9b83> DW_AT_const_value : 28 + <2><9b84>: Abbrev Number: 13 (DW_TAG_enumerator) + <9b85> DW_AT_name : (indirect string, offset: 0xad79): SYS_nxsem_timedwait + <9b89> DW_AT_const_value : 29 + <2><9b8a>: Abbrev Number: 13 (DW_TAG_enumerator) + <9b8b> DW_AT_name : (indirect string, offset: 0xae14): SYS_nxsem_trywait + <9b8f> DW_AT_const_value : 30 + <2><9b90>: Abbrev Number: 13 (DW_TAG_enumerator) + <9b91> DW_AT_name : (indirect string, offset: 0xa9f2): SYS_nxsem_wait + <9b95> DW_AT_const_value : 31 + <2><9b96>: Abbrev Number: 13 (DW_TAG_enumerator) + <9b97> DW_AT_name : (indirect string, offset: 0xb1d6): SYS_pgalloc + <9b9b> DW_AT_const_value : 32 + <2><9b9c>: Abbrev Number: 13 (DW_TAG_enumerator) + <9b9d> DW_AT_name : (indirect string, offset: 0xafee): SYS_up_fork + <9ba1> DW_AT_const_value : 33 + <2><9ba2>: Abbrev Number: 13 (DW_TAG_enumerator) + <9ba3> DW_AT_name : (indirect string, offset: 0xb08d): SYS_waitpid + <9ba7> DW_AT_const_value : 34 + <2><9ba8>: Abbrev Number: 13 (DW_TAG_enumerator) + <9ba9> DW_AT_name : (indirect string, offset: 0xaaaa): SYS_posix_spawn + <9bad> DW_AT_const_value : 35 + <2><9bae>: Abbrev Number: 13 (DW_TAG_enumerator) + <9baf> DW_AT_name : (indirect string, offset: 0xafe3): SYS_execve + <9bb3> DW_AT_const_value : 36 + <2><9bb4>: Abbrev Number: 13 (DW_TAG_enumerator) + <9bb5> DW_AT_name : (indirect string, offset: 0xaf7d): SYS_kill + <9bb9> DW_AT_const_value : 37 + <2><9bba>: Abbrev Number: 13 (DW_TAG_enumerator) + <9bbb> DW_AT_name : (indirect string, offset: 0xa95a): SYS_tgkill + <9bbf> DW_AT_const_value : 38 + <2><9bc0>: Abbrev Number: 13 (DW_TAG_enumerator) + <9bc1> DW_AT_name : (indirect string, offset: 0xacb6): SYS_sigaction + <9bc5> DW_AT_const_value : 39 + <2><9bc6>: Abbrev Number: 13 (DW_TAG_enumerator) + <9bc7> DW_AT_name : (indirect string, offset: 0xaf62): SYS_sigpending + <9bcb> DW_AT_const_value : 40 + <2><9bcc>: Abbrev Number: 13 (DW_TAG_enumerator) + <9bcd> DW_AT_name : (indirect string, offset: 0xabdf): SYS_sigprocmask + <9bd1> DW_AT_const_value : 41 + <2><9bd2>: Abbrev Number: 13 (DW_TAG_enumerator) + <9bd3> DW_AT_name : (indirect string, offset: 0xb198): SYS_sigqueue + <9bd7> DW_AT_const_value : 42 + <2><9bd8>: Abbrev Number: 13 (DW_TAG_enumerator) + <9bd9> DW_AT_name : (indirect string, offset: 0xae37): SYS_sigsuspend + <9bdd> DW_AT_const_value : 43 + <2><9bde>: Abbrev Number: 13 (DW_TAG_enumerator) + <9bdf> DW_AT_name : (indirect string, offset: 0xab24): SYS_sigtimedwait + <9be3> DW_AT_const_value : 44 + <2><9be4>: Abbrev Number: 13 (DW_TAG_enumerator) + <9be5> DW_AT_name : (indirect string, offset: 0xaa9a): SYS_sigwaitinfo + <9be9> DW_AT_const_value : 45 + <2><9bea>: Abbrev Number: 13 (DW_TAG_enumerator) + <9beb> DW_AT_name : (indirect string, offset: 0xae8b): SYS_clock_nanosleep + <9bef> DW_AT_const_value : 46 + <2><9bf0>: Abbrev Number: 13 (DW_TAG_enumerator) + <9bf1> DW_AT_name : (indirect string, offset: 0xaa3c): SYS_clock + <9bf5> DW_AT_const_value : 47 + <2><9bf6>: Abbrev Number: 13 (DW_TAG_enumerator) + <9bf7> DW_AT_name : (indirect string, offset: 0xb125): SYS_clock_gettime + <9bfb> DW_AT_const_value : 48 + <2><9bfc>: Abbrev Number: 13 (DW_TAG_enumerator) + <9bfd> DW_AT_name : (indirect string, offset: 0xac5c): SYS_clock_settime + <9c01> DW_AT_const_value : 49 + <2><9c02>: Abbrev Number: 13 (DW_TAG_enumerator) + <9c03> DW_AT_name : (indirect string, offset: 0xa97f): SYS_timer_create + <9c07> DW_AT_const_value : 50 + <2><9c08>: Abbrev Number: 13 (DW_TAG_enumerator) + <9c09> DW_AT_name : (indirect string, offset: 0xae26): SYS_timer_delete + <9c0d> DW_AT_const_value : 51 + <2><9c0e>: Abbrev Number: 13 (DW_TAG_enumerator) + <9c0f> DW_AT_name : (indirect string, offset: 0xad38): SYS_timer_getoverrun + <9c13> DW_AT_const_value : 52 + <2><9c14>: Abbrev Number: 13 (DW_TAG_enumerator) + <9c15> DW_AT_name : (indirect string, offset: 0xac30): SYS_timer_gettime + <9c19> DW_AT_const_value : 53 + <2><9c1a>: Abbrev Number: 13 (DW_TAG_enumerator) + <9c1b> DW_AT_name : (indirect string, offset: 0xace9): SYS_timer_settime + <9c1f> DW_AT_const_value : 54 + <2><9c20>: Abbrev Number: 13 (DW_TAG_enumerator) + <9c21> DW_AT_name : (indirect string, offset: 0xadc9): SYS_getitimer + <9c25> DW_AT_const_value : 55 + <2><9c26>: Abbrev Number: 13 (DW_TAG_enumerator) + <9c27> DW_AT_name : (indirect string, offset: 0xac02): SYS_setitimer + <9c2b> DW_AT_const_value : 56 + <2><9c2c>: Abbrev Number: 13 (DW_TAG_enumerator) + <9c2d> DW_AT_name : (indirect string, offset: 0xad8d): SYS_nx_vsyslog + <9c31> DW_AT_const_value : 57 + <2><9c32>: Abbrev Number: 13 (DW_TAG_enumerator) + <9c33> DW_AT_name : (indirect string, offset: 0xab35): SYS_close + <9c37> DW_AT_const_value : 58 + <2><9c38>: Abbrev Number: 13 (DW_TAG_enumerator) + <9c39> DW_AT_name : (indirect string, offset: 0xb2f5): SYS_ioctl + <9c3d> DW_AT_const_value : 59 + <2><9c3e>: Abbrev Number: 13 (DW_TAG_enumerator) + <9c3f> DW_AT_name : (indirect string, offset: 0xaaf7): SYS_read + <9c43> DW_AT_const_value : 60 + <2><9c44>: Abbrev Number: 13 (DW_TAG_enumerator) + <9c45> DW_AT_name : (indirect string, offset: 0xac6e): SYS_write + <9c49> DW_AT_const_value : 61 + <2><9c4a>: Abbrev Number: 13 (DW_TAG_enumerator) + <9c4b> DW_AT_name : (indirect string, offset: 0xaa90): SYS_pread + <9c4f> DW_AT_const_value : 62 + <2><9c50>: Abbrev Number: 13 (DW_TAG_enumerator) + <9c51> DW_AT_name : (indirect string, offset: 0xaec6): SYS_pwrite + <9c55> DW_AT_const_value : 63 + <2><9c56>: Abbrev Number: 13 (DW_TAG_enumerator) + <9c57> DW_AT_name : (indirect string, offset: 0xa951): SYS_poll + <9c5b> DW_AT_const_value : 64 + <2><9c5c>: Abbrev Number: 13 (DW_TAG_enumerator) + <9c5d> DW_AT_name : (indirect string, offset: 0xaa54): SYS_select + <9c61> DW_AT_const_value : 65 + <2><9c62>: Abbrev Number: 13 (DW_TAG_enumerator) + <9c63> DW_AT_name : (indirect string, offset: 0xaa01): SYS_ppoll + <9c67> DW_AT_const_value : 66 + <2><9c68>: Abbrev Number: 13 (DW_TAG_enumerator) + <9c69> DW_AT_name : (indirect string, offset: 0xad9c): SYS_pselect + <9c6d> DW_AT_const_value : 67 + <2><9c6e>: Abbrev Number: 13 (DW_TAG_enumerator) + <9c6f> DW_AT_name : (indirect string, offset: 0xab80): SYS_boardctl + <9c73> DW_AT_const_value : 68 + <2><9c74>: Abbrev Number: 13 (DW_TAG_enumerator) + <9c75> DW_AT_name : (indirect string, offset: 0xaf0a): SYS_dup + <9c79> DW_AT_const_value : 69 + <2><9c7a>: Abbrev Number: 13 (DW_TAG_enumerator) + <9c7b> DW_AT_name : (indirect string, offset: 0xaf9b): SYS_dup2 + <9c7f> DW_AT_const_value : 70 + <2><9c80>: Abbrev Number: 13 (DW_TAG_enumerator) + <9c81> DW_AT_name : (indirect string, offset: 0xaae5): SYS_fcntl + <9c85> DW_AT_const_value : 71 + <2><9c86>: Abbrev Number: 13 (DW_TAG_enumerator) + <9c87> DW_AT_name : (indirect string, offset: 0xb2e7): SYS_ftruncate + <9c8b> DW_AT_const_value : 72 + <2><9c8c>: Abbrev Number: 13 (DW_TAG_enumerator) + <9c8d> DW_AT_name : (indirect string, offset: 0xab6d): SYS_lseek + <9c91> DW_AT_const_value : 73 + <2><9c92>: Abbrev Number: 13 (DW_TAG_enumerator) + <9c93> DW_AT_name : (indirect string, offset: 0xac1a): SYS_mmap + <9c97> DW_AT_const_value : 74 + <2><9c98>: Abbrev Number: 13 (DW_TAG_enumerator) + <9c99> DW_AT_name : (indirect string, offset: 0xb18f): SYS_open + <9c9d> DW_AT_const_value : 75 + <2><9c9e>: Abbrev Number: 13 (DW_TAG_enumerator) + <9c9f> DW_AT_name : (indirect string, offset: 0xaeff): SYS_rename + <9ca3> DW_AT_const_value : 76 + <2><9ca4>: Abbrev Number: 13 (DW_TAG_enumerator) + <9ca5> DW_AT_name : (indirect string, offset: 0xb32d): SYS_stat + <9ca9> DW_AT_const_value : 77 + <2><9caa>: Abbrev Number: 13 (DW_TAG_enumerator) + <9cab> DW_AT_name : (indirect string, offset: 0xb11b): SYS_lstat + <9caf> DW_AT_const_value : 78 + <2><9cb0>: Abbrev Number: 13 (DW_TAG_enumerator) + <9cb1> DW_AT_name : (indirect string, offset: 0xa9b3): SYS_fstat + <9cb5> DW_AT_const_value : 79 + <2><9cb6>: Abbrev Number: 13 (DW_TAG_enumerator) + <9cb7> DW_AT_name : (indirect string, offset: 0xadb6): SYS_statfs + <9cbb> DW_AT_const_value : 80 + <2><9cbc>: Abbrev Number: 13 (DW_TAG_enumerator) + <9cbd> DW_AT_name : (indirect string, offset: 0xaf71): SYS_fstatfs + <9cc1> DW_AT_const_value : 81 + <2><9cc2>: Abbrev Number: 13 (DW_TAG_enumerator) + <9cc3> DW_AT_name : (indirect string, offset: 0xb155): SYS_sendfile + <9cc7> DW_AT_const_value : 82 + <2><9cc8>: Abbrev Number: 13 (DW_TAG_enumerator) + <9cc9> DW_AT_name : (indirect string, offset: 0xafa4): SYS_sync + <9ccd> DW_AT_const_value : 83 + <2><9cce>: Abbrev Number: 13 (DW_TAG_enumerator) + <9ccf> DW_AT_name : (indirect string, offset: 0xac83): SYS_fsync + <9cd3> DW_AT_const_value : 84 + <2><9cd4>: Abbrev Number: 13 (DW_TAG_enumerator) + <9cd5> DW_AT_name : (indirect string, offset: 0xad6f): SYS_chmod + <9cd9> DW_AT_const_value : 85 + <2><9cda>: Abbrev Number: 13 (DW_TAG_enumerator) + <9cdb> DW_AT_name : (indirect string, offset: 0xb2dc): SYS_lchmod + <9cdf> DW_AT_const_value : 86 + <2><9ce0>: Abbrev Number: 13 (DW_TAG_enumerator) + <9ce1> DW_AT_name : (indirect string, offset: 0xaee9): SYS_fchmod + <9ce5> DW_AT_const_value : 87 + <2><9ce6>: Abbrev Number: 13 (DW_TAG_enumerator) + <9ce7> DW_AT_name : (indirect string, offset: 0xab1a): SYS_chown + <9ceb> DW_AT_const_value : 88 + <2><9cec>: Abbrev Number: 13 (DW_TAG_enumerator) + <9ced> DW_AT_name : (indirect string, offset: 0xaf35): SYS_lchown + <9cf1> DW_AT_const_value : 89 + <2><9cf2>: Abbrev Number: 13 (DW_TAG_enumerator) + <9cf3> DW_AT_name : (indirect string, offset: 0xac42): SYS_fchown + <9cf7> DW_AT_const_value : 90 + <2><9cf8>: Abbrev Number: 13 (DW_TAG_enumerator) + <9cf9> DW_AT_name : (indirect string, offset: 0xac9d): SYS_utimens + <9cfd> DW_AT_const_value : 91 + <2><9cfe>: Abbrev Number: 13 (DW_TAG_enumerator) + <9cff> DW_AT_name : (indirect string, offset: 0xae07): SYS_lutimens + <9d03> DW_AT_const_value : 92 + <2><9d04>: Abbrev Number: 13 (DW_TAG_enumerator) + <9d05> DW_AT_name : (indirect string, offset: 0xaa0b): SYS_futimens + <9d09> DW_AT_const_value : 93 + <2><9d0a>: Abbrev Number: 13 (DW_TAG_enumerator) + <9d0b> DW_AT_name : (indirect string, offset: 0xb110): SYS_munmap + <9d0f> DW_AT_const_value : 94 + <2><9d10>: Abbrev Number: 13 (DW_TAG_enumerator) + <9d11> DW_AT_name : (indirect string, offset: 0xad4d): SYS_mount + <9d15> DW_AT_const_value : 95 + <2><9d16>: Abbrev Number: 13 (DW_TAG_enumerator) + <9d17> DW_AT_name : (indirect string, offset: 0xac10): SYS_mkdir + <9d1b> DW_AT_const_value : 96 + <2><9d1c>: Abbrev Number: 13 (DW_TAG_enumerator) + <9d1d> DW_AT_name : (indirect string, offset: 0xad2e): SYS_rmdir + <9d21> DW_AT_const_value : 97 + <2><9d22>: Abbrev Number: 13 (DW_TAG_enumerator) + <9d23> DW_AT_name : (indirect string, offset: 0xb0d7): SYS_umount2 + <9d27> DW_AT_const_value : 98 + <2><9d28>: Abbrev Number: 13 (DW_TAG_enumerator) + <9d29> DW_AT_name : (indirect string, offset: 0xb379): SYS_unlink + <9d2d> DW_AT_const_value : 99 + <2><9d2e>: Abbrev Number: 13 (DW_TAG_enumerator) + <9d2f> DW_AT_name : (indirect string, offset: 0xa990): SYS_pthread_barrier_wait + <9d33> DW_AT_const_value : 100 + <2><9d34>: Abbrev Number: 13 (DW_TAG_enumerator) + <9d35> DW_AT_name : (indirect string, offset: 0xabef): SYS_pthread_cancel + <9d39> DW_AT_const_value : 101 + <2><9d3a>: Abbrev Number: 13 (DW_TAG_enumerator) + <9d3b> DW_AT_name : (indirect string, offset: 0xaeab): SYS_pthread_cond_broadcast + <9d3f> DW_AT_const_value : 102 + <2><9d40>: Abbrev Number: 13 (DW_TAG_enumerator) + <9d41> DW_AT_name : (indirect string, offset: 0xaacd): SYS_pthread_cond_signal + <9d45> DW_AT_const_value : 103 + <2><9d46>: Abbrev Number: 13 (DW_TAG_enumerator) + <9d47> DW_AT_name : (indirect string, offset: 0xa93b): SYS_pthread_cond_wait + <9d4b> DW_AT_const_value : 104 + <2><9d4c>: Abbrev Number: 13 (DW_TAG_enumerator) + <9d4d> DW_AT_name : (indirect string, offset: 0xabbe): SYS_nx_pthread_create + <9d51> DW_AT_const_value : 105 + <2><9d52>: Abbrev Number: 13 (DW_TAG_enumerator) + <9d53> DW_AT_name : (indirect string, offset: 0xaa29): SYS_pthread_detach + <9d57> DW_AT_const_value : 106 + <2><9d58>: Abbrev Number: 13 (DW_TAG_enumerator) + <9d59> DW_AT_name : (indirect string, offset: 0xaf40): SYS_nx_pthread_exit + <9d5d> DW_AT_const_value : 107 + <2><9d5e>: Abbrev Number: 13 (DW_TAG_enumerator) + <9d5f> DW_AT_name : (indirect string, offset: 0xa9bd): SYS_pthread_getschedparam + <9d63> DW_AT_const_value : 108 + <2><9d64>: Abbrev Number: 13 (DW_TAG_enumerator) + <9d65> DW_AT_name : (indirect string, offset: 0xb31c): SYS_pthread_join + <9d69> DW_AT_const_value : 109 + <2><9d6a>: Abbrev Number: 13 (DW_TAG_enumerator) + <9d6b> DW_AT_name : (indirect string, offset: 0xaa76): SYS_pthread_mutex_destroy + <9d6f> DW_AT_const_value : 110 + <2><9d70>: Abbrev Number: 13 (DW_TAG_enumerator) + <9d71> DW_AT_name : (indirect string, offset: 0xb0c0): SYS_pthread_mutex_init + <9d75> DW_AT_const_value : 111 + <2><9d76>: Abbrev Number: 13 (DW_TAG_enumerator) + <9d77> DW_AT_name : (indirect string, offset: 0xb071): SYS_pthread_mutex_timedlock + <9d7b> DW_AT_const_value : 112 + <2><9d7c>: Abbrev Number: 13 (DW_TAG_enumerator) + <9d7d> DW_AT_name : (indirect string, offset: 0xa965): SYS_pthread_mutex_trylock + <9d81> DW_AT_const_value : 113 + <2><9d82>: Abbrev Number: 13 (DW_TAG_enumerator) + <9d83> DW_AT_name : (indirect string, offset: 0xadee): SYS_pthread_mutex_unlock + <9d87> DW_AT_const_value : 114 + <2><9d88>: Abbrev Number: 13 (DW_TAG_enumerator) + <9d89> DW_AT_name : (indirect string, offset: 0xb1a5): SYS_pthread_mutex_consistent + <9d8d> DW_AT_const_value : 115 + <2><9d8e>: Abbrev Number: 13 (DW_TAG_enumerator) + <9d8f> DW_AT_name : (indirect string, offset: 0xab3f): SYS_pthread_setschedparam + <9d93> DW_AT_const_value : 116 + <2><9d94>: Abbrev Number: 13 (DW_TAG_enumerator) + <9d95> DW_AT_name : (indirect string, offset: 0xab96): SYS_pthread_setschedprio + <9d99> DW_AT_const_value : 117 + <2><9d9a>: Abbrev Number: 13 (DW_TAG_enumerator) + <9d9b> DW_AT_name : (indirect string, offset: 0xb162): SYS_pthread_cond_clockwait + <9d9f> DW_AT_const_value : 118 + <2><9da0>: Abbrev Number: 13 (DW_TAG_enumerator) + <9da1> DW_AT_name : (indirect string, offset: 0xb1e2): SYS_pthread_sigmask + <9da5> DW_AT_const_value : 119 + <2><9da6>: Abbrev Number: 13 (DW_TAG_enumerator) + <9da7> DW_AT_name : (indirect string, offset: 0xacc4): SYS_mq_close + <9dab> DW_AT_const_value : 120 + <2><9dac>: Abbrev Number: 13 (DW_TAG_enumerator) + <9dad> DW_AT_name : (indirect string, offset: 0xabaf): SYS_mq_getattr + <9db1> DW_AT_const_value : 121 + <2><9db2>: Abbrev Number: 13 (DW_TAG_enumerator) + <9db3> DW_AT_name : (indirect string, offset: 0xada8): SYS_mq_notify + <9db7> DW_AT_const_value : 122 + <2><9db8>: Abbrev Number: 13 (DW_TAG_enumerator) + <9db9> DW_AT_name : (indirect string, offset: 0xb17d): SYS_mq_open + <9dbd> DW_AT_const_value : 123 + <2><9dbe>: Abbrev Number: 13 (DW_TAG_enumerator) + <9dbf> DW_AT_name : (indirect string, offset: 0xac4d): SYS_mq_receive + <9dc3> DW_AT_const_value : 124 + <2><9dc4>: Abbrev Number: 13 (DW_TAG_enumerator) + <9dc5> DW_AT_name : (indirect string, offset: 0xaed1): SYS_mq_send + <9dc9> DW_AT_const_value : 125 + <2><9dca>: Abbrev Number: 13 (DW_TAG_enumerator) + <9dcb> DW_AT_name : (indirect string, offset: 0xafd4): SYS_mq_setattr + <9dcf> DW_AT_const_value : 126 + <2><9dd0>: Abbrev Number: 13 (DW_TAG_enumerator) + <9dd1> DW_AT_name : (indirect string, offset: 0xaf21): SYS_mq_timedreceive + <9dd5> DW_AT_const_value : 127 + <2><9dd6>: Abbrev Number: 13 (DW_TAG_enumerator) + <9dd7> DW_AT_name : (indirect string, offset: 0xaa18): SYS_mq_timedsend + <9ddb> DW_AT_const_value : 128 + <2><9ddc>: Abbrev Number: 13 (DW_TAG_enumerator) + <9ddd> DW_AT_name : (indirect string, offset: 0xad0d): SYS_mq_unlink + <9de1> DW_AT_const_value : 129 + <2><9de2>: Abbrev Number: 13 (DW_TAG_enumerator) + <9de3> DW_AT_name : (indirect string, offset: 0xb05d): SYS_get_environ_ptr + <9de7> DW_AT_const_value : 130 + <2><9de8>: Abbrev Number: 13 (DW_TAG_enumerator) + <9de9> DW_AT_name : (indirect string, offset: 0xb0b3): SYS_clearenv + <9ded> DW_AT_const_value : 131 + <2><9dee>: Abbrev Number: 13 (DW_TAG_enumerator) + <9def> DW_AT_name : (indirect string, offset: 0xb33f): SYS_getenv + <9df3> DW_AT_const_value : 132 + <2><9df4>: Abbrev Number: 13 (DW_TAG_enumerator) + <9df5> DW_AT_name : (indirect string, offset: 0xa9e7): SYS_putenv + <9df9> DW_AT_const_value : 133 + <2><9dfa>: Abbrev Number: 13 (DW_TAG_enumerator) + <9dfb> DW_AT_name : (indirect string, offset: 0xaf86): SYS_setenv + <9dff> DW_AT_const_value : 134 + <2><9e00>: Abbrev Number: 13 (DW_TAG_enumerator) + <9e01> DW_AT_name : (indirect string, offset: 0xac23): SYS_unsetenv + <9e05> DW_AT_const_value : 135 + <2><9e06>: Abbrev Number: 13 (DW_TAG_enumerator) + <9e07> DW_AT_name : (indirect string, offset: 0xb34a): SYS_getrandom + <9e0b> DW_AT_const_value : 136 + <2><9e0c>: Abbrev Number: 13 (DW_TAG_enumerator) + <9e0d> DW_AT_name : (indirect string, offset: 0xab0c): SYS_nanosleep + <9e11> DW_AT_const_value : 137 + <2><9e12>: Abbrev Number: 13 (DW_TAG_enumerator) + <9e13> DW_AT_name : (indirect string, offset: 0xb2b4): SYS_epoll_create1 + <9e17> DW_AT_const_value : 138 + <2><9e18>: Abbrev Number: 13 (DW_TAG_enumerator) + <9e19> DW_AT_name : (indirect string, offset: 0xaa46): SYS_epoll_ctl + <9e1d> DW_AT_const_value : 139 + <2><9e1e>: Abbrev Number: 13 (DW_TAG_enumerator) + <9e1f> DW_AT_name : (indirect string, offset: 0xae55): SYS_epoll_wait + <9e23> DW_AT_const_value : 140 + <2><9e24>: Abbrev Number: 13 (DW_TAG_enumerator) + <9e25> DW_AT_name : (indirect string, offset: 0xb099): SYS_time + <9e29> DW_AT_const_value : 141 + <2><9e2a>: Abbrev Number: 13 (DW_TAG_enumerator) + <9e2b> DW_AT_name : (indirect string, offset: 0xb0a2): SYS_gettimeofday + <9e2f> DW_AT_const_value : 142 + <2><9e30>: Abbrev Number: 13 (DW_TAG_enumerator) + <9e31> DW_AT_name : (indirect string, offset: 0xafc3): SYS_settimeofday + <9e35> DW_AT_const_value : 143 + <2><9e36>: Abbrev Number: 13 (DW_TAG_enumerator) + <9e37> DW_AT_name : (indirect string, offset: 0xabd4): SYS_signal + <9e3b> DW_AT_const_value : 144 + <2><9e3c>: Abbrev Number: 13 (DW_TAG_enumerator) + <9e3d> DW_AT_name : (indirect string, offset: 0xad60): SYS_maxsyscall + <9e41> DW_AT_const_value : 145 + <2><9e42>: Abbrev Number: 0 + <1><9e43>: Abbrev Number: 14 (DW_TAG_subprogram) + <9e44> DW_AT_external : 1 + <9e44> DW_AT_name : (indirect string, offset: 0xae7d): nxsem_trywait + <9e48> DW_AT_decl_file : 8 + <9e49> DW_AT_decl_line : 207 + <9e4a> DW_AT_decl_column : 5 + <9e4b> DW_AT_prototyped : 1 + <9e4b> DW_AT_type : <0x99dc> + <9e4f> DW_AT_low_pc : 0xdec + <9e57> DW_AT_high_pc : 0xe + <9e5f> DW_AT_frame_base : 1 byte block: 9c (DW_OP_call_frame_cfa) + <9e61> DW_AT_GNU_all_call_sites: 1 + <9e61> DW_AT_sibling : <0x9eaf> + <2><9e65>: Abbrev Number: 15 (DW_TAG_formal_parameter) + <9e66> DW_AT_name : (indirect string, offset: 0xb052): parm1 + <9e6a> DW_AT_decl_file : 1 + <9e6b> DW_AT_decl_line : 7 + <9e6c> DW_AT_decl_column : 31 + <9e6d> DW_AT_type : <0x9eaf> + <9e71> DW_AT_location : 0x34b1 (location list) + <2><9e75>: Abbrev Number: 16 (DW_TAG_inlined_subroutine) + <9e76> DW_AT_abstract_origin: <0x9eb5> + <9e7a> DW_AT_low_pc : 0xdee + <9e82> DW_AT_high_pc : 0x8 + <9e8a> DW_AT_call_file : 1 + <9e8b> DW_AT_call_line : 9 + <9e8c> DW_AT_call_column : 15 + <3><9e8d>: Abbrev Number: 17 (DW_TAG_formal_parameter) + <9e8e> DW_AT_abstract_origin: <0x9ec2> + <9e92> DW_AT_location : 0x34e7 (location list) + <3><9e96>: Abbrev Number: 17 (DW_TAG_formal_parameter) + <9e97> DW_AT_abstract_origin: <0x9ece> + <9e9b> DW_AT_location : 0x350b (location list) + <3><9e9f>: Abbrev Number: 18 (DW_TAG_variable) + <9ea0> DW_AT_abstract_origin: <0x9eda> + <9ea4> DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <3><9ea6>: Abbrev Number: 18 (DW_TAG_variable) + <9ea7> DW_AT_abstract_origin: <0x9ee5> + <9eab> DW_AT_location : 1 byte block: 5b (DW_OP_reg11 (a1)) + <3><9ead>: Abbrev Number: 0 + <2><9eae>: Abbrev Number: 0 + <1><9eaf>: Abbrev Number: 8 (DW_TAG_pointer_type) + <9eb0> DW_AT_byte_size : 8 + <9eb1> DW_AT_type : <0x9aec> + <1><9eb5>: Abbrev Number: 19 (DW_TAG_subprogram) + <9eb6> DW_AT_name : (indirect string, offset: 0xae64): sys_call1 + <9eba> DW_AT_decl_file : 2 + <9ebb> DW_AT_decl_line : 197 + <9ebc> DW_AT_decl_column : 25 + <9ebd> DW_AT_prototyped : 1 + <9ebd> DW_AT_type : <0x9a28> + <9ec1> DW_AT_inline : 3 (declared as inline and inlined) + <2><9ec2>: Abbrev Number: 20 (DW_TAG_formal_parameter) + <9ec3> DW_AT_name : nbr + <9ec7> DW_AT_decl_file : 2 + <9ec8> DW_AT_decl_line : 197 + <9ec9> DW_AT_decl_column : 48 + <9eca> DW_AT_type : <0x99e3> + <2><9ece>: Abbrev Number: 21 (DW_TAG_formal_parameter) + <9ecf> DW_AT_name : (indirect string, offset: 0xb052): parm1 + <9ed3> DW_AT_decl_file : 2 + <9ed4> DW_AT_decl_line : 197 + <9ed5> DW_AT_decl_column : 63 + <9ed6> DW_AT_type : <0x9a28> + <2><9eda>: Abbrev Number: 22 (DW_TAG_variable) + <9edb> DW_AT_name : r0 + <9ede> DW_AT_decl_file : 2 + <9edf> DW_AT_decl_line : 199 + <9ee0> DW_AT_decl_column : 17 + <9ee1> DW_AT_type : <0x99ea> + <2><9ee5>: Abbrev Number: 22 (DW_TAG_variable) + <9ee6> DW_AT_name : r1 + <9ee9> DW_AT_decl_file : 2 + <9eea> DW_AT_decl_line : 200 + <9eeb> DW_AT_decl_column : 17 + <9eec> DW_AT_type : <0x99ea> + <2><9ef0>: Abbrev Number: 0 + <1><9ef1>: Abbrev Number: 0 + Compilation Unit @ offset 0x9ef2: + Length: 0x56f (32-bit) + Version: 4 + Abbrev Offset: 0x2df0 + Pointer Size: 8 + <0><9efd>: Abbrev Number: 1 (DW_TAG_compile_unit) + <9efe> DW_AT_producer : (indirect string, offset: 0xbc39): GNU C17 10.2.0 -mcmodel=medany -march=rv64imafdc -mabi=lp64d -march=rv64imafdc -g -Os -fno-common -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections + <9f02> DW_AT_language : 12 (ANSI C99) + <9f03> DW_AT_name : (indirect string, offset: 0xb945): proxies/PROXY_nxsem_wait.c + <9f07> DW_AT_comp_dir : (indirect string, offset: 0xba93): /Users/Luppy/ox64/nuttx/syscall + <9f0b> DW_AT_ranges : 0x910 + <9f0f> DW_AT_low_pc : 0x0 + <9f17> DW_AT_stmt_list : 0x509c + <1><9f1b>: Abbrev Number: 2 (DW_TAG_base_type) + <9f1c> DW_AT_byte_size : 1 + <9f1d> DW_AT_encoding : 6 (signed char) + <9f1e> DW_AT_name : (indirect string, offset: 0xb554): signed char + <1><9f22>: Abbrev Number: 3 (DW_TAG_typedef) + <9f23> DW_AT_name : (indirect string, offset: 0xba5b): _uint8_t + <9f27> DW_AT_decl_file : 3 + <9f28> DW_AT_decl_line : 52 + <9f29> DW_AT_decl_column : 28 + <9f2a> DW_AT_type : <0x9f2e> + <1><9f2e>: Abbrev Number: 2 (DW_TAG_base_type) + <9f2f> DW_AT_byte_size : 1 + <9f30> DW_AT_encoding : 8 (unsigned char) + <9f31> DW_AT_name : (indirect string, offset: 0xb9b5): unsigned char + <1><9f35>: Abbrev Number: 3 (DW_TAG_typedef) + <9f36> DW_AT_name : (indirect string, offset: 0xbd79): _int16_t + <9f3a> DW_AT_decl_file : 3 + <9f3b> DW_AT_decl_line : 54 + <9f3c> DW_AT_decl_column : 28 + <9f3d> DW_AT_type : <0x9f41> + <1><9f41>: Abbrev Number: 2 (DW_TAG_base_type) + <9f42> DW_AT_byte_size : 2 + <9f43> DW_AT_encoding : 5 (signed) + <9f44> DW_AT_name : (indirect string, offset: 0xb9f2): short int + <1><9f48>: Abbrev Number: 2 (DW_TAG_base_type) + <9f49> DW_AT_byte_size : 2 + <9f4a> DW_AT_encoding : 7 (unsigned) + <9f4b> DW_AT_name : (indirect string, offset: 0xb76f): short unsigned int + <1><9f4f>: Abbrev Number: 4 (DW_TAG_base_type) + <9f50> DW_AT_byte_size : 4 + <9f51> DW_AT_encoding : 5 (signed) + <9f52> DW_AT_name : int + <1><9f56>: Abbrev Number: 2 (DW_TAG_base_type) + <9f57> DW_AT_byte_size : 4 + <9f58> DW_AT_encoding : 7 (unsigned) + <9f59> DW_AT_name : (indirect string, offset: 0xb6fd): unsigned int + <1><9f5d>: Abbrev Number: 2 (DW_TAG_base_type) + <9f5e> DW_AT_byte_size : 8 + <9f5f> DW_AT_encoding : 5 (signed) + <9f60> DW_AT_name : (indirect string, offset: 0xb5cb): long int + <1><9f64>: Abbrev Number: 2 (DW_TAG_base_type) + <9f65> DW_AT_byte_size : 8 + <9f66> DW_AT_encoding : 7 (unsigned) + <9f67> DW_AT_name : (indirect string, offset: 0xb725): long unsigned int + <1><9f6b>: Abbrev Number: 3 (DW_TAG_typedef) + <9f6c> DW_AT_name : (indirect string, offset: 0xb815): _size_t + <9f70> DW_AT_decl_file : 3 + <9f71> DW_AT_decl_line : 93 + <9f72> DW_AT_decl_column : 28 + <9f73> DW_AT_type : <0x9f64> + <1><9f77>: Abbrev Number: 2 (DW_TAG_base_type) + <9f78> DW_AT_byte_size : 8 + <9f79> DW_AT_encoding : 7 (unsigned) + <9f7a> DW_AT_name : (indirect string, offset: 0xb4b3): long long unsigned int + <1><9f7e>: Abbrev Number: 3 (DW_TAG_typedef) + <9f7f> DW_AT_name : (indirect string, offset: 0xbce9): uint8_t + <9f83> DW_AT_decl_file : 4 + <9f84> DW_AT_decl_line : 166 + <9f85> DW_AT_decl_column : 29 + <9f86> DW_AT_type : <0x9f22> + <1><9f8a>: Abbrev Number: 3 (DW_TAG_typedef) + <9f8b> DW_AT_name : (indirect string, offset: 0xb543): int16_t + <9f8f> DW_AT_decl_file : 4 + <9f90> DW_AT_decl_line : 168 + <9f91> DW_AT_decl_column : 29 + <9f92> DW_AT_type : <0x9f35> + <1><9f96>: Abbrev Number: 5 (DW_TAG_volatile_type) + <9f97> DW_AT_type : <0x9f8a> + <1><9f9b>: Abbrev Number: 3 (DW_TAG_typedef) + <9f9c> DW_AT_name : (indirect string, offset: 0xb3fd): uintptr_t + <9fa0> DW_AT_decl_file : 4 + <9fa1> DW_AT_decl_line : 239 + <9fa2> DW_AT_decl_column : 29 + <9fa3> DW_AT_type : <0x9f6b> + <1><9fa7>: Abbrev Number: 2 (DW_TAG_base_type) + <9fa8> DW_AT_byte_size : 1 + <9fa9> DW_AT_encoding : 8 (unsigned char) + <9faa> DW_AT_name : (indirect string, offset: 0xbab9): char + <1><9fae>: Abbrev Number: 6 (DW_TAG_structure_type) + <9faf> DW_AT_name : (indirect string, offset: 0xbd09): dq_entry_s + <9fb3> DW_AT_byte_size : 16 + <9fb4> DW_AT_decl_file : 5 + <9fb5> DW_AT_decl_line : 303 + <9fb7> DW_AT_decl_column : 8 + <9fb8> DW_AT_sibling : <0x9fd9> + <2><9fbc>: Abbrev Number: 7 (DW_TAG_member) + <9fbd> DW_AT_name : (indirect string, offset: 0xb737): flink + <9fc1> DW_AT_decl_file : 5 + <9fc2> DW_AT_decl_line : 305 + <9fc4> DW_AT_decl_column : 26 + <9fc5> DW_AT_type : <0x9fd9> + <9fc9> DW_AT_data_member_location: 0 + <2><9fca>: Abbrev Number: 7 (DW_TAG_member) + <9fcb> DW_AT_name : (indirect string, offset: 0xbbcc): blink + <9fcf> DW_AT_decl_file : 5 + <9fd0> DW_AT_decl_line : 306 + <9fd2> DW_AT_decl_column : 26 + <9fd3> DW_AT_type : <0x9fd9> + <9fd7> DW_AT_data_member_location: 8 + <2><9fd8>: Abbrev Number: 0 + <1><9fd9>: Abbrev Number: 8 (DW_TAG_pointer_type) + <9fda> DW_AT_byte_size : 8 + <9fdb> DW_AT_type : <0x9fae> + <1><9fdf>: Abbrev Number: 9 (DW_TAG_typedef) + <9fe0> DW_AT_name : (indirect string, offset: 0xbd14): dq_entry_t + <9fe4> DW_AT_decl_file : 5 + <9fe5> DW_AT_decl_line : 308 + <9fe7> DW_AT_decl_column : 27 + <9fe8> DW_AT_type : <0x9fae> + <1><9fec>: Abbrev Number: 6 (DW_TAG_structure_type) + <9fed> DW_AT_name : (indirect string, offset: 0xba0e): dq_queue_s + <9ff1> DW_AT_byte_size : 16 + <9ff2> DW_AT_decl_file : 5 + <9ff3> DW_AT_decl_line : 317 + <9ff5> DW_AT_decl_column : 8 + <9ff6> DW_AT_sibling : <0xa017> + <2><9ffa>: Abbrev Number: 7 (DW_TAG_member) + <9ffb> DW_AT_name : (indirect string, offset: 0xba64): head + <9fff> DW_AT_decl_file : 5 + DW_AT_decl_line : 319 + DW_AT_decl_column : 19 + DW_AT_type : <0xa017> + DW_AT_data_member_location: 0 + <2>: Abbrev Number: 7 (DW_TAG_member) + DW_AT_name : (indirect string, offset: 0xb89a): tail + DW_AT_decl_file : 5 + DW_AT_decl_line : 320 + DW_AT_decl_column : 19 + DW_AT_type : <0xa017> + DW_AT_data_member_location: 8 + <2>: Abbrev Number: 0 + <1>: Abbrev Number: 8 (DW_TAG_pointer_type) + DW_AT_byte_size : 8 + DW_AT_type : <0x9fdf> + <1>: Abbrev Number: 9 (DW_TAG_typedef) + DW_AT_name : (indirect string, offset: 0xba19): dq_queue_t + DW_AT_decl_file : 5 + DW_AT_decl_line : 322 + DW_AT_decl_column : 27 + DW_AT_type : <0x9fec> + <1>: Abbrev Number: 10 (DW_TAG_structure_type) + DW_AT_name : (indirect string, offset: 0xbd42): sem_s + DW_AT_byte_size : 24 + DW_AT_decl_file : 6 + DW_AT_decl_line : 99 + DW_AT_decl_column : 8 + DW_AT_sibling : <0xa05f> + <2>: Abbrev Number: 11 (DW_TAG_member) + DW_AT_name : (indirect string, offset: 0xb7ab): semcount + DW_AT_decl_file : 6 + DW_AT_decl_line : 101 + DW_AT_decl_column : 20 + DW_AT_type : <0x9f96> + DW_AT_data_member_location: 0 + <2>: Abbrev Number: 11 (DW_TAG_member) + DW_AT_name : (indirect string, offset: 0xbcf1): flags + DW_AT_decl_file : 6 + DW_AT_decl_line : 108 + DW_AT_decl_column : 11 + DW_AT_type : <0x9f7e> + DW_AT_data_member_location: 2 + <2>: Abbrev Number: 11 (DW_TAG_member) + DW_AT_name : (indirect string, offset: 0xb5e1): waitlist + DW_AT_decl_file : 6 + DW_AT_decl_line : 110 + DW_AT_decl_column : 14 + DW_AT_type : <0xa01d> + DW_AT_data_member_location: 8 + <2>: Abbrev Number: 0 + <1>: Abbrev Number: 3 (DW_TAG_typedef) + DW_AT_name : (indirect string, offset: 0xbd48): sem_t + DW_AT_decl_file : 6 + DW_AT_decl_line : 121 + DW_AT_decl_column : 22 + DW_AT_type : <0xa02a> + <1>: Abbrev Number: 12 (DW_TAG_enumeration_type) + DW_AT_encoding : 7 (unsigned) + DW_AT_byte_size : 4 + DW_AT_type : <0x9f56> + DW_AT_decl_file : 7 + DW_AT_decl_line : 57 + DW_AT_decl_column : 1 + DW_AT_sibling : <0xa3b6> + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb89f): SYS__exit + DW_AT_const_value : 8 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb923): SYS__assert + DW_AT_const_value : 9 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb6cc): SYS_getpid + DW_AT_const_value : 10 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb93a): SYS_gettid + DW_AT_const_value : 11 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xbdb2): SYS_prctl + DW_AT_const_value : 12 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb50e): SYS_sched_getparam + DW_AT_const_value : 13 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xbd9b): SYS_sched_getscheduler + DW_AT_const_value : 14 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb8c2): SYS_sched_lock + DW_AT_const_value : 15 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xbc05): SYS_sched_lockcount + DW_AT_const_value : 16 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xbb57): SYS_sched_rr_get_interval + DW_AT_const_value : 17 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xbb44): SYS_sched_setparam + DW_AT_const_value : 18 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb82b): SYS_sched_setscheduler + DW_AT_const_value : 19 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xbd4e): SYS_sched_unlock + DW_AT_const_value : 20 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb42b): SYS_sched_yield + DW_AT_const_value : 21 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xba79): SYS_nxsched_get_stackinfo + DW_AT_const_value : 22 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb8e5): SYS_sysinfo + DW_AT_const_value : 23 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xba69): SYS_gethostname + DW_AT_const_value : 24 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb6e1): SYS_sethostname + DW_AT_const_value : 25 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb74f): SYS_nxsem_destroy + DW_AT_const_value : 26 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb973): SYS_nxsem_post + DW_AT_const_value : 27 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb5ad): SYS_nxsem_clockwait + DW_AT_const_value : 28 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb7cd): SYS_nxsem_timedwait + DW_AT_const_value : 29 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb868): SYS_nxsem_trywait + DW_AT_const_value : 30 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb446): SYS_nxsem_wait + DW_AT_const_value : 31 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xbc19): SYS_pgalloc + DW_AT_const_value : 32 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xba4f): SYS_up_fork + DW_AT_const_value : 33 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xbaee): SYS_waitpid + DW_AT_const_value : 34 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb4fe): SYS_posix_spawn + DW_AT_const_value : 35 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xba44): SYS_execve + DW_AT_const_value : 36 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb9de): SYS_kill + DW_AT_const_value : 37 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb3a3): SYS_tgkill + DW_AT_const_value : 38 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb70a): SYS_sigaction + DW_AT_const_value : 39 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb9c3): SYS_sigpending + DW_AT_const_value : 40 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb633): SYS_sigprocmask + DW_AT_const_value : 41 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xbbdb): SYS_sigqueue + DW_AT_const_value : 42 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb88b): SYS_sigsuspend + DW_AT_const_value : 43 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb578): SYS_sigtimedwait + DW_AT_const_value : 44 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb4ee): SYS_sigwaitinfo + DW_AT_const_value : 45 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb8d1): SYS_clock_nanosleep + DW_AT_const_value : 46 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb490): SYS_clock + DW_AT_const_value : 47 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xbb86): SYS_clock_gettime + DW_AT_const_value : 48 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb6b0): SYS_clock_settime + DW_AT_const_value : 49 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb3d3): SYS_timer_create + DW_AT_const_value : 50 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb87a): SYS_timer_delete + DW_AT_const_value : 51 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb78c): SYS_timer_getoverrun + DW_AT_const_value : 52 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb684): SYS_timer_gettime + DW_AT_const_value : 53 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb73d): SYS_timer_settime + DW_AT_const_value : 54 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb81d): SYS_getitimer + DW_AT_const_value : 55 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb656): SYS_setitimer + DW_AT_const_value : 56 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb7e1): SYS_nx_vsyslog + DW_AT_const_value : 57 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb589): SYS_close + DW_AT_const_value : 58 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xbd38): SYS_ioctl + DW_AT_const_value : 59 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb54b): SYS_read + DW_AT_const_value : 60 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb6c2): SYS_write + DW_AT_const_value : 61 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb4e4): SYS_pread + DW_AT_const_value : 62 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb90c): SYS_pwrite + DW_AT_const_value : 63 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb39a): SYS_poll + DW_AT_const_value : 64 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb4a8): SYS_select + DW_AT_const_value : 65 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb455): SYS_ppoll + DW_AT_const_value : 66 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb7f0): SYS_pselect + DW_AT_const_value : 67 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb5d4): SYS_boardctl + DW_AT_const_value : 68 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb96b): SYS_dup + DW_AT_const_value : 69 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb9fc): SYS_dup2 + DW_AT_const_value : 70 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb539): SYS_fcntl + DW_AT_const_value : 71 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xbd2a): SYS_ftruncate + DW_AT_const_value : 72 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb5c1): SYS_lseek + DW_AT_const_value : 73 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb66e): SYS_mmap + DW_AT_const_value : 74 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xbbd2): SYS_open + DW_AT_const_value : 75 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb960): SYS_rename + DW_AT_const_value : 76 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xbd70): SYS_stat + DW_AT_const_value : 77 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xbb7c): SYS_lstat + DW_AT_const_value : 78 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb407): SYS_fstat + DW_AT_const_value : 79 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb80a): SYS_statfs + DW_AT_const_value : 80 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb9d2): SYS_fstatfs + DW_AT_const_value : 81 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xbb98): SYS_sendfile + DW_AT_const_value : 82 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xba05): SYS_sync + DW_AT_const_value : 83 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb6d7): SYS_fsync + DW_AT_const_value : 84 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb7c3): SYS_chmod + DW_AT_const_value : 85 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xbd1f): SYS_lchmod + DW_AT_const_value : 86 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb92f): SYS_fchmod + DW_AT_const_value : 87 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb56e): SYS_chown + DW_AT_const_value : 88 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb996): SYS_lchown + DW_AT_const_value : 89 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb696): SYS_fchown + DW_AT_const_value : 90 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb6f1): SYS_utimens + DW_AT_const_value : 91 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb85b): SYS_lutimens + DW_AT_const_value : 92 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb45f): SYS_futimens + DW_AT_const_value : 93 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xbb71): SYS_munmap + DW_AT_const_value : 94 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb7a1): SYS_mount + DW_AT_const_value : 95 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb664): SYS_mkdir + DW_AT_const_value : 96 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb782): SYS_rmdir + DW_AT_const_value : 97 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xbb38): SYS_umount2 + DW_AT_const_value : 98 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xbdbc): SYS_unlink + DW_AT_const_value : 99 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb3e4): SYS_pthread_barrier_wait + DW_AT_const_value : 100 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb643): SYS_pthread_cancel + DW_AT_const_value : 101 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb8f1): SYS_pthread_cond_broadcast + DW_AT_const_value : 102 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb521): SYS_pthread_cond_signal + DW_AT_const_value : 103 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb384): SYS_pthread_cond_wait + DW_AT_const_value : 104 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb612): SYS_nx_pthread_create + DW_AT_const_value : 105 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb47d): SYS_pthread_detach + DW_AT_const_value : 106 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb9a1): SYS_nx_pthread_exit + DW_AT_const_value : 107 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb411): SYS_pthread_getschedparam + DW_AT_const_value : 108 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xbd5f): SYS_pthread_join + DW_AT_const_value : 109 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb4ca): SYS_pthread_mutex_destroy + DW_AT_const_value : 110 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xbb21): SYS_pthread_mutex_init + DW_AT_const_value : 111 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xbad2): SYS_pthread_mutex_timedlock + DW_AT_const_value : 112 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb3ae): SYS_pthread_mutex_trylock + DW_AT_const_value : 113 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb842): SYS_pthread_mutex_unlock + DW_AT_const_value : 114 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xbbe8): SYS_pthread_mutex_consistent + DW_AT_const_value : 115 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb593): SYS_pthread_setschedparam + DW_AT_const_value : 116 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb5ea): SYS_pthread_setschedprio + DW_AT_const_value : 117 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xbba5): SYS_pthread_cond_clockwait + DW_AT_const_value : 118 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xbc25): SYS_pthread_sigmask + DW_AT_const_value : 119 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb718): SYS_mq_close + DW_AT_const_value : 120 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb603): SYS_mq_getattr + DW_AT_const_value : 121 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb7fc): SYS_mq_notify + DW_AT_const_value : 122 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xbbc0): SYS_mq_open + DW_AT_const_value : 123 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb6a1): SYS_mq_receive + DW_AT_const_value : 124 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb917): SYS_mq_send + DW_AT_const_value : 125 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xba35): SYS_mq_setattr + DW_AT_const_value : 126 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb982): SYS_mq_timedreceive + DW_AT_const_value : 127 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb46c): SYS_mq_timedsend + DW_AT_const_value : 128 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb761): SYS_mq_unlink + DW_AT_const_value : 129 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xbabe): SYS_get_environ_ptr + DW_AT_const_value : 130 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xbb14): SYS_clearenv + DW_AT_const_value : 131 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xbd82): SYS_getenv + DW_AT_const_value : 132 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb43b): SYS_putenv + DW_AT_const_value : 133 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb9e7): SYS_setenv + DW_AT_const_value : 134 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb677): SYS_unsetenv + DW_AT_const_value : 135 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xbd8d): SYS_getrandom + DW_AT_const_value : 136 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb560): SYS_nanosleep + DW_AT_const_value : 137 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xbcf7): SYS_epoll_create1 + DW_AT_const_value : 138 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb49a): SYS_epoll_ctl + DW_AT_const_value : 139 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb8a9): SYS_epoll_wait + DW_AT_const_value : 140 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xbafa): SYS_time + DW_AT_const_value : 141 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xbb03): SYS_gettimeofday + DW_AT_const_value : 142 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xba24): SYS_settimeofday + DW_AT_const_value : 143 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb628): SYS_signal + DW_AT_const_value : 144 + <2>: Abbrev Number: 13 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xb7b4): SYS_maxsyscall + DW_AT_const_value : 145 + <2>: Abbrev Number: 0 + <1>: Abbrev Number: 14 (DW_TAG_subprogram) + DW_AT_external : 1 + DW_AT_name : (indirect string, offset: 0xb3c8): nxsem_wait + DW_AT_decl_file : 8 + DW_AT_decl_line : 181 + DW_AT_decl_column : 5 + DW_AT_prototyped : 1 + DW_AT_type : <0x9f4f> + DW_AT_low_pc : 0xdfa + DW_AT_high_pc : 0xe + DW_AT_frame_base : 1 byte block: 9c (DW_OP_call_frame_cfa) + DW_AT_GNU_all_call_sites: 1 + DW_AT_sibling : <0xa422> + <2>: Abbrev Number: 15 (DW_TAG_formal_parameter) + DW_AT_name : (indirect string, offset: 0xbab3): parm1 + DW_AT_decl_file : 1 + DW_AT_decl_line : 7 + DW_AT_decl_column : 28 + DW_AT_type : <0xa422> + DW_AT_location : 0x3541 (location list) + <2>: Abbrev Number: 16 (DW_TAG_inlined_subroutine) + DW_AT_abstract_origin: <0xa428> + DW_AT_low_pc : 0xdfc + DW_AT_high_pc : 0x8 + DW_AT_call_file : 1 + DW_AT_call_line : 9 + DW_AT_call_column : 15 + <3>: Abbrev Number: 17 (DW_TAG_formal_parameter) + DW_AT_abstract_origin: <0xa435> + DW_AT_location : 0x3577 (location list) + <3>: Abbrev Number: 17 (DW_TAG_formal_parameter) + DW_AT_abstract_origin: <0xa441> + DW_AT_location : 0x359b (location list) + <3>: Abbrev Number: 18 (DW_TAG_variable) + DW_AT_abstract_origin: <0xa44d> + DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <3>: Abbrev Number: 18 (DW_TAG_variable) + DW_AT_abstract_origin: <0xa458> + DW_AT_location : 1 byte block: 5b (DW_OP_reg11 (a1)) + <3>: Abbrev Number: 0 + <2>: Abbrev Number: 0 + <1>: Abbrev Number: 8 (DW_TAG_pointer_type) + DW_AT_byte_size : 8 + DW_AT_type : <0xa05f> + <1>: Abbrev Number: 19 (DW_TAG_subprogram) + DW_AT_name : (indirect string, offset: 0xb8b8): sys_call1 + DW_AT_decl_file : 2 + DW_AT_decl_line : 197 + DW_AT_decl_column : 25 + DW_AT_prototyped : 1 + DW_AT_type : <0x9f9b> + DW_AT_inline : 3 (declared as inline and inlined) + <2>: Abbrev Number: 20 (DW_TAG_formal_parameter) + DW_AT_name : nbr + DW_AT_decl_file : 2 + DW_AT_decl_line : 197 + DW_AT_decl_column : 48 + DW_AT_type : <0x9f56> + <2>: Abbrev Number: 21 (DW_TAG_formal_parameter) + DW_AT_name : (indirect string, offset: 0xbab3): parm1 + DW_AT_decl_file : 2 + DW_AT_decl_line : 197 + DW_AT_decl_column : 63 + DW_AT_type : <0x9f9b> + <2>: Abbrev Number: 22 (DW_TAG_variable) + DW_AT_name : r0 + DW_AT_decl_file : 2 + DW_AT_decl_line : 199 + DW_AT_decl_column : 17 + DW_AT_type : <0x9f5d> + <2>: Abbrev Number: 22 (DW_TAG_variable) + DW_AT_name : r1 + DW_AT_decl_file : 2 + DW_AT_decl_line : 200 + DW_AT_decl_column : 17 + DW_AT_type : <0x9f5d> + <2>: Abbrev Number: 0 + <1>: Abbrev Number: 0 + Compilation Unit @ offset 0xa465: + Length: 0x511 (32-bit) + Version: 4 + Abbrev Offset: 0x2f3a + Pointer Size: 8 + <0>: Abbrev Number: 1 (DW_TAG_compile_unit) + DW_AT_producer : (indirect string, offset: 0xc631): GNU C17 10.2.0 -mcmodel=medany -march=rv64imafdc -mabi=lp64d -march=rv64imafdc -g -Os -fno-common -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections + DW_AT_language : 12 (ANSI C99) + DW_AT_name : (indirect string, offset: 0xc178): proxies/PROXY_write.c + DW_AT_comp_dir : (indirect string, offset: 0xc464): /Users/Luppy/ox64/nuttx/syscall + DW_AT_ranges : 0x930 + DW_AT_low_pc : 0x0 + DW_AT_stmt_list : 0x5221 + <1>: Abbrev Number: 2 (DW_TAG_base_type) + DW_AT_byte_size : 1 + DW_AT_encoding : 6 (signed char) + DW_AT_name : (indirect string, offset: 0xbf38): signed char + <1>: Abbrev Number: 2 (DW_TAG_base_type) + DW_AT_byte_size : 1 + DW_AT_encoding : 8 (unsigned char) + DW_AT_name : (indirect string, offset: 0xc377): unsigned char + <1>: Abbrev Number: 2 (DW_TAG_base_type) + DW_AT_byte_size : 2 + DW_AT_encoding : 5 (signed) + DW_AT_name : (indirect string, offset: 0xc3b4): short int + <1>: Abbrev Number: 2 (DW_TAG_base_type) + DW_AT_byte_size : 2 + DW_AT_encoding : 7 (unsigned) + DW_AT_name : (indirect string, offset: 0xc13c): short unsigned int + <1>: Abbrev Number: 3 (DW_TAG_base_type) + DW_AT_byte_size : 4 + DW_AT_encoding : 5 (signed) + DW_AT_name : int + <1>: Abbrev Number: 2 (DW_TAG_base_type) + DW_AT_byte_size : 4 + DW_AT_encoding : 7 (unsigned) + DW_AT_name : (indirect string, offset: 0xc0d8): unsigned int + <1>: Abbrev Number: 2 (DW_TAG_base_type) + DW_AT_byte_size : 8 + DW_AT_encoding : 5 (signed) + DW_AT_name : (indirect string, offset: 0xbfa5): long int + <1>: Abbrev Number: 2 (DW_TAG_base_type) + DW_AT_byte_size : 8 + DW_AT_encoding : 7 (unsigned) + DW_AT_name : (indirect string, offset: 0xc100): long unsigned int + <1>: Abbrev Number: 4 (DW_TAG_typedef) + DW_AT_name : (indirect string, offset: 0xc6e1): _ssize_t + DW_AT_decl_file : 3 + DW_AT_decl_line : 91 + DW_AT_decl_column : 28 + DW_AT_type : <0xa4b8> + <1>: Abbrev Number: 4 (DW_TAG_typedef) + DW_AT_name : (indirect string, offset: 0xc201): _size_t + DW_AT_decl_file : 3 + DW_AT_decl_line : 93 + DW_AT_decl_column : 28 + DW_AT_type : <0xa4bf> + <1>: Abbrev Number: 2 (DW_TAG_base_type) + DW_AT_byte_size : 8 + DW_AT_encoding : 7 (unsigned) + DW_AT_name : (indirect string, offset: 0xbe9f): long long unsigned int + <1>: Abbrev Number: 4 (DW_TAG_typedef) + DW_AT_name : (indirect string, offset: 0xbe02): uintptr_t + DW_AT_decl_file : 4 + DW_AT_decl_line : 239 + DW_AT_decl_column : 29 + DW_AT_type : <0xa4d2> + <1>: Abbrev Number: 4 (DW_TAG_typedef) + DW_AT_name : (indirect string, offset: 0xbdfb): size_t + DW_AT_decl_file : 5 + DW_AT_decl_line : 133 + DW_AT_decl_column : 22 + DW_AT_type : <0xa4d2> + <1>: Abbrev Number: 4 (DW_TAG_typedef) + DW_AT_name : (indirect string, offset: 0xbe50): ssize_t + DW_AT_decl_file : 5 + DW_AT_decl_line : 134 + DW_AT_decl_column : 22 + DW_AT_type : <0xa4c6> + <1>: Abbrev Number: 2 (DW_TAG_base_type) + DW_AT_byte_size : 1 + DW_AT_encoding : 8 (unsigned char) + DW_AT_name : (indirect string, offset: 0xc490): char + <1>: Abbrev Number: 5 (DW_TAG_enumeration_type) + DW_AT_encoding : 7 (unsigned) + DW_AT_byte_size : 4 + DW_AT_type : <0xa4b1> + DW_AT_decl_file : 6 + DW_AT_decl_line : 57 + DW_AT_decl_column : 1 + DW_AT_sibling : <0xa85b> + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc279): SYS__exit + DW_AT_const_value : 8 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc421): SYS__assert + DW_AT_const_value : 9 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc0a7): SYS_getpid + DW_AT_const_value : 10 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc317): SYS_gettid + DW_AT_const_value : 11 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc787): SYS_prctl + DW_AT_const_value : 12 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xbefa): SYS_sched_getparam + DW_AT_const_value : 13 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc770): SYS_sched_getscheduler + DW_AT_const_value : 14 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc292): SYS_sched_lock + DW_AT_const_value : 15 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc5fd): SYS_sched_lockcount + DW_AT_const_value : 16 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc52e): SYS_sched_rr_get_interval + DW_AT_const_value : 17 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc51b): SYS_sched_setparam + DW_AT_const_value : 18 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc217): SYS_sched_setscheduler + DW_AT_const_value : 19 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc72c): SYS_sched_unlock + DW_AT_const_value : 20 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xbe1c): SYS_sched_yield + DW_AT_const_value : 21 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc44a): SYS_nxsched_get_stackinfo + DW_AT_const_value : 22 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc2b5): SYS_sysinfo + DW_AT_const_value : 23 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc43a): SYS_gethostname + DW_AT_const_value : 24 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc0bc): SYS_sethostname + DW_AT_const_value : 25 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc18e): SYS_nxsem_destroy + DW_AT_const_value : 26 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc335): SYS_nxsem_post + DW_AT_const_value : 27 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xbf91): SYS_nxsem_clockwait + DW_AT_const_value : 28 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc1b9): SYS_nxsem_timedwait + DW_AT_const_value : 29 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc247): SYS_nxsem_trywait + DW_AT_const_value : 30 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xbe37): SYS_nxsem_wait + DW_AT_const_value : 31 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc611): SYS_pgalloc + DW_AT_const_value : 32 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc415): SYS_up_fork + DW_AT_const_value : 33 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc4c5): SYS_waitpid + DW_AT_const_value : 34 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xbeea): SYS_posix_spawn + DW_AT_const_value : 35 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc40a): SYS_execve + DW_AT_const_value : 36 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc3a0): SYS_kill + DW_AT_const_value : 37 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xbdd6): SYS_tgkill + DW_AT_const_value : 38 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc0e5): SYS_sigaction + DW_AT_const_value : 39 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc385): SYS_sigpending + DW_AT_const_value : 40 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc004): SYS_sigprocmask + DW_AT_const_value : 41 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc5d3): SYS_sigqueue + DW_AT_const_value : 42 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc26a): SYS_sigsuspend + DW_AT_const_value : 43 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xbf5c): SYS_sigtimedwait + DW_AT_const_value : 44 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xbeda): SYS_sigwaitinfo + DW_AT_const_value : 45 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc2a1): SYS_clock_nanosleep + DW_AT_const_value : 46 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xbe7c): SYS_clock + DW_AT_const_value : 47 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc55d): SYS_clock_gettime + DW_AT_const_value : 48 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc08b): SYS_clock_settime + DW_AT_const_value : 49 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc5a3): SYS_timer_create + DW_AT_const_value : 50 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc259): SYS_timer_delete + DW_AT_const_value : 51 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc159): SYS_timer_getoverrun + DW_AT_const_value : 52 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc055): SYS_timer_gettime + DW_AT_const_value : 53 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc11c): SYS_timer_settime + DW_AT_const_value : 54 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc209): SYS_getitimer + DW_AT_const_value : 55 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc027): SYS_setitimer + DW_AT_const_value : 56 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc1cd): SYS_nx_vsyslog + DW_AT_const_value : 57 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xbf6d): SYS_close + DW_AT_const_value : 58 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc722): SYS_ioctl + DW_AT_const_value : 59 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xbf2f): SYS_read + DW_AT_const_value : 60 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc09d): SYS_write + DW_AT_const_value : 61 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xbed0): SYS_pread + DW_AT_const_value : 62 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc2dc): SYS_pwrite + DW_AT_const_value : 63 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xbdcd): SYS_poll + DW_AT_const_value : 64 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xbe94): SYS_select + DW_AT_const_value : 65 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xbe46): SYS_ppoll + DW_AT_const_value : 66 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc1dc): SYS_pselect + DW_AT_const_value : 67 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xbfae): SYS_boardctl + DW_AT_const_value : 68 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc32d): SYS_dup + DW_AT_const_value : 69 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc3be): SYS_dup2 + DW_AT_const_value : 70 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc112): SYS_fcntl + DW_AT_const_value : 71 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc714): SYS_ftruncate + DW_AT_const_value : 72 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xbf25): SYS_lseek + DW_AT_const_value : 73 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc03f): SYS_mmap + DW_AT_const_value : 74 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc5ca): SYS_open + DW_AT_const_value : 75 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc322): SYS_rename + DW_AT_const_value : 76 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc74e): SYS_stat + DW_AT_const_value : 77 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc553): SYS_lstat + DW_AT_const_value : 78 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xbe0c): SYS_fstat + DW_AT_const_value : 79 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc1f6): SYS_statfs + DW_AT_const_value : 80 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc394): SYS_fstatfs + DW_AT_const_value : 81 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc56f): SYS_sendfile + DW_AT_const_value : 82 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc3c7): SYS_sync + DW_AT_const_value : 83 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc0b2): SYS_fsync + DW_AT_const_value : 84 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc1af): SYS_chmod + DW_AT_const_value : 85 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc709): SYS_lchmod + DW_AT_const_value : 86 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc30c): SYS_fchmod + DW_AT_const_value : 87 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xbf52): SYS_chown + DW_AT_const_value : 88 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc358): SYS_lchown + DW_AT_const_value : 89 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc071): SYS_fchown + DW_AT_const_value : 90 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc0cc): SYS_utimens + DW_AT_const_value : 91 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc6fc): SYS_lutimens + DW_AT_const_value : 92 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc42d): SYS_futimens + DW_AT_const_value : 93 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc548): SYS_munmap + DW_AT_const_value : 94 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc16e): SYS_mount + DW_AT_const_value : 95 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc035): SYS_mkdir + DW_AT_const_value : 96 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc14f): SYS_rmdir + DW_AT_const_value : 97 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc50f): SYS_umount2 + DW_AT_const_value : 98 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc791): SYS_unlink + DW_AT_const_value : 99 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc2f3): SYS_pthread_barrier_wait + DW_AT_const_value : 100 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc014): SYS_pthread_cancel + DW_AT_const_value : 101 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc2c1): SYS_pthread_cond_broadcast + DW_AT_const_value : 102 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xbf0d): SYS_pthread_cond_signal + DW_AT_const_value : 103 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc5b4): SYS_pthread_cond_wait + DW_AT_const_value : 104 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xbfe3): SYS_nx_pthread_create + DW_AT_const_value : 105 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xbe69): SYS_pthread_detach + DW_AT_const_value : 106 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc363): SYS_nx_pthread_exit + DW_AT_const_value : 107 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc3d0): SYS_pthread_getschedparam + DW_AT_const_value : 108 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc73d): SYS_pthread_join + DW_AT_const_value : 109 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xbeb6): SYS_pthread_mutex_destroy + DW_AT_const_value : 110 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc4f8): SYS_pthread_mutex_init + DW_AT_const_value : 111 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc4a9): SYS_pthread_mutex_timedlock + DW_AT_const_value : 112 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xbde1): SYS_pthread_mutex_trylock + DW_AT_const_value : 113 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc22e): SYS_pthread_mutex_unlock + DW_AT_const_value : 114 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc5e0): SYS_pthread_mutex_consistent + DW_AT_const_value : 115 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xbf77): SYS_pthread_setschedparam + DW_AT_const_value : 116 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xbfbb): SYS_pthread_setschedprio + DW_AT_const_value : 117 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc57c): SYS_pthread_cond_clockwait + DW_AT_const_value : 118 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc61d): SYS_pthread_sigmask + DW_AT_const_value : 119 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc0f3): SYS_mq_close + DW_AT_const_value : 120 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xbfd4): SYS_mq_getattr + DW_AT_const_value : 121 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc1e8): SYS_mq_notify + DW_AT_const_value : 122 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc597): SYS_mq_open + DW_AT_const_value : 123 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc07c): SYS_mq_receive + DW_AT_const_value : 124 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc2e7): SYS_mq_send + DW_AT_const_value : 125 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc3fb): SYS_mq_setattr + DW_AT_const_value : 126 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc344): SYS_mq_timedreceive + DW_AT_const_value : 127 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xbe58): SYS_mq_timedsend + DW_AT_const_value : 128 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc12e): SYS_mq_unlink + DW_AT_const_value : 129 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc495): SYS_get_environ_ptr + DW_AT_const_value : 130 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc4eb): SYS_clearenv + DW_AT_const_value : 131 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc757): SYS_getenv + DW_AT_const_value : 132 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xbe2c): SYS_putenv + DW_AT_const_value : 133 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc3a9): SYS_setenv + DW_AT_const_value : 134 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc048): SYS_unsetenv + DW_AT_const_value : 135 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc762): SYS_getrandom + DW_AT_const_value : 136 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xbf44): SYS_nanosleep + DW_AT_const_value : 137 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc6ea): SYS_epoll_create1 + DW_AT_const_value : 138 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xbe86): SYS_epoll_ctl + DW_AT_const_value : 139 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc283): SYS_epoll_wait + DW_AT_const_value : 140 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc4d1): SYS_time + DW_AT_const_value : 141 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc4da): SYS_gettimeofday + DW_AT_const_value : 142 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc3ea): SYS_settimeofday + DW_AT_const_value : 143 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xbff9): SYS_signal + DW_AT_const_value : 144 + <2>: Abbrev Number: 6 (DW_TAG_enumerator) + DW_AT_name : (indirect string, offset: 0xc1a0): SYS_maxsyscall + DW_AT_const_value : 145 + <2>: Abbrev Number: 0 + <1>: Abbrev Number: 7 (DW_TAG_subprogram) + DW_AT_external : 1 + DW_AT_name : (indirect string, offset: 0xbe16): write + DW_AT_decl_file : 7 + DW_AT_decl_line : 335 + DW_AT_decl_column : 9 + DW_AT_prototyped : 1 + DW_AT_type : <0xa4fd> + DW_AT_low_pc : 0xe08 + DW_AT_high_pc : 0x16 + DW_AT_frame_base : 1 byte block: 9c (DW_OP_call_frame_cfa) + DW_AT_GNU_all_call_sites: 1 + DW_AT_sibling : <0xa908> + <2>: Abbrev Number: 8 (DW_TAG_formal_parameter) + DW_AT_name : (indirect string, offset: 0xc484): parm1 + DW_AT_decl_file : 1 + DW_AT_decl_line : 7 + DW_AT_decl_column : 19 + DW_AT_type : <0xa4aa> + DW_AT_location : 0x35d1 (location list) + <2>: Abbrev Number: 8 (DW_TAG_formal_parameter) + DW_AT_name : (indirect string, offset: 0xc48a): parm2 + DW_AT_decl_file : 1 + DW_AT_decl_line : 7 + DW_AT_decl_column : 43 + DW_AT_type : <0xa908> + DW_AT_location : 0x360a (location list) + <2>: Abbrev Number: 8 (DW_TAG_formal_parameter) + DW_AT_name : (indirect string, offset: 0xbdc7): parm3 + DW_AT_decl_file : 1 + DW_AT_decl_line : 7 + DW_AT_decl_column : 57 + DW_AT_type : <0xa4f1> + DW_AT_location : 0x3640 (location list) + <2>: Abbrev Number: 9 (DW_TAG_inlined_subroutine) + DW_AT_abstract_origin: <0xa90f> + DW_AT_low_pc : 0xe0e + DW_AT_high_pc : 0xe + DW_AT_call_file : 1 + DW_AT_call_line : 9 + DW_AT_call_column : 19 + <3>: Abbrev Number: 10 (DW_TAG_formal_parameter) + DW_AT_abstract_origin: <0xa91c> + DW_AT_location : 0x3676 (location list) + <3>: Abbrev Number: 10 (DW_TAG_formal_parameter) + DW_AT_abstract_origin: <0xa940> + DW_AT_location : 0x369b (location list) + <3>: Abbrev Number: 10 (DW_TAG_formal_parameter) + DW_AT_abstract_origin: <0xa934> + DW_AT_location : 0x36d1 (location list) + <3>: Abbrev Number: 10 (DW_TAG_formal_parameter) + DW_AT_abstract_origin: <0xa928> + DW_AT_location : 0x3707 (location list) + <3>: Abbrev Number: 11 (DW_TAG_variable) + DW_AT_abstract_origin: <0xa94c> + DW_AT_location : 1 byte block: 5a (DW_OP_reg10 (a0)) + <3>: Abbrev Number: 11 (DW_TAG_variable) + DW_AT_abstract_origin: <0xa957> + DW_AT_location : 1 byte block: 5b (DW_OP_reg11 (a1)) + <3>: Abbrev Number: 11 (DW_TAG_variable) + DW_AT_abstract_origin: <0xa962> + DW_AT_location : 1 byte block: 5c (DW_OP_reg12 (a2)) + <3>: Abbrev Number: 11 (DW_TAG_variable) + DW_AT_abstract_origin: <0xa96d> + DW_AT_location : 1 byte block: 5d (DW_OP_reg13 (a3)) + <3>: Abbrev Number: 0 + <2>: Abbrev Number: 0 + <1>: Abbrev Number: 12 (DW_TAG_pointer_type) + DW_AT_byte_size : 8 + DW_AT_type : <0xa90e> + <1>: Abbrev Number: 13 (DW_TAG_const_type) + <1>: Abbrev Number: 14 (DW_TAG_subprogram) + DW_AT_name : (indirect string, offset: 0xc067): sys_call3 + DW_AT_decl_file : 2 + DW_AT_decl_line : 249 + DW_AT_decl_column : 25 + DW_AT_prototyped : 1 + DW_AT_type : <0xa4e5> + DW_AT_inline : 3 (declared as inline and inlined) + <2>: Abbrev Number: 15 (DW_TAG_formal_parameter) + DW_AT_name : nbr + DW_AT_decl_file : 2 + DW_AT_decl_line : 249 + DW_AT_decl_column : 48 + DW_AT_type : <0xa4b1> + <2>: Abbrev Number: 16 (DW_TAG_formal_parameter) + DW_AT_name : (indirect string, offset: 0xc484): parm1 + DW_AT_decl_file : 2 + DW_AT_decl_line : 249 + DW_AT_decl_column : 63 + DW_AT_type : <0xa4e5> + <2>: Abbrev Number: 16 (DW_TAG_formal_parameter) + DW_AT_name : (indirect string, offset: 0xc48a): parm2 + DW_AT_decl_file : 2 + DW_AT_decl_line : 250 + DW_AT_decl_column : 45 + DW_AT_type : <0xa4e5> + <2>: Abbrev Number: 16 (DW_TAG_formal_parameter) + DW_AT_name : (indirect string, offset: 0xbdc7): parm3 + DW_AT_decl_file : 2 + DW_AT_decl_line : 250 + DW_AT_decl_column : 62 + DW_AT_type : <0xa4e5> + <2>: Abbrev Number: 17 (DW_TAG_variable) + DW_AT_name : r0 + DW_AT_decl_file : 2 + DW_AT_decl_line : 252 + DW_AT_decl_column : 17 + DW_AT_type : <0xa4b8> + <2>: Abbrev Number: 17 (DW_TAG_variable) + DW_AT_name : r1 + DW_AT_decl_file : 2 + DW_AT_decl_line : 253 + DW_AT_decl_column : 17 + DW_AT_type : <0xa4b8> + <2>: Abbrev Number: 17 (DW_TAG_variable) + DW_AT_name : r2 + DW_AT_decl_file : 2 + DW_AT_decl_line : 254 + DW_AT_decl_column : 17 + DW_AT_type : <0xa4b8> + <2>: Abbrev Number: 17 (DW_TAG_variable) + DW_AT_name : r3 + DW_AT_decl_file : 2 + DW_AT_decl_line : 255 + DW_AT_decl_column : 17 + DW_AT_type : <0xa4b8> + <2>: Abbrev Number: 0 + <1>: Abbrev Number: 0 + +Raw dump of debug contents of section .debug_line (loaded from ../apps/bin/hello): + + Offset: 0x0 + Length: 346 + DWARF Version: 3 + Prologue Length: 203 + Minimum Instruction Length: 1 + Initial value of 'is_stmt': 1 + Line Base: -5 + Line Range: 14 + Opcode Base: 13 + + Opcodes: + Opcode 1 has 0 args + Opcode 2 has 1 arg + Opcode 3 has 1 arg + Opcode 4 has 1 arg + Opcode 5 has 1 arg + Opcode 6 has 0 args + Opcode 7 has 0 args + Opcode 8 has 0 args + Opcode 9 has 1 arg + Opcode 10 has 0 args + Opcode 11 has 0 args + Opcode 12 has 1 arg + + The Directory Table (offset 0x1b): + 1 common + 2 /Users/Luppy/ox64/nuttx/include/arch + 3 /Users/Luppy/ox64/nuttx/include + 4 /Users/Luppy/ox64/nuttx/include/nuttx + + The File Name Table (offset 0x8e): + Entry Dir Time Size Name + 1 1 0 0 crt0.c + 2 2 0 0 types.h + 3 3 0 0 stdint.h + 4 3 0 0 signal.h + 5 4 0 0 addrenv.h + 6 3 0 0 stdlib.h + + Line Number Statements: + [0x000000d5] Set column to 1 + [0x000000d7] Extended opcode 2: set Address to 0x0 + [0x000000e2] Advance Line by 68 to 69 + [0x000000e5] Copy + [0x000000e6] Set column to 3 + [0x000000e8] Advance Line by 1 to 70 + [0x000000ea] Advance PC by fixed size amount 0 to 0x0 + [0x000000ed] Copy (view 1) + [0x000000ee] Advance PC by fixed size amount 26 to 0x1a + [0x000000f1] Extended opcode 1: End of Sequence + + [0x000000f4] Set column to 1 + [0x000000f6] Set is_stmt to 0 + [0x000000f7] Extended opcode 2: set Address to 0x1a + [0x00000102] Advance Line by 87 to 88 + [0x00000105] Copy + [0x00000106] Set is_stmt to 1 + [0x00000107] Advance Line by 78 to 166 + [0x0000010a] Advance PC by fixed size amount 0 to 0x1a + [0x0000010d] Copy (view 1) + [0x0000010e] Set column to 3 + [0x00000110] Advance Line by 1 to 167 + [0x00000112] Advance PC by fixed size amount 0 to 0x1a + [0x00000115] Copy (view 2) + [0x00000116] Advance Line by 6 to 173 + [0x00000118] Advance PC by fixed size amount 0 to 0x1a + [0x0000011b] Copy (view 3) + [0x0000011c] Set column to 1 + [0x0000011e] Set is_stmt to 0 + [0x0000011f] Advance Line by -7 to 166 + [0x00000121] Advance PC by fixed size amount 0 to 0x1a + [0x00000124] Copy (view 4) + [0x00000125] Set column to 34 + [0x00000127] Advance Line by 7 to 173 + [0x00000129] Advance PC by fixed size amount 2 to 0x1c + [0x0000012c] Copy (view 5) + [0x0000012d] Set column to 1 + [0x0000012f] Advance Line by -7 to 166 + [0x00000131] Advance PC by fixed size amount 4 to 0x20 + [0x00000134] Copy (view 6) + [0x00000135] Set column to 34 + [0x00000137] Advance Line by 7 to 173 + [0x00000139] Advance PC by fixed size amount 2 to 0x22 + [0x0000013c] Copy (view 7) + [0x0000013d] Set column to 3 + [0x0000013f] Set is_stmt to 1 + [0x00000140] Advance Line by 14 to 187 + [0x00000142] Advance PC by fixed size amount 12 to 0x2e + [0x00000145] Copy (view 8) + [0x00000146] Set column to 9 + [0x00000148] Set is_stmt to 0 + [0x00000149] Advance Line by 0 to 187 + [0x0000014b] Advance PC by fixed size amount 0 to 0x2e + [0x0000014e] Copy (view 9) + [0x0000014f] Set column to 3 + [0x00000151] Set is_stmt to 1 + [0x00000152] Advance Line by 4 to 191 + [0x00000154] Advance PC by fixed size amount 8 to 0x36 + [0x00000157] Copy (view 10) + [0x00000158] Advance PC by fixed size amount 8 to 0x3e + [0x0000015b] Extended opcode 1: End of Sequence + + + Offset: 0x15e + Length: 134 + DWARF Version: 3 + Prologue Length: 49 + Minimum Instruction Length: 1 + Initial value of 'is_stmt': 1 + Line Base: -5 + Line Range: 14 + Opcode Base: 13 + + Opcodes: + Opcode 1 has 0 args + Opcode 2 has 1 arg + Opcode 3 has 1 arg + Opcode 4 has 1 arg + Opcode 5 has 1 arg + Opcode 6 has 0 args + Opcode 7 has 0 args + Opcode 8 has 0 args + Opcode 9 has 1 arg + Opcode 10 has 0 args + Opcode 11 has 0 args + Opcode 12 has 1 arg + + The Directory Table is empty. + + The File Name Table (offset 0x17a): + Entry Dir Time Size Name + 1 0 0 0 hello_main.c + 2 0 0 0 + + Line Number Statements: + [0x00000199] Set column to 1 + [0x0000019b] Extended opcode 2: set Address to 0x3e + [0x000001a6] Advance Line by 36 to 37 + [0x000001a8] Copy + [0x000001a9] Set column to 3 + [0x000001ab] Advance Line by 1 to 38 + [0x000001ad] Advance PC by fixed size amount 0 to 0x3e + [0x000001b0] Copy (view 1) + [0x000001b1] Set column to 1 + [0x000001b3] Set is_stmt to 0 + [0x000001b4] Advance Line by -1 to 37 + [0x000001b6] Advance PC by fixed size amount 0 to 0x3e + [0x000001b9] Copy (view 2) + [0x000001ba] Set column to 3 + [0x000001bc] Advance Line by 1 to 38 + [0x000001be] Advance PC by fixed size amount 2 to 0x40 + [0x000001c1] Copy (view 3) + [0x000001c2] Set column to 1 + [0x000001c4] Advance Line by -1 to 37 + [0x000001c6] Advance PC by fixed size amount 8 to 0x48 + [0x000001c9] Copy (view 4) + [0x000001ca] Set column to 3 + [0x000001cc] Advance Line by 1 to 38 + [0x000001ce] Advance PC by fixed size amount 2 to 0x4a + [0x000001d1] Copy (view 5) + [0x000001d2] Set is_stmt to 1 + [0x000001d3] Advance Line by 1 to 39 + [0x000001d5] Advance PC by fixed size amount 8 to 0x52 + [0x000001d8] Copy (view 6) + [0x000001d9] Set column to 1 + [0x000001db] Set is_stmt to 0 + [0x000001dc] Advance Line by 1 to 40 + [0x000001de] Advance PC by fixed size amount 0 to 0x52 + [0x000001e1] Copy (view 7) + [0x000001e2] Advance PC by fixed size amount 8 to 0x5a + [0x000001e5] Extended opcode 1: End of Sequence + + + Offset: 0x1e8 + Length: 737 + DWARF Version: 3 + Prologue Length: 408 + Minimum Instruction Length: 1 + Initial value of 'is_stmt': 1 + Line Base: -5 + Line Range: 14 + Opcode Base: 13 + + Opcodes: + Opcode 1 has 0 args + Opcode 2 has 1 arg + Opcode 3 has 1 arg + Opcode 4 has 1 arg + Opcode 5 has 1 arg + Opcode 6 has 0 args + Opcode 7 has 0 args + Opcode 8 has 0 args + Opcode 9 has 1 arg + Opcode 10 has 0 args + Opcode 11 has 0 args + Opcode 12 has 1 arg + + The Directory Table (offset 0x203): + 1 stdio + 2 /Users/Luppy/ox64/nuttx/include/arch + 3 /Users/Luppy/ox64/nuttx/include + 4 /Users/Luppy/ox64/nuttx/include/sys + 5 /Users/Luppy/ox64/nuttx/include/nuttx + 6 /Users/Luppy/ox64/nuttx/include/nuttx/fs + 7 /Users/Luppy/ox64/nuttx/libs/libc + 8 /Users/Luppy/ox64/nuttx/include/nuttx/lib + + The File Name Table (offset 0x30e): + Entry Dir Time Size Name + 1 1 0 0 lib_puts.c + 2 2 0 0 types.h + 3 3 0 0 stdint.h + 4 4 0 0 types.h + 5 5 0 0 queue.h + 6 3 0 0 semaphore.h + 7 5 0 0 mutex.h + 8 6 0 0 fs.h + 9 3 0 0 stdio.h + 10 7 0 0 libc.h + 11 8 0 0 lib.h + + Line Number Statements: + [0x0000038a] Set column to 1 + [0x0000038c] Extended opcode 2: set Address to 0x5a + [0x00000397] Advance Line by 43 to 44 + [0x00000399] Copy + [0x0000039a] Set column to 3 + [0x0000039c] Advance Line by 2 to 46 + [0x0000039e] Advance PC by fixed size amount 0 to 0x5a + [0x000003a1] Copy (view 1) + [0x000003a2] Set column to 1 + [0x000003a4] Set is_stmt to 0 + [0x000003a5] Advance Line by -2 to 44 + [0x000003a7] Advance PC by fixed size amount 0 to 0x5a + [0x000003aa] Copy (view 2) + [0x000003ab] Set column to 18 + [0x000003ad] Advance Line by 2 to 46 + [0x000003af] Advance PC by fixed size amount 6 to 0x60 + [0x000003b2] Copy (view 3) + [0x000003b3] Set column to 1 + [0x000003b5] Advance Line by -2 to 44 + [0x000003b7] Advance PC by fixed size amount 2 to 0x62 + [0x000003ba] Copy (view 4) + [0x000003bb] Set column to 18 + [0x000003bd] Advance Line by 2 to 46 + [0x000003bf] Advance PC by fixed size amount 4 to 0x66 + [0x000003c2] Copy (view 5) + [0x000003c3] Set column to 3 + [0x000003c5] Set is_stmt to 1 + [0x000003c6] Advance Line by 1 to 47 + [0x000003c8] Advance PC by fixed size amount 10 to 0x70 + [0x000003cb] Copy (view 6) + [0x000003cc] Advance Line by 1 to 48 + [0x000003ce] Advance PC by fixed size amount 0 to 0x70 + [0x000003d1] Copy (view 7) + [0x000003d2] Advance Line by 1 to 49 + [0x000003d4] Advance PC by fixed size amount 0 to 0x70 + [0x000003d7] Copy (view 8) + [0x000003d8] Advance Line by 4 to 53 + [0x000003da] Advance PC by fixed size amount 0 to 0x70 + [0x000003dd] Copy (view 9) + [0x000003de] Advance Line by 4 to 57 + [0x000003e0] Advance PC by fixed size amount 8 to 0x78 + [0x000003e3] Copy (view 10) + [0x000003e4] Set column to 14 + [0x000003e6] Set is_stmt to 0 + [0x000003e7] Advance Line by 0 to 57 + [0x000003e9] Advance PC by fixed size amount 0 to 0x78 + [0x000003ec] Copy (view 11) + [0x000003ed] Set column to 3 + [0x000003ef] Set is_stmt to 1 + [0x000003f0] Advance Line by 1 to 58 + [0x000003f2] Advance PC by fixed size amount 12 to 0x84 + [0x000003f5] Copy (view 12) + [0x000003f6] Set column to 6 + [0x000003f8] Set is_stmt to 0 + [0x000003f9] Advance Line by 0 to 58 + [0x000003fb] Advance PC by fixed size amount 0 to 0x84 + [0x000003fe] Copy (view 13) + [0x000003ff] Set column to 12 + [0x00000401] Advance Line by 4 to 62 + [0x00000403] Advance PC by fixed size amount 4 to 0x88 + [0x00000406] Copy (view 14) + [0x00000407] Set column to 7 + [0x00000409] Set is_stmt to 1 + [0x0000040a] Advance Line by 0 to 62 + [0x0000040c] Advance PC by fixed size amount 4 to 0x8c + [0x0000040f] Copy (view 15) + [0x00000410] Set column to 13 + [0x00000412] Set is_stmt to 0 + [0x00000413] Advance Line by 1 to 63 + [0x00000415] Advance PC by fixed size amount 0 to 0x8c + [0x00000418] Copy (view 16) + [0x00000419] Set column to 12 + [0x0000041b] Advance Line by -1 to 62 + [0x0000041d] Advance PC by fixed size amount 8 to 0x94 + [0x00000420] Copy (view 17) + [0x00000421] Set column to 7 + [0x00000423] Set is_stmt to 1 + [0x00000424] Advance Line by 1 to 63 + [0x00000426] Advance PC by fixed size amount 4 to 0x98 + [0x00000429] Copy (view 18) + [0x0000042a] Set column to 13 + [0x0000042c] Set is_stmt to 0 + [0x0000042d] Advance Line by 0 to 63 + [0x0000042f] Advance PC by fixed size amount 0 to 0x98 + [0x00000432] Copy (view 19) + [0x00000433] Set column to 7 + [0x00000435] Set is_stmt to 1 + [0x00000436] Advance Line by 1 to 64 + [0x00000438] Advance PC by fixed size amount 8 to 0xa0 + [0x0000043b] Copy (view 20) + [0x0000043c] Set column to 10 + [0x0000043e] Set is_stmt to 0 + [0x0000043f] Advance Line by 0 to 64 + [0x00000441] Advance PC by fixed size amount 0 to 0xa0 + [0x00000444] Copy (view 21) + [0x00000445] Set column to 11 + [0x00000447] Set is_stmt to 1 + [0x00000448] Advance Line by 2 to 66 + [0x0000044a] Advance PC by fixed size amount 6 to 0xa6 + [0x0000044d] Copy (view 22) + [0x0000044e] Set column to 14 + [0x00000450] Set is_stmt to 0 + [0x00000451] Advance Line by 6 to 72 + [0x00000453] Advance PC by fixed size amount 0 to 0xa6 + [0x00000456] Copy (view 23) + [0x00000457] Set column to 16 + [0x00000459] Advance Line by -6 to 66 + [0x0000045b] Advance PC by fixed size amount 4 to 0xaa + [0x0000045e] Copy (view 24) + [0x0000045f] Set column to 11 + [0x00000461] Set is_stmt to 1 + [0x00000462] Advance Line by 6 to 72 + [0x00000464] Advance PC by fixed size amount 2 to 0xac + [0x00000467] Copy (view 25) + [0x00000468] Set column to 14 + [0x0000046a] Set is_stmt to 0 + [0x0000046b] Advance Line by 0 to 72 + [0x0000046d] Advance PC by fixed size amount 0 to 0xac + [0x00000470] Copy (view 26) + [0x00000471] Set column to 15 + [0x00000473] Set is_stmt to 1 + [0x00000474] Advance Line by 2 to 74 + [0x00000476] Advance PC by fixed size amount 4 to 0xb0 + [0x00000479] Copy (view 27) + [0x0000047a] Set column to 21 + [0x0000047c] Set is_stmt to 0 + [0x0000047d] Advance Line by 0 to 74 + [0x0000047f] Advance PC by fixed size amount 0 to 0xb0 + [0x00000482] Copy (view 28) + [0x00000483] Set column to 15 + [0x00000485] Set is_stmt to 1 + [0x00000486] Advance Line by 1 to 75 + [0x00000488] Advance PC by fixed size amount 10 to 0xba + [0x0000048b] Copy (view 29) + [0x0000048c] Set column to 18 + [0x0000048e] Set is_stmt to 0 + [0x0000048f] Advance Line by 0 to 75 + [0x00000491] Advance PC by fixed size amount 0 to 0xba + [0x00000494] Copy (view 30) + [0x00000495] Set column to 7 + [0x00000497] Advance Line by -27 to 48 + [0x00000499] Advance PC by fixed size amount 6 to 0xc0 + [0x0000049c] Copy (view 31) + [0x0000049d] Set column to 3 + [0x0000049f] Set is_stmt to 1 + [0x000004a0] Advance Line by 35 to 83 + [0x000004a2] Advance PC by fixed size amount 2 to 0xc2 + [0x000004a5] Copy (view 32) + [0x000004a6] Set column to 15 + [0x000004a8] Set is_stmt to 0 + [0x000004a9] Advance Line by 0 to 83 + [0x000004ab] Advance PC by fixed size amount 0 to 0xc2 + [0x000004ae] Copy (view 33) + [0x000004af] Set column to 3 + [0x000004b1] Advance Line by 0 to 83 + [0x000004b3] Advance PC by fixed size amount 10 to 0xcc + [0x000004b6] Copy (view 34) + [0x000004b7] Set is_stmt to 1 + [0x000004b8] Advance Line by 1 to 84 + [0x000004ba] Advance PC by fixed size amount 8 to 0xd4 + [0x000004bd] Copy (view 35) + [0x000004be] Set column to 1 + [0x000004c0] Set is_stmt to 0 + [0x000004c1] Advance Line by 12 to 96 + [0x000004c3] Advance PC by fixed size amount 0 to 0xd4 + [0x000004c6] Copy (view 36) + [0x000004c7] Advance PC by fixed size amount 12 to 0xe0 + [0x000004ca] Extended opcode 1: End of Sequence + + + Offset: 0x4cd + Length: 1303 + DWARF Version: 3 + Prologue Length: 399 + Minimum Instruction Length: 1 + Initial value of 'is_stmt': 1 + Line Base: -5 + Line Range: 14 + Opcode Base: 13 + + Opcodes: + Opcode 1 has 0 args + Opcode 2 has 1 arg + Opcode 3 has 1 arg + Opcode 4 has 1 arg + Opcode 5 has 1 arg + Opcode 6 has 0 args + Opcode 7 has 0 args + Opcode 8 has 0 args + Opcode 9 has 1 arg + Opcode 10 has 0 args + Opcode 11 has 0 args + Opcode 12 has 1 arg + + The Directory Table (offset 0x4e8): + 1 stdio + 2 /Users/Luppy/ox64/nuttx/include/arch + 3 /Users/Luppy/ox64/nuttx/include + 4 /Users/Luppy/ox64/nuttx/include/sys + 5 /Users/Luppy/ox64/nuttx/include/nuttx + 6 /Users/Luppy/ox64/nuttx/include/nuttx/fs + 7 /Users/Luppy/ox64/nuttx/libs/libc + + The File Name Table (offset 0x5c9): + Entry Dir Time Size Name + 1 1 0 0 lib_libfwrite.c + 2 2 0 0 types.h + 3 3 0 0 stdint.h + 4 4 0 0 types.h + 5 5 0 0 queue.h + 6 3 0 0 semaphore.h + 7 5 0 0 mutex.h + 8 6 0 0 fs.h + 9 3 0 0 stdio.h + 10 7 0 0 libc.h + 11 3 0 0 errno.h + 12 3 0 0 unistd.h + 13 0 0 0 + + Line Number Statements: + [0x00000666] Set column to 1 + [0x00000668] Extended opcode 2: set Address to 0xe0 + [0x00000673] Advance Line by 48 to 49 + [0x00000675] Copy + [0x00000676] Set column to 7 + [0x00000678] Advance Line by 1 to 50 + [0x0000067a] Advance PC by fixed size amount 0 to 0xe0 + [0x0000067d] Copy (view 1) + [0x0000067e] Advance Line by 1 to 51 + [0x00000680] Advance PC by fixed size amount 0 to 0xe0 + [0x00000683] Copy (view 2) + [0x00000684] Set column to 3 + [0x00000686] Advance Line by 1 to 52 + [0x00000688] Advance PC by fixed size amount 0 to 0xe0 + [0x0000068b] Copy (view 3) + [0x0000068c] Advance Line by 1 to 53 + [0x0000068e] Advance PC by fixed size amount 0 to 0xe0 + [0x00000691] Copy (view 4) + [0x00000692] Advance Line by 4 to 57 + [0x00000694] Advance PC by fixed size amount 0 to 0xe0 + [0x00000697] Copy (view 5) + [0x00000698] Set column to 1 + [0x0000069a] Set is_stmt to 0 + [0x0000069b] Advance Line by -8 to 49 + [0x0000069d] Advance PC by fixed size amount 0 to 0xe0 + [0x000006a0] Copy (view 6) + [0x000006a1] Set column to 6 + [0x000006a3] Advance Line by 8 to 57 + [0x000006a5] Advance PC by fixed size amount 14 to 0xee + [0x000006a8] Copy (view 7) + [0x000006a9] Set column to 7 + [0x000006ab] Set is_stmt to 1 + [0x000006ac] Advance Line by 2 to 59 + [0x000006ae] Advance PC by fixed size amount 2 to 0xf0 + [0x000006b1] Copy (view 8) + [0x000006b2] Advance Line by 0 to 59 + [0x000006b4] Advance PC by fixed size amount 0 to 0xf0 + [0x000006b7] Copy (view 9) + [0x000006b8] Advance Line by 0 to 59 + [0x000006ba] Advance PC by fixed size amount 12 to 0xfc + [0x000006bd] Copy (view 10) + [0x000006be] Advance Line by 1 to 60 + [0x000006c0] Advance PC by fixed size amount 0 to 0xfc + [0x000006c3] Copy (view 11) + [0x000006c4] Set column to 14 + [0x000006c6] Set is_stmt to 0 + [0x000006c7] Advance Line by 0 to 60 + [0x000006c9] Advance PC by fixed size amount 0 to 0xfc + [0x000006cc] Copy (view 12) + [0x000006cd] Set column to 1 + [0x000006cf] Advance Line by 119 to 179 + [0x000006d2] Advance PC by fixed size amount 2 to 0xfe + [0x000006d5] Copy (view 13) + [0x000006d6] Set column to 6 + [0x000006d8] Advance Line by -114 to 65 + [0x000006db] Advance PC by fixed size amount 16 to 0x10e + [0x000006de] Copy (view 14) + [0x000006df] Set column to 3 + [0x000006e1] Set is_stmt to 1 + [0x000006e2] Advance Line by 0 to 65 + [0x000006e4] Advance PC by fixed size amount 6 to 0x114 + [0x000006e7] Copy (view 15) + [0x000006e8] Set column to 6 + [0x000006ea] Set is_stmt to 0 + [0x000006eb] Advance Line by 0 to 65 + [0x000006ed] Advance PC by fixed size amount 0 to 0x114 + [0x000006f0] Copy (view 16) + [0x000006f1] Set column to 7 + [0x000006f3] Set is_stmt to 1 + [0x000006f4] Advance Line by 2 to 67 + [0x000006f6] Advance PC by fixed size amount 4 to 0x118 + [0x000006f9] Copy (view 17) + [0x000006fa] Advance Line by 0 to 67 + [0x000006fc] Advance PC by fixed size amount 0 to 0x118 + [0x000006ff] Copy (view 18) + [0x00000700] Advance Line by 0 to 67 + [0x00000702] Advance PC by fixed size amount 12 to 0x124 + [0x00000705] Copy (view 19) + [0x00000706] Advance Line by 1 to 68 + [0x00000708] Advance PC by fixed size amount 0 to 0x124 + [0x0000070b] Copy (view 20) + [0x0000070c] Set column to 3 + [0x0000070e] Advance Line by 105 to 173 + [0x00000711] Advance PC by fixed size amount 0 to 0x124 + [0x00000714] Copy (view 21) + [0x00000715] Set column to 15 + [0x00000717] Set is_stmt to 0 + [0x00000718] Advance Line by -86 to 87 + [0x0000071b] Advance PC by fixed size amount 0 to 0x124 + [0x0000071e] Copy (view 22) + [0x0000071f] Set column to 7 + [0x00000721] Set is_stmt to 1 + [0x00000722] Advance Line by 88 to 175 + [0x00000725] Advance PC by fixed size amount 2 to 0x126 + [0x00000728] Copy (view 23) + [0x00000729] Set column to 24 + [0x0000072b] Set is_stmt to 0 + [0x0000072c] Advance Line by 0 to 175 + [0x0000072e] Advance PC by fixed size amount 0 to 0x126 + [0x00000731] Copy (view 24) + [0x00000732] Set column to 6 + [0x00000734] Advance Line by -102 to 73 + [0x00000737] Advance PC by fixed size amount 14 to 0x134 + [0x0000073a] Copy (view 25) + [0x0000073b] Set column to 3 + [0x0000073d] Set is_stmt to 1 + [0x0000073e] Advance Line by 0 to 73 + [0x00000740] Advance PC by fixed size amount 6 to 0x13a + [0x00000743] Copy (view 26) + [0x00000744] Set column to 6 + [0x00000746] Set is_stmt to 0 + [0x00000747] Advance Line by 0 to 73 + [0x00000749] Advance PC by fixed size amount 0 to 0x13a + [0x0000074c] Copy (view 27) + [0x0000074d] Set column to 7 + [0x0000074f] Set is_stmt to 1 + [0x00000750] Advance Line by 2 to 75 + [0x00000752] Advance PC by fixed size amount 2 to 0x13c + [0x00000755] Copy (view 28) + [0x00000756] Set column to 28 + [0x00000758] Set is_stmt to 0 + [0x00000759] Advance Line by 0 to 75 + [0x0000075b] Advance PC by fixed size amount 0 to 0x13c + [0x0000075e] Copy (view 29) + [0x0000075f] Set column to 17 + [0x00000761] Advance Line by 2 to 77 + [0x00000763] Advance PC by fixed size amount 2 to 0x13e + [0x00000766] Copy (view 30) + [0x00000767] Set column to 10 + [0x00000769] Advance Line by -2 to 75 + [0x0000076b] Advance PC by fixed size amount 6 to 0x144 + [0x0000076e] Copy (view 31) + [0x0000076f] Set column to 11 + [0x00000771] Set is_stmt to 1 + [0x00000772] Advance Line by 2 to 77 + [0x00000774] Advance PC by fixed size amount 2 to 0x146 + [0x00000777] Copy (view 32) + [0x00000778] Set column to 17 + [0x0000077a] Set is_stmt to 0 + [0x0000077b] Advance Line by 0 to 77 + [0x0000077d] Advance PC by fixed size amount 0 to 0x146 + [0x00000780] Copy (view 33) + [0x00000781] Set column to 7 + [0x00000783] Set is_stmt to 1 + [0x00000784] Advance Line by 7 to 84 + [0x00000786] Advance PC by fixed size amount 2 to 0x148 + [0x00000789] Copy (view 34) + [0x0000078a] Set column to 10 + [0x0000078c] Set is_stmt to 0 + [0x0000078d] Advance Line by 0 to 84 + [0x0000078f] Advance PC by fixed size amount 0 to 0x148 + [0x00000792] Copy (view 35) + [0x00000793] Set column to 11 + [0x00000795] Set is_stmt to 1 + [0x00000796] Advance Line by -3 to 81 + [0x00000798] Advance PC by fixed size amount 6 to 0x14e + [0x0000079b] Copy (view 36) + [0x0000079c] Set column to 17 + [0x0000079e] Set is_stmt to 0 + [0x0000079f] Advance Line by 0 to 81 + [0x000007a1] Advance PC by fixed size amount 0 to 0x14e + [0x000007a4] Copy (view 37) + [0x000007a5] Set column to 3 + [0x000007a7] Set is_stmt to 1 + [0x000007a8] Advance Line by 17 to 98 + [0x000007aa] Advance PC by fixed size amount 12 to 0x15a + [0x000007ad] Copy (view 38) + [0x000007ae] Set column to 7 + [0x000007b0] Set is_stmt to 0 + [0x000007b1] Advance Line by 0 to 98 + [0x000007b3] Advance PC by fixed size amount 0 to 0x15a + [0x000007b6] Copy (view 39) + [0x000007b7] Set column to 6 + [0x000007b9] Advance Line by 0 to 98 + [0x000007bb] Advance PC by fixed size amount 10 to 0x164 + [0x000007be] Copy (view 40) + [0x000007bf] Set column to 3 + [0x000007c1] Set is_stmt to 1 + [0x000007c2] Advance Line by 7 to 105 + [0x000007c4] Advance PC by fixed size amount 4 to 0x168 + [0x000007c7] Copy (view 41) + [0x000007c8] Set column to 41 + [0x000007ca] Set is_stmt to 0 + [0x000007cb] Advance Line by 0 to 105 + [0x000007cd] Advance PC by fixed size amount 0 to 0x168 + [0x000007d0] Copy (view 42) + [0x000007d1] Set column to 33 + [0x000007d3] Advance Line by 0 to 105 + [0x000007d5] Advance PC by fixed size amount 2 to 0x16a + [0x000007d8] Copy (view 43) + [0x000007d9] Set column to 6 + [0x000007db] Advance Line by 1 to 106 + [0x000007dd] Advance PC by fixed size amount 2 to 0x16c + [0x000007e0] Copy (view 44) + [0x000007e1] Set column to 33 + [0x000007e3] Advance Line by -1 to 105 + [0x000007e5] Advance PC by fixed size amount 4 to 0x170 + [0x000007e8] Copy (view 45) + [0x000007e9] Set column to 3 + [0x000007eb] Set is_stmt to 1 + [0x000007ec] Advance Line by 1 to 106 + [0x000007ee] Advance PC by fixed size amount 2 to 0x172 + [0x000007f1] Copy (view 46) + [0x000007f2] Set column to 6 + [0x000007f4] Set is_stmt to 0 + [0x000007f5] Advance Line by 0 to 106 + [0x000007f7] Advance PC by fixed size amount 0 to 0x172 + [0x000007fa] Copy (view 47) + [0x000007fb] Set column to 45 + [0x000007fd] Extended opcode 4: set Discriminator to 1 + [0x00000801] Advance Line by 0 to 106 + [0x00000803] Advance PC by fixed size amount 4 to 0x176 + [0x00000806] Copy (view 48) + [0x00000807] Set column to 7 + [0x00000809] Set is_stmt to 1 + [0x0000080a] Advance Line by 2 to 108 + [0x0000080c] Advance PC by fixed size amount 8 to 0x17e + [0x0000080f] Copy (view 49) + [0x00000810] Advance Line by 11 to 119 + [0x00000812] Advance PC by fixed size amount 6 to 0x184 + [0x00000815] Copy (view 50) + [0x00000816] Set is_stmt to 0 + [0x00000817] Advance Line by 4 to 123 + [0x00000819] Advance PC by fixed size amount 0 to 0x184 + [0x0000081c] Copy (view 51) + [0x0000081d] Set column to 25 + [0x0000081f] Advance Line by 1 to 124 + [0x00000821] Advance PC by fixed size amount 12 to 0x190 + [0x00000824] Copy (view 52) + [0x00000825] Set column to 10 + [0x00000827] Advance Line by 5 to 129 + [0x00000829] Advance PC by fixed size amount 2 to 0x192 + [0x0000082c] Copy (view 53) + [0x0000082d] Set column to 13 + [0x0000082f] Advance Line by -10 to 119 + [0x00000831] Advance PC by fixed size amount 2 to 0x194 + [0x00000834] Copy (view 54) + [0x00000835] Set column to 7 + [0x00000837] Set is_stmt to 1 + [0x00000838] Advance Line by 4 to 123 + [0x0000083a] Advance PC by fixed size amount 4 to 0x198 + [0x0000083d] Copy (view 55) + [0x0000083e] Advance Line by 1 to 124 + [0x00000840] Advance PC by fixed size amount 0 to 0x198 + [0x00000843] Copy (view 56) + [0x00000844] Set column to 25 + [0x00000846] Set is_stmt to 0 + [0x00000847] Advance Line by 0 to 124 + [0x00000849] Advance PC by fixed size amount 0 to 0x198 + [0x0000084c] Copy (view 57) + [0x0000084d] Set column to 7 + [0x0000084f] Set is_stmt to 1 + [0x00000850] Advance Line by 1 to 125 + [0x00000852] Advance PC by fixed size amount 4 to 0x19c + [0x00000855] Copy (view 58) + [0x00000856] Set column to 11 + [0x00000858] Set is_stmt to 0 + [0x00000859] Advance Line by 0 to 125 + [0x0000085b] Advance PC by fixed size amount 0 to 0x19c + [0x0000085e] Copy (view 59) + [0x0000085f] Set column to 7 + [0x00000861] Set is_stmt to 1 + [0x00000862] Advance Line by 4 to 129 + [0x00000864] Advance PC by fixed size amount 2 to 0x19e + [0x00000867] Copy (view 60) + [0x00000868] Set column to 10 + [0x0000086a] Set is_stmt to 0 + [0x0000086b] Advance Line by 0 to 129 + [0x0000086d] Advance PC by fixed size amount 0 to 0x19e + [0x00000870] Copy (view 61) + [0x00000871] Set column to 3 + [0x00000873] Set is_stmt to 1 + [0x00000874] Advance Line by 12 to 141 + [0x00000876] Advance PC by fixed size amount 4 to 0x1a2 + [0x00000879] Copy (view 62) + [0x0000087a] Set column to 6 + [0x0000087c] Set is_stmt to 0 + [0x0000087d] Advance Line by 0 to 141 + [0x0000087f] Advance PC by fixed size amount 0 to 0x1a2 + [0x00000882] Copy (view 63) + [0x00000883] Set column to 11 + [0x00000885] Set is_stmt to 1 + [0x00000886] Advance Line by -8 to 133 + [0x00000888] Advance PC by fixed size amount 12 to 0x1ae + [0x0000088b] Copy (view 64) + [0x0000088c] Set column to 32 + [0x0000088e] Set is_stmt to 0 + [0x0000088f] Advance Line by 0 to 133 + [0x00000891] Advance PC by fixed size amount 0 to 0x1ae + [0x00000894] Copy (view 65) + [0x00000895] Set column to 11 + [0x00000897] Set is_stmt to 1 + [0x00000898] Advance Line by 1 to 134 + [0x0000089a] Advance PC by fixed size amount 10 to 0x1b8 + [0x0000089d] Copy (view 66) + [0x0000089e] Set column to 14 + [0x000008a0] Set is_stmt to 0 + [0x000008a1] Advance Line by 0 to 134 + [0x000008a3] Advance PC by fixed size amount 0 to 0x1b8 + [0x000008a6] Copy (view 67) + [0x000008a7] Set column to 7 + [0x000008a9] Set is_stmt to 1 + [0x000008aa] Advance Line by 9 to 143 + [0x000008ac] Advance PC by fixed size amount 10 to 0x1c2 + [0x000008af] Copy (view 68) + [0x000008b0] Set column to 28 + [0x000008b2] Set is_stmt to 0 + [0x000008b3] Advance Line by 0 to 143 + [0x000008b5] Advance PC by fixed size amount 0 to 0x1c2 + [0x000008b8] Copy (view 69) + [0x000008b9] Set column to 17 + [0x000008bb] Advance Line by 2 to 145 + [0x000008bd] Advance PC by fixed size amount 2 to 0x1c4 + [0x000008c0] Copy (view 70) + [0x000008c1] Set column to 10 + [0x000008c3] Advance Line by -2 to 143 + [0x000008c5] Advance PC by fixed size amount 6 to 0x1ca + [0x000008c8] Copy (view 71) + [0x000008c9] Set column to 11 + [0x000008cb] Set is_stmt to 1 + [0x000008cc] Advance Line by 2 to 145 + [0x000008ce] Advance PC by fixed size amount 2 to 0x1cc + [0x000008d1] Copy (view 72) + [0x000008d2] Set column to 17 + [0x000008d4] Set is_stmt to 0 + [0x000008d5] Advance Line by 0 to 145 + [0x000008d7] Advance PC by fixed size amount 0 to 0x1cc + [0x000008da] Copy (view 73) + [0x000008db] Set column to 7 + [0x000008dd] Set is_stmt to 1 + [0x000008de] Advance Line by 7 to 152 + [0x000008e0] Advance PC by fixed size amount 2 to 0x1ce + [0x000008e3] Copy (view 74) + [0x000008e4] Set column to 11 + [0x000008e6] Set is_stmt to 0 + [0x000008e7] Advance Line by 7 to 159 + [0x000008e9] Advance PC by fixed size amount 0 to 0x1ce + [0x000008ec] Copy (view 75) + [0x000008ed] Set column to 10 + [0x000008ef] Advance Line by -7 to 152 + [0x000008f1] Advance PC by fixed size amount 2 to 0x1d0 + [0x000008f4] Copy (view 76) + [0x000008f5] Set column to 3 + [0x000008f7] Set is_stmt to 1 + [0x000008f8] Advance Line by 18 to 170 + [0x000008fa] Advance PC by fixed size amount 4 to 0x1d4 + [0x000008fd] Copy (view 77) + [0x000008fe] Set column to 24 + [0x00000900] Set is_stmt to 0 + [0x00000901] Advance Line by 0 to 170 + [0x00000903] Advance PC by fixed size amount 0 to 0x1d4 + [0x00000906] Copy (view 78) + [0x00000907] Set column to 3 + [0x00000909] Set is_stmt to 1 + [0x0000090a] Advance Line by 3 to 173 + [0x0000090c] Advance PC by fixed size amount 4 to 0x1d8 + [0x0000090f] Copy (view 79) + [0x00000910] Set column to 6 + [0x00000912] Set is_stmt to 0 + [0x00000913] Advance Line by 0 to 173 + [0x00000915] Advance PC by fixed size amount 0 to 0x1d8 + [0x00000918] Copy (view 80) + [0x00000919] Set column to 11 + [0x0000091b] Set is_stmt to 1 + [0x0000091c] Advance Line by -24 to 149 + [0x0000091e] Advance PC by fixed size amount 6 to 0x1de + [0x00000921] Copy (view 81) + [0x00000922] Set column to 17 + [0x00000924] Set is_stmt to 0 + [0x00000925] Advance Line by 0 to 149 + [0x00000927] Advance PC by fixed size amount 0 to 0x1de + [0x0000092a] Copy (view 82) + [0x0000092b] Set column to 8 + [0x0000092d] Set is_stmt to 1 + [0x0000092e] Advance Line by 12 to 161 + [0x00000930] Advance PC by fixed size amount 12 to 0x1ea + [0x00000933] Copy (view 83) + [0x00000934] Set column to 11 + [0x00000936] Set is_stmt to 0 + [0x00000937] Advance Line by 0 to 161 + [0x00000939] Advance PC by fixed size amount 0 to 0x1ea + [0x0000093c] Copy (view 84) + [0x0000093d] Set column to 7 + [0x0000093f] Set is_stmt to 1 + [0x00000940] Advance Line by 2 to 163 + [0x00000942] Advance PC by fixed size amount 4 to 0x1ee + [0x00000945] Copy (view 85) + [0x00000946] Advance Line by 1 to 164 + [0x00000948] Advance PC by fixed size amount 14 to 0x1fc + [0x0000094b] Copy (view 86) + [0x0000094c] Set column to 25 + [0x0000094e] Set is_stmt to 0 + [0x0000094f] Advance Line by 0 to 164 + [0x00000951] Advance PC by fixed size amount 0 to 0x1fc + [0x00000954] Copy (view 87) + [0x00000955] Set column to 11 + [0x00000957] Advance Line by 1 to 165 + [0x00000959] Advance PC by fixed size amount 2 to 0x1fe + [0x0000095c] Copy (view 88) + [0x0000095d] Set column to 25 + [0x0000095f] Advance Line by -1 to 164 + [0x00000961] Advance PC by fixed size amount 4 to 0x202 + [0x00000964] Copy (view 89) + [0x00000965] Set column to 7 + [0x00000967] Set is_stmt to 1 + [0x00000968] Advance Line by 1 to 165 + [0x0000096a] Advance PC by fixed size amount 6 to 0x208 + [0x0000096d] Copy (view 90) + [0x0000096e] Advance PC by fixed size amount 2 to 0x20a + [0x00000971] Extended opcode 1: End of Sequence + + [0x00000974] Set column to 1 + [0x00000976] Extended opcode 2: set Address to 0x20a + [0x00000981] Advance Line by 202 to 203 + [0x00000984] Copy + [0x00000985] Set column to 3 + [0x00000987] Advance Line by 1 to 204 + [0x00000989] Advance PC by fixed size amount 0 to 0x20a + [0x0000098c] Copy (view 1) + [0x0000098d] Advance Line by 2 to 206 + [0x0000098f] Advance PC by fixed size amount 0 to 0x20a + [0x00000992] Copy (view 2) + [0x00000993] Set column to 1 + [0x00000995] Set is_stmt to 0 + [0x00000996] Advance Line by -3 to 203 + [0x00000998] Advance PC by fixed size amount 0 to 0x20a + [0x0000099b] Copy (view 3) + [0x0000099c] Set column to 3 + [0x0000099e] Advance Line by 3 to 206 + [0x000009a0] Advance PC by fixed size amount 6 to 0x210 + [0x000009a3] Copy (view 4) + [0x000009a4] Set column to 1 + [0x000009a6] Advance Line by -3 to 203 + [0x000009a8] Advance PC by fixed size amount 2 to 0x212 + [0x000009ab] Copy (view 5) + [0x000009ac] Advance Line by 0 to 203 + [0x000009ae] Advance PC by fixed size amount 4 to 0x216 + [0x000009b1] Copy (view 6) + [0x000009b2] Set column to 3 + [0x000009b4] Advance Line by 3 to 206 + [0x000009b6] Advance PC by fixed size amount 4 to 0x21a + [0x000009b9] Copy (view 7) + [0x000009ba] Set is_stmt to 1 + [0x000009bb] Advance Line by 1 to 207 + [0x000009bd] Advance PC by fixed size amount 8 to 0x222 + [0x000009c0] Copy (view 8) + [0x000009c1] Set column to 9 + [0x000009c3] Set is_stmt to 0 + [0x000009c4] Advance Line by 0 to 207 + [0x000009c6] Advance PC by fixed size amount 0 to 0x222 + [0x000009c9] Copy (view 9) + [0x000009ca] Set column to 3 + [0x000009cc] Set is_stmt to 1 + [0x000009cd] Advance Line by 1 to 208 + [0x000009cf] Advance PC by fixed size amount 16 to 0x232 + [0x000009d2] Copy (view 10) + [0x000009d3] Advance Line by 2 to 210 + [0x000009d5] Advance PC by fixed size amount 10 to 0x23c + [0x000009d8] Copy (view 11) + [0x000009d9] Set column to 1 + [0x000009db] Set is_stmt to 0 + [0x000009dc] Advance Line by 1 to 211 + [0x000009de] Advance PC by fixed size amount 0 to 0x23c + [0x000009e1] Copy (view 12) + [0x000009e2] Advance PC by fixed size amount 12 to 0x248 + [0x000009e5] Extended opcode 1: End of Sequence + + + Offset: 0x9e8 + Length: 874 + DWARF Version: 3 + Prologue Length: 341 + Minimum Instruction Length: 1 + Initial value of 'is_stmt': 1 + Line Base: -5 + Line Range: 14 + Opcode Base: 13 + + Opcodes: + Opcode 1 has 0 args + Opcode 2 has 1 arg + Opcode 3 has 1 arg + Opcode 4 has 1 arg + Opcode 5 has 1 arg + Opcode 6 has 0 args + Opcode 7 has 0 args + Opcode 8 has 0 args + Opcode 9 has 1 arg + Opcode 10 has 0 args + Opcode 11 has 0 args + Opcode 12 has 1 arg + + The Directory Table (offset 0xa03): + 1 stdio + 2 /Users/Luppy/ox64/nuttx/include/arch + 3 /Users/Luppy/ox64/nuttx/include + 4 /Users/Luppy/ox64/nuttx/include/sys + 5 /Users/Luppy/ox64/nuttx/include/nuttx + 6 /Users/Luppy/ox64/nuttx/include/nuttx/fs + + The File Name Table (offset 0xac2): + Entry Dir Time Size Name + 1 1 0 0 lib_libfflush.c + 2 2 0 0 types.h + 3 3 0 0 stdint.h + 4 4 0 0 types.h + 5 5 0 0 queue.h + 6 3 0 0 semaphore.h + 7 5 0 0 mutex.h + 8 6 0 0 fs.h + 9 3 0 0 stdio.h + 10 3 0 0 errno.h + 11 3 0 0 unistd.h + + Line Number Statements: + [0x00000b47] Set column to 1 + [0x00000b49] Extended opcode 2: set Address to 0x248 + [0x00000b54] Advance Line by 58 to 59 + [0x00000b56] Copy + [0x00000b57] Set column to 7 + [0x00000b59] Advance Line by 2 to 61 + [0x00000b5b] Advance PC by fixed size amount 0 to 0x248 + [0x00000b5e] Copy (view 1) + [0x00000b5f] Set column to 3 + [0x00000b61] Advance Line by 1 to 62 + [0x00000b63] Advance PC by fixed size amount 0 to 0x248 + [0x00000b66] Copy (view 2) + [0x00000b67] Advance Line by 1 to 63 + [0x00000b69] Advance PC by fixed size amount 0 to 0x248 + [0x00000b6c] Copy (view 3) + [0x00000b6d] Advance Line by 4 to 67 + [0x00000b6f] Advance PC by fixed size amount 0 to 0x248 + [0x00000b72] Copy (view 4) + [0x00000b73] Set column to 6 + [0x00000b75] Set is_stmt to 0 + [0x00000b76] Advance Line by 0 to 67 + [0x00000b78] Advance PC by fixed size amount 0 to 0x248 + [0x00000b7b] Copy (view 5) + [0x00000b7c] Set column to 1 + [0x00000b7e] Advance Line by -8 to 59 + [0x00000b80] Advance PC by fixed size amount 8 to 0x250 + [0x00000b83] Copy (view 6) + [0x00000b84] Set column to 13 + [0x00000b86] Advance Line by 15 to 74 + [0x00000b88] Advance PC by fixed size amount 10 to 0x25a + [0x00000b8b] Copy (view 7) + [0x00000b8c] Set column to 3 + [0x00000b8e] Set is_stmt to 1 + [0x00000b8f] Advance Line by 0 to 74 + [0x00000b91] Advance PC by fixed size amount 6 to 0x260 + [0x00000b94] Copy (view 8) + [0x00000b95] Set column to 14 + [0x00000b97] Set is_stmt to 0 + [0x00000b98] Advance Line by 4 to 78 + [0x00000b9a] Advance PC by fixed size amount 0 to 0x260 + [0x00000b9d] Copy (view 9) + [0x00000b9e] Set column to 6 + [0x00000ba0] Advance Line by -4 to 74 + [0x00000ba2] Advance PC by fixed size amount 2 to 0x262 + [0x00000ba5] Copy (view 10) + [0x00000ba6] Set column to 3 + [0x00000ba8] Set is_stmt to 1 + [0x00000ba9] Advance Line by 9 to 83 + [0x00000bab] Advance PC by fixed size amount 4 to 0x266 + [0x00000bae] Copy (view 11) + [0x00000baf] Set column to 13 + [0x00000bb1] Set is_stmt to 0 + [0x00000bb2] Advance Line by 0 to 83 + [0x00000bb4] Advance PC by fixed size amount 0 to 0x266 + [0x00000bb7] Copy (view 12) + [0x00000bb8] Set column to 6 + [0x00000bba] Advance Line by 0 to 83 + [0x00000bbc] Advance PC by fixed size amount 2 to 0x268 + [0x00000bbf] Copy (view 13) + [0x00000bc0] Set column to 7 + [0x00000bc2] Set is_stmt to 1 + [0x00000bc3] Advance Line by 6 to 89 + [0x00000bc5] Advance PC by fixed size amount 4 to 0x26c + [0x00000bc8] Copy (view 14) + [0x00000bc9] Set column to 10 + [0x00000bcb] Set is_stmt to 0 + [0x00000bcc] Advance Line by 0 to 89 + [0x00000bce] Advance PC by fixed size amount 0 to 0x26c + [0x00000bd1] Copy (view 15) + [0x00000bd2] Set column to 7 + [0x00000bd4] Set is_stmt to 1 + [0x00000bd5] Advance Line by 11 to 100 + [0x00000bd7] Advance PC by fixed size amount 6 to 0x272 + [0x00000bda] Copy (view 16) + [0x00000bdb] Set column to 15 + [0x00000bdd] Set is_stmt to 0 + [0x00000bde] Advance Line by 0 to 100 + [0x00000be0] Advance PC by fixed size amount 0 to 0x272 + [0x00000be3] Copy (view 17) + [0x00000be4] Set column to 7 + [0x00000be6] Set is_stmt to 1 + [0x00000be7] Advance Line by 4 to 104 + [0x00000be9] Advance PC by fixed size amount 4 to 0x276 + [0x00000bec] Copy (view 18) + [0x00000bed] Advance Line by 1 to 105 + [0x00000bef] Advance PC by fixed size amount 0 to 0x276 + [0x00000bf2] Copy (view 19) + [0x00000bf3] Set column to 11 + [0x00000bf5] Advance Line by 4 to 109 + [0x00000bf7] Advance PC by fixed size amount 0 to 0x276 + [0x00000bfa] Copy (view 20) + [0x00000bfb] Set column to 32 + [0x00000bfd] Set is_stmt to 0 + [0x00000bfe] Advance Line by 0 to 109 + [0x00000c00] Advance PC by fixed size amount 0 to 0x276 + [0x00000c03] Copy (view 21) + [0x00000c04] Set column to 31 + [0x00000c06] Advance Line by 2 to 111 + [0x00000c08] Advance PC by fixed size amount 2 to 0x278 + [0x00000c0b] Copy (view 22) + [0x00000c0c] Set column to 14 + [0x00000c0e] Advance Line by -2 to 109 + [0x00000c10] Advance PC by fixed size amount 6 to 0x27e + [0x00000c13] Copy (view 23) + [0x00000c14] Set column to 15 + [0x00000c16] Set is_stmt to 1 + [0x00000c17] Advance Line by 2 to 111 + [0x00000c19] Advance PC by fixed size amount 2 to 0x280 + [0x00000c1c] Copy (view 24) + [0x00000c1d] Set column to 31 + [0x00000c1f] Set is_stmt to 0 + [0x00000c20] Advance Line by 0 to 111 + [0x00000c22] Advance PC by fixed size amount 0 to 0x280 + [0x00000c25] Copy (view 25) + [0x00000c26] Set column to 11 + [0x00000c28] Set is_stmt to 1 + [0x00000c29] Advance Line by 10 to 121 + [0x00000c2b] Advance PC by fixed size amount 2 to 0x282 + [0x00000c2e] Copy (view 26) + [0x00000c2f] Set column to 14 + [0x00000c31] Set is_stmt to 0 + [0x00000c32] Advance Line by 0 to 121 + [0x00000c34] Advance PC by fixed size amount 0 to 0x282 + [0x00000c37] Copy (view 27) + [0x00000c38] Set column to 15 + [0x00000c3a] Set is_stmt to 1 + [0x00000c3b] Advance Line by 6 to 127 + [0x00000c3d] Advance PC by fixed size amount 4 to 0x286 + [0x00000c40] Copy (view 28) + [0x00000c41] Set column to 32 + [0x00000c43] Set is_stmt to 0 + [0x00000c44] Advance Line by 0 to 127 + [0x00000c46] Advance PC by fixed size amount 0 to 0x286 + [0x00000c49] Copy (view 29) + [0x00000c4a] Set column to 15 + [0x00000c4c] Set is_stmt to 1 + [0x00000c4d] Advance Line by 1 to 128 + [0x00000c4f] Advance PC by fixed size amount 12 to 0x292 + [0x00000c52] Copy (view 30) + [0x00000c53] Set column to 22 + [0x00000c55] Set is_stmt to 0 + [0x00000c56] Advance Line by 0 to 128 + [0x00000c58] Advance PC by fixed size amount 0 to 0x292 + [0x00000c5b] Copy (view 31) + [0x00000c5c] Set column to 1 + [0x00000c5e] Advance Line by 40 to 168 + [0x00000c60] Advance PC by fixed size amount 14 to 0x2a0 + [0x00000c63] Copy (view 32) + [0x00000c64] Set column to 15 + [0x00000c66] Set is_stmt to 1 + [0x00000c67] Advance Line by -51 to 117 + [0x00000c69] Advance PC by fixed size amount 12 to 0x2ac + [0x00000c6c] Copy (view 33) + [0x00000c6d] Set column to 31 + [0x00000c6f] Set is_stmt to 0 + [0x00000c70] Advance Line by 0 to 117 + [0x00000c72] Advance PC by fixed size amount 0 to 0x2ac + [0x00000c75] Copy (view 34) + [0x00000c76] Set column to 11 + [0x00000c78] Set is_stmt to 1 + [0x00000c79] Advance Line by 19 to 136 + [0x00000c7b] Advance PC by fixed size amount 12 to 0x2b8 + [0x00000c7e] Copy (view 35) + [0x00000c7f] Set column to 19 + [0x00000c81] Set is_stmt to 0 + [0x00000c82] Advance Line by 1 to 137 + [0x00000c84] Advance PC by fixed size amount 0 to 0x2b8 + [0x00000c87] Copy (view 36) + [0x00000c88] Advance Line by -1 to 136 + [0x00000c8a] Advance PC by fixed size amount 2 to 0x2ba + [0x00000c8d] Copy (view 37) + [0x00000c8e] Set column to 11 + [0x00000c90] Set is_stmt to 1 + [0x00000c91] Advance Line by 1 to 137 + [0x00000c93] Advance PC by fixed size amount 2 to 0x2bc + [0x00000c96] Copy (view 38) + [0x00000c97] Set column to 13 + [0x00000c99] Advance Line by 2 to 139 + [0x00000c9b] Advance PC by fixed size amount 0 to 0x2bc + [0x00000c9e] Copy (view 39) + [0x00000c9f] Set column to 7 + [0x00000ca1] Set is_stmt to 0 + [0x00000ca2] Advance Line by 0 to 139 + [0x00000ca4] Advance PC by fixed size amount 0 to 0x2bc + [0x00000ca7] Copy (view 40) + [0x00000ca8] Set is_stmt to 1 + [0x00000ca9] Advance Line by 4 to 143 + [0x00000cab] Advance PC by fixed size amount 4 to 0x2c0 + [0x00000cae] Copy (view 41) + [0x00000caf] Set column to 25 + [0x00000cb1] Set is_stmt to 0 + [0x00000cb2] Advance Line by 0 to 143 + [0x00000cb4] Advance PC by fixed size amount 0 to 0x2c0 + [0x00000cb7] Copy (view 42) + [0x00000cb8] Set column to 7 + [0x00000cba] Set is_stmt to 1 + [0x00000cbb] Advance Line by 7 to 150 + [0x00000cbd] Advance PC by fixed size amount 4 to 0x2c4 + [0x00000cc0] Copy (view 43) + [0x00000cc1] Set column to 13 + [0x00000cc3] Advance Line by 0 to 150 + [0x00000cc5] Advance PC by fixed size amount 0 to 0x2c4 + [0x00000cc8] Copy (view 44) + [0x00000cc9] Set column to 3 + [0x00000ccb] Advance Line by 11 to 161 + [0x00000ccd] Advance PC by fixed size amount 0 to 0x2c4 + [0x00000cd0] Copy (view 45) + [0x00000cd1] Set column to 28 + [0x00000cd3] Set is_stmt to 0 + [0x00000cd4] Advance Line by 0 to 161 + [0x00000cd6] Advance PC by fixed size amount 0 to 0x2c4 + [0x00000cd9] Copy (view 46) + [0x00000cda] Set column to 14 + [0x00000cdc] Advance Line by -92 to 69 + [0x00000cdf] Advance PC by fixed size amount 8 to 0x2cc + [0x00000ce2] Copy (view 47) + [0x00000ce3] Set column to 1 + [0x00000ce5] Advance Line by 99 to 168 + [0x00000ce8] Advance PC by fixed size amount 2 to 0x2ce + [0x00000ceb] Copy (view 48) + [0x00000cec] Advance PC by fixed size amount 2 to 0x2d0 + [0x00000cef] Extended opcode 1: End of Sequence + + [0x00000cf2] Set column to 1 + [0x00000cf4] Extended opcode 2: set Address to 0x2d0 + [0x00000cff] Advance Line by 170 to 171 + [0x00000d02] Copy + [0x00000d03] Set column to 3 + [0x00000d05] Advance Line by 1 to 172 + [0x00000d07] Advance PC by fixed size amount 0 to 0x2d0 + [0x00000d0a] Copy (view 1) + [0x00000d0b] Advance Line by 4 to 176 + [0x00000d0d] Advance PC by fixed size amount 0 to 0x2d0 + [0x00000d10] Copy (view 2) + [0x00000d11] Set column to 1 + [0x00000d13] Set is_stmt to 0 + [0x00000d14] Advance Line by -5 to 171 + [0x00000d16] Advance PC by fixed size amount 0 to 0x2d0 + [0x00000d19] Copy (view 3) + [0x00000d1a] Advance Line by 0 to 171 + [0x00000d1c] Advance PC by fixed size amount 8 to 0x2d8 + [0x00000d1f] Copy (view 4) + [0x00000d20] Set column to 3 + [0x00000d22] Advance Line by 5 to 176 + [0x00000d24] Advance PC by fixed size amount 2 to 0x2da + [0x00000d27] Copy (view 5) + [0x00000d28] Set is_stmt to 1 + [0x00000d29] Advance Line by 1 to 177 + [0x00000d2b] Advance PC by fixed size amount 8 to 0x2e2 + [0x00000d2e] Copy (view 6) + [0x00000d2f] Set column to 9 + [0x00000d31] Set is_stmt to 0 + [0x00000d32] Advance Line by 0 to 177 + [0x00000d34] Advance PC by fixed size amount 0 to 0x2e2 + [0x00000d37] Copy (view 7) + [0x00000d38] Set column to 3 + [0x00000d3a] Set is_stmt to 1 + [0x00000d3b] Advance Line by 1 to 178 + [0x00000d3d] Advance PC by fixed size amount 12 to 0x2ee + [0x00000d40] Copy (view 8) + [0x00000d41] Advance Line by 1 to 179 + [0x00000d43] Advance PC by fixed size amount 10 to 0x2f8 + [0x00000d46] Copy (view 9) + [0x00000d47] Set column to 1 + [0x00000d49] Set is_stmt to 0 + [0x00000d4a] Advance Line by 1 to 180 + [0x00000d4c] Advance PC by fixed size amount 0 to 0x2f8 + [0x00000d4f] Copy (view 10) + [0x00000d50] Advance PC by fixed size amount 12 to 0x304 + [0x00000d53] Extended opcode 1: End of Sequence + + + Offset: 0xd56 + Length: 723 + DWARF Version: 3 + Prologue Length: 348 + Minimum Instruction Length: 1 + Initial value of 'is_stmt': 1 + Line Base: -5 + Line Range: 14 + Opcode Base: 13 + + Opcodes: + Opcode 1 has 0 args + Opcode 2 has 1 arg + Opcode 3 has 1 arg + Opcode 4 has 1 arg + Opcode 5 has 1 arg + Opcode 6 has 0 args + Opcode 7 has 0 args + Opcode 8 has 0 args + Opcode 9 has 1 arg + Opcode 10 has 0 args + Opcode 11 has 0 args + Opcode 12 has 1 arg + + The Directory Table (offset 0xd71): + 1 stdio + 2 /Users/Luppy/ox64/nuttx/include/arch + 3 /Users/Luppy/ox64/nuttx/include + 4 /Users/Luppy/ox64/nuttx/include/sys + 5 /Users/Luppy/ox64/nuttx/include/nuttx + 6 /Users/Luppy/ox64/nuttx/include/nuttx/fs + + The File Name Table (offset 0xe30): + Entry Dir Time Size Name + 1 1 0 0 lib_rdflush_unlocked.c + 2 2 0 0 types.h + 3 3 0 0 stdint.h + 4 4 0 0 types.h + 5 5 0 0 queue.h + 6 3 0 0 semaphore.h + 7 5 0 0 mutex.h + 8 6 0 0 fs.h + 9 3 0 0 stdio.h + 10 3 0 0 unistd.h + 11 3 0 0 errno.h + + Line Number Statements: + [0x00000ebc] Set column to 1 + [0x00000ebe] Extended opcode 2: set Address to 0x304 + [0x00000ec9] Advance Line by 49 to 50 + [0x00000ecb] Copy + [0x00000ecc] Set column to 3 + [0x00000ece] Advance Line by 1 to 51 + [0x00000ed0] Advance PC by fixed size amount 0 to 0x304 + [0x00000ed3] Copy (view 1) + [0x00000ed4] Advance Line by 4 to 55 + [0x00000ed6] Advance PC by fixed size amount 0 to 0x304 + [0x00000ed9] Copy (view 2) + [0x00000eda] Set column to 1 + [0x00000edc] Set is_stmt to 0 + [0x00000edd] Advance Line by -5 to 50 + [0x00000edf] Advance PC by fixed size amount 0 to 0x304 + [0x00000ee2] Copy (view 3) + [0x00000ee3] Set column to 6 + [0x00000ee5] Advance Line by 5 to 55 + [0x00000ee7] Advance PC by fixed size amount 4 to 0x308 + [0x00000eea] Copy (view 4) + [0x00000eeb] Set column to 7 + [0x00000eed] Set is_stmt to 1 + [0x00000eee] Advance Line by 2 to 57 + [0x00000ef0] Advance PC by fixed size amount 2 to 0x30a + [0x00000ef3] Copy (view 5) + [0x00000ef4] Advance Line by 0 to 57 + [0x00000ef6] Advance PC by fixed size amount 0 to 0x30a + [0x00000ef9] Copy (view 6) + [0x00000efa] Advance Line by 0 to 57 + [0x00000efc] Advance PC by fixed size amount 12 to 0x316 + [0x00000eff] Copy (view 7) + [0x00000f00] Advance Line by 1 to 58 + [0x00000f02] Advance PC by fixed size amount 0 to 0x316 + [0x00000f05] Copy (view 8) + [0x00000f06] Set column to 11 + [0x00000f08] Advance Line by 52 to 110 + [0x00000f0a] Advance PC by fixed size amount 0 to 0x316 + [0x00000f0d] Copy (view 9) + [0x00000f0e] Set column to 18 + [0x00000f10] Set is_stmt to 0 + [0x00000f11] Advance Line by 0 to 110 + [0x00000f13] Advance PC by fixed size amount 0 to 0x316 + [0x00000f16] Copy (view 10) + [0x00000f17] Set column to 13 + [0x00000f19] Advance Line by -47 to 63 + [0x00000f1b] Advance PC by fixed size amount 4 to 0x31a + [0x00000f1e] Copy (view 11) + [0x00000f1f] Set column to 3 + [0x00000f21] Set is_stmt to 1 + [0x00000f22] Advance Line by 0 to 63 + [0x00000f24] Advance PC by fixed size amount 4 to 0x31e + [0x00000f27] Copy (view 12) + [0x00000f28] Set column to 14 + [0x00000f2a] Set is_stmt to 0 + [0x00000f2b] Advance Line by 2 to 65 + [0x00000f2d] Advance PC by fixed size amount 0 to 0x31e + [0x00000f30] Copy (view 13) + [0x00000f31] Set column to 6 + [0x00000f33] Advance Line by -2 to 63 + [0x00000f35] Advance PC by fixed size amount 2 to 0x320 + [0x00000f38] Copy (view 14) + [0x00000f39] Set column to 3 + [0x00000f3b] Set is_stmt to 1 + [0x00000f3c] Advance Line by 10 to 73 + [0x00000f3e] Advance PC by fixed size amount 2 to 0x322 + [0x00000f41] Copy (view 15) + [0x00000f42] Set column to 13 + [0x00000f44] Set is_stmt to 0 + [0x00000f45] Advance Line by 0 to 73 + [0x00000f47] Advance PC by fixed size amount 0 to 0x322 + [0x00000f4a] Copy (view 16) + [0x00000f4b] Set column to 6 + [0x00000f4d] Advance Line by 0 to 73 + [0x00000f4f] Advance PC by fixed size amount 2 to 0x324 + [0x00000f52] Copy (view 17) + [0x00000f53] Set column to 7 + [0x00000f55] Set is_stmt to 1 + [0x00000f56] Advance Line by 7 to 80 + [0x00000f58] Advance PC by fixed size amount 4 to 0x328 + [0x00000f5b] Copy (view 18) + [0x00000f5c] Set column to 43 + [0x00000f5e] Set is_stmt to 0 + [0x00000f5f] Advance Line by 0 to 80 + [0x00000f61] Advance PC by fixed size amount 0 to 0x328 + [0x00000f64] Copy (view 19) + [0x00000f65] Set column to 30 + [0x00000f67] Advance Line by 1 to 81 + [0x00000f69] Advance PC by fixed size amount 2 to 0x32a + [0x00000f6c] Copy (view 20) + [0x00000f6d] Set column to 46 + [0x00000f6f] Advance Line by 8 to 89 + [0x00000f71] Advance PC by fixed size amount 4 to 0x32e + [0x00000f74] Copy (view 21) + [0x00000f75] Set column to 63 + [0x00000f77] Advance Line by -9 to 80 + [0x00000f79] Advance PC by fixed size amount 2 to 0x330 + [0x00000f7c] Copy (view 22) + [0x00000f7d] Set column to 7 + [0x00000f7f] Set is_stmt to 1 + [0x00000f80] Advance Line by 9 to 89 + [0x00000f82] Advance PC by fixed size amount 2 to 0x332 + [0x00000f85] Copy (view 23) + [0x00000f86] Set column to 18 + [0x00000f88] Set is_stmt to 0 + [0x00000f89] Advance Line by 8 to 97 + [0x00000f8b] Advance PC by fixed size amount 0 to 0x332 + [0x00000f8e] Copy (view 24) + [0x00000f8f] Set column to 28 + [0x00000f91] Advance Line by 1 to 98 + [0x00000f93] Advance PC by fixed size amount 4 to 0x336 + [0x00000f96] Copy (view 25) + [0x00000f97] Set column to 25 + [0x00000f99] Advance Line by -9 to 89 + [0x00000f9b] Advance PC by fixed size amount 2 to 0x338 + [0x00000f9e] Copy (view 26) + [0x00000f9f] Set column to 7 + [0x00000fa1] Set is_stmt to 1 + [0x00000fa2] Advance Line by 2 to 91 + [0x00000fa4] Advance PC by fixed size amount 2 to 0x33a + [0x00000fa7] Copy (view 27) + [0x00000fa8] Set column to 28 + [0x00000faa] Set is_stmt to 0 + [0x00000fab] Advance Line by 0 to 91 + [0x00000fad] Advance PC by fixed size amount 0 to 0x33a + [0x00000fb0] Copy (view 28) + [0x00000fb1] Set column to 7 + [0x00000fb3] Set is_stmt to 1 + [0x00000fb4] Advance Line by 6 to 97 + [0x00000fb6] Advance PC by fixed size amount 4 to 0x33e + [0x00000fb9] Copy (view 29) + [0x00000fba] Set column to 16 + [0x00000fbc] Set is_stmt to 0 + [0x00000fbd] Advance Line by 0 to 97 + [0x00000fbf] Advance PC by fixed size amount 0 to 0x33e + [0x00000fc2] Copy (view 30) + [0x00000fc3] Set column to 7 + [0x00000fc5] Set is_stmt to 1 + [0x00000fc6] Advance Line by 1 to 98 + [0x00000fc8] Advance PC by fixed size amount 2 to 0x340 + [0x00000fcb] Copy (view 31) + [0x00000fcc] Set column to 17 + [0x00000fce] Set is_stmt to 0 + [0x00000fcf] Advance Line by 2 to 100 + [0x00000fd1] Advance PC by fixed size amount 0 to 0x340 + [0x00000fd4] Copy (view 32) + [0x00000fd5] Set column to 10 + [0x00000fd7] Advance Line by -2 to 98 + [0x00000fd9] Advance PC by fixed size amount 4 to 0x344 + [0x00000fdc] Copy (view 33) + [0x00000fdd] Set column to 11 + [0x00000fdf] Set is_stmt to 1 + [0x00000fe0] Advance Line by 2 to 100 + [0x00000fe2] Advance PC by fixed size amount 2 to 0x346 + [0x00000fe5] Copy (view 34) + [0x00000fe6] Set column to 17 + [0x00000fe8] Set is_stmt to 0 + [0x00000fe9] Advance Line by 0 to 100 + [0x00000feb] Advance PC by fixed size amount 0 to 0x346 + [0x00000fee] Copy (view 35) + [0x00000fef] Advance Line by 5 to 105 + [0x00000ff1] Advance PC by fixed size amount 4 to 0x34a + [0x00000ff4] Copy (view 36) + [0x00000ff5] Set column to 7 + [0x00000ff7] Set is_stmt to 1 + [0x00000ff8] Advance Line by 3 to 108 + [0x00000ffa] Advance PC by fixed size amount 2 to 0x34c + [0x00000ffd] Copy (view 37) + [0x00000ffe] Set column to 10 + [0x00001000] Set is_stmt to 0 + [0x00001001] Advance Line by 6 to 114 + [0x00001003] Advance PC by fixed size amount 0 to 0x34c + [0x00001006] Copy (view 38) + [0x00001007] Advance Line by -6 to 108 + [0x00001009] Advance PC by fixed size amount 2 to 0x34e + [0x0000100c] Copy (view 39) + [0x0000100d] Set column to 1 + [0x0000100f] Advance Line by 7 to 115 + [0x00001011] Advance PC by fixed size amount 4 to 0x352 + [0x00001014] Copy (view 40) + [0x00001015] Set column to 11 + [0x00001017] Set is_stmt to 1 + [0x00001018] Advance Line by -10 to 105 + [0x0000101a] Advance PC by fixed size amount 6 to 0x358 + [0x0000101d] Copy (view 41) + [0x0000101e] Set column to 17 + [0x00001020] Set is_stmt to 0 + [0x00001021] Advance Line by 0 to 105 + [0x00001023] Advance PC by fixed size amount 0 to 0x358 + [0x00001026] Copy (view 42) + [0x00001027] Advance PC by fixed size amount 12 to 0x364 + [0x0000102a] Extended opcode 1: End of Sequence + + + Offset: 0x102d + Length: 806 + DWARF Version: 3 + Prologue Length: 370 + Minimum Instruction Length: 1 + Initial value of 'is_stmt': 1 + Line Base: -5 + Line Range: 14 + Opcode Base: 13 + + Opcodes: + Opcode 1 has 0 args + Opcode 2 has 1 arg + Opcode 3 has 1 arg + Opcode 4 has 1 arg + Opcode 5 has 1 arg + Opcode 6 has 0 args + Opcode 7 has 0 args + Opcode 8 has 0 args + Opcode 9 has 1 arg + Opcode 10 has 0 args + Opcode 11 has 0 args + Opcode 12 has 1 arg + + The Directory Table (offset 0x1048): + 1 stdio + 2 /Users/Luppy/ox64/nuttx/include/arch + 3 /Users/Luppy/ox64/nuttx/include + 4 /Users/Luppy/ox64/nuttx/include/sys + 5 /Users/Luppy/ox64/nuttx/include/nuttx + 6 /Users/Luppy/ox64/nuttx/include/nuttx/fs + 7 /Users/Luppy/ox64/nuttx/libs/libc + + The File Name Table (offset 0x1129): + Entry Dir Time Size Name + 1 1 0 0 lib_fputs.c + 2 2 0 0 types.h + 3 3 0 0 stdint.h + 4 4 0 0 types.h + 5 5 0 0 queue.h + 6 3 0 0 semaphore.h + 7 5 0 0 mutex.h + 8 6 0 0 fs.h + 9 3 0 0 stdio.h + 10 3 0 0 string.h + 11 7 0 0 libc.h + + Line Number Statements: + [0x000011a9] Set column to 1 + [0x000011ab] Extended opcode 2: set Address to 0x364 + [0x000011b6] Advance Line by 82 to 83 + [0x000011b9] Copy + [0x000011ba] Set column to 3 + [0x000011bc] Advance Line by 1 to 84 + [0x000011be] Advance PC by fixed size amount 0 to 0x364 + [0x000011c1] Copy (view 1) + [0x000011c2] Advance Line by 6 to 90 + [0x000011c4] Advance PC by fixed size amount 0 to 0x364 + [0x000011c7] Copy (view 2) + [0x000011c8] Set column to 1 + [0x000011ca] Set is_stmt to 0 + [0x000011cb] Advance Line by -7 to 83 + [0x000011cd] Advance PC by fixed size amount 0 to 0x364 + [0x000011d0] Copy (view 3) + [0x000011d1] Set column to 6 + [0x000011d3] Advance Line by 7 to 90 + [0x000011d5] Advance PC by fixed size amount 12 to 0x370 + [0x000011d8] Copy (view 4) + [0x000011d9] Set column to 1 + [0x000011db] Advance Line by -7 to 83 + [0x000011dd] Advance PC by fixed size amount 4 to 0x374 + [0x000011e0] Copy (view 5) + [0x000011e1] Set column to 6 + [0x000011e3] Advance Line by 7 to 90 + [0x000011e5] Advance PC by fixed size amount 4 to 0x378 + [0x000011e8] Copy (view 6) + [0x000011e9] Set column to 7 + [0x000011eb] Set is_stmt to 1 + [0x000011ec] Advance Line by 33 to 123 + [0x000011ee] Advance PC by fixed size amount 4 to 0x37c + [0x000011f1] Copy (view 7) + [0x000011f2] Advance Line by 4 to 127 + [0x000011f4] Advance PC by fixed size amount 0 to 0x37c + [0x000011f7] Copy (view 8) + [0x000011f8] Set column to 18 + [0x000011fa] Set is_stmt to 0 + [0x000011fb] Advance Line by 0 to 127 + [0x000011fd] Advance PC by fixed size amount 0 to 0x37c + [0x00001200] Copy (view 9) + [0x00001201] Set column to 16 + [0x00001203] Advance Line by 0 to 127 + [0x00001205] Advance PC by fixed size amount 8 to 0x384 + [0x00001208] Copy (view 10) + [0x00001209] Set column to 7 + [0x0000120b] Set is_stmt to 1 + [0x0000120c] Advance Line by 1 to 128 + [0x0000120e] Advance PC by fixed size amount 2 to 0x386 + [0x00001211] Copy (view 11) + [0x00001212] Set column to 10 + [0x00001214] Set is_stmt to 0 + [0x00001215] Advance Line by 0 to 128 + [0x00001217] Advance PC by fixed size amount 0 to 0x386 + [0x0000121a] Copy (view 12) + [0x0000121b] Set column to 7 + [0x0000121d] Set is_stmt to 1 + [0x0000121e] Advance Line by 7 to 135 + [0x00001220] Advance PC by fixed size amount 2 to 0x388 + [0x00001223] Copy (view 13) + [0x00001224] Set column to 14 + [0x00001226] Set is_stmt to 0 + [0x00001227] Advance Line by 0 to 135 + [0x00001229] Advance PC by fixed size amount 0 to 0x388 + [0x0000122c] Copy (view 14) + [0x0000122d] Set column to 7 + [0x0000122f] Set is_stmt to 1 + [0x00001230] Advance Line by 1 to 136 + [0x00001232] Advance PC by fixed size amount 14 to 0x396 + [0x00001235] Copy (view 15) + [0x00001236] Set column to 12 + [0x00001238] Set is_stmt to 0 + [0x00001239] Advance Line by -1 to 135 + [0x0000123b] Advance PC by fixed size amount 0 to 0x396 + [0x0000123e] Copy (view 16) + [0x0000123f] Set column to 11 + [0x00001241] Set is_stmt to 1 + [0x00001242] Advance Line by -27 to 108 + [0x00001244] Advance PC by fixed size amount 16 to 0x3a6 + [0x00001247] Copy (view 17) + [0x00001248] Set column to 14 + [0x0000124a] Set is_stmt to 0 + [0x0000124b] Advance Line by 0 to 108 + [0x0000124d] Advance PC by fixed size amount 0 to 0x3a6 + [0x00001250] Copy (view 18) + [0x00001251] Set column to 26 + [0x00001253] Set is_stmt to 1 + [0x00001254] Advance Line by -12 to 96 + [0x00001256] Advance PC by fixed size amount 8 to 0x3ae + [0x00001259] Copy (view 19) + [0x0000125a] Set column to 35 + [0x0000125c] Set is_stmt to 0 + [0x0000125d] Advance Line by 0 to 96 + [0x0000125f] Advance PC by fixed size amount 0 to 0x3ae + [0x00001262] Copy (view 20) + [0x00001263] Set column to 7 + [0x00001265] Advance Line by 0 to 96 + [0x00001267] Advance PC by fixed size amount 2 to 0x3b0 + [0x0000126a] Copy (view 21) + [0x0000126b] Set column to 22 + [0x0000126d] Set is_stmt to 1 + [0x0000126e] Advance Line by 0 to 96 + [0x00001270] Advance PC by fixed size amount 8 to 0x3b8 + [0x00001273] Copy (view 22) + [0x00001274] Set column to 7 + [0x00001276] Set is_stmt to 0 + [0x00001277] Advance Line by 0 to 96 + [0x00001279] Advance PC by fixed size amount 0 to 0x3b8 + [0x0000127c] Copy (view 23) + [0x0000127d] Set column to 11 + [0x0000127f] Set is_stmt to 1 + [0x00001280] Advance Line by 4 to 100 + [0x00001282] Advance PC by fixed size amount 2 to 0x3ba + [0x00001285] Copy (view 24) + [0x00001286] Set column to 17 + [0x00001288] Set is_stmt to 0 + [0x00001289] Advance Line by 0 to 100 + [0x0000128b] Advance PC by fixed size amount 0 to 0x3ba + [0x0000128e] Copy (view 25) + [0x0000128f] Set column to 11 + [0x00001291] Set is_stmt to 1 + [0x00001292] Advance Line by 1 to 101 + [0x00001294] Advance PC by fixed size amount 14 to 0x3c8 + [0x00001297] Copy (view 26) + [0x00001298] Set column to 14 + [0x0000129a] Set is_stmt to 0 + [0x0000129b] Advance Line by 0 to 101 + [0x0000129d] Advance PC by fixed size amount 0 to 0x3c8 + [0x000012a0] Copy (view 27) + [0x000012a1] Set column to 22 + [0x000012a3] Advance Line by 2 to 103 + [0x000012a5] Advance PC by fixed size amount 6 to 0x3ce + [0x000012a8] Copy (view 28) + [0x000012a9] Set column to 1 + [0x000012ab] Advance Line by 40 to 143 + [0x000012ad] Advance PC by fixed size amount 2 to 0x3d0 + [0x000012b0] Copy (view 29) + [0x000012b1] Set column to 15 + [0x000012b3] Set is_stmt to 1 + [0x000012b4] Advance Line by -33 to 110 + [0x000012b6] Advance PC by fixed size amount 14 to 0x3de + [0x000012b9] Copy (view 30) + [0x000012ba] Set column to 21 + [0x000012bc] Set is_stmt to 0 + [0x000012bd] Advance Line by 0 to 110 + [0x000012bf] Advance PC by fixed size amount 0 to 0x3de + [0x000012c2] Copy (view 31) + [0x000012c3] Set column to 15 + [0x000012c5] Set is_stmt to 1 + [0x000012c6] Advance Line by 1 to 111 + [0x000012c8] Advance PC by fixed size amount 10 to 0x3e8 + [0x000012cb] Copy (view 32) + [0x000012cc] Set column to 18 + [0x000012ce] Set is_stmt to 0 + [0x000012cf] Advance Line by 0 to 111 + [0x000012d1] Advance PC by fixed size amount 0 to 0x3e8 + [0x000012d4] Copy (view 33) + [0x000012d5] Set column to 14 + [0x000012d7] Advance Line by -3 to 108 + [0x000012d9] Advance PC by fixed size amount 10 to 0x3f2 + [0x000012dc] Copy (view 34) + [0x000012dd] Advance PC by fixed size amount 4 to 0x3f6 + [0x000012e0] Extended opcode 1: End of Sequence + + [0x000012e3] Set column to 1 + [0x000012e5] Extended opcode 2: set Address to 0x3f6 + [0x000012f0] Advance Line by 146 to 147 + [0x000012f3] Copy + [0x000012f4] Set column to 3 + [0x000012f6] Advance Line by 1 to 148 + [0x000012f8] Advance PC by fixed size amount 0 to 0x3f6 + [0x000012fb] Copy (view 1) + [0x000012fc] Advance Line by 2 to 150 + [0x000012fe] Advance PC by fixed size amount 0 to 0x3f6 + [0x00001301] Copy (view 2) + [0x00001302] Set column to 1 + [0x00001304] Set is_stmt to 0 + [0x00001305] Advance Line by -3 to 147 + [0x00001307] Advance PC by fixed size amount 0 to 0x3f6 + [0x0000130a] Copy (view 3) + [0x0000130b] Set column to 3 + [0x0000130d] Advance Line by 3 to 150 + [0x0000130f] Advance PC by fixed size amount 6 to 0x3fc + [0x00001312] Copy (view 4) + [0x00001313] Set column to 1 + [0x00001315] Advance Line by -3 to 147 + [0x00001317] Advance PC by fixed size amount 2 to 0x3fe + [0x0000131a] Copy (view 5) + [0x0000131b] Advance Line by 0 to 147 + [0x0000131d] Advance PC by fixed size amount 4 to 0x402 + [0x00001320] Copy (view 6) + [0x00001321] Set column to 3 + [0x00001323] Advance Line by 3 to 150 + [0x00001325] Advance PC by fixed size amount 2 to 0x404 + [0x00001328] Copy (view 7) + [0x00001329] Set is_stmt to 1 + [0x0000132a] Advance Line by 1 to 151 + [0x0000132c] Advance PC by fixed size amount 8 to 0x40c + [0x0000132f] Copy (view 8) + [0x00001330] Set column to 9 + [0x00001332] Set is_stmt to 0 + [0x00001333] Advance Line by 0 to 151 + [0x00001335] Advance PC by fixed size amount 0 to 0x40c + [0x00001338] Copy (view 9) + [0x00001339] Set column to 3 + [0x0000133b] Set is_stmt to 1 + [0x0000133c] Advance Line by 1 to 152 + [0x0000133e] Advance PC by fixed size amount 14 to 0x41a + [0x00001341] Copy (view 10) + [0x00001342] Advance Line by 2 to 154 + [0x00001344] Advance PC by fixed size amount 10 to 0x424 + [0x00001347] Copy (view 11) + [0x00001348] Set column to 1 + [0x0000134a] Set is_stmt to 0 + [0x0000134b] Advance Line by 1 to 155 + [0x0000134d] Advance PC by fixed size amount 0 to 0x424 + [0x00001350] Copy (view 12) + [0x00001351] Advance PC by fixed size amount 12 to 0x430 + [0x00001354] Extended opcode 1: End of Sequence + + + Offset: 0x1357 + Length: 425 + DWARF Version: 3 + Prologue Length: 320 + Minimum Instruction Length: 1 + Initial value of 'is_stmt': 1 + Line Base: -5 + Line Range: 14 + Opcode Base: 13 + + Opcodes: + Opcode 1 has 0 args + Opcode 2 has 1 arg + Opcode 3 has 1 arg + Opcode 4 has 1 arg + Opcode 5 has 1 arg + Opcode 6 has 0 args + Opcode 7 has 0 args + Opcode 8 has 0 args + Opcode 9 has 1 arg + Opcode 10 has 0 args + Opcode 11 has 0 args + Opcode 12 has 1 arg + + The Directory Table (offset 0x1372): + 1 stdio + 2 /Users/Luppy/ox64/nuttx/include/arch + 3 /Users/Luppy/ox64/nuttx/include + 4 /Users/Luppy/ox64/nuttx/include/sys + 5 /Users/Luppy/ox64/nuttx/include/nuttx + 6 /Users/Luppy/ox64/nuttx/include/nuttx/fs + + The File Name Table (offset 0x1431): + Entry Dir Time Size Name + 1 1 0 0 lib_libfilelock.c + 2 2 0 0 types.h + 3 3 0 0 stdint.h + 4 4 0 0 types.h + 5 5 0 0 queue.h + 6 3 0 0 semaphore.h + 7 5 0 0 mutex.h + 8 6 0 0 fs.h + 9 3 0 0 stdio.h + + Line Number Statements: + [0x000014a1] Set column to 1 + [0x000014a3] Extended opcode 2: set Address to 0x430 + [0x000014ae] Advance Line by 44 to 45 + [0x000014b0] Copy + [0x000014b1] Set column to 3 + [0x000014b3] Advance Line by 1 to 46 + [0x000014b5] Advance PC by fixed size amount 0 to 0x430 + [0x000014b8] Copy (view 1) + [0x000014b9] Advance PC by fixed size amount 10 to 0x43a + [0x000014bc] Extended opcode 1: End of Sequence + + [0x000014bf] Set column to 1 + [0x000014c1] Extended opcode 2: set Address to 0x43a + [0x000014cc] Advance Line by 53 to 54 + [0x000014ce] Copy + [0x000014cf] Set column to 3 + [0x000014d1] Advance Line by 1 to 55 + [0x000014d3] Advance PC by fixed size amount 0 to 0x43a + [0x000014d6] Copy (view 1) + [0x000014d7] Set column to 10 + [0x000014d9] Set is_stmt to 0 + [0x000014da] Advance Line by 0 to 55 + [0x000014dc] Advance PC by fixed size amount 0 to 0x43a + [0x000014df] Copy (view 2) + [0x000014e0] Advance PC by fixed size amount 10 to 0x444 + [0x000014e3] Extended opcode 1: End of Sequence + + [0x000014e6] Set column to 1 + [0x000014e8] Extended opcode 2: set Address to 0x444 + [0x000014f3] Advance Line by 62 to 63 + [0x000014f5] Copy + [0x000014f6] Set column to 3 + [0x000014f8] Advance Line by 1 to 64 + [0x000014fa] Advance PC by fixed size amount 0 to 0x444 + [0x000014fd] Copy (view 1) + [0x000014fe] Advance PC by fixed size amount 10 to 0x44e + [0x00001501] Extended opcode 1: End of Sequence + + + Offset: 0x1504 + Length: 562 + DWARF Version: 3 + Prologue Length: 371 + Minimum Instruction Length: 1 + Initial value of 'is_stmt': 1 + Line Base: -5 + Line Range: 14 + Opcode Base: 13 + + Opcodes: + Opcode 1 has 0 args + Opcode 2 has 1 arg + Opcode 3 has 1 arg + Opcode 4 has 1 arg + Opcode 5 has 1 arg + Opcode 6 has 0 args + Opcode 7 has 0 args + Opcode 8 has 0 args + Opcode 9 has 1 arg + Opcode 10 has 0 args + Opcode 11 has 0 args + Opcode 12 has 1 arg + + The Directory Table (offset 0x151f): + 1 stdio + 2 /Users/Luppy/ox64/nuttx/include/arch + 3 /Users/Luppy/ox64/nuttx/include + 4 /Users/Luppy/ox64/nuttx/include/sys + 5 /Users/Luppy/ox64/nuttx/include/nuttx + 6 /Users/Luppy/ox64/nuttx/include/nuttx/fs + 7 /Users/Luppy/ox64/nuttx/include/nuttx/lib + + The File Name Table (offset 0x1608): + Entry Dir Time Size Name + 1 1 0 0 lib_libgetstreams.c + 2 2 0 0 types.h + 3 3 0 0 stdint.h + 4 4 0 0 types.h + 5 5 0 0 queue.h + 6 3 0 0 semaphore.h + 7 5 0 0 mutex.h + 8 6 0 0 fs.h + 9 5 0 0 tls.h + 10 7 0 0 lib.h + + Line Number Statements: + [0x00001681] Set column to 1 + [0x00001683] Extended opcode 2: set Address to 0x44e + [0x0000168e] Advance Line by 53 to 54 + [0x00001690] Copy + [0x00001691] Set column to 7 + [0x00001693] Advance Line by 1 to 55 + [0x00001695] Advance PC by fixed size amount 0 to 0x44e + [0x00001698] Copy (view 1) + [0x00001699] Set column to 3 + [0x0000169b] Advance Line by 2 to 57 + [0x0000169d] Advance PC by fixed size amount 0 to 0x44e + [0x000016a0] Copy (view 2) + [0x000016a1] Set column to 1 + [0x000016a3] Set is_stmt to 0 + [0x000016a4] Advance Line by -3 to 54 + [0x000016a6] Advance PC by fixed size amount 0 to 0x44e + [0x000016a9] Copy (view 3) + [0x000016aa] Set column to 10 + [0x000016ac] Advance Line by 3 to 57 + [0x000016ae] Advance PC by fixed size amount 4 to 0x452 + [0x000016b1] Copy (view 4) + [0x000016b2] Set column to 3 + [0x000016b4] Set is_stmt to 1 + [0x000016b5] Advance Line by 1 to 58 + [0x000016b7] Advance PC by fixed size amount 8 to 0x45a + [0x000016ba] Copy (view 5) + [0x000016bb] Set column to 1 + [0x000016bd] Set is_stmt to 0 + [0x000016be] Advance Line by 1 to 59 + [0x000016c0] Advance PC by fixed size amount 0 to 0x45a + [0x000016c3] Copy (view 6) + [0x000016c4] Advance PC by fixed size amount 10 to 0x464 + [0x000016c7] Extended opcode 1: End of Sequence + + [0x000016ca] Set column to 1 + [0x000016cc] Extended opcode 2: set Address to 0x464 + [0x000016d7] Advance Line by 70 to 71 + [0x000016da] Copy + [0x000016db] Set column to 3 + [0x000016dd] Advance Line by 1 to 72 + [0x000016df] Advance PC by fixed size amount 0 to 0x464 + [0x000016e2] Copy (view 1) + [0x000016e3] Set column to 7 + [0x000016e5] Advance Line by -17 to 55 + [0x000016e7] Advance PC by fixed size amount 0 to 0x464 + [0x000016ea] Copy (view 2) + [0x000016eb] Set column to 3 + [0x000016ed] Advance Line by 2 to 57 + [0x000016ef] Advance PC by fixed size amount 0 to 0x464 + [0x000016f2] Copy (view 3) + [0x000016f3] Set column to 1 + [0x000016f5] Set is_stmt to 0 + [0x000016f6] Advance Line by 14 to 71 + [0x000016f8] Advance PC by fixed size amount 0 to 0x464 + [0x000016fb] Copy (view 4) + [0x000016fc] Advance Line by 0 to 71 + [0x000016fe] Advance PC by fixed size amount 6 to 0x46a + [0x00001701] Copy (view 5) + [0x00001702] Set column to 10 + [0x00001704] Advance Line by -14 to 57 + [0x00001706] Advance PC by fixed size amount 2 to 0x46c + [0x00001709] Copy (view 6) + [0x0000170a] Set column to 3 + [0x0000170c] Set is_stmt to 1 + [0x0000170d] Advance Line by 1 to 58 + [0x0000170f] Advance PC by fixed size amount 8 to 0x474 + [0x00001712] Copy (view 7) + [0x00001713] Set column to 10 + [0x00001715] Set is_stmt to 0 + [0x00001716] Advance Line by 14 to 72 + [0x00001718] Advance PC by fixed size amount 0 to 0x474 + [0x0000171b] Copy (view 8) + [0x0000171c] Set column to 1 + [0x0000171e] Advance Line by 1 to 73 + [0x00001720] Advance PC by fixed size amount 8 to 0x47c + [0x00001723] Copy (view 9) + [0x00001724] Set column to 10 + [0x00001726] Advance Line by -1 to 72 + [0x00001728] Advance PC by fixed size amount 2 to 0x47e + [0x0000172b] Copy (view 10) + [0x0000172c] Set column to 1 + [0x0000172e] Advance Line by 1 to 73 + [0x00001730] Advance PC by fixed size amount 2 to 0x480 + [0x00001733] Copy (view 11) + [0x00001734] Advance PC by fixed size amount 10 to 0x48a + [0x00001737] Extended opcode 1: End of Sequence + + + Offset: 0x173a + Length: 372 + DWARF Version: 3 + Prologue Length: 118 + Minimum Instruction Length: 1 + Initial value of 'is_stmt': 1 + Line Base: -5 + Line Range: 14 + Opcode Base: 13 + + Opcodes: + Opcode 1 has 0 args + Opcode 2 has 1 arg + Opcode 3 has 1 arg + Opcode 4 has 1 arg + Opcode 5 has 1 arg + Opcode 6 has 0 args + Opcode 7 has 0 args + Opcode 8 has 0 args + Opcode 9 has 1 arg + Opcode 10 has 0 args + Opcode 11 has 0 args + Opcode 12 has 1 arg + + The Directory Table (offset 0x1755): + 1 stdlib + 2 /Users/Luppy/ox64/nuttx/include + + The File Name Table (offset 0x177d): + Entry Dir Time Size Name + 1 1 0 0 lib_exit.c + 2 2 0 0 stdlib.h + 3 2 0 0 unistd.h + 4 2 0 0 sched.h + 5 2 0 0 stdio.h + + Line Number Statements: + [0x000017ba] Set column to 1 + [0x000017bc] Extended opcode 2: set Address to 0x48a + [0x000017c7] Advance Line by 93 to 94 + [0x000017ca] Copy + [0x000017cb] Set column to 3 + [0x000017cd] Advance Line by 6 to 100 + [0x000017cf] Advance PC by fixed size amount 0 to 0x48a + [0x000017d2] Copy (view 1) + [0x000017d3] Set column to 1 + [0x000017d5] Set is_stmt to 0 + [0x000017d6] Advance Line by -6 to 94 + [0x000017d8] Advance PC by fixed size amount 0 to 0x48a + [0x000017db] Copy (view 2) + [0x000017dc] Set column to 3 + [0x000017de] Advance Line by 6 to 100 + [0x000017e0] Advance PC by fixed size amount 4 to 0x48e + [0x000017e3] Copy (view 3) + [0x000017e4] Set column to 1 + [0x000017e6] Advance Line by -6 to 94 + [0x000017e8] Advance PC by fixed size amount 2 to 0x490 + [0x000017eb] Copy (view 4) + [0x000017ec] Set column to 3 + [0x000017ee] Advance Line by 6 to 100 + [0x000017f0] Advance PC by fixed size amount 2 to 0x492 + [0x000017f3] Copy (view 5) + [0x000017f4] Set column to 1 + [0x000017f6] Advance Line by -6 to 94 + [0x000017f8] Advance PC by fixed size amount 2 to 0x494 + [0x000017fb] Copy (view 6) + [0x000017fc] Set column to 3 + [0x000017fe] Advance Line by 6 to 100 + [0x00001800] Advance PC by fixed size amount 2 to 0x496 + [0x00001803] Copy (view 7) + [0x00001804] Set column to 39 + [0x00001806] Set is_stmt to 1 + [0x00001807] Advance Line by 12 to 112 + [0x00001809] Advance PC by fixed size amount 8 to 0x49e + [0x0000180c] Copy (view 8) + [0x0000180d] Set column to 3 + [0x0000180f] Advance Line by 9 to 121 + [0x00001811] Advance PC by fixed size amount 0 to 0x49e + [0x00001814] Copy (view 9) + [0x00001815] Advance Line by 5 to 126 + [0x00001817] Advance PC by fixed size amount 10 to 0x4a8 + [0x0000181a] Copy (view 10) + [0x0000181b] Advance PC by fixed size amount 10 to 0x4b2 + [0x0000181e] Extended opcode 1: End of Sequence + + [0x00001821] Set column to 1 + [0x00001823] Extended opcode 2: set Address to 0x4b2 + [0x0000182e] Advance Line by 146 to 147 + [0x00001831] Copy + [0x00001832] Set column to 3 + [0x00001834] Advance Line by 6 to 153 + [0x00001836] Advance PC by fixed size amount 0 to 0x4b2 + [0x00001839] Copy (view 1) + [0x0000183a] Set column to 1 + [0x0000183c] Set is_stmt to 0 + [0x0000183d] Advance Line by -6 to 147 + [0x0000183f] Advance PC by fixed size amount 0 to 0x4b2 + [0x00001842] Copy (view 2) + [0x00001843] Set column to 3 + [0x00001845] Advance Line by 6 to 153 + [0x00001847] Advance PC by fixed size amount 4 to 0x4b6 + [0x0000184a] Copy (view 3) + [0x0000184b] Set column to 1 + [0x0000184d] Advance Line by -6 to 147 + [0x0000184f] Advance PC by fixed size amount 2 to 0x4b8 + [0x00001852] Copy (view 4) + [0x00001853] Set column to 3 + [0x00001855] Advance Line by 6 to 153 + [0x00001857] Advance PC by fixed size amount 2 to 0x4ba + [0x0000185a] Copy (view 5) + [0x0000185b] Set column to 1 + [0x0000185d] Advance Line by -6 to 147 + [0x0000185f] Advance PC by fixed size amount 2 to 0x4bc + [0x00001862] Copy (view 6) + [0x00001863] Set column to 3 + [0x00001865] Advance Line by 6 to 153 + [0x00001867] Advance PC by fixed size amount 2 to 0x4be + [0x0000186a] Copy (view 7) + [0x0000186b] Set column to 38 + [0x0000186d] Set is_stmt to 1 + [0x0000186e] Advance Line by 12 to 165 + [0x00001870] Advance PC by fixed size amount 8 to 0x4c6 + [0x00001873] Copy (view 8) + [0x00001874] Set column to 3 + [0x00001876] Advance Line by 4 to 169 + [0x00001878] Advance PC by fixed size amount 0 to 0x4c6 + [0x0000187b] Copy (view 9) + [0x0000187c] Advance PC by fixed size amount 10 to 0x4d0 + [0x0000187f] Extended opcode 1: End of Sequence + + [0x00001882] Set column to 1 + [0x00001884] Extended opcode 2: set Address to 0x4d0 + [0x0000188f] Advance Line by 189 to 190 + [0x00001892] Copy + [0x00001893] Set column to 3 + [0x00001895] Advance Line by 1 to 191 + [0x00001897] Advance PC by fixed size amount 0 to 0x4d0 + [0x0000189a] Copy (view 1) + [0x0000189b] Set column to 1 + [0x0000189d] Set is_stmt to 0 + [0x0000189e] Advance Line by -1 to 190 + [0x000018a0] Advance PC by fixed size amount 0 to 0x4d0 + [0x000018a3] Copy (view 2) + [0x000018a4] Set column to 3 + [0x000018a6] Advance Line by 1 to 191 + [0x000018a8] Advance PC by fixed size amount 4 to 0x4d4 + [0x000018ab] Copy (view 3) + [0x000018ac] Advance PC by fixed size amount 8 to 0x4dc + [0x000018af] Extended opcode 1: End of Sequence + + + Offset: 0x18b2 + Length: 301 + DWARF Version: 3 + Prologue Length: 181 + Minimum Instruction Length: 1 + Initial value of 'is_stmt': 1 + Line Base: -5 + Line Range: 14 + Opcode Base: 13 + + Opcodes: + Opcode 1 has 0 args + Opcode 2 has 1 arg + Opcode 3 has 1 arg + Opcode 4 has 1 arg + Opcode 5 has 1 arg + Opcode 6 has 0 args + Opcode 7 has 0 args + Opcode 8 has 0 args + Opcode 9 has 1 arg + Opcode 10 has 0 args + Opcode 11 has 0 args + Opcode 12 has 1 arg + + The Directory Table (offset 0x18cd): + 1 string + 2 /Users/Luppy/ox64/nuttx/include/arch + 3 /Users/Luppy/ox64/nuttx/include/sys + 4 /Users/Luppy/ox64/nuttx/include + + The File Name Table (offset 0x193e): + Entry Dir Time Size Name + 1 1 0 0 lib_strlen.c + 2 2 0 0 types.h + 3 3 0 0 types.h + 4 4 0 0 string.h + + Line Number Statements: + [0x00001971] Set column to 1 + [0x00001973] Extended opcode 2: set Address to 0x4dc + [0x0000197e] Advance Line by 37 to 38 + [0x00001980] Copy + [0x00001981] Set column to 7 + [0x00001983] Advance Line by 1 to 39 + [0x00001985] Advance PC by fixed size amount 0 to 0x4dc + [0x00001988] Copy (view 1) + [0x00001989] Set column to 3 + [0x0000198b] Advance Line by 1 to 40 + [0x0000198d] Advance PC by fixed size amount 0 to 0x4dc + [0x00001990] Copy (view 2) + [0x00001991] Set column to 11 + [0x00001993] Set is_stmt to 0 + [0x00001994] Advance Line by 0 to 40 + [0x00001996] Advance PC by fixed size amount 0 to 0x4dc + [0x00001999] Copy (view 3) + [0x0000199a] Set column to 16 + [0x0000199c] Extended opcode 4: set Discriminator to 1 + [0x000019a0] Set is_stmt to 1 + [0x000019a1] Advance Line by 0 to 40 + [0x000019a3] Advance PC by fixed size amount 2 to 0x4de + [0x000019a6] Copy (view 4) + [0x000019a7] Set column to 3 + [0x000019a9] Extended opcode 4: set Discriminator to 1 + [0x000019ad] Set is_stmt to 0 + [0x000019ae] Advance Line by 0 to 40 + [0x000019b0] Advance PC by fixed size amount 0 to 0x4de + [0x000019b3] Copy (view 5) + [0x000019b4] Set is_stmt to 1 + [0x000019b5] Advance Line by 1 to 41 + [0x000019b7] Advance PC by fixed size amount 6 to 0x4e4 + [0x000019ba] Copy (view 6) + [0x000019bb] Set column to 1 + [0x000019bd] Set is_stmt to 0 + [0x000019be] Advance Line by 1 to 42 + [0x000019c0] Advance PC by fixed size amount 0 to 0x4e4 + [0x000019c3] Copy (view 7) + [0x000019c4] Set column to 34 + [0x000019c6] Extended opcode 4: set Discriminator to 3 + [0x000019ca] Set is_stmt to 1 + [0x000019cb] Advance Line by -2 to 40 + [0x000019cd] Advance PC by fixed size amount 6 to 0x4ea + [0x000019d0] Copy (view 8) + [0x000019d1] Set column to 29 + [0x000019d3] Extended opcode 4: set Discriminator to 3 + [0x000019d7] Advance Line by 0 to 40 + [0x000019d9] Advance PC by fixed size amount 0 to 0x4ea + [0x000019dc] Copy (view 9) + [0x000019dd] Advance PC by fixed size amount 4 to 0x4ee + [0x000019e0] Extended opcode 1: End of Sequence + + + Offset: 0x19e3 + Length: 290 + DWARF Version: 3 + Prologue Length: 181 + Minimum Instruction Length: 1 + Initial value of 'is_stmt': 1 + Line Base: -5 + Line Range: 14 + Opcode Base: 13 + + Opcodes: + Opcode 1 has 0 args + Opcode 2 has 1 arg + Opcode 3 has 1 arg + Opcode 4 has 1 arg + Opcode 5 has 1 arg + Opcode 6 has 0 args + Opcode 7 has 0 args + Opcode 8 has 0 args + Opcode 9 has 1 arg + Opcode 10 has 0 args + Opcode 11 has 0 args + Opcode 12 has 1 arg + + The Directory Table (offset 0x19fe): + 1 string + 2 /Users/Luppy/ox64/nuttx/include/arch + 3 /Users/Luppy/ox64/nuttx/include/sys + 4 /Users/Luppy/ox64/nuttx/include + + The File Name Table (offset 0x1a6f): + Entry Dir Time Size Name + 1 1 0 0 lib_memcpy.c + 2 2 0 0 types.h + 3 3 0 0 types.h + 4 4 0 0 string.h + + Line Number Statements: + [0x00001aa2] Set column to 1 + [0x00001aa4] Extended opcode 2: set Address to 0x4ee + [0x00001aaf] Advance Line by 42 to 43 + [0x00001ab1] Copy + [0x00001ab2] Set column to 7 + [0x00001ab4] Advance Line by 1 to 44 + [0x00001ab6] Advance PC by fixed size amount 0 to 0x4ee + [0x00001ab9] Copy (view 1) + [0x00001aba] Advance Line by 1 to 45 + [0x00001abc] Advance PC by fixed size amount 0 to 0x4ee + [0x00001abf] Copy (view 2) + [0x00001ac0] Set column to 3 + [0x00001ac2] Advance Line by 1 to 46 + [0x00001ac4] Advance PC by fixed size amount 0 to 0x4ee + [0x00001ac7] Copy (view 3) + [0x00001ac8] Set column to 9 + [0x00001aca] Set is_stmt to 0 + [0x00001acb] Advance Line by 0 to 46 + [0x00001acd] Advance PC by fixed size amount 0 to 0x4ee + [0x00001ad0] Copy (view 4) + [0x00001ad1] Set is_stmt to 1 + [0x00001ad2] Advance Line by 0 to 46 + [0x00001ad4] Advance PC by fixed size amount 2 to 0x4f0 + [0x00001ad7] Copy (view 5) + [0x00001ad8] Set column to 3 + [0x00001ada] Advance Line by 5 to 51 + [0x00001adc] Advance PC by fixed size amount 4 to 0x4f4 + [0x00001adf] Copy (view 6) + [0x00001ae0] Set column to 1 + [0x00001ae2] Set is_stmt to 0 + [0x00001ae3] Advance Line by 1 to 52 + [0x00001ae5] Advance PC by fixed size amount 0 to 0x4f4 + [0x00001ae8] Copy (view 7) + [0x00001ae9] Set column to 7 + [0x00001aeb] Set is_stmt to 1 + [0x00001aec] Advance Line by -4 to 48 + [0x00001aee] Advance PC by fixed size amount 2 to 0x4f6 + [0x00001af1] Copy (view 8) + [0x00001af2] Set column to 17 + [0x00001af4] Set is_stmt to 0 + [0x00001af5] Advance Line by 0 to 48 + [0x00001af7] Advance PC by fixed size amount 0 to 0x4f6 + [0x00001afa] Copy (view 9) + [0x00001afb] Set column to 15 + [0x00001afd] Advance Line by 0 to 48 + [0x00001aff] Advance PC by fixed size amount 8 to 0x4fe + [0x00001b02] Copy (view 10) + [0x00001b03] Advance PC by fixed size amount 12 to 0x50a + [0x00001b06] Extended opcode 1: End of Sequence + + + Offset: 0x1b09 + Length: 431 + DWARF Version: 3 + Prologue Length: 322 + Minimum Instruction Length: 1 + Initial value of 'is_stmt': 1 + Line Base: -5 + Line Range: 14 + Opcode Base: 13 + + Opcodes: + Opcode 1 has 0 args + Opcode 2 has 1 arg + Opcode 3 has 1 arg + Opcode 4 has 1 arg + Opcode 5 has 1 arg + Opcode 6 has 0 args + Opcode 7 has 0 args + Opcode 8 has 0 args + Opcode 9 has 1 arg + Opcode 10 has 0 args + Opcode 11 has 0 args + Opcode 12 has 1 arg + + The Directory Table (offset 0x1b24): + 1 tls + 2 /Users/Luppy/ox64/nuttx/include/arch + 3 /Users/Luppy/ox64/nuttx/include + 4 /Users/Luppy/ox64/nuttx/include/sys + 5 /Users/Luppy/ox64/nuttx/include/nuttx + 6 /Users/Luppy/ox64/nuttx/include/nuttx/fs + + The File Name Table (offset 0x1be1): + Entry Dir Time Size Name + 1 1 0 0 task_getinfo.c + 2 2 0 0 irq.h + 3 2 0 0 types.h + 4 3 0 0 stdint.h + 5 4 0 0 types.h + 6 5 0 0 queue.h + 7 3 0 0 semaphore.h + 8 5 0 0 mutex.h + 9 6 0 0 fs.h + 10 5 0 0 tls.h + + Line Number Statements: + [0x00001c55] Set column to 1 + [0x00001c57] Extended opcode 2: set Address to 0x50a + [0x00001c62] Advance Line by 48 to 49 + [0x00001c64] Copy + [0x00001c65] Set column to 7 + [0x00001c67] Advance Line by 1 to 50 + [0x00001c69] Advance PC by fixed size amount 0 to 0x50a + [0x00001c6c] Copy (view 1) + [0x00001c6d] Set File Name to entry 2 in the File Name Table + [0x00001c6f] Set column to 3 + [0x00001c71] Advance Line by 550 to 600 + [0x00001c74] Advance PC by fixed size amount 0 to 0x50a + [0x00001c77] Copy (view 2) + [0x00001c78] Advance Line by 1 to 601 + [0x00001c7a] Advance PC by fixed size amount 0 to 0x50a + [0x00001c7d] Copy (view 3) + [0x00001c7e] Set File Name to entry 1 in the File Name Table + [0x00001c80] Set column to 33 + [0x00001c82] Set is_stmt to 0 + [0x00001c83] Advance Line by -551 to 50 + [0x00001c86] Advance PC by fixed size amount 0 to 0x50a + [0x00001c89] Copy (view 4) + [0x00001c8a] Set File Name to entry 2 in the File Name Table + [0x00001c8c] Set column to 3 + [0x00001c8e] Advance Line by 551 to 601 + [0x00001c91] Advance PC by fixed size amount 2 to 0x50c + [0x00001c94] Copy (view 5) + [0x00001c95] Set is_stmt to 1 + [0x00001c96] Advance Line by 5 to 606 + [0x00001c98] Advance PC by fixed size amount 2 to 0x50e + [0x00001c9b] Copy (view 6) + [0x00001c9c] Set File Name to entry 1 in the File Name Table + [0x00001c9e] Advance Line by -554 to 52 + [0x00001ca1] Advance PC by fixed size amount 0 to 0x50e + [0x00001ca4] Copy (view 7) + [0x00001ca5] Set column to 33 + [0x00001ca7] Set is_stmt to 0 + [0x00001ca8] Advance Line by -2 to 50 + [0x00001caa] Advance PC by fixed size amount 0 to 0x50e + [0x00001cad] Copy (view 8) + [0x00001cae] Set column to 1 + [0x00001cb0] Advance Line by 3 to 53 + [0x00001cb2] Advance PC by fixed size amount 2 to 0x510 + [0x00001cb5] Copy (view 9) + [0x00001cb6] Advance PC by fixed size amount 4 to 0x514 + [0x00001cb9] Extended opcode 1: End of Sequence + + + Offset: 0x1cbc + Length: 463 + DWARF Version: 3 + Prologue Length: 332 + Minimum Instruction Length: 1 + Initial value of 'is_stmt': 1 + Line Base: -5 + Line Range: 14 + Opcode Base: 13 + + Opcodes: + Opcode 1 has 0 args + Opcode 2 has 1 arg + Opcode 3 has 1 arg + Opcode 4 has 1 arg + Opcode 5 has 1 arg + Opcode 6 has 0 args + Opcode 7 has 0 args + Opcode 8 has 0 args + Opcode 9 has 1 arg + Opcode 10 has 0 args + Opcode 11 has 0 args + Opcode 12 has 1 arg + + The Directory Table (offset 0x1cd7): + 1 errno + 2 /Users/Luppy/ox64/nuttx/include/arch + 3 /Users/Luppy/ox64/nuttx/include + 4 /Users/Luppy/ox64/nuttx/include/sys + 5 /Users/Luppy/ox64/nuttx/include/nuttx + 6 /Users/Luppy/ox64/nuttx/include/nuttx/fs + + The File Name Table (offset 0x1d96): + Entry Dir Time Size Name + 1 1 0 0 lib_errno.c + 2 2 0 0 irq.h + 3 2 0 0 types.h + 4 3 0 0 stdint.h + 5 4 0 0 types.h + 6 5 0 0 queue.h + 7 3 0 0 semaphore.h + 8 5 0 0 mutex.h + 9 6 0 0 fs.h + 10 5 0 0 tls.h + 11 3 0 0 errno.h + + Line Number Statements: + [0x00001e12] Set column to 1 + [0x00001e14] Extended opcode 2: set Address to 0x514 + [0x00001e1f] Advance Line by 55 to 56 + [0x00001e21] Copy + [0x00001e22] Set column to 7 + [0x00001e24] Advance Line by 3 to 59 + [0x00001e26] Advance PC by fixed size amount 0 to 0x514 + [0x00001e29] Copy (view 1) + [0x00001e2a] Set File Name to entry 2 in the File Name Table + [0x00001e2c] Set column to 3 + [0x00001e2e] Advance Line by 541 to 600 + [0x00001e31] Advance PC by fixed size amount 0 to 0x514 + [0x00001e34] Copy (view 2) + [0x00001e35] Advance Line by 1 to 601 + [0x00001e37] Advance PC by fixed size amount 0 to 0x514 + [0x00001e3a] Copy (view 3) + [0x00001e3b] Set File Name to entry 1 in the File Name Table + [0x00001e3d] Set column to 36 + [0x00001e3f] Set is_stmt to 0 + [0x00001e40] Advance Line by -542 to 59 + [0x00001e43] Advance PC by fixed size amount 0 to 0x514 + [0x00001e46] Copy (view 4) + [0x00001e47] Set File Name to entry 2 in the File Name Table + [0x00001e49] Set column to 3 + [0x00001e4b] Advance Line by 542 to 601 + [0x00001e4e] Advance PC by fixed size amount 2 to 0x516 + [0x00001e51] Copy (view 5) + [0x00001e52] Set is_stmt to 1 + [0x00001e53] Advance Line by 5 to 606 + [0x00001e55] Advance PC by fixed size amount 2 to 0x518 + [0x00001e58] Copy (view 6) + [0x00001e59] Set File Name to entry 1 in the File Name Table + [0x00001e5b] Set column to 36 + [0x00001e5d] Set is_stmt to 0 + [0x00001e5e] Advance Line by -547 to 59 + [0x00001e61] Advance PC by fixed size amount 0 to 0x518 + [0x00001e64] Copy (view 7) + [0x00001e65] Set column to 3 + [0x00001e67] Set is_stmt to 1 + [0x00001e68] Advance Line by 4 to 63 + [0x00001e6a] Advance PC by fixed size amount 2 to 0x51a + [0x00001e6d] Copy (view 8) + [0x00001e6e] Set column to 39 + [0x00001e70] Set is_stmt to 0 + [0x00001e71] Advance Line by 0 to 63 + [0x00001e73] Advance PC by fixed size amount 0 to 0x51a + [0x00001e76] Copy (view 9) + [0x00001e77] Extended opcode 4: set Discriminator to 1 + [0x00001e7b] Advance Line by 0 to 63 + [0x00001e7d] Advance PC by fixed size amount 10 to 0x524 + [0x00001e80] Copy (view 10) + [0x00001e81] Set column to 1 + [0x00001e83] Advance Line by 1 to 64 + [0x00001e85] Advance PC by fixed size amount 4 to 0x528 + [0x00001e88] Copy (view 11) + [0x00001e89] Advance PC by fixed size amount 2 to 0x52a + [0x00001e8c] Extended opcode 1: End of Sequence + + + Offset: 0x1e8f + Length: 3277 + DWARF Version: 3 + Prologue Length: 313 + Minimum Instruction Length: 1 + Initial value of 'is_stmt': 1 + Line Base: -5 + Line Range: 14 + Opcode Base: 13 + + Opcodes: + Opcode 1 has 0 args + Opcode 2 has 1 arg + Opcode 3 has 1 arg + Opcode 4 has 1 arg + Opcode 5 has 1 arg + Opcode 6 has 0 args + Opcode 7 has 0 args + Opcode 8 has 0 args + Opcode 9 has 1 arg + Opcode 10 has 0 args + Opcode 11 has 0 args + Opcode 12 has 1 arg + + The Directory Table (offset 0x1eaa): + 1 misc + 2 /Users/Luppy/ox64/nuttx/include/arch + 3 /Users/Luppy/ox64/nuttx/include + 4 /Users/Luppy/ox64/nuttx/include/sys + 5 /Users/Luppy/ox64/nuttx/include/nuttx + + The File Name Table (offset 0x1f3f): + Entry Dir Time Size Name + 1 1 0 0 lib_mutex.c + 2 2 0 0 types.h + 3 3 0 0 stdint.h + 4 4 0 0 types.h + 5 3 0 0 time.h + 6 5 0 0 queue.h + 7 3 0 0 semaphore.h + 8 5 0 0 mutex.h + 9 3 0 0 assert.h + 10 5 0 0 clock.h + 11 5 0 0 semaphore.h + 12 3 0 0 unistd.h + + Line Number Statements: + [0x00001fd2] Set column to 1 + [0x00001fd4] Extended opcode 2: set Address to 0x52a + [0x00001fdf] Advance Line by 83 to 84 + [0x00001fe2] Copy + [0x00001fe3] Set column to 3 + [0x00001fe5] Advance Line by 1 to 85 + [0x00001fe7] Advance PC by fixed size amount 0 to 0x52a + [0x00001fea] Copy (view 1) + [0x00001feb] Set column to 1 + [0x00001fed] Set is_stmt to 0 + [0x00001fee] Advance Line by -1 to 84 + [0x00001ff0] Advance PC by fixed size amount 0 to 0x52a + [0x00001ff3] Copy (view 2) + [0x00001ff4] Set column to 13 + [0x00001ff6] Advance Line by 1 to 85 + [0x00001ff8] Advance PC by fixed size amount 2 to 0x52c + [0x00001ffb] Copy (view 3) + [0x00001ffc] Set column to 1 + [0x00001ffe] Advance Line by -1 to 84 + [0x00002000] Advance PC by fixed size amount 4 to 0x530 + [0x00002003] Copy (view 4) + [0x00002004] Advance Line by 0 to 84 + [0x00002006] Advance PC by fixed size amount 6 to 0x536 + [0x00002009] Copy (view 5) + [0x0000200a] Set column to 13 + [0x0000200c] Advance Line by 1 to 85 + [0x0000200e] Advance PC by fixed size amount 2 to 0x538 + [0x00002011] Copy (view 6) + [0x00002012] Set column to 3 + [0x00002014] Set is_stmt to 1 + [0x00002015] Advance Line by 2 to 87 + [0x00002017] Advance PC by fixed size amount 10 to 0x542 + [0x0000201a] Copy (view 7) + [0x0000201b] Set column to 6 + [0x0000201d] Set is_stmt to 0 + [0x0000201e] Advance Line by 0 to 87 + [0x00002020] Advance PC by fixed size amount 0 to 0x542 + [0x00002023] Copy (view 8) + [0x00002024] Set column to 3 + [0x00002026] Set is_stmt to 1 + [0x00002027] Advance Line by 5 to 92 + [0x00002029] Advance PC by fixed size amount 4 to 0x546 + [0x0000202c] Copy (view 9) + [0x0000202d] Set column to 17 + [0x0000202f] Set is_stmt to 0 + [0x00002030] Advance Line by 0 to 92 + [0x00002032] Advance PC by fixed size amount 0 to 0x546 + [0x00002035] Copy (view 10) + [0x00002036] Set column to 3 + [0x00002038] Set is_stmt to 1 + [0x00002039] Advance Line by 4 to 96 + [0x0000203b] Advance PC by fixed size amount 4 to 0x54a + [0x0000203e] Copy (view 11) + [0x0000203f] Advance Line by 2 to 98 + [0x00002041] Advance PC by fixed size amount 12 to 0x556 + [0x00002044] Copy (view 12) + [0x00002045] Set column to 1 + [0x00002047] Set is_stmt to 0 + [0x00002048] Advance Line by 1 to 99 + [0x0000204a] Advance PC by fixed size amount 0 to 0x556 + [0x0000204d] Copy (view 13) + [0x0000204e] Advance PC by fixed size amount 12 to 0x562 + [0x00002051] Extended opcode 1: End of Sequence + + [0x00002054] Set column to 1 + [0x00002056] Extended opcode 2: set Address to 0x562 + [0x00002061] Advance Line by 120 to 121 + [0x00002064] Copy + [0x00002065] Set column to 3 + [0x00002067] Advance Line by 1 to 122 + [0x00002069] Advance PC by fixed size amount 0 to 0x562 + [0x0000206c] Copy (view 1) + [0x0000206d] Set column to 1 + [0x0000206f] Set is_stmt to 0 + [0x00002070] Advance Line by -1 to 121 + [0x00002072] Advance PC by fixed size amount 0 to 0x562 + [0x00002075] Copy (view 2) + [0x00002076] Advance Line by 0 to 121 + [0x00002078] Advance PC by fixed size amount 6 to 0x568 + [0x0000207b] Copy (view 3) + [0x0000207c] Set column to 13 + [0x0000207e] Advance Line by 1 to 122 + [0x00002080] Advance PC by fixed size amount 2 to 0x56a + [0x00002083] Copy (view 4) + [0x00002084] Set column to 3 + [0x00002086] Set is_stmt to 1 + [0x00002087] Advance Line by 2 to 124 + [0x00002089] Advance PC by fixed size amount 8 to 0x572 + [0x0000208c] Copy (view 5) + [0x0000208d] Set column to 6 + [0x0000208f] Set is_stmt to 0 + [0x00002090] Advance Line by 0 to 124 + [0x00002092] Advance PC by fixed size amount 0 to 0x572 + [0x00002095] Copy (view 6) + [0x00002096] Set column to 3 + [0x00002098] Set is_stmt to 1 + [0x00002099] Advance Line by 5 to 129 + [0x0000209b] Advance PC by fixed size amount 4 to 0x576 + [0x0000209e] Copy (view 7) + [0x0000209f] Set column to 17 + [0x000020a1] Set is_stmt to 0 + [0x000020a2] Advance Line by 0 to 129 + [0x000020a4] Advance PC by fixed size amount 0 to 0x576 + [0x000020a7] Copy (view 8) + [0x000020a8] Set column to 3 + [0x000020aa] Set is_stmt to 1 + [0x000020ab] Advance Line by 1 to 130 + [0x000020ad] Advance PC by fixed size amount 4 to 0x57a + [0x000020b0] Copy (view 9) + [0x000020b1] Set column to 1 + [0x000020b3] Set is_stmt to 0 + [0x000020b4] Advance Line by 1 to 131 + [0x000020b6] Advance PC by fixed size amount 0 to 0x57a + [0x000020b9] Copy (view 10) + [0x000020ba] Advance PC by fixed size amount 8 to 0x582 + [0x000020bd] Extended opcode 1: End of Sequence + + [0x000020c0] Set column to 1 + [0x000020c2] Extended opcode 2: set Address to 0x582 + [0x000020cd] Advance Line by 147 to 148 + [0x000020d0] Copy + [0x000020d1] Set column to 3 + [0x000020d3] Advance Line by 1 to 149 + [0x000020d5] Advance PC by fixed size amount 0 to 0x582 + [0x000020d8] Copy (view 1) + [0x000020d9] Set column to 1 + [0x000020db] Set is_stmt to 0 + [0x000020dc] Advance Line by -1 to 148 + [0x000020de] Advance PC by fixed size amount 0 to 0x582 + [0x000020e1] Copy (view 2) + [0x000020e2] Set column to 15 + [0x000020e4] Advance Line by 1 to 149 + [0x000020e6] Advance PC by fixed size amount 6 to 0x588 + [0x000020e9] Copy (view 3) + [0x000020ea] Set column to 27 + [0x000020ec] Advance Line by 0 to 149 + [0x000020ee] Advance PC by fixed size amount 2 to 0x58a + [0x000020f1] Copy (view 4) + [0x000020f2] Set column to 1 + [0x000020f4] Advance Line by 1 to 150 + [0x000020f6] Advance PC by fixed size amount 8 to 0x592 + [0x000020f9] Copy (view 5) + [0x000020fa] Set column to 24 + [0x000020fc] Advance Line by -1 to 149 + [0x000020fe] Advance PC by fixed size amount 2 to 0x594 + [0x00002101] Copy (view 6) + [0x00002102] Set column to 1 + [0x00002104] Advance Line by 1 to 150 + [0x00002106] Advance PC by fixed size amount 4 to 0x598 + [0x00002109] Copy (view 7) + [0x0000210a] Advance PC by fixed size amount 10 to 0x5a2 + [0x0000210d] Extended opcode 1: End of Sequence + + [0x00002110] Set column to 1 + [0x00002112] Extended opcode 2: set Address to 0x5a2 + [0x0000211d] Advance Line by 165 to 166 + [0x00002120] Copy + [0x00002121] Set column to 3 + [0x00002123] Advance Line by 1 to 167 + [0x00002125] Advance PC by fixed size amount 0 to 0x5a2 + [0x00002128] Copy (view 1) + [0x00002129] Advance Line by 1 to 168 + [0x0000212b] Advance PC by fixed size amount 0 to 0x5a2 + [0x0000212e] Copy (view 2) + [0x0000212f] Advance Line by 2 to 170 + [0x00002131] Advance PC by fixed size amount 0 to 0x5a2 + [0x00002134] Copy (view 3) + [0x00002135] Set column to 1 + [0x00002137] Set is_stmt to 0 + [0x00002138] Advance Line by -4 to 166 + [0x0000213a] Advance PC by fixed size amount 0 to 0x5a2 + [0x0000213d] Copy (view 4) + [0x0000213e] Set column to 9 + [0x00002140] Advance Line by 4 to 170 + [0x00002142] Advance PC by fixed size amount 2 to 0x5a4 + [0x00002145] Copy (view 5) + [0x00002146] Set column to 1 + [0x00002148] Advance Line by -4 to 166 + [0x0000214a] Advance PC by fixed size amount 2 to 0x5a6 + [0x0000214d] Copy (view 6) + [0x0000214e] Set column to 9 + [0x00002150] Advance Line by 4 to 170 + [0x00002152] Advance PC by fixed size amount 2 to 0x5a8 + [0x00002155] Copy (view 7) + [0x00002156] Set column to 3 + [0x00002158] Set is_stmt to 1 + [0x00002159] Advance Line by 2 to 172 + [0x0000215b] Advance PC by fixed size amount 8 to 0x5b0 + [0x0000215e] Copy (view 8) + [0x0000215f] Set column to 19 + [0x00002161] Set is_stmt to 0 + [0x00002162] Advance Line by 0 to 172 + [0x00002164] Advance PC by fixed size amount 0 to 0x5b0 + [0x00002167] Copy (view 9) + [0x00002168] Extended opcode 4: set Discriminator to 1 + [0x0000216c] Advance Line by 0 to 172 + [0x0000216e] Advance PC by fixed size amount 4 to 0x5b4 + [0x00002171] Copy (view 10) + [0x00002172] Set column to 1 + [0x00002174] Extended opcode 4: set Discriminator to 6 + [0x00002178] Advance Line by 1 to 173 + [0x0000217a] Advance PC by fixed size amount 6 to 0x5ba + [0x0000217d] Copy (view 11) + [0x0000217e] Set column to 19 + [0x00002180] Advance Line by -1 to 172 + [0x00002182] Advance PC by fixed size amount 6 to 0x5c0 + [0x00002185] Copy (view 12) + [0x00002186] Advance PC by fixed size amount 4 to 0x5c4 + [0x00002189] Extended opcode 1: End of Sequence + + [0x0000218c] Set column to 1 + [0x0000218e] Extended opcode 2: set Address to 0x5c4 + [0x00002199] Advance Line by 195 to 196 + [0x0000219c] Copy + [0x0000219d] Set column to 3 + [0x0000219f] Advance Line by 1 to 197 + [0x000021a1] Advance PC by fixed size amount 0 to 0x5c4 + [0x000021a4] Copy (view 1) + [0x000021a5] Advance Line by 2 to 199 + [0x000021a7] Advance PC by fixed size amount 0 to 0x5c4 + [0x000021aa] Copy (view 2) + [0x000021ab] Advance Line by 0 to 199 + [0x000021ad] Advance PC by fixed size amount 0 to 0x5c4 + [0x000021b0] Copy (view 3) + [0x000021b1] Set column to 1 + [0x000021b3] Set is_stmt to 0 + [0x000021b4] Advance Line by -3 to 196 + [0x000021b6] Advance PC by fixed size amount 0 to 0x5c4 + [0x000021b9] Copy (view 4) + [0x000021ba] Advance Line by 0 to 196 + [0x000021bc] Advance PC by fixed size amount 12 to 0x5d0 + [0x000021bf] Copy (view 5) + [0x000021c0] Set column to 3 + [0x000021c2] Advance Line by 3 to 199 + [0x000021c4] Advance PC by fixed size amount 2 to 0x5d2 + [0x000021c7] Copy (view 6) + [0x000021c8] Set column to 15 + [0x000021ca] Advance Line by 11 to 210 + [0x000021cc] Advance PC by fixed size amount 10 to 0x5dc + [0x000021cf] Copy (view 7) + [0x000021d0] Set column to 30 + [0x000021d2] Advance Line by 0 to 210 + [0x000021d4] Advance PC by fixed size amount 2 to 0x5de + [0x000021d7] Copy (view 8) + [0x000021d8] Set column to 3 + [0x000021da] Extended opcode 4: set Discriminator to 2 + [0x000021de] Set is_stmt to 1 + [0x000021df] Advance Line by -11 to 199 + [0x000021e1] Advance PC by fixed size amount 4 to 0x5e2 + [0x000021e4] Copy (view 9) + [0x000021e5] Extended opcode 4: set Discriminator to 2 + [0x000021e9] Advance Line by 1 to 200 + [0x000021eb] Advance PC by fixed size amount 0 to 0x5e2 + [0x000021ee] Copy (view 10) + [0x000021ef] Set column to 7 + [0x000021f1] Extended opcode 4: set Discriminator to 2 + [0x000021f5] Advance Line by 4 to 204 + [0x000021f7] Advance PC by fixed size amount 0 to 0x5e2 + [0x000021fa] Copy (view 11) + [0x000021fb] Set column to 13 + [0x000021fd] Extended opcode 4: set Discriminator to 2 + [0x00002201] Set is_stmt to 0 + [0x00002202] Advance Line by 0 to 204 + [0x00002204] Advance PC by fixed size amount 0 to 0x5e2 + [0x00002207] Copy (view 12) + [0x00002208] Set column to 7 + [0x0000220a] Extended opcode 4: set Discriminator to 2 + [0x0000220e] Set is_stmt to 1 + [0x0000220f] Advance Line by 1 to 205 + [0x00002211] Advance PC by fixed size amount 12 to 0x5ee + [0x00002214] Copy (view 13) + [0x00002215] Set column to 10 + [0x00002217] Extended opcode 4: set Discriminator to 2 + [0x0000221b] Set is_stmt to 0 + [0x0000221c] Advance Line by 0 to 205 + [0x0000221e] Advance PC by fixed size amount 0 to 0x5ee + [0x00002221] Copy (view 14) + [0x00002222] Set column to 11 + [0x00002224] Set is_stmt to 1 + [0x00002225] Advance Line by 2 to 207 + [0x00002227] Advance PC by fixed size amount 4 to 0x5f2 + [0x0000222a] Copy (view 15) + [0x0000222b] Set column to 27 + [0x0000222d] Set is_stmt to 0 + [0x0000222e] Advance Line by 0 to 207 + [0x00002230] Advance PC by fixed size amount 0 to 0x5f2 + [0x00002233] Copy (view 16) + [0x00002234] Set column to 25 + [0x00002236] Advance Line by 0 to 207 + [0x00002238] Advance PC by fixed size amount 8 to 0x5fa + [0x0000223b] Copy (view 17) + [0x0000223c] Set column to 11 + [0x0000223e] Set is_stmt to 1 + [0x0000223f] Advance Line by 1 to 208 + [0x00002241] Advance PC by fixed size amount 2 to 0x5fc + [0x00002244] Copy (view 18) + [0x00002245] Set column to 3 + [0x00002247] Advance Line by 8 to 216 + [0x00002249] Advance PC by fixed size amount 0 to 0x5fc + [0x0000224c] Copy (view 19) + [0x0000224d] Set column to 1 + [0x0000224f] Set is_stmt to 0 + [0x00002250] Advance Line by 1 to 217 + [0x00002252] Advance PC by fixed size amount 0 to 0x5fc + [0x00002255] Copy (view 20) + [0x00002256] Set column to 3 + [0x00002258] Set is_stmt to 1 + [0x00002259] Advance Line by -18 to 199 + [0x0000225b] Advance PC by fixed size amount 16 to 0x60c + [0x0000225e] Copy (view 21) + [0x0000225f] Set column to 12 + [0x00002261] Advance Line by 11 to 210 + [0x00002263] Advance PC by fixed size amount 28 to 0x628 + [0x00002266] Copy (view 22) + [0x00002267] Set column to 15 + [0x00002269] Set is_stmt to 0 + [0x0000226a] Advance Line by 0 to 210 + [0x0000226c] Advance PC by fixed size amount 0 to 0x628 + [0x0000226f] Copy (view 23) + [0x00002270] Set column to 30 + [0x00002272] Extended opcode 4: set Discriminator to 1 + [0x00002276] Advance Line by 0 to 210 + [0x00002278] Advance PC by fixed size amount 4 to 0x62c + [0x0000227b] Copy (view 24) + [0x0000227c] Advance PC by fixed size amount 6 to 0x632 + [0x0000227f] Extended opcode 1: End of Sequence + + [0x00002282] Set column to 1 + [0x00002284] Extended opcode 2: set Address to 0x632 + [0x0000228f] Advance Line by 240 to 241 + [0x00002292] Copy + [0x00002293] Set column to 3 + [0x00002295] Advance Line by 1 to 242 + [0x00002297] Advance PC by fixed size amount 0 to 0x632 + [0x0000229a] Copy (view 1) + [0x0000229b] Advance Line by 2 to 244 + [0x0000229d] Advance PC by fixed size amount 0 to 0x632 + [0x000022a0] Copy (view 2) + [0x000022a1] Advance Line by 0 to 244 + [0x000022a3] Advance PC by fixed size amount 0 to 0x632 + [0x000022a6] Copy (view 3) + [0x000022a7] Set column to 1 + [0x000022a9] Set is_stmt to 0 + [0x000022aa] Advance Line by -3 to 241 + [0x000022ac] Advance PC by fixed size amount 0 to 0x632 + [0x000022af] Copy (view 4) + [0x000022b0] Advance Line by 0 to 241 + [0x000022b2] Advance PC by fixed size amount 8 to 0x63a + [0x000022b5] Copy (view 5) + [0x000022b6] Set column to 3 + [0x000022b8] Advance Line by 3 to 244 + [0x000022ba] Advance PC by fixed size amount 2 to 0x63c + [0x000022bd] Copy (view 6) + [0x000022be] Set is_stmt to 1 + [0x000022bf] Advance Line by 0 to 244 + [0x000022c1] Advance PC by fixed size amount 10 to 0x646 + [0x000022c4] Copy (view 7) + [0x000022c5] Extended opcode 4: set Discriminator to 2 + [0x000022c9] Advance Line by 0 to 244 + [0x000022cb] Advance PC by fixed size amount 28 to 0x662 + [0x000022ce] Copy (view 8) + [0x000022cf] Extended opcode 4: set Discriminator to 2 + [0x000022d3] Advance Line by 1 to 245 + [0x000022d5] Advance PC by fixed size amount 0 to 0x662 + [0x000022d8] Copy (view 9) + [0x000022d9] Set column to 9 + [0x000022db] Extended opcode 4: set Discriminator to 2 + [0x000022df] Set is_stmt to 0 + [0x000022e0] Advance Line by 0 to 245 + [0x000022e2] Advance PC by fixed size amount 0 to 0x662 + [0x000022e5] Copy (view 10) + [0x000022e6] Set column to 3 + [0x000022e8] Extended opcode 4: set Discriminator to 2 + [0x000022ec] Set is_stmt to 1 + [0x000022ed] Advance Line by 1 to 246 + [0x000022ef] Advance PC by fixed size amount 12 to 0x66e + [0x000022f2] Copy (view 11) + [0x000022f3] Set column to 6 + [0x000022f5] Extended opcode 4: set Discriminator to 2 + [0x000022f9] Set is_stmt to 0 + [0x000022fa] Advance Line by 0 to 246 + [0x000022fc] Advance PC by fixed size amount 0 to 0x66e + [0x000022ff] Copy (view 12) + [0x00002300] Set column to 3 + [0x00002302] Set is_stmt to 1 + [0x00002303] Advance Line by 5 to 251 + [0x00002305] Advance PC by fixed size amount 4 to 0x672 + [0x00002308] Copy (view 13) + [0x00002309] Set column to 19 + [0x0000230b] Set is_stmt to 0 + [0x0000230c] Advance Line by 0 to 251 + [0x0000230e] Advance PC by fixed size amount 0 to 0x672 + [0x00002311] Copy (view 14) + [0x00002312] Set column to 17 + [0x00002314] Advance Line by 0 to 251 + [0x00002316] Advance PC by fixed size amount 8 to 0x67a + [0x00002319] Copy (view 15) + [0x0000231a] Set column to 3 + [0x0000231c] Set is_stmt to 1 + [0x0000231d] Advance Line by 1 to 252 + [0x0000231f] Advance PC by fixed size amount 2 to 0x67c + [0x00002322] Copy (view 16) + [0x00002323] Set column to 1 + [0x00002325] Set is_stmt to 0 + [0x00002326] Advance Line by 1 to 253 + [0x00002328] Advance PC by fixed size amount 0 to 0x67c + [0x0000232b] Copy (view 17) + [0x0000232c] Advance PC by fixed size amount 12 to 0x688 + [0x0000232f] Extended opcode 1: End of Sequence + + [0x00002332] Set column to 1 + [0x00002334] Extended opcode 2: set Address to 0x688 + [0x0000233f] Advance Line by 279 to 280 + [0x00002342] Copy + [0x00002343] Set column to 3 + [0x00002345] Advance Line by 1 to 281 + [0x00002347] Advance PC by fixed size amount 0 to 0x688 + [0x0000234a] Copy (view 1) + [0x0000234b] Advance Line by 1 to 282 + [0x0000234d] Advance PC by fixed size amount 0 to 0x688 + [0x00002350] Copy (view 2) + [0x00002351] Advance Line by 1 to 283 + [0x00002353] Advance PC by fixed size amount 0 to 0x688 + [0x00002356] Copy (view 3) + [0x00002357] Advance Line by 1 to 284 + [0x00002359] Advance PC by fixed size amount 0 to 0x688 + [0x0000235c] Copy (view 4) + [0x0000235d] Advance Line by 2 to 286 + [0x0000235f] Advance PC by fixed size amount 0 to 0x688 + [0x00002362] Copy (view 5) + [0x00002363] Set column to 1 + [0x00002365] Set is_stmt to 0 + [0x00002366] Advance Line by -6 to 280 + [0x00002368] Advance PC by fixed size amount 0 to 0x688 + [0x0000236b] Copy (view 6) + [0x0000236c] Set column to 3 + [0x0000236e] Advance Line by 6 to 286 + [0x00002370] Advance PC by fixed size amount 10 to 0x692 + [0x00002373] Copy (view 7) + [0x00002374] Set column to 1 + [0x00002376] Advance Line by -6 to 280 + [0x00002378] Advance PC by fixed size amount 4 to 0x696 + [0x0000237b] Copy (view 8) + [0x0000237c] Set column to 3 + [0x0000237e] Advance Line by 6 to 286 + [0x00002380] Advance PC by fixed size amount 6 to 0x69c + [0x00002383] Copy (view 9) + [0x00002384] Set is_stmt to 1 + [0x00002385] Advance Line by 1 to 287 + [0x00002387] Advance PC by fixed size amount 8 to 0x6a4 + [0x0000238a] Copy (view 10) + [0x0000238b] Advance Line by 1 to 288 + [0x0000238d] Advance PC by fixed size amount 12 to 0x6b0 + [0x00002390] Copy (view 11) + [0x00002391] Set is_stmt to 0 + [0x00002392] Advance Line by 8 to 296 + [0x00002394] Advance PC by fixed size amount 14 to 0x6be + [0x00002397] Copy (view 12) + [0x00002398] Set column to 24 + [0x0000239a] Advance Line by 0 to 296 + [0x0000239c] Advance PC by fixed size amount 2 to 0x6c0 + [0x0000239f] Copy (view 13) + [0x000023a0] Set column to 3 + [0x000023a2] Extended opcode 4: set Discriminator to 3 + [0x000023a6] Set is_stmt to 1 + [0x000023a7] Advance Line by -4 to 292 + [0x000023a9] Advance PC by fixed size amount 4 to 0x6c4 + [0x000023ac] Copy (view 14) + [0x000023ad] Set column to 7 + [0x000023af] Extended opcode 4: set Discriminator to 3 + [0x000023b3] Advance Line by 2 to 294 + [0x000023b5] Advance PC by fixed size amount 0 to 0x6c4 + [0x000023b8] Copy (view 15) + [0x000023b9] Set column to 13 + [0x000023bb] Extended opcode 4: set Discriminator to 3 + [0x000023bf] Set is_stmt to 0 + [0x000023c0] Advance Line by 0 to 294 + [0x000023c2] Advance PC by fixed size amount 0 to 0x6c4 + [0x000023c5] Copy (view 16) + [0x000023c6] Set column to 9 + [0x000023c8] Extended opcode 4: set Discriminator to 3 + [0x000023cc] Set is_stmt to 1 + [0x000023cd] Advance Line by 2 to 296 + [0x000023cf] Advance PC by fixed size amount 16 to 0x6d4 + [0x000023d2] Copy (view 17) + [0x000023d3] Set column to 3 + [0x000023d5] Extended opcode 4: set Discriminator to 3 + [0x000023d9] Set is_stmt to 0 + [0x000023da] Advance Line by 0 to 296 + [0x000023dc] Advance PC by fixed size amount 0 to 0x6d4 + [0x000023df] Copy (view 18) + [0x000023e0] Set column to 24 + [0x000023e2] Extended opcode 4: set Discriminator to 2 + [0x000023e6] Advance Line by 0 to 296 + [0x000023e8] Advance PC by fixed size amount 4 to 0x6d8 + [0x000023eb] Copy (view 19) + [0x000023ec] Set column to 3 + [0x000023ee] Set is_stmt to 1 + [0x000023ef] Advance Line by 2 to 298 + [0x000023f1] Advance PC by fixed size amount 4 to 0x6dc + [0x000023f4] Copy (view 20) + [0x000023f5] Set column to 6 + [0x000023f7] Set is_stmt to 0 + [0x000023f8] Advance Line by 0 to 298 + [0x000023fa] Advance PC by fixed size amount 0 to 0x6dc + [0x000023fd] Copy (view 21) + [0x000023fe] Set column to 7 + [0x00002400] Set is_stmt to 1 + [0x00002401] Advance Line by 2 to 300 + [0x00002403] Advance PC by fixed size amount 4 to 0x6e0 + [0x00002406] Copy (view 22) + [0x00002407] Set column to 23 + [0x00002409] Set is_stmt to 0 + [0x0000240a] Advance Line by 0 to 300 + [0x0000240c] Advance PC by fixed size amount 0 to 0x6e0 + [0x0000240f] Copy (view 23) + [0x00002410] Set column to 21 + [0x00002412] Advance Line by 0 to 300 + [0x00002414] Advance PC by fixed size amount 8 to 0x6e8 + [0x00002417] Copy (view 24) + [0x00002418] Set column to 3 + [0x0000241a] Set is_stmt to 1 + [0x0000241b] Advance Line by 3 to 303 + [0x0000241d] Advance PC by fixed size amount 2 to 0x6ea + [0x00002420] Copy (view 25) + [0x00002421] Set column to 1 + [0x00002423] Set is_stmt to 0 + [0x00002424] Advance Line by 1 to 304 + [0x00002426] Advance PC by fixed size amount 0 to 0x6ea + [0x00002429] Copy (view 26) + [0x0000242a] Advance PC by fixed size amount 16 to 0x6fa + [0x0000242d] Extended opcode 1: End of Sequence + + [0x00002430] Set column to 1 + [0x00002432] Extended opcode 2: set Address to 0x6fa + [0x0000243d] Advance Line by 326 to 327 + [0x00002440] Copy + [0x00002441] Set column to 3 + [0x00002443] Advance Line by 1 to 328 + [0x00002445] Advance PC by fixed size amount 0 to 0x6fa + [0x00002448] Copy (view 1) + [0x00002449] Advance Line by 2 to 330 + [0x0000244b] Advance PC by fixed size amount 0 to 0x6fa + [0x0000244e] Copy (view 2) + [0x0000244f] Advance Line by -273 to 57 + [0x00002452] Advance PC by fixed size amount 0 to 0x6fa + [0x00002455] Copy (view 3) + [0x00002456] Set column to 1 + [0x00002458] Set is_stmt to 0 + [0x00002459] Advance Line by 270 to 327 + [0x0000245c] Advance PC by fixed size amount 0 to 0x6fa + [0x0000245f] Copy (view 4) + [0x00002460] Set column to 6 + [0x00002462] Advance Line by 3 to 330 + [0x00002464] Advance PC by fixed size amount 8 to 0x702 + [0x00002467] Copy (view 5) + [0x00002468] Set column to 3 + [0x0000246a] Set is_stmt to 1 + [0x0000246b] Advance Line by 5 to 335 + [0x0000246d] Advance PC by fixed size amount 10 to 0x70c + [0x00002470] Copy (view 6) + [0x00002471] Advance Line by 0 to 335 + [0x00002473] Advance PC by fixed size amount 0 to 0x70c + [0x00002476] Copy (view 7) + [0x00002477] Advance Line by 0 to 335 + [0x00002479] Advance PC by fixed size amount 10 to 0x716 + [0x0000247c] Copy (view 8) + [0x0000247d] Extended opcode 4: set Discriminator to 2 + [0x00002481] Advance Line by 0 to 335 + [0x00002483] Advance PC by fixed size amount 28 to 0x732 + [0x00002486] Copy (view 9) + [0x00002487] Extended opcode 4: set Discriminator to 2 + [0x0000248b] Advance Line by 2 to 337 + [0x0000248d] Advance PC by fixed size amount 0 to 0x732 + [0x00002490] Copy (view 10) + [0x00002491] Set column to 17 + [0x00002493] Extended opcode 4: set Discriminator to 2 + [0x00002497] Set is_stmt to 0 + [0x00002498] Advance Line by 0 to 337 + [0x0000249a] Advance PC by fixed size amount 0 to 0x732 + [0x0000249d] Copy (view 11) + [0x0000249e] Set column to 3 + [0x000024a0] Extended opcode 4: set Discriminator to 2 + [0x000024a4] Set is_stmt to 1 + [0x000024a5] Advance Line by 2 to 339 + [0x000024a7] Advance PC by fixed size amount 4 to 0x736 + [0x000024aa] Copy (view 12) + [0x000024ab] Set column to 9 + [0x000024ad] Extended opcode 4: set Discriminator to 2 + [0x000024b1] Set is_stmt to 0 + [0x000024b2] Advance Line by 0 to 339 + [0x000024b4] Advance PC by fixed size amount 0 to 0x736 + [0x000024b7] Copy (view 13) + [0x000024b8] Set column to 3 + [0x000024ba] Extended opcode 4: set Discriminator to 2 + [0x000024be] Set is_stmt to 1 + [0x000024bf] Advance Line by 1 to 340 + [0x000024c1] Advance PC by fixed size amount 12 to 0x742 + [0x000024c4] Copy (view 14) + [0x000024c5] Set column to 6 + [0x000024c7] Extended opcode 4: set Discriminator to 2 + [0x000024cb] Set is_stmt to 0 + [0x000024cc] Advance Line by 0 to 340 + [0x000024ce] Advance PC by fixed size amount 0 to 0x742 + [0x000024d1] Copy (view 15) + [0x000024d2] Set column to 7 + [0x000024d4] Set is_stmt to 1 + [0x000024d5] Advance Line by 2 to 342 + [0x000024d7] Advance PC by fixed size amount 4 to 0x746 + [0x000024da] Copy (view 16) + [0x000024db] Set column to 23 + [0x000024dd] Set is_stmt to 0 + [0x000024de] Advance Line by 0 to 342 + [0x000024e0] Advance PC by fixed size amount 0 to 0x746 + [0x000024e3] Copy (view 17) + [0x000024e4] Set column to 21 + [0x000024e6] Advance Line by 0 to 342 + [0x000024e8] Advance PC by fixed size amount 8 to 0x74e + [0x000024eb] Copy (view 18) + [0x000024ec] Set column to 1 + [0x000024ee] Advance Line by 4 to 346 + [0x000024f0] Advance PC by fixed size amount 2 to 0x750 + [0x000024f3] Copy (view 19) + [0x000024f4] Set column to 14 + [0x000024f6] Advance Line by -14 to 332 + [0x000024f8] Advance PC by fixed size amount 12 to 0x75c + [0x000024fb] Copy (view 20) + [0x000024fc] Advance PC by fixed size amount 4 to 0x760 + [0x000024ff] Extended opcode 1: End of Sequence + + [0x00002502] Set column to 1 + [0x00002504] Extended opcode 2: set Address to 0x760 + [0x0000250f] Advance Line by 386 to 387 + [0x00002512] Copy + [0x00002513] Set column to 3 + [0x00002515] Advance Line by 1 to 388 + [0x00002517] Advance PC by fixed size amount 0 to 0x760 + [0x0000251a] Copy (view 1) + [0x0000251b] Advance Line by 2 to 390 + [0x0000251d] Advance PC by fixed size amount 0 to 0x760 + [0x00002520] Copy (view 2) + [0x00002521] Set column to 1 + [0x00002523] Set is_stmt to 0 + [0x00002524] Advance Line by -3 to 387 + [0x00002526] Advance PC by fixed size amount 0 to 0x760 + [0x00002529] Copy (view 3) + [0x0000252a] Set column to 11 + [0x0000252c] Advance Line by 3 to 390 + [0x0000252e] Advance PC by fixed size amount 2 to 0x762 + [0x00002531] Copy (view 4) + [0x00002532] Set column to 3 + [0x00002534] Set is_stmt to 1 + [0x00002535] Advance Line by 1 to 391 + [0x00002537] Advance PC by fixed size amount 4 to 0x766 + [0x0000253a] Copy (view 5) + [0x0000253b] Set column to 1 + [0x0000253d] Set is_stmt to 0 + [0x0000253e] Advance Line by -4 to 387 + [0x00002540] Advance PC by fixed size amount 0 to 0x766 + [0x00002543] Copy (view 6) + [0x00002544] Advance Line by 0 to 387 + [0x00002546] Advance PC by fixed size amount 6 to 0x76c + [0x00002549] Copy (view 7) + [0x0000254a] Set column to 7 + [0x0000254c] Advance Line by 4 to 391 + [0x0000254e] Advance PC by fixed size amount 4 to 0x770 + [0x00002551] Copy (view 8) + [0x00002552] Set column to 6 + [0x00002554] Advance Line by 0 to 391 + [0x00002556] Advance PC by fixed size amount 8 to 0x778 + [0x00002559] Copy (view 9) + [0x0000255a] Set column to 7 + [0x0000255c] Set is_stmt to 1 + [0x0000255d] Advance Line by 2 to 393 + [0x0000255f] Advance PC by fixed size amount 2 to 0x77a + [0x00002562] Copy (view 10) + [0x00002563] Set column to 13 + [0x00002565] Set is_stmt to 0 + [0x00002566] Advance Line by 0 to 393 + [0x00002568] Advance PC by fixed size amount 0 to 0x77a + [0x0000256b] Copy (view 11) + [0x0000256c] Set column to 7 + [0x0000256e] Set is_stmt to 1 + [0x0000256f] Advance Line by 1 to 394 + [0x00002571] Advance PC by fixed size amount 10 to 0x784 + [0x00002574] Copy (view 12) + [0x00002575] Set column to 10 + [0x00002577] Set is_stmt to 0 + [0x00002578] Advance Line by 0 to 394 + [0x0000257a] Advance PC by fixed size amount 0 to 0x784 + [0x0000257d] Copy (view 13) + [0x0000257e] Set column to 11 + [0x00002580] Set is_stmt to 1 + [0x00002581] Advance Line by 2 to 396 + [0x00002583] Advance PC by fixed size amount 4 to 0x788 + [0x00002586] Copy (view 14) + [0x00002587] Set column to 19 + [0x00002589] Set is_stmt to 0 + [0x0000258a] Advance Line by 0 to 396 + [0x0000258c] Advance PC by fixed size amount 0 to 0x788 + [0x0000258f] Copy (view 15) + [0x00002590] Set column to 3 + [0x00002592] Set is_stmt to 1 + [0x00002593] Advance Line by 4 to 400 + [0x00002595] Advance PC by fixed size amount 6 to 0x78e + [0x00002598] Copy (view 16) + [0x00002599] Set column to 1 + [0x0000259b] Set is_stmt to 0 + [0x0000259c] Advance Line by 1 to 401 + [0x0000259e] Advance PC by fixed size amount 0 to 0x78e + [0x000025a1] Copy (view 17) + [0x000025a2] Set column to 7 + [0x000025a4] Advance Line by -13 to 388 + [0x000025a6] Advance PC by fixed size amount 10 to 0x798 + [0x000025a9] Copy (view 18) + [0x000025aa] Advance PC by fixed size amount 4 to 0x79c + [0x000025ad] Extended opcode 1: End of Sequence + + [0x000025b0] Set column to 1 + [0x000025b2] Extended opcode 2: set Address to 0x79c + [0x000025bd] Advance Line by 420 to 421 + [0x000025c0] Copy + [0x000025c1] Set column to 3 + [0x000025c3] Advance Line by 1 to 422 + [0x000025c5] Advance PC by fixed size amount 0 to 0x79c + [0x000025c8] Copy (view 1) + [0x000025c9] Set column to 39 + [0x000025cb] Set is_stmt to 0 + [0x000025cc] Advance Line by 0 to 422 + [0x000025ce] Advance PC by fixed size amount 0 to 0x79c + [0x000025d1] Copy (view 2) + [0x000025d2] Set column to 19 + [0x000025d4] Extended opcode 4: set Discriminator to 1 + [0x000025d8] Advance Line by 0 to 422 + [0x000025da] Advance PC by fixed size amount 2 to 0x79e + [0x000025dd] Copy (view 3) + [0x000025de] Set column to 1 + [0x000025e0] Extended opcode 4: set Discriminator to 4 + [0x000025e4] Advance Line by 1 to 423 + [0x000025e6] Advance PC by fixed size amount 8 to 0x7a6 + [0x000025e9] Copy (view 4) + [0x000025ea] Advance PC by fixed size amount 4 to 0x7aa + [0x000025ed] Extended opcode 1: End of Sequence + + [0x000025f0] Set column to 1 + [0x000025f2] Extended opcode 2: set Address to 0x7aa + [0x000025fd] Advance Line by 445 to 446 + [0x00002600] Copy + [0x00002601] Set column to 3 + [0x00002603] Advance Line by 1 to 447 + [0x00002605] Advance PC by fixed size amount 0 to 0x7aa + [0x00002608] Copy (view 1) + [0x00002609] Set column to 17 + [0x0000260b] Set is_stmt to 0 + [0x0000260c] Advance Line by 0 to 447 + [0x0000260e] Advance PC by fixed size amount 0 to 0x7aa + [0x00002611] Copy (view 2) + [0x00002612] Set column to 3 + [0x00002614] Set is_stmt to 1 + [0x00002615] Advance Line by 1 to 448 + [0x00002617] Advance PC by fixed size amount 4 to 0x7ae + [0x0000261a] Copy (view 3) + [0x0000261b] Set column to 10 + [0x0000261d] Set is_stmt to 0 + [0x0000261e] Advance Line by 0 to 448 + [0x00002620] Advance PC by fixed size amount 0 to 0x7ae + [0x00002623] Copy (view 4) + [0x00002624] Advance PC by fixed size amount 8 to 0x7b6 + [0x00002627] Extended opcode 1: End of Sequence + + [0x0000262a] Set column to 1 + [0x0000262c] Extended opcode 2: set Address to 0x7b6 + [0x00002637] Advance Line by 467 to 468 + [0x0000263a] Copy + [0x0000263b] Set column to 3 + [0x0000263d] Advance Line by 1 to 469 + [0x0000263f] Advance PC by fixed size amount 0 to 0x7b6 + [0x00002642] Copy (view 1) + [0x00002643] Set column to 1 + [0x00002645] Set is_stmt to 0 + [0x00002646] Advance Line by -1 to 468 + [0x00002648] Advance PC by fixed size amount 0 to 0x7b6 + [0x0000264b] Copy (view 2) + [0x0000264c] Advance Line by 0 to 468 + [0x0000264e] Advance PC by fixed size amount 6 to 0x7bc + [0x00002651] Copy (view 3) + [0x00002652] Set column to 13 + [0x00002654] Advance Line by 1 to 469 + [0x00002656] Advance PC by fixed size amount 2 to 0x7be + [0x00002659] Copy (view 4) + [0x0000265a] Set column to 3 + [0x0000265c] Set is_stmt to 1 + [0x0000265d] Advance Line by 2 to 471 + [0x0000265f] Advance PC by fixed size amount 8 to 0x7c6 + [0x00002662] Copy (view 5) + [0x00002663] Set column to 6 + [0x00002665] Set is_stmt to 0 + [0x00002666] Advance Line by 0 to 471 + [0x00002668] Advance PC by fixed size amount 0 to 0x7c6 + [0x0000266b] Copy (view 6) + [0x0000266c] Set column to 7 + [0x0000266e] Set is_stmt to 1 + [0x0000266f] Advance Line by 2 to 473 + [0x00002671] Advance PC by fixed size amount 4 to 0x7ca + [0x00002674] Copy (view 7) + [0x00002675] Set column to 21 + [0x00002677] Set is_stmt to 0 + [0x00002678] Advance Line by 0 to 473 + [0x0000267a] Advance PC by fixed size amount 0 to 0x7ca + [0x0000267d] Copy (view 8) + [0x0000267e] Set column to 3 + [0x00002680] Set is_stmt to 1 + [0x00002681] Advance Line by 3 to 476 + [0x00002683] Advance PC by fixed size amount 4 to 0x7ce + [0x00002686] Copy (view 9) + [0x00002687] Set column to 1 + [0x00002689] Set is_stmt to 0 + [0x0000268a] Advance Line by 1 to 477 + [0x0000268c] Advance PC by fixed size amount 0 to 0x7ce + [0x0000268f] Copy (view 10) + [0x00002690] Advance PC by fixed size amount 8 to 0x7d6 + [0x00002693] Extended opcode 1: End of Sequence + + [0x00002696] Set column to 1 + [0x00002698] Extended opcode 2: set Address to 0x7d6 + [0x000026a3] Advance Line by 493 to 494 + [0x000026a6] Copy + [0x000026a7] Set column to 3 + [0x000026a9] Advance Line by 1 to 495 + [0x000026ab] Advance PC by fixed size amount 0 to 0x7d6 + [0x000026ae] Copy (view 1) + [0x000026af] Set column to 10 + [0x000026b1] Set is_stmt to 0 + [0x000026b2] Advance Line by 0 to 495 + [0x000026b4] Advance PC by fixed size amount 0 to 0x7d6 + [0x000026b7] Copy (view 2) + [0x000026b8] Advance PC by fixed size amount 8 to 0x7de + [0x000026bb] Extended opcode 1: End of Sequence + + [0x000026be] Set column to 1 + [0x000026c0] Extended opcode 2: set Address to 0x7de + [0x000026cb] Advance Line by 512 to 513 + [0x000026ce] Copy + [0x000026cf] Set column to 3 + [0x000026d1] Advance Line by 1 to 514 + [0x000026d3] Advance PC by fixed size amount 0 to 0x7de + [0x000026d6] Copy (view 1) + [0x000026d7] Set column to 10 + [0x000026d9] Set is_stmt to 0 + [0x000026da] Advance Line by 0 to 514 + [0x000026dc] Advance PC by fixed size amount 0 to 0x7de + [0x000026df] Copy (view 2) + [0x000026e0] Advance PC by fixed size amount 8 to 0x7e6 + [0x000026e3] Extended opcode 1: End of Sequence + + [0x000026e6] Set column to 1 + [0x000026e8] Extended opcode 2: set Address to 0x7e6 + [0x000026f3] Advance Line by 536 to 537 + [0x000026f6] Copy + [0x000026f7] Set column to 3 + [0x000026f9] Advance Line by 1 to 538 + [0x000026fb] Advance PC by fixed size amount 0 to 0x7e6 + [0x000026fe] Copy (view 1) + [0x000026ff] Advance Line by 2 to 540 + [0x00002701] Advance PC by fixed size amount 0 to 0x7e6 + [0x00002704] Copy (view 2) + [0x00002705] Set column to 1 + [0x00002707] Set is_stmt to 0 + [0x00002708] Advance Line by -3 to 537 + [0x0000270a] Advance PC by fixed size amount 0 to 0x7e6 + [0x0000270d] Copy (view 3) + [0x0000270e] Advance Line by 0 to 537 + [0x00002710] Advance PC by fixed size amount 6 to 0x7ec + [0x00002713] Copy (view 4) + [0x00002714] Set column to 3 + [0x00002716] Set is_stmt to 1 + [0x00002717] Advance Line by -42 to 495 + [0x00002719] Advance PC by fixed size amount 2 to 0x7ee + [0x0000271c] Copy (view 5) + [0x0000271d] Set column to 10 + [0x0000271f] Set is_stmt to 0 + [0x00002720] Advance Line by 0 to 495 + [0x00002722] Advance PC by fixed size amount 0 to 0x7ee + [0x00002725] Copy (view 6) + [0x00002726] Set column to 6 + [0x00002728] Advance Line by 45 to 540 + [0x0000272a] Advance PC by fixed size amount 12 to 0x7fa + [0x0000272d] Copy (view 7) + [0x0000272e] Set column to 7 + [0x00002730] Set is_stmt to 1 + [0x00002731] Advance Line by 2 to 542 + [0x00002733] Advance PC by fixed size amount 2 to 0x7fc + [0x00002736] Copy (view 8) + [0x00002737] Set column to 13 + [0x00002739] Set is_stmt to 0 + [0x0000273a] Advance Line by 0 to 542 + [0x0000273c] Advance PC by fixed size amount 0 to 0x7fc + [0x0000273f] Copy (view 9) + [0x00002740] Set column to 3 + [0x00002742] Set is_stmt to 1 + [0x00002743] Advance Line by 3 to 545 + [0x00002745] Advance PC by fixed size amount 10 to 0x806 + [0x00002748] Copy (view 10) + [0x00002749] Set column to 6 + [0x0000274b] Set is_stmt to 0 + [0x0000274c] Advance Line by 0 to 545 + [0x0000274e] Advance PC by fixed size amount 0 to 0x806 + [0x00002751] Copy (view 11) + [0x00002752] Set column to 7 + [0x00002754] Set is_stmt to 1 + [0x00002755] Advance Line by 2 to 547 + [0x00002757] Advance PC by fixed size amount 4 to 0x80a + [0x0000275a] Copy (view 12) + [0x0000275b] Advance Line by 0 to 547 + [0x0000275d] Advance PC by fixed size amount 0 to 0x80a + [0x00002760] Copy (view 13) + [0x00002761] Extended opcode 4: set Discriminator to 1 + [0x00002765] Advance Line by 0 to 547 + [0x00002767] Advance PC by fixed size amount 8 to 0x812 + [0x0000276a] Copy (view 14) + [0x0000276b] Extended opcode 4: set Discriminator to 2 + [0x0000276f] Advance Line by 0 to 547 + [0x00002771] Advance PC by fixed size amount 28 to 0x82e + [0x00002774] Copy (view 15) + [0x00002775] Extended opcode 4: set Discriminator to 2 + [0x00002779] Advance Line by 1 to 548 + [0x0000277b] Advance PC by fixed size amount 0 to 0x82e + [0x0000277e] Copy (view 16) + [0x0000277f] Set column to 3 + [0x00002781] Advance Line by 3 to 551 + [0x00002783] Advance PC by fixed size amount 4 to 0x832 + [0x00002786] Copy (view 17) + [0x00002787] Set column to 1 + [0x00002789] Set is_stmt to 0 + [0x0000278a] Advance Line by 1 to 552 + [0x0000278c] Advance PC by fixed size amount 0 to 0x832 + [0x0000278f] Copy (view 18) + [0x00002790] Advance PC by fixed size amount 8 to 0x83a + [0x00002793] Extended opcode 1: End of Sequence + + [0x00002796] Set column to 1 + [0x00002798] Extended opcode 2: set Address to 0x83a + [0x000027a3] Advance Line by 577 to 578 + [0x000027a6] Copy + [0x000027a7] Set column to 3 + [0x000027a9] Advance Line by 1 to 579 + [0x000027ab] Advance PC by fixed size amount 0 to 0x83a + [0x000027ae] Copy (view 1) + [0x000027af] Advance Line by 2 to 581 + [0x000027b1] Advance PC by fixed size amount 0 to 0x83a + [0x000027b4] Copy (view 2) + [0x000027b5] Set column to 1 + [0x000027b7] Set is_stmt to 0 + [0x000027b8] Advance Line by -3 to 578 + [0x000027ba] Advance PC by fixed size amount 0 to 0x83a + [0x000027bd] Copy (view 3) + [0x000027be] Advance Line by 0 to 578 + [0x000027c0] Advance PC by fixed size amount 6 to 0x840 + [0x000027c3] Copy (view 4) + [0x000027c4] Set column to 3 + [0x000027c6] Set is_stmt to 1 + [0x000027c7] Advance Line by -83 to 495 + [0x000027ca] Advance PC by fixed size amount 2 to 0x842 + [0x000027cd] Copy (view 5) + [0x000027ce] Set column to 10 + [0x000027d0] Set is_stmt to 0 + [0x000027d1] Advance Line by 0 to 495 + [0x000027d3] Advance PC by fixed size amount 0 to 0x842 + [0x000027d6] Copy (view 6) + [0x000027d7] Set column to 6 + [0x000027d9] Advance Line by 86 to 581 + [0x000027dc] Advance PC by fixed size amount 12 to 0x84e + [0x000027df] Copy (view 7) + [0x000027e0] Set column to 7 + [0x000027e2] Set is_stmt to 1 + [0x000027e3] Advance Line by 2 to 583 + [0x000027e5] Advance PC by fixed size amount 2 to 0x850 + [0x000027e8] Copy (view 8) + [0x000027e9] Set column to 13 + [0x000027eb] Set is_stmt to 0 + [0x000027ec] Advance Line by 0 to 583 + [0x000027ee] Advance PC by fixed size amount 0 to 0x850 + [0x000027f1] Copy (view 9) + [0x000027f2] Set column to 3 + [0x000027f4] Set is_stmt to 1 + [0x000027f5] Advance Line by 3 to 586 + [0x000027f7] Advance PC by fixed size amount 10 to 0x85a + [0x000027fa] Copy (view 10) + [0x000027fb] Set column to 6 + [0x000027fd] Set is_stmt to 0 + [0x000027fe] Advance Line by 0 to 586 + [0x00002800] Advance PC by fixed size amount 0 to 0x85a + [0x00002803] Copy (view 11) + [0x00002804] Set column to 7 + [0x00002806] Set is_stmt to 1 + [0x00002807] Advance Line by 2 to 588 + [0x00002809] Advance PC by fixed size amount 4 to 0x85e + [0x0000280c] Copy (view 12) + [0x0000280d] Advance Line by 0 to 588 + [0x0000280f] Advance PC by fixed size amount 0 to 0x85e + [0x00002812] Copy (view 13) + [0x00002813] Extended opcode 4: set Discriminator to 1 + [0x00002817] Advance Line by 0 to 588 + [0x00002819] Advance PC by fixed size amount 8 to 0x866 + [0x0000281c] Copy (view 14) + [0x0000281d] Extended opcode 4: set Discriminator to 2 + [0x00002821] Advance Line by 0 to 588 + [0x00002823] Advance PC by fixed size amount 28 to 0x882 + [0x00002826] Copy (view 15) + [0x00002827] Extended opcode 4: set Discriminator to 2 + [0x0000282b] Advance Line by 1 to 589 + [0x0000282d] Advance PC by fixed size amount 0 to 0x882 + [0x00002830] Copy (view 16) + [0x00002831] Set column to 3 + [0x00002833] Advance Line by 3 to 592 + [0x00002835] Advance PC by fixed size amount 4 to 0x886 + [0x00002838] Copy (view 17) + [0x00002839] Set column to 1 + [0x0000283b] Set is_stmt to 0 + [0x0000283c] Advance Line by 1 to 593 + [0x0000283e] Advance PC by fixed size amount 0 to 0x886 + [0x00002841] Copy (view 18) + [0x00002842] Advance PC by fixed size amount 8 to 0x88e + [0x00002845] Extended opcode 1: End of Sequence + + [0x00002848] Set column to 1 + [0x0000284a] Extended opcode 2: set Address to 0x88e + [0x00002855] Advance Line by 620 to 621 + [0x00002858] Copy + [0x00002859] Set column to 3 + [0x0000285b] Advance Line by 1 to 622 + [0x0000285d] Advance PC by fixed size amount 0 to 0x88e + [0x00002860] Copy (view 1) + [0x00002861] Advance Line by 2 to 624 + [0x00002863] Advance PC by fixed size amount 0 to 0x88e + [0x00002866] Copy (view 2) + [0x00002867] Set column to 1 + [0x00002869] Set is_stmt to 0 + [0x0000286a] Advance Line by -3 to 621 + [0x0000286c] Advance PC by fixed size amount 0 to 0x88e + [0x0000286f] Copy (view 3) + [0x00002870] Advance Line by 0 to 621 + [0x00002872] Advance PC by fixed size amount 8 to 0x896 + [0x00002875] Copy (view 4) + [0x00002876] Set column to 3 + [0x00002878] Set is_stmt to 1 + [0x00002879] Advance Line by -126 to 495 + [0x0000287c] Advance PC by fixed size amount 2 to 0x898 + [0x0000287f] Copy (view 5) + [0x00002880] Set column to 10 + [0x00002882] Set is_stmt to 0 + [0x00002883] Advance Line by 0 to 495 + [0x00002885] Advance PC by fixed size amount 0 to 0x898 + [0x00002888] Copy (view 6) + [0x00002889] Set column to 6 + [0x0000288b] Advance Line by 129 to 624 + [0x0000288e] Advance PC by fixed size amount 10 to 0x8a2 + [0x00002891] Copy (view 7) + [0x00002892] Set column to 7 + [0x00002894] Set is_stmt to 1 + [0x00002895] Advance Line by 2 to 626 + [0x00002897] Advance PC by fixed size amount 6 to 0x8a8 + [0x0000289a] Copy (view 8) + [0x0000289b] Set column to 13 + [0x0000289d] Set is_stmt to 0 + [0x0000289e] Advance Line by 0 to 626 + [0x000028a0] Advance PC by fixed size amount 0 to 0x8a8 + [0x000028a3] Copy (view 9) + [0x000028a4] Set column to 3 + [0x000028a6] Set is_stmt to 1 + [0x000028a7] Advance Line by 3 to 629 + [0x000028a9] Advance PC by fixed size amount 10 to 0x8b2 + [0x000028ac] Copy (view 10) + [0x000028ad] Set column to 6 + [0x000028af] Set is_stmt to 0 + [0x000028b0] Advance Line by 0 to 629 + [0x000028b2] Advance PC by fixed size amount 0 to 0x8b2 + [0x000028b5] Copy (view 11) + [0x000028b6] Set column to 7 + [0x000028b8] Set is_stmt to 1 + [0x000028b9] Advance Line by 2 to 631 + [0x000028bb] Advance PC by fixed size amount 4 to 0x8b6 + [0x000028be] Copy (view 12) + [0x000028bf] Advance Line by 0 to 631 + [0x000028c1] Advance PC by fixed size amount 0 to 0x8b6 + [0x000028c4] Copy (view 13) + [0x000028c5] Extended opcode 4: set Discriminator to 1 + [0x000028c9] Advance Line by 0 to 631 + [0x000028cb] Advance PC by fixed size amount 8 to 0x8be + [0x000028ce] Copy (view 14) + [0x000028cf] Extended opcode 4: set Discriminator to 2 + [0x000028d3] Advance Line by 0 to 631 + [0x000028d5] Advance PC by fixed size amount 28 to 0x8da + [0x000028d8] Copy (view 15) + [0x000028d9] Extended opcode 4: set Discriminator to 2 + [0x000028dd] Advance Line by 1 to 632 + [0x000028df] Advance PC by fixed size amount 0 to 0x8da + [0x000028e2] Copy (view 16) + [0x000028e3] Set column to 3 + [0x000028e5] Advance Line by 3 to 635 + [0x000028e7] Advance PC by fixed size amount 4 to 0x8de + [0x000028ea] Copy (view 17) + [0x000028eb] Set column to 1 + [0x000028ed] Set is_stmt to 0 + [0x000028ee] Advance Line by 1 to 636 + [0x000028f0] Advance PC by fixed size amount 0 to 0x8de + [0x000028f3] Copy (view 18) + [0x000028f4] Advance PC by fixed size amount 8 to 0x8e6 + [0x000028f7] Extended opcode 1: End of Sequence + + [0x000028fa] Set column to 1 + [0x000028fc] Extended opcode 2: set Address to 0x8e6 + [0x00002907] Advance Line by 659 to 660 + [0x0000290a] Copy + [0x0000290b] Set column to 3 + [0x0000290d] Advance Line by 1 to 661 + [0x0000290f] Advance PC by fixed size amount 0 to 0x8e6 + [0x00002912] Copy (view 1) + [0x00002913] Advance Line by 2 to 663 + [0x00002915] Advance PC by fixed size amount 0 to 0x8e6 + [0x00002918] Copy (view 2) + [0x00002919] Advance Line by 0 to 663 + [0x0000291b] Advance PC by fixed size amount 0 to 0x8e6 + [0x0000291e] Copy (view 3) + [0x0000291f] Set column to 1 + [0x00002921] Set is_stmt to 0 + [0x00002922] Advance Line by -3 to 660 + [0x00002924] Advance PC by fixed size amount 0 to 0x8e6 + [0x00002927] Copy (view 4) + [0x00002928] Set column to 3 + [0x0000292a] Advance Line by 3 to 663 + [0x0000292c] Advance PC by fixed size amount 6 to 0x8ec + [0x0000292f] Copy (view 5) + [0x00002930] Extended opcode 4: set Discriminator to 1 + [0x00002934] Set is_stmt to 1 + [0x00002935] Advance Line by 0 to 663 + [0x00002937] Advance PC by fixed size amount 4 to 0x8f0 + [0x0000293a] Copy (view 6) + [0x0000293b] Set column to 7 + [0x0000293d] Extended opcode 4: set Discriminator to 2 + [0x00002941] Set is_stmt to 0 + [0x00002942] Advance Line by 2 to 665 + [0x00002944] Advance PC by fixed size amount 28 to 0x90c + [0x00002947] Copy (view 7) + [0x00002948] Set column to 6 + [0x0000294a] Extended opcode 4: set Discriminator to 2 + [0x0000294e] Advance Line by 0 to 665 + [0x00002950] Advance PC by fixed size amount 4 to 0x910 + [0x00002953] Copy (view 8) + [0x00002954] Set column to 3 + [0x00002956] Extended opcode 4: set Discriminator to 2 + [0x0000295a] Set is_stmt to 1 + [0x0000295b] Advance Line by -2 to 663 + [0x0000295d] Advance PC by fixed size amount 4 to 0x914 + [0x00002960] Copy (view 9) + [0x00002961] Extended opcode 4: set Discriminator to 2 + [0x00002965] Advance Line by 2 to 665 + [0x00002967] Advance PC by fixed size amount 0 to 0x914 + [0x0000296a] Copy (view 10) + [0x0000296b] Set column to 7 + [0x0000296d] Extended opcode 4: set Discriminator to 2 + [0x00002971] Set is_stmt to 0 + [0x00002972] Advance Line by -4 to 661 + [0x00002974] Advance PC by fixed size amount 0 to 0x914 + [0x00002977] Copy (view 11) + [0x00002978] Set column to 6 + [0x0000297a] Extended opcode 4: set Discriminator to 2 + [0x0000297e] Advance Line by 4 to 665 + [0x00002980] Advance PC by fixed size amount 2 to 0x916 + [0x00002983] Copy (view 12) + [0x00002984] Set column to 7 + [0x00002986] Set is_stmt to 1 + [0x00002987] Advance Line by 2 to 667 + [0x00002989] Advance PC by fixed size amount 2 to 0x918 + [0x0000298c] Copy (view 13) + [0x0000298d] Set column to 13 + [0x0000298f] Set is_stmt to 0 + [0x00002990] Advance Line by 0 to 667 + [0x00002992] Advance PC by fixed size amount 0 to 0x918 + [0x00002995] Copy (view 14) + [0x00002996] Set column to 7 + [0x00002998] Set is_stmt to 1 + [0x00002999] Advance Line by 1 to 668 + [0x0000299b] Advance PC by fixed size amount 10 to 0x922 + [0x0000299e] Copy (view 15) + [0x0000299f] Set column to 10 + [0x000029a1] Set is_stmt to 0 + [0x000029a2] Advance Line by 0 to 668 + [0x000029a4] Advance PC by fixed size amount 0 to 0x922 + [0x000029a7] Copy (view 16) + [0x000029a8] Set column to 11 + [0x000029aa] Set is_stmt to 1 + [0x000029ab] Advance Line by 2 to 670 + [0x000029ad] Advance PC by fixed size amount 4 to 0x926 + [0x000029b0] Copy (view 17) + [0x000029b1] Set column to 3 + [0x000029b3] Advance Line by 4 to 674 + [0x000029b5] Advance PC by fixed size amount 6 to 0x92c + [0x000029b8] Copy (view 18) + [0x000029b9] Set column to 1 + [0x000029bb] Set is_stmt to 0 + [0x000029bc] Advance Line by 1 to 675 + [0x000029be] Advance PC by fixed size amount 0 to 0x92c + [0x000029c1] Copy (view 19) + [0x000029c2] Advance PC by fixed size amount 10 to 0x936 + [0x000029c5] Extended opcode 1: End of Sequence + + [0x000029c8] Set column to 1 + [0x000029ca] Extended opcode 2: set Address to 0x936 + [0x000029d5] Advance Line by 713 to 714 + [0x000029d8] Copy + [0x000029d9] Set column to 3 + [0x000029db] Advance Line by 1 to 715 + [0x000029dd] Advance PC by fixed size amount 0 to 0x936 + [0x000029e0] Copy (view 1) + [0x000029e1] Advance Line by 2 to 717 + [0x000029e3] Advance PC by fixed size amount 0 to 0x936 + [0x000029e6] Copy (view 2) + [0x000029e7] Set column to 1 + [0x000029e9] Set is_stmt to 0 + [0x000029ea] Advance Line by -3 to 714 + [0x000029ec] Advance PC by fixed size amount 0 to 0x936 + [0x000029ef] Copy (view 3) + [0x000029f0] Set column to 10 + [0x000029f2] Advance Line by 3 to 717 + [0x000029f4] Advance PC by fixed size amount 2 to 0x938 + [0x000029f7] Copy (view 4) + [0x000029f8] Set column to 3 + [0x000029fa] Set is_stmt to 1 + [0x000029fb] Advance Line by 1 to 718 + [0x000029fd] Advance PC by fixed size amount 4 to 0x93c + [0x00002a00] Copy (view 5) + [0x00002a01] Set column to 1 + [0x00002a03] Set is_stmt to 0 + [0x00002a04] Advance Line by -4 to 714 + [0x00002a06] Advance PC by fixed size amount 0 to 0x93c + [0x00002a09] Copy (view 6) + [0x00002a0a] Advance Line by 0 to 714 + [0x00002a0c] Advance PC by fixed size amount 6 to 0x942 + [0x00002a0f] Copy (view 7) + [0x00002a10] Set column to 3 + [0x00002a12] Set is_stmt to 1 + [0x00002a13] Advance Line by -219 to 495 + [0x00002a16] Advance PC by fixed size amount 2 to 0x944 + [0x00002a19] Copy (view 8) + [0x00002a1a] Set column to 1 + [0x00002a1c] Set is_stmt to 0 + [0x00002a1d] Advance Line by 219 to 714 + [0x00002a20] Advance PC by fixed size amount 0 to 0x944 + [0x00002a23] Copy (view 9) + [0x00002a24] Set column to 10 + [0x00002a26] Advance Line by -219 to 495 + [0x00002a29] Advance PC by fixed size amount 2 to 0x946 + [0x00002a2c] Copy (view 10) + [0x00002a2d] Set column to 6 + [0x00002a2f] Advance Line by 223 to 718 + [0x00002a32] Advance PC by fixed size amount 8 to 0x94e + [0x00002a35] Copy (view 11) + [0x00002a36] Set column to 7 + [0x00002a38] Set is_stmt to 1 + [0x00002a39] Advance Line by 2 to 720 + [0x00002a3b] Advance PC by fixed size amount 2 to 0x950 + [0x00002a3e] Copy (view 12) + [0x00002a3f] Set column to 22 + [0x00002a41] Set is_stmt to 0 + [0x00002a42] Advance Line by 0 to 720 + [0x00002a44] Advance PC by fixed size amount 0 to 0x950 + [0x00002a47] Copy (view 13) + [0x00002a48] Set column to 13 + [0x00002a4a] Advance Line by 2 to 722 + [0x00002a4c] Advance PC by fixed size amount 2 to 0x952 + [0x00002a4f] Copy (view 14) + [0x00002a50] Set column to 14 + [0x00002a52] Advance Line by -2 to 720 + [0x00002a54] Advance PC by fixed size amount 2 to 0x954 + [0x00002a57] Copy (view 15) + [0x00002a58] Set column to 7 + [0x00002a5a] Set is_stmt to 1 + [0x00002a5b] Advance Line by 1 to 721 + [0x00002a5d] Advance PC by fixed size amount 2 to 0x956 + [0x00002a60] Copy (view 16) + [0x00002a61] Set column to 21 + [0x00002a63] Set is_stmt to 0 + [0x00002a64] Advance Line by 0 to 721 + [0x00002a66] Advance PC by fixed size amount 0 to 0x956 + [0x00002a69] Copy (view 17) + [0x00002a6a] Set column to 7 + [0x00002a6c] Set is_stmt to 1 + [0x00002a6d] Advance Line by 1 to 722 + [0x00002a6f] Advance PC by fixed size amount 4 to 0x95a + [0x00002a72] Copy (view 18) + [0x00002a73] Set column to 13 + [0x00002a75] Set is_stmt to 0 + [0x00002a76] Advance Line by 0 to 722 + [0x00002a78] Advance PC by fixed size amount 0 to 0x95a + [0x00002a7b] Copy (view 19) + [0x00002a7c] Set column to 7 + [0x00002a7e] Set is_stmt to 1 + [0x00002a7f] Advance Line by 1 to 723 + [0x00002a81] Advance PC by fixed size amount 8 to 0x962 + [0x00002a84] Copy (view 20) + [0x00002a85] Set column to 10 + [0x00002a87] Set is_stmt to 0 + [0x00002a88] Advance Line by 0 to 723 + [0x00002a8a] Advance PC by fixed size amount 0 to 0x962 + [0x00002a8d] Copy (view 21) + [0x00002a8e] Set column to 11 + [0x00002a90] Set is_stmt to 1 + [0x00002a91] Advance Line by 2 to 725 + [0x00002a93] Advance PC by fixed size amount 4 to 0x966 + [0x00002a96] Copy (view 22) + [0x00002a97] Set column to 27 + [0x00002a99] Set is_stmt to 0 + [0x00002a9a] Advance Line by 0 to 725 + [0x00002a9c] Advance PC by fixed size amount 0 to 0x966 + [0x00002a9f] Copy (view 23) + [0x00002aa0] Set column to 25 + [0x00002aa2] Advance Line by 0 to 725 + [0x00002aa4] Advance PC by fixed size amount 2 to 0x968 + [0x00002aa7] Copy (view 24) + [0x00002aa8] Set column to 3 + [0x00002aaa] Set is_stmt to 1 + [0x00002aab] Advance Line by 4 to 729 + [0x00002aad] Advance PC by fixed size amount 2 to 0x96a + [0x00002ab0] Copy (view 25) + [0x00002ab1] Set column to 1 + [0x00002ab3] Set is_stmt to 0 + [0x00002ab4] Advance Line by 1 to 730 + [0x00002ab6] Advance PC by fixed size amount 0 to 0x96a + [0x00002ab9] Copy (view 26) + [0x00002aba] Set column to 7 + [0x00002abc] Advance Line by -15 to 715 + [0x00002abe] Advance PC by fixed size amount 10 to 0x974 + [0x00002ac1] Copy (view 27) + [0x00002ac2] Advance PC by fixed size amount 4 to 0x978 + [0x00002ac5] Extended opcode 1: End of Sequence + + [0x00002ac8] Set column to 1 + [0x00002aca] Extended opcode 2: set Address to 0x978 + [0x00002ad5] Advance Line by 749 to 750 + [0x00002ad8] Copy + [0x00002ad9] Set column to 3 + [0x00002adb] Advance Line by 1 to 751 + [0x00002add] Advance PC by fixed size amount 0 to 0x978 + [0x00002ae0] Copy (view 1) + [0x00002ae1] Advance Line by 2 to 753 + [0x00002ae3] Advance PC by fixed size amount 0 to 0x978 + [0x00002ae6] Copy (view 2) + [0x00002ae7] Set column to 6 + [0x00002ae9] Set is_stmt to 0 + [0x00002aea] Advance Line by 0 to 753 + [0x00002aec] Advance PC by fixed size amount 0 to 0x978 + [0x00002aef] Copy (view 3) + [0x00002af0] Set column to 1 + [0x00002af2] Advance Line by -3 to 750 + [0x00002af4] Advance PC by fixed size amount 2 to 0x97a + [0x00002af7] Copy (view 4) + [0x00002af8] Set column to 7 + [0x00002afa] Set is_stmt to 1 + [0x00002afb] Advance Line by 5 to 755 + [0x00002afd] Advance PC by fixed size amount 12 to 0x986 + [0x00002b00] Copy (view 5) + [0x00002b01] Set column to 13 + [0x00002b03] Set is_stmt to 0 + [0x00002b04] Advance Line by 0 to 755 + [0x00002b06] Advance PC by fixed size amount 0 to 0x986 + [0x00002b09] Copy (view 6) + [0x00002b0a] Set column to 7 + [0x00002b0c] Set is_stmt to 1 + [0x00002b0d] Advance Line by 1 to 756 + [0x00002b0f] Advance PC by fixed size amount 8 to 0x98e + [0x00002b12] Copy (view 7) + [0x00002b13] Set column to 10 + [0x00002b15] Set is_stmt to 0 + [0x00002b16] Advance Line by 0 to 756 + [0x00002b18] Advance PC by fixed size amount 0 to 0x98e + [0x00002b1b] Copy (view 8) + [0x00002b1c] Set column to 11 + [0x00002b1e] Set is_stmt to 1 + [0x00002b1f] Advance Line by 2 to 758 + [0x00002b21] Advance PC by fixed size amount 4 to 0x992 + [0x00002b24] Copy (view 9) + [0x00002b25] Set column to 25 + [0x00002b27] Set is_stmt to 0 + [0x00002b28] Advance Line by 0 to 758 + [0x00002b2a] Advance PC by fixed size amount 0 to 0x992 + [0x00002b2d] Copy (view 10) + [0x00002b2e] Set column to 3 + [0x00002b30] Set is_stmt to 1 + [0x00002b31] Advance Line by 4 to 762 + [0x00002b33] Advance PC by fixed size amount 2 to 0x994 + [0x00002b36] Copy (view 11) + [0x00002b37] Set column to 1 + [0x00002b39] Set is_stmt to 0 + [0x00002b3a] Advance Line by 1 to 763 + [0x00002b3c] Advance PC by fixed size amount 0 to 0x994 + [0x00002b3f] Copy (view 12) + [0x00002b40] Set column to 7 + [0x00002b42] Advance Line by -12 to 751 + [0x00002b44] Advance PC by fixed size amount 10 to 0x99e + [0x00002b47] Copy (view 13) + [0x00002b48] Set column to 3 + [0x00002b4a] Set is_stmt to 1 + [0x00002b4b] Advance Line by 11 to 762 + [0x00002b4d] Advance PC by fixed size amount 2 to 0x9a0 + [0x00002b50] Copy (view 14) + [0x00002b51] Set column to 1 + [0x00002b53] Set is_stmt to 0 + [0x00002b54] Advance Line by 1 to 763 + [0x00002b56] Advance PC by fixed size amount 0 to 0x9a0 + [0x00002b59] Copy (view 15) + [0x00002b5a] Advance PC by fixed size amount 2 to 0x9a2 + [0x00002b5d] Extended opcode 1: End of Sequence + + + Offset: 0x2b60 + Length: 362 + DWARF Version: 3 + Prologue Length: 245 + Minimum Instruction Length: 1 + Initial value of 'is_stmt': 1 + Line Base: -5 + Line Range: 14 + Opcode Base: 13 + + Opcodes: + Opcode 1 has 0 args + Opcode 2 has 1 arg + Opcode 3 has 1 arg + Opcode 4 has 1 arg + Opcode 5 has 1 arg + Opcode 6 has 0 args + Opcode 7 has 0 args + Opcode 8 has 0 args + Opcode 9 has 1 arg + Opcode 10 has 0 args + Opcode 11 has 0 args + Opcode 12 has 1 arg + + The Directory Table (offset 0x2b7b): + 1 sched + 2 /Users/Luppy/ox64/nuttx/include/arch + 3 /Users/Luppy/ox64/nuttx/include + 4 /Users/Luppy/ox64/nuttx/include/sys + 5 /Users/Luppy/ox64/nuttx/include/nuttx + + The File Name Table (offset 0x2c11): + Entry Dir Time Size Name + 1 1 0 0 clock_ticks2time.c + 2 2 0 0 types.h + 3 3 0 0 stdint.h + 4 4 0 0 types.h + 5 3 0 0 time.h + 6 5 0 0 clock.h + + Line Number Statements: + [0x00002c5f] Set column to 1 + [0x00002c61] Extended opcode 2: set Address to 0x9a2 + [0x00002c6c] Advance Line by 51 to 52 + [0x00002c6e] Copy + [0x00002c6f] Set column to 3 + [0x00002c71] Advance Line by 1 to 53 + [0x00002c73] Advance PC by fixed size amount 0 to 0x9a2 + [0x00002c76] Copy (view 1) + [0x00002c77] Advance Line by 2 to 55 + [0x00002c79] Advance PC by fixed size amount 0 to 0x9a2 + [0x00002c7c] Copy (view 2) + [0x00002c7d] Set column to 20 + [0x00002c7f] Set is_stmt to 0 + [0x00002c80] Advance Line by 0 to 55 + [0x00002c82] Advance PC by fixed size amount 0 to 0x9a2 + [0x00002c85] Copy (view 3) + [0x00002c86] Set column to 28 + [0x00002c88] Advance Line by 1 to 56 + [0x00002c8a] Advance PC by fixed size amount 8 to 0x9aa + [0x00002c8d] Copy (view 4) + [0x00002c8e] Set column to 20 + [0x00002c90] Advance Line by -1 to 55 + [0x00002c92] Advance PC by fixed size amount 8 to 0x9b2 + [0x00002c95] Copy (view 5) + [0x00002c96] Set column to 3 + [0x00002c98] Set is_stmt to 1 + [0x00002c99] Advance Line by 1 to 56 + [0x00002c9b] Advance PC by fixed size amount 2 to 0x9b4 + [0x00002c9e] Copy (view 6) + [0x00002c9f] Advance Line by 1 to 57 + [0x00002ca1] Advance PC by fixed size amount 0 to 0x9b4 + [0x00002ca4] Copy (view 7) + [0x00002ca5] Set column to 28 + [0x00002ca7] Set is_stmt to 0 + [0x00002ca8] Advance Line by -1 to 56 + [0x00002caa] Advance PC by fixed size amount 0 to 0x9b4 + [0x00002cad] Copy (view 8) + [0x00002cae] Set column to 32 + [0x00002cb0] Advance Line by 1 to 57 + [0x00002cb2] Advance PC by fixed size amount 2 to 0x9b6 + [0x00002cb5] Copy (view 9) + [0x00002cb6] Set column to 3 + [0x00002cb8] Set is_stmt to 1 + [0x00002cb9] Advance Line by 1 to 58 + [0x00002cbb] Advance PC by fixed size amount 14 to 0x9c4 + [0x00002cbe] Copy (view 10) + [0x00002cbf] Set column to 1 + [0x00002cc1] Set is_stmt to 0 + [0x00002cc2] Advance Line by 1 to 59 + [0x00002cc4] Advance PC by fixed size amount 0 to 0x9c4 + [0x00002cc7] Copy (view 11) + [0x00002cc8] Advance PC by fixed size amount 4 to 0x9c8 + [0x00002ccb] Extended opcode 1: End of Sequence + + + Offset: 0x2cce + Length: 424 + DWARF Version: 3 + Prologue Length: 247 + Minimum Instruction Length: 1 + Initial value of 'is_stmt': 1 + Line Base: -5 + Line Range: 14 + Opcode Base: 13 + + Opcodes: + Opcode 1 has 0 args + Opcode 2 has 1 arg + Opcode 3 has 1 arg + Opcode 4 has 1 arg + Opcode 5 has 1 arg + Opcode 6 has 0 args + Opcode 7 has 0 args + Opcode 8 has 0 args + Opcode 9 has 1 arg + Opcode 10 has 0 args + Opcode 11 has 0 args + Opcode 12 has 1 arg + + The Directory Table (offset 0x2ce9): + 1 sched + 2 /Users/Luppy/ox64/nuttx/include/arch + 3 /Users/Luppy/ox64/nuttx/include + 4 /Users/Luppy/ox64/nuttx/include/sys + 5 /Users/Luppy/ox64/nuttx/include/nuttx + + The File Name Table (offset 0x2d7f): + Entry Dir Time Size Name + 1 1 0 0 clock_timespec_add.c + 2 2 0 0 types.h + 3 3 0 0 stdint.h + 4 4 0 0 types.h + 5 3 0 0 time.h + 6 5 0 0 clock.h + + Line Number Statements: + [0x00002dcf] Set column to 1 + [0x00002dd1] Extended opcode 2: set Address to 0x9c8 + [0x00002ddc] Advance Line by 53 to 54 + [0x00002dde] Copy + [0x00002ddf] Set column to 3 + [0x00002de1] Advance Line by 1 to 55 + [0x00002de3] Advance PC by fixed size amount 0 to 0x9c8 + [0x00002de6] Copy (view 1) + [0x00002de7] Set column to 10 + [0x00002de9] Set is_stmt to 0 + [0x00002dea] Advance Line by 0 to 55 + [0x00002dec] Advance PC by fixed size amount 0 to 0x9c8 + [0x00002def] Copy (view 2) + [0x00002df0] Set column to 8 + [0x00002df2] Advance Line by 1 to 56 + [0x00002df4] Advance PC by fixed size amount 4 to 0x9cc + [0x00002df7] Copy (view 3) + [0x00002df8] Set column to 10 + [0x00002dfa] Advance Line by -1 to 55 + [0x00002dfc] Advance PC by fixed size amount 2 to 0x9ce + [0x00002dff] Copy (view 4) + [0x00002e00] Set column to 3 + [0x00002e02] Set is_stmt to 1 + [0x00002e03] Advance Line by 1 to 56 + [0x00002e05] Advance PC by fixed size amount 4 to 0x9d2 + [0x00002e08] Copy (view 5) + [0x00002e09] Set column to 8 + [0x00002e0b] Set is_stmt to 0 + [0x00002e0c] Advance Line by 0 to 56 + [0x00002e0e] Advance PC by fixed size amount 0 to 0x9d2 + [0x00002e11] Copy (view 6) + [0x00002e12] Set column to 3 + [0x00002e14] Set is_stmt to 1 + [0x00002e15] Advance Line by 2 to 58 + [0x00002e17] Advance PC by fixed size amount 4 to 0x9d6 + [0x00002e1a] Copy (view 7) + [0x00002e1b] Set column to 6 + [0x00002e1d] Set is_stmt to 0 + [0x00002e1e] Advance Line by 0 to 58 + [0x00002e20] Advance PC by fixed size amount 0 to 0x9d6 + [0x00002e23] Copy (view 8) + [0x00002e24] Set column to 7 + [0x00002e26] Set is_stmt to 1 + [0x00002e27] Advance Line by 2 to 60 + [0x00002e29] Advance PC by fixed size amount 12 to 0x9e2 + [0x00002e2c] Copy (view 9) + [0x00002e2d] Set column to 12 + [0x00002e2f] Set is_stmt to 0 + [0x00002e30] Advance Line by 0 to 60 + [0x00002e32] Advance PC by fixed size amount 0 to 0x9e2 + [0x00002e35] Copy (view 10) + [0x00002e36] Set column to 7 + [0x00002e38] Set is_stmt to 1 + [0x00002e39] Advance Line by 1 to 61 + [0x00002e3b] Advance PC by fixed size amount 10 to 0x9ec + [0x00002e3e] Copy (view 11) + [0x00002e3f] Set column to 10 + [0x00002e41] Set is_stmt to 0 + [0x00002e42] Advance Line by 0 to 61 + [0x00002e44] Advance PC by fixed size amount 0 to 0x9ec + [0x00002e47] Copy (view 12) + [0x00002e48] Set column to 3 + [0x00002e4a] Set is_stmt to 1 + [0x00002e4b] Advance Line by 3 to 64 + [0x00002e4d] Advance PC by fixed size amount 2 to 0x9ee + [0x00002e50] Copy (view 13) + [0x00002e51] Set column to 16 + [0x00002e53] Set is_stmt to 0 + [0x00002e54] Advance Line by 0 to 64 + [0x00002e56] Advance PC by fixed size amount 0 to 0x9ee + [0x00002e59] Copy (view 14) + [0x00002e5a] Set column to 3 + [0x00002e5c] Set is_stmt to 1 + [0x00002e5d] Advance Line by 1 to 65 + [0x00002e5f] Advance PC by fixed size amount 4 to 0x9f2 + [0x00002e62] Copy (view 15) + [0x00002e63] Set column to 16 + [0x00002e65] Set is_stmt to 0 + [0x00002e66] Advance Line by 0 to 65 + [0x00002e68] Advance PC by fixed size amount 0 to 0x9f2 + [0x00002e6b] Copy (view 16) + [0x00002e6c] Set column to 1 + [0x00002e6e] Advance Line by 1 to 66 + [0x00002e70] Advance PC by fixed size amount 2 to 0x9f4 + [0x00002e73] Copy (view 17) + [0x00002e74] Advance PC by fixed size amount 2 to 0x9f6 + [0x00002e77] Extended opcode 1: End of Sequence + + + Offset: 0x2e7a + Length: 741 + DWARF Version: 3 + Prologue Length: 366 + Minimum Instruction Length: 1 + Initial value of 'is_stmt': 1 + Line Base: -5 + Line Range: 14 + Opcode Base: 13 + + Opcodes: + Opcode 1 has 0 args + Opcode 2 has 1 arg + Opcode 3 has 1 arg + Opcode 4 has 1 arg + Opcode 5 has 1 arg + Opcode 6 has 0 args + Opcode 7 has 0 args + Opcode 8 has 0 args + Opcode 9 has 1 arg + Opcode 10 has 0 args + Opcode 11 has 0 args + Opcode 12 has 1 arg + + The Directory Table (offset 0x2e95): + 1 sched + 2 /Users/Luppy/ox64/nuttx/include/arch + 3 /Users/Luppy/ox64/nuttx/include + 4 /Users/Luppy/ox64/nuttx/include/sys + 5 /Users/Luppy/ox64/nuttx/include/nuttx + 6 /Users/Luppy/ox64/nuttx/include/nuttx/fs + + The File Name Table (offset 0x2f54): + Entry Dir Time Size Name + 1 1 0 0 task_setcancelstate.c + 2 2 0 0 irq.h + 3 2 0 0 types.h + 4 3 0 0 stdint.h + 5 4 0 0 types.h + 6 5 0 0 queue.h + 7 3 0 0 semaphore.h + 8 5 0 0 mutex.h + 9 6 0 0 fs.h + 10 5 0 0 tls.h + 11 3 0 0 pthread.h + 12 3 0 0 errno.h + 13 3 0 0 sched.h + + Line Number Statements: + [0x00002ff2] Set column to 1 + [0x00002ff4] Extended opcode 2: set Address to 0x9f6 + [0x00002fff] Advance Line by 63 to 64 + [0x00003001] Copy + [0x00003002] Set column to 7 + [0x00003004] Advance Line by 1 to 65 + [0x00003006] Advance PC by fixed size amount 0 to 0x9f6 + [0x00003009] Copy (view 1) + [0x0000300a] Set File Name to entry 2 in the File Name Table + [0x0000300c] Set column to 3 + [0x0000300e] Advance Line by 535 to 600 + [0x00003011] Advance PC by fixed size amount 0 to 0x9f6 + [0x00003014] Copy (view 2) + [0x00003015] Advance Line by 1 to 601 + [0x00003017] Advance PC by fixed size amount 0 to 0x9f6 + [0x0000301a] Copy (view 3) + [0x0000301b] Set File Name to entry 1 in the File Name Table + [0x0000301d] Set column to 1 + [0x0000301f] Set is_stmt to 0 + [0x00003020] Advance Line by -537 to 64 + [0x00003023] Advance PC by fixed size amount 0 to 0x9f6 + [0x00003026] Copy (view 4) + [0x00003027] Set column to 32 + [0x00003029] Advance Line by 1 to 65 + [0x0000302b] Advance PC by fixed size amount 2 to 0x9f8 + [0x0000302e] Copy (view 5) + [0x0000302f] Set column to 1 + [0x00003031] Advance Line by -1 to 64 + [0x00003033] Advance PC by fixed size amount 2 to 0x9fa + [0x00003036] Copy (view 6) + [0x00003037] Set File Name to entry 2 in the File Name Table + [0x00003039] Set column to 3 + [0x0000303b] Advance Line by 537 to 601 + [0x0000303e] Advance PC by fixed size amount 2 to 0x9fc + [0x00003041] Copy (view 7) + [0x00003042] Set is_stmt to 1 + [0x00003043] Advance Line by 5 to 606 + [0x00003045] Advance PC by fixed size amount 2 to 0x9fe + [0x00003048] Copy (view 8) + [0x00003049] Set File Name to entry 1 in the File Name Table + [0x0000304b] Set column to 32 + [0x0000304d] Set is_stmt to 0 + [0x0000304e] Advance Line by -541 to 65 + [0x00003051] Advance PC by fixed size amount 0 to 0x9fe + [0x00003054] Copy (view 9) + [0x00003055] Set column to 3 + [0x00003057] Set is_stmt to 1 + [0x00003058] Advance Line by 1 to 66 + [0x0000305a] Advance PC by fixed size amount 2 to 0xa00 + [0x0000305d] Copy (view 10) + [0x0000305e] Advance Line by 4 to 70 + [0x00003060] Advance PC by fixed size amount 0 to 0xa00 + [0x00003063] Copy (view 11) + [0x00003064] Set column to 6 + [0x00003066] Set is_stmt to 0 + [0x00003067] Advance Line by 0 to 70 + [0x00003069] Advance PC by fixed size amount 0 to 0xa00 + [0x0000306c] Copy (view 12) + [0x0000306d] Set column to 7 + [0x0000306f] Set is_stmt to 1 + [0x00003070] Advance Line by 2 to 72 + [0x00003072] Advance PC by fixed size amount 2 to 0xa02 + [0x00003075] Copy (view 13) + [0x00003076] Set column to 10 + [0x00003078] Set is_stmt to 0 + [0x00003079] Advance Line by 0 to 72 + [0x0000307b] Advance PC by fixed size amount 0 to 0xa02 + [0x0000307e] Copy (view 14) + [0x0000307f] Set column to 11 + [0x00003081] Set is_stmt to 1 + [0x00003082] Advance Line by 2 to 74 + [0x00003084] Advance PC by fixed size amount 8 to 0xa0a + [0x00003087] Copy (view 15) + [0x00003088] Set column to 21 + [0x0000308a] Set is_stmt to 0 + [0x0000308b] Advance Line by 0 to 74 + [0x0000308d] Advance PC by fixed size amount 0 to 0xa0a + [0x00003090] Copy (view 16) + [0x00003091] Set column to 3 + [0x00003093] Set is_stmt to 1 + [0x00003094] Advance Line by 10 to 84 + [0x00003096] Advance PC by fixed size amount 4 to 0xa0e + [0x00003099] Copy (view 17) + [0x0000309a] Set column to 6 + [0x0000309c] Set is_stmt to 0 + [0x0000309d] Advance Line by 0 to 84 + [0x0000309f] Advance PC by fixed size amount 0 to 0xa0e + [0x000030a2] Copy (view 18) + [0x000030a3] Set column to 7 + [0x000030a5] Set is_stmt to 1 + [0x000030a6] Advance Line by 4 to 88 + [0x000030a8] Advance PC by fixed size amount 2 to 0xa10 + [0x000030ab] Copy (view 19) + [0x000030ac] Set column to 23 + [0x000030ae] Set is_stmt to 0 + [0x000030af] Advance Line by 0 to 88 + [0x000030b1] Advance PC by fixed size amount 0 to 0xa10 + [0x000030b4] Copy (view 20) + [0x000030b5] Set column to 7 + [0x000030b7] Set is_stmt to 1 + [0x000030b8] Advance Line by 4 to 92 + [0x000030ba] Advance PC by fixed size amount 12 to 0xa1c + [0x000030bd] Copy (view 21) + [0x000030be] Set column to 10 + [0x000030c0] Set is_stmt to 0 + [0x000030c1] Advance Line by 0 to 92 + [0x000030c3] Advance PC by fixed size amount 0 to 0xa1c + [0x000030c6] Copy (view 22) + [0x000030c7] Set column to 15 + [0x000030c9] Set is_stmt to 1 + [0x000030ca] Advance Line by 12 to 104 + [0x000030cc] Advance PC by fixed size amount 6 to 0xa22 + [0x000030cf] Copy (view 23) + [0x000030d0] Set column to 31 + [0x000030d2] Set is_stmt to 0 + [0x000030d3] Advance Line by 0 to 104 + [0x000030d5] Advance PC by fixed size amount 0 to 0xa22 + [0x000030d8] Copy (view 24) + [0x000030d9] Set column to 15 + [0x000030db] Set is_stmt to 1 + [0x000030dc] Advance Line by 3 to 107 + [0x000030de] Advance PC by fixed size amount 6 to 0xa28 + [0x000030e1] Copy (view 25) + [0x000030e2] Set column to 11 + [0x000030e4] Advance Line by -29 to 78 + [0x000030e6] Advance PC by fixed size amount 10 to 0xa32 + [0x000030e9] Copy (view 26) + [0x000030ea] Set column to 21 + [0x000030ec] Set is_stmt to 0 + [0x000030ed] Advance Line by 0 to 78 + [0x000030ef] Advance PC by fixed size amount 0 to 0xa32 + [0x000030f2] Copy (view 27) + [0x000030f3] Set column to 8 + [0x000030f5] Set is_stmt to 1 + [0x000030f6] Advance Line by 36 to 114 + [0x000030f8] Advance PC by fixed size amount 6 to 0xa38 + [0x000030fb] Copy (view 28) + [0x000030fc] Set column to 11 + [0x000030fe] Set is_stmt to 0 + [0x000030ff] Advance Line by 0 to 114 + [0x00003101] Advance PC by fixed size amount 0 to 0xa38 + [0x00003104] Copy (view 29) + [0x00003105] Set column to 7 + [0x00003107] Set is_stmt to 1 + [0x00003108] Advance Line by 4 to 118 + [0x0000310a] Advance PC by fixed size amount 6 to 0xa3e + [0x0000310d] Copy (view 30) + [0x0000310e] Set column to 23 + [0x00003110] Set is_stmt to 0 + [0x00003111] Advance Line by 0 to 118 + [0x00003113] Advance PC by fixed size amount 0 to 0xa3e + [0x00003116] Copy (view 31) + [0x00003117] Set column to 7 + [0x00003119] Advance Line by -52 to 66 + [0x0000311b] Advance PC by fixed size amount 4 to 0xa42 + [0x0000311e] Copy (view 32) + [0x0000311f] Set column to 23 + [0x00003121] Advance Line by 52 to 118 + [0x00003123] Advance PC by fixed size amount 2 to 0xa44 + [0x00003126] Copy (view 33) + [0x00003127] Set column to 3 + [0x00003129] Set is_stmt to 1 + [0x0000312a] Advance Line by 8 to 126 + [0x0000312c] Advance PC by fixed size amount 8 to 0xa4c + [0x0000312f] Copy (view 34) + [0x00003130] Set column to 1 + [0x00003132] Set is_stmt to 0 + [0x00003133] Advance Line by 1 to 127 + [0x00003135] Advance PC by fixed size amount 0 to 0xa4c + [0x00003138] Copy (view 35) + [0x00003139] Set column to 7 + [0x0000313b] Set is_stmt to 1 + [0x0000313c] Advance Line by -5 to 122 + [0x0000313e] Advance PC by fixed size amount 6 to 0xa52 + [0x00003141] Copy (view 36) + [0x00003142] Advance Line by 0 to 122 + [0x00003144] Advance PC by fixed size amount 0 to 0xa52 + [0x00003147] Copy (view 37) + [0x00003148] Advance Line by 0 to 122 + [0x0000314a] Advance PC by fixed size amount 12 to 0xa5e + [0x0000314d] Copy (view 38) + [0x0000314e] Advance Line by 1 to 123 + [0x00003150] Advance PC by fixed size amount 0 to 0xa5e + [0x00003153] Copy (view 39) + [0x00003154] Set column to 11 + [0x00003156] Set is_stmt to 0 + [0x00003157] Advance Line by 0 to 123 + [0x00003159] Advance PC by fixed size amount 0 to 0xa5e + [0x0000315c] Copy (view 40) + [0x0000315d] Advance PC by fixed size amount 4 to 0xa62 + [0x00003160] Extended opcode 1: End of Sequence + + + Offset: 0x3163 + Length: 694 + DWARF Version: 3 + Prologue Length: 284 + Minimum Instruction Length: 1 + Initial value of 'is_stmt': 1 + Line Base: -5 + Line Range: 14 + Opcode Base: 13 + + Opcodes: + Opcode 1 has 0 args + Opcode 2 has 1 arg + Opcode 3 has 1 arg + Opcode 4 has 1 arg + Opcode 5 has 1 arg + Opcode 6 has 0 args + Opcode 7 has 0 args + Opcode 8 has 0 args + Opcode 9 has 1 arg + Opcode 10 has 0 args + Opcode 11 has 0 args + Opcode 12 has 1 arg + + The Directory Table (offset 0x317e): + 1 semaphore + 2 /Users/Luppy/ox64/nuttx/include/arch + 3 /Users/Luppy/ox64/nuttx/include + 4 /Users/Luppy/ox64/nuttx/include/nuttx + 5 /Users/Luppy/ox64/nuttx/include/sys + + The File Name Table (offset 0x3218): + Entry Dir Time Size Name + 1 1 0 0 sem_init.c + 2 2 0 0 types.h + 3 3 0 0 stdint.h + 4 4 0 0 queue.h + 5 3 0 0 semaphore.h + 6 3 0 0 errno.h + 7 3 0 0 assert.h + 8 5 0 0 types.h + 9 4 0 0 semaphore.h + + Line Number Statements: + [0x00003289] Set column to 1 + [0x0000328b] Extended opcode 2: set Address to 0xa62 + [0x00003296] Advance Line by 63 to 64 + [0x00003298] Copy + [0x00003299] Set column to 3 + [0x0000329b] Advance Line by 1 to 65 + [0x0000329d] Advance PC by fixed size amount 0 to 0xa62 + [0x000032a0] Copy (view 1) + [0x000032a1] Advance Line by 2 to 67 + [0x000032a3] Advance PC by fixed size amount 0 to 0xa62 + [0x000032a6] Copy (view 2) + [0x000032a7] Advance Line by 0 to 67 + [0x000032a9] Advance PC by fixed size amount 0 to 0xa62 + [0x000032ac] Copy (view 3) + [0x000032ad] Extended opcode 4: set Discriminator to 2 + [0x000032b1] Set is_stmt to 0 + [0x000032b2] Advance Line by 0 to 67 + [0x000032b4] Advance PC by fixed size amount 2 to 0xa64 + [0x000032b7] Copy (view 4) + [0x000032b8] Set is_stmt to 1 + [0x000032b9] Advance Line by 0 to 67 + [0x000032bb] Advance PC by fixed size amount 6 to 0xa6a + [0x000032be] Copy (view 5) + [0x000032bf] Set column to 1 + [0x000032c1] Set is_stmt to 0 + [0x000032c2] Advance Line by -3 to 64 + [0x000032c4] Advance PC by fixed size amount 0 to 0xa6a + [0x000032c7] Copy (view 6) + [0x000032c8] Set column to 3 + [0x000032ca] Advance Line by 3 to 67 + [0x000032cc] Advance PC by fixed size amount 2 to 0xa6c + [0x000032cf] Copy (view 7) + [0x000032d0] Set column to 1 + [0x000032d2] Advance Line by -3 to 64 + [0x000032d4] Advance PC by fixed size amount 20 to 0xa80 + [0x000032d7] Copy (view 8) + [0x000032d8] Set column to 3 + [0x000032da] Advance Line by 3 to 67 + [0x000032dc] Advance PC by fixed size amount 2 to 0xa82 + [0x000032df] Copy (view 9) + [0x000032e0] Extended opcode 4: set Discriminator to 4 + [0x000032e4] Set is_stmt to 1 + [0x000032e5] Advance Line by 0 to 67 + [0x000032e7] Advance PC by fixed size amount 8 to 0xa8a + [0x000032ea] Copy (view 10) + [0x000032eb] Extended opcode 4: set Discriminator to 4 + [0x000032ef] Advance Line by 4 to 71 + [0x000032f1] Advance PC by fixed size amount 0 to 0xa8a + [0x000032f4] Copy (view 11) + [0x000032f5] Set column to 19 + [0x000032f7] Extended opcode 4: set Discriminator to 4 + [0x000032fb] Set is_stmt to 0 + [0x000032fc] Advance Line by 0 to 71 + [0x000032fe] Advance PC by fixed size amount 0 to 0xa8a + [0x00003301] Copy (view 12) + [0x00003302] Set column to 17 + [0x00003304] Extended opcode 4: set Discriminator to 4 + [0x00003308] Advance Line by 0 to 71 + [0x0000330a] Advance PC by fixed size amount 8 to 0xa92 + [0x0000330d] Copy (view 13) + [0x0000330e] Set column to 3 + [0x00003310] Extended opcode 4: set Discriminator to 4 + [0x00003314] Set is_stmt to 1 + [0x00003315] Advance Line by 4 to 75 + [0x00003317] Advance PC by fixed size amount 4 to 0xa96 + [0x0000331a] Copy (view 14) + [0x0000331b] Extended opcode 4: set Discriminator to 4 + [0x0000331f] Advance Line by 0 to 75 + [0x00003321] Advance PC by fixed size amount 0 to 0xa96 + [0x00003324] Copy (view 15) + [0x00003325] Extended opcode 4: set Discriminator to 4 + [0x00003329] Advance Line by 0 to 75 + [0x0000332b] Advance PC by fixed size amount 4 to 0xa9a + [0x0000332e] Copy (view 16) + [0x0000332f] Extended opcode 4: set Discriminator to 4 + [0x00003333] Advance Line by 0 to 75 + [0x00003335] Advance PC by fixed size amount 4 to 0xa9e + [0x00003338] Copy (view 17) + [0x00003339] Extended opcode 4: set Discriminator to 4 + [0x0000333d] Advance Line by 4 to 79 + [0x0000333f] Advance PC by fixed size amount 0 to 0xa9e + [0x00003342] Copy (view 18) + [0x00003343] Set column to 14 + [0x00003345] Extended opcode 4: set Discriminator to 4 + [0x00003349] Set is_stmt to 0 + [0x0000334a] Advance Line by 0 to 79 + [0x0000334c] Advance PC by fixed size amount 0 to 0xa9e + [0x0000334f] Copy (view 19) + [0x00003350] Set column to 3 + [0x00003352] Extended opcode 4: set Discriminator to 4 + [0x00003356] Set is_stmt to 1 + [0x00003357] Advance Line by 9 to 88 + [0x00003359] Advance PC by fixed size amount 4 to 0xaa2 + [0x0000335c] Copy (view 20) + [0x0000335d] Set column to 1 + [0x0000335f] Extended opcode 4: set Discriminator to 4 + [0x00003363] Set is_stmt to 0 + [0x00003364] Advance Line by 1 to 89 + [0x00003366] Advance PC by fixed size amount 0 to 0xaa2 + [0x00003369] Copy (view 21) + [0x0000336a] Advance PC by fixed size amount 4 to 0xaa6 + [0x0000336d] Extended opcode 1: End of Sequence + + [0x00003370] Set column to 1 + [0x00003372] Extended opcode 2: set Address to 0xaa6 + [0x0000337d] Advance Line by 115 to 116 + [0x00003380] Copy + [0x00003381] Set column to 3 + [0x00003383] Advance Line by 1 to 117 + [0x00003385] Advance PC by fixed size amount 0 to 0xaa6 + [0x00003388] Copy (view 1) + [0x00003389] Advance Line by 6 to 123 + [0x0000338b] Advance PC by fixed size amount 0 to 0xaa6 + [0x0000338e] Copy (view 2) + [0x0000338f] Set column to 1 + [0x00003391] Set is_stmt to 0 + [0x00003392] Advance Line by -7 to 116 + [0x00003394] Advance PC by fixed size amount 0 to 0xaa6 + [0x00003397] Copy (view 3) + [0x00003398] Set column to 6 + [0x0000339a] Advance Line by 7 to 123 + [0x0000339c] Advance PC by fixed size amount 6 to 0xaac + [0x0000339f] Copy (view 4) + [0x000033a0] Set column to 19 + [0x000033a2] Extended opcode 4: set Discriminator to 1 + [0x000033a6] Advance Line by 0 to 123 + [0x000033a8] Advance PC by fixed size amount 2 to 0xaae + [0x000033ab] Copy (view 5) + [0x000033ac] Set column to 7 + [0x000033ae] Set is_stmt to 1 + [0x000033af] Advance Line by 2 to 125 + [0x000033b1] Advance PC by fixed size amount 6 to 0xab4 + [0x000033b4] Copy (view 6) + [0x000033b5] Advance Line by 0 to 125 + [0x000033b7] Advance PC by fixed size amount 0 to 0xab4 + [0x000033ba] Copy (view 7) + [0x000033bb] Advance Line by 0 to 125 + [0x000033bd] Advance PC by fixed size amount 12 to 0xac0 + [0x000033c0] Copy (view 8) + [0x000033c1] Advance Line by 1 to 126 + [0x000033c3] Advance PC by fixed size amount 0 to 0xac0 + [0x000033c6] Copy (view 9) + [0x000033c7] Advance Line by 6 to 132 + [0x000033c9] Advance PC by fixed size amount 0 to 0xac0 + [0x000033cc] Copy (view 10) + [0x000033cd] Advance Line by 1 to 133 + [0x000033cf] Advance PC by fixed size amount 0 to 0xac0 + [0x000033d2] Copy (view 11) + [0x000033d3] Set column to 11 + [0x000033d5] Set is_stmt to 0 + [0x000033d6] Advance Line by 0 to 133 + [0x000033d8] Advance PC by fixed size amount 0 to 0xac0 + [0x000033db] Copy (view 12) + [0x000033dc] Set column to 1 + [0x000033de] Advance Line by 4 to 137 + [0x000033e0] Advance PC by fixed size amount 2 to 0xac2 + [0x000033e3] Copy (view 13) + [0x000033e4] Set column to 3 + [0x000033e6] Set is_stmt to 1 + [0x000033e7] Advance Line by -8 to 129 + [0x000033e9] Advance PC by fixed size amount 10 to 0xacc + [0x000033ec] Copy (view 14) + [0x000033ed] Set column to 9 + [0x000033ef] Set is_stmt to 0 + [0x000033f0] Advance Line by 0 to 129 + [0x000033f2] Advance PC by fixed size amount 0 to 0xacc + [0x000033f5] Copy (view 15) + [0x000033f6] Set column to 3 + [0x000033f8] Set is_stmt to 1 + [0x000033f9] Advance Line by 1 to 130 + [0x000033fb] Advance PC by fixed size amount 10 to 0xad6 + [0x000033fe] Copy (view 16) + [0x000033ff] Set column to 6 + [0x00003401] Set is_stmt to 0 + [0x00003402] Advance Line by 0 to 130 + [0x00003404] Advance PC by fixed size amount 0 to 0xad6 + [0x00003407] Copy (view 17) + [0x00003408] Set column to 7 + [0x0000340a] Set is_stmt to 1 + [0x0000340b] Advance Line by 2 to 132 + [0x0000340d] Advance PC by fixed size amount 4 to 0xada + [0x00003410] Copy (view 18) + [0x00003411] Advance Line by 0 to 132 + [0x00003413] Advance PC by fixed size amount 0 to 0xada + [0x00003416] Copy (view 19) + [0x00003417] Advance PC by fixed size amount 16 to 0xaea + [0x0000341a] Extended opcode 1: End of Sequence + + + Offset: 0x341d + Length: 611 + DWARF Version: 3 + Prologue Length: 291 + Minimum Instruction Length: 1 + Initial value of 'is_stmt': 1 + Line Base: -5 + Line Range: 14 + Opcode Base: 13 + + Opcodes: + Opcode 1 has 0 args + Opcode 2 has 1 arg + Opcode 3 has 1 arg + Opcode 4 has 1 arg + Opcode 5 has 1 arg + Opcode 6 has 0 args + Opcode 7 has 0 args + Opcode 8 has 0 args + Opcode 9 has 1 arg + Opcode 10 has 0 args + Opcode 11 has 0 args + Opcode 12 has 1 arg + + The Directory Table (offset 0x3438): + 1 semaphore + 2 /Users/Luppy/ox64/nuttx/include/arch + 3 /Users/Luppy/ox64/nuttx/include + 4 /Users/Luppy/ox64/nuttx/include/nuttx + 5 /Users/Luppy/ox64/nuttx/include/sys + + The File Name Table (offset 0x34d2): + Entry Dir Time Size Name + 1 1 0 0 sem_setprotocol.c + 2 2 0 0 types.h + 3 3 0 0 stdint.h + 4 4 0 0 queue.h + 5 3 0 0 semaphore.h + 6 3 0 0 errno.h + 7 3 0 0 assert.h + 8 5 0 0 types.h + 9 4 0 0 semaphore.h + + Line Number Statements: + [0x0000354a] Set column to 1 + [0x0000354c] Extended opcode 2: set Address to 0xaea + [0x00003557] Advance Line by 76 to 77 + [0x0000355a] Copy + [0x0000355b] Set column to 3 + [0x0000355d] Advance Line by 1 to 78 + [0x0000355f] Advance PC by fixed size amount 0 to 0xaea + [0x00003562] Copy (view 1) + [0x00003563] Advance Line by 0 to 78 + [0x00003565] Advance PC by fixed size amount 0 to 0xaea + [0x00003568] Copy (view 2) + [0x00003569] Advance Line by 0 to 78 + [0x0000356b] Advance PC by fixed size amount 2 to 0xaec + [0x0000356e] Copy (view 3) + [0x0000356f] Set column to 1 + [0x00003571] Set is_stmt to 0 + [0x00003572] Advance Line by -1 to 77 + [0x00003574] Advance PC by fixed size amount 0 to 0xaec + [0x00003577] Copy (view 4) + [0x00003578] Set column to 3 + [0x0000357a] Advance Line by 1 to 78 + [0x0000357c] Advance PC by fixed size amount 2 to 0xaee + [0x0000357f] Copy (view 5) + [0x00003580] Set column to 1 + [0x00003582] Advance Line by -1 to 77 + [0x00003584] Advance PC by fixed size amount 20 to 0xb02 + [0x00003587] Copy (view 6) + [0x00003588] Set column to 3 + [0x0000358a] Advance Line by 1 to 78 + [0x0000358c] Advance PC by fixed size amount 2 to 0xb04 + [0x0000358f] Copy (view 7) + [0x00003590] Extended opcode 4: set Discriminator to 2 + [0x00003594] Set is_stmt to 1 + [0x00003595] Advance Line by 0 to 78 + [0x00003597] Advance PC by fixed size amount 10 to 0xb0e + [0x0000359a] Copy (view 8) + [0x0000359b] Extended opcode 4: set Discriminator to 2 + [0x0000359f] Advance Line by 2 to 80 + [0x000035a1] Advance PC by fixed size amount 0 to 0xb0e + [0x000035a4] Copy (view 9) + [0x000035a5] Set column to 20 + [0x000035a7] Extended opcode 4: set Discriminator to 2 + [0x000035ab] Set is_stmt to 0 + [0x000035ac] Advance Line by 0 to 80 + [0x000035ae] Advance PC by fixed size amount 0 to 0xb0e + [0x000035b1] Copy (view 10) + [0x000035b2] Set column to 3 + [0x000035b4] Extended opcode 4: set Discriminator to 2 + [0x000035b8] Advance Line by 0 to 80 + [0x000035ba] Advance PC by fixed size amount 4 to 0xb12 + [0x000035bd] Copy (view 11) + [0x000035be] Advance Line by 0 to 80 + [0x000035c0] Advance PC by fixed size amount 2 to 0xb14 + [0x000035c3] Copy (view 12) + [0x000035c4] Set column to 16 + [0x000035c6] Advance Line by 7 to 87 + [0x000035c8] Advance PC by fixed size amount 6 to 0xb1a + [0x000035cb] Copy (view 13) + [0x000035cc] Set column to 3 + [0x000035ce] Advance Line by -7 to 80 + [0x000035d0] Advance PC by fixed size amount 4 to 0xb1e + [0x000035d3] Copy (view 14) + [0x000035d4] Set column to 9 + [0x000035d6] Set is_stmt to 1 + [0x000035d7] Advance Line by 3 to 83 + [0x000035d9] Advance PC by fixed size amount 8 to 0xb26 + [0x000035dc] Copy (view 15) + [0x000035dd] Set column to 3 + [0x000035df] Advance Line by 10 to 93 + [0x000035e1] Advance PC by fixed size amount 0 to 0xb26 + [0x000035e4] Copy (view 16) + [0x000035e5] Set column to 14 + [0x000035e7] Set is_stmt to 0 + [0x000035e8] Advance Line by 0 to 93 + [0x000035ea] Advance PC by fixed size amount 0 to 0xb26 + [0x000035ed] Copy (view 17) + [0x000035ee] Set column to 3 + [0x000035f0] Set is_stmt to 1 + [0x000035f1] Advance Line by 1 to 94 + [0x000035f3] Advance PC by fixed size amount 4 to 0xb2a + [0x000035f6] Copy (view 18) + [0x000035f7] Set column to 1 + [0x000035f9] Set is_stmt to 0 + [0x000035fa] Advance Line by 1 to 95 + [0x000035fc] Advance PC by fixed size amount 0 to 0xb2a + [0x000035ff] Copy (view 19) + [0x00003600] Advance PC by fixed size amount 2 to 0xb2c + [0x00003603] Extended opcode 1: End of Sequence + + [0x00003606] Set column to 1 + [0x00003608] Extended opcode 2: set Address to 0xb2c + [0x00003613] Advance Line by 136 to 137 + [0x00003616] Copy + [0x00003617] Set column to 3 + [0x00003619] Advance Line by 1 to 138 + [0x0000361b] Advance PC by fixed size amount 0 to 0xb2c + [0x0000361e] Copy (view 1) + [0x0000361f] Advance Line by 2 to 140 + [0x00003621] Advance PC by fixed size amount 0 to 0xb2c + [0x00003624] Copy (view 2) + [0x00003625] Set column to 1 + [0x00003627] Set is_stmt to 0 + [0x00003628] Advance Line by -3 to 137 + [0x0000362a] Advance PC by fixed size amount 0 to 0xb2c + [0x0000362d] Copy (view 3) + [0x0000362e] Set column to 9 + [0x00003630] Advance Line by 3 to 140 + [0x00003632] Advance PC by fixed size amount 6 to 0xb32 + [0x00003635] Copy (view 4) + [0x00003636] Set column to 3 + [0x00003638] Set is_stmt to 1 + [0x00003639] Advance Line by 1 to 141 + [0x0000363b] Advance PC by fixed size amount 10 to 0xb3c + [0x0000363e] Copy (view 5) + [0x0000363f] Set column to 6 + [0x00003641] Set is_stmt to 0 + [0x00003642] Advance Line by 0 to 141 + [0x00003644] Advance PC by fixed size amount 0 to 0xb3c + [0x00003647] Copy (view 6) + [0x00003648] Set column to 7 + [0x0000364a] Set is_stmt to 1 + [0x0000364b] Advance Line by 2 to 143 + [0x0000364d] Advance PC by fixed size amount 4 to 0xb40 + [0x00003650] Copy (view 7) + [0x00003651] Advance Line by 0 to 143 + [0x00003653] Advance PC by fixed size amount 0 to 0xb40 + [0x00003656] Copy (view 8) + [0x00003657] Advance Line by 0 to 143 + [0x00003659] Advance PC by fixed size amount 14 to 0xb4e + [0x0000365c] Copy (view 9) + [0x0000365d] Advance Line by 1 to 144 + [0x0000365f] Advance PC by fixed size amount 0 to 0xb4e + [0x00003662] Copy (view 10) + [0x00003663] Set column to 11 + [0x00003665] Set is_stmt to 0 + [0x00003666] Advance Line by 0 to 144 + [0x00003668] Advance PC by fixed size amount 0 to 0xb4e + [0x0000366b] Copy (view 11) + [0x0000366c] Set column to 3 + [0x0000366e] Set is_stmt to 1 + [0x0000366f] Advance Line by 3 to 147 + [0x00003671] Advance PC by fixed size amount 2 to 0xb50 + [0x00003674] Copy (view 12) + [0x00003675] Set column to 1 + [0x00003677] Set is_stmt to 0 + [0x00003678] Advance Line by 1 to 148 + [0x0000367a] Advance PC by fixed size amount 0 to 0xb50 + [0x0000367d] Copy (view 13) + [0x0000367e] Advance PC by fixed size amount 10 to 0xb5a + [0x00003681] Extended opcode 1: End of Sequence + + + Offset: 0x3684 + Length: 535 + DWARF Version: 3 + Prologue Length: 276 + Minimum Instruction Length: 1 + Initial value of 'is_stmt': 1 + Line Base: -5 + Line Range: 14 + Opcode Base: 13 + + Opcodes: + Opcode 1 has 0 args + Opcode 2 has 1 arg + Opcode 3 has 1 arg + Opcode 4 has 1 arg + Opcode 5 has 1 arg + Opcode 6 has 0 args + Opcode 7 has 0 args + Opcode 8 has 0 args + Opcode 9 has 1 arg + Opcode 10 has 0 args + Opcode 11 has 0 args + Opcode 12 has 1 arg + + The Directory Table (offset 0x369f): + 1 semaphore + 2 /Users/Luppy/ox64/nuttx/include/arch + 3 /Users/Luppy/ox64/nuttx/include + 4 /Users/Luppy/ox64/nuttx/include/nuttx + 5 /Users/Luppy/ox64/nuttx/include/sys + + The File Name Table (offset 0x3739): + Entry Dir Time Size Name + 1 1 0 0 sem_getvalue.c + 2 2 0 0 types.h + 3 3 0 0 stdint.h + 4 4 0 0 queue.h + 5 3 0 0 semaphore.h + 6 4 0 0 semaphore.h + 7 5 0 0 types.h + 8 3 0 0 errno.h + + Line Number Statements: + [0x000037a2] Set column to 1 + [0x000037a4] Extended opcode 2: set Address to 0xb5a + [0x000037af] Advance Line by 61 to 62 + [0x000037b1] Copy + [0x000037b2] Set column to 3 + [0x000037b4] Advance Line by 1 to 63 + [0x000037b6] Advance PC by fixed size amount 0 to 0xb5a + [0x000037b9] Copy (view 1) + [0x000037ba] Set column to 1 + [0x000037bc] Set is_stmt to 0 + [0x000037bd] Advance Line by -1 to 62 + [0x000037bf] Advance PC by fixed size amount 0 to 0xb5a + [0x000037c2] Copy (view 2) + [0x000037c3] Set column to 10 + [0x000037c5] Advance Line by 7 to 69 + [0x000037c7] Advance PC by fixed size amount 2 to 0xb5c + [0x000037ca] Copy (view 3) + [0x000037cb] Set column to 6 + [0x000037cd] Advance Line by -6 to 63 + [0x000037cf] Advance PC by fixed size amount 2 to 0xb5e + [0x000037d2] Copy (view 4) + [0x000037d3] Set column to 19 + [0x000037d5] Extended opcode 4: set Discriminator to 1 + [0x000037d9] Advance Line by 0 to 63 + [0x000037db] Advance PC by fixed size amount 2 to 0xb60 + [0x000037de] Copy (view 5) + [0x000037df] Set column to 7 + [0x000037e1] Set is_stmt to 1 + [0x000037e2] Advance Line by 2 to 65 + [0x000037e4] Advance PC by fixed size amount 2 to 0xb62 + [0x000037e7] Copy (view 6) + [0x000037e8] Set column to 18 + [0x000037ea] Set is_stmt to 0 + [0x000037eb] Advance Line by 0 to 65 + [0x000037ed] Advance PC by fixed size amount 0 to 0xb62 + [0x000037f0] Copy (view 7) + [0x000037f1] Set column to 14 + [0x000037f3] Advance Line by 1 to 66 + [0x000037f5] Advance PC by fixed size amount 4 to 0xb66 + [0x000037f8] Copy (view 8) + [0x000037f9] Set column to 18 + [0x000037fb] Advance Line by -1 to 65 + [0x000037fd] Advance PC by fixed size amount 2 to 0xb68 + [0x00003800] Copy (view 9) + [0x00003801] Set column to 7 + [0x00003803] Set is_stmt to 1 + [0x00003804] Advance Line by 1 to 66 + [0x00003806] Advance PC by fixed size amount 10 to 0xb72 + [0x00003809] Copy (view 10) + [0x0000380a] Set column to 14 + [0x0000380c] Set is_stmt to 0 + [0x0000380d] Advance Line by 0 to 66 + [0x0000380f] Advance PC by fixed size amount 0 to 0xb72 + [0x00003812] Copy (view 11) + [0x00003813] Set column to 1 + [0x00003815] Advance Line by 4 to 70 + [0x00003817] Advance PC by fixed size amount 2 to 0xb74 + [0x0000381a] Copy (view 12) + [0x0000381b] Advance PC by fixed size amount 2 to 0xb76 + [0x0000381e] Extended opcode 1: End of Sequence + + [0x00003821] Set column to 1 + [0x00003823] Extended opcode 2: set Address to 0xb76 + [0x0000382e] Advance Line by 96 to 97 + [0x00003831] Copy + [0x00003832] Set column to 3 + [0x00003834] Advance Line by 1 to 98 + [0x00003836] Advance PC by fixed size amount 0 to 0xb76 + [0x00003839] Copy (view 1) + [0x0000383a] Advance Line by 2 to 100 + [0x0000383c] Advance PC by fixed size amount 0 to 0xb76 + [0x0000383f] Copy (view 2) + [0x00003840] Set column to 1 + [0x00003842] Set is_stmt to 0 + [0x00003843] Advance Line by -3 to 97 + [0x00003845] Advance PC by fixed size amount 0 to 0xb76 + [0x00003848] Copy (view 3) + [0x00003849] Set column to 9 + [0x0000384b] Advance Line by 3 to 100 + [0x0000384d] Advance PC by fixed size amount 6 to 0xb7c + [0x00003850] Copy (view 4) + [0x00003851] Set column to 3 + [0x00003853] Set is_stmt to 1 + [0x00003854] Advance Line by 1 to 101 + [0x00003856] Advance PC by fixed size amount 10 to 0xb86 + [0x00003859] Copy (view 5) + [0x0000385a] Set column to 6 + [0x0000385c] Set is_stmt to 0 + [0x0000385d] Advance Line by 0 to 101 + [0x0000385f] Advance PC by fixed size amount 0 to 0xb86 + [0x00003862] Copy (view 6) + [0x00003863] Set column to 7 + [0x00003865] Set is_stmt to 1 + [0x00003866] Advance Line by 2 to 103 + [0x00003868] Advance PC by fixed size amount 4 to 0xb8a + [0x0000386b] Copy (view 7) + [0x0000386c] Advance Line by 0 to 103 + [0x0000386e] Advance PC by fixed size amount 0 to 0xb8a + [0x00003871] Copy (view 8) + [0x00003872] Advance Line by 0 to 103 + [0x00003874] Advance PC by fixed size amount 14 to 0xb98 + [0x00003877] Copy (view 9) + [0x00003878] Advance Line by 1 to 104 + [0x0000387a] Advance PC by fixed size amount 0 to 0xb98 + [0x0000387d] Copy (view 10) + [0x0000387e] Set column to 11 + [0x00003880] Set is_stmt to 0 + [0x00003881] Advance Line by 0 to 104 + [0x00003883] Advance PC by fixed size amount 0 to 0xb98 + [0x00003886] Copy (view 11) + [0x00003887] Set column to 3 + [0x00003889] Set is_stmt to 1 + [0x0000388a] Advance Line by 3 to 107 + [0x0000388c] Advance PC by fixed size amount 2 to 0xb9a + [0x0000388f] Copy (view 12) + [0x00003890] Set column to 1 + [0x00003892] Set is_stmt to 0 + [0x00003893] Advance Line by 1 to 108 + [0x00003895] Advance PC by fixed size amount 0 to 0xb9a + [0x00003898] Copy (view 13) + [0x00003899] Advance PC by fixed size amount 10 to 0xba4 + [0x0000389c] Extended opcode 1: End of Sequence + + + Offset: 0x389f + Length: 762 + DWARF Version: 3 + Prologue Length: 421 + Minimum Instruction Length: 1 + Initial value of 'is_stmt': 1 + Line Base: -5 + Line Range: 14 + Opcode Base: 13 + + Opcodes: + Opcode 1 has 0 args + Opcode 2 has 1 arg + Opcode 3 has 1 arg + Opcode 4 has 1 arg + Opcode 5 has 1 arg + Opcode 6 has 0 args + Opcode 7 has 0 args + Opcode 8 has 0 args + Opcode 9 has 1 arg + Opcode 10 has 0 args + Opcode 11 has 0 args + Opcode 12 has 1 arg + + The Directory Table (offset 0x38ba): + 1 stdio + 2 /Users/Luppy/ox64/nuttx/include/arch + 3 /Users/Luppy/ox64/nuttx/include + 4 /Users/Luppy/ox64/nuttx/include/sys + 5 /Users/Luppy/ox64/nuttx/include/nuttx + 6 /Users/Luppy/ox64/nuttx/include/nuttx/fs + 7 /Users/Luppy/ox64/nuttx/include/nuttx/lib + 8 /Users/Luppy/ox64/nuttx/libs/libc + + The File Name Table (offset 0x39c5): + Entry Dir Time Size Name + 1 1 0 0 lib_fflush.c + 2 2 0 0 types.h + 3 3 0 0 stdint.h + 4 4 0 0 types.h + 5 5 0 0 queue.h + 6 3 0 0 semaphore.h + 7 5 0 0 mutex.h + 8 6 0 0 fs.h + 9 3 0 0 stdio.h + 10 7 0 0 lib.h + 11 8 0 0 libc.h + 12 3 0 0 errno.h + + Line Number Statements: + [0x00003a4e] Set column to 1 + [0x00003a50] Extended opcode 2: set Address to 0xba4 + [0x00003a5b] Advance Line by 55 to 56 + [0x00003a5d] Copy + [0x00003a5e] Set column to 3 + [0x00003a60] Advance Line by 1 to 57 + [0x00003a62] Advance PC by fixed size amount 0 to 0xba4 + [0x00003a65] Copy (view 1) + [0x00003a66] Advance Line by 4 to 61 + [0x00003a68] Advance PC by fixed size amount 0 to 0xba4 + [0x00003a6b] Copy (view 2) + [0x00003a6c] Set column to 1 + [0x00003a6e] Set is_stmt to 0 + [0x00003a6f] Advance Line by -5 to 56 + [0x00003a71] Advance PC by fixed size amount 0 to 0xba4 + [0x00003a74] Copy (view 3) + [0x00003a75] Set column to 6 + [0x00003a77] Advance Line by 5 to 61 + [0x00003a79] Advance PC by fixed size amount 6 to 0xbaa + [0x00003a7c] Copy (view 4) + [0x00003a7d] Set column to 7 + [0x00003a7f] Set is_stmt to 1 + [0x00003a80] Advance Line by 4 to 65 + [0x00003a82] Advance PC by fixed size amount 2 to 0xbac + [0x00003a85] Copy (view 5) + [0x00003a86] Set column to 13 + [0x00003a88] Set is_stmt to 0 + [0x00003a89] Advance Line by 0 to 65 + [0x00003a8b] Advance PC by fixed size amount 0 to 0xbac + [0x00003a8e] Copy (view 6) + [0x00003a8f] Set column to 3 + [0x00003a91] Set is_stmt to 1 + [0x00003a92] Advance Line by 9 to 74 + [0x00003a94] Advance PC by fixed size amount 18 to 0xbbe + [0x00003a97] Copy (view 7) + [0x00003a98] Set column to 10 + [0x00003a9a] Set is_stmt to 0 + [0x00003a9b] Advance Line by 13 to 87 + [0x00003a9d] Advance PC by fixed size amount 0 to 0xbbe + [0x00003aa0] Copy (view 8) + [0x00003aa1] Set column to 6 + [0x00003aa3] Advance Line by -13 to 74 + [0x00003aa5] Advance PC by fixed size amount 2 to 0xbc0 + [0x00003aa8] Copy (view 9) + [0x00003aa9] Set column to 7 + [0x00003aab] Set is_stmt to 1 + [0x00003aac] Advance Line by 6 to 80 + [0x00003aae] Advance PC by fixed size amount 4 to 0xbc4 + [0x00003ab1] Copy (view 10) + [0x00003ab2] Advance Line by 0 to 80 + [0x00003ab4] Advance PC by fixed size amount 0 to 0xbc4 + [0x00003ab7] Copy (view 11) + [0x00003ab8] Advance Line by 0 to 80 + [0x00003aba] Advance PC by fixed size amount 14 to 0xbd2 + [0x00003abd] Copy (view 12) + [0x00003abe] Advance Line by 4 to 84 + [0x00003ac0] Advance PC by fixed size amount 0 to 0xbd2 + [0x00003ac3] Copy (view 13) + [0x00003ac4] Set column to 14 + [0x00003ac6] Set is_stmt to 0 + [0x00003ac7] Advance Line by 0 to 84 + [0x00003ac9] Advance PC by fixed size amount 0 to 0xbd2 + [0x00003acc] Copy (view 14) + [0x00003acd] Set column to 1 + [0x00003acf] Advance Line by 4 to 88 + [0x00003ad1] Advance PC by fixed size amount 2 to 0xbd4 + [0x00003ad4] Copy (view 15) + [0x00003ad5] Set column to 7 + [0x00003ad7] Set is_stmt to 1 + [0x00003ad8] Advance Line by -19 to 69 + [0x00003ada] Advance PC by fixed size amount 8 to 0xbdc + [0x00003add] Copy (view 16) + [0x00003ade] Set column to 13 + [0x00003ae0] Set is_stmt to 0 + [0x00003ae1] Advance Line by 0 to 69 + [0x00003ae3] Advance PC by fixed size amount 0 to 0xbdc + [0x00003ae6] Copy (view 17) + [0x00003ae7] Set column to 11 + [0x00003ae9] Advance Line by 0 to 69 + [0x00003aeb] Advance PC by fixed size amount 8 to 0xbe4 + [0x00003aee] Copy (view 18) + [0x00003aef] Advance PC by fixed size amount 6 to 0xbea + [0x00003af2] Extended opcode 1: End of Sequence + + [0x00003af5] Set column to 1 + [0x00003af7] Extended opcode 2: set Address to 0xbea + [0x00003b02] Advance Line by 90 to 91 + [0x00003b05] Copy + [0x00003b06] Set column to 3 + [0x00003b08] Advance Line by 1 to 92 + [0x00003b0a] Advance PC by fixed size amount 0 to 0xbea + [0x00003b0d] Copy (view 1) + [0x00003b0e] Advance Line by 4 to 96 + [0x00003b10] Advance PC by fixed size amount 0 to 0xbea + [0x00003b13] Copy (view 2) + [0x00003b14] Set column to 1 + [0x00003b16] Set is_stmt to 0 + [0x00003b17] Advance Line by -5 to 91 + [0x00003b19] Advance PC by fixed size amount 0 to 0xbea + [0x00003b1c] Copy (view 3) + [0x00003b1d] Set column to 6 + [0x00003b1f] Advance Line by 5 to 96 + [0x00003b21] Advance PC by fixed size amount 6 to 0xbf0 + [0x00003b24] Copy (view 4) + [0x00003b25] Set column to 7 + [0x00003b27] Set is_stmt to 1 + [0x00003b28] Advance Line by 4 to 100 + [0x00003b2a] Advance PC by fixed size amount 2 to 0xbf2 + [0x00003b2d] Copy (view 5) + [0x00003b2e] Set column to 13 + [0x00003b30] Set is_stmt to 0 + [0x00003b31] Advance Line by 0 to 100 + [0x00003b33] Advance PC by fixed size amount 0 to 0xbf2 + [0x00003b36] Copy (view 6) + [0x00003b37] Set column to 3 + [0x00003b39] Set is_stmt to 1 + [0x00003b3a] Advance Line by 9 to 109 + [0x00003b3c] Advance PC by fixed size amount 18 to 0xc04 + [0x00003b3f] Copy (view 7) + [0x00003b40] Set column to 10 + [0x00003b42] Set is_stmt to 0 + [0x00003b43] Advance Line by 13 to 122 + [0x00003b45] Advance PC by fixed size amount 0 to 0xc04 + [0x00003b48] Copy (view 8) + [0x00003b49] Set column to 6 + [0x00003b4b] Advance Line by -13 to 109 + [0x00003b4d] Advance PC by fixed size amount 2 to 0xc06 + [0x00003b50] Copy (view 9) + [0x00003b51] Set column to 7 + [0x00003b53] Set is_stmt to 1 + [0x00003b54] Advance Line by 6 to 115 + [0x00003b56] Advance PC by fixed size amount 4 to 0xc0a + [0x00003b59] Copy (view 10) + [0x00003b5a] Advance Line by 0 to 115 + [0x00003b5c] Advance PC by fixed size amount 0 to 0xc0a + [0x00003b5f] Copy (view 11) + [0x00003b60] Advance Line by 0 to 115 + [0x00003b62] Advance PC by fixed size amount 14 to 0xc18 + [0x00003b65] Copy (view 12) + [0x00003b66] Advance Line by 4 to 119 + [0x00003b68] Advance PC by fixed size amount 0 to 0xc18 + [0x00003b6b] Copy (view 13) + [0x00003b6c] Set column to 14 + [0x00003b6e] Set is_stmt to 0 + [0x00003b6f] Advance Line by 0 to 119 + [0x00003b71] Advance PC by fixed size amount 0 to 0xc18 + [0x00003b74] Copy (view 14) + [0x00003b75] Set column to 1 + [0x00003b77] Advance Line by 4 to 123 + [0x00003b79] Advance PC by fixed size amount 2 to 0xc1a + [0x00003b7c] Copy (view 15) + [0x00003b7d] Set column to 7 + [0x00003b7f] Set is_stmt to 1 + [0x00003b80] Advance Line by -19 to 104 + [0x00003b82] Advance PC by fixed size amount 8 to 0xc22 + [0x00003b85] Copy (view 16) + [0x00003b86] Set column to 13 + [0x00003b88] Set is_stmt to 0 + [0x00003b89] Advance Line by 0 to 104 + [0x00003b8b] Advance PC by fixed size amount 0 to 0xc22 + [0x00003b8e] Copy (view 17) + [0x00003b8f] Set column to 11 + [0x00003b91] Advance Line by 0 to 104 + [0x00003b93] Advance PC by fixed size amount 8 to 0xc2a + [0x00003b96] Copy (view 18) + [0x00003b97] Advance PC by fixed size amount 6 to 0xc30 + [0x00003b9a] Extended opcode 1: End of Sequence + + + Offset: 0x3b9d + Length: 1015 + DWARF Version: 3 + Prologue Length: 364 + Minimum Instruction Length: 1 + Initial value of 'is_stmt': 1 + Line Base: -5 + Line Range: 14 + Opcode Base: 13 + + Opcodes: + Opcode 1 has 0 args + Opcode 2 has 1 arg + Opcode 3 has 1 arg + Opcode 4 has 1 arg + Opcode 5 has 1 arg + Opcode 6 has 0 args + Opcode 7 has 0 args + Opcode 8 has 0 args + Opcode 9 has 1 arg + Opcode 10 has 0 args + Opcode 11 has 0 args + Opcode 12 has 1 arg + + The Directory Table (offset 0x3bb8): + 1 stdio + 2 /Users/Luppy/ox64/nuttx/include/arch + 3 /Users/Luppy/ox64/nuttx/include + 4 /Users/Luppy/ox64/nuttx/include/sys + 5 /Users/Luppy/ox64/nuttx/include/nuttx + 6 /Users/Luppy/ox64/nuttx/include/nuttx/fs + 7 /Users/Luppy/ox64/nuttx/libs/libc + + The File Name Table (offset 0x3c99): + Entry Dir Time Size Name + 1 1 0 0 lib_libflushall.c + 2 2 0 0 types.h + 3 3 0 0 stdint.h + 4 4 0 0 types.h + 5 5 0 0 queue.h + 6 3 0 0 semaphore.h + 7 5 0 0 mutex.h + 8 6 0 0 fs.h + 9 3 0 0 stdio.h + 10 7 0 0 libc.h + + Line Number Statements: + [0x00003d13] Set column to 1 + [0x00003d15] Extended opcode 2: set Address to 0xc30 + [0x00003d20] Advance Line by 48 to 49 + [0x00003d22] Copy + [0x00003d23] Set column to 3 + [0x00003d25] Advance Line by 1 to 50 + [0x00003d27] Advance PC by fixed size amount 0 to 0xc30 + [0x00003d2a] Copy (view 1) + [0x00003d2b] Advance Line by 1 to 51 + [0x00003d2d] Advance PC by fixed size amount 0 to 0xc30 + [0x00003d30] Copy (view 2) + [0x00003d31] Advance Line by 4 to 55 + [0x00003d33] Advance PC by fixed size amount 0 to 0xc30 + [0x00003d36] Copy (view 3) + [0x00003d37] Set column to 1 + [0x00003d39] Set is_stmt to 0 + [0x00003d3a] Advance Line by -6 to 49 + [0x00003d3c] Advance PC by fixed size amount 0 to 0xc30 + [0x00003d3f] Copy (view 4) + [0x00003d40] Set column to 7 + [0x00003d42] Advance Line by 1 to 50 + [0x00003d44] Advance PC by fixed size amount 8 to 0xc38 + [0x00003d47] Copy (view 5) + [0x00003d48] Set column to 6 + [0x00003d4a] Advance Line by 5 to 55 + [0x00003d4c] Advance PC by fixed size amount 2 to 0xc3a + [0x00003d4f] Copy (view 6) + [0x00003d50] Set column to 19 + [0x00003d52] Set is_stmt to 1 + [0x00003d53] Advance Line by 7 to 62 + [0x00003d55] Advance PC by fixed size amount 4 to 0xc3e + [0x00003d58] Copy (view 7) + [0x00003d59] Set column to 11 + [0x00003d5b] Advance Line by 2 to 64 + [0x00003d5d] Advance PC by fixed size amount 0 to 0xc3e + [0x00003d60] Copy (view 8) + [0x00003d61] Set column to 26 + [0x00003d63] Advance Line by -2 to 62 + [0x00003d65] Advance PC by fixed size amount 12 to 0xc4a + [0x00003d68] Copy (view 9) + [0x00003d69] Set column to 19 + [0x00003d6b] Advance Line by 0 to 62 + [0x00003d6d] Advance PC by fixed size amount 0 to 0xc4a + [0x00003d70] Copy (view 10) + [0x00003d71] Set column to 11 + [0x00003d73] Advance Line by 2 to 64 + [0x00003d75] Advance PC by fixed size amount 0 to 0xc4a + [0x00003d78] Copy (view 11) + [0x00003d79] Set column to 26 + [0x00003d7b] Advance Line by -2 to 62 + [0x00003d7d] Advance PC by fixed size amount 12 to 0xc56 + [0x00003d80] Copy (view 12) + [0x00003d81] Set column to 19 + [0x00003d83] Advance Line by 0 to 62 + [0x00003d85] Advance PC by fixed size amount 0 to 0xc56 + [0x00003d88] Copy (view 13) + [0x00003d89] Set column to 11 + [0x00003d8b] Advance Line by 2 to 64 + [0x00003d8d] Advance PC by fixed size amount 0 to 0xc56 + [0x00003d90] Copy (view 14) + [0x00003d91] Set column to 26 + [0x00003d93] Advance Line by -2 to 62 + [0x00003d95] Advance PC by fixed size amount 12 to 0xc62 + [0x00003d98] Copy (view 15) + [0x00003d99] Set column to 19 + [0x00003d9b] Advance Line by 0 to 62 + [0x00003d9d] Advance PC by fixed size amount 0 to 0xc62 + [0x00003da0] Copy (view 16) + [0x00003da1] Set column to 7 + [0x00003da3] Advance Line by 5 to 67 + [0x00003da5] Advance PC by fixed size amount 0 to 0xc62 + [0x00003da8] Copy (view 17) + [0x00003da9] Set column to 19 + [0x00003dab] Set is_stmt to 0 + [0x00003dac] Advance Line by 0 to 67 + [0x00003dae] Advance PC by fixed size amount 0 to 0xc62 + [0x00003db1] Copy (view 18) + [0x00003db2] Set column to 7 + [0x00003db4] Advance Line by -17 to 50 + [0x00003db6] Advance PC by fixed size amount 4 to 0xc66 + [0x00003db9] Copy (view 19) + [0x00003dba] Set column to 36 + [0x00003dbc] Extended opcode 4: set Discriminator to 1 + [0x00003dc0] Set is_stmt to 1 + [0x00003dc1] Advance Line by 17 to 67 + [0x00003dc3] Advance PC by fixed size amount 2 to 0xc68 + [0x00003dc6] Copy (view 20) + [0x00003dc7] Set column to 7 + [0x00003dc9] Extended opcode 4: set Discriminator to 1 + [0x00003dcd] Set is_stmt to 0 + [0x00003dce] Advance Line by 0 to 67 + [0x00003dd0] Advance PC by fixed size amount 0 to 0xc68 + [0x00003dd3] Copy (view 21) + [0x00003dd4] Set column to 3 + [0x00003dd6] Set is_stmt to 1 + [0x00003dd7] Advance Line by 26 to 93 + [0x00003dd9] Advance PC by fixed size amount 2 to 0xc6a + [0x00003ddc] Copy (view 22) + [0x00003ddd] Set column to 1 + [0x00003ddf] Set is_stmt to 0 + [0x00003de0] Advance Line by 1 to 94 + [0x00003de2] Advance PC by fixed size amount 0 to 0xc6a + [0x00003de5] Copy (view 23) + [0x00003de6] Set column to 11 + [0x00003de8] Set is_stmt to 1 + [0x00003de9] Advance Line by -21 to 73 + [0x00003deb] Advance PC by fixed size amount 12 to 0xc76 + [0x00003dee] Copy (view 24) + [0x00003def] Set column to 14 + [0x00003df1] Set is_stmt to 0 + [0x00003df2] Advance Line by 0 to 73 + [0x00003df4] Advance PC by fixed size amount 0 to 0xc76 + [0x00003df7] Copy (view 25) + [0x00003df8] Set column to 15 + [0x00003dfa] Set is_stmt to 1 + [0x00003dfb] Advance Line by 4 to 77 + [0x00003dfd] Advance PC by fixed size amount 8 to 0xc7e + [0x00003e00] Copy (view 26) + [0x00003e01] Set column to 21 + [0x00003e03] Set is_stmt to 0 + [0x00003e04] Advance Line by 0 to 77 + [0x00003e06] Advance PC by fixed size amount 0 to 0xc7e + [0x00003e09] Copy (view 27) + [0x00003e0a] Set column to 19 + [0x00003e0c] Advance Line by 0 to 77 + [0x00003e0e] Advance PC by fixed size amount 10 to 0xc88 + [0x00003e11] Copy (view 28) + [0x00003e12] Set column to 15 + [0x00003e14] Set is_stmt to 1 + [0x00003e15] Advance Line by 1 to 78 + [0x00003e17] Advance PC by fixed size amount 2 to 0xc8a + [0x00003e1a] Copy (view 29) + [0x00003e1b] Set column to 18 + [0x00003e1d] Set is_stmt to 0 + [0x00003e1e] Advance Line by 0 to 78 + [0x00003e20] Advance PC by fixed size amount 0 to 0xc8a + [0x00003e23] Copy (view 30) + [0x00003e24] Set column to 52 + [0x00003e26] Extended opcode 4: set Discriminator to 2 + [0x00003e2a] Set is_stmt to 1 + [0x00003e2b] Advance Line by -11 to 67 + [0x00003e2d] Advance PC by fixed size amount 6 to 0xc90 + [0x00003e30] Copy (view 31) + [0x00003e31] Set column to 59 + [0x00003e33] Extended opcode 4: set Discriminator to 2 + [0x00003e37] Set is_stmt to 0 + [0x00003e38] Advance Line by 0 to 67 + [0x00003e3a] Advance PC by fixed size amount 0 to 0xc90 + [0x00003e3d] Copy (view 32) + [0x00003e3e] Advance PC by fixed size amount 4 to 0xc94 + [0x00003e41] Extended opcode 1: End of Sequence + + [0x00003e44] Set column to 1 + [0x00003e46] Extended opcode 2: set Address to 0xc94 + [0x00003e51] Advance Line by 96 to 97 + [0x00003e54] Copy + [0x00003e55] Set column to 3 + [0x00003e57] Advance Line by 1 to 98 + [0x00003e59] Advance PC by fixed size amount 0 to 0xc94 + [0x00003e5c] Copy (view 1) + [0x00003e5d] Advance Line by 1 to 99 + [0x00003e5f] Advance PC by fixed size amount 0 to 0xc94 + [0x00003e62] Copy (view 2) + [0x00003e63] Advance Line by 4 to 103 + [0x00003e65] Advance PC by fixed size amount 0 to 0xc94 + [0x00003e68] Copy (view 3) + [0x00003e69] Set column to 1 + [0x00003e6b] Set is_stmt to 0 + [0x00003e6c] Advance Line by -6 to 97 + [0x00003e6e] Advance PC by fixed size amount 0 to 0xc94 + [0x00003e71] Copy (view 4) + [0x00003e72] Set column to 7 + [0x00003e74] Advance Line by 1 to 98 + [0x00003e76] Advance PC by fixed size amount 10 to 0xc9e + [0x00003e79] Copy (view 5) + [0x00003e7a] Set column to 6 + [0x00003e7c] Advance Line by 5 to 103 + [0x00003e7e] Advance PC by fixed size amount 2 to 0xca0 + [0x00003e81] Copy (view 6) + [0x00003e82] Set column to 11 + [0x00003e84] Set is_stmt to 1 + [0x00003e85] Advance Line by 2 to 105 + [0x00003e87] Advance PC by fixed size amount 4 to 0xca4 + [0x00003e8a] Copy (view 7) + [0x00003e8b] Set column to 7 + [0x00003e8d] Advance Line by 1 to 106 + [0x00003e8f] Advance PC by fixed size amount 0 to 0xca4 + [0x00003e92] Copy (view 8) + [0x00003e93] Advance Line by 4 to 110 + [0x00003e95] Advance PC by fixed size amount 0 to 0xca4 + [0x00003e98] Copy (view 9) + [0x00003e99] Advance Line by 2 to 112 + [0x00003e9b] Advance PC by fixed size amount 8 to 0xcac + [0x00003e9e] Copy (view 10) + [0x00003e9f] Set column to 19 + [0x00003ea1] Advance Line by 0 to 112 + [0x00003ea3] Advance PC by fixed size amount 0 to 0xcac + [0x00003ea6] Copy (view 11) + [0x00003ea7] Set column to 11 + [0x00003ea9] Advance Line by 2 to 114 + [0x00003eab] Advance PC by fixed size amount 0 to 0xcac + [0x00003eae] Copy (view 12) + [0x00003eaf] Set column to 26 + [0x00003eb1] Advance Line by -2 to 112 + [0x00003eb3] Advance PC by fixed size amount 12 to 0xcb8 + [0x00003eb6] Copy (view 13) + [0x00003eb7] Set column to 19 + [0x00003eb9] Advance Line by 0 to 112 + [0x00003ebb] Advance PC by fixed size amount 0 to 0xcb8 + [0x00003ebe] Copy (view 14) + [0x00003ebf] Set column to 11 + [0x00003ec1] Advance Line by 2 to 114 + [0x00003ec3] Advance PC by fixed size amount 0 to 0xcb8 + [0x00003ec6] Copy (view 15) + [0x00003ec7] Set column to 26 + [0x00003ec9] Advance Line by -2 to 112 + [0x00003ecb] Advance PC by fixed size amount 12 to 0xcc4 + [0x00003ece] Copy (view 16) + [0x00003ecf] Set column to 19 + [0x00003ed1] Advance Line by 0 to 112 + [0x00003ed3] Advance PC by fixed size amount 0 to 0xcc4 + [0x00003ed6] Copy (view 17) + [0x00003ed7] Set column to 11 + [0x00003ed9] Advance Line by 2 to 114 + [0x00003edb] Advance PC by fixed size amount 0 to 0xcc4 + [0x00003ede] Copy (view 18) + [0x00003edf] Set column to 26 + [0x00003ee1] Advance Line by -2 to 112 + [0x00003ee3] Advance PC by fixed size amount 12 to 0xcd0 + [0x00003ee6] Copy (view 19) + [0x00003ee7] Set column to 19 + [0x00003ee9] Advance Line by 0 to 112 + [0x00003eeb] Advance PC by fixed size amount 0 to 0xcd0 + [0x00003eee] Copy (view 20) + [0x00003eef] Set column to 7 + [0x00003ef1] Advance Line by 5 to 117 + [0x00003ef3] Advance PC by fixed size amount 0 to 0xcd0 + [0x00003ef6] Copy (view 21) + [0x00003ef7] Set column to 19 + [0x00003ef9] Set is_stmt to 0 + [0x00003efa] Advance Line by 0 to 117 + [0x00003efc] Advance PC by fixed size amount 0 to 0xcd0 + [0x00003eff] Copy (view 22) + [0x00003f00] Set column to 7 + [0x00003f02] Advance Line by -19 to 98 + [0x00003f04] Advance PC by fixed size amount 4 to 0xcd4 + [0x00003f07] Copy (view 23) + [0x00003f08] Set column to 36 + [0x00003f0a] Extended opcode 4: set Discriminator to 1 + [0x00003f0e] Set is_stmt to 1 + [0x00003f0f] Advance Line by 19 to 117 + [0x00003f11] Advance PC by fixed size amount 2 to 0xcd6 + [0x00003f14] Copy (view 24) + [0x00003f15] Set column to 7 + [0x00003f17] Extended opcode 4: set Discriminator to 1 + [0x00003f1b] Set is_stmt to 0 + [0x00003f1c] Advance Line by 0 to 117 + [0x00003f1e] Advance PC by fixed size amount 0 to 0xcd6 + [0x00003f21] Copy (view 25) + [0x00003f22] Set is_stmt to 1 + [0x00003f23] Advance Line by 23 to 140 + [0x00003f25] Advance PC by fixed size amount 2 to 0xcd8 + [0x00003f28] Copy (view 26) + [0x00003f29] Set column to 3 + [0x00003f2b] Advance Line by 5 to 145 + [0x00003f2d] Advance PC by fixed size amount 10 to 0xce2 + [0x00003f30] Copy (view 27) + [0x00003f31] Set column to 1 + [0x00003f33] Set is_stmt to 0 + [0x00003f34] Advance Line by 1 to 146 + [0x00003f36] Advance PC by fixed size amount 0 to 0xce2 + [0x00003f39] Copy (view 28) + [0x00003f3a] Set column to 11 + [0x00003f3c] Set is_stmt to 1 + [0x00003f3d] Advance Line by -23 to 123 + [0x00003f3f] Advance PC by fixed size amount 14 to 0xcf0 + [0x00003f42] Copy (view 29) + [0x00003f43] Set column to 14 + [0x00003f45] Set is_stmt to 0 + [0x00003f46] Advance Line by 0 to 123 + [0x00003f48] Advance PC by fixed size amount 0 to 0xcf0 + [0x00003f4b] Copy (view 30) + [0x00003f4c] Set column to 15 + [0x00003f4e] Set is_stmt to 1 + [0x00003f4f] Advance Line by 4 to 127 + [0x00003f51] Advance PC by fixed size amount 8 to 0xcf8 + [0x00003f54] Copy (view 31) + [0x00003f55] Set column to 21 + [0x00003f57] Set is_stmt to 0 + [0x00003f58] Advance Line by 0 to 127 + [0x00003f5a] Advance PC by fixed size amount 0 to 0xcf8 + [0x00003f5d] Copy (view 32) + [0x00003f5e] Set column to 19 + [0x00003f60] Advance Line by 0 to 127 + [0x00003f62] Advance PC by fixed size amount 10 to 0xd02 + [0x00003f65] Copy (view 33) + [0x00003f66] Set column to 15 + [0x00003f68] Set is_stmt to 1 + [0x00003f69] Advance Line by 1 to 128 + [0x00003f6b] Advance PC by fixed size amount 2 to 0xd04 + [0x00003f6e] Copy (view 34) + [0x00003f6f] Set column to 18 + [0x00003f71] Set is_stmt to 0 + [0x00003f72] Advance Line by 0 to 128 + [0x00003f74] Advance PC by fixed size amount 0 to 0xd04 + [0x00003f77] Copy (view 35) + [0x00003f78] Set column to 52 + [0x00003f7a] Extended opcode 4: set Discriminator to 2 + [0x00003f7e] Set is_stmt to 1 + [0x00003f7f] Advance Line by -11 to 117 + [0x00003f81] Advance PC by fixed size amount 6 to 0xd0a + [0x00003f84] Copy (view 36) + [0x00003f85] Set column to 59 + [0x00003f87] Extended opcode 4: set Discriminator to 2 + [0x00003f8b] Set is_stmt to 0 + [0x00003f8c] Advance Line by 0 to 117 + [0x00003f8e] Advance PC by fixed size amount 0 to 0xd0a + [0x00003f91] Copy (view 37) + [0x00003f92] Advance PC by fixed size amount 4 to 0xd0e + [0x00003f95] Extended opcode 1: End of Sequence + + + Offset: 0x3f98 + Length: 174 + DWARF Version: 3 + Prologue Length: 98 + Minimum Instruction Length: 1 + Initial value of 'is_stmt': 1 + Line Base: -5 + Line Range: 14 + Opcode Base: 13 + + Opcodes: + Opcode 1 has 0 args + Opcode 2 has 1 arg + Opcode 3 has 1 arg + Opcode 4 has 1 arg + Opcode 5 has 1 arg + Opcode 6 has 0 args + Opcode 7 has 0 args + Opcode 8 has 0 args + Opcode 9 has 1 arg + Opcode 10 has 0 args + Opcode 11 has 0 args + Opcode 12 has 1 arg + + The Directory Table (offset 0x3fb3): + 1 assert + 2 /Users/Luppy/ox64/nuttx/include + + The File Name Table (offset 0x3fdb): + Entry Dir Time Size Name + 1 1 0 0 lib_assert.c + 2 2 0 0 assert.h + 3 2 0 0 stdlib.h + + Line Number Statements: + [0x00004004] Set column to 1 + [0x00004006] Extended opcode 2: set Address to 0xd0e + [0x00004011] Advance Line by 34 to 35 + [0x00004013] Copy + [0x00004014] Set column to 3 + [0x00004016] Advance Line by 1 to 36 + [0x00004018] Advance PC by fixed size amount 0 to 0xd0e + [0x0000401b] Copy (view 1) + [0x0000401c] Set column to 1 + [0x0000401e] Set is_stmt to 0 + [0x0000401f] Advance Line by -1 to 35 + [0x00004021] Advance PC by fixed size amount 0 to 0xd0e + [0x00004024] Copy (view 2) + [0x00004025] Set column to 3 + [0x00004027] Advance Line by 1 to 36 + [0x00004029] Advance PC by fixed size amount 2 to 0xd10 + [0x0000402c] Copy (view 3) + [0x0000402d] Set column to 1 + [0x0000402f] Advance Line by -1 to 35 + [0x00004031] Advance PC by fixed size amount 2 to 0xd12 + [0x00004034] Copy (view 4) + [0x00004035] Set column to 3 + [0x00004037] Advance Line by 1 to 36 + [0x00004039] Advance PC by fixed size amount 2 to 0xd14 + [0x0000403c] Copy (view 5) + [0x0000403d] Set is_stmt to 1 + [0x0000403e] Advance Line by 1 to 37 + [0x00004040] Advance PC by fixed size amount 8 to 0xd1c + [0x00004043] Copy (view 6) + [0x00004044] Advance PC by fixed size amount 8 to 0xd24 + [0x00004047] Extended opcode 1: End of Sequence + + + Offset: 0x404a + Length: 244 + DWARF Version: 3 + Prologue Length: 152 + Minimum Instruction Length: 1 + Initial value of 'is_stmt': 1 + Line Base: -5 + Line Range: 14 + Opcode Base: 13 + + Opcodes: + Opcode 1 has 0 args + Opcode 2 has 1 arg + Opcode 3 has 1 arg + Opcode 4 has 1 arg + Opcode 5 has 1 arg + Opcode 6 has 0 args + Opcode 7 has 0 args + Opcode 8 has 0 args + Opcode 9 has 1 arg + Opcode 10 has 0 args + Opcode 11 has 0 args + Opcode 12 has 1 arg + + The Directory Table (offset 0x4065): + 1 pthread + 2 /Users/Luppy/ox64/nuttx/include + 3 /Users/Luppy/ox64/nuttx/include/nuttx + + The File Name Table (offset 0x40b4): + Entry Dir Time Size Name + 1 1 0 0 pthread_exit.c + 2 2 0 0 sched.h + 3 3 0 0 pthread.h + 4 2 0 0 pthread.h + + Line Number Statements: + [0x000040ec] Set column to 1 + [0x000040ee] Extended opcode 2: set Address to 0xd24 + [0x000040f9] Advance Line by 54 to 55 + [0x000040fb] Copy + [0x000040fc] Set column to 3 + [0x000040fe] Advance Line by 6 to 61 + [0x00004100] Advance PC by fixed size amount 0 to 0xd24 + [0x00004103] Copy (view 1) + [0x00004104] Set column to 1 + [0x00004106] Set is_stmt to 0 + [0x00004107] Advance Line by -6 to 55 + [0x00004109] Advance PC by fixed size amount 0 to 0xd24 + [0x0000410c] Copy (view 2) + [0x0000410d] Set column to 3 + [0x0000410f] Advance Line by 6 to 61 + [0x00004111] Advance PC by fixed size amount 4 to 0xd28 + [0x00004114] Copy (view 3) + [0x00004115] Set column to 1 + [0x00004117] Advance Line by -6 to 55 + [0x00004119] Advance PC by fixed size amount 2 to 0xd2a + [0x0000411c] Copy (view 4) + [0x0000411d] Set column to 3 + [0x0000411f] Advance Line by 6 to 61 + [0x00004121] Advance PC by fixed size amount 2 to 0xd2c + [0x00004124] Copy (view 5) + [0x00004125] Set column to 1 + [0x00004127] Advance Line by -6 to 55 + [0x00004129] Advance PC by fixed size amount 2 to 0xd2e + [0x0000412c] Copy (view 6) + [0x0000412d] Set column to 3 + [0x0000412f] Advance Line by 6 to 61 + [0x00004131] Advance PC by fixed size amount 2 to 0xd30 + [0x00004134] Copy (view 7) + [0x00004135] Set is_stmt to 1 + [0x00004136] Advance Line by 10 to 71 + [0x00004138] Advance PC by fixed size amount 8 to 0xd38 + [0x0000413b] Copy (view 8) + [0x0000413c] Advance PC by fixed size amount 10 to 0xd42 + [0x0000413f] Extended opcode 1: End of Sequence + + + Offset: 0x4142 + Length: 166 + DWARF Version: 3 + Prologue Length: 97 + Minimum Instruction Length: 1 + Initial value of 'is_stmt': 1 + Line Base: -5 + Line Range: 14 + Opcode Base: 13 + + Opcodes: + Opcode 1 has 0 args + Opcode 2 has 1 arg + Opcode 3 has 1 arg + Opcode 4 has 1 arg + Opcode 5 has 1 arg + Opcode 6 has 0 args + Opcode 7 has 0 args + Opcode 8 has 0 args + Opcode 9 has 1 arg + Opcode 10 has 0 args + Opcode 11 has 0 args + Opcode 12 has 1 arg + + The Directory Table (offset 0x415d): + 1 stdlib + 2 /Users/Luppy/ox64/nuttx/include + + The File Name Table (offset 0x4185): + Entry Dir Time Size Name + 1 1 0 0 lib_abort.c + 2 2 0 0 stdlib.h + 3 2 0 0 unistd.h + + Line Number Statements: + [0x000041ad] Set column to 1 + [0x000041af] Extended opcode 2: set Address to 0xd42 + [0x000041ba] Advance Line by 59 to 60 + [0x000041bc] Copy + [0x000041bd] Set column to 3 + [0x000041bf] Advance Line by 9 to 69 + [0x000041c1] Advance PC by fixed size amount 0 to 0xd42 + [0x000041c4] Copy (view 1) + [0x000041c5] Set column to 1 + [0x000041c7] Set is_stmt to 0 + [0x000041c8] Advance Line by -9 to 60 + [0x000041ca] Advance PC by fixed size amount 0 to 0xd42 + [0x000041cd] Copy (view 2) + [0x000041ce] Set column to 3 + [0x000041d0] Advance Line by 9 to 69 + [0x000041d2] Advance PC by fixed size amount 2 to 0xd44 + [0x000041d5] Copy (view 3) + [0x000041d6] Set column to 1 + [0x000041d8] Advance Line by -9 to 60 + [0x000041da] Advance PC by fixed size amount 2 to 0xd46 + [0x000041dd] Copy (view 4) + [0x000041de] Set column to 3 + [0x000041e0] Advance Line by 9 to 69 + [0x000041e2] Advance PC by fixed size amount 2 to 0xd48 + [0x000041e5] Copy (view 5) + [0x000041e6] Advance PC by fixed size amount 8 to 0xd50 + [0x000041e9] Extended opcode 1: End of Sequence + + + Offset: 0x41ec + Length: 357 + DWARF Version: 3 + Prologue Length: 200 + Minimum Instruction Length: 1 + Initial value of 'is_stmt': 1 + Line Base: -5 + Line Range: 14 + Opcode Base: 13 + + Opcodes: + Opcode 1 has 0 args + Opcode 2 has 1 arg + Opcode 3 has 1 arg + Opcode 4 has 1 arg + Opcode 5 has 1 arg + Opcode 6 has 0 args + Opcode 7 has 0 args + Opcode 8 has 0 args + Opcode 9 has 1 arg + Opcode 10 has 0 args + Opcode 11 has 0 args + Opcode 12 has 1 arg + + The Directory Table (offset 0x4207): + 1 proxies + 2 /Users/Luppy/ox64/nuttx/include/arch + 3 /Users/Luppy/ox64/nuttx/include + 4 /Users/Luppy/ox64/nuttx/include/sys + + The File Name Table (offset 0x4279): + Entry Dir Time Size Name + 1 1 0 0 PROXY__assert.c + 2 2 0 0 syscall.h + 3 2 0 0 types.h + 4 3 0 0 stdint.h + 5 4 0 0 syscall.h + + Line Number Statements: + [0x000042be] Set column to 1 + [0x000042c0] Extended opcode 2: set Address to 0xd50 + [0x000042cb] Special opcode 12: advance Address by 0 to 0xd50 and Line by 7 to 8 + [0x000042cc] Set column to 3 + [0x000042ce] Advance Line by 1 to 9 + [0x000042d0] Advance PC by fixed size amount 0 to 0xd50 + [0x000042d3] Copy (view 1) + [0x000042d4] Set column to 1 + [0x000042d6] Set is_stmt to 0 + [0x000042d7] Advance Line by -1 to 8 + [0x000042d9] Advance PC by fixed size amount 0 to 0xd50 + [0x000042dc] Copy (view 2) + [0x000042dd] Set File Name to entry 2 in the File Name Table + [0x000042df] Set column to 3 + [0x000042e1] Set is_stmt to 1 + [0x000042e2] Advance Line by 273 to 281 + [0x000042e5] Advance PC by fixed size amount 8 to 0xd58 + [0x000042e8] Copy (view 3) + [0x000042e9] Set column to 17 + [0x000042eb] Set is_stmt to 0 + [0x000042ec] Advance Line by 0 to 281 + [0x000042ee] Advance PC by fixed size amount 0 to 0xd58 + [0x000042f1] Copy (view 4) + [0x000042f2] Set column to 3 + [0x000042f4] Set is_stmt to 1 + [0x000042f5] Advance Line by 1 to 282 + [0x000042f7] Advance PC by fixed size amount 2 to 0xd5a + [0x000042fa] Copy (view 5) + [0x000042fb] Set column to 17 + [0x000042fd] Set is_stmt to 0 + [0x000042fe] Advance Line by 0 to 282 + [0x00004300] Advance PC by fixed size amount 0 to 0xd5a + [0x00004303] Copy (view 6) + [0x00004304] Set column to 3 + [0x00004306] Set is_stmt to 1 + [0x00004307] Advance Line by 1 to 283 + [0x00004309] Advance PC by fixed size amount 2 to 0xd5c + [0x0000430c] Copy (view 7) + [0x0000430d] Set column to 32 + [0x0000430f] Set is_stmt to 0 + [0x00004310] Advance Line by 0 to 283 + [0x00004312] Advance PC by fixed size amount 0 to 0xd5c + [0x00004315] Copy (view 8) + [0x00004316] Set column to 3 + [0x00004318] Set is_stmt to 1 + [0x00004319] Advance Line by 1 to 284 + [0x0000431b] Advance PC by fixed size amount 2 to 0xd5e + [0x0000431e] Copy (view 9) + [0x0000431f] Set column to 17 + [0x00004321] Set is_stmt to 0 + [0x00004322] Advance Line by 0 to 284 + [0x00004324] Advance PC by fixed size amount 0 to 0xd5e + [0x00004327] Copy (view 10) + [0x00004328] Set column to 3 + [0x0000432a] Set is_stmt to 1 + [0x0000432b] Advance Line by 1 to 285 + [0x0000432d] Advance PC by fixed size amount 2 to 0xd60 + [0x00004330] Copy (view 11) + [0x00004331] Advance Line by 2 to 287 + [0x00004333] Advance PC by fixed size amount 0 to 0xd60 + [0x00004336] Copy (view 12) + [0x00004337] Advance Line by 7 to 294 + [0x00004339] Advance PC by fixed size amount 4 to 0xd64 + [0x0000433c] Copy (view 13) + [0x0000433d] Advance Line by 2 to 296 + [0x0000433f] Advance PC by fixed size amount 2 to 0xd66 + [0x00004342] Copy (view 14) + [0x00004343] Set File Name to entry 1 in the File Name Table + [0x00004345] Set column to 1 + [0x00004347] Set is_stmt to 0 + [0x00004348] Advance Line by -286 to 10 + [0x0000434b] Advance PC by fixed size amount 0 to 0xd66 + [0x0000434e] Copy (view 15) + [0x0000434f] Advance PC by fixed size amount 2 to 0xd68 + [0x00004352] Extended opcode 1: End of Sequence + + + Offset: 0x4355 + Length: 338 + DWARF Version: 3 + Prologue Length: 210 + Minimum Instruction Length: 1 + Initial value of 'is_stmt': 1 + Line Base: -5 + Line Range: 14 + Opcode Base: 13 + + Opcodes: + Opcode 1 has 0 args + Opcode 2 has 1 arg + Opcode 3 has 1 arg + Opcode 4 has 1 arg + Opcode 5 has 1 arg + Opcode 6 has 0 args + Opcode 7 has 0 args + Opcode 8 has 0 args + Opcode 9 has 1 arg + Opcode 10 has 0 args + Opcode 11 has 0 args + Opcode 12 has 1 arg + + The Directory Table (offset 0x4370): + 1 proxies + 2 /Users/Luppy/ox64/nuttx/include/arch + 3 /Users/Luppy/ox64/nuttx/include + 4 /Users/Luppy/ox64/nuttx/include/sys + + The File Name Table (offset 0x43e2): + Entry Dir Time Size Name + 1 1 0 0 PROXY__exit.c + 2 2 0 0 syscall.h + 3 2 0 0 types.h + 4 3 0 0 stdint.h + 5 4 0 0 syscall.h + 6 3 0 0 unistd.h + + Line Number Statements: + [0x00004431] Set column to 1 + [0x00004433] Extended opcode 2: set Address to 0xd68 + [0x0000443e] Special opcode 12: advance Address by 0 to 0xd68 and Line by 7 to 8 + [0x0000443f] Set column to 3 + [0x00004441] Advance Line by 1 to 9 + [0x00004443] Advance PC by fixed size amount 0 to 0xd68 + [0x00004446] Copy (view 1) + [0x00004447] Set column to 1 + [0x00004449] Set is_stmt to 0 + [0x0000444a] Advance Line by -1 to 8 + [0x0000444c] Advance PC by fixed size amount 0 to 0xd68 + [0x0000444f] Copy (view 2) + [0x00004450] Set File Name to entry 2 in the File Name Table + [0x00004452] Set column to 3 + [0x00004454] Set is_stmt to 1 + [0x00004455] Advance Line by 191 to 199 + [0x00004458] Advance PC by fixed size amount 2 to 0xd6a + [0x0000445b] Copy (view 3) + [0x0000445c] Set column to 17 + [0x0000445e] Set is_stmt to 0 + [0x0000445f] Advance Line by 0 to 199 + [0x00004461] Advance PC by fixed size amount 0 to 0xd6a + [0x00004464] Copy (view 4) + [0x00004465] Set column to 3 + [0x00004467] Set is_stmt to 1 + [0x00004468] Advance Line by 1 to 200 + [0x0000446a] Advance PC by fixed size amount 2 to 0xd6c + [0x0000446d] Copy (view 5) + [0x0000446e] Advance Line by 2 to 202 + [0x00004470] Advance PC by fixed size amount 0 to 0xd6c + [0x00004473] Copy (view 6) + [0x00004474] Advance Line by 7 to 209 + [0x00004476] Advance PC by fixed size amount 4 to 0xd70 + [0x00004479] Copy (view 7) + [0x0000447a] Advance Line by 2 to 211 + [0x0000447c] Advance PC by fixed size amount 2 to 0xd72 + [0x0000447f] Copy (view 8) + [0x00004480] Set File Name to entry 1 in the File Name Table + [0x00004482] Extended opcode 4: set Discriminator to 1 + [0x00004486] Advance Line by -201 to 10 + [0x00004489] Advance PC by fixed size amount 0 to 0xd72 + [0x0000448c] Copy (view 9) + [0x0000448d] Set column to 11 + [0x0000448f] Extended opcode 4: set Discriminator to 1 + [0x00004493] Advance Line by 0 to 10 + [0x00004495] Advance PC by fixed size amount 0 to 0xd72 + [0x00004498] Copy (view 10) + [0x00004499] Set column to 8 + [0x0000449b] Extended opcode 4: set Discriminator to 1 + [0x0000449f] Advance Line by 0 to 10 + [0x000044a1] Advance PC by fixed size amount 0 to 0xd72 + [0x000044a4] Copy (view 11) + [0x000044a5] Advance PC by fixed size amount 2 to 0xd74 + [0x000044a8] Extended opcode 1: End of Sequence + + + Offset: 0x44ab + Length: 348 + DWARF Version: 3 + Prologue Length: 227 + Minimum Instruction Length: 1 + Initial value of 'is_stmt': 1 + Line Base: -5 + Line Range: 14 + Opcode Base: 13 + + Opcodes: + Opcode 1 has 0 args + Opcode 2 has 1 arg + Opcode 3 has 1 arg + Opcode 4 has 1 arg + Opcode 5 has 1 arg + Opcode 6 has 0 args + Opcode 7 has 0 args + Opcode 8 has 0 args + Opcode 9 has 1 arg + Opcode 10 has 0 args + Opcode 11 has 0 args + Opcode 12 has 1 arg + + The Directory Table (offset 0x44c6): + 1 proxies + 2 /Users/Luppy/ox64/nuttx/include/arch + 3 /Users/Luppy/ox64/nuttx/include + 4 /Users/Luppy/ox64/nuttx/include/sys + + The File Name Table (offset 0x4538): + Entry Dir Time Size Name + 1 1 0 0 PROXY_clock_gettime.c + 2 2 0 0 syscall.h + 3 2 0 0 types.h + 4 3 0 0 stdint.h + 5 4 0 0 types.h + 6 3 0 0 time.h + 7 4 0 0 syscall.h + + Line Number Statements: + [0x00004598] Set column to 1 + [0x0000459a] Extended opcode 2: set Address to 0xd74 + [0x000045a5] Special opcode 12: advance Address by 0 to 0xd74 and Line by 7 to 8 + [0x000045a6] Set column to 3 + [0x000045a8] Advance Line by 1 to 9 + [0x000045aa] Advance PC by fixed size amount 0 to 0xd74 + [0x000045ad] Copy (view 1) + [0x000045ae] Set column to 1 + [0x000045b0] Set is_stmt to 0 + [0x000045b1] Advance Line by -1 to 8 + [0x000045b3] Advance PC by fixed size amount 0 to 0xd74 + [0x000045b6] Copy (view 2) + [0x000045b7] Set File Name to entry 2 in the File Name Table + [0x000045b9] Set column to 3 + [0x000045bb] Set is_stmt to 1 + [0x000045bc] Advance Line by 217 to 225 + [0x000045bf] Advance PC by fixed size amount 4 to 0xd78 + [0x000045c2] Copy (view 3) + [0x000045c3] Set column to 17 + [0x000045c5] Set is_stmt to 0 + [0x000045c6] Advance Line by 0 to 225 + [0x000045c8] Advance PC by fixed size amount 0 to 0xd78 + [0x000045cb] Copy (view 4) + [0x000045cc] Set column to 3 + [0x000045ce] Set is_stmt to 1 + [0x000045cf] Advance Line by 1 to 226 + [0x000045d1] Advance PC by fixed size amount 4 to 0xd7c + [0x000045d4] Copy (view 5) + [0x000045d5] Set column to 32 + [0x000045d7] Set is_stmt to 0 + [0x000045d8] Advance Line by 0 to 226 + [0x000045da] Advance PC by fixed size amount 0 to 0xd7c + [0x000045dd] Copy (view 6) + [0x000045de] Set column to 3 + [0x000045e0] Set is_stmt to 1 + [0x000045e1] Advance Line by 1 to 227 + [0x000045e3] Advance PC by fixed size amount 2 to 0xd7e + [0x000045e6] Copy (view 7) + [0x000045e7] Advance Line by 2 to 229 + [0x000045e9] Advance PC by fixed size amount 0 to 0xd7e + [0x000045ec] Copy (view 8) + [0x000045ed] Advance Line by 7 to 236 + [0x000045ef] Advance PC by fixed size amount 4 to 0xd82 + [0x000045f2] Copy (view 9) + [0x000045f3] Advance Line by 2 to 238 + [0x000045f5] Advance PC by fixed size amount 2 to 0xd84 + [0x000045f8] Copy (view 10) + [0x000045f9] Set File Name to entry 1 in the File Name Table + [0x000045fb] Set column to 1 + [0x000045fd] Set is_stmt to 0 + [0x000045fe] Advance Line by -228 to 10 + [0x00004601] Advance PC by fixed size amount 0 to 0xd84 + [0x00004604] Copy (view 11) + [0x00004605] Advance PC by fixed size amount 4 to 0xd88 + [0x00004608] Extended opcode 1: End of Sequence + + + Offset: 0x460b + Length: 307 + DWARF Version: 3 + Prologue Length: 222 + Minimum Instruction Length: 1 + Initial value of 'is_stmt': 1 + Line Base: -5 + Line Range: 14 + Opcode Base: 13 + + Opcodes: + Opcode 1 has 0 args + Opcode 2 has 1 arg + Opcode 3 has 1 arg + Opcode 4 has 1 arg + Opcode 5 has 1 arg + Opcode 6 has 0 args + Opcode 7 has 0 args + Opcode 8 has 0 args + Opcode 9 has 1 arg + Opcode 10 has 0 args + Opcode 11 has 0 args + Opcode 12 has 1 arg + + The Directory Table (offset 0x4626): + 1 proxies + 2 /Users/Luppy/ox64/nuttx/include/arch + 3 /Users/Luppy/ox64/nuttx/include + 4 /Users/Luppy/ox64/nuttx/include/sys + + The File Name Table (offset 0x4698): + Entry Dir Time Size Name + 1 1 0 0 PROXY_gettid.c + 2 2 0 0 syscall.h + 3 2 0 0 types.h + 4 3 0 0 stdint.h + 5 4 0 0 types.h + 6 4 0 0 syscall.h + 7 3 0 0 unistd.h + + Line Number Statements: + [0x000046f3] Set column to 1 + [0x000046f5] Extended opcode 2: set Address to 0xd88 + [0x00004700] Special opcode 12: advance Address by 0 to 0xd88 and Line by 7 to 8 + [0x00004701] Set column to 3 + [0x00004703] Advance Line by 1 to 9 + [0x00004705] Advance PC by fixed size amount 0 to 0xd88 + [0x00004708] Copy (view 1) + [0x00004709] Set File Name to entry 2 in the File Name Table + [0x0000470b] Advance Line by 166 to 175 + [0x0000470e] Advance PC by fixed size amount 0 to 0xd88 + [0x00004711] Copy (view 2) + [0x00004712] Set column to 17 + [0x00004714] Set is_stmt to 0 + [0x00004715] Advance Line by 0 to 175 + [0x00004717] Advance PC by fixed size amount 0 to 0xd88 + [0x0000471a] Copy (view 3) + [0x0000471b] Set column to 3 + [0x0000471d] Set is_stmt to 1 + [0x0000471e] Advance Line by 2 to 177 + [0x00004720] Advance PC by fixed size amount 2 to 0xd8a + [0x00004723] Copy (view 4) + [0x00004724] Advance Line by 7 to 184 + [0x00004726] Advance PC by fixed size amount 4 to 0xd8e + [0x00004729] Copy (view 5) + [0x0000472a] Advance Line by 2 to 186 + [0x0000472c] Advance PC by fixed size amount 2 to 0xd90 + [0x0000472f] Copy (view 6) + [0x00004730] Set File Name to entry 1 in the File Name Table + [0x00004732] Set column to 1 + [0x00004734] Set is_stmt to 0 + [0x00004735] Advance Line by -176 to 10 + [0x00004738] Advance PC by fixed size amount 0 to 0xd90 + [0x0000473b] Copy (view 7) + [0x0000473c] Advance PC by fixed size amount 4 to 0xd94 + [0x0000473f] Extended opcode 1: End of Sequence + + + Offset: 0x4742 + Length: 360 + DWARF Version: 3 + Prologue Length: 221 + Minimum Instruction Length: 1 + Initial value of 'is_stmt': 1 + Line Base: -5 + Line Range: 14 + Opcode Base: 13 + + Opcodes: + Opcode 1 has 0 args + Opcode 2 has 1 arg + Opcode 3 has 1 arg + Opcode 4 has 1 arg + Opcode 5 has 1 arg + Opcode 6 has 0 args + Opcode 7 has 0 args + Opcode 8 has 0 args + Opcode 9 has 1 arg + Opcode 10 has 0 args + Opcode 11 has 0 args + Opcode 12 has 1 arg + + The Directory Table (offset 0x475d): + 1 proxies + 2 /Users/Luppy/ox64/nuttx/include/arch + 3 /Users/Luppy/ox64/nuttx/include + 4 /Users/Luppy/ox64/nuttx/include/sys + + The File Name Table (offset 0x47cf): + Entry Dir Time Size Name + 1 1 0 0 PROXY_lseek.c + 2 2 0 0 syscall.h + 3 2 0 0 types.h + 4 3 0 0 stdint.h + 5 4 0 0 types.h + 6 4 0 0 syscall.h + 7 3 0 0 unistd.h + + Line Number Statements: + [0x00004829] Set column to 1 + [0x0000482b] Extended opcode 2: set Address to 0xd94 + [0x00004836] Special opcode 12: advance Address by 0 to 0xd94 and Line by 7 to 8 + [0x00004837] Set column to 3 + [0x00004839] Advance Line by 1 to 9 + [0x0000483b] Advance PC by fixed size amount 0 to 0xd94 + [0x0000483e] Copy (view 1) + [0x0000483f] Set column to 1 + [0x00004841] Set is_stmt to 0 + [0x00004842] Advance Line by -1 to 8 + [0x00004844] Advance PC by fixed size amount 0 to 0xd94 + [0x00004847] Copy (view 2) + [0x00004848] Set File Name to entry 2 in the File Name Table + [0x0000484a] Set column to 3 + [0x0000484c] Set is_stmt to 1 + [0x0000484d] Advance Line by 244 to 252 + [0x00004850] Advance PC by fixed size amount 6 to 0xd9a + [0x00004853] Copy (view 3) + [0x00004854] Set column to 17 + [0x00004856] Set is_stmt to 0 + [0x00004857] Advance Line by 0 to 252 + [0x00004859] Advance PC by fixed size amount 0 to 0xd9a + [0x0000485c] Copy (view 4) + [0x0000485d] Set column to 3 + [0x0000485f] Set is_stmt to 1 + [0x00004860] Advance Line by 1 to 253 + [0x00004862] Advance PC by fixed size amount 4 to 0xd9e + [0x00004865] Copy (view 5) + [0x00004866] Set column to 32 + [0x00004868] Set is_stmt to 0 + [0x00004869] Advance Line by 0 to 253 + [0x0000486b] Advance PC by fixed size amount 0 to 0xd9e + [0x0000486e] Copy (view 6) + [0x0000486f] Set column to 3 + [0x00004871] Set is_stmt to 1 + [0x00004872] Advance Line by 1 to 254 + [0x00004874] Advance PC by fixed size amount 2 to 0xda0 + [0x00004877] Copy (view 7) + [0x00004878] Set column to 32 + [0x0000487a] Set is_stmt to 0 + [0x0000487b] Advance Line by 0 to 254 + [0x0000487d] Advance PC by fixed size amount 0 to 0xda0 + [0x00004880] Copy (view 8) + [0x00004881] Set column to 3 + [0x00004883] Set is_stmt to 1 + [0x00004884] Advance Line by 1 to 255 + [0x00004886] Advance PC by fixed size amount 2 to 0xda2 + [0x00004889] Copy (view 9) + [0x0000488a] Advance Line by 2 to 257 + [0x0000488c] Advance PC by fixed size amount 0 to 0xda2 + [0x0000488f] Copy (view 10) + [0x00004890] Advance Line by 7 to 264 + [0x00004892] Advance PC by fixed size amount 4 to 0xda6 + [0x00004895] Copy (view 11) + [0x00004896] Advance Line by 2 to 266 + [0x00004898] Advance PC by fixed size amount 2 to 0xda8 + [0x0000489b] Copy (view 12) + [0x0000489c] Set File Name to entry 1 in the File Name Table + [0x0000489e] Set column to 1 + [0x000048a0] Set is_stmt to 0 + [0x000048a1] Advance Line by -256 to 10 + [0x000048a4] Advance PC by fixed size amount 0 to 0xda8 + [0x000048a7] Copy (view 13) + [0x000048a8] Advance PC by fixed size amount 4 to 0xdac + [0x000048ab] Extended opcode 1: End of Sequence + + + Offset: 0x48ae + Length: 402 + DWARF Version: 3 + Prologue Length: 272 + Minimum Instruction Length: 1 + Initial value of 'is_stmt': 1 + Line Base: -5 + Line Range: 14 + Opcode Base: 13 + + Opcodes: + Opcode 1 has 0 args + Opcode 2 has 1 arg + Opcode 3 has 1 arg + Opcode 4 has 1 arg + Opcode 5 has 1 arg + Opcode 6 has 0 args + Opcode 7 has 0 args + Opcode 8 has 0 args + Opcode 9 has 1 arg + Opcode 10 has 0 args + Opcode 11 has 0 args + Opcode 12 has 1 arg + + The Directory Table (offset 0x48c9): + 1 proxies + 2 /Users/Luppy/ox64/nuttx/include/arch + 3 /Users/Luppy/ox64/nuttx/include + 4 /Users/Luppy/ox64/nuttx/include/sys + 5 /Users/Luppy/ox64/nuttx/include/nuttx + + The File Name Table (offset 0x4961): + Entry Dir Time Size Name + 1 1 0 0 PROXY_nx_pthread_exit.c + 2 2 0 0 syscall.h + 3 2 0 0 types.h + 4 3 0 0 stdint.h + 5 3 0 0 pthread.h + 6 4 0 0 syscall.h + 7 5 0 0 pthread.h + + Line Number Statements: + [0x000049c8] Set column to 1 + [0x000049ca] Extended opcode 2: set Address to 0xdac + [0x000049d5] Advance Line by 9 to 10 + [0x000049d7] Copy + [0x000049d8] Set column to 3 + [0x000049da] Advance Line by 1 to 11 + [0x000049dc] Advance PC by fixed size amount 0 to 0xdac + [0x000049df] Copy (view 1) + [0x000049e0] Set column to 1 + [0x000049e2] Set is_stmt to 0 + [0x000049e3] Advance Line by -1 to 10 + [0x000049e5] Advance PC by fixed size amount 0 to 0xdac + [0x000049e8] Copy (view 2) + [0x000049e9] Set File Name to entry 2 in the File Name Table + [0x000049eb] Set column to 3 + [0x000049ed] Set is_stmt to 1 + [0x000049ee] Advance Line by 189 to 199 + [0x000049f1] Advance PC by fixed size amount 2 to 0xdae + [0x000049f4] Copy (view 3) + [0x000049f5] Set column to 17 + [0x000049f7] Set is_stmt to 0 + [0x000049f8] Advance Line by 0 to 199 + [0x000049fa] Advance PC by fixed size amount 0 to 0xdae + [0x000049fd] Copy (view 4) + [0x000049fe] Set column to 3 + [0x00004a00] Set is_stmt to 1 + [0x00004a01] Advance Line by 1 to 200 + [0x00004a03] Advance PC by fixed size amount 4 to 0xdb2 + [0x00004a06] Copy (view 5) + [0x00004a07] Advance Line by 2 to 202 + [0x00004a09] Advance PC by fixed size amount 0 to 0xdb2 + [0x00004a0c] Copy (view 6) + [0x00004a0d] Advance Line by 7 to 209 + [0x00004a0f] Advance PC by fixed size amount 4 to 0xdb6 + [0x00004a12] Copy (view 7) + [0x00004a13] Advance Line by 2 to 211 + [0x00004a15] Advance PC by fixed size amount 2 to 0xdb8 + [0x00004a18] Copy (view 8) + [0x00004a19] Set File Name to entry 1 in the File Name Table + [0x00004a1b] Extended opcode 4: set Discriminator to 1 + [0x00004a1f] Advance Line by -199 to 12 + [0x00004a22] Advance PC by fixed size amount 0 to 0xdb8 + [0x00004a25] Copy (view 9) + [0x00004a26] Set column to 11 + [0x00004a28] Extended opcode 4: set Discriminator to 1 + [0x00004a2c] Advance Line by 0 to 12 + [0x00004a2e] Advance PC by fixed size amount 0 to 0xdb8 + [0x00004a31] Copy (view 10) + [0x00004a32] Set column to 8 + [0x00004a34] Extended opcode 4: set Discriminator to 1 + [0x00004a38] Advance Line by 0 to 12 + [0x00004a3a] Advance PC by fixed size amount 0 to 0xdb8 + [0x00004a3d] Copy (view 11) + [0x00004a3e] Advance PC by fixed size amount 2 to 0xdba + [0x00004a41] Extended opcode 1: End of Sequence + + + Offset: 0x4a44 + Length: 447 + DWARF Version: 3 + Prologue Length: 308 + Minimum Instruction Length: 1 + Initial value of 'is_stmt': 1 + Line Base: -5 + Line Range: 14 + Opcode Base: 13 + + Opcodes: + Opcode 1 has 0 args + Opcode 2 has 1 arg + Opcode 3 has 1 arg + Opcode 4 has 1 arg + Opcode 5 has 1 arg + Opcode 6 has 0 args + Opcode 7 has 0 args + Opcode 8 has 0 args + Opcode 9 has 1 arg + Opcode 10 has 0 args + Opcode 11 has 0 args + Opcode 12 has 1 arg + + The Directory Table (offset 0x4a5f): + 1 proxies + 2 /Users/Luppy/ox64/nuttx/include/arch + 3 /Users/Luppy/ox64/nuttx/include + 4 /Users/Luppy/ox64/nuttx/include/sys + 5 /Users/Luppy/ox64/nuttx/include/nuttx + + The File Name Table (offset 0x4af7): + Entry Dir Time Size Name + 1 1 0 0 PROXY_nxsem_clockwait.c + 2 2 0 0 syscall.h + 3 2 0 0 types.h + 4 3 0 0 stdint.h + 5 4 0 0 types.h + 6 3 0 0 time.h + 7 5 0 0 queue.h + 8 3 0 0 semaphore.h + 9 4 0 0 syscall.h + 10 5 0 0 semaphore.h + + Line Number Statements: + [0x00004b82] Set column to 1 + [0x00004b84] Extended opcode 2: set Address to 0xdba + [0x00004b8f] Special opcode 12: advance Address by 0 to 0xdba and Line by 7 to 8 + [0x00004b90] Set column to 3 + [0x00004b92] Advance Line by 1 to 9 + [0x00004b94] Advance PC by fixed size amount 0 to 0xdba + [0x00004b97] Copy (view 1) + [0x00004b98] Set column to 1 + [0x00004b9a] Set is_stmt to 0 + [0x00004b9b] Advance Line by -1 to 8 + [0x00004b9d] Advance PC by fixed size amount 0 to 0xdba + [0x00004ba0] Copy (view 2) + [0x00004ba1] Set File Name to entry 2 in the File Name Table + [0x00004ba3] Set column to 3 + [0x00004ba5] Set is_stmt to 1 + [0x00004ba6] Advance Line by 244 to 252 + [0x00004ba9] Advance PC by fixed size amount 6 to 0xdc0 + [0x00004bac] Copy (view 3) + [0x00004bad] Set column to 17 + [0x00004baf] Set is_stmt to 0 + [0x00004bb0] Advance Line by 0 to 252 + [0x00004bb2] Advance PC by fixed size amount 0 to 0xdc0 + [0x00004bb5] Copy (view 4) + [0x00004bb6] Set column to 3 + [0x00004bb8] Set is_stmt to 1 + [0x00004bb9] Advance Line by 1 to 253 + [0x00004bbb] Advance PC by fixed size amount 2 to 0xdc2 + [0x00004bbe] Copy (view 5) + [0x00004bbf] Set column to 17 + [0x00004bc1] Set is_stmt to 0 + [0x00004bc2] Advance Line by 0 to 253 + [0x00004bc4] Advance PC by fixed size amount 0 to 0xdc2 + [0x00004bc7] Copy (view 6) + [0x00004bc8] Set column to 3 + [0x00004bca] Set is_stmt to 1 + [0x00004bcb] Advance Line by 1 to 254 + [0x00004bcd] Advance PC by fixed size amount 2 to 0xdc4 + [0x00004bd0] Copy (view 7) + [0x00004bd1] Set column to 32 + [0x00004bd3] Set is_stmt to 0 + [0x00004bd4] Advance Line by 0 to 254 + [0x00004bd6] Advance PC by fixed size amount 0 to 0xdc4 + [0x00004bd9] Copy (view 8) + [0x00004bda] Set column to 3 + [0x00004bdc] Set is_stmt to 1 + [0x00004bdd] Advance Line by 1 to 255 + [0x00004bdf] Advance PC by fixed size amount 2 to 0xdc6 + [0x00004be2] Copy (view 9) + [0x00004be3] Advance Line by 2 to 257 + [0x00004be5] Advance PC by fixed size amount 0 to 0xdc6 + [0x00004be8] Copy (view 10) + [0x00004be9] Advance Line by 7 to 264 + [0x00004beb] Advance PC by fixed size amount 4 to 0xdca + [0x00004bee] Copy (view 11) + [0x00004bef] Advance Line by 2 to 266 + [0x00004bf1] Advance PC by fixed size amount 2 to 0xdcc + [0x00004bf4] Copy (view 12) + [0x00004bf5] Set File Name to entry 1 in the File Name Table + [0x00004bf7] Set column to 1 + [0x00004bf9] Set is_stmt to 0 + [0x00004bfa] Advance Line by -256 to 10 + [0x00004bfd] Advance PC by fixed size amount 0 to 0xdcc + [0x00004c00] Copy (view 13) + [0x00004c01] Advance PC by fixed size amount 4 to 0xdd0 + [0x00004c04] Extended opcode 1: End of Sequence + + + Offset: 0x4c07 + Length: 388 + DWARF Version: 3 + Prologue Length: 285 + Minimum Instruction Length: 1 + Initial value of 'is_stmt': 1 + Line Base: -5 + Line Range: 14 + Opcode Base: 13 + + Opcodes: + Opcode 1 has 0 args + Opcode 2 has 1 arg + Opcode 3 has 1 arg + Opcode 4 has 1 arg + Opcode 5 has 1 arg + Opcode 6 has 0 args + Opcode 7 has 0 args + Opcode 8 has 0 args + Opcode 9 has 1 arg + Opcode 10 has 0 args + Opcode 11 has 0 args + Opcode 12 has 1 arg + + The Directory Table (offset 0x4c22): + 1 proxies + 2 /Users/Luppy/ox64/nuttx/include/arch + 3 /Users/Luppy/ox64/nuttx/include + 4 /Users/Luppy/ox64/nuttx/include/nuttx + 5 /Users/Luppy/ox64/nuttx/include/sys + + The File Name Table (offset 0x4cba): + Entry Dir Time Size Name + 1 1 0 0 PROXY_nxsem_destroy.c + 2 2 0 0 syscall.h + 3 2 0 0 types.h + 4 3 0 0 stdint.h + 5 4 0 0 queue.h + 6 3 0 0 semaphore.h + 7 5 0 0 syscall.h + 8 4 0 0 semaphore.h + + Line Number Statements: + [0x00004d2e] Set column to 1 + [0x00004d30] Extended opcode 2: set Address to 0xdd0 + [0x00004d3b] Special opcode 12: advance Address by 0 to 0xdd0 and Line by 7 to 8 + [0x00004d3c] Set column to 3 + [0x00004d3e] Advance Line by 1 to 9 + [0x00004d40] Advance PC by fixed size amount 0 to 0xdd0 + [0x00004d43] Copy (view 1) + [0x00004d44] Set column to 1 + [0x00004d46] Set is_stmt to 0 + [0x00004d47] Advance Line by -1 to 8 + [0x00004d49] Advance PC by fixed size amount 0 to 0xdd0 + [0x00004d4c] Copy (view 2) + [0x00004d4d] Set File Name to entry 2 in the File Name Table + [0x00004d4f] Set column to 3 + [0x00004d51] Set is_stmt to 1 + [0x00004d52] Advance Line by 191 to 199 + [0x00004d55] Advance PC by fixed size amount 2 to 0xdd2 + [0x00004d58] Copy (view 3) + [0x00004d59] Set column to 17 + [0x00004d5b] Set is_stmt to 0 + [0x00004d5c] Advance Line by 0 to 199 + [0x00004d5e] Advance PC by fixed size amount 0 to 0xdd2 + [0x00004d61] Copy (view 4) + [0x00004d62] Set column to 3 + [0x00004d64] Set is_stmt to 1 + [0x00004d65] Advance Line by 1 to 200 + [0x00004d67] Advance PC by fixed size amount 2 to 0xdd4 + [0x00004d6a] Copy (view 5) + [0x00004d6b] Advance Line by 2 to 202 + [0x00004d6d] Advance PC by fixed size amount 0 to 0xdd4 + [0x00004d70] Copy (view 6) + [0x00004d71] Advance Line by 7 to 209 + [0x00004d73] Advance PC by fixed size amount 4 to 0xdd8 + [0x00004d76] Copy (view 7) + [0x00004d77] Advance Line by 2 to 211 + [0x00004d79] Advance PC by fixed size amount 2 to 0xdda + [0x00004d7c] Copy (view 8) + [0x00004d7d] Set File Name to entry 1 in the File Name Table + [0x00004d7f] Set column to 1 + [0x00004d81] Set is_stmt to 0 + [0x00004d82] Advance Line by -201 to 10 + [0x00004d85] Advance PC by fixed size amount 0 to 0xdda + [0x00004d88] Copy (view 9) + [0x00004d89] Advance PC by fixed size amount 4 to 0xdde + [0x00004d8c] Extended opcode 1: End of Sequence + + + Offset: 0x4d8f + Length: 385 + DWARF Version: 3 + Prologue Length: 282 + Minimum Instruction Length: 1 + Initial value of 'is_stmt': 1 + Line Base: -5 + Line Range: 14 + Opcode Base: 13 + + Opcodes: + Opcode 1 has 0 args + Opcode 2 has 1 arg + Opcode 3 has 1 arg + Opcode 4 has 1 arg + Opcode 5 has 1 arg + Opcode 6 has 0 args + Opcode 7 has 0 args + Opcode 8 has 0 args + Opcode 9 has 1 arg + Opcode 10 has 0 args + Opcode 11 has 0 args + Opcode 12 has 1 arg + + The Directory Table (offset 0x4daa): + 1 proxies + 2 /Users/Luppy/ox64/nuttx/include/arch + 3 /Users/Luppy/ox64/nuttx/include + 4 /Users/Luppy/ox64/nuttx/include/nuttx + 5 /Users/Luppy/ox64/nuttx/include/sys + + The File Name Table (offset 0x4e42): + Entry Dir Time Size Name + 1 1 0 0 PROXY_nxsem_post.c + 2 2 0 0 syscall.h + 3 2 0 0 types.h + 4 3 0 0 stdint.h + 5 4 0 0 queue.h + 6 3 0 0 semaphore.h + 7 5 0 0 syscall.h + 8 4 0 0 semaphore.h + + Line Number Statements: + [0x00004eb3] Set column to 1 + [0x00004eb5] Extended opcode 2: set Address to 0xdde + [0x00004ec0] Special opcode 12: advance Address by 0 to 0xdde and Line by 7 to 8 + [0x00004ec1] Set column to 3 + [0x00004ec3] Advance Line by 1 to 9 + [0x00004ec5] Advance PC by fixed size amount 0 to 0xdde + [0x00004ec8] Copy (view 1) + [0x00004ec9] Set column to 1 + [0x00004ecb] Set is_stmt to 0 + [0x00004ecc] Advance Line by -1 to 8 + [0x00004ece] Advance PC by fixed size amount 0 to 0xdde + [0x00004ed1] Copy (view 2) + [0x00004ed2] Set File Name to entry 2 in the File Name Table + [0x00004ed4] Set column to 3 + [0x00004ed6] Set is_stmt to 1 + [0x00004ed7] Advance Line by 191 to 199 + [0x00004eda] Advance PC by fixed size amount 2 to 0xde0 + [0x00004edd] Copy (view 3) + [0x00004ede] Set column to 17 + [0x00004ee0] Set is_stmt to 0 + [0x00004ee1] Advance Line by 0 to 199 + [0x00004ee3] Advance PC by fixed size amount 0 to 0xde0 + [0x00004ee6] Copy (view 4) + [0x00004ee7] Set column to 3 + [0x00004ee9] Set is_stmt to 1 + [0x00004eea] Advance Line by 1 to 200 + [0x00004eec] Advance PC by fixed size amount 2 to 0xde2 + [0x00004eef] Copy (view 5) + [0x00004ef0] Advance Line by 2 to 202 + [0x00004ef2] Advance PC by fixed size amount 0 to 0xde2 + [0x00004ef5] Copy (view 6) + [0x00004ef6] Advance Line by 7 to 209 + [0x00004ef8] Advance PC by fixed size amount 4 to 0xde6 + [0x00004efb] Copy (view 7) + [0x00004efc] Advance Line by 2 to 211 + [0x00004efe] Advance PC by fixed size amount 2 to 0xde8 + [0x00004f01] Copy (view 8) + [0x00004f02] Set File Name to entry 1 in the File Name Table + [0x00004f04] Set column to 1 + [0x00004f06] Set is_stmt to 0 + [0x00004f07] Advance Line by -201 to 10 + [0x00004f0a] Advance PC by fixed size amount 0 to 0xde8 + [0x00004f0d] Copy (view 9) + [0x00004f0e] Advance PC by fixed size amount 4 to 0xdec + [0x00004f11] Extended opcode 1: End of Sequence + + + Offset: 0x4f14 + Length: 388 + DWARF Version: 3 + Prologue Length: 285 + Minimum Instruction Length: 1 + Initial value of 'is_stmt': 1 + Line Base: -5 + Line Range: 14 + Opcode Base: 13 + + Opcodes: + Opcode 1 has 0 args + Opcode 2 has 1 arg + Opcode 3 has 1 arg + Opcode 4 has 1 arg + Opcode 5 has 1 arg + Opcode 6 has 0 args + Opcode 7 has 0 args + Opcode 8 has 0 args + Opcode 9 has 1 arg + Opcode 10 has 0 args + Opcode 11 has 0 args + Opcode 12 has 1 arg + + The Directory Table (offset 0x4f2f): + 1 proxies + 2 /Users/Luppy/ox64/nuttx/include/arch + 3 /Users/Luppy/ox64/nuttx/include + 4 /Users/Luppy/ox64/nuttx/include/nuttx + 5 /Users/Luppy/ox64/nuttx/include/sys + + The File Name Table (offset 0x4fc7): + Entry Dir Time Size Name + 1 1 0 0 PROXY_nxsem_trywait.c + 2 2 0 0 syscall.h + 3 2 0 0 types.h + 4 3 0 0 stdint.h + 5 4 0 0 queue.h + 6 3 0 0 semaphore.h + 7 5 0 0 syscall.h + 8 4 0 0 semaphore.h + + Line Number Statements: + [0x0000503b] Set column to 1 + [0x0000503d] Extended opcode 2: set Address to 0xdec + [0x00005048] Special opcode 12: advance Address by 0 to 0xdec and Line by 7 to 8 + [0x00005049] Set column to 3 + [0x0000504b] Advance Line by 1 to 9 + [0x0000504d] Advance PC by fixed size amount 0 to 0xdec + [0x00005050] Copy (view 1) + [0x00005051] Set column to 1 + [0x00005053] Set is_stmt to 0 + [0x00005054] Advance Line by -1 to 8 + [0x00005056] Advance PC by fixed size amount 0 to 0xdec + [0x00005059] Copy (view 2) + [0x0000505a] Set File Name to entry 2 in the File Name Table + [0x0000505c] Set column to 3 + [0x0000505e] Set is_stmt to 1 + [0x0000505f] Advance Line by 191 to 199 + [0x00005062] Advance PC by fixed size amount 2 to 0xdee + [0x00005065] Copy (view 3) + [0x00005066] Set column to 17 + [0x00005068] Set is_stmt to 0 + [0x00005069] Advance Line by 0 to 199 + [0x0000506b] Advance PC by fixed size amount 0 to 0xdee + [0x0000506e] Copy (view 4) + [0x0000506f] Set column to 3 + [0x00005071] Set is_stmt to 1 + [0x00005072] Advance Line by 1 to 200 + [0x00005074] Advance PC by fixed size amount 2 to 0xdf0 + [0x00005077] Copy (view 5) + [0x00005078] Advance Line by 2 to 202 + [0x0000507a] Advance PC by fixed size amount 0 to 0xdf0 + [0x0000507d] Copy (view 6) + [0x0000507e] Advance Line by 7 to 209 + [0x00005080] Advance PC by fixed size amount 4 to 0xdf4 + [0x00005083] Copy (view 7) + [0x00005084] Advance Line by 2 to 211 + [0x00005086] Advance PC by fixed size amount 2 to 0xdf6 + [0x00005089] Copy (view 8) + [0x0000508a] Set File Name to entry 1 in the File Name Table + [0x0000508c] Set column to 1 + [0x0000508e] Set is_stmt to 0 + [0x0000508f] Advance Line by -201 to 10 + [0x00005092] Advance PC by fixed size amount 0 to 0xdf6 + [0x00005095] Copy (view 9) + [0x00005096] Advance PC by fixed size amount 4 to 0xdfa + [0x00005099] Extended opcode 1: End of Sequence + + + Offset: 0x509c + Length: 385 + DWARF Version: 3 + Prologue Length: 282 + Minimum Instruction Length: 1 + Initial value of 'is_stmt': 1 + Line Base: -5 + Line Range: 14 + Opcode Base: 13 + + Opcodes: + Opcode 1 has 0 args + Opcode 2 has 1 arg + Opcode 3 has 1 arg + Opcode 4 has 1 arg + Opcode 5 has 1 arg + Opcode 6 has 0 args + Opcode 7 has 0 args + Opcode 8 has 0 args + Opcode 9 has 1 arg + Opcode 10 has 0 args + Opcode 11 has 0 args + Opcode 12 has 1 arg + + The Directory Table (offset 0x50b7): + 1 proxies + 2 /Users/Luppy/ox64/nuttx/include/arch + 3 /Users/Luppy/ox64/nuttx/include + 4 /Users/Luppy/ox64/nuttx/include/nuttx + 5 /Users/Luppy/ox64/nuttx/include/sys + + The File Name Table (offset 0x514f): + Entry Dir Time Size Name + 1 1 0 0 PROXY_nxsem_wait.c + 2 2 0 0 syscall.h + 3 2 0 0 types.h + 4 3 0 0 stdint.h + 5 4 0 0 queue.h + 6 3 0 0 semaphore.h + 7 5 0 0 syscall.h + 8 4 0 0 semaphore.h + + Line Number Statements: + [0x000051c0] Set column to 1 + [0x000051c2] Extended opcode 2: set Address to 0xdfa + [0x000051cd] Special opcode 12: advance Address by 0 to 0xdfa and Line by 7 to 8 + [0x000051ce] Set column to 3 + [0x000051d0] Advance Line by 1 to 9 + [0x000051d2] Advance PC by fixed size amount 0 to 0xdfa + [0x000051d5] Copy (view 1) + [0x000051d6] Set column to 1 + [0x000051d8] Set is_stmt to 0 + [0x000051d9] Advance Line by -1 to 8 + [0x000051db] Advance PC by fixed size amount 0 to 0xdfa + [0x000051de] Copy (view 2) + [0x000051df] Set File Name to entry 2 in the File Name Table + [0x000051e1] Set column to 3 + [0x000051e3] Set is_stmt to 1 + [0x000051e4] Advance Line by 191 to 199 + [0x000051e7] Advance PC by fixed size amount 2 to 0xdfc + [0x000051ea] Copy (view 3) + [0x000051eb] Set column to 17 + [0x000051ed] Set is_stmt to 0 + [0x000051ee] Advance Line by 0 to 199 + [0x000051f0] Advance PC by fixed size amount 0 to 0xdfc + [0x000051f3] Copy (view 4) + [0x000051f4] Set column to 3 + [0x000051f6] Set is_stmt to 1 + [0x000051f7] Advance Line by 1 to 200 + [0x000051f9] Advance PC by fixed size amount 2 to 0xdfe + [0x000051fc] Copy (view 5) + [0x000051fd] Advance Line by 2 to 202 + [0x000051ff] Advance PC by fixed size amount 0 to 0xdfe + [0x00005202] Copy (view 6) + [0x00005203] Advance Line by 7 to 209 + [0x00005205] Advance PC by fixed size amount 4 to 0xe02 + [0x00005208] Copy (view 7) + [0x00005209] Advance Line by 2 to 211 + [0x0000520b] Advance PC by fixed size amount 2 to 0xe04 + [0x0000520e] Copy (view 8) + [0x0000520f] Set File Name to entry 1 in the File Name Table + [0x00005211] Set column to 1 + [0x00005213] Set is_stmt to 0 + [0x00005214] Advance Line by -201 to 10 + [0x00005217] Advance PC by fixed size amount 0 to 0xe04 + [0x0000521a] Copy (view 9) + [0x0000521b] Advance PC by fixed size amount 4 to 0xe08 + [0x0000521e] Extended opcode 1: End of Sequence + + + Offset: 0x5221 + Length: 360 + DWARF Version: 3 + Prologue Length: 221 + Minimum Instruction Length: 1 + Initial value of 'is_stmt': 1 + Line Base: -5 + Line Range: 14 + Opcode Base: 13 + + Opcodes: + Opcode 1 has 0 args + Opcode 2 has 1 arg + Opcode 3 has 1 arg + Opcode 4 has 1 arg + Opcode 5 has 1 arg + Opcode 6 has 0 args + Opcode 7 has 0 args + Opcode 8 has 0 args + Opcode 9 has 1 arg + Opcode 10 has 0 args + Opcode 11 has 0 args + Opcode 12 has 1 arg + + The Directory Table (offset 0x523c): + 1 proxies + 2 /Users/Luppy/ox64/nuttx/include/arch + 3 /Users/Luppy/ox64/nuttx/include + 4 /Users/Luppy/ox64/nuttx/include/sys + + The File Name Table (offset 0x52ae): + Entry Dir Time Size Name + 1 1 0 0 PROXY_write.c + 2 2 0 0 syscall.h + 3 2 0 0 types.h + 4 3 0 0 stdint.h + 5 4 0 0 types.h + 6 4 0 0 syscall.h + 7 3 0 0 unistd.h + + Line Number Statements: + [0x00005308] Set column to 1 + [0x0000530a] Extended opcode 2: set Address to 0xe08 + [0x00005315] Special opcode 12: advance Address by 0 to 0xe08 and Line by 7 to 8 + [0x00005316] Set column to 3 + [0x00005318] Advance Line by 1 to 9 + [0x0000531a] Advance PC by fixed size amount 0 to 0xe08 + [0x0000531d] Copy (view 1) + [0x0000531e] Set column to 1 + [0x00005320] Set is_stmt to 0 + [0x00005321] Advance Line by -1 to 8 + [0x00005323] Advance PC by fixed size amount 0 to 0xe08 + [0x00005326] Copy (view 2) + [0x00005327] Set File Name to entry 2 in the File Name Table + [0x00005329] Set column to 3 + [0x0000532b] Set is_stmt to 1 + [0x0000532c] Advance Line by 244 to 252 + [0x0000532f] Advance PC by fixed size amount 6 to 0xe0e + [0x00005332] Copy (view 3) + [0x00005333] Set column to 17 + [0x00005335] Set is_stmt to 0 + [0x00005336] Advance Line by 0 to 252 + [0x00005338] Advance PC by fixed size amount 0 to 0xe0e + [0x0000533b] Copy (view 4) + [0x0000533c] Set column to 3 + [0x0000533e] Set is_stmt to 1 + [0x0000533f] Advance Line by 1 to 253 + [0x00005341] Advance PC by fixed size amount 4 to 0xe12 + [0x00005344] Copy (view 5) + [0x00005345] Set column to 32 + [0x00005347] Set is_stmt to 0 + [0x00005348] Advance Line by 0 to 253 + [0x0000534a] Advance PC by fixed size amount 0 to 0xe12 + [0x0000534d] Copy (view 6) + [0x0000534e] Set column to 3 + [0x00005350] Set is_stmt to 1 + [0x00005351] Advance Line by 1 to 254 + [0x00005353] Advance PC by fixed size amount 2 to 0xe14 + [0x00005356] Copy (view 7) + [0x00005357] Set column to 17 + [0x00005359] Set is_stmt to 0 + [0x0000535a] Advance Line by 0 to 254 + [0x0000535c] Advance PC by fixed size amount 0 to 0xe14 + [0x0000535f] Copy (view 8) + [0x00005360] Set column to 3 + [0x00005362] Set is_stmt to 1 + [0x00005363] Advance Line by 1 to 255 + [0x00005365] Advance PC by fixed size amount 2 to 0xe16 + [0x00005368] Copy (view 9) + [0x00005369] Advance Line by 2 to 257 + [0x0000536b] Advance PC by fixed size amount 0 to 0xe16 + [0x0000536e] Copy (view 10) + [0x0000536f] Advance Line by 7 to 264 + [0x00005371] Advance PC by fixed size amount 4 to 0xe1a + [0x00005374] Copy (view 11) + [0x00005375] Advance Line by 2 to 266 + [0x00005377] Advance PC by fixed size amount 2 to 0xe1c + [0x0000537a] Copy (view 12) + [0x0000537b] Set File Name to entry 1 in the File Name Table + [0x0000537d] Set column to 1 + [0x0000537f] Set is_stmt to 0 + [0x00005380] Advance Line by -256 to 10 + [0x00005383] Advance PC by fixed size amount 0 to 0xe1c + [0x00005386] Copy (view 13) + [0x00005387] Advance PC by fixed size amount 2 to 0xe1e + [0x0000538a] Extended opcode 1: End of Sequence + + +Contents of the .debug_aranges section (loaded from ../apps/bin/hello): + + Length: 60 + Version: 2 + Offset into .debug_info: 0x0 + Pointer Size: 8 + Segment Size: 0 + + Address Length + 0000000000000000 000000000000001a + 000000000000001a 0000000000000024 + 0000000000000000 0000000000000000 + Length: 44 + Version: 2 + Offset into .debug_info: 0x26e + Pointer Size: 8 + Segment Size: 0 + + Address Length + 000000000000003e 000000000000001c + 0000000000000000 0000000000000000 + Length: 44 + Version: 2 + Offset into .debug_info: 0x368 + Pointer Size: 8 + Segment Size: 0 + + Address Length + 000000000000005a 0000000000000086 + 0000000000000000 0000000000000000 + Length: 60 + Version: 2 + Offset into .debug_info: 0x955 + Pointer Size: 8 + Segment Size: 0 + + Address Length + 00000000000000e0 000000000000012a + 000000000000020a 000000000000003e + 0000000000000000 0000000000000000 + Length: 60 + Version: 2 + Offset into .debug_info: 0x1094 + Pointer Size: 8 + Segment Size: 0 + + Address Length + 0000000000000248 0000000000000088 + 00000000000002d0 0000000000000034 + 0000000000000000 0000000000000000 + Length: 44 + Version: 2 + Offset into .debug_info: 0x1653 + Pointer Size: 8 + Segment Size: 0 + + Address Length + 0000000000000304 0000000000000060 + 0000000000000000 0000000000000000 + Length: 60 + Version: 2 + Offset into .debug_info: 0x1b8a + Pointer Size: 8 + Segment Size: 0 + + Address Length + 0000000000000364 0000000000000092 + 00000000000003f6 000000000000003a + 0000000000000000 0000000000000000 + Length: 76 + Version: 2 + Offset into .debug_info: 0x2224 + Pointer Size: 8 + Segment Size: 0 + + Address Length + 0000000000000430 000000000000000a + 000000000000043a 000000000000000a + 0000000000000444 000000000000000a + 0000000000000000 0000000000000000 + Length: 60 + Version: 2 + Offset into .debug_info: 0x2776 + Pointer Size: 8 + Segment Size: 0 + + Address Length + 000000000000044e 0000000000000016 + 0000000000000464 0000000000000026 + 0000000000000000 0000000000000000 + Length: 76 + Version: 2 + Offset into .debug_info: 0x2d29 + Pointer Size: 8 + Segment Size: 0 + + Address Length + 000000000000048a 0000000000000028 + 00000000000004b2 000000000000001e + 00000000000004d0 000000000000000c + 0000000000000000 0000000000000000 + Length: 44 + Version: 2 + Offset into .debug_info: 0x2f03 + Pointer Size: 8 + Segment Size: 0 + + Address Length + 00000000000004dc 0000000000000012 + 0000000000000000 0000000000000000 + Length: 44 + Version: 2 + Offset into .debug_info: 0x2fe7 + Pointer Size: 8 + Segment Size: 0 + + Address Length + 00000000000004ee 000000000000001c + 0000000000000000 0000000000000000 + Length: 44 + Version: 2 + Offset into .debug_info: 0x30fc + Pointer Size: 8 + Segment Size: 0 + + Address Length + 000000000000050a 000000000000000a + 0000000000000000 0000000000000000 + Length: 44 + Version: 2 + Offset into .debug_info: 0x36a3 + Pointer Size: 8 + Segment Size: 0 + + Address Length + 0000000000000514 0000000000000016 + 0000000000000000 0000000000000000 + Length: 348 + Version: 2 + Offset into .debug_info: 0x3c64 + Pointer Size: 8 + Segment Size: 0 + + Address Length + 000000000000052a 0000000000000038 + 0000000000000562 0000000000000020 + 0000000000000582 0000000000000020 + 00000000000005a2 0000000000000022 + 00000000000005c4 000000000000006e + 0000000000000632 0000000000000056 + 0000000000000688 0000000000000072 + 00000000000006fa 0000000000000066 + 0000000000000760 000000000000003c + 000000000000079c 000000000000000e + 00000000000007aa 000000000000000c + 00000000000007b6 0000000000000020 + 00000000000007d6 0000000000000008 + 00000000000007de 0000000000000008 + 00000000000007e6 0000000000000054 + 000000000000083a 0000000000000054 + 000000000000088e 0000000000000058 + 00000000000008e6 0000000000000050 + 0000000000000936 0000000000000042 + 0000000000000978 000000000000002a + 0000000000000000 0000000000000000 + Length: 44 + Version: 2 + Offset into .debug_info: 0x4b47 + Pointer Size: 8 + Segment Size: 0 + + Address Length + 00000000000009a2 0000000000000026 + 0000000000000000 0000000000000000 + Length: 44 + Version: 2 + Offset into .debug_info: 0x4c9b + Pointer Size: 8 + Segment Size: 0 + + Address Length + 00000000000009c8 000000000000002e + 0000000000000000 0000000000000000 + Length: 44 + Version: 2 + Offset into .debug_info: 0x4dce + Pointer Size: 8 + Segment Size: 0 + + Address Length + 00000000000009f6 000000000000006c + 0000000000000000 0000000000000000 + Length: 60 + Version: 2 + Offset into .debug_info: 0x540c + Pointer Size: 8 + Segment Size: 0 + + Address Length + 0000000000000a62 0000000000000044 + 0000000000000aa6 0000000000000044 + 0000000000000000 0000000000000000 + Length: 60 + Version: 2 + Offset into .debug_info: 0x56fd + Pointer Size: 8 + Segment Size: 0 + + Address Length + 0000000000000aea 0000000000000042 + 0000000000000b2c 000000000000002e + 0000000000000000 0000000000000000 + Length: 60 + Version: 2 + Offset into .debug_info: 0x59c1 + Pointer Size: 8 + Segment Size: 0 + + Address Length + 0000000000000b5a 000000000000001c + 0000000000000b76 000000000000002e + 0000000000000000 0000000000000000 + Length: 60 + Version: 2 + Offset into .debug_info: 0x5c19 + Pointer Size: 8 + Segment Size: 0 + + Address Length + 0000000000000ba4 0000000000000046 + 0000000000000bea 0000000000000046 + 0000000000000000 0000000000000000 + Length: 60 + Version: 2 + Offset into .debug_info: 0x61d2 + Pointer Size: 8 + Segment Size: 0 + + Address Length + 0000000000000c30 0000000000000064 + 0000000000000c94 000000000000007a + 0000000000000000 0000000000000000 + Length: 44 + Version: 2 + Offset into .debug_info: 0x68be + Pointer Size: 8 + Segment Size: 0 + + Address Length + 0000000000000d0e 0000000000000016 + 0000000000000000 0000000000000000 + Length: 44 + Version: 2 + Offset into .debug_info: 0x69e7 + Pointer Size: 8 + Segment Size: 0 + + Address Length + 0000000000000d24 000000000000001e + 0000000000000000 0000000000000000 + Length: 44 + Version: 2 + Offset into .debug_info: 0x6ae6 + Pointer Size: 8 + Segment Size: 0 + + Address Length + 0000000000000d42 000000000000000e + 0000000000000000 0000000000000000 + Length: 44 + Version: 2 + Offset into .debug_info: 0x6b9c + Pointer Size: 8 + Segment Size: 0 + + Address Length + 0000000000000d50 0000000000000018 + 0000000000000000 0000000000000000 + Length: 44 + Version: 2 + Offset into .debug_info: 0x70d0 + Pointer Size: 8 + Segment Size: 0 + + Address Length + 0000000000000d68 000000000000000c + 0000000000000000 0000000000000000 + Length: 44 + Version: 2 + Offset into .debug_info: 0x7548 + Pointer Size: 8 + Segment Size: 0 + + Address Length + 0000000000000d74 0000000000000014 + 0000000000000000 0000000000000000 + Length: 44 + Version: 2 + Offset into .debug_info: 0x7a59 + Pointer Size: 8 + Segment Size: 0 + + Address Length + 0000000000000d88 000000000000000c + 0000000000000000 0000000000000000 + Length: 44 + Version: 2 + Offset into .debug_info: 0x7eaa + Pointer Size: 8 + Segment Size: 0 + + Address Length + 0000000000000d94 0000000000000018 + 0000000000000000 0000000000000000 + Length: 44 + Version: 2 + Offset into .debug_info: 0x83b8 + Pointer Size: 8 + Segment Size: 0 + + Address Length + 0000000000000dac 000000000000000e + 0000000000000000 0000000000000000 + Length: 44 + Version: 2 + Offset into .debug_info: 0x8852 + Pointer Size: 8 + Segment Size: 0 + + Address Length + 0000000000000dba 0000000000000016 + 0000000000000000 0000000000000000 + Length: 44 + Version: 2 + Offset into .debug_info: 0x8e98 + Pointer Size: 8 + Segment Size: 0 + + Address Length + 0000000000000dd0 000000000000000e + 0000000000000000 0000000000000000 + Length: 44 + Version: 2 + Offset into .debug_info: 0x940b + Pointer Size: 8 + Segment Size: 0 + + Address Length + 0000000000000dde 000000000000000e + 0000000000000000 0000000000000000 + Length: 44 + Version: 2 + Offset into .debug_info: 0x997f + Pointer Size: 8 + Segment Size: 0 + + Address Length + 0000000000000dec 000000000000000e + 0000000000000000 0000000000000000 + Length: 44 + Version: 2 + Offset into .debug_info: 0x9ef2 + Pointer Size: 8 + Segment Size: 0 + + Address Length + 0000000000000dfa 000000000000000e + 0000000000000000 0000000000000000 + Length: 44 + Version: 2 + Offset into .debug_info: 0xa465 + Pointer Size: 8 + Segment Size: 0 + + Address Length + 0000000000000e08 0000000000000016 + 0000000000000000 0000000000000000 + +Contents of the .debug_loc section (loaded from ../apps/bin/hello): + + Warning: This section has relocations - addresses seen here may not be accurate. + + Offset Begin End Expression + 00000000 000000000000001a 0000000000000035 (DW_OP_reg10 (a0)) + 00000013 0000000000000035 000000000000003e (DW_OP_GNU_entry_value: (DW_OP_reg10 (a0)); DW_OP_stack_value) + 00000029 + 00000039 000000000000001a 0000000000000035 (DW_OP_reg11 (a1)) + 0000004c 0000000000000035 000000000000003e (DW_OP_GNU_entry_value: (DW_OP_reg11 (a1)); DW_OP_stack_value) + 00000062 + 00000072 0000000000000036 000000000000003d (DW_OP_reg10 (a0)) + 00000085 + 00000095 000000000000003e 0000000000000048 (DW_OP_reg10 (a0)) + 000000a8 0000000000000048 000000000000005a (DW_OP_GNU_entry_value: (DW_OP_reg10 (a0)); DW_OP_stack_value) + 000000be + 000000ce 000000000000003e 0000000000000051 (DW_OP_reg11 (a1)) + 000000e1 0000000000000051 000000000000005a (DW_OP_GNU_entry_value: (DW_OP_reg11 (a1)); DW_OP_stack_value) + 000000f7 + 00000107 000000000000005a 0000000000000062 (DW_OP_reg10 (a0)) + 0000011a 0000000000000062 000000000000008c (DW_OP_reg8 (s0)) + 0000012d 000000000000008c 00000000000000e0 (DW_OP_GNU_entry_value: (DW_OP_reg10 (a0)); DW_OP_stack_value) + 00000143 + 00000153 0000000000000070 00000000000000dc (DW_OP_reg9 (s1)) + 00000166 + 00000176 0000000000000084 0000000000000094 (DW_OP_reg10 (a0)) + 00000189 + 00000199 0000000000000070 00000000000000ac (DW_OP_const1s: -1; DW_OP_stack_value) + 000001ae 00000000000000c2 00000000000000da (DW_OP_reg8 (s0)) + 000001c1 + 000001d1 00000000000000a0 00000000000000b2 (DW_OP_reg10 (a0)) + 000001e4 00000000000000ba 00000000000000c0 (DW_OP_reg10 (a0)) + 000001f7 + 00000207 000000000000020a 0000000000000212 (DW_OP_reg10 (a0)) + 0000021a 0000000000000212 0000000000000232 (DW_OP_reg9 (s1)) + 0000022d 0000000000000232 0000000000000248 (DW_OP_GNU_entry_value: (DW_OP_reg10 (a0)); DW_OP_stack_value) + 00000243 + 00000253 000000000000020a 0000000000000221 (DW_OP_reg11 (a1)) + 00000266 0000000000000221 0000000000000246 (DW_OP_fbreg: -40) + 0000027a 0000000000000246 0000000000000248 (DW_OP_breg2 (sp): -40) + 0000028e + 0000029e 000000000000020a 0000000000000221 (DW_OP_reg12 (a2)) + 000002b1 0000000000000221 0000000000000240 (DW_OP_reg8 (s0)) + 000002c4 0000000000000240 0000000000000248 (DW_OP_GNU_entry_value: (DW_OP_reg12 (a2)); DW_OP_stack_value) + 000002da + 000002ea 0000000000000232 0000000000000244 (DW_OP_reg9 (s1)) + 000002fd 0000000000000244 0000000000000248 (DW_OP_reg10 (a0)) + 00000310 + 00000320 00000000000000e0 00000000000000f7 (DW_OP_reg10 (a0)) + 00000333 00000000000000f7 000000000000010e (DW_OP_GNU_entry_value: (DW_OP_reg10 (a0)); DW_OP_stack_value) + 00000349 000000000000010e 000000000000011f (DW_OP_reg10 (a0)) + 0000035c 000000000000011f 0000000000000134 (DW_OP_GNU_entry_value: (DW_OP_reg10 (a0)); DW_OP_stack_value) + 00000372 0000000000000134 0000000000000140 (DW_OP_reg10 (a0)) + 00000385 0000000000000140 0000000000000146 (DW_OP_reg19 (s3)) + 00000398 0000000000000146 0000000000000147 (DW_OP_reg11 (a1)) + 000003ab 0000000000000147 000000000000014e (DW_OP_reg19 (s3)) + 000003be 000000000000014e 0000000000000157 (DW_OP_reg11 (a1)) + 000003d1 0000000000000157 000000000000015a (DW_OP_reg19 (s3)) + 000003e4 000000000000015a 000000000000015c (DW_OP_reg10 (a0)) + 000003f7 000000000000015c 000000000000020a (DW_OP_reg19 (s3)) + 0000040a + 0000041a 00000000000000e0 00000000000000f7 (DW_OP_reg11 (a1)) + 0000042d 00000000000000f7 00000000000000fe (DW_OP_GNU_entry_value: (DW_OP_reg11 (a1)); DW_OP_stack_value) + 00000443 000000000000010e 000000000000011f (DW_OP_reg11 (a1)) + 00000456 000000000000011f 0000000000000124 (DW_OP_GNU_entry_value: (DW_OP_reg11 (a1)); DW_OP_stack_value) + 0000046c 0000000000000134 0000000000000144 (DW_OP_reg11 (a1)) + 0000047f 0000000000000144 0000000000000146 (DW_OP_reg18 (s2)) + 00000492 0000000000000146 0000000000000147 (DW_OP_reg12 (a2)) + 000004a5 0000000000000147 000000000000014e (DW_OP_reg18 (s2)) + 000004b8 000000000000014e 0000000000000157 (DW_OP_reg12 (a2)) + 000004cb 0000000000000157 000000000000015a (DW_OP_reg18 (s2)) + 000004de 000000000000015a 0000000000000163 (DW_OP_reg11 (a1)) + 000004f1 0000000000000163 0000000000000198 (DW_OP_reg18 (s2)) + 00000504 0000000000000198 00000000000001c0 (DW_OP_reg20 (s4)) + 00000517 00000000000001c0 00000000000001cc (DW_OP_reg18 (s2)) + 0000052a 00000000000001cc 00000000000001cd (DW_OP_reg12 (a2)) + 0000053d 00000000000001cd 00000000000001d4 (DW_OP_reg18 (s2)) + 00000550 00000000000001de 00000000000001e7 (DW_OP_reg12 (a2)) + 00000563 00000000000001e7 00000000000001ea (DW_OP_reg18 (s2)) + 00000576 00000000000001ea 0000000000000204 (DW_OP_reg20 (s4)) + 00000589 + 00000599 00000000000000e0 00000000000000f7 (DW_OP_reg12 (a2)) + 000005ac 00000000000000f7 000000000000010e (DW_OP_GNU_entry_value: (DW_OP_reg12 (a2)); DW_OP_stack_value) + 000005c2 000000000000010e 0000000000000118 (DW_OP_reg12 (a2)) + 000005d5 0000000000000118 000000000000020a (DW_OP_reg9 (s1)) + 000005e8 + 000005f8 00000000000000e0 00000000000000f7 (DW_OP_reg10 (a0)) + 0000060b 00000000000000f7 000000000000010e (DW_OP_GNU_entry_value: (DW_OP_reg10 (a0)); DW_OP_stack_value) + 00000621 000000000000010e 000000000000011f (DW_OP_reg10 (a0)) + 00000634 000000000000011f 0000000000000134 (DW_OP_GNU_entry_value: (DW_OP_reg10 (a0)); DW_OP_stack_value) + 0000064a 0000000000000134 0000000000000140 (DW_OP_reg10 (a0)) + 0000065d 0000000000000140 0000000000000146 (DW_OP_reg19 (s3)) + 00000670 0000000000000146 0000000000000147 (DW_OP_reg11 (a1)) + 00000683 0000000000000147 000000000000014e (DW_OP_reg19 (s3)) + 00000696 000000000000014e 0000000000000157 (DW_OP_reg11 (a1)) + 000006a9 0000000000000157 000000000000015a (DW_OP_reg19 (s3)) + 000006bc 000000000000015a 000000000000015c (DW_OP_reg10 (a0)) + 000006cf 000000000000015c 000000000000020a (DW_OP_reg19 (s3)) + 000006e2 + 000006f2 00000000000000e0 00000000000000f7 (DW_OP_reg10 (a0)) + 00000705 00000000000000f7 00000000000000fe (DW_OP_GNU_entry_value: (DW_OP_reg10 (a0)); DW_OP_stack_value) + 0000071b 000000000000010e 000000000000011f (DW_OP_reg10 (a0)) + 0000072e 000000000000011f 0000000000000124 (DW_OP_GNU_entry_value: (DW_OP_reg10 (a0)); DW_OP_stack_value) + 00000744 0000000000000134 0000000000000140 (DW_OP_reg10 (a0)) + 00000757 0000000000000140 0000000000000146 (DW_OP_reg19 (s3)) + 0000076a 0000000000000146 0000000000000147 (DW_OP_reg11 (a1)) + 0000077d 0000000000000147 000000000000014e (DW_OP_reg19 (s3)) + 00000790 000000000000014e 0000000000000157 (DW_OP_reg11 (a1)) + 000007a3 0000000000000157 000000000000015a (DW_OP_reg19 (s3)) + 000007b6 000000000000015a 000000000000015c (DW_OP_reg10 (a0)) + 000007c9 000000000000015c 000000000000019e (DW_OP_reg19 (s3)) + 000007dc 000000000000019e 00000000000001c0 (DW_OP_reg8 (s0)) + 000007ef 00000000000001c0 00000000000001c2 (DW_OP_reg19 (s3)) + 00000802 00000000000001c2 00000000000001d0 (DW_OP_reg8 (s0)) + 00000815 00000000000001d4 0000000000000202 (DW_OP_reg8 (s0)) + 00000828 0000000000000208 000000000000020a (DW_OP_reg8 (s0)) + 0000083b + 0000084b 00000000000000e0 00000000000000fe (DW_OP_const1s: -1; DW_OP_stack_value) + 00000860 000000000000010e 0000000000000124 (DW_OP_const1s: -1; DW_OP_stack_value) + 00000875 0000000000000134 0000000000000148 (DW_OP_const1s: -1; DW_OP_stack_value) + 0000088a 0000000000000148 000000000000014e (DW_OP_reg10 (a0)) + 0000089d 000000000000014e 0000000000000158 (DW_OP_const1s: -1; DW_OP_stack_value) + 000008b2 0000000000000158 000000000000015a (DW_OP_reg10 (a0)) + 000008c5 000000000000015a 00000000000001ce (DW_OP_const1s: -1; DW_OP_stack_value) + 000008da 00000000000001ce 00000000000001d4 (DW_OP_reg10 (a0)) + 000008ed 00000000000001d8 00000000000001de (DW_OP_reg10 (a0)) + 00000900 00000000000001de 00000000000001e8 (DW_OP_const1s: -1; DW_OP_stack_value) + 00000915 00000000000001e8 00000000000001ea (DW_OP_reg10 (a0)) + 00000928 00000000000001ea 000000000000020a (DW_OP_const1s: -1; DW_OP_stack_value) + 0000093d + 0000094d 0000000000000172 000000000000019e (DW_OP_reg8 (s0)) + 00000960 00000000000001c0 00000000000001c2 (DW_OP_reg8 (s0)) + 00000973 + 00000983 00000000000001b8 00000000000001c0 (DW_OP_reg10 (a0)) + 00000996 + 000009a6 00000000000002d0 00000000000002e1 (DW_OP_reg10 (a0)) + 000009b9 00000000000002e1 00000000000002fc (DW_OP_reg8 (s0)) + 000009cc 00000000000002fc 0000000000000304 (DW_OP_GNU_entry_value: (DW_OP_reg10 (a0)); DW_OP_stack_value) + 000009e2 + 000009f2 00000000000002ee 0000000000000300 (DW_OP_reg9 (s1)) + 00000a05 0000000000000300 0000000000000304 (DW_OP_reg10 (a0)) + 00000a18 + 00000a28 0000000000000248 0000000000000262 (DW_OP_reg10 (a0)) + 00000a3b 0000000000000262 00000000000002a4 (DW_OP_reg8 (s0)) + 00000a4e 00000000000002a4 00000000000002ac (DW_OP_GNU_entry_value: (DW_OP_reg10 (a0)); DW_OP_stack_value) + 00000a64 00000000000002ac 00000000000002cc (DW_OP_reg8 (s0)) + 00000a77 00000000000002cc 00000000000002ce (DW_OP_reg10 (a0)) + 00000a8a 00000000000002ce 00000000000002d0 (DW_OP_GNU_entry_value: (DW_OP_reg10 (a0)); DW_OP_stack_value) + 00000aa0 + 00000ab0 0000000000000276 0000000000000280 (DW_OP_reg18 (s2)) + 00000ac3 0000000000000280 0000000000000281 (DW_OP_reg11 (a1)) + 00000ad6 0000000000000281 00000000000002a0 (DW_OP_reg18 (s2)) + 00000ae9 00000000000002ac 00000000000002b5 (DW_OP_reg11 (a1)) + 00000afc 00000000000002b5 00000000000002b8 (DW_OP_reg18 (s2)) + 00000b0f 00000000000002b8 00000000000002bc (DW_OP_breg18 (s2): 0; DW_OP_breg10 (a0): 0; DW_OP_plus; DW_OP_stack_value) + 00000b27 00000000000002bc 00000000000002c4 (DW_OP_reg18 (s2)) + 00000b3a + 00000b4a 0000000000000282 0000000000000299 (DW_OP_reg10 (a0)) + 00000b5d 00000000000002b6 00000000000002c4 (DW_OP_reg10 (a0)) + 00000b70 + 00000b80 0000000000000304 0000000000000311 (DW_OP_reg10 (a0)) + 00000b93 0000000000000311 000000000000031a (DW_OP_GNU_entry_value: (DW_OP_reg10 (a0)); DW_OP_stack_value) + 00000ba9 000000000000031a 0000000000000320 (DW_OP_reg10 (a0)) + 00000bbc 0000000000000320 0000000000000349 (DW_OP_reg15 (a5)) + 00000bcf 0000000000000349 0000000000000358 (DW_OP_GNU_entry_value: (DW_OP_reg10 (a0)); DW_OP_stack_value) + 00000be5 0000000000000358 0000000000000361 (DW_OP_reg15 (a5)) + 00000bf8 0000000000000361 0000000000000364 (DW_OP_GNU_entry_value: (DW_OP_reg10 (a0)); DW_OP_stack_value) + 00000c0e + 00000c1e 000000000000034c 0000000000000352 (DW_OP_reg15 (a5)) + 00000c31 + 00000c41 00000000000003f6 00000000000003fe (DW_OP_reg10 (a0)) + 00000c54 00000000000003fe 000000000000041a (DW_OP_reg9 (s1)) + 00000c67 000000000000041a 0000000000000430 (DW_OP_GNU_entry_value: (DW_OP_reg10 (a0)); DW_OP_stack_value) + 00000c7d + 00000c8d 00000000000003f6 000000000000040b (DW_OP_reg11 (a1)) + 00000ca0 000000000000040b 0000000000000428 (DW_OP_reg8 (s0)) + 00000cb3 0000000000000428 0000000000000430 (DW_OP_GNU_entry_value: (DW_OP_reg11 (a1)); DW_OP_stack_value) + 00000cc9 + 00000cd9 000000000000041a 000000000000042c (DW_OP_reg9 (s1)) + 00000cec + 00000cfc 0000000000000364 0000000000000383 (DW_OP_reg10 (a0)) + 00000d0f 0000000000000383 00000000000003d8 (DW_OP_reg18 (s2)) + 00000d22 00000000000003d8 00000000000003de (DW_OP_GNU_entry_value: (DW_OP_reg10 (a0)); DW_OP_stack_value) + 00000d38 00000000000003de 00000000000003f0 (DW_OP_reg18 (s2)) + 00000d4b 00000000000003f0 00000000000003f6 (DW_OP_reg10 (a0)) + 00000d5e + 00000d6e 0000000000000364 0000000000000383 (DW_OP_reg11 (a1)) + 00000d81 0000000000000383 00000000000003d4 (DW_OP_reg8 (s0)) + 00000d94 00000000000003d4 00000000000003de (DW_OP_GNU_entry_value: (DW_OP_reg11 (a1)); DW_OP_stack_value) + 00000daa 00000000000003de 00000000000003f6 (DW_OP_reg8 (s0)) + 00000dbd + 00000dcd 0000000000000396 000000000000039a (DW_OP_reg10 (a0)) + 00000de0 000000000000039a 00000000000003a0 (DW_OP_reg11 (a1)) + 00000df3 00000000000003a0 00000000000003a4 (DW_OP_reg10 (a0)) + 00000e06 + 00000e16 0000000000000386 000000000000038e (DW_OP_reg10 (a0)) + 00000e29 000000000000038e 0000000000000395 (DW_OP_reg11 (a1)) + 00000e3c + 00000e4c 00000000000003a6 00000000000003b0 (DW_OP_reg9 (s1)) + 00000e5f 00000000000003b8 00000000000003d0 (DW_OP_reg9 (s1)) + 00000e72 00000000000003de 00000000000003f0 (DW_OP_reg9 (s1)) + 00000e85 + 00000e95 00000000000003a6 00000000000003ae (DW_OP_breg9 (s1): 0; DW_OP_breg18 (s2): 0; DW_OP_minus; DW_OP_stack_value) + 00000ead 00000000000003ae 00000000000003b0 (DW_OP_breg9 (s1): 0; DW_OP_breg18 (s2): 0; DW_OP_minus; DW_OP_plus_uconst: 1; DW_OP_stack_value) + 00000ec7 00000000000003b8 00000000000003d0 (DW_OP_breg9 (s1): 0; DW_OP_breg18 (s2): 0; DW_OP_minus; DW_OP_stack_value) + 00000edf 00000000000003de 00000000000003f0 (DW_OP_breg9 (s1): 0; DW_OP_breg18 (s2): 0; DW_OP_minus; DW_OP_stack_value) + 00000ef7 + 00000f07 00000000000003a6 00000000000003ae (DW_OP_reg10 (a0)) + 00000f1a 00000000000003c8 00000000000003ce (DW_OP_reg10 (a0)) + 00000f2d 00000000000003de 00000000000003e0 (DW_OP_reg10 (a0)) + 00000f40 00000000000003e8 00000000000003f0 (DW_OP_reg10 (a0)) + 00000f53 + 00000f63 0000000000000444 0000000000000446 (DW_OP_reg10 (a0)) + 00000f76 0000000000000446 000000000000044d (DW_OP_breg10 (a0): -8; DW_OP_stack_value) + 00000f8b 000000000000044d 000000000000044e (DW_OP_GNU_entry_value: (DW_OP_reg10 (a0)); DW_OP_stack_value) + 00000fa1 + 00000fb1 000000000000043a 000000000000043c (DW_OP_reg10 (a0)) + 00000fc4 000000000000043c 0000000000000443 (DW_OP_breg10 (a0): -8; DW_OP_stack_value) + 00000fd9 0000000000000443 0000000000000444 (DW_OP_GNU_entry_value: (DW_OP_reg10 (a0)); DW_OP_stack_value) + 00000fef + 00000fff 0000000000000430 0000000000000432 (DW_OP_reg10 (a0)) + 00001012 0000000000000432 0000000000000439 (DW_OP_breg10 (a0): -8; DW_OP_stack_value) + 00001027 0000000000000439 000000000000043a (DW_OP_GNU_entry_value: (DW_OP_reg10 (a0)); DW_OP_stack_value) + 0000103d + 0000104d 0000000000000464 0000000000000473 (DW_OP_reg10 (a0)) + 00001060 0000000000000473 000000000000048a (DW_OP_GNU_entry_value: (DW_OP_reg10 (a0)); DW_OP_stack_value) + 00001076 + 00001086 000000000000045a 0000000000000460 (DW_OP_reg10 (a0)) + 00001099 0000000000000460 0000000000000464 (DW_OP_breg10 (a0): -40; DW_OP_stack_value) + 000010ae + 000010be 00000000000004d0 00000000000004db (DW_OP_reg10 (a0)) + 000010d1 00000000000004db 00000000000004dc (DW_OP_GNU_entry_value: (DW_OP_reg10 (a0)); DW_OP_stack_value) + 000010e7 + 000010f7 00000000000004b2 00000000000004bc (DW_OP_reg10 (a0)) + 0000110a 00000000000004bc 00000000000004d0 (DW_OP_GNU_entry_value: (DW_OP_reg10 (a0)); DW_OP_stack_value) + 00001120 + 00001130 000000000000048a 0000000000000494 (DW_OP_reg10 (a0)) + 00001143 0000000000000494 00000000000004b2 (DW_OP_GNU_entry_value: (DW_OP_reg10 (a0)); DW_OP_stack_value) + 00001159 + 00001169 00000000000004dc 00000000000004e8 (DW_OP_reg10 (a0)) + 0000117c 00000000000004e8 00000000000004ea (DW_OP_GNU_entry_value: (DW_OP_reg10 (a0)); DW_OP_stack_value) + 00001192 00000000000004ea 00000000000004ee (DW_OP_reg10 (a0)) + 000011a5 + 000011b5 00000000000004dc 00000000000004de (DW_OP_reg10 (a0)) + 000011c8 00000000000004de 00000000000004ee (DW_OP_reg15 (a5)) + 000011db + 000011eb 00000000000004ee 00000000000004f0 (DW_OP_reg12 (a2)) + 000011fe 00000000000004f0 0000000000000504 (DW_OP_breg15 (a5): 0; DW_OP_not; DW_OP_breg12 (a2): 0; DW_OP_plus; DW_OP_stack_value) + 00001217 0000000000000504 000000000000050a (DW_OP_breg12 (a2): 0; DW_OP_breg15 (a5): 0; DW_OP_minus; DW_OP_stack_value) + 0000122f + 0000123f 00000000000004ee 00000000000004f0 (DW_OP_reg10 (a0)) + 00001252 00000000000004f0 00000000000004f6 (DW_OP_breg10 (a0): 0; DW_OP_breg15 (a5): 0; DW_OP_plus; DW_OP_stack_value) + 0000126a 00000000000004f6 0000000000000504 (DW_OP_breg10 (a0): 0; DW_OP_breg15 (a5): 0; DW_OP_plus; DW_OP_plus_uconst: 1; DW_OP_stack_value) + 00001284 0000000000000504 000000000000050a (DW_OP_breg10 (a0): 0; DW_OP_breg15 (a5): 0; DW_OP_plus; DW_OP_stack_value) + 0000129c + 000012ac 00000000000004ee 00000000000004f0 (DW_OP_reg11 (a1)) + 000012bf 00000000000004f0 00000000000004f6 (DW_OP_breg11 (a1): 0; DW_OP_breg15 (a5): 0; DW_OP_plus; DW_OP_stack_value) + 000012d7 00000000000004f6 0000000000000504 (DW_OP_breg11 (a1): 0; DW_OP_breg15 (a5): 0; DW_OP_plus; DW_OP_plus_uconst: 1; DW_OP_stack_value) + 000012f1 0000000000000504 000000000000050a (DW_OP_breg11 (a1): 0; DW_OP_breg15 (a5): 0; DW_OP_plus; DW_OP_stack_value) + 00001309 + 00001319 000000000000050e 0000000000000510 (DW_OP_breg15 (a5): 0; DW_OP_const2s: -8192; DW_OP_and; DW_OP_stack_value) + 00001332 0000000000000510 0000000000000514 (DW_OP_reg15 (a5)) + 00001345 + 00001355 0000000000000978 000000000000098d (DW_OP_reg10 (a0)) + 00001368 000000000000098d 000000000000099a (DW_OP_reg9 (s1)) + 0000137b 000000000000099a 000000000000099e (DW_OP_GNU_entry_value: (DW_OP_reg10 (a0)); DW_OP_stack_value) + 00001391 000000000000099e 00000000000009a0 (DW_OP_reg10 (a0)) + 000013a4 00000000000009a0 00000000000009a2 (DW_OP_GNU_entry_value: (DW_OP_reg10 (a0)); DW_OP_stack_value) + 000013ba + 000013ca 0000000000000978 000000000000098d (DW_OP_reg11 (a1)) + 000013dd 000000000000098d 000000000000099e (DW_OP_GNU_entry_value: (DW_OP_reg11 (a1)); DW_OP_stack_value) + 000013f3 000000000000099e 00000000000009a2 (DW_OP_reg11 (a1)) + 00001406 + 00001416 0000000000000978 000000000000098e (DW_OP_lit0; DW_OP_stack_value) + 0000142a 000000000000098e 000000000000099e (DW_OP_reg10 (a0)) + 0000143d 000000000000099e 00000000000009a0 (DW_OP_lit0; DW_OP_stack_value) + 00001451 00000000000009a0 00000000000009a2 (DW_OP_reg10 (a0)) + 00001464 + 00001474 0000000000000936 000000000000094d (DW_OP_reg10 (a0)) + 00001487 000000000000094d 000000000000096e (DW_OP_reg8 (s0)) + 0000149a 000000000000096e 0000000000000974 (DW_OP_GNU_entry_value: (DW_OP_reg10 (a0)); DW_OP_stack_value) + 000014b0 0000000000000974 0000000000000978 (DW_OP_reg8 (s0)) + 000014c3 + 000014d3 0000000000000936 000000000000094d (DW_OP_reg11 (a1)) + 000014e6 000000000000094d 0000000000000970 (DW_OP_reg9 (s1)) + 000014f9 0000000000000970 0000000000000974 (DW_OP_GNU_entry_value: (DW_OP_reg11 (a1)); DW_OP_stack_value) + 0000150f 0000000000000974 0000000000000978 (DW_OP_reg9 (s1)) + 00001522 + 00001532 0000000000000936 0000000000000962 (DW_OP_lit0; DW_OP_stack_value) + 00001546 0000000000000962 0000000000000974 (DW_OP_reg10 (a0)) + 00001559 0000000000000974 0000000000000978 (DW_OP_lit0; DW_OP_stack_value) + 0000156d + 0000157d 0000000000000944 000000000000094d (DW_OP_reg10 (a0)) + 00001590 000000000000094d 000000000000094e (DW_OP_reg8 (s0)) + 000015a3 + 000015b3 00000000000008e6 0000000000000904 (DW_OP_reg10 (a0)) + 000015c6 0000000000000904 000000000000090c (DW_OP_GNU_entry_value: (DW_OP_reg10 (a0)); DW_OP_stack_value) + 000015dc 000000000000090c 0000000000000918 (DW_OP_reg10 (a0)) + 000015ef 0000000000000918 0000000000000930 (DW_OP_reg8 (s0)) + 00001602 0000000000000930 0000000000000936 (DW_OP_GNU_entry_value: (DW_OP_reg10 (a0)); DW_OP_stack_value) + 00001618 + 00001628 00000000000008e6 0000000000000922 (DW_OP_lit0; DW_OP_stack_value) + 0000163c 0000000000000922 000000000000092c (DW_OP_reg10 (a0)) + 0000164f 000000000000092c 0000000000000936 (DW_OP_reg15 (a5)) + 00001662 + 00001672 000000000000088e 000000000000089f (DW_OP_reg10 (a0)) + 00001685 000000000000089f 00000000000008e2 (DW_OP_reg8 (s0)) + 00001698 00000000000008e2 00000000000008e6 (DW_OP_GNU_entry_value: (DW_OP_reg10 (a0)); DW_OP_stack_value) + 000016ae + 000016be 000000000000088e 000000000000089f (DW_OP_reg11 (a1)) + 000016d1 000000000000089f 00000000000008e6 (DW_OP_GNU_entry_value: (DW_OP_reg11 (a1)); DW_OP_stack_value) + 000016e7 + 000016f7 000000000000088e 00000000000008b2 (DW_OP_lit0; DW_OP_stack_value) + 0000170b 00000000000008b2 00000000000008b6 (DW_OP_reg10 (a0)) + 0000171e + 0000172e 0000000000000898 000000000000089f (DW_OP_reg10 (a0)) + 00001741 000000000000089f 00000000000008a0 (DW_OP_reg8 (s0)) + 00001754 + 00001764 000000000000083a 0000000000000849 (DW_OP_reg10 (a0)) + 00001777 0000000000000849 000000000000088a (DW_OP_reg8 (s0)) + 0000178a 000000000000088a 000000000000088e (DW_OP_GNU_entry_value: (DW_OP_reg10 (a0)); DW_OP_stack_value) + 000017a0 + 000017b0 000000000000083a 000000000000085a (DW_OP_lit0; DW_OP_stack_value) + 000017c4 000000000000085a 000000000000085e (DW_OP_reg10 (a0)) + 000017d7 + 000017e7 0000000000000842 0000000000000849 (DW_OP_reg10 (a0)) + 000017fa 0000000000000849 000000000000084a (DW_OP_reg8 (s0)) + 0000180d + 0000181d 00000000000007e6 00000000000007f5 (DW_OP_reg10 (a0)) + 00001830 00000000000007f5 0000000000000836 (DW_OP_reg8 (s0)) + 00001843 0000000000000836 000000000000083a (DW_OP_GNU_entry_value: (DW_OP_reg10 (a0)); DW_OP_stack_value) + 00001859 + 00001869 00000000000007e6 0000000000000806 (DW_OP_lit0; DW_OP_stack_value) + 0000187d 0000000000000806 000000000000080a (DW_OP_reg10 (a0)) + 00001890 + 000018a0 00000000000007ee 00000000000007f5 (DW_OP_reg10 (a0)) + 000018b3 00000000000007f5 00000000000007f6 (DW_OP_reg8 (s0)) + 000018c6 + 000018d6 00000000000007de 00000000000007e5 (DW_OP_reg10 (a0)) + 000018e9 00000000000007e5 00000000000007e6 (DW_OP_GNU_entry_value: (DW_OP_reg10 (a0)); DW_OP_stack_value) + 000018ff + 0000190f 00000000000007b6 00000000000007c5 (DW_OP_reg10 (a0)) + 00001922 00000000000007c5 00000000000007d2 (DW_OP_reg8 (s0)) + 00001935 00000000000007d2 00000000000007d6 (DW_OP_GNU_entry_value: (DW_OP_reg10 (a0)); DW_OP_stack_value) + 0000194b + 0000195b 00000000000007aa 00000000000007b5 (DW_OP_reg10 (a0)) + 0000196e 00000000000007b5 00000000000007b6 (DW_OP_GNU_entry_value: (DW_OP_reg10 (a0)); DW_OP_stack_value) + 00001984 + 00001994 000000000000079c 00000000000007a5 (DW_OP_reg10 (a0)) + 000019a7 00000000000007a5 00000000000007a6 (DW_OP_GNU_entry_value: (DW_OP_reg10 (a0)); DW_OP_stack_value) + 000019bd 00000000000007a6 00000000000007a8 (DW_OP_reg10 (a0)) + 000019d0 00000000000007a8 00000000000007aa (DW_OP_GNU_entry_value: (DW_OP_reg10 (a0)); DW_OP_stack_value) + 000019e6 + 000019f6 000000000000079c 00000000000007a5 (DW_OP_reg11 (a1)) + 00001a09 00000000000007a5 00000000000007a6 (DW_OP_GNU_entry_value: (DW_OP_reg11 (a1)); DW_OP_stack_value) + 00001a1f 00000000000007a6 00000000000007aa (DW_OP_reg11 (a1)) + 00001a32 + 00001a42 0000000000000760 0000000000000777 (DW_OP_reg10 (a0)) + 00001a55 0000000000000777 0000000000000794 (DW_OP_reg9 (s1)) + 00001a68 0000000000000794 0000000000000798 (DW_OP_GNU_entry_value: (DW_OP_reg10 (a0)); DW_OP_stack_value) + 00001a7e 0000000000000798 000000000000079c (DW_OP_reg9 (s1)) + 00001a91 + 00001aa1 0000000000000760 0000000000000777 (DW_OP_reg11 (a1)) + 00001ab4 0000000000000777 0000000000000792 (DW_OP_reg8 (s0)) + 00001ac7 0000000000000792 0000000000000798 (DW_OP_GNU_entry_value: (DW_OP_reg11 (a1)); DW_OP_stack_value) + 00001add 0000000000000798 000000000000079c (DW_OP_reg8 (s0)) + 00001af0 + 00001b00 0000000000000760 0000000000000784 (DW_OP_lit0; DW_OP_stack_value) + 00001b14 0000000000000784 0000000000000798 (DW_OP_reg10 (a0)) + 00001b27 0000000000000798 000000000000079c (DW_OP_lit0; DW_OP_stack_value) + 00001b3b + 00001b4b 0000000000000688 0000000000000696 (DW_OP_reg10 (a0)) + 00001b5e 0000000000000696 00000000000006f2 (DW_OP_reg9 (s1)) + 00001b71 00000000000006f2 00000000000006fa (DW_OP_GNU_entry_value: (DW_OP_reg10 (a0)); DW_OP_stack_value) + 00001b87 + 00001b97 0000000000000688 0000000000000694 (DW_OP_reg11 (a1)) + 00001baa 0000000000000694 00000000000006fa (DW_OP_GNU_entry_value: (DW_OP_reg11 (a1)); DW_OP_stack_value) + 00001bc0 + 00001bd0 00000000000006d4 00000000000006e7 (DW_OP_reg10 (a0)) + 00001be3 + 00001bf3 00000000000005a2 00000000000005af (DW_OP_reg10 (a0)) + 00001c06 00000000000005af 00000000000005c4 (DW_OP_GNU_entry_value: (DW_OP_reg10 (a0)); DW_OP_stack_value) + 00001c1c + 00001c2c 00000000000005b0 00000000000005b6 (DW_OP_reg10 (a0)) + 00001c3f 00000000000005c0 00000000000005c2 (DW_OP_reg10 (a0)) + 00001c52 + 00001c62 0000000000000582 0000000000000591 (DW_OP_reg10 (a0)) + 00001c75 0000000000000591 00000000000005a2 (DW_OP_GNU_entry_value: (DW_OP_reg10 (a0)); DW_OP_stack_value) + 00001c8b + 00001c9b 0000000000000562 0000000000000571 (DW_OP_reg10 (a0)) + 00001cae 0000000000000571 000000000000057e (DW_OP_reg8 (s0)) + 00001cc1 000000000000057e 0000000000000582 (DW_OP_GNU_entry_value: (DW_OP_reg10 (a0)); DW_OP_stack_value) + 00001cd7 + 00001ce7 000000000000052a 000000000000053f (DW_OP_reg10 (a0)) + 00001cfa 000000000000053f 000000000000055e (DW_OP_reg9 (s1)) + 00001d0d 000000000000055e 0000000000000562 (DW_OP_GNU_entry_value: (DW_OP_reg10 (a0)); DW_OP_stack_value) + 00001d23 + 00001d33 0000000000000542 000000000000054e (DW_OP_reg10 (a0)) + 00001d46 + 00001d56 00000000000005c4 00000000000005d9 (DW_OP_reg10 (a0)) + 00001d69 00000000000005d9 0000000000000604 (DW_OP_reg9 (s1)) + 00001d7c 0000000000000604 000000000000060c (DW_OP_GNU_entry_value: (DW_OP_reg10 (a0)); DW_OP_stack_value) + 00001d92 000000000000060c 0000000000000632 (DW_OP_reg9 (s1)) + 00001da5 + 00001db5 00000000000005ee 00000000000005f9 (DW_OP_reg10 (a0)) + 00001dc8 0000000000000628 0000000000000632 (DW_OP_reg10 (a0)) + 00001ddb + 00001deb 000000000000060c 0000000000000628 (DW_OP_reg9 (s1)) + 00001dfe + 00001e0e 0000000000000632 0000000000000643 (DW_OP_reg10 (a0)) + 00001e21 0000000000000643 0000000000000684 (DW_OP_reg9 (s1)) + 00001e34 0000000000000684 0000000000000688 (DW_OP_GNU_entry_value: (DW_OP_reg10 (a0)); DW_OP_stack_value) + 00001e4a + 00001e5a 000000000000066e 0000000000000679 (DW_OP_reg10 (a0)) + 00001e6d + 00001e7d 0000000000000646 0000000000000662 (DW_OP_reg9 (s1)) + 00001e90 + 00001ea0 00000000000006fa 0000000000000713 (DW_OP_reg10 (a0)) + 00001eb3 0000000000000713 0000000000000750 (DW_OP_reg8 (s0)) + 00001ec6 0000000000000750 000000000000075c (DW_OP_GNU_entry_value: (DW_OP_reg10 (a0)); DW_OP_stack_value) + 00001edc 000000000000075c 0000000000000760 (DW_OP_reg10 (a0)) + 00001eef + 00001eff 0000000000000742 000000000000074d (DW_OP_reg10 (a0)) + 00001f12 + 00001f22 0000000000000716 0000000000000732 (DW_OP_reg8 (s0)) + 00001f35 + 00001f45 00000000000007d6 00000000000007dd (DW_OP_reg10 (a0)) + 00001f58 00000000000007dd 00000000000007de (DW_OP_GNU_entry_value: (DW_OP_reg10 (a0)); DW_OP_stack_value) + 00001f6e + 00001f7e 00000000000009a2 00000000000009b6 (DW_OP_reg10 (a0)) + 00001f91 00000000000009b6 00000000000009c8 (DW_OP_GNU_entry_value: (DW_OP_reg10 (a0)); DW_OP_stack_value) + 00001fa7 + 00001fb7 00000000000009b4 00000000000009b6 (DW_OP_breg14 (a4): 0; DW_OP_const2s: -1000; DW_OP_mul; DW_OP_breg10 (a0): 0; DW_OP_plus; DW_OP_stack_value) + 00001fd3 00000000000009b6 00000000000009c2 (DW_OP_reg10 (a0)) + 00001fe6 00000000000009c2 00000000000009c8 (DW_OP_breg14 (a4): 0; DW_OP_const2s: -1000; DW_OP_mul; DW_OP_GNU_entry_value: (DW_OP_reg10 (a0)); DW_OP_plus; DW_OP_stack_value) + 00002003 + 00002013 00000000000009f6 0000000000000a2a (DW_OP_reg10 (a0)) + 00002026 0000000000000a2a 0000000000000a32 (DW_OP_GNU_entry_value: (DW_OP_reg10 (a0)); DW_OP_stack_value) + 0000203c 0000000000000a32 0000000000000a44 (DW_OP_reg10 (a0)) + 0000204f 0000000000000a44 0000000000000a52 (DW_OP_GNU_entry_value: (DW_OP_reg10 (a0)); DW_OP_stack_value) + 00002065 0000000000000a52 0000000000000a59 (DW_OP_reg10 (a0)) + 00002078 0000000000000a59 0000000000000a62 (DW_OP_GNU_entry_value: (DW_OP_reg10 (a0)); DW_OP_stack_value) + 0000208e + 0000209e 00000000000009f6 0000000000000a31 (DW_OP_reg11 (a1)) + 000020b1 0000000000000a31 0000000000000a32 (DW_OP_GNU_entry_value: (DW_OP_reg11 (a1)); DW_OP_stack_value) + 000020c7 0000000000000a32 0000000000000a4c (DW_OP_reg11 (a1)) + 000020da 0000000000000a4c 0000000000000a52 (DW_OP_GNU_entry_value: (DW_OP_reg11 (a1)); DW_OP_stack_value) + 000020f0 0000000000000a52 0000000000000a59 (DW_OP_reg11 (a1)) + 00002103 0000000000000a59 0000000000000a62 (DW_OP_GNU_entry_value: (DW_OP_reg11 (a1)); DW_OP_stack_value) + 00002119 + 00002129 0000000000000a00 0000000000000a31 (DW_OP_reg15 (a5)) + 0000213c 0000000000000a32 0000000000000a4c (DW_OP_reg15 (a5)) + 0000214f 0000000000000a52 0000000000000a59 (DW_OP_reg15 (a5)) + 00002162 + 00002172 0000000000000a00 0000000000000a4c (DW_OP_lit0; DW_OP_stack_value) + 00002186 0000000000000a4c 0000000000000a52 (DW_OP_reg10 (a0)) + 00002199 0000000000000a52 0000000000000a5e (DW_OP_lit0; DW_OP_stack_value) + 000021ad 0000000000000a5e 0000000000000a62 (DW_OP_const1s: -1; DW_OP_stack_value) + 000021c2 + 000021d2 0000000000000aa6 0000000000000abb (DW_OP_reg10 (a0)) + 000021e5 0000000000000abb 0000000000000acc (DW_OP_GNU_entry_value: (DW_OP_reg10 (a0)); DW_OP_stack_value) + 000021fb 0000000000000acc 0000000000000ad3 (DW_OP_reg10 (a0)) + 0000220e 0000000000000ad3 0000000000000aea (DW_OP_GNU_entry_value: (DW_OP_reg10 (a0)); DW_OP_stack_value) + 00002224 + 00002234 0000000000000aa6 0000000000000abb (DW_OP_reg11 (a1)) + 00002247 0000000000000abb 0000000000000acc (DW_OP_GNU_entry_value: (DW_OP_reg11 (a1)); DW_OP_stack_value) + 0000225d 0000000000000acc 0000000000000ad3 (DW_OP_reg11 (a1)) + 00002270 0000000000000ad3 0000000000000aea (DW_OP_GNU_entry_value: (DW_OP_reg11 (a1)); DW_OP_stack_value) + 00002286 + 00002296 0000000000000aa6 0000000000000abb (DW_OP_reg12 (a2)) + 000022a9 0000000000000abb 0000000000000acc (DW_OP_GNU_entry_value: (DW_OP_reg12 (a2)); DW_OP_stack_value) + 000022bf 0000000000000acc 0000000000000ad3 (DW_OP_reg12 (a2)) + 000022d2 0000000000000ad3 0000000000000aea (DW_OP_GNU_entry_value: (DW_OP_reg12 (a2)); DW_OP_stack_value) + 000022e8 + 000022f8 0000000000000ac0 0000000000000ac2 (DW_OP_const1s: -1; DW_OP_stack_value) + 0000230d 0000000000000ad6 0000000000000ae1 (DW_OP_reg10 (a0)) + 00002320 + 00002330 0000000000000a62 0000000000000a80 (DW_OP_reg10 (a0)) + 00002343 0000000000000a80 0000000000000a8a (DW_OP_GNU_entry_value: (DW_OP_reg10 (a0)); DW_OP_stack_value) + 00002359 0000000000000a8a 0000000000000aa4 (DW_OP_reg10 (a0)) + 0000236c 0000000000000aa4 0000000000000aa6 (DW_OP_GNU_entry_value: (DW_OP_reg10 (a0)); DW_OP_stack_value) + 00002382 + 00002392 0000000000000a62 0000000000000a78 (DW_OP_reg11 (a1)) + 000023a5 0000000000000a78 0000000000000a8a (DW_OP_GNU_entry_value: (DW_OP_reg11 (a1)); DW_OP_stack_value) + 000023bb 0000000000000a8a 0000000000000aa6 (DW_OP_reg11 (a1)) + 000023ce + 000023de 0000000000000a62 0000000000000a74 (DW_OP_reg12 (a2)) + 000023f1 0000000000000a74 0000000000000a8a (DW_OP_GNU_entry_value: (DW_OP_reg12 (a2)); DW_OP_stack_value) + 00002407 0000000000000a8a 0000000000000a8e (DW_OP_reg12 (a2)) + 0000241a 0000000000000a8e 0000000000000aa6 (DW_OP_GNU_entry_value: (DW_OP_reg12 (a2)); DW_OP_stack_value) + 00002430 + 00002440 0000000000000a6a 0000000000000a80 (DW_OP_reg10 (a0)) + 00002453 0000000000000a80 0000000000000a8a (DW_OP_GNU_entry_value: (DW_OP_reg10 (a0)); DW_OP_stack_value) + 00002469 + 00002479 0000000000000a6a 0000000000000a8a (DW_OP_GNU_entry_value: (DW_OP_reg11 (a1)); DW_OP_stack_value) + 0000248f + 0000249f 0000000000000a6a 0000000000000a74 (DW_OP_reg12 (a2)) + 000024b2 + 000024c2 0000000000000b2c 0000000000000b39 (DW_OP_reg10 (a0)) + 000024d5 0000000000000b39 0000000000000b5a (DW_OP_GNU_entry_value: (DW_OP_reg10 (a0)); DW_OP_stack_value) + 000024eb + 000024fb 0000000000000b2c 0000000000000b39 (DW_OP_reg11 (a1)) + 0000250e 0000000000000b39 0000000000000b5a (DW_OP_GNU_entry_value: (DW_OP_reg11 (a1)); DW_OP_stack_value) + 00002524 + 00002534 0000000000000b3c 0000000000000b4b (DW_OP_reg10 (a0)) + 00002547 0000000000000b4e 0000000000000b50 (DW_OP_const1s: -1; DW_OP_stack_value) + 0000255c 0000000000000b50 0000000000000b56 (DW_OP_reg8 (s0)) + 0000256f + 0000257f 0000000000000aea 0000000000000b02 (DW_OP_reg10 (a0)) + 00002592 0000000000000b02 0000000000000b0c (DW_OP_GNU_entry_value: (DW_OP_reg10 (a0)); DW_OP_stack_value) + 000025a8 0000000000000b0c 0000000000000b12 (DW_OP_reg10 (a0)) + 000025bb 0000000000000b12 0000000000000b1a (DW_OP_reg15 (a5)) + 000025ce 0000000000000b1a 0000000000000b26 (DW_OP_GNU_entry_value: (DW_OP_reg10 (a0)); DW_OP_stack_value) + 000025e4 0000000000000b26 0000000000000b2a (DW_OP_reg15 (a5)) + 000025f7 0000000000000b2a 0000000000000b2c (DW_OP_GNU_entry_value: (DW_OP_reg10 (a0)); DW_OP_stack_value) + 0000260d + 0000261d 0000000000000aea 0000000000000afa (DW_OP_reg11 (a1)) + 00002630 0000000000000afa 0000000000000b0c (DW_OP_GNU_entry_value: (DW_OP_reg11 (a1)); DW_OP_stack_value) + 00002646 0000000000000b0c 0000000000000b2c (DW_OP_reg11 (a1)) + 00002659 + 00002669 0000000000000aec 0000000000000b0c (DW_OP_lit0; DW_OP_stack_value) + 0000267d + 0000268d 0000000000000aec 0000000000000afa (DW_OP_reg11 (a1)) + 000026a0 + 000026b0 0000000000000b76 0000000000000b83 (DW_OP_reg10 (a0)) + 000026c3 0000000000000b83 0000000000000ba4 (DW_OP_GNU_entry_value: (DW_OP_reg10 (a0)); DW_OP_stack_value) + 000026d9 + 000026e9 0000000000000b76 0000000000000b83 (DW_OP_reg11 (a1)) + 000026fc 0000000000000b83 0000000000000ba4 (DW_OP_GNU_entry_value: (DW_OP_reg11 (a1)); DW_OP_stack_value) + 00002712 + 00002722 0000000000000b86 0000000000000b95 (DW_OP_reg10 (a0)) + 00002735 0000000000000b98 0000000000000b9a (DW_OP_const1s: -1; DW_OP_stack_value) + 0000274a 0000000000000b9a 0000000000000ba0 (DW_OP_reg8 (s0)) + 0000275d + 0000276d 0000000000000b5a 0000000000000b5e (DW_OP_reg10 (a0)) + 00002780 0000000000000b5e 0000000000000b66 (DW_OP_reg15 (a5)) + 00002793 0000000000000b66 0000000000000b74 (DW_OP_GNU_entry_value: (DW_OP_reg10 (a0)); DW_OP_stack_value) + 000027a9 0000000000000b74 0000000000000b76 (DW_OP_reg15 (a5)) + 000027bc + 000027cc 0000000000000bea 0000000000000bf9 (DW_OP_reg10 (a0)) + 000027df 0000000000000bf9 0000000000000c22 (DW_OP_GNU_entry_value: (DW_OP_reg10 (a0)); DW_OP_stack_value) + 000027f5 0000000000000c22 0000000000000c29 (DW_OP_reg10 (a0)) + 00002808 0000000000000c29 0000000000000c30 (DW_OP_GNU_entry_value: (DW_OP_reg10 (a0)); DW_OP_stack_value) + 0000281e + 0000282e 0000000000000c04 0000000000000c16 (DW_OP_reg8 (s0)) + 00002841 0000000000000c16 0000000000000c1a (DW_OP_breg8 (s0): 0; DW_OP_neg; DW_OP_stack_value) + 00002857 0000000000000c2e 0000000000000c30 (DW_OP_reg8 (s0)) + 0000286a + 0000287a 0000000000000ba4 0000000000000bb3 (DW_OP_reg10 (a0)) + 0000288d 0000000000000bb3 0000000000000bdc (DW_OP_GNU_entry_value: (DW_OP_reg10 (a0)); DW_OP_stack_value) + 000028a3 0000000000000bdc 0000000000000be3 (DW_OP_reg10 (a0)) + 000028b6 0000000000000be3 0000000000000bea (DW_OP_GNU_entry_value: (DW_OP_reg10 (a0)); DW_OP_stack_value) + 000028cc + 000028dc 0000000000000bbe 0000000000000bd0 (DW_OP_reg8 (s0)) + 000028ef 0000000000000bd0 0000000000000bd4 (DW_OP_breg8 (s0): 0; DW_OP_neg; DW_OP_stack_value) + 00002905 0000000000000be8 0000000000000bea (DW_OP_reg8 (s0)) + 00002918 + 00002928 0000000000000c94 0000000000000cab (DW_OP_reg10 (a0)) + 0000293b 0000000000000cab 0000000000000ce2 (DW_OP_reg8 (s0)) + 0000294e 0000000000000ce2 0000000000000cf0 (DW_OP_GNU_entry_value: (DW_OP_reg10 (a0)); DW_OP_stack_value) + 00002964 0000000000000cf0 0000000000000d0e (DW_OP_reg8 (s0)) + 00002977 + 00002987 0000000000000c94 0000000000000cd6 (DW_OP_lit0; DW_OP_stack_value) + 0000299b 0000000000000cd6 0000000000000cec (DW_OP_reg18 (s2)) + 000029ae 0000000000000cf0 0000000000000d0e (DW_OP_reg18 (s2)) + 000029c1 + 000029d1 0000000000000d04 0000000000000d0a (DW_OP_reg10 (a0)) + 000029e4 + 000029f4 0000000000000cd4 0000000000000ce2 (DW_OP_reg9 (s1)) + 00002a07 0000000000000cf0 0000000000000d0e (DW_OP_reg9 (s1)) + 00002a1a + 00002a2a 0000000000000cac 0000000000000cb8 (DW_OP_lit0; DW_OP_stack_value) + 00002a3e 0000000000000cb8 0000000000000cc4 (DW_OP_lit1; DW_OP_stack_value) + 00002a52 0000000000000cc4 0000000000000cd0 (DW_OP_lit2; DW_OP_stack_value) + 00002a66 0000000000000cd0 0000000000000ce2 (DW_OP_lit3; DW_OP_stack_value) + 00002a7a 0000000000000cf0 0000000000000d0e (DW_OP_lit3; DW_OP_stack_value) + 00002a8e + 00002a9e 0000000000000c30 0000000000000c42 (DW_OP_reg10 (a0)) + 00002ab1 0000000000000c42 0000000000000c66 (DW_OP_reg8 (s0)) + 00002ac4 0000000000000c66 0000000000000c94 (DW_OP_GNU_entry_value: (DW_OP_reg10 (a0)); DW_OP_stack_value) + 00002ada + 00002aea 0000000000000c30 0000000000000c68 (DW_OP_lit0; DW_OP_stack_value) + 00002afe 0000000000000c68 0000000000000c72 (DW_OP_reg9 (s1)) + 00002b11 0000000000000c76 0000000000000c94 (DW_OP_reg9 (s1)) + 00002b24 + 00002b34 0000000000000c8a 0000000000000c90 (DW_OP_reg10 (a0)) + 00002b47 + 00002b57 0000000000000c66 0000000000000c6a (DW_OP_reg8 (s0)) + 00002b6a 0000000000000c76 0000000000000c94 (DW_OP_reg8 (s0)) + 00002b7d + 00002b8d 0000000000000c3e 0000000000000c4a (DW_OP_lit0; DW_OP_stack_value) + 00002ba1 0000000000000c4a 0000000000000c56 (DW_OP_lit1; DW_OP_stack_value) + 00002bb5 0000000000000c56 0000000000000c62 (DW_OP_lit2; DW_OP_stack_value) + 00002bc9 0000000000000c62 0000000000000c6a (DW_OP_lit3; DW_OP_stack_value) + 00002bdd 0000000000000c76 0000000000000c94 (DW_OP_lit3; DW_OP_stack_value) + 00002bf1 + 00002c01 0000000000000d0e 0000000000000d1b (DW_OP_reg10 (a0)) + 00002c14 0000000000000d1b 0000000000000d24 (DW_OP_GNU_entry_value: (DW_OP_reg10 (a0)); DW_OP_stack_value) + 00002c2a + 00002c3a 0000000000000d0e 0000000000000d1b (DW_OP_reg11 (a1)) + 00002c4d 0000000000000d1b 0000000000000d24 (DW_OP_GNU_entry_value: (DW_OP_reg11 (a1)); DW_OP_stack_value) + 00002c63 + 00002c73 0000000000000d0e 0000000000000d1b (DW_OP_reg12 (a2)) + 00002c86 0000000000000d1b 0000000000000d24 (DW_OP_GNU_entry_value: (DW_OP_reg12 (a2)); DW_OP_stack_value) + 00002c9c + 00002cac 0000000000000d24 0000000000000d2e (DW_OP_reg10 (a0)) + 00002cbf 0000000000000d2e 0000000000000d42 (DW_OP_reg8 (s0)) + 00002cd2 + 00002ce2 0000000000000d50 0000000000000d5a (DW_OP_reg10 (a0)) + 00002cf5 0000000000000d5a 0000000000000d68 (DW_OP_reg17 (a7)) + 00002d08 + 00002d18 0000000000000d50 0000000000000d5c (DW_OP_reg11 (a1)) + 00002d2b 0000000000000d5c 0000000000000d68 (DW_OP_GNU_entry_value: (DW_OP_reg11 (a1)); DW_OP_stack_value) + 00002d41 + 00002d51 0000000000000d50 0000000000000d5e (DW_OP_reg12 (a2)) + 00002d64 0000000000000d5e 0000000000000d68 (DW_OP_reg15 (a5)) + 00002d77 + 00002d87 0000000000000d50 0000000000000d60 (DW_OP_reg13 (a3)) + 00002d9a 0000000000000d60 0000000000000d68 (DW_OP_reg14 (a4)) + 00002dad + 00002dbd 0000000000000d58 0000000000000d66 (DW_OP_lit9; DW_OP_stack_value) + 00002dd1 + 00002de1 0000000000000d58 0000000000000d60 (DW_OP_reg13 (a3)) + 00002df4 0000000000000d60 0000000000000d66 (DW_OP_reg14 (a4)) + 00002e07 + 00002e17 0000000000000d56 0000000000000d5e (DW_OP_reg12 (a2)) + 00002e2a 0000000000000d5e 0000000000000d66 (DW_OP_reg15 (a5)) + 00002e3d + 00002e4d 0000000000000d54 0000000000000d66 (DW_OP_breg16 (a6): 0; DW_OP_const1u: 32; DW_OP_shl; DW_OP_const1u: 32; DW_OP_shra; DW_OP_stack_value) + 00002e68 + 00002e78 0000000000000d52 0000000000000d5a (DW_OP_reg10 (a0)) + 00002e8b 0000000000000d5a 0000000000000d66 (DW_OP_reg17 (a7)) + 00002e9e + 00002eae 0000000000000d68 0000000000000d6c (DW_OP_reg10 (a0)) + 00002ec1 0000000000000d6c 0000000000000d74 (DW_OP_GNU_entry_value: (DW_OP_reg10 (a0)); DW_OP_stack_value) + 00002ed7 + 00002ee7 0000000000000d6a 0000000000000d72 (DW_OP_lit8; DW_OP_stack_value) + 00002efb + 00002f0b 0000000000000d6a 0000000000000d72 (DW_OP_breg11 (a1): 0; DW_OP_const1u: 32; DW_OP_shl; DW_OP_const1u: 32; DW_OP_shra; DW_OP_stack_value) + 00002f26 + 00002f36 0000000000000d74 0000000000000d7c (DW_OP_reg10 (a0)) + 00002f49 0000000000000d7c 0000000000000d88 (DW_OP_GNU_entry_value: (DW_OP_reg10 (a0)); DW_OP_stack_value) + 00002f5f + 00002f6f 0000000000000d74 0000000000000d7e (DW_OP_reg11 (a1)) + 00002f82 0000000000000d7e 0000000000000d88 (DW_OP_reg12 (a2)) + 00002f95 + 00002fa5 0000000000000d78 0000000000000d84 (DW_OP_const1u: 48; DW_OP_stack_value) + 00002fba + 00002fca 0000000000000d78 0000000000000d7e (DW_OP_reg11 (a1)) + 00002fdd 0000000000000d7e 0000000000000d84 (DW_OP_reg12 (a2)) + 00002ff0 + 00003000 0000000000000d76 0000000000000d84 (DW_OP_breg15 (a5): 0; DW_OP_const1u: 32; DW_OP_shl; DW_OP_const1u: 32; DW_OP_shra; DW_OP_stack_value) + 0000301b + 0000302b 0000000000000d88 0000000000000d90 (DW_OP_lit11; DW_OP_stack_value) + 0000303f + 0000304f 0000000000000d94 0000000000000d9e (DW_OP_reg10 (a0)) + 00003062 0000000000000d9e 0000000000000dac (DW_OP_GNU_entry_value: (DW_OP_reg10 (a0)); DW_OP_stack_value) + 00003078 + 00003088 0000000000000d94 0000000000000da0 (DW_OP_reg11 (a1)) + 0000309b 0000000000000da0 0000000000000dac (DW_OP_GNU_entry_value: (DW_OP_reg11 (a1)); DW_OP_stack_value) + 000030b1 + 000030c1 0000000000000d94 0000000000000da2 (DW_OP_reg12 (a2)) + 000030d4 0000000000000da2 0000000000000dac (DW_OP_GNU_entry_value: (DW_OP_reg12 (a2)); DW_OP_stack_value) + 000030ea + 000030fa 0000000000000d9a 0000000000000da8 (DW_OP_const1u: 73; DW_OP_stack_value) + 0000310f + 0000311f 0000000000000d9a 0000000000000da8 (DW_OP_breg13 (a3): 0; DW_OP_const1u: 32; DW_OP_shl; DW_OP_const1u: 32; DW_OP_shra; DW_OP_stack_value) + 0000313a + 0000314a 0000000000000d98 0000000000000da8 (DW_OP_breg15 (a5): 0; DW_OP_const1u: 32; DW_OP_shl; DW_OP_const1u: 32; DW_OP_shra; DW_OP_stack_value) + 00003165 + 00003175 0000000000000d96 0000000000000da8 (DW_OP_breg14 (a4): 0; DW_OP_const1u: 32; DW_OP_shl; DW_OP_const1u: 32; DW_OP_shra; DW_OP_stack_value) + 00003190 + 000031a0 0000000000000dac 0000000000000db2 (DW_OP_reg10 (a0)) + 000031b3 0000000000000db2 0000000000000dba (DW_OP_reg11 (a1)) + 000031c6 + 000031d6 0000000000000dae 0000000000000db8 (DW_OP_const1u: 107; DW_OP_stack_value) + 000031eb + 000031fb 0000000000000dae 0000000000000db2 (DW_OP_reg10 (a0)) + 0000320e 0000000000000db2 0000000000000db8 (DW_OP_reg11 (a1)) + 00003221 + 00003231 0000000000000dba 0000000000000dc2 (DW_OP_reg10 (a0)) + 00003244 0000000000000dc2 0000000000000dd0 (DW_OP_reg14 (a4)) + 00003257 + 00003267 0000000000000dba 0000000000000dc4 (DW_OP_reg11 (a1)) + 0000327a 0000000000000dc4 0000000000000dd0 (DW_OP_GNU_entry_value: (DW_OP_reg11 (a1)); DW_OP_stack_value) + 00003290 + 000032a0 0000000000000dba 0000000000000dc6 (DW_OP_reg12 (a2)) + 000032b3 0000000000000dc6 0000000000000dd0 (DW_OP_reg13 (a3)) + 000032c6 + 000032d6 0000000000000dc0 0000000000000dcc (DW_OP_lit28; DW_OP_stack_value) + 000032ea + 000032fa 0000000000000dc0 0000000000000dc6 (DW_OP_reg12 (a2)) + 0000330d 0000000000000dc6 0000000000000dcc (DW_OP_reg13 (a3)) + 00003320 + 00003330 0000000000000dbe 0000000000000dcc (DW_OP_breg15 (a5): 0; DW_OP_const1u: 32; DW_OP_shl; DW_OP_const1u: 32; DW_OP_shra; DW_OP_stack_value) + 0000334b + 0000335b 0000000000000dbc 0000000000000dc2 (DW_OP_reg10 (a0)) + 0000336e 0000000000000dc2 0000000000000dcc (DW_OP_reg14 (a4)) + 00003381 + 00003391 0000000000000dd0 0000000000000dd4 (DW_OP_reg10 (a0)) + 000033a4 0000000000000dd4 0000000000000dde (DW_OP_reg11 (a1)) + 000033b7 + 000033c7 0000000000000dd2 0000000000000dda (DW_OP_lit26; DW_OP_stack_value) + 000033db + 000033eb 0000000000000dd2 0000000000000dd4 (DW_OP_reg10 (a0)) + 000033fe 0000000000000dd4 0000000000000dda (DW_OP_reg11 (a1)) + 00003411 + 00003421 0000000000000dde 0000000000000de2 (DW_OP_reg10 (a0)) + 00003434 0000000000000de2 0000000000000dec (DW_OP_reg11 (a1)) + 00003447 + 00003457 0000000000000de0 0000000000000de8 (DW_OP_lit27; DW_OP_stack_value) + 0000346b + 0000347b 0000000000000de0 0000000000000de2 (DW_OP_reg10 (a0)) + 0000348e 0000000000000de2 0000000000000de8 (DW_OP_reg11 (a1)) + 000034a1 + 000034b1 0000000000000dec 0000000000000df0 (DW_OP_reg10 (a0)) + 000034c4 0000000000000df0 0000000000000dfa (DW_OP_reg11 (a1)) + 000034d7 + 000034e7 0000000000000dee 0000000000000df6 (DW_OP_lit30; DW_OP_stack_value) + 000034fb + 0000350b 0000000000000dee 0000000000000df0 (DW_OP_reg10 (a0)) + 0000351e 0000000000000df0 0000000000000df6 (DW_OP_reg11 (a1)) + 00003531 + 00003541 0000000000000dfa 0000000000000dfe (DW_OP_reg10 (a0)) + 00003554 0000000000000dfe 0000000000000e08 (DW_OP_reg11 (a1)) + 00003567 + 00003577 0000000000000dfc 0000000000000e04 (DW_OP_lit31; DW_OP_stack_value) + 0000358b + 0000359b 0000000000000dfc 0000000000000dfe (DW_OP_reg10 (a0)) + 000035ae 0000000000000dfe 0000000000000e04 (DW_OP_reg11 (a1)) + 000035c1 + 000035d1 0000000000000e08 0000000000000e12 (DW_OP_reg10 (a0)) + 000035e4 0000000000000e12 0000000000000e1e (DW_OP_GNU_entry_value: (DW_OP_reg10 (a0)); DW_OP_stack_value) + 000035fa + 0000360a 0000000000000e08 0000000000000e14 (DW_OP_reg11 (a1)) + 0000361d 0000000000000e14 0000000000000e1e (DW_OP_reg15 (a5)) + 00003630 + 00003640 0000000000000e08 0000000000000e16 (DW_OP_reg12 (a2)) + 00003653 0000000000000e16 0000000000000e1e (DW_OP_reg13 (a3)) + 00003666 + 00003676 0000000000000e0e 0000000000000e1c (DW_OP_const1u: 61; DW_OP_stack_value) + 0000368b + 0000369b 0000000000000e0e 0000000000000e16 (DW_OP_reg12 (a2)) + 000036ae 0000000000000e16 0000000000000e1c (DW_OP_reg13 (a3)) + 000036c1 + 000036d1 0000000000000e0c 0000000000000e14 (DW_OP_reg11 (a1)) + 000036e4 0000000000000e14 0000000000000e1c (DW_OP_reg15 (a5)) + 000036f7 + 00003707 0000000000000e0a 0000000000000e1c (DW_OP_breg14 (a4): 0; DW_OP_const1u: 32; DW_OP_shl; DW_OP_const1u: 32; DW_OP_shra; DW_OP_stack_value) + 00003722 + +Contents of the .debug_ranges section (loaded from ../apps/bin/hello): + + Offset Begin End + 00000000 0000000000000000 000000000000001a + 00000000 000000000000001a 000000000000003e + 00000000 + 00000030 000000000000003e 000000000000005a + 00000030 + 00000050 000000000000005a 00000000000000e0 + 00000050 + 00000070 00000000000000e0 000000000000020a + 00000070 000000000000020a 0000000000000248 + 00000070 + 000000a0 0000000000000248 00000000000002d0 + 000000a0 00000000000002d0 0000000000000304 + 000000a0 + 000000d0 0000000000000316 000000000000031a + 000000d0 0000000000000328 000000000000034c + 000000d0 000000000000034e 0000000000000352 + 000000d0 0000000000000358 0000000000000364 + 000000d0 + 00000120 0000000000000304 0000000000000364 + 00000120 + 00000140 00000000000003a6 00000000000003d0 + 00000140 00000000000003de 00000000000003f0 + 00000140 00000000000003f2 00000000000003f6 + 00000140 + 00000180 0000000000000364 00000000000003f6 + 00000180 00000000000003f6 0000000000000430 + 00000180 + 000001b0 0000000000000430 000000000000043a + 000001b0 000000000000043a 0000000000000444 + 000001b0 0000000000000444 000000000000044e + 000001b0 + 000001f0 0000000000000464 0000000000000464 (start == end) + 000001f0 000000000000046c 0000000000000474 + 000001f0 + 00000220 000000000000044e 0000000000000464 + 00000220 0000000000000464 000000000000048a + 00000220 + 00000250 000000000000048a 00000000000004b2 + 00000250 00000000000004b2 00000000000004d0 + 00000250 00000000000004d0 00000000000004dc + 00000250 + 00000290 00000000000004dc 00000000000004ee + 00000290 + 000002b0 00000000000004ee 000000000000050a + 000002b0 + 000002d0 000000000000050a 000000000000050a (start == end) + 000002d0 000000000000050c 000000000000050e + 000002d0 + 00000300 000000000000050a 0000000000000514 + 00000300 + 00000320 0000000000000514 0000000000000514 (start == end) + 00000320 0000000000000516 0000000000000518 + 00000320 + 00000350 0000000000000514 000000000000052a + 00000350 + 00000370 0000000000000944 0000000000000944 (start == end) + 00000370 0000000000000946 000000000000094e + 00000370 + 000003a0 000000000000052a 0000000000000562 + 000003a0 0000000000000562 0000000000000582 + 000003a0 0000000000000582 00000000000005a2 + 000003a0 00000000000005a2 00000000000005c4 + 000003a0 00000000000005c4 0000000000000632 + 000003a0 0000000000000632 0000000000000688 + 000003a0 0000000000000688 00000000000006fa + 000003a0 00000000000006fa 0000000000000760 + 000003a0 0000000000000760 000000000000079c + 000003a0 000000000000079c 00000000000007aa + 000003a0 00000000000007aa 00000000000007b6 + 000003a0 00000000000007b6 00000000000007d6 + 000003a0 00000000000007d6 00000000000007de + 000003a0 00000000000007de 00000000000007e6 + 000003a0 00000000000007e6 000000000000083a + 000003a0 000000000000083a 000000000000088e + 000003a0 000000000000088e 00000000000008e6 + 000003a0 00000000000008e6 0000000000000936 + 000003a0 0000000000000936 0000000000000978 + 000003a0 0000000000000978 00000000000009a2 + 000003a0 + 000004f0 00000000000009a2 00000000000009c8 + 000004f0 + 00000510 00000000000009c8 00000000000009f6 + 00000510 + 00000530 00000000000009f6 00000000000009f6 (start == end) + 00000530 00000000000009fc 00000000000009fe + 00000530 + 00000560 00000000000009f6 0000000000000a62 + 00000560 + 00000580 0000000000000a6a 0000000000000a6a (start == end) + 00000580 0000000000000a6c 0000000000000a80 + 00000580 0000000000000a82 0000000000000a8a + 00000580 + 000005c0 0000000000000a62 0000000000000aa6 + 000005c0 0000000000000aa6 0000000000000aea + 000005c0 + 000005f0 0000000000000aec 0000000000000aec (start == end) + 000005f0 0000000000000aee 0000000000000b02 + 000005f0 0000000000000b04 0000000000000b0e + 000005f0 + 00000630 0000000000000aea 0000000000000b2c + 00000630 0000000000000b2c 0000000000000b5a + 00000630 + 00000660 0000000000000b5a 0000000000000b76 + 00000660 0000000000000b76 0000000000000ba4 + 00000660 + 00000690 0000000000000ba4 0000000000000bea + 00000690 0000000000000bea 0000000000000c30 + 00000690 + 000006c0 0000000000000c3e 0000000000000c66 + 000006c0 0000000000000c68 0000000000000c6a + 000006c0 0000000000000c76 0000000000000c94 + 000006c0 + 00000700 0000000000000ca4 0000000000000cd4 + 00000700 0000000000000cd6 0000000000000ce2 + 00000700 0000000000000cf0 0000000000000d0e + 00000700 + 00000740 0000000000000c30 0000000000000c94 + 00000740 0000000000000c94 0000000000000d0e + 00000740 + 00000770 0000000000000d0e 0000000000000d24 + 00000770 + 00000790 0000000000000d24 0000000000000d42 + 00000790 + 000007b0 0000000000000d42 0000000000000d50 + 000007b0 + 000007d0 0000000000000d50 0000000000000d68 + 000007d0 + 000007f0 0000000000000d68 0000000000000d74 + 000007f0 + 00000810 0000000000000d74 0000000000000d88 + 00000810 + 00000830 0000000000000d88 0000000000000d94 + 00000830 + 00000850 0000000000000d94 0000000000000dac + 00000850 + 00000870 0000000000000dac 0000000000000dba + 00000870 + 00000890 0000000000000dba 0000000000000dd0 + 00000890 + 000008b0 0000000000000dd0 0000000000000dde + 000008b0 + 000008d0 0000000000000dde 0000000000000dec + 000008d0 + 000008f0 0000000000000dec 0000000000000dfa + 000008f0 + 00000910 0000000000000dfa 0000000000000e08 + 00000910 + 00000930 0000000000000e08 0000000000000e1e + 00000930 + +Contents of the .debug_str section (loaded from ../apps/bin/hello): + + 0x00000000 73695f73 69676e6f 00636861 7200636f si_signo.char.co + 0x00000010 6d6d6f6e 2f637274 302e6300 73697661 mmon/crt0.c.siva + 0x00000020 6c5f7074 72007369 675f7472 616d706f l_ptr.sig_trampo + 0x00000030 6c696e65 00616464 72656e76 5f726573 line.addrenv_res + 0x00000040 65727665 5f73006d 6d5f6865 61705f73 erve_s.mm_heap_s + 0x00000050 0073695f 6572726e 6f007369 76616c5f .si_errno.sival_ + 0x00000060 696e7400 6c6f6e67 20756e73 69676e65 int.long unsigne + 0x00000070 6420696e 74007368 6f727420 756e7369 d int.short unsi + 0x00000080 676e6564 20696e74 0073695f 76616c75 gned int.si_valu + 0x00000090 6500474e 55204331 37203130 2e322e30 e.GNU C17 10.2.0 + 0x000000a0 202d6d63 6d6f6465 6c3d6d65 64616e79 -mcmodel=medany + 0x000000b0 202d6d61 7263683d 72763634 696d6166 -march=rv64imaf + 0x000000c0 6463202d 6d616269 3d6c7036 3464202d dc -mabi=lp64d - + 0x000000d0 6d617263 683d7276 3634696d 61666463 march=rv64imafdc + 0x000000e0 202d6720 2d4f7320 2d666e6f 2d636f6d -g -Os -fno-com + 0x000000f0 6d6f6e20 2d666e6f 2d737472 6963742d mon -fno-strict- + 0x00000100 616c6961 73696e67 202d666f 6d69742d aliasing -fomit- + 0x00000110 6672616d 652d706f 696e7465 72202d66 frame-pointer -f + 0x00000120 66756e63 74696f6e 2d736563 74696f6e function-section + 0x00000130 73202d66 64617461 2d736563 74696f6e s -fdata-section + 0x00000140 7300756e 7369676e 65642063 68617200 s.unsigned char. + 0x00000150 73695f63 6f646500 73686f72 7420696e si_code.short in + 0x00000160 74006164 6472656e 765f7369 67747261 t.addrenv_sigtra + 0x00000170 6d705f74 005f7374 61727400 73695f75 mp_t._start.si_u + 0x00000180 73657200 756e7369 676e6564 20696e74 ser.unsigned int + 0x00000190 006c6f6e 67206c6f 6e672075 6e736967 .long long unsig + 0x000001a0 6e656420 696e7400 75696e74 385f7400 ned int.uint8_t. + 0x000001b0 6d61696e 00617267 63006172 5f757372 main.argc.ar_usr + 0x000001c0 68656170 006c6f6e 67206c6f 6e672069 heap.long long i + 0x000001d0 6e740073 6967696e 666f005f 73615f73 nt.siginfo._sa_s + 0x000001e0 69676163 74696f6e 5f740073 6967696e igaction_t.sigin + 0x000001f0 666f5f74 00657869 74006172 6776006c fo_t.exit.argv.l + 0x00000200 6f6e6720 696e7400 73696776 616c006c ong int.sigval.l + 0x00000210 6f6e6720 646f7562 6c650073 69676e65 ong double.signe + 0x00000220 64206368 6172005f 426f6f6c 0061725f d char._Bool.ar_ + 0x00000230 73696774 72616d70 005f7569 6e74385f sigtramp._uint8_ + 0x00000240 74002f55 73657273 2f4c7570 70792f6f t./Users/Luppy/o + 0x00000250 7836342f 6e757474 782f6172 63682f72 x64/nuttx/arch/r + 0x00000260 6973632d 762f7372 63006c6f 6e67206c isc-v/src.long l + 0x00000270 6f6e6720 696e7400 756e7369 676e6564 ong int.unsigned + 0x00000280 20696e74 00707574 73006d61 696e005f int.puts.main._ + 0x00000290 5f627569 6c74696e 5f707574 73006c6f _builtin_puts.lo + 0x000002a0 6e672075 6e736967 6e656420 696e7400 ng unsigned int. + 0x000002b0 6c6f6e67 206c6f6e 6720756e 7369676e long long unsign + 0x000002c0 65642069 6e740075 6e736967 6e656420 ed int.unsigned + 0x000002d0 63686172 002f5573 6572732f 4c757070 char./Users/Lupp + 0x000002e0 792f6f78 36342f61 7070732f 6578616d y/ox64/apps/exam + 0x000002f0 706c6573 2f68656c 6c6f0063 68617200 ples/hello.char. + 0x00000300 68656c6c 6f5f6d61 696e2e63 005f426f hello_main.c._Bo + 0x00000310 6f6c006c 6f6e6720 696e7400 61726763 ol.long int.argc + 0x00000320 0073686f 72742075 6e736967 6e656420 .short unsigned + 0x00000330 696e7400 7369676e 65642063 68617200 int.signed char. + 0x00000340 61726776 006c6f6e 6720646f 75626c65 argv.long double + 0x00000350 0073686f 72742069 6e740047 4e552043 .short int.GNU C + 0x00000360 31372031 302e322e 30202d6d 636d6f64 17 10.2.0 -mcmod + 0x00000370 656c3d6d 6564616e 79202d6d 61726368 el=medany -march + 0x00000380 3d727636 34696d61 66646320 2d6d6162 =rv64imafdc -mab + 0x00000390 693d6c70 36346420 2d6d6172 63683d72 i=lp64d -march=r + 0x000003a0 76363469 6d616664 63202d67 202d4f73 v64imafdc -g -Os + 0x000003b0 202d666e 6f2d636f 6d6d6f6e 202d666e -fno-common -fn + 0x000003c0 6f2d7374 72696374 2d616c69 6173696e o-strict-aliasin + 0x000003d0 67202d66 6f6d6974 2d667261 6d652d70 g -fomit-frame-p + 0x000003e0 6f696e74 6572202d 6666756e 6374696f ointer -ffunctio + 0x000003f0 6e2d7365 6374696f 6e73202d 66646174 n-sections -fdat + 0x00000400 612d7365 6374696f 6e730063 6c6f7365 a-sections.close + 0x00000410 00626c69 6e6b006c 69625f67 65745f73 .blink.lib_get_s + 0x00000420 74726561 6d006673 5f756e67 6f747465 tream.fs_ungotte + 0x00000430 6e005f75 696e7438 5f74006c 69625f66 n._uint8_t.lib_f + 0x00000440 666c7573 685f756e 6c6f636b 65640073 flush_unlocked.s + 0x00000450 697a655f 74006e77 72697474 656e0063 ize_t.nwritten.c + 0x00000460 6f6f6b69 655f7772 6974655f 66756e63 ookie_write_func + 0x00000470 74696f6e 5f74005f 73697a65 5f740077 tion_t._size_t.w + 0x00000480 6169746c 69737400 636f6f6b 69655f63 aitlist.cookie_c + 0x00000490 6c6f7365 5f66756e 6374696f 6e5f7400 lose_function_t. + 0x000004a0 7373697a 655f7400 73686f72 7420696e ssize_t.short in + 0x000004b0 7400474e 55204331 37203130 2e322e30 t.GNU C17 10.2.0 + 0x000004c0 202d6d63 6d6f6465 6c3d6d65 64616e79 -mcmodel=medany + 0x000004d0 202d6d61 7263683d 72763634 696d6166 -march=rv64imaf + 0x000004e0 6463202d 6d616269 3d6c7036 3464202d dc -mabi=lp64d - + 0x000004f0 6d617263 683d7276 3634696d 61666463 march=rv64imafdc + 0x00000500 202d6720 2d4f7320 2d666e6f 2d636f6d -g -Os -fno-com + 0x00000510 6d6f6e20 2d666e6f 2d737472 6963742d mon -fno-strict- + 0x00000520 616c6961 73696e67 202d666f 6d69742d aliasing -fomit- + 0x00000530 6672616d 652d706f 696e7465 72202d66 frame-pointer -f + 0x00000540 66756e63 74696f6e 2d736563 74696f6e function-section + 0x00000550 73202d66 64617461 2d736563 74696f6e s -fdata-section + 0x00000560 73006673 5f627566 656e6400 68656164 s.fs_bufend.head + 0x00000570 0075696e 74385f74 00636f6f 6b69655f .uint8_t.cookie_ + 0x00000580 696f5f66 756e6374 696f6e73 5f740073 io_functions_t.s + 0x00000590 656d5f73 0073656d 5f740066 735f6275 em_s.sem_t.fs_bu + 0x000005a0 66726561 64006673 5f627566 706f7300 fread.fs_bufpos. + 0x000005b0 46494c45 00726561 64006c6f 6e67206c FILE.read.long l + 0x000005c0 6f6e6720 696e7400 2f557365 72732f4c ong int./Users/L + 0x000005d0 75707079 2f6f7836 342f6e75 7474782f uppy/ox64/nuttx/ + 0x000005e0 6c696273 2f6c6962 63006e65 776c696e libs/libc.newlin + 0x000005f0 6500686f 6c646572 00636f6f 6b69655f e.holder.cookie_ + 0x00000600 72656164 5f66756e 6374696f 6e5f7400 read_function_t. + 0x00000610 6d757465 785f7400 66696c65 5f737472 mutex_t.file_str + 0x00000620 75637400 73747265 616d006f 66665f74 uct.stream.off_t + 0x00000630 00666c69 6e6b0064 715f656e 7472795f .flink.dq_entry_ + 0x00000640 73006c6f 6e672064 6f75626c 65005f69 s.long double._i + 0x00000650 6e743332 5f740066 6c6f636b 66696c65 nt32_t.flockfile + 0x00000660 00756e73 69676e65 64206368 6172005f .unsigned char._ + 0x00000670 696e7431 365f7400 73656d63 6f756e74 int16_t.semcount + 0x00000680 006c6962 5f667772 6974655f 756e6c6f .lib_fwrite_unlo + 0x00000690 636b6564 00736967 6e656420 63686172 cked.signed char + 0x000006a0 00666c61 6773006c 6f6e6720 6c6f6e67 .flags.long long + 0x000006b0 20756e73 69676e65 6420696e 74007461 unsigned int.ta + 0x000006c0 696c0075 696e7431 365f7400 6c6f6e67 il.uint16_t.long + 0x000006d0 20756e73 69676e65 6420696e 74006673 unsigned int.fs + 0x000006e0 5f6f666c 61677300 70757473 006d7574 _oflags.puts.mut + 0x000006f0 65780073 686f7274 20756e73 69676e65 ex.short unsigne + 0x00000700 6420696e 74006368 6172006d 75746578 d int.char.mutex + 0x00000710 5f73006c 6f6e6720 696e7400 696e7433 _s.long int.int3 + 0x00000720 325f7400 696e7431 365f7400 5f426f6f 2_t.int16_t._Boo + 0x00000730 6c006673 5f6e6578 74006471 5f656e74 l.fs_next.dq_ent + 0x00000740 72795f74 0066735f 636f6f6b 69650066 ry_t.fs_cookie.f + 0x00000750 735f696f 66756e63 00667075 74735f75 s_iofunc.fputs_u + 0x00000760 6e6c6f63 6b656400 636f6f6b 69655f73 nlocked.cookie_s + 0x00000770 65656b5f 66756e63 74696f6e 5f740066 eek_function_t.f + 0x00000780 735f6275 66666572 00706964 5f740073 s_buffer.pid_t.s + 0x00000790 7464696f 2f6c6962 5f707574 732e6300 tdio/lib_puts.c. + 0x000007a0 636f756e 74007772 69746500 66735f62 count.write.fs_b + 0x000007b0 75667374 61727400 7365656b 0066735f ufstart.seek.fs_ + 0x000007c0 6c6f636b 0064715f 71756575 655f7400 lock.dq_queue_t. + 0x000007d0 6e707574 005f7569 6e743136 5f740066 nput._uint16_t.f + 0x000007e0 735f6e75 6e676f74 74656e00 756e7369 s_nungotten.unsi + 0x000007f0 676e6564 20696e74 0066756e 6c6f636b gned int.funlock + 0x00000800 66696c65 0066735f 666c6167 73006471 file.fs_flags.dq + 0x00000810 5f717565 75655f73 00726d75 7465785f _queue_s.rmutex_ + 0x00000820 7300726d 75746578 5f74005f 7373697a s.rmutex_t._ssiz + 0x00000830 655f7400 6572726f 75740063 6c6f7365 e_t.errout.close + 0x00000840 005f5f62 75696c74 696e5f6d 656d6370 .__builtin_memcp + 0x00000850 7900626c 696e6b00 77726974 65006673 y.blink.write.fs + 0x00000860 5f756e67 6f747465 6e005f75 696e7438 _ungotten._uint8 + 0x00000870 5f74006c 69625f72 64666c75 73685f75 _t.lib_rdflush_u + 0x00000880 6e6c6f63 6b656400 6c69625f 66666c75 nlocked.lib_fflu + 0x00000890 73685f75 6e6c6f63 6b656400 73697a65 sh_unlocked.size + 0x000008a0 5f740069 6e747074 725f7400 636f6f6b _t.intptr_t.cook + 0x000008b0 69655f77 72697465 5f66756e 6374696f ie_write_functio + 0x000008c0 6e5f7400 6d656d63 70790077 6169746c n_t.memcpy.waitl + 0x000008d0 69737400 636f6f6b 69655f63 6c6f7365 ist.cookie_close + 0x000008e0 5f66756e 6374696f 6e5f7400 7373697a _function_t.ssiz + 0x000008f0 655f7400 73686f72 7420696e 7400474e e_t.short int.GN + 0x00000900 55204331 37203130 2e322e30 202d6d63 U C17 10.2.0 -mc + 0x00000910 6d6f6465 6c3d6d65 64616e79 202d6d61 model=medany -ma + 0x00000920 7263683d 72763634 696d6166 6463202d rch=rv64imafdc - + 0x00000930 6d616269 3d6c7036 3464202d 6d617263 mabi=lp64d -marc + 0x00000940 683d7276 3634696d 61666463 202d6720 h=rv64imafdc -g + 0x00000950 2d4f7320 2d666e6f 2d636f6d 6d6f6e20 -Os -fno-common + 0x00000960 2d666e6f 2d737472 6963742d 616c6961 -fno-strict-alia + 0x00000970 73696e67 202d666f 6d69742d 6672616d sing -fomit-fram + 0x00000980 652d706f 696e7465 72202d66 66756e63 e-pointer -ffunc + 0x00000990 74696f6e 2d736563 74696f6e 73202d66 tion-sections -f + 0x000009a0 64617461 2d736563 74696f6e 73007365 data-sections.se + 0x000009b0 656b0068 65616400 75696e74 385f7400 ek.head.uint8_t. + 0x000009c0 636f6f6b 69655f69 6f5f6675 6e637469 cookie_io_functi + 0x000009d0 6f6e735f 74007569 6e747074 725f7400 ons_t.uintptr_t. + 0x000009e0 73656d5f 73007365 6d5f7400 66735f62 sem_s.sem_t.fs_b + 0x000009f0 75667265 61640066 735f6275 66706f73 ufread.fs_bufpos + 0x00000a00 00736967 6e656420 63686172 0046494c .signed char.FIL + 0x00000a10 45007265 6164006c 6f6e6720 6c6f6e67 E.read.long long + 0x00000a20 20696e74 002f5573 6572732f 4c757070 int./Users/Lupp + 0x00000a30 792f6f78 36342f6e 75747478 2f6c6962 y/ox64/nuttx/lib + 0x00000a40 732f6c69 62630068 6f6c6465 7200636f s/libc.holder.co + 0x00000a50 6f6b6965 5f726561 645f6675 6e637469 okie_read_functi + 0x00000a60 6f6e5f74 006d7574 65785f74 0066696c on_t.mutex_t.fil + 0x00000a70 655f7374 72756374 00737472 65616d00 e_struct.stream. + 0x00000a80 6c69625f 66777269 74650045 52524f52 lib_fwrite.ERROR + 0x00000a90 00666c69 6e6b0066 735f6275 66656e64 .flink.fs_bufend + 0x00000aa0 0064715f 656e7472 795f7300 6c6f6e67 .dq_entry_s.long + 0x00000ab0 20646f75 626c6500 5f696e74 33325f74 double._int32_t + 0x00000ac0 00666c6f 636b6669 6c650075 6e736967 .flockfile.unsig + 0x00000ad0 6e656420 63686172 005f696e 7431365f ned char._int16_ + 0x00000ae0 74007374 64696f2f 6c69625f 6c696266 t.stdio/lib_libf + 0x00000af0 77726974 652e6300 73656d63 6f756e74 write.c.semcount + 0x00000b00 006c6962 5f667772 6974655f 756e6c6f .lib_fwrite_unlo + 0x00000b10 636b6564 00726d75 7465785f 7300666c cked.rmutex_s.fl + 0x00000b20 61677300 6c6f6e67 206c6f6e 6720756e ags.long long un + 0x00000b30 7369676e 65642069 6e740074 61696c00 signed int.tail. + 0x00000b40 75696e74 31365f74 006c6f6e 6720756e uint16_t.long un + 0x00000b50 7369676e 65642069 6e740066 735f6f66 signed int.fs_of + 0x00000b60 6c616773 006d7574 65780073 74617274 lags.mutex.start + 0x00000b70 0073686f 72742075 6e736967 6e656420 .short unsigned + 0x00000b80 696e7400 63686172 006d7574 65785f73 int.char.mutex_s + 0x00000b90 006c6f6e 6720696e 7400696e 7433325f .long int.int32_ + 0x00000ba0 7400696e 7431365f 74005f42 6f6f6c00 t.int16_t._Bool. + 0x00000bb0 66735f6e 65787400 64715f65 6e747279 fs_next.dq_entry + 0x00000bc0 5f740066 735f696f 66756e63 00636f6f _t.fs_iofunc.coo + 0x00000bd0 6b69655f 7365656b 5f66756e 6374696f kie_seek_functio + 0x00000be0 6e5f7400 66735f62 75666665 72007069 n_t.fs_buffer.pi + 0x00000bf0 645f7400 67756c70 5f73697a 65006673 d_t.gulp_size.fs + 0x00000c00 5f636f6f 6b696500 6f66665f 7400636f _cookie.off_t.co + 0x00000c10 756e7400 5f73697a 655f7400 64715f71 unt._size_t.dq_q + 0x00000c20 75657565 5f730066 735f6c6f 636b0064 ueue_s.fs_lock.d + 0x00000c30 715f7175 6575655f 74006673 5f627566 q_queue_t.fs_buf + 0x00000c40 73746172 74005f75 696e7431 365f7400 start._uint16_t. + 0x00000c50 66735f6e 756e676f 7474656e 00756e73 fs_nungotten.uns + 0x00000c60 69676e65 6420696e 74006675 6e6c6f63 igned int.funloc + 0x00000c70 6b66696c 65006673 5f666c61 67730062 kfile.fs_flags.b + 0x00000c80 79746573 5f627566 66657265 64005f5f ytes_buffered.__ + 0x00000c90 6572726e 6f00726d 75746578 5f74005f errno.rmutex_t._ + 0x00000ca0 7373697a 655f7400 636c6f73 6500626c ssize_t.close.bl + 0x00000cb0 696e6b00 77726974 65006673 5f756e67 ink.write.fs_ung + 0x00000cc0 6f747465 6e005f75 696e7438 5f74006c otten._uint8_t.l + 0x00000cd0 69625f66 666c7573 685f756e 6c6f636b ib_fflush_unlock + 0x00000ce0 65640073 697a655f 7400696e 74707472 ed.size_t.intptr + 0x00000cf0 5f740063 6f6f6b69 655f7772 6974655f _t.cookie_write_ + 0x00000d00 66756e63 74696f6e 5f740077 6169746c function_t.waitl + 0x00000d10 69737400 636f6f6b 69655f63 6c6f7365 ist.cookie_close + 0x00000d20 5f66756e 6374696f 6e5f7400 7373697a _function_t.ssiz + 0x00000d30 655f7400 73686f72 7420696e 7400474e e_t.short int.GN + 0x00000d40 55204331 37203130 2e322e30 202d6d63 U C17 10.2.0 -mc + 0x00000d50 6d6f6465 6c3d6d65 64616e79 202d6d61 model=medany -ma + 0x00000d60 7263683d 72763634 696d6166 6463202d rch=rv64imafdc - + 0x00000d70 6d616269 3d6c7036 3464202d 6d617263 mabi=lp64d -marc + 0x00000d80 683d7276 3634696d 61666463 202d6720 h=rv64imafdc -g + 0x00000d90 2d4f7320 2d666e6f 2d636f6d 6d6f6e20 -Os -fno-common + 0x00000da0 2d666e6f 2d737472 6963742d 616c6961 -fno-strict-alia + 0x00000db0 73696e67 202d666f 6d69742d 6672616d sing -fomit-fram + 0x00000dc0 652d706f 696e7465 72202d66 66756e63 e-pointer -ffunc + 0x00000dd0 74696f6e 2d736563 74696f6e 73202d66 tion-sections -f + 0x00000de0 64617461 2d736563 74696f6e 73006673 data-sections.fs + 0x00000df0 5f627566 656e6400 68656164 0075696e _bufend.head.uin + 0x00000e00 74385f74 006c6962 5f66666c 75736800 t8_t.lib_fflush. + 0x00000e10 636f6f6b 69655f69 6f5f6675 6e637469 cookie_io_functi + 0x00000e20 6f6e735f 74007365 6d5f7300 73656d5f ons_t.sem_s.sem_ + 0x00000e30 74006673 5f627566 72656164 0066735f t.fs_bufread.fs_ + 0x00000e40 62756670 6f730073 69676e65 64206368 bufpos.signed ch + 0x00000e50 61720046 494c4500 72656164 006c6f6e ar.FILE.read.lon + 0x00000e60 67206c6f 6e672069 6e74002f 55736572 g long int./User + 0x00000e70 732f4c75 7070792f 6f783634 2f6e7574 s/Luppy/ox64/nut + 0x00000e80 74782f6c 6962732f 6c696263 00686f6c tx/libs/libc.hol + 0x00000e90 64657200 636f6f6b 69655f72 6561645f der.cookie_read_ + 0x00000ea0 66756e63 74696f6e 5f74006d 75746578 function_t.mutex + 0x00000eb0 5f740066 696c655f 73747275 63740073 _t.file_struct.s + 0x00000ec0 74726561 6d006f66 665f7400 73746469 tream.off_t.stdi + 0x00000ed0 6f2f6c69 625f6c69 6266666c 7573682e o/lib_libfflush. + 0x00000ee0 63006e62 75666665 7200666c 696e6b00 c.nbuffer.flink. + 0x00000ef0 64715f65 6e747279 5f73006c 6f6e6720 dq_entry_s.long + 0x00000f00 646f7562 6c65005f 696e7433 325f7400 double._int32_t. + 0x00000f10 666c6f63 6b66696c 6500756e 7369676e flockfile.unsign + 0x00000f20 65642063 68617200 5f696e74 31365f74 ed char._int16_t + 0x00000f30 0073656d 636f756e 7400726d 75746578 .semcount.rmutex + 0x00000f40 5f730066 6c616773 006c6f6e 67206c6f _s.flags.long lo + 0x00000f50 6e672075 6e736967 6e656420 696e7400 ng unsigned int. + 0x00000f60 7461696c 0075696e 7431365f 74006c6f tail.uint16_t.lo + 0x00000f70 6e672075 6e736967 6e656420 696e7400 ng unsigned int. + 0x00000f80 66735f6f 666c6167 73006d75 74657800 fs_oflags.mutex. + 0x00000f90 73686f72 7420756e 7369676e 65642069 short unsigned i + 0x00000fa0 6e740063 68617200 6d757465 785f7300 nt.char.mutex_s. + 0x00000fb0 6c6f6e67 20696e74 00696e74 33325f74 long int.int32_t + 0x00000fc0 00696e74 31365f74 005f426f 6f6c0066 .int16_t._Bool.f + 0x00000fd0 735f6e65 78740064 715f656e 7472795f s_next.dq_entry_ + 0x00000fe0 74006279 7465735f 77726974 74656e00 t.bytes_written. + 0x00000ff0 66735f69 6f66756e 6300636f 6f6b6965 fs_iofunc.cookie + 0x00001000 5f736565 6b5f6675 6e637469 6f6e5f74 _seek_function_t + 0x00001010 0066735f 62756666 65720070 69645f74 .fs_buffer.pid_t + 0x00001020 0066735f 636f6f6b 69650063 6f756e74 .fs_cookie.count + 0x00001030 005f7369 7a655f74 00736565 6b006673 ._size_t.seek.fs + 0x00001040 5f6c6f63 6b006471 5f717565 75655f74 _lock.dq_queue_t + 0x00001050 0066735f 62756673 74617274 005f7569 .fs_bufstart._ui + 0x00001060 6e743136 5f740066 735f6e75 6e676f74 nt16_t.fs_nungot + 0x00001070 74656e00 756e7369 676e6564 20696e74 ten.unsigned int + 0x00001080 0066756e 6c6f636b 66696c65 0066735f .funlockfile.fs_ + 0x00001090 666c6167 73006471 5f717565 75655f73 flags.dq_queue_s + 0x000010a0 005f5f65 72726e6f 00726d75 7465785f .__errno.rmutex_ + 0x000010b0 74005f73 73697a65 5f740063 6c6f7365 t._ssize_t.close + 0x000010c0 00626c69 6e6b0077 72697465 0066735f .blink.write.fs_ + 0x000010d0 756e676f 7474656e 005f7569 6e74385f ungotten._uint8_ + 0x000010e0 74006c69 625f7264 666c7573 685f756e t.lib_rdflush_un + 0x000010f0 6c6f636b 65640073 686f7274 20696e74 locked.short int + 0x00001100 0073697a 655f7400 696e7470 74725f74 .size_t.intptr_t + 0x00001110 00737464 696f2f6c 69625f72 64666c75 .stdio/lib_rdflu + 0x00001120 73685f75 6e6c6f63 6b65642e 6300636f sh_unlocked.c.co + 0x00001130 6f6b6965 5f777269 74655f66 756e6374 okie_write_funct + 0x00001140 696f6e5f 74007761 69746c69 73740072 ion_t.waitlist.r + 0x00001150 646f6666 73657400 636f6f6b 69655f63 doffset.cookie_c + 0x00001160 6c6f7365 5f66756e 6374696f 6e5f7400 lose_function_t. + 0x00001170 7373697a 655f7400 474e5520 43313720 ssize_t.GNU C17 + 0x00001180 31302e32 2e30202d 6d636d6f 64656c3d 10.2.0 -mcmodel= + 0x00001190 6d656461 6e79202d 6d617263 683d7276 medany -march=rv + 0x000011a0 3634696d 61666463 202d6d61 62693d6c 64imafdc -mabi=l + 0x000011b0 70363464 202d6d61 7263683d 72763634 p64d -march=rv64 + 0x000011c0 696d6166 6463202d 67202d4f 73202d66 imafdc -g -Os -f + 0x000011d0 6e6f2d63 6f6d6d6f 6e202d66 6e6f2d73 no-common -fno-s + 0x000011e0 74726963 742d616c 69617369 6e67202d trict-aliasing - + 0x000011f0 666f6d69 742d6672 616d652d 706f696e fomit-frame-poin + 0x00001200 74657220 2d666675 6e637469 6f6e2d73 ter -ffunction-s + 0x00001210 65637469 6f6e7320 2d666461 74612d73 ections -fdata-s + 0x00001220 65637469 6f6e7300 66735f62 7566656e ections.fs_bufen + 0x00001230 64006865 61640075 696e7438 5f740063 d.head.uint8_t.c + 0x00001240 6f6f6b69 655f696f 5f66756e 6374696f ookie_io_functio + 0x00001250 6e735f74 0073656d 5f730073 656d5f74 ns_t.sem_s.sem_t + 0x00001260 0066735f 62756672 65616400 66735f62 .fs_bufread.fs_b + 0x00001270 7566706f 73007369 676e6564 20636861 ufpos.signed cha + 0x00001280 72004649 4c450072 65616400 6c6f6e67 r.FILE.read.long + 0x00001290 206c6f6e 6720696e 74002f55 73657273 long int./Users + 0x000012a0 2f4c7570 70792f6f 7836342f 6e757474 /Luppy/ox64/nutt + 0x000012b0 782f6c69 62732f6c 69626300 686f6c64 x/libs/libc.hold + 0x000012c0 65720063 6f6f6b69 655f7265 61645f66 er.cookie_read_f + 0x000012d0 756e6374 696f6e5f 74006d75 7465785f unction_t.mutex_ + 0x000012e0 74006669 6c655f73 74727563 74007374 t.file_struct.st + 0x000012f0 7265616d 006c7365 656b0045 52524f52 ream.lseek.ERROR + 0x00001300 00666c69 6e6b0064 715f656e 7472795f .flink.dq_entry_ + 0x00001310 73006c6f 6e672064 6f75626c 65005f69 s.long double._i + 0x00001320 6e743332 5f740075 6e736967 6e656420 nt32_t.unsigned + 0x00001330 63686172 005f696e 7431365f 74007365 char._int16_t.se + 0x00001340 6d636f75 6e740072 6d757465 785f7300 mcount.rmutex_s. + 0x00001350 666c6167 73006c6f 6e67206c 6f6e6720 flags.long long + 0x00001360 756e7369 676e6564 20696e74 00746169 unsigned int.tai + 0x00001370 6c007569 6e743136 5f74006c 6f6e6720 l.uint16_t.long + 0x00001380 756e7369 676e6564 20696e74 0066735f unsigned int.fs_ + 0x00001390 6f666c61 6773006d 75746578 0073686f oflags.mutex.sho + 0x000013a0 72742075 6e736967 6e656420 696e7400 rt unsigned int. + 0x000013b0 63686172 006d7574 65785f73 006c6f6e char.mutex_s.lon + 0x000013c0 6720696e 7400696e 7433325f 7400696e g int.int32_t.in + 0x000013d0 7431365f 74005f42 6f6f6c00 66735f6e t16_t._Bool.fs_n + 0x000013e0 65787400 64715f65 6e747279 5f740066 ext.dq_entry_t.f + 0x000013f0 735f696f 66756e63 00636f6f 6b69655f s_iofunc.cookie_ + 0x00001400 7365656b 5f66756e 6374696f 6e5f7400 seek_function_t. + 0x00001410 66735f62 75666665 72007069 645f7400 fs_buffer.pid_t. + 0x00001420 66735f63 6f6f6b69 65006f66 665f7400 fs_cookie.off_t. + 0x00001430 636f756e 74005f73 697a655f 74007365 count._size_t.se + 0x00001440 656b0066 735f6c6f 636b0064 715f7175 ek.fs_lock.dq_qu + 0x00001450 6575655f 74006673 5f627566 73746172 eue_t.fs_bufstar + 0x00001460 74005f75 696e7431 365f7400 66735f6e t._uint16_t.fs_n + 0x00001470 756e676f 7474656e 00756e73 69676e65 ungotten.unsigne + 0x00001480 6420696e 74006673 5f666c61 67730064 d int.fs_flags.d + 0x00001490 715f7175 6575655f 73005f5f 6572726e q_queue_s.__errn + 0x000014a0 6f00726d 75746578 5f74005f 7373697a o.rmutex_t._ssiz + 0x000014b0 655f7400 636c6f73 6500626c 696e6b00 e_t.close.blink. + 0x000014c0 77726974 65006673 5f756e67 6f747465 write.fs_ungotte + 0x000014d0 6e005f75 696e7438 5f74006c 69625f66 n._uint8_t.lib_f + 0x000014e0 666c7573 685f756e 6c6f636b 65640073 flush_unlocked.s + 0x000014f0 697a655f 74006e74 6f777269 74650063 ize_t.ntowrite.c + 0x00001500 6f6f6b69 655f7772 6974655f 66756e63 ookie_write_func + 0x00001510 74696f6e 5f74005f 73697a65 5f740077 tion_t._size_t.w + 0x00001520 6169746c 69737400 636f6f6b 69655f63 aitlist.cookie_c + 0x00001530 6c6f7365 5f66756e 6374696f 6e5f7400 lose_function_t. + 0x00001540 7373697a 655f7400 73686f72 7420696e ssize_t.short in + 0x00001550 7400474e 55204331 37203130 2e322e30 t.GNU C17 10.2.0 + 0x00001560 202d6d63 6d6f6465 6c3d6d65 64616e79 -mcmodel=medany + 0x00001570 202d6d61 7263683d 72763634 696d6166 -march=rv64imaf + 0x00001580 6463202d 6d616269 3d6c7036 3464202d dc -mabi=lp64d - + 0x00001590 6d617263 683d7276 3634696d 61666463 march=rv64imafdc + 0x000015a0 202d6720 2d4f7320 2d666e6f 2d636f6d -g -Os -fno-com + 0x000015b0 6d6f6e20 2d666e6f 2d737472 6963742d mon -fno-strict- + 0x000015c0 616c6961 73696e67 202d666f 6d69742d aliasing -fomit- + 0x000015d0 6672616d 652d706f 696e7465 72202d66 frame-pointer -f + 0x000015e0 66756e63 74696f6e 2d736563 74696f6e function-section + 0x000015f0 73202d66 64617461 2d736563 74696f6e s -fdata-section + 0x00001600 73006673 5f627566 656e6400 68656164 s.fs_bufend.head + 0x00001610 0075696e 74385f74 00636f6f 6b69655f .uint8_t.cookie_ + 0x00001620 696f5f66 756e6374 696f6e73 5f740073 io_functions_t.s + 0x00001630 656d5f73 0073656d 5f740066 735f6275 em_s.sem_t.fs_bu + 0x00001640 66726561 64006673 5f627566 706f7300 fread.fs_bufpos. + 0x00001650 66735f66 6c616773 0046494c 45007265 fs_flags.FILE.re + 0x00001660 6164006c 6f6e6720 6c6f6e67 20696e74 ad.long long int + 0x00001670 002f5573 6572732f 4c757070 792f6f78 ./Users/Luppy/ox + 0x00001680 36342f6e 75747478 2f6c6962 732f6c69 64/nuttx/libs/li + 0x00001690 62630068 6f6c6465 7200636f 6f6b6965 bc.holder.cookie + 0x000016a0 5f726561 645f6675 6e637469 6f6e5f74 _read_function_t + 0x000016b0 006d7574 65785f74 0066696c 655f7374 .mutex_t.file_st + 0x000016c0 72756374 00737472 65616d00 6f66665f ruct.stream.off_ + 0x000016d0 7400666c 696e6b00 64715f65 6e747279 t.flink.dq_entry + 0x000016e0 5f73006c 6f6e6720 646f7562 6c65005f _s.long double._ + 0x000016f0 696e7433 325f7400 666c6f63 6b66696c int32_t.flockfil + 0x00001700 6500756e 7369676e 65642063 68617200 e.unsigned char. + 0x00001710 5f696e74 31365f74 0073656d 636f756e _int16_t.semcoun + 0x00001720 74006c69 625f6677 72697465 5f756e6c t.lib_fwrite_unl + 0x00001730 6f636b65 64007369 676e6564 20636861 ocked.signed cha + 0x00001740 7200666c 61677300 6c6f6e67 206c6f6e r.flags.long lon + 0x00001750 6720756e 7369676e 65642069 6e740074 g unsigned int.t + 0x00001760 61696c00 75696e74 31365f74 006c6f6e ail.uint16_t.lon + 0x00001770 6720756e 7369676e 65642069 6e740066 g unsigned int.f + 0x00001780 735f6f66 6c616773 006d7574 65780073 s_oflags.mutex.s + 0x00001790 686f7274 20756e73 69676e65 6420696e hort unsigned in + 0x000017a0 74006368 6172006d 75746578 5f73006c t.char.mutex_s.l + 0x000017b0 6f6e6720 696e7400 7374726c 656e0069 ong int.strlen.i + 0x000017c0 6e743332 5f740069 6e743136 5f74005f nt32_t.int16_t._ + 0x000017d0 426f6f6c 0066735f 6e657874 0064715f Bool.fs_next.dq_ + 0x000017e0 656e7472 795f7400 66735f69 6f66756e entry_t.fs_iofun + 0x000017f0 63006670 75747300 66707574 735f756e c.fputs.fputs_un + 0x00001800 6c6f636b 65640063 6f6f6b69 655f7365 locked.cookie_se + 0x00001810 656b5f66 756e6374 696f6e5f 74006673 ek_function_t.fs + 0x00001820 5f627566 66657200 7069645f 74006673 _buffer.pid_t.fs + 0x00001830 5f636f6f 6b696500 636f756e 74006673 _cookie.count.fs + 0x00001840 5f627566 73746172 74007365 656b0066 _bufstart.seek.f + 0x00001850 735f6c6f 636b0064 715f7175 6575655f s_lock.dq_queue_ + 0x00001860 74006e70 7574005f 75696e74 31365f74 t.nput._uint16_t + 0x00001870 0066735f 6e756e67 6f747465 6e00756e .fs_nungotten.un + 0x00001880 7369676e 65642069 6e740066 756e6c6f signed int.funlo + 0x00001890 636b6669 6c650073 7464696f 2f6c6962 ckfile.stdio/lib + 0x000018a0 5f667075 74732e63 0064715f 71756575 _fputs.c.dq_queu + 0x000018b0 655f7300 726d7574 65785f73 00726d75 e_s.rmutex_s.rmu + 0x000018c0 7465785f 74005f73 73697a65 5f740063 tex_t._ssize_t.c + 0x000018d0 6c6f7365 00626c69 6e6b0077 72697465 lose.blink.write + 0x000018e0 0066735f 756e676f 7474656e 005f7569 .fs_ungotten._ui + 0x000018f0 6e74385f 74007368 6f727420 696e7400 nt8_t.short int. + 0x00001900 73697a65 5f740063 6f6f6b69 655f7772 size_t.cookie_wr + 0x00001910 6974655f 66756e63 74696f6e 5f740077 ite_function_t.w + 0x00001920 6169746c 69737400 636f6f6b 69655f63 aitlist.cookie_c + 0x00001930 6c6f7365 5f66756e 6374696f 6e5f7400 lose_function_t. + 0x00001940 7373697a 655f7400 474e5520 43313720 ssize_t.GNU C17 + 0x00001950 31302e32 2e30202d 6d636d6f 64656c3d 10.2.0 -mcmodel= + 0x00001960 6d656461 6e79202d 6d617263 683d7276 medany -march=rv + 0x00001970 3634696d 61666463 202d6d61 62693d6c 64imafdc -mabi=l + 0x00001980 70363464 202d6d61 7263683d 72763634 p64d -march=rv64 + 0x00001990 696d6166 6463202d 67202d4f 73202d66 imafdc -g -Os -f + 0x000019a0 6e6f2d63 6f6d6d6f 6e202d66 6e6f2d73 no-common -fno-s + 0x000019b0 74726963 742d616c 69617369 6e67202d trict-aliasing - + 0x000019c0 666f6d69 742d6672 616d652d 706f696e fomit-frame-poin + 0x000019d0 74657220 2d666675 6e637469 6f6e2d73 ter -ffunction-s + 0x000019e0 65637469 6f6e7320 2d666461 74612d73 ections -fdata-s + 0x000019f0 65637469 6f6e7300 66735f62 7566656e ections.fs_bufen + 0x00001a00 64006865 61640075 696e7438 5f740063 d.head.uint8_t.c + 0x00001a10 6f6f6b69 655f696f 5f66756e 6374696f ookie_io_functio + 0x00001a20 6e735f74 0073656d 5f730073 656d5f74 ns_t.sem_s.sem_t + 0x00001a30 0066735f 62756672 65616400 66735f62 .fs_bufread.fs_b + 0x00001a40 7566706f 73007265 6164006c 6f6e6720 ufpos.read.long + 0x00001a50 6c6f6e67 20696e74 002f5573 6572732f long int./Users/ + 0x00001a60 4c757070 792f6f78 36342f6e 75747478 Luppy/ox64/nuttx + 0x00001a70 2f6c6962 732f6c69 6263005f 696e7433 /libs/libc._int3 + 0x00001a80 325f7400 686f6c64 65720063 6f6f6b69 2_t.holder.cooki + 0x00001a90 655f7265 61645f66 756e6374 696f6e5f e_read_function_ + 0x00001aa0 74006d75 7465785f 74006669 6c655f73 t.mutex_t.file_s + 0x00001ab0 74727563 74007374 7265616d 00667472 truct.stream.ftr + 0x00001ac0 796c6f63 6b66696c 65007374 64696f2f ylockfile.stdio/ + 0x00001ad0 6c69625f 6c696266 696c656c 6f636b2e lib_libfilelock. + 0x00001ae0 63006f66 665f7400 666c696e 6b006471 c.off_t.flink.dq + 0x00001af0 5f656e74 72795f73 006c6f6e 6720646f _entry_s.long do + 0x00001b00 75626c65 006e7872 6d757465 785f756e uble.nxrmutex_un + 0x00001b10 6c6f636b 00666c6f 636b6669 6c650075 lock.flockfile.u + 0x00001b20 6e736967 6e656420 63686172 006e7872 nsigned char.nxr + 0x00001b30 6d757465 785f7472 796c6f63 6b007461 mutex_trylock.ta + 0x00001b40 696c0073 656d636f 756e7400 7369676e il.semcount.sign + 0x00001b50 65642063 68617200 666c6167 73006c6f ed char.flags.lo + 0x00001b60 6e67206c 6f6e6720 756e7369 676e6564 ng long unsigned + 0x00001b70 20696e74 0075696e 7431365f 74006c6f int.uint16_t.lo + 0x00001b80 6e672075 6e736967 6e656420 696e7400 ng unsigned int. + 0x00001b90 66735f6f 666c6167 73006d75 74657800 fs_oflags.mutex. + 0x00001ba0 73686f72 7420756e 7369676e 65642069 short unsigned i + 0x00001bb0 6e740063 68617200 6d757465 785f7300 nt.char.mutex_s. + 0x00001bc0 6c6f6e67 20696e74 00696e74 33325f74 long int.int32_t + 0x00001bd0 00696e74 31365f74 005f426f 6f6c0066 .int16_t._Bool.f + 0x00001be0 735f6e65 78740064 715f656e 7472795f s_next.dq_entry_ + 0x00001bf0 74006673 5f696f66 756e6300 5f696e74 t.fs_iofunc._int + 0x00001c00 31365f74 00636f6f 6b69655f 7365656b 16_t.cookie_seek + 0x00001c10 5f66756e 6374696f 6e5f7400 66735f62 _function_t.fs_b + 0x00001c20 75666665 72006e78 726d7574 65785f6c uffer.nxrmutex_l + 0x00001c30 6f636b00 7069645f 74006673 5f636f6f ock.pid_t.fs_coo + 0x00001c40 6b696500 636f756e 74005f73 697a655f kie.count._size_ + 0x00001c50 74007365 656b0066 735f6c6f 636b0064 t.seek.fs_lock.d + 0x00001c60 715f7175 6575655f 74006673 5f627566 q_queue_t.fs_buf + 0x00001c70 73746172 74005f75 696e7431 365f7400 start._uint16_t. + 0x00001c80 66735f6e 756e676f 7474656e 00756e73 fs_nungotten.uns + 0x00001c90 69676e65 6420696e 74006675 6e6c6f63 igned int.funloc + 0x00001ca0 6b66696c 65006673 5f666c61 67730064 kfile.fs_flags.d + 0x00001cb0 715f7175 6575655f 7300726d 75746578 q_queue_s.rmutex + 0x00001cc0 5f730072 6d757465 785f7400 5f737369 _s.rmutex_t._ssi + 0x00001cd0 7a655f74 00636c6f 73650073 6c5f6865 ze_t.close.sl_he + 0x00001ce0 6164006c 69625f67 65745f73 74726561 ad.lib_get_strea + 0x00001cf0 6d006673 5f756e67 6f747465 6e005f75 m.fs_ungotten._u + 0x00001d00 696e7438 5f740073 6c5f7374 64007368 int8_t.sl_std.sh + 0x00001d10 6f727420 696e7400 73697a65 5f740073 ort int.size_t.s + 0x00001d20 74726561 6d6c6973 7400636f 6f6b6965 treamlist.cookie + 0x00001d30 5f777269 74655f66 756e6374 696f6e5f _write_function_ + 0x00001d40 74007761 69746c69 73740063 6f6f6b69 t.waitlist.cooki + 0x00001d50 655f636c 6f73655f 66756e63 74696f6e e_close_function + 0x00001d60 5f740073 73697a65 5f740074 615f6c6f _t.ssize_t.ta_lo + 0x00001d70 636b0047 4e552043 31372031 302e322e ck.GNU C17 10.2. + 0x00001d80 30202d6d 636d6f64 656c3d6d 6564616e 0 -mcmodel=medan + 0x00001d90 79202d6d 61726368 3d727636 34696d61 y -march=rv64ima + 0x00001da0 66646320 2d6d6162 693d6c70 36346420 fdc -mabi=lp64d + 0x00001db0 2d6d6172 63683d72 76363469 6d616664 -march=rv64imafd + 0x00001dc0 63202d67 202d4f73 202d666e 6f2d636f c -g -Os -fno-co + 0x00001dd0 6d6d6f6e 202d666e 6f2d7374 72696374 mmon -fno-strict + 0x00001de0 2d616c69 6173696e 67202d66 6f6d6974 -aliasing -fomit + 0x00001df0 2d667261 6d652d70 6f696e74 6572202d -frame-pointer - + 0x00001e00 6666756e 6374696f 6e2d7365 6374696f ffunction-sectio + 0x00001e10 6e73202d 66646174 612d7365 6374696f ns -fdata-sectio + 0x00001e20 6e730066 735f6275 66656e64 00686561 ns.fs_bufend.hea + 0x00001e30 64007569 6e74385f 7400636f 6f6b6965 d.uint8_t.cookie + 0x00001e40 5f696f5f 66756e63 74696f6e 735f7400 _io_functions_t. + 0x00001e50 626c696e 6b007365 6d5f7300 73656d5f blink.sem_s.sem_ + 0x00001e60 74006673 5f627566 72656164 0066735f t.fs_bufread.fs_ + 0x00001e70 62756670 6f730072 65616400 6c6f6e67 bufpos.read.long + 0x00001e80 206c6f6e 6720696e 74002f55 73657273 long int./Users + 0x00001e90 2f4c7570 70792f6f 7836342f 6e757474 /Luppy/ox64/nutt + 0x00001ea0 782f6c69 62732f6c 69626300 73746469 x/libs/libc.stdi + 0x00001eb0 6f2f6c69 625f6c69 62676574 73747265 o/lib_libgetstre + 0x00001ec0 616d732e 63006368 61720068 6f6c6465 ams.c.char.holde + 0x00001ed0 7200636f 6f6b6965 5f726561 645f6675 r.cookie_read_fu + 0x00001ee0 6e637469 6f6e5f74 006d7574 65785f74 nction_t.mutex_t + 0x00001ef0 0066696c 655f7374 72756374 006f6666 .file_struct.off + 0x00001f00 5f740066 6c696e6b 006d7574 65785f73 _t.flink.mutex_s + 0x00001f10 0064715f 656e7472 795f7300 6c6f6e67 .dq_entry_s.long + 0x00001f20 20646f75 626c6500 5f696e74 33325f74 double._int32_t + 0x00001f30 00736c5f 6c6f636b 00756e73 69676e65 .sl_lock.unsigne + 0x00001f40 64206368 6172005f 696e7431 365f7400 d char._int16_t. + 0x00001f50 73656d63 6f756e74 00736967 6e656420 semcount.signed + 0x00001f60 63686172 00666c61 6773006c 6f6e6720 char.flags.long + 0x00001f70 6c6f6e67 20756e73 69676e65 6420696e long unsigned in + 0x00001f80 74007461 696c0074 61736b5f 6765745f t.tail.task_get_ + 0x00001f90 696e666f 006c6f6e 6720756e 7369676e info.long unsign + 0x00001fa0 65642069 6e740066 735f6f66 6c616773 ed int.fs_oflags + 0x00001fb0 00617267 76006d75 74657800 7461736b .argv.mutex.task + 0x00001fc0 5f696e66 6f5f7300 74615f73 74726561 _info_s.ta_strea + 0x00001fd0 6d6c6973 74006c69 625f6765 745f7374 mlist.lib_get_st + 0x00001fe0 7265616d 73007569 6e743136 5f74006c reams.uint16_t.l + 0x00001ff0 6f6e6720 696e7400 696e7433 325f7400 ong int.int32_t. + 0x00002000 73686f72 7420756e 7369676e 65642069 short unsigned i + 0x00002010 6e740069 6e743136 5f74005f 426f6f6c nt.int16_t._Bool + 0x00002020 0066735f 6e657874 0064715f 656e7472 .fs_next.dq_entr + 0x00002030 795f7400 66735f69 6f66756e 6300636f y_t.fs_iofunc.co + 0x00002040 6f6b6965 5f736565 6b5f6675 6e637469 okie_seek_functi + 0x00002050 6f6e5f74 0066735f 62756666 65720073 on_t.fs_buffer.s + 0x00002060 6c5f7461 696c0070 69645f74 0066735f l_tail.pid_t.fs_ + 0x00002070 636f6f6b 69650063 6f756e74 00696e66 cookie.count.inf + 0x00002080 6f007772 69746500 5f73697a 655f7400 o.write._size_t. + 0x00002090 7365656b 0066735f 6c6f636b 0064715f seek.fs_lock.dq_ + 0x000020a0 71756575 655f7400 66735f62 75667374 queue_t.fs_bufst + 0x000020b0 61727400 5f75696e 7431365f 74006673 art._uint16_t.fs + 0x000020c0 5f6e756e 676f7474 656e0075 6e736967 _nungotten.unsig + 0x000020d0 6e656420 696e7400 66735f66 6c616773 ned int.fs_flags + 0x000020e0 0064715f 71756575 655f7300 726d7574 .dq_queue_s.rmut + 0x000020f0 65785f73 00726d75 7465785f 74005f73 ex_s.rmutex_t._s + 0x00002100 73697a65 5f74006c 6f6e6720 6c6f6e67 size_t.long long + 0x00002110 20696e74 00756e73 69676e65 6420696e int.unsigned in + 0x00002120 74005f45 78697400 7374646c 69622f6c t._Exit.stdlib/l + 0x00002130 69625f65 7869742e 63007374 61747573 ib_exit.c.status + 0x00002140 006c6f6e 6720756e 7369676e 65642069 .long unsigned i + 0x00002150 6e740074 61736b5f 73657463 616e6365 nt.task_setcance + 0x00002160 6c737461 7465006c 6f6e6720 6c6f6e67 lstate.long long + 0x00002170 20756e73 69676e65 6420696e 74005f65 unsigned int._e + 0x00002180 78697400 5f5f6473 6f5f6861 6e646c65 xit.__dso_handle + 0x00002190 00756e73 69676e65 64206368 61720071 .unsigned char.q + 0x000021a0 7569636b 5f657869 74006368 61720066 uick_exit.char.f + 0x000021b0 666c7573 68006c6f 6e672069 6e74005f flush.long int._ + 0x000021c0 426f6f6c 0073686f 72742075 6e736967 Bool.short unsig + 0x000021d0 6e656420 696e7400 7369676e 65642063 ned int.signed c + 0x000021e0 68617200 6c6f6e67 20646f75 626c6500 har.long double. + 0x000021f0 65786974 0073686f 72742069 6e74002f exit.short int./ + 0x00002200 55736572 732f4c75 7070792f 6f783634 Users/Luppy/ox64 + 0x00002210 2f6e7574 74782f6c 6962732f 6c696263 /nuttx/libs/libc + 0x00002220 00474e55 20433137 2031302e 322e3020 .GNU C17 10.2.0 + 0x00002230 2d6d636d 6f64656c 3d6d6564 616e7920 -mcmodel=medany + 0x00002240 2d6d6172 63683d72 76363469 6d616664 -march=rv64imafd + 0x00002250 63202d6d 6162693d 6c703634 64202d6d c -mabi=lp64d -m + 0x00002260 61726368 3d727636 34696d61 66646320 arch=rv64imafdc + 0x00002270 2d67202d 4f73202d 666e6f2d 636f6d6d -g -Os -fno-comm + 0x00002280 6f6e202d 666e6f2d 73747269 63742d61 on -fno-strict-a + 0x00002290 6c696173 696e6720 2d666f6d 69742d66 liasing -fomit-f + 0x000022a0 72616d65 2d706f69 6e746572 202d6666 rame-pointer -ff + 0x000022b0 756e6374 696f6e2d 73656374 696f6e73 unction-sections + 0x000022c0 202d6664 6174612d 73656374 696f6e73 -fdata-sections + 0x000022d0 006c6f6e 67206c6f 6e672069 6e740073 .long long int.s + 0x000022e0 74726c65 6e007374 72696e67 2f6c6962 trlen.string/lib + 0x000022f0 5f737472 6c656e2e 63007369 7a655f74 _strlen.c.size_t + 0x00002300 006c6f6e 6720756e 7369676e 65642069 .long unsigned i + 0x00002310 6e74006c 6f6e6720 6c6f6e67 20756e73 nt.long long uns + 0x00002320 69676e65 6420696e 7400756e 7369676e igned int.unsign + 0x00002330 65642063 68617200 63686172 00474e55 ed char.char.GNU + 0x00002340 20433137 2031302e 322e3020 2d6d636d C17 10.2.0 -mcm + 0x00002350 6f64656c 3d6d6564 616e7920 2d6d6172 odel=medany -mar + 0x00002360 63683d72 76363469 6d616664 63202d6d ch=rv64imafdc -m + 0x00002370 6162693d 6c703634 64202d6d 61726368 abi=lp64d -march + 0x00002380 3d727636 34696d61 66646320 2d67202d =rv64imafdc -g - + 0x00002390 4f73202d 666e6f2d 636f6d6d 6f6e202d Os -fno-common - + 0x000023a0 666e6f2d 73747269 63742d61 6c696173 fno-strict-alias + 0x000023b0 696e6720 2d666f6d 69742d66 72616d65 ing -fomit-frame + 0x000023c0 2d706f69 6e746572 202d6666 756e6374 -pointer -ffunct + 0x000023d0 696f6e2d 73656374 696f6e73 202d6664 ion-sections -fd + 0x000023e0 6174612d 73656374 696f6e73 006c6f6e ata-sections.lon + 0x000023f0 6720696e 74005f42 6f6f6c00 73686f72 g int._Bool.shor + 0x00002400 7420756e 7369676e 65642069 6e740073 t unsigned int.s + 0x00002410 69676e65 64206368 6172006c 6f6e6720 igned char.long + 0x00002420 646f7562 6c65005f 73697a65 5f740073 double._size_t.s + 0x00002430 686f7274 20696e74 00756e73 69676e65 hort int.unsigne + 0x00002440 6420696e 74002f55 73657273 2f4c7570 d int./Users/Lup + 0x00002450 70792f6f 7836342f 6e757474 782f6c69 py/ox64/nuttx/li + 0x00002460 62732f6c 69626300 6c6f6e67 206c6f6e bs/libc.long lon + 0x00002470 6720696e 74006d65 6d637079 00756e73 g int.memcpy.uns + 0x00002480 69676e65 6420696e 74006465 73740073 igned int.dest.s + 0x00002490 697a655f 74006c6f 6e672075 6e736967 ize_t.long unsig + 0x000024a0 6e656420 696e7400 6c6f6e67 206c6f6e ned int.long lon + 0x000024b0 6720756e 7369676e 65642069 6e740075 g unsigned int.u + 0x000024c0 6e736967 6e656420 63686172 00636861 nsigned char.cha + 0x000024d0 72006c6f 6e672069 6e740073 7472696e r.long int.strin + 0x000024e0 672f6c69 625f6d65 6d637079 2e63005f g/lib_memcpy.c._ + 0x000024f0 426f6f6c 00706f75 74007368 6f727420 Bool.pout.short + 0x00002500 756e7369 676e6564 20696e74 00736967 unsigned int.sig + 0x00002510 6e656420 63686172 006c6f6e 6720646f ned char.long do + 0x00002520 75626c65 005f7369 7a655f74 0073686f uble._size_t.sho + 0x00002530 72742069 6e74002f 55736572 732f4c75 rt int./Users/Lu + 0x00002540 7070792f 6f783634 2f6e7574 74782f6c ppy/ox64/nuttx/l + 0x00002550 6962732f 6c696263 00474e55 20433137 ibs/libc.GNU C17 + 0x00002560 2031302e 322e3020 2d6d636d 6f64656c 10.2.0 -mcmodel + 0x00002570 3d6d6564 616e7920 2d6d6172 63683d72 =medany -march=r + 0x00002580 76363469 6d616664 63202d6d 6162693d v64imafdc -mabi= + 0x00002590 6c703634 64202d6d 61726368 3d727636 lp64d -march=rv6 + 0x000025a0 34696d61 66646320 2d67202d 4f73202d 4imafdc -g -Os - + 0x000025b0 666e6f2d 636f6d6d 6f6e202d 666e6f2d fno-common -fno- + 0x000025c0 73747269 63742d61 6c696173 696e6720 strict-aliasing + 0x000025d0 2d666f6d 69742d66 72616d65 2d706f69 -fomit-frame-poi + 0x000025e0 6e746572 202d6666 756e6374 696f6e2d nter -ffunction- + 0x000025f0 73656374 696f6e73 202d6664 6174612d sections -fdata- + 0x00002600 73656374 696f6e73 00636c6f 73650073 sections.close.s + 0x00002610 6c5f6865 61640077 72697465 0066735f l_head.write.fs_ + 0x00002620 756e676f 7474656e 005f7569 6e74385f ungotten._uint8_ + 0x00002630 7400736c 5f737464 0073686f 72742069 t.sl_std.short i + 0x00002640 6e740073 697a655f 74007374 7265616d nt.size_t.stream + 0x00002650 6c697374 00636f6f 6b69655f 77726974 list.cookie_writ + 0x00002660 655f6675 6e637469 6f6e5f74 00776169 e_function_t.wai + 0x00002670 746c6973 7400746c 5f746173 6b00636f tlist.tl_task.co + 0x00002680 6f6b6965 5f636c6f 73655f66 756e6374 okie_close_funct + 0x00002690 696f6e5f 74007373 697a655f 74007461 ion_t.ssize_t.ta + 0x000026a0 5f6c6f63 6b00474e 55204331 37203130 _lock.GNU C17 10 + 0x000026b0 2e322e30 202d6d63 6d6f6465 6c3d6d65 .2.0 -mcmodel=me + 0x000026c0 64616e79 202d6d61 7263683d 72763634 dany -march=rv64 + 0x000026d0 696d6166 6463202d 6d616269 3d6c7036 imafdc -mabi=lp6 + 0x000026e0 3464202d 6d617263 683d7276 3634696d 4d -march=rv64im + 0x000026f0 61666463 202d6720 2d4f7320 2d666e6f afdc -g -Os -fno + 0x00002700 2d636f6d 6d6f6e20 2d666e6f 2d737472 -common -fno-str + 0x00002710 6963742d 616c6961 73696e67 202d666f ict-aliasing -fo + 0x00002720 6d69742d 6672616d 652d706f 696e7465 mit-frame-pointe + 0x00002730 72202d66 66756e63 74696f6e 2d736563 r -ffunction-sec + 0x00002740 74696f6e 73202d66 64617461 2d736563 tions -fdata-sec + 0x00002750 74696f6e 73006673 5f627566 656e6400 tions.fs_bufend. + 0x00002760 68656164 0075696e 74385f74 00636f6f head.uint8_t.coo + 0x00002770 6b69655f 696f5f66 756e6374 696f6e73 kie_io_functions + 0x00002780 5f740062 6c696e6b 0073656d 5f730073 _t.blink.sem_s.s + 0x00002790 656d5f74 0066735f 62756672 65616400 em_t.fs_bufread. + 0x000027a0 66735f62 7566706f 7300746c 732f7461 fs_bufpos.tls/ta + 0x000027b0 736b5f67 6574696e 666f2e63 00726561 sk_getinfo.c.rea + 0x000027c0 64006c6f 6e67206c 6f6e6720 696e7400 d.long long int. + 0x000027d0 6c6f6e67 206c6f6e 6720756e 7369676e long long unsign + 0x000027e0 65642069 6e740068 6f6c6465 7200636f ed int.holder.co + 0x000027f0 6f6b6965 5f726561 645f6675 6e637469 okie_read_functi + 0x00002800 6f6e5f74 006d7574 65785f74 0066696c on_t.mutex_t.fil + 0x00002810 655f7374 72756374 002f5573 6572732f e_struct./Users/ + 0x00002820 4c757070 792f6f78 36342f6e 75747478 Luppy/ox64/nuttx + 0x00002830 2f6c6962 732f6c69 6263006f 66665f74 /libs/libc.off_t + 0x00002840 00666c69 6e6b006d 75746578 5f730064 .flink.mutex_s.d + 0x00002850 715f656e 7472795f 73006c6f 6e672064 q_entry_s.long d + 0x00002860 6f75626c 65005f69 6e743332 5f740073 ouble._int32_t.s + 0x00002870 6c5f6c6f 636b0075 6e736967 6e656420 l_lock.unsigned + 0x00002880 63686172 005f696e 7431365f 74007461 char._int16_t.ta + 0x00002890 696c0073 656d636f 756e7400 75705f67 il.semcount.up_g + 0x000028a0 65747370 00736967 6e656420 63686172 etsp.signed char + 0x000028b0 00666c61 67730074 6c735f69 6e666f5f .flags.tls_info_ + 0x000028c0 73007461 736b5f67 65745f69 6e666f00 s.task_get_info. + 0x000028d0 746c5f65 72726e6f 006c6f6e 6720756e tl_errno.long un + 0x000028e0 7369676e 65642069 6e740066 735f6f66 signed int.fs_of + 0x000028f0 6c616773 00617267 76006d75 74657800 lags.argv.mutex. + 0x00002900 7461736b 5f696e66 6f5f7300 74615f73 task_info_s.ta_s + 0x00002910 74726561 6d6c6973 74006368 61720075 treamlist.char.u + 0x00002920 696e7431 365f7400 6c6f6e67 20696e74 int16_t.long int + 0x00002930 00696e74 33325f74 0073686f 72742075 .int32_t.short u + 0x00002940 6e736967 6e656420 696e7400 696e7431 nsigned int.int1 + 0x00002950 365f7400 5f426f6f 6c006673 5f6e6578 6_t._Bool.fs_nex + 0x00002960 74006471 5f656e74 72795f74 0066735f t.dq_entry_t.fs_ + 0x00002970 696f6675 6e630063 6f6f6b69 655f7365 iofunc.cookie_se + 0x00002980 656b5f66 756e6374 696f6e5f 74006673 ek_function_t.fs + 0x00002990 5f627566 66657200 736c5f74 61696c00 _buffer.sl_tail. + 0x000029a0 7069645f 74007569 6e747074 725f7400 pid_t.uintptr_t. + 0x000029b0 66735f63 6f6f6b69 6500636f 756e7400 fs_cookie.count. + 0x000029c0 696e666f 00746c5f 63707374 61746500 info.tl_cpstate. + 0x000029d0 5f73697a 655f7400 7365656b 0066735f _size_t.seek.fs_ + 0x000029e0 6c6f636b 0064715f 71756575 655f7400 lock.dq_queue_t. + 0x000029f0 66735f62 75667374 61727400 5f75696e fs_bufstart._uin + 0x00002a00 7431365f 74006673 5f6e756e 676f7474 t16_t.fs_nungott + 0x00002a10 656e0075 6e736967 6e656420 696e7400 en.unsigned int. + 0x00002a20 66735f66 6c616773 0064715f 71756575 fs_flags.dq_queu + 0x00002a30 655f7300 726d7574 65785f73 00726d75 e_s.rmutex_s.rmu + 0x00002a40 7465785f 74005f73 73697a65 5f740063 tex_t._ssize_t.c + 0x00002a50 6c6f7365 00736c5f 68656164 00777269 lose.sl_head.wri + 0x00002a60 74650066 735f756e 676f7474 656e005f te.fs_ungotten._ + 0x00002a70 75696e74 385f7400 736c5f73 74640073 uint8_t.sl_std.s + 0x00002a80 686f7274 20696e74 0073697a 655f7400 hort int.size_t. + 0x00002a90 73747265 616d6c69 73740063 6f6f6b69 streamlist.cooki + 0x00002aa0 655f7772 6974655f 66756e63 74696f6e e_write_function + 0x00002ab0 5f740077 6169746c 69737400 746c5f74 _t.waitlist.tl_t + 0x00002ac0 61736b00 636f6f6b 69655f63 6c6f7365 ask.cookie_close + 0x00002ad0 5f66756e 6374696f 6e5f7400 7373697a _function_t.ssiz + 0x00002ae0 655f7400 746c7369 6e666f00 74615f6c e_t.tlsinfo.ta_l + 0x00002af0 6f636b00 474e5520 43313720 31302e32 ock.GNU C17 10.2 + 0x00002b00 2e30202d 6d636d6f 64656c3d 6d656461 .0 -mcmodel=meda + 0x00002b10 6e79202d 6d617263 683d7276 3634696d ny -march=rv64im + 0x00002b20 61666463 202d6d61 62693d6c 70363464 afdc -mabi=lp64d + 0x00002b30 202d6d61 7263683d 72763634 696d6166 -march=rv64imaf + 0x00002b40 6463202d 67202d4f 73202d66 6e6f2d63 dc -g -Os -fno-c + 0x00002b50 6f6d6d6f 6e202d66 6e6f2d73 74726963 ommon -fno-stric + 0x00002b60 742d616c 69617369 6e67202d 666f6d69 t-aliasing -fomi + 0x00002b70 742d6672 616d652d 706f696e 74657220 t-frame-pointer + 0x00002b80 2d666675 6e637469 6f6e2d73 65637469 -ffunction-secti + 0x00002b90 6f6e7320 2d666461 74612d73 65637469 ons -fdata-secti + 0x00002ba0 6f6e7300 66735f62 7566656e 64006865 ons.fs_bufend.he + 0x00002bb0 61640075 696e7438 5f740063 6f6f6b69 ad.uint8_t.cooki + 0x00002bc0 655f696f 5f66756e 6374696f 6e735f74 e_io_functions_t + 0x00002bd0 00626c69 6e6b0073 656d5f73 0073656d .blink.sem_s.sem + 0x00002be0 5f740066 735f6275 66726561 64006673 _t.fs_bufread.fs + 0x00002bf0 5f627566 706f7300 7369676e 65642063 _bufpos.signed c + 0x00002c00 68617200 675f6572 726e6f00 72656164 har.g_errno.read + 0x00002c10 006c6f6e 67206c6f 6e672069 6e74006c .long long int.l + 0x00002c20 6f6e6720 6c6f6e67 20756e73 69676e65 ong long unsigne + 0x00002c30 6420696e 7400686f 6c646572 00636f6f d int.holder.coo + 0x00002c40 6b69655f 72656164 5f66756e 6374696f kie_read_functio + 0x00002c50 6e5f7400 6d757465 785f7400 66696c65 n_t.mutex_t.file + 0x00002c60 5f737472 75637400 2f557365 72732f4c _struct./Users/L + 0x00002c70 75707079 2f6f7836 342f6e75 7474782f uppy/ox64/nuttx/ + 0x00002c80 6c696273 2f6c6962 63006f66 665f7400 libs/libc.off_t. + 0x00002c90 666c696e 6b006471 5f656e74 72795f73 flink.dq_entry_s + 0x00002ca0 006c6f6e 6720646f 75626c65 005f696e .long double._in + 0x00002cb0 7433325f 7400736c 5f6c6f63 6b00756e t32_t.sl_lock.un + 0x00002cc0 7369676e 65642063 68617200 5f696e74 signed char._int + 0x00002cd0 31365f74 00746169 6c007365 6d636f75 16_t.tail.semcou + 0x00002ce0 6e740075 705f6765 74737000 726d7574 nt.up_getsp.rmut + 0x00002cf0 65785f73 00666c61 67730074 6c735f69 ex_s.flags.tls_i + 0x00002d00 6e666f5f 73007569 6e743136 5f740074 nfo_s.uint16_t.t + 0x00002d10 6c5f6572 726e6f00 6c6f6e67 20756e73 l_errno.long uns + 0x00002d20 69676e65 6420696e 74006673 5f6f666c igned int.fs_ofl + 0x00002d30 61677300 61726776 006d7574 65780074 ags.argv.mutex.t + 0x00002d40 61736b5f 696e666f 5f730074 615f7374 ask_info_s.ta_st + 0x00002d50 7265616d 6c697374 00636861 72006d75 reamlist.char.mu + 0x00002d60 7465785f 73006c6f 6e672069 6e740069 tex_s.long int.i + 0x00002d70 6e743332 5f740073 686f7274 20756e73 nt32_t.short uns + 0x00002d80 69676e65 6420696e 7400696e 7431365f igned int.int16_ + 0x00002d90 74005f42 6f6f6c00 66735f6e 65787400 t._Bool.fs_next. + 0x00002da0 64715f65 6e747279 5f740066 735f696f dq_entry_t.fs_io + 0x00002db0 66756e63 00636f6f 6b69655f 7365656b func.cookie_seek + 0x00002dc0 5f66756e 6374696f 6e5f7400 66735f62 _function_t.fs_b + 0x00002dd0 75666665 7200736c 5f746169 6c007069 uffer.sl_tail.pi + 0x00002de0 645f7400 75696e74 7074725f 74006673 d_t.uintptr_t.fs + 0x00002df0 5f636f6f 6b696500 636f756e 7400746c _cookie.count.tl + 0x00002e00 5f637073 74617465 005f7369 7a655f74 _cpstate._size_t + 0x00002e10 00736565 6b006673 5f6c6f63 6b006471 .seek.fs_lock.dq + 0x00002e20 5f717565 75655f74 00657272 6e6f2f6c _queue_t.errno/l + 0x00002e30 69625f65 72726e6f 2e630066 735f6275 ib_errno.c.fs_bu + 0x00002e40 66737461 7274005f 75696e74 31365f74 fstart._uint16_t + 0x00002e50 0066735f 6e756e67 6f747465 6e00756e .fs_nungotten.un + 0x00002e60 7369676e 65642069 6e740066 735f666c signed int.fs_fl + 0x00002e70 61677300 64715f71 75657565 5f73005f ags.dq_queue_s._ + 0x00002e80 5f657272 6e6f0072 6d757465 785f7400 _errno.rmutex_t. + 0x00002e90 5f737369 7a655f74 0074765f 6e736563 _ssize_t.tv_nsec + 0x00002ea0 00626c69 6e6b005f 75696e74 385f7400 .blink._uint8_t. + 0x00002eb0 72717470 0074765f 73656300 6e786d75 rqtp.tv_sec.nxmu + 0x00002ec0 7465785f 69735f68 6f6c6400 6e787365 tex_is_hold.nxse + 0x00002ed0 6d5f696e 69740067 65747469 64006e78 m_init.gettid.nx + 0x00002ee0 6d757465 785f6465 7374726f 79006e78 mutex_destroy.nx + 0x00002ef0 73656d5f 77616974 006c6f6e 6720646f sem_wait.long do + 0x00002f00 75626c65 00776169 746c6973 74006e78 uble.waitlist.nx + 0x00002f10 726d7574 65785f69 6e697400 73686f72 rmutex_init.shor + 0x00002f20 7420696e 7400474e 55204331 37203130 t int.GNU C17 10 + 0x00002f30 2e322e30 202d6d63 6d6f6465 6c3d6d65 .2.0 -mcmodel=me + 0x00002f40 64616e79 202d6d61 7263683d 72763634 dany -march=rv64 + 0x00002f50 696d6166 6463202d 6d616269 3d6c7036 imafdc -mabi=lp6 + 0x00002f60 3464202d 6d617263 683d7276 3634696d 4d -march=rv64im + 0x00002f70 61666463 202d6720 2d4f7320 2d666e6f afdc -g -Os -fno + 0x00002f80 2d636f6d 6d6f6e20 2d666e6f 2d737472 -common -fno-str + 0x00002f90 6963742d 616c6961 73696e67 202d666f ict-aliasing -fo + 0x00002fa0 6d69742d 6672616d 652d706f 696e7465 mit-frame-pointe + 0x00002fb0 72202d66 66756e63 74696f6e 2d736563 r -ffunction-sec + 0x00002fc0 74696f6e 73202d66 64617461 2d736563 tions -fdata-sec + 0x00002fd0 74696f6e 73006e78 726d7574 65785f69 tions.nxrmutex_i + 0x00002fe0 735f6c6f 636b6564 00686561 64007569 s_locked.head.ui + 0x00002ff0 6e74385f 74007365 6d5f7300 73656d5f nt8_t.sem_s.sem_ + 0x00003000 74006d75 7465785f 73006e78 6d757465 t.mutex_s.nxmute + 0x00003010 785f6973 5f6c6f63 6b656400 64656c61 x_is_locked.dela + 0x00003020 79006e78 726d7574 65785f74 696d6564 y.nxrmutex_timed + 0x00003030 6c6f636b 006c6f6e 67206c6f 6e672069 lock.long long i + 0x00003040 6e74002f 55736572 732f4c75 7070792f nt./Users/Luppy/ + 0x00003050 6f783634 2f6e7574 74782f6c 6962732f ox64/nuttx/libs/ + 0x00003060 6c696263 006e786d 75746578 5f69735f libc.nxmutex_is_ + 0x00003070 72657365 7400686f 6c646572 006e7872 reset.holder.nxr + 0x00003080 6d757465 785f7265 73746f72 656c6f63 mutex_restoreloc + 0x00003090 6b006d75 7465785f 7400726d 75746578 k.mutex_t.rmutex + 0x000030a0 00455252 4f520066 6c696e6b 006e7873 .ERROR.flink.nxs + 0x000030b0 656d5f70 6f737400 6e787365 6d5f7365 em_post.nxsem_se + 0x000030c0 745f7072 6f746f63 6f6c006e 7873656d t_protocol.nxsem + 0x000030d0 5f676574 5f76616c 7565006e 78726d75 _get_value.nxrmu + 0x000030e0 7465785f 756e6c6f 636b0075 6e736967 tex_unlock.unsig + 0x000030f0 6e656420 63686172 006e7872 6d757465 ned char.nxrmute + 0x00003100 785f7472 796c6f63 6b007469 6d655f74 x_trylock.time_t + 0x00003110 0073656d 636f756e 74007369 676e6564 .semcount.signed + 0x00003120 20636861 7200666c 61677300 6c6f6e67 char.flags.long + 0x00003130 206c6f6e 6720756e 7369676e 65642069 long unsigned i + 0x00003140 6e74005f 5f617373 65727400 75696e74 nt.__assert.uint + 0x00003150 33325f74 006e786d 75746578 5f74696d 32_t.nxmutex_tim + 0x00003160 65646c6f 636b0063 6c6f636b 5f676574 edlock.clock_get + 0x00003170 74696d65 006e786d 75746578 5f696e69 time.nxmutex_ini + 0x00003180 74006e78 6d757465 785f6c6f 636b0074 t.nxmutex_lock.t + 0x00003190 61696c00 6d757465 78007368 6f727420 ail.mutex.short + 0x000031a0 756e7369 676e6564 20696e74 00636c6f unsigned int.clo + 0x000031b0 636b5f74 696d6573 7065635f 61646400 ck_timespec_add. + 0x000031c0 63686172 006c6f63 6b656400 6c6f6e67 char.locked.long + 0x000031d0 20696e74 00696e74 31365f74 005f426f int.int16_t._Bo + 0x000031e0 6f6c0064 715f656e 7472795f 73006471 ol.dq_entry_s.dq + 0x000031f0 5f656e74 72795f74 005f696e 7431365f _entry_t._int16_ + 0x00003200 74006e78 726d7574 65785f69 735f686f t.nxrmutex_is_ho + 0x00003210 6c640063 6c6f636b 5f746963 6b733274 ld.clock_ticks2t + 0x00003220 696d6500 6c6f6e67 20756e73 69676e65 ime.long unsigne + 0x00003230 6420696e 74006e78 726d7574 65785f6c d int.nxrmutex_l + 0x00003240 6f636b00 7069645f 74006e78 726d7574 ock.pid_t.nxrmut + 0x00003250 65785f64 65737472 6f79006e 786d7574 ex_destroy.nxmut + 0x00003260 65785f75 6e6c6f63 6b006e78 73656d5f ex_unlock.nxsem_ + 0x00003270 74727977 61697400 636f756e 74006e78 trywait.count.nx + 0x00003280 6d757465 785f7265 73746f72 656c6f63 mutex_restoreloc + 0x00003290 6b006e78 6d757465 785f7472 796c6f63 k.nxmutex_tryloc + 0x000032a0 6b006e78 73656d5f 64657374 726f7900 k.nxsem_destroy. + 0x000032b0 6e786d75 7465785f 62726561 6b6c6f63 nxmutex_breakloc + 0x000032c0 6b006471 5f717565 75655f74 006d6973 k.dq_queue_t.mis + 0x000032d0 632f6c69 625f6d75 7465782e 63007469 c/lib_mutex.c.ti + 0x000032e0 6d657370 6563005f 75696e74 33325f74 mespec._uint32_t + 0x000032f0 006e7872 6d757465 785f6272 65616b6c .nxrmutex_breakl + 0x00003300 6f636b00 756e7369 676e6564 20696e74 ock.unsigned int + 0x00003310 006e7873 656d5f63 6c6f636b 77616974 .nxsem_clockwait + 0x00003320 0074696d 656f7574 0064715f 71756575 .timeout.dq_queu + 0x00003330 655f7300 726d7574 65785f73 00726d75 e_s.rmutex_s.rmu + 0x00003340 7465785f 74005f75 696e7433 325f7400 tex_t._uint32_t. + 0x00003350 756e7369 676e6564 20696e74 0073636c unsigned int.scl + 0x00003360 6f636b5f 74007469 6d657370 65630045 ock_t.timespec.E + 0x00003370 52524f52 005f696e 7433325f 74007265 RROR._int32_t.re + 0x00003380 6d61696e 64657200 6c6f6e67 206c6f6e mainder.long lon + 0x00003390 6720756e 7369676e 65642069 6e740072 g unsigned int.r + 0x000033a0 656c7469 6d650075 6e736967 6e656420 eltime.unsigned + 0x000033b0 63686172 0074696d 655f7400 75696e74 char.time_t.uint + 0x000033c0 33325f74 006c6f6e 6720696e 74007469 32_t.long int.ti + 0x000033d0 636b7300 6c6f6e67 20756e73 69676e65 cks.long unsigne + 0x000033e0 6420696e 74007363 6865642f 636c6f63 d int.sched/cloc + 0x000033f0 6b5f7469 636b7332 74696d65 2e630074 k_ticks2time.c.t + 0x00003400 765f7365 63007368 6f727420 756e7369 v_sec.short unsi + 0x00003410 676e6564 20696e74 00736967 6e656420 gned int.signed + 0x00003420 63686172 00636c6f 636b5f74 69636b73 char.clock_ticks + 0x00003430 3274696d 65007476 5f6e7365 63007368 2time.tv_nsec.sh + 0x00003440 6f727420 696e7400 696e7433 325f7400 ort int.int32_t. + 0x00003450 2f557365 72732f4c 75707079 2f6f7836 /Users/Luppy/ox6 + 0x00003460 342f6e75 7474782f 6c696273 2f6c6962 4/nuttx/libs/lib + 0x00003470 63006368 61720047 4e552043 31372031 c.char.GNU C17 1 + 0x00003480 302e322e 30202d6d 636d6f64 656c3d6d 0.2.0 -mcmodel=m + 0x00003490 6564616e 79202d6d 61726368 3d727636 edany -march=rv6 + 0x000034a0 34696d61 66646320 2d6d6162 693d6c70 4imafdc -mabi=lp + 0x000034b0 36346420 2d6d6172 63683d72 76363469 64d -march=rv64i + 0x000034c0 6d616664 63202d67 202d4f73 202d666e mafdc -g -Os -fn + 0x000034d0 6f2d636f 6d6d6f6e 202d666e 6f2d7374 o-common -fno-st + 0x000034e0 72696374 2d616c69 6173696e 67202d66 rict-aliasing -f + 0x000034f0 6f6d6974 2d667261 6d652d70 6f696e74 omit-frame-point + 0x00003500 6572202d 6666756e 6374696f 6e2d7365 er -ffunction-se + 0x00003510 6374696f 6e73202d 66646174 612d7365 ctions -fdata-se + 0x00003520 6374696f 6e73005f 75696e74 33325f74 ctions._uint32_t + 0x00003530 00756e73 69676e65 6420696e 74007363 .unsigned int.sc + 0x00003540 6865642f 636c6f63 6b5f7469 6d657370 hed/clock_timesp + 0x00003550 65635f61 64642e63 006e7365 63007469 ec_add.c.nsec.ti + 0x00003560 6d657370 6563006c 6f6e6720 756e7369 mespec.long unsi + 0x00003570 676e6564 20696e74 006c6f6e 67206c6f gned int.long lo + 0x00003580 6e672075 6e736967 6e656420 696e7400 ng unsigned int. + 0x00003590 2f557365 72732f4c 75707079 2f6f7836 /Users/Luppy/ox6 + 0x000035a0 342f6e75 7474782f 6c696273 2f6c6962 4/nuttx/libs/lib + 0x000035b0 6300756e 7369676e 65642063 68617200 c.unsigned char. + 0x000035c0 74696d65 5f740075 696e7433 325f7400 time_t.uint32_t. + 0x000035d0 6c6f6e67 20696e74 00636c6f 636b5f74 long int.clock_t + 0x000035e0 696d6573 7065635f 61646400 74765f73 imespec_add.tv_s + 0x000035f0 65630073 686f7274 20756e73 69676e65 ec.short unsigne + 0x00003600 6420696e 74007369 676e6564 20636861 d int.signed cha + 0x00003610 72007476 5f6e7365 63007368 6f727420 r.tv_nsec.short + 0x00003620 696e7400 63686172 00474e55 20433137 int.char.GNU C17 + 0x00003630 2031302e 322e3020 2d6d636d 6f64656c 10.2.0 -mcmodel + 0x00003640 3d6d6564 616e7920 2d6d6172 63683d72 =medany -march=r + 0x00003650 76363469 6d616664 63202d6d 6162693d v64imafdc -mabi= + 0x00003660 6c703634 64202d6d 61726368 3d727636 lp64d -march=rv6 + 0x00003670 34696d61 66646320 2d67202d 4f73202d 4imafdc -g -Os - + 0x00003680 666e6f2d 636f6d6d 6f6e202d 666e6f2d fno-common -fno- + 0x00003690 73747269 63742d61 6c696173 696e6720 strict-aliasing + 0x000036a0 2d666f6d 69742d66 72616d65 2d706f69 -fomit-frame-poi + 0x000036b0 6e746572 202d6666 756e6374 696f6e2d nter -ffunction- + 0x000036c0 73656374 696f6e73 202d6664 6174612d sections -fdata- + 0x000036d0 73656374 696f6e73 00636c6f 73650070 sections.close.p + 0x000036e0 74687265 61645f65 78697400 736c5f68 thread_exit.sl_h + 0x000036f0 65616400 77726974 65006673 5f756e67 ead.write.fs_ung + 0x00003700 6f747465 6e005f75 696e7438 5f740073 otten._uint8_t.s + 0x00003710 74617465 00736c5f 73746400 73686f72 tate.sl_std.shor + 0x00003720 7420696e 74007369 7a655f74 00737472 t int.size_t.str + 0x00003730 65616d6c 69737400 636f6f6b 69655f77 eamlist.cookie_w + 0x00003740 72697465 5f66756e 6374696f 6e5f7400 rite_function_t. + 0x00003750 77616974 6c697374 00746c5f 7461736b waitlist.tl_task + 0x00003760 00636f6f 6b69655f 636c6f73 655f6675 .cookie_close_fu + 0x00003770 6e637469 6f6e5f74 00737369 7a655f74 nction_t.ssize_t + 0x00003780 0074615f 6c6f636b 00474e55 20433137 .ta_lock.GNU C17 + 0x00003790 2031302e 322e3020 2d6d636d 6f64656c 10.2.0 -mcmodel + 0x000037a0 3d6d6564 616e7920 2d6d6172 63683d72 =medany -march=r + 0x000037b0 76363469 6d616664 63202d6d 6162693d v64imafdc -mabi= + 0x000037c0 6c703634 64202d6d 61726368 3d727636 lp64d -march=rv6 + 0x000037d0 34696d61 66646320 2d67202d 4f73202d 4imafdc -g -Os - + 0x000037e0 666e6f2d 636f6d6d 6f6e202d 666e6f2d fno-common -fno- + 0x000037f0 73747269 63742d61 6c696173 696e6720 strict-aliasing + 0x00003800 2d666f6d 69742d66 72616d65 2d706f69 -fomit-frame-poi + 0x00003810 6e746572 202d6666 756e6374 696f6e2d nter -ffunction- + 0x00003820 73656374 696f6e73 202d6664 6174612d sections -fdata- + 0x00003830 73656374 696f6e73 0066735f 62756665 sections.fs_bufe + 0x00003840 6e640068 65616400 75696e74 385f7400 nd.head.uint8_t. + 0x00003850 636f6f6b 69655f69 6f5f6675 6e637469 cookie_io_functi + 0x00003860 6f6e735f 7400626c 696e6b00 73656d5f ons_t.blink.sem_ + 0x00003870 73007365 6d5f7400 66735f62 75667265 s.sem_t.fs_bufre + 0x00003880 61640066 735f6275 66706f73 00736967 ad.fs_bufpos.sig + 0x00003890 6e656420 63686172 00726561 64006c6f ned char.read.lo + 0x000038a0 6e67206c 6f6e6720 696e7400 6c6f6e67 ng long int.long + 0x000038b0 206c6f6e 6720756e 7369676e 65642069 long unsigned i + 0x000038c0 6e740068 6f6c6465 7200636f 6f6b6965 nt.holder.cookie + 0x000038d0 5f726561 645f6675 6e637469 6f6e5f74 _read_function_t + 0x000038e0 006d7574 65785f74 00736c5f 7461696c .mutex_t.sl_tail + 0x000038f0 002f5573 6572732f 4c757070 792f6f78 ./Users/Luppy/ox + 0x00003900 36342f6e 75747478 2f6c6962 732f6c69 64/nuttx/libs/li + 0x00003910 62630045 52524f52 00666c69 6e6b0064 bc.ERROR.flink.d + 0x00003920 715f656e 7472795f 73006c6f 6e672064 q_entry_s.long d + 0x00003930 6f75626c 65005f69 6e743332 5f740073 ouble._int32_t.s + 0x00003940 6c5f6c6f 636b0075 6e736967 6e656420 l_lock.unsigned + 0x00003950 63686172 005f696e 7431365f 7400746c char._int16_t.tl + 0x00003960 735f696e 666f5f73 0073656d 636f756e s_info_s.semcoun + 0x00003970 74007570 5f676574 73700072 6d757465 t.up_getsp.rmute + 0x00003980 785f7300 666c6167 73007461 696c0075 x_s.flags.tail.u + 0x00003990 696e7431 365f7400 746c5f65 72726e6f int16_t.tl_errno + 0x000039a0 006c6f6e 6720756e 7369676e 65642069 .long unsigned i + 0x000039b0 6e740066 735f6f66 6c616773 00617267 nt.fs_oflags.arg + 0x000039c0 76006d75 74657800 7461736b 5f696e66 v.mutex.task_inf + 0x000039d0 6f5f7300 74615f73 74726561 6d6c6973 o_s.ta_streamlis + 0x000039e0 74006368 6172006d 75746578 5f73006c t.char.mutex_s.l + 0x000039f0 6f6e6720 696e7400 696e7433 325f7400 ong int.int32_t. + 0x00003a00 73686f72 7420756e 7369676e 65642069 short unsigned i + 0x00003a10 6e740069 6e743136 5f74005f 426f6f6c nt.int16_t._Bool + 0x00003a20 0066735f 6e657874 0064715f 656e7472 .fs_next.dq_entr + 0x00003a30 795f7400 66735f69 6f66756e 63006669 y_t.fs_iofunc.fi + 0x00003a40 6c655f73 74727563 7400636f 6f6b6965 le_struct.cookie + 0x00003a50 5f736565 6b5f6675 6e637469 6f6e5f74 _seek_function_t + 0x00003a60 0066735f 62756666 6572006f 6c647374 .fs_buffer.oldst + 0x00003a70 61746500 73636865 642f7461 736b5f73 ate.sched/task_s + 0x00003a80 65746361 6e63656c 73746174 652e6300 etcancelstate.c. + 0x00003a90 7069645f 74007569 6e747074 725f7400 pid_t.uintptr_t. + 0x00003aa0 66735f63 6f6f6b69 65006f66 665f7400 fs_cookie.off_t. + 0x00003ab0 636f756e 74007461 736b5f73 65746361 count.task_setca + 0x00003ac0 6e63656c 73746174 6500746c 5f637073 ncelstate.tl_cps + 0x00003ad0 74617465 005f7369 7a655f74 00736565 tate._size_t.see + 0x00003ae0 6b006673 5f6c6f63 6b006471 5f717565 k.fs_lock.dq_que + 0x00003af0 75655f74 0066735f 62756673 74617274 ue_t.fs_bufstart + 0x00003b00 005f7569 6e743136 5f740066 735f6e75 ._uint16_t.fs_nu + 0x00003b10 6e676f74 74656e00 756e7369 676e6564 ngotten.unsigned + 0x00003b20 20696e74 0066735f 666c6167 73006471 int.fs_flags.dq + 0x00003b30 5f717565 75655f73 005f5f65 72726e6f _queue_s.__errno + 0x00003b40 00726d75 7465785f 74005f73 73697a65 .rmutex_t._ssize + 0x00003b50 5f740073 656d6170 686f7265 2f73656d _t.semaphore/sem + 0x00003b60 5f696e69 742e6300 626c696e 6b007365 _init.c.blink.se + 0x00003b70 6d5f696e 6974005f 75696e74 385f7400 m_init._uint8_t. + 0x00003b80 6e787365 6d5f696e 69740073 686f7274 nxsem_init.short + 0x00003b90 20696e74 0073656d 5f740077 6169746c int.sem_t.waitl + 0x00003ba0 69737400 474e5520 43313720 31302e32 ist.GNU C17 10.2 + 0x00003bb0 2e30202d 6d636d6f 64656c3d 6d656461 .0 -mcmodel=meda + 0x00003bc0 6e79202d 6d617263 683d7276 3634696d ny -march=rv64im + 0x00003bd0 61666463 202d6d61 62693d6c 70363464 afdc -mabi=lp64d + 0x00003be0 202d6d61 7263683d 72763634 696d6166 -march=rv64imaf + 0x00003bf0 6463202d 67202d4f 73202d66 6e6f2d63 dc -g -Os -fno-c + 0x00003c00 6f6d6d6f 6e202d66 6e6f2d73 74726963 ommon -fno-stric + 0x00003c10 742d616c 69617369 6e67202d 666f6d69 t-aliasing -fomi + 0x00003c20 742d6672 616d652d 706f696e 74657220 t-frame-pointer + 0x00003c30 2d666675 6e637469 6f6e2d73 65637469 -ffunction-secti + 0x00003c40 6f6e7320 2d666461 74612d73 65637469 ons -fdata-secti + 0x00003c50 6f6e7300 68656164 0075696e 74385f74 ons.head.uint8_t + 0x00003c60 0073656d 5f73006c 6f6e6720 696e7400 .sem_s.long int. + 0x00003c70 4552524f 5200666c 696e6b00 666c6167 ERROR.flink.flag + 0x00003c80 73007461 696c0075 6e736967 6e656420 s.tail.unsigned + 0x00003c90 63686172 005f696e 7431365f 74007369 char._int16_t.si + 0x00003ca0 676e6564 20636861 72007365 6d636f75 gned char.semcou + 0x00003cb0 6e74006c 6f6e6720 6c6f6e67 20756e73 nt.long long uns + 0x00003cc0 69676e65 6420696e 74005f5f 61737365 igned int.__asse + 0x00003cd0 72740075 6e736967 6e656420 696e7400 rt.unsigned int. + 0x00003ce0 73686f72 7420756e 7369676e 65642069 short unsigned i + 0x00003cf0 6e740063 68617200 696e7431 365f7400 nt.char.int16_t. + 0x00003d00 64715f65 6e747279 5f730064 715f656e dq_entry_s.dq_en + 0x00003d10 7472795f 74006c6f 6e672075 6e736967 try_t.long unsig + 0x00003d20 6e656420 696e7400 70736861 72656400 ned int.pshared. + 0x00003d30 64715f71 75657565 5f730076 616c7565 dq_queue_s.value + 0x00003d40 002f5573 6572732f 4c757070 792f6f78 ./Users/Luppy/ox + 0x00003d50 36342f6e 75747478 2f6c6962 732f6c69 64/nuttx/libs/li + 0x00003d60 62630064 715f7175 6575655f 74005f5f bc.dq_queue_t.__ + 0x00003d70 6572726e 6f00626c 696e6b00 5f75696e errno.blink._uin + 0x00003d80 74385f74 0073686f 72742069 6e740073 t8_t.short int.s + 0x00003d90 656d5f74 00776169 746c6973 7400474e em_t.waitlist.GN + 0x00003da0 55204331 37203130 2e322e30 202d6d63 U C17 10.2.0 -mc + 0x00003db0 6d6f6465 6c3d6d65 64616e79 202d6d61 model=medany -ma + 0x00003dc0 7263683d 72763634 696d6166 6463202d rch=rv64imafdc - + 0x00003dd0 6d616269 3d6c7036 3464202d 6d617263 mabi=lp64d -marc + 0x00003de0 683d7276 3634696d 61666463 202d6720 h=rv64imafdc -g + 0x00003df0 2d4f7320 2d666e6f 2d636f6d 6d6f6e20 -Os -fno-common + 0x00003e00 2d666e6f 2d737472 6963742d 616c6961 -fno-strict-alia + 0x00003e10 73696e67 202d666f 6d69742d 6672616d sing -fomit-fram + 0x00003e20 652d706f 696e7465 72202d66 66756e63 e-pointer -ffunc + 0x00003e30 74696f6e 2d736563 74696f6e 73202d66 tion-sections -f + 0x00003e40 64617461 2d736563 74696f6e 73006865 data-sections.he + 0x00003e50 61640075 696e7438 5f740073 656d5f73 ad.uint8_t.sem_s + 0x00003e60 0070726f 746f636f 6c006c6f 6e672069 .protocol.long i + 0x00003e70 6e740045 52524f52 00666c69 6e6b0066 nt.ERROR.flink.f + 0x00003e80 6c616773 006e7873 656d5f73 65745f70 lags.nxsem_set_p + 0x00003e90 726f746f 636f6c00 7461696c 0073656d rotocol.tail.sem + 0x00003ea0 5f736574 70726f74 6f636f6c 00756e73 _setprotocol.uns + 0x00003eb0 69676e65 64206368 6172005f 696e7431 igned char._int1 + 0x00003ec0 365f7400 7369676e 65642063 68617200 6_t.signed char. + 0x00003ed0 73656d63 6f756e74 006c6f6e 67206c6f semcount.long lo + 0x00003ee0 6e672075 6e736967 6e656420 696e7400 ng unsigned int. + 0x00003ef0 5f5f6173 73657274 00756e73 69676e65 __assert.unsigne + 0x00003f00 6420696e 74007368 6f727420 756e7369 d int.short unsi + 0x00003f10 676e6564 20696e74 00636861 7200696e gned int.char.in + 0x00003f20 7431365f 74006471 5f656e74 72795f73 t16_t.dq_entry_s + 0x00003f30 0064715f 656e7472 795f7400 6c6f6e67 .dq_entry_t.long + 0x00003f40 20756e73 69676e65 6420696e 74006471 unsigned int.dq + 0x00003f50 5f717565 75655f73 0064715f 71756575 _queue_s.dq_queu + 0x00003f60 655f7400 2f557365 72732f4c 75707079 e_t./Users/Luppy + 0x00003f70 2f6f7836 342f6e75 7474782f 6c696273 /ox64/nuttx/libs + 0x00003f80 2f6c6962 63007365 6d617068 6f72652f /libc.semaphore/ + 0x00003f90 73656d5f 73657470 726f746f 636f6c2e sem_setprotocol. + 0x00003fa0 63005f5f 6572726e 6f00626c 696e6b00 c.__errno.blink. + 0x00003fb0 5f75696e 74385f74 0073686f 72742069 _uint8_t.short i + 0x00003fc0 6e740073 656d5f74 00776169 746c6973 nt.sem_t.waitlis + 0x00003fd0 7400474e 55204331 37203130 2e322e30 t.GNU C17 10.2.0 + 0x00003fe0 202d6d63 6d6f6465 6c3d6d65 64616e79 -mcmodel=medany + 0x00003ff0 202d6d61 7263683d 72763634 696d6166 -march=rv64imaf + 0x00004000 6463202d 6d616269 3d6c7036 3464202d dc -mabi=lp64d - + 0x00004010 6d617263 683d7276 3634696d 61666463 march=rv64imafdc + 0x00004020 202d6720 2d4f7320 2d666e6f 2d636f6d -g -Os -fno-com + 0x00004030 6d6f6e20 2d666e6f 2d737472 6963742d mon -fno-strict- + 0x00004040 616c6961 73696e67 202d666f 6d69742d aliasing -fomit- + 0x00004050 6672616d 652d706f 696e7465 72202d66 frame-pointer -f + 0x00004060 66756e63 74696f6e 2d736563 74696f6e function-section + 0x00004070 73202d66 64617461 2d736563 74696f6e s -fdata-section + 0x00004080 73007365 6d5f6765 7476616c 75650068 s.sem_getvalue.h + 0x00004090 65616400 75696e74 385f7400 73656d5f ead.uint8_t.sem_ + 0x000040a0 73006c6f 6e672069 6e740073 656d6170 s.long int.semap + 0x000040b0 686f7265 2f73656d 5f676574 76616c75 hore/sem_getvalu + 0x000040c0 652e6300 4552524f 5200666c 696e6b00 e.c.ERROR.flink. + 0x000040d0 666c6167 73006e78 73656d5f 6765745f flags.nxsem_get_ + 0x000040e0 76616c75 65007461 696c0075 6e736967 value.tail.unsig + 0x000040f0 6e656420 63686172 005f696e 7431365f ned char._int16_ + 0x00004100 74007369 676e6564 20636861 72007365 t.signed char.se + 0x00004110 6d636f75 6e74006c 6f6e6720 6c6f6e67 mcount.long long + 0x00004120 20756e73 69676e65 6420696e 7400756e unsigned int.un + 0x00004130 7369676e 65642069 6e740073 686f7274 signed int.short + 0x00004140 20756e73 69676e65 6420696e 74006368 unsigned int.ch + 0x00004150 61720073 76616c00 696e7431 365f7400 ar.sval.int16_t. + 0x00004160 64715f65 6e747279 5f730064 715f656e dq_entry_s.dq_en + 0x00004170 7472795f 74006c6f 6e672075 6e736967 try_t.long unsig + 0x00004180 6e656420 696e7400 64715f71 75657565 ned int.dq_queue + 0x00004190 5f73002f 55736572 732f4c75 7070792f _s./Users/Luppy/ + 0x000041a0 6f783634 2f6e7574 74782f6c 6962732f ox64/nuttx/libs/ + 0x000041b0 6c696263 0064715f 71756575 655f7400 libc.dq_queue_t. + 0x000041c0 5f5f6572 726e6f00 636c6f73 65006666 __errno.close.ff + 0x000041d0 6c757368 5f756e6c 6f636b65 64007772 lush_unlocked.wr + 0x000041e0 69746500 66735f75 6e676f74 74656e00 ite.fs_ungotten. + 0x000041f0 5f75696e 74385f74 006c6962 5f66666c _uint8_t.lib_ffl + 0x00004200 7573685f 756e6c6f 636b6564 0073697a ush_unlocked.siz + 0x00004210 655f7400 6c69625f 666c7573 68616c6c e_t.lib_flushall + 0x00004220 5f756e6c 6f636b65 6400636f 6f6b6965 _unlocked.cookie + 0x00004230 5f777269 74655f66 756e6374 696f6e5f _write_function_ + 0x00004240 74007761 69746c69 73740063 6f6f6b69 t.waitlist.cooki + 0x00004250 655f636c 6f73655f 66756e63 74696f6e e_close_function + 0x00004260 5f740073 73697a65 5f740073 686f7274 _t.ssize_t.short + 0x00004270 20696e74 00474e55 20433137 2031302e int.GNU C17 10. + 0x00004280 322e3020 2d6d636d 6f64656c 3d6d6564 2.0 -mcmodel=med + 0x00004290 616e7920 2d6d6172 63683d72 76363469 any -march=rv64i + 0x000042a0 6d616664 63202d6d 6162693d 6c703634 mafdc -mabi=lp64 + 0x000042b0 64202d6d 61726368 3d727636 34696d61 d -march=rv64ima + 0x000042c0 66646320 2d67202d 4f73202d 666e6f2d fdc -g -Os -fno- + 0x000042d0 636f6d6d 6f6e202d 666e6f2d 73747269 common -fno-stri + 0x000042e0 63742d61 6c696173 696e6720 2d666f6d ct-aliasing -fom + 0x000042f0 69742d66 72616d65 2d706f69 6e746572 it-frame-pointer + 0x00004300 202d6666 756e6374 696f6e2d 73656374 -ffunction-sect + 0x00004310 696f6e73 202d6664 6174612d 73656374 ions -fdata-sect + 0x00004320 696f6e73 0066735f 62756665 6e640068 ions.fs_bufend.h + 0x00004330 65616400 75696e74 385f7400 6c69625f ead.uint8_t.lib_ + 0x00004340 66666c75 73680063 6f6f6b69 655f696f fflush.cookie_io + 0x00004350 5f66756e 6374696f 6e735f74 00626c69 _functions_t.bli + 0x00004360 6e6b0073 656d5f73 0073656d 5f740066 nk.sem_s.sem_t.f + 0x00004370 735f6275 66726561 64006673 5f627566 s_bufread.fs_buf + 0x00004380 706f7300 7369676e 65642063 68617200 pos.signed char. + 0x00004390 46494c45 00726561 64006c6f 6e67206c FILE.read.long l + 0x000043a0 6f6e6720 696e7400 2f557365 72732f4c ong int./Users/L + 0x000043b0 75707079 2f6f7836 342f6e75 7474782f uppy/ox64/nuttx/ + 0x000043c0 6c696273 2f6c6962 63006368 61720068 libs/libc.char.h + 0x000043d0 6f6c6465 7200636f 6f6b6965 5f726561 older.cookie_rea + 0x000043e0 645f6675 6e637469 6f6e5f74 006d7574 d_function_t.mut + 0x000043f0 65785f74 0066696c 655f7374 72756374 ex_t.file_struct + 0x00004400 00737472 65616d00 4552524f 5200666c .stream.ERROR.fl + 0x00004410 696e6b00 66666c75 73680064 715f656e ink.fflush.dq_en + 0x00004420 7472795f 73006c6f 6e672064 6f75626c try_s.long doubl + 0x00004430 65005f69 6e743332 5f740075 6e736967 e._int32_t.unsig + 0x00004440 6e656420 63686172 005f696e 7431365f ned char._int16_ + 0x00004450 74007365 6d636f75 6e740072 6d757465 t.semcount.rmute + 0x00004460 785f7300 666c6167 73006c6f 6e67206c x_s.flags.long l + 0x00004470 6f6e6720 756e7369 676e6564 20696e74 ong unsigned int + 0x00004480 00746169 6c007569 6e743136 5f74006c .tail.uint16_t.l + 0x00004490 6f6e6720 756e7369 676e6564 20696e74 ong unsigned int + 0x000044a0 0066735f 6f666c61 6773006d 75746578 .fs_oflags.mutex + 0x000044b0 0073686f 72742075 6e736967 6e656420 .short unsigned + 0x000044c0 696e7400 73746469 6f2f6c69 625f6666 int.stdio/lib_ff + 0x000044d0 6c757368 2e63006c 69625f67 65745f73 lush.c.lib_get_s + 0x000044e0 74726561 6d73006d 75746578 5f73006c treams.mutex_s.l + 0x000044f0 6f6e6720 696e7400 696e7433 325f7400 ong int.int32_t. + 0x00004500 696e7431 365f7400 5f426f6f 6c006673 int16_t._Bool.fs + 0x00004510 5f6e6578 74006471 5f656e74 72795f74 _next.dq_entry_t + 0x00004520 0066735f 696f6675 6e630063 6f6f6b69 .fs_iofunc.cooki + 0x00004530 655f7365 656b5f66 756e6374 696f6e5f e_seek_function_ + 0x00004540 74006673 5f627566 66657200 6c69625f t.fs_buffer.lib_ + 0x00004550 666c7573 68616c6c 00706964 5f740066 flushall.pid_t.f + 0x00004560 735f636f 6f6b6965 006f6666 5f740063 s_cookie.off_t.c + 0x00004570 6f756e74 005f7369 7a655f74 00736565 ount._size_t.see + 0x00004580 6b006673 5f6c6f63 6b006471 5f717565 k.fs_lock.dq_que + 0x00004590 75655f74 0066735f 62756673 74617274 ue_t.fs_bufstart + 0x000045a0 005f7569 6e743136 5f740066 735f6e75 ._uint16_t.fs_nu + 0x000045b0 6e676f74 74656e00 756e7369 676e6564 ngotten.unsigned + 0x000045c0 20696e74 0066735f 666c6167 73006471 int.fs_flags.dq + 0x000045d0 5f717565 75655f73 005f5f65 72726e6f _queue_s.__errno + 0x000045e0 00726d75 7465785f 74005f73 73697a65 .rmutex_t._ssize + 0x000045f0 5f740063 6c6f7365 00736c5f 68656164 _t.close.sl_head + 0x00004600 00777269 74650066 735f756e 676f7474 .write.fs_ungott + 0x00004610 656e005f 75696e74 385f7400 736c5f73 en._uint8_t.sl_s + 0x00004620 7464006c 69625f66 666c7573 685f756e td.lib_fflush_un + 0x00004630 6c6f636b 65640073 697a655f 74007374 locked.size_t.st + 0x00004640 7265616d 6c697374 006c6962 5f666c75 reamlist.lib_flu + 0x00004650 7368616c 6c5f756e 6c6f636b 65640063 shall_unlocked.c + 0x00004660 6f6f6b69 655f7772 6974655f 66756e63 ookie_write_func + 0x00004670 74696f6e 5f740077 6169746c 69737400 tion_t.waitlist. + 0x00004680 636f6f6b 69655f63 6c6f7365 5f66756e cookie_close_fun + 0x00004690 6374696f 6e5f7400 7373697a 655f7400 ction_t.ssize_t. + 0x000046a0 73686f72 7420696e 7400474e 55204331 short int.GNU C1 + 0x000046b0 37203130 2e322e30 202d6d63 6d6f6465 7 10.2.0 -mcmode + 0x000046c0 6c3d6d65 64616e79 202d6d61 7263683d l=medany -march= + 0x000046d0 72763634 696d6166 6463202d 6d616269 rv64imafdc -mabi + 0x000046e0 3d6c7036 3464202d 6d617263 683d7276 =lp64d -march=rv + 0x000046f0 3634696d 61666463 202d6720 2d4f7320 64imafdc -g -Os + 0x00004700 2d666e6f 2d636f6d 6d6f6e20 2d666e6f -fno-common -fno + 0x00004710 2d737472 6963742d 616c6961 73696e67 -strict-aliasing + 0x00004720 202d666f 6d69742d 6672616d 652d706f -fomit-frame-po + 0x00004730 696e7465 72202d66 66756e63 74696f6e inter -ffunction + 0x00004740 2d736563 74696f6e 73202d66 64617461 -sections -fdata + 0x00004750 2d736563 74696f6e 73006673 5f627566 -sections.fs_buf + 0x00004760 656e6400 68656164 0075696e 74385f74 end.head.uint8_t + 0x00004770 006c6962 5f66666c 75736800 636f6f6b .lib_fflush.cook + 0x00004780 69655f69 6f5f6675 6e637469 6f6e735f ie_io_functions_ + 0x00004790 7400626c 696e6b00 73656d5f 73007365 t.blink.sem_s.se + 0x000047a0 6d5f7400 66735f62 75667265 61640066 m_t.fs_bufread.f + 0x000047b0 735f6275 66706f73 0046494c 45007265 s_bufpos.FILE.re + 0x000047c0 6164006c 6f6e6720 6c6f6e67 20696e74 ad.long long int + 0x000047d0 002f5573 6572732f 4c757070 792f6f78 ./Users/Luppy/ox + 0x000047e0 36342f6e 75747478 2f6c6962 732f6c69 64/nuttx/libs/li + 0x000047f0 62630068 6f6c6465 7200636f 6f6b6965 bc.holder.cookie + 0x00004800 5f726561 645f6675 6e637469 6f6e5f74 _read_function_t + 0x00004810 006d7574 65785f74 00736c5f 7461696c .mutex_t.sl_tail + 0x00004820 00737472 65616d00 4552524f 5200666c .stream.ERROR.fl + 0x00004830 696e6b00 64715f65 6e747279 5f73006c ink.dq_entry_s.l + 0x00004840 6f6e6720 646f7562 6c65005f 696e7433 ong double._int3 + 0x00004850 325f7400 736c5f6c 6f636b00 756e7369 2_t.sl_lock.unsi + 0x00004860 676e6564 20636861 72005f69 6e743136 gned char._int16 + 0x00004870 5f74006c 61737465 72726e6f 0073656d _t.lasterrno.sem + 0x00004880 636f756e 74007369 676e6564 20636861 count.signed cha + 0x00004890 7200666c 61677300 6c6f6e67 206c6f6e r.flags.long lon + 0x000048a0 6720756e 7369676e 65642069 6e740074 g unsigned int.t + 0x000048b0 61696c00 75696e74 31365f74 006c6f6e ail.uint16_t.lon + 0x000048c0 6720756e 7369676e 65642069 6e740066 g unsigned int.f + 0x000048d0 735f6f66 6c616773 006e786d 75746578 s_oflags.nxmutex + 0x000048e0 5f6c6f63 6b006d75 74657800 73686f72 _lock.mutex.shor + 0x000048f0 7420756e 7369676e 65642069 6e740063 t unsigned int.c + 0x00004900 68617200 6d757465 785f7300 6c6f6e67 har.mutex_s.long + 0x00004910 20696e74 00696e74 33325f74 006c6973 int.int32_t.lis + 0x00004920 7400696e 7431365f 74005f42 6f6f6c00 t.int16_t._Bool. + 0x00004930 66735f6e 65787400 64715f65 6e747279 fs_next.dq_entry + 0x00004940 5f740066 735f696f 66756e63 0066696c _t.fs_iofunc.fil + 0x00004950 655f7374 72756374 00636f6f 6b69655f e_struct.cookie_ + 0x00004960 7365656b 5f66756e 6374696f 6e5f7400 seek_function_t. + 0x00004970 66735f62 75666665 72007374 64696f2f fs_buffer.stdio/ + 0x00004980 6c69625f 6c696266 6c757368 616c6c2e lib_libflushall. + 0x00004990 63006c69 625f666c 75736861 6c6c0070 c.lib_flushall.p + 0x000049a0 69645f74 006e786d 75746578 5f756e6c id_t.nxmutex_unl + 0x000049b0 6f636b00 66735f63 6f6f6b69 65006f66 ock.fs_cookie.of + 0x000049c0 665f7400 636f756e 74005f73 697a655f f_t.count._size_ + 0x000049d0 74007365 656b0066 735f6c6f 636b0064 t.seek.fs_lock.d + 0x000049e0 715f7175 6575655f 74006673 5f627566 q_queue_t.fs_buf + 0x000049f0 73746172 74005f75 696e7431 365f7400 start._uint16_t. + 0x00004a00 66735f6e 756e676f 7474656e 00756e73 fs_nungotten.uns + 0x00004a10 69676e65 6420696e 74006673 5f666c61 igned int.fs_fla + 0x00004a20 67730064 715f7175 6575655f 7300726d gs.dq_queue_s.rm + 0x00004a30 75746578 5f730072 6d757465 785f7400 utex_s.rmutex_t. + 0x00004a40 5f737369 7a655f74 006c6f6e 67206c6f _ssize_t.long lo + 0x00004a50 6e672069 6e740075 6e736967 6e656420 ng int.unsigned + 0x00004a60 696e7400 6c696e65 6e756d00 6c6f6e67 int.linenum.long + 0x00004a70 20756e73 69676e65 6420696e 74006c6f unsigned int.lo + 0x00004a80 6e67206c 6f6e6720 756e7369 676e6564 ng long unsigned + 0x00004a90 20696e74 00617373 6572742f 6c69625f int.assert/lib_ + 0x00004aa0 61737365 72742e63 005f6173 73657274 assert.c._assert + 0x00004ab0 00756e73 69676e65 64206368 61720063 .unsigned char.c + 0x00004ac0 68617200 6c6f6e67 20696e74 005f426f har.long int._Bo + 0x00004ad0 6f6c0073 686f7274 20756e73 69676e65 ol.short unsigne + 0x00004ae0 6420696e 74007369 676e6564 20636861 d int.signed cha + 0x00004af0 72005f5f 61737365 7274006c 6f6e6720 r.__assert.long + 0x00004b00 646f7562 6c650061 626f7274 0073686f double.abort.sho + 0x00004b10 72742069 6e740066 696c656e 616d6500 rt int.filename. + 0x00004b20 2f557365 72732f4c 75707079 2f6f7836 /Users/Luppy/ox6 + 0x00004b30 342f6e75 7474782f 6c696273 2f6c6962 4/nuttx/libs/lib + 0x00004b40 6300474e 55204331 37203130 2e322e30 c.GNU C17 10.2.0 + 0x00004b50 202d6d63 6d6f6465 6c3d6d65 64616e79 -mcmodel=medany + 0x00004b60 202d6d61 7263683d 72763634 696d6166 -march=rv64imaf + 0x00004b70 6463202d 6d616269 3d6c7036 3464202d dc -mabi=lp64d - + 0x00004b80 6d617263 683d7276 3634696d 61666463 march=rv64imafdc + 0x00004b90 202d6720 2d4f7320 2d666e6f 2d636f6d -g -Os -fno-com + 0x00004ba0 6d6f6e20 2d666e6f 2d737472 6963742d mon -fno-strict- + 0x00004bb0 616c6961 73696e67 202d666f 6d69742d aliasing -fomit- + 0x00004bc0 6672616d 652d706f 696e7465 72202d66 frame-pointer -f + 0x00004bd0 66756e63 74696f6e 2d736563 74696f6e function-section + 0x00004be0 73202d66 64617461 2d736563 74696f6e s -fdata-section + 0x00004bf0 73006578 69745f76 616c7565 00756e73 s.exit_value.uns + 0x00004c00 69676e65 6420696e 74006e78 5f707468 igned int.nx_pth + 0x00004c10 72656164 5f657869 74006c6f 6e672075 read_exit.long u + 0x00004c20 6e736967 6e656420 696e7400 7461736b nsigned int.task + 0x00004c30 5f736574 63616e63 656c7374 61746500 _setcancelstate. + 0x00004c40 6c6f6e67 206c6f6e 6720756e 7369676e long long unsign + 0x00004c50 65642069 6e740070 74687265 61645f65 ed int.pthread_e + 0x00004c60 78697400 756e7369 676e6564 20636861 xit.unsigned cha + 0x00004c70 72006368 6172006c 6f6e6720 696e7400 r.char.long int. + 0x00004c80 5f426f6f 6c006c6f 6e67206c 6f6e6720 _Bool.long long + 0x00004c90 696e7400 73686f72 7420756e 7369676e int.short unsign + 0x00004ca0 65642069 6e740073 69676e65 64206368 ed int.signed ch + 0x00004cb0 6172006c 6f6e6720 646f7562 6c650070 ar.long double.p + 0x00004cc0 74687265 61642f70 74687265 61645f65 thread/pthread_e + 0x00004cd0 7869742e 63007368 6f727420 696e7400 xit.c.short int. + 0x00004ce0 2f557365 72732f4c 75707079 2f6f7836 /Users/Luppy/ox6 + 0x00004cf0 342f6e75 7474782f 6c696273 2f6c6962 4/nuttx/libs/lib + 0x00004d00 6300474e 55204331 37203130 2e322e30 c.GNU C17 10.2.0 + 0x00004d10 202d6d63 6d6f6465 6c3d6d65 64616e79 -mcmodel=medany + 0x00004d20 202d6d61 7263683d 72763634 696d6166 -march=rv64imaf + 0x00004d30 6463202d 6d616269 3d6c7036 3464202d dc -mabi=lp64d - + 0x00004d40 6d617263 683d7276 3634696d 61666463 march=rv64imafdc + 0x00004d50 202d6720 2d4f7320 2d666e6f 2d636f6d -g -Os -fno-com + 0x00004d60 6d6f6e20 2d666e6f 2d737472 6963742d mon -fno-strict- + 0x00004d70 616c6961 73696e67 202d666f 6d69742d aliasing -fomit- + 0x00004d80 6672616d 652d706f 696e7465 72202d66 frame-pointer -f + 0x00004d90 66756e63 74696f6e 2d736563 74696f6e function-section + 0x00004da0 73202d66 64617461 2d736563 74696f6e s -fdata-section + 0x00004db0 7300756e 7369676e 65642069 6e74006c s.unsigned int.l + 0x00004dc0 6f6e6720 756e7369 676e6564 20696e74 ong unsigned int + 0x00004dd0 006c6f6e 67206c6f 6e672075 6e736967 .long long unsig + 0x00004de0 6e656420 696e7400 5f657869 7400756e ned int._exit.un + 0x00004df0 7369676e 65642063 68617200 63686172 signed char.char + 0x00004e00 00474e55 20433137 2031302e 322e3020 .GNU C17 10.2.0 + 0x00004e10 2d6d636d 6f64656c 3d6d6564 616e7920 -mcmodel=medany + 0x00004e20 2d6d6172 63683d72 76363469 6d616664 -march=rv64imafd + 0x00004e30 63202d6d 6162693d 6c703634 64202d6d c -mabi=lp64d -m + 0x00004e40 61726368 3d727636 34696d61 66646320 arch=rv64imafdc + 0x00004e50 2d67202d 4f73202d 666e6f2d 636f6d6d -g -Os -fno-comm + 0x00004e60 6f6e202d 666e6f2d 73747269 63742d61 on -fno-strict-a + 0x00004e70 6c696173 696e6720 2d666f6d 69742d66 liasing -fomit-f + 0x00004e80 72616d65 2d706f69 6e746572 202d6666 rame-pointer -ff + 0x00004e90 756e6374 696f6e2d 73656374 696f6e73 unction-sections + 0x00004ea0 202d6664 6174612d 73656374 696f6e73 -fdata-sections + 0x00004eb0 006c6f6e 6720696e 74005f42 6f6f6c00 .long int._Bool. + 0x00004ec0 7374646c 69622f6c 69625f61 626f7274 stdlib/lib_abort + 0x00004ed0 2e630073 686f7274 20756e73 69676e65 .c.short unsigne + 0x00004ee0 6420696e 74007369 676e6564 20636861 d int.signed cha + 0x00004ef0 72006162 6f727400 73686f72 7420696e r.abort.short in + 0x00004f00 74002f55 73657273 2f4c7570 70792f6f t./Users/Luppy/o + 0x00004f10 7836342f 6e757474 782f6c69 62732f6c x64/nuttx/libs/l + 0x00004f20 69626300 7061726d 33007061 726d3400 ibc.parm3.parm4. + 0x00004f30 5f617373 65727400 5359535f 706f6c6c _assert.SYS_poll + 0x00004f40 00535953 5f74676b 696c6c00 5359535f .SYS_tgkill.SYS_ + 0x00004f50 70746872 6561645f 6d757465 785f7472 pthread_mutex_tr + 0x00004f60 796c6f63 6b005359 535f7469 6d65725f ylock.SYS_timer_ + 0x00004f70 63726561 74650075 696e7470 74725f74 create.uintptr_t + 0x00004f80 00535953 5f667374 61740053 59535f73 .SYS_fstat.SYS_s + 0x00004f90 63686564 5f796965 6c640053 59535f70 ched_yield.SYS_p + 0x00004fa0 7574656e 76005359 535f6e78 73656d5f utenv.SYS_nxsem_ + 0x00004fb0 77616974 00535953 5f70706f 6c6c0053 wait.SYS_ppoll.S + 0x00004fc0 59535f6d 715f7469 6d656473 656e6400 YS_mq_timedsend. + 0x00004fd0 5359535f 70746872 6561645f 64657461 SYS_pthread_deta + 0x00004fe0 6368006c 6f6e6720 696e7400 5359535f ch.long int.SYS_ + 0x00004ff0 65706f6c 6c5f6374 6c005359 535f7365 epoll_ctl.SYS_se + 0x00005000 6c656374 006c6f6e 67206c6f 6e672075 lect.long long u + 0x00005010 6e736967 6e656420 696e7400 5359535f nsigned int.SYS_ + 0x00005020 70746872 6561645f 6d757465 785f6465 pthread_mutex_de + 0x00005030 7374726f 79005359 535f7072 65616400 stroy.SYS_pread. + 0x00005040 5359535f 73696777 61697469 6e666f00 SYS_sigwaitinfo. + 0x00005050 5359535f 706f7369 785f7370 61776e00 SYS_posix_spawn. + 0x00005060 5359535f 73636865 645f6765 74706172 SYS_sched_getpar + 0x00005070 616d0053 59535f70 74687265 61645f63 am.SYS_pthread_c + 0x00005080 6f6e645f 7369676e 616c0053 59535f6c ond_signal.SYS_l + 0x00005090 7365656b 00535953 5f726561 64007369 seek.SYS_read.si + 0x000050a0 676e6564 20636861 72005359 535f6e61 gned char.SYS_na + 0x000050b0 6e6f736c 65657000 5359535f 63686f77 nosleep.SYS_chow + 0x000050c0 6e005359 535f7369 6774696d 65647761 n.SYS_sigtimedwa + 0x000050d0 69740053 59535f63 6c6f7365 00535953 it.SYS_close.SYS + 0x000050e0 5f707468 72656164 5f736574 73636865 _pthread_setsche + 0x000050f0 64706172 616d0053 59535f6e 7873656d dparam.SYS_nxsem + 0x00005100 5f636c6f 636b7761 69740070 726f7869 _clockwait.proxi + 0x00005110 65732f50 524f5859 5f5f6173 73657274 es/PROXY__assert + 0x00005120 2e630053 59535f62 6f617264 63746c00 .c.SYS_boardctl. + 0x00005130 5359535f 636c6f63 6b005359 535f6d71 SYS_clock.SYS_mq + 0x00005140 5f676574 61747472 00535953 5f6e785f _getattr.SYS_nx_ + 0x00005150 70746872 6561645f 63726561 74650053 pthread_create.S + 0x00005160 59535f73 69676e61 6c005359 535f7369 YS_signal.SYS_si + 0x00005170 6770726f 636d6173 6b005359 535f7074 gprocmask.SYS_pt + 0x00005180 68726561 645f6361 6e63656c 00535953 hread_cancel.SYS + 0x00005190 5f736574 6974696d 65720053 59535f6d _setitimer.SYS_m + 0x000051a0 6b646972 00535953 5f6d6d61 70005359 kdir.SYS_mmap.SY + 0x000051b0 535f756e 73657465 6e760073 79735f63 S_unsetenv.sys_c + 0x000051c0 616c6c34 00535953 5f666368 6f776e00 all4.SYS_fchown. + 0x000051d0 5359535f 6d715f72 65636569 76650053 SYS_mq_receive.S + 0x000051e0 59535f63 6c6f636b 5f736574 74696d65 YS_clock_settime + 0x000051f0 00535953 5f777269 74650053 59535f67 .SYS_write.SYS_g + 0x00005200 65747069 64005359 535f6673 796e6300 etpid.SYS_fsync. + 0x00005210 5359535f 73657468 6f73746e 616d6500 SYS_sethostname. + 0x00005220 5359535f 7574696d 656e7300 756e7369 SYS_utimens.unsi + 0x00005230 676e6564 20696e74 00535953 5f736967 gned int.SYS_sig + 0x00005240 61637469 6f6e0053 59535f6d 715f636c action.SYS_mq_cl + 0x00005250 6f736500 6c6f6e67 20756e73 69676e65 ose.long unsigne + 0x00005260 6420696e 74005359 535f6663 6e746c00 d int.SYS_fcntl. + 0x00005270 5359535f 74696d65 725f7365 7474696d SYS_timer_settim + 0x00005280 65005359 535f6d71 5f756e6c 696e6b00 e.SYS_mq_unlink. + 0x00005290 73686f72 7420756e 7369676e 65642069 short unsigned i + 0x000052a0 6e740053 59535f72 6d646972 00535953 nt.SYS_rmdir.SYS + 0x000052b0 5f74696d 65725f67 65746f76 65727275 _timer_getoverru + 0x000052c0 6e005359 535f6d6f 756e7400 5359535f n.SYS_mount.SYS_ + 0x000052d0 6e787365 6d5f6465 7374726f 79005359 nxsem_destroy.SY + 0x000052e0 535f6d61 78737973 63616c6c 00535953 S_maxsyscall.SYS + 0x000052f0 5f63686d 6f640053 59535f6e 7873656d _chmod.SYS_nxsem + 0x00005300 5f74696d 65647761 69740053 59535f6e _timedwait.SYS_n + 0x00005310 785f7673 79736c6f 67005359 535f7073 x_vsyslog.SYS_ps + 0x00005320 656c6563 74005359 535f6d71 5f6e6f74 elect.SYS_mq_not + 0x00005330 69667900 5359535f 73746174 6673005f ify.SYS_statfs._ + 0x00005340 73697a65 5f740053 59535f67 65746974 size_t.SYS_getit + 0x00005350 696d6572 00535953 5f736368 65645f73 imer.SYS_sched_s + 0x00005360 65747363 68656475 6c657200 5359535f etscheduler.SYS_ + 0x00005370 70746872 6561645f 6d757465 785f756e pthread_mutex_un + 0x00005380 6c6f636b 00535953 5f6e7873 656d5f74 lock.SYS_nxsem_t + 0x00005390 72797761 69740053 59535f74 696d6572 rywait.SYS_timer + 0x000053a0 5f64656c 65746500 5359535f 73696773 _delete.SYS_sigs + 0x000053b0 75737065 6e640053 59535f5f 65786974 uspend.SYS__exit + 0x000053c0 00535953 5f65706f 6c6c5f77 61697400 .SYS_epoll_wait. + 0x000053d0 5359535f 70746872 6561645f 73657473 SYS_pthread_sets + 0x000053e0 63686564 7072696f 00535953 5f736368 chedprio.SYS_sch + 0x000053f0 65645f6c 6f636b00 5359535f 636c6f63 ed_lock.SYS_cloc + 0x00005400 6b5f6e61 6e6f736c 65657000 5359535f k_nanosleep.SYS_ + 0x00005410 73797369 6e666f00 5359535f 70746872 sysinfo.SYS_pthr + 0x00005420 6561645f 636f6e64 5f62726f 61646361 ead_cond_broadca + 0x00005430 73740053 59535f70 77726974 65005359 st.SYS_pwrite.SY + 0x00005440 535f6d71 5f73656e 64005359 535f7074 S_mq_send.SYS_pt + 0x00005450 68726561 645f6261 72726965 725f7761 hread_barrier_wa + 0x00005460 69740053 59535f66 63686d6f 64005359 it.SYS_fchmod.SY + 0x00005470 535f6765 74746964 00535953 5f72656e S_gettid.SYS_ren + 0x00005480 616d6500 5359535f 64757000 5359535f ame.SYS_dup.SYS_ + 0x00005490 6e787365 6d5f706f 73740053 59535f6d nxsem_post.SYS_m + 0x000054a0 715f7469 6d656472 65636569 76650053 q_timedreceive.S + 0x000054b0 59535f6c 63686f77 6e005359 535f6e78 YS_lchown.SYS_nx + 0x000054c0 5f707468 72656164 5f657869 7400756e _pthread_exit.un + 0x000054d0 7369676e 65642063 68617200 5359535f signed char.SYS_ + 0x000054e0 73696770 656e6469 6e670053 59535f66 sigpending.SYS_f + 0x000054f0 73746174 66730053 59535f6b 696c6c00 statfs.SYS_kill. + 0x00005500 5359535f 73657465 6e760073 686f7274 SYS_setenv.short + 0x00005510 20696e74 00535953 5f647570 32005359 int.SYS_dup2.SY + 0x00005520 535f7379 6e630053 59535f70 74687265 S_sync.SYS_pthre + 0x00005530 61645f67 65747363 68656470 6172616d ad_getschedparam + 0x00005540 00535953 5f736574 74696d65 6f666461 .SYS_settimeofda + 0x00005550 79005359 535f6d71 5f736574 61747472 y.SYS_mq_setattr + 0x00005560 00535953 5f657865 63766500 5359535f .SYS_execve.SYS_ + 0x00005570 75705f66 6f726b00 5359535f 5f617373 up_fork.SYS__ass + 0x00005580 65727400 5359535f 66757469 6d656e73 ert.SYS_futimens + 0x00005590 00535953 5f676574 686f7374 6e616d65 .SYS_gethostname + 0x000055a0 00535953 5f6e7873 63686564 5f676574 .SYS_nxsched_get + 0x000055b0 5f737461 636b696e 666f002f 55736572 _stackinfo./User + 0x000055c0 732f4c75 7070792f 6f783634 2f6e7574 s/Luppy/ox64/nut + 0x000055d0 74782f73 79736361 6c6c0070 61726d31 tx/syscall.parm1 + 0x000055e0 00706172 6d320063 68617200 5359535f .parm2.char.SYS_ + 0x000055f0 6765745f 656e7669 726f6e5f 70747200 get_environ_ptr. + 0x00005600 5359535f 70746872 6561645f 6d757465 SYS_pthread_mute + 0x00005610 785f7469 6d65646c 6f636b00 5359535f x_timedlock.SYS_ + 0x00005620 77616974 70696400 5359535f 74696d65 waitpid.SYS_time + 0x00005630 00535953 5f676574 74696d65 6f666461 .SYS_gettimeofda + 0x00005640 79005359 535f636c 65617265 6e760053 y.SYS_clearenv.S + 0x00005650 59535f70 74687265 61645f6d 75746578 YS_pthread_mutex + 0x00005660 5f696e69 74005359 535f756d 6f756e74 _init.SYS_umount + 0x00005670 32005359 535f7363 6865645f 73657470 2.SYS_sched_setp + 0x00005680 6172616d 00535953 5f736368 65645f72 aram.SYS_sched_r + 0x00005690 725f6765 745f696e 74657276 616c0053 r_get_interval.S + 0x000056a0 59535f6d 756e6d61 70005359 535f6c73 YS_munmap.SYS_ls + 0x000056b0 74617400 5359535f 636c6f63 6b5f6765 tat.SYS_clock_ge + 0x000056c0 7474696d 65005359 535f7365 6e646669 ttime.SYS_sendfi + 0x000056d0 6c650053 59535f70 74687265 61645f63 le.SYS_pthread_c + 0x000056e0 6f6e645f 636c6f63 6b776169 74005359 ond_clockwait.SY + 0x000056f0 535f6d71 5f6f7065 6e005359 535f7074 S_mq_open.SYS_pt + 0x00005700 68726561 645f636f 6e645f77 61697400 hread_cond_wait. + 0x00005710 5359535f 6f70656e 00535953 5f736967 SYS_open.SYS_sig + 0x00005720 71756575 65005359 535f7074 68726561 queue.SYS_pthrea + 0x00005730 645f6d75 7465785f 636f6e73 69737465 d_mutex_consiste + 0x00005740 6e740053 59535f73 63686564 5f6c6f63 nt.SYS_sched_loc + 0x00005750 6b636f75 6e740053 59535f70 67616c6c kcount.SYS_pgall + 0x00005760 6f630053 59535f70 74687265 61645f73 oc.SYS_pthread_s + 0x00005770 69676d61 736b0047 4e552043 31372031 igmask.GNU C17 1 + 0x00005780 302e322e 30202d6d 636d6f64 656c3d6d 0.2.0 -mcmodel=m + 0x00005790 6564616e 79202d6d 61726368 3d727636 edany -march=rv6 + 0x000057a0 34696d61 66646320 2d6d6162 693d6c70 4imafdc -mabi=lp + 0x000057b0 36346420 2d6d6172 63683d72 76363469 64d -march=rv64i + 0x000057c0 6d616664 63202d67 202d4f73 202d666e mafdc -g -Os -fn + 0x000057d0 6f2d636f 6d6d6f6e 202d666e 6f2d7374 o-common -fno-st + 0x000057e0 72696374 2d616c69 6173696e 67202d66 rict-aliasing -f + 0x000057f0 6f6d6974 2d667261 6d652d70 6f696e74 omit-frame-point + 0x00005800 6572202d 6666756e 6374696f 6e2d7365 er -ffunction-se + 0x00005810 6374696f 6e73202d 66646174 612d7365 ctions -fdata-se + 0x00005820 6374696f 6e730053 59535f74 696d6572 ctions.SYS_timer + 0x00005830 5f676574 74696d65 00535953 5f65706f _gettime.SYS_epo + 0x00005840 6c6c5f63 72656174 65310053 59535f6c ll_create1.SYS_l + 0x00005850 7574696d 656e7300 5359535f 6c63686d utimens.SYS_lchm + 0x00005860 6f640053 59535f66 7472756e 63617465 od.SYS_ftruncate + 0x00005870 00535953 5f696f63 746c0053 59535f73 .SYS_ioctl.SYS_s + 0x00005880 63686564 5f756e6c 6f636b00 5359535f ched_unlock.SYS_ + 0x00005890 70746872 6561645f 6a6f696e 00535953 pthread_join.SYS + 0x000058a0 5f737461 74005359 535f6765 74656e76 _stat.SYS_getenv + 0x000058b0 00535953 5f676574 72616e64 6f6d0053 .SYS_getrandom.S + 0x000058c0 59535f73 63686564 5f676574 73636865 YS_sched_getsche + 0x000058d0 64756c65 72005359 535f7072 63746c00 duler.SYS_prctl. + 0x000058e0 5359535f 756e6c69 6e6b0053 59535f70 SYS_unlink.SYS_p + 0x000058f0 6f6c6c00 5359535f 74676b69 6c6c0053 oll.SYS_tgkill.S + 0x00005900 59535f70 74687265 61645f6d 75746578 YS_pthread_mutex + 0x00005910 5f747279 6c6f636b 00535953 5f74696d _trylock.SYS_tim + 0x00005920 65725f63 72656174 65007569 6e747074 er_create.uintpt + 0x00005930 725f7400 5359535f 66737461 74005359 r_t.SYS_fstat.SY + 0x00005940 535f7363 6865645f 7969656c 64005359 S_sched_yield.SY + 0x00005950 535f7075 74656e76 00535953 5f6e7873 S_putenv.SYS_nxs + 0x00005960 656d5f77 61697400 5359535f 70706f6c em_wait.SYS_ppol + 0x00005970 6c005359 535f6d71 5f74696d 65647365 l.SYS_mq_timedse + 0x00005980 6e640053 59535f70 74687265 61645f64 nd.SYS_pthread_d + 0x00005990 65746163 68005359 535f636c 6f636b00 etach.SYS_clock. + 0x000059a0 5359535f 65706f6c 6c5f6374 6c005359 SYS_epoll_ctl.SY + 0x000059b0 535f7365 6c656374 006c6f6e 67206c6f S_select.long lo + 0x000059c0 6e672075 6e736967 6e656420 696e7400 ng unsigned int. + 0x000059d0 5359535f 70746872 6561645f 6d757465 SYS_pthread_mute + 0x000059e0 785f6465 7374726f 79005359 535f7072 x_destroy.SYS_pr + 0x000059f0 65616400 5359535f 73696777 61697469 ead.SYS_sigwaiti + 0x00005a00 6e666f00 5359535f 706f7369 785f7370 nfo.SYS_posix_sp + 0x00005a10 61776e00 5359535f 73636865 645f6765 awn.SYS_sched_ge + 0x00005a20 74706172 616d0053 59535f70 74687265 tparam.SYS_pthre + 0x00005a30 61645f63 6f6e645f 7369676e 616c0053 ad_cond_signal.S + 0x00005a40 59535f6c 7365656b 00535953 5f726561 YS_lseek.SYS_rea + 0x00005a50 64007369 676e6564 20636861 72005359 d.signed char.SY + 0x00005a60 535f6e61 6e6f736c 65657000 5359535f S_nanosleep.SYS_ + 0x00005a70 63686f77 6e005359 535f7369 6774696d chown.SYS_sigtim + 0x00005a80 65647761 69740053 59535f63 6c6f7365 edwait.SYS_close + 0x00005a90 00535953 5f707468 72656164 5f736574 .SYS_pthread_set + 0x00005aa0 73636865 64706172 616d0053 59535f6e schedparam.SYS_n + 0x00005ab0 7873656d 5f636c6f 636b7761 6974006c xsem_clockwait.l + 0x00005ac0 6f6e6720 696e7400 5359535f 626f6172 ong int.SYS_boar + 0x00005ad0 6463746c 00535953 5f707468 72656164 dctl.SYS_pthread + 0x00005ae0 5f736574 73636865 64707269 6f005359 _setschedprio.SY + 0x00005af0 535f6d71 5f676574 61747472 00535953 S_mq_getattr.SYS + 0x00005b00 5f6e785f 70746872 6561645f 63726561 _nx_pthread_crea + 0x00005b10 74650053 59535f73 69676e61 6c005359 te.SYS_signal.SY + 0x00005b20 535f7369 6770726f 636d6173 6b005359 S_sigprocmask.SY + 0x00005b30 535f7074 68726561 645f6361 6e63656c S_pthread_cancel + 0x00005b40 00535953 5f736574 6974696d 65720053 .SYS_setitimer.S + 0x00005b50 59535f6d 6b646972 00535953 5f6d6d61 YS_mkdir.SYS_mma + 0x00005b60 70005359 535f756e 73657465 6e760073 p.SYS_unsetenv.s + 0x00005b70 79735f63 616c6c31 00535953 5f666368 ys_call1.SYS_fch + 0x00005b80 6f776e00 5359535f 6d715f72 65636569 own.SYS_mq_recei + 0x00005b90 76650053 59535f63 6c6f636b 5f736574 ve.SYS_clock_set + 0x00005ba0 74696d65 00535953 5f777269 74650053 time.SYS_write.S + 0x00005bb0 59535f67 65747069 64005359 535f6673 YS_getpid.SYS_fs + 0x00005bc0 796e6300 5359535f 73657468 6f73746e ync.SYS_sethostn + 0x00005bd0 616d6500 5359535f 7574696d 656e7300 ame.SYS_utimens. + 0x00005be0 756e7369 676e6564 20696e74 00535953 unsigned int.SYS + 0x00005bf0 5f736967 61637469 6f6e0053 59535f6d _sigaction.SYS_m + 0x00005c00 715f636c 6f736500 6c6f6e67 20756e73 q_close.long uns + 0x00005c10 69676e65 6420696e 74005359 535f6663 igned int.SYS_fc + 0x00005c20 6e746c00 5359535f 74696d65 725f7365 ntl.SYS_timer_se + 0x00005c30 7474696d 65005359 535f6d71 5f756e6c ttime.SYS_mq_unl + 0x00005c40 696e6b00 73686f72 7420756e 7369676e ink.short unsign + 0x00005c50 65642069 6e740053 59535f72 6d646972 ed int.SYS_rmdir + 0x00005c60 00535953 5f74696d 65725f67 65746f76 .SYS_timer_getov + 0x00005c70 65727275 6e005359 535f6d6f 756e7400 errun.SYS_mount. + 0x00005c80 5359535f 64757000 5359535f 6e787365 SYS_dup.SYS_nxse + 0x00005c90 6d5f6465 7374726f 79005359 535f6d61 m_destroy.SYS_ma + 0x00005ca0 78737973 63616c6c 00535953 5f63686d xsyscall.SYS_chm + 0x00005cb0 6f640053 59535f6e 7873656d 5f74696d od.SYS_nxsem_tim + 0x00005cc0 65647761 69740053 59535f6e 785f7673 edwait.SYS_nx_vs + 0x00005cd0 79736c6f 67005359 535f7073 656c6563 yslog.SYS_pselec + 0x00005ce0 74005359 535f6d71 5f6e6f74 69667900 t.SYS_mq_notify. + 0x00005cf0 5359535f 73746174 6673005f 73697a65 SYS_statfs._size + 0x00005d00 5f740053 59535f67 65746974 696d6572 _t.SYS_getitimer + 0x00005d10 00535953 5f736368 65645f73 65747363 .SYS_sched_setsc + 0x00005d20 68656475 6c657200 5359535f 70746872 heduler.SYS_pthr + 0x00005d30 6561645f 6d757465 785f756e 6c6f636b ead_mutex_unlock + 0x00005d40 00535953 5f6e7873 656d5f74 72797761 .SYS_nxsem_trywa + 0x00005d50 69740053 59535f74 696d6572 5f64656c it.SYS_timer_del + 0x00005d60 65746500 5359535f 73696773 75737065 ete.SYS_sigsuspe + 0x00005d70 6e640053 59535f5f 65786974 00535953 nd.SYS__exit.SYS + 0x00005d80 5f65706f 6c6c5f77 61697400 5359535f _epoll_wait.SYS_ + 0x00005d90 73636865 645f6c6f 636b0053 59535f63 sched_lock.SYS_c + 0x00005da0 6c6f636b 5f6e616e 6f736c65 65700053 lock_nanosleep.S + 0x00005db0 59535f73 7973696e 666f0053 59535f70 YS_sysinfo.SYS_p + 0x00005dc0 74687265 61645f63 6f6e645f 62726f61 thread_cond_broa + 0x00005dd0 64636173 74005359 535f7077 72697465 dcast.SYS_pwrite + 0x00005de0 00535953 5f6d715f 73656e64 00535953 .SYS_mq_send.SYS + 0x00005df0 5f707468 72656164 5f626172 72696572 _pthread_barrier + 0x00005e00 5f776169 74005359 535f6663 686d6f64 _wait.SYS_fchmod + 0x00005e10 00535953 5f676574 74696400 5359535f .SYS_gettid.SYS_ + 0x00005e20 72656e61 6d650070 726f7869 65732f50 rename.proxies/P + 0x00005e30 524f5859 5f5f6578 69742e63 00535953 ROXY__exit.c.SYS + 0x00005e40 5f6e7873 656d5f70 6f737400 5359535f _nxsem_post.SYS_ + 0x00005e50 6d715f74 696d6564 72656365 69766500 mq_timedreceive. + 0x00005e60 5359535f 6c63686f 776e0053 59535f6e SYS_lchown.SYS_n + 0x00005e70 785f7074 68726561 645f6578 69740075 x_pthread_exit.u + 0x00005e80 6e736967 6e656420 63686172 00535953 nsigned char.SYS + 0x00005e90 5f736967 70656e64 696e6700 5359535f _sigpending.SYS_ + 0x00005ea0 66737461 74667300 5359535f 6b696c6c fstatfs.SYS_kill + 0x00005eb0 00535953 5f736574 656e7600 73686f72 .SYS_setenv.shor + 0x00005ec0 7420696e 74005359 535f6475 70320053 t int.SYS_dup2.S + 0x00005ed0 59535f73 796e6300 5359535f 70746872 YS_sync.SYS_pthr + 0x00005ee0 6561645f 67657473 63686564 70617261 ead_getschedpara + 0x00005ef0 6d005359 535f7365 7474696d 656f6664 m.SYS_settimeofd + 0x00005f00 61790053 59535f6d 715f7365 74617474 ay.SYS_mq_setatt + 0x00005f10 72005359 535f6578 65637665 00535953 r.SYS_execve.SYS + 0x00005f20 5f75705f 666f726b 00535953 5f5f6173 _up_fork.SYS__as + 0x00005f30 73657274 00535953 5f667574 696d656e sert.SYS_futimen + 0x00005f40 73005359 535f6765 74686f73 746e616d s.SYS_gethostnam + 0x00005f50 65005359 535f6e78 73636865 645f6765 e.SYS_nxsched_ge + 0x00005f60 745f7374 61636b69 6e666f00 2f557365 t_stackinfo./Use + 0x00005f70 72732f4c 75707079 2f6f7836 342f6e75 rs/Luppy/ox64/nu + 0x00005f80 7474782f 73797363 616c6c00 7061726d ttx/syscall.parm + 0x00005f90 31006368 61720053 59535f67 65745f65 1.char.SYS_get_e + 0x00005fa0 6e766972 6f6e5f70 74720053 59535f70 nviron_ptr.SYS_p + 0x00005fb0 74687265 61645f6d 75746578 5f74696d thread_mutex_tim + 0x00005fc0 65646c6f 636b0053 59535f77 61697470 edlock.SYS_waitp + 0x00005fd0 69640053 59535f74 696d6500 5359535f id.SYS_time.SYS_ + 0x00005fe0 67657474 696d656f 66646179 00535953 gettimeofday.SYS + 0x00005ff0 5f636c65 6172656e 76005359 535f7074 _clearenv.SYS_pt + 0x00006000 68726561 645f6d75 7465785f 696e6974 hread_mutex_init + 0x00006010 00535953 5f756d6f 756e7432 00535953 .SYS_umount2.SYS + 0x00006020 5f736368 65645f73 65747061 72616d00 _sched_setparam. + 0x00006030 5359535f 73636865 645f7272 5f676574 SYS_sched_rr_get + 0x00006040 5f696e74 65727661 6c005359 535f6d75 _interval.SYS_mu + 0x00006050 6e6d6170 00535953 5f6c7374 61740053 nmap.SYS_lstat.S + 0x00006060 59535f63 6c6f636b 5f676574 74696d65 YS_clock_gettime + 0x00006070 00535953 5f73656e 6466696c 65005359 .SYS_sendfile.SY + 0x00006080 535f7074 68726561 645f636f 6e645f63 S_pthread_cond_c + 0x00006090 6c6f636b 77616974 00535953 5f6d715f lockwait.SYS_mq_ + 0x000060a0 6f70656e 00535953 5f707468 72656164 open.SYS_pthread + 0x000060b0 5f636f6e 645f7761 69740053 59535f6f _cond_wait.SYS_o + 0x000060c0 70656e00 5359535f 73696771 75657565 pen.SYS_sigqueue + 0x000060d0 00535953 5f707468 72656164 5f6d7574 .SYS_pthread_mut + 0x000060e0 65785f63 6f6e7369 7374656e 74005359 ex_consistent.SY + 0x000060f0 535f7363 6865645f 6c6f636b 636f756e S_sched_lockcoun + 0x00006100 74005359 535f7067 616c6c6f 63005359 t.SYS_pgalloc.SY + 0x00006110 535f7074 68726561 645f7369 676d6173 S_pthread_sigmas + 0x00006120 6b005f65 78697400 474e5520 43313720 k._exit.GNU C17 + 0x00006130 31302e32 2e30202d 6d636d6f 64656c3d 10.2.0 -mcmodel= + 0x00006140 6d656461 6e79202d 6d617263 683d7276 medany -march=rv + 0x00006150 3634696d 61666463 202d6d61 62693d6c 64imafdc -mabi=l + 0x00006160 70363464 202d6d61 7263683d 72763634 p64d -march=rv64 + 0x00006170 696d6166 6463202d 67202d4f 73202d66 imafdc -g -Os -f + 0x00006180 6e6f2d63 6f6d6d6f 6e202d66 6e6f2d73 no-common -fno-s + 0x00006190 74726963 742d616c 69617369 6e67202d trict-aliasing - + 0x000061a0 666f6d69 742d6672 616d652d 706f696e fomit-frame-poin + 0x000061b0 74657220 2d666675 6e637469 6f6e2d73 ter -ffunction-s + 0x000061c0 65637469 6f6e7320 2d666461 74612d73 ections -fdata-s + 0x000061d0 65637469 6f6e7300 5359535f 74696d65 ections.SYS_time + 0x000061e0 725f6765 7474696d 65005359 535f6570 r_gettime.SYS_ep + 0x000061f0 6f6c6c5f 63726561 74653100 5359535f oll_create1.SYS_ + 0x00006200 6c757469 6d656e73 00535953 5f6c6368 lutimens.SYS_lch + 0x00006210 6d6f6400 5359535f 66747275 6e636174 mod.SYS_ftruncat + 0x00006220 65005359 535f696f 63746c00 5359535f e.SYS_ioctl.SYS_ + 0x00006230 73636865 645f756e 6c6f636b 00535953 sched_unlock.SYS + 0x00006240 5f707468 72656164 5f6a6f69 6e005359 _pthread_join.SY + 0x00006250 535f7374 61740053 59535f67 6574656e S_stat.SYS_geten + 0x00006260 76005359 535f6765 7472616e 646f6d00 v.SYS_getrandom. + 0x00006270 5359535f 73636865 645f6765 74736368 SYS_sched_getsch + 0x00006280 6564756c 65720053 59535f70 7263746c eduler.SYS_prctl + 0x00006290 00535953 5f756e6c 696e6b00 5359535f .SYS_unlink.SYS_ + 0x000062a0 706f6c6c 00535953 5f74676b 696c6c00 poll.SYS_tgkill. + 0x000062b0 5359535f 70746872 6561645f 6d757465 SYS_pthread_mute + 0x000062c0 785f7472 796c6f63 6b005359 535f7469 x_trylock.SYS_ti + 0x000062d0 6d65725f 63726561 74650075 696e7470 mer_create.uintp + 0x000062e0 74725f74 00535953 5f667374 6174005f tr_t.SYS_fstat._ + 0x000062f0 75696e74 33325f74 00535953 5f707574 uint32_t.SYS_put + 0x00006300 656e7600 5359535f 6e787365 6d5f7761 env.SYS_nxsem_wa + 0x00006310 69740053 59535f70 706f6c6c 00535953 it.SYS_ppoll.SYS + 0x00006320 5f6d715f 74696d65 6473656e 64005359 _mq_timedsend.SY + 0x00006330 535f7074 68726561 645f6465 74616368 S_pthread_detach + 0x00006340 00535953 5f636c6f 636b0053 59535f65 .SYS_clock.SYS_e + 0x00006350 706f6c6c 5f63746c 00535953 5f73656c poll_ctl.SYS_sel + 0x00006360 65637400 6c6f6e67 206c6f6e 6720756e ect.long long un + 0x00006370 7369676e 65642069 6e740053 59535f70 signed int.SYS_p + 0x00006380 74687265 61645f6d 75746578 5f646573 thread_mutex_des + 0x00006390 74726f79 00535953 5f707265 61640070 troy.SYS_pread.p + 0x000063a0 726f7869 65732f50 524f5859 5f636c6f roxies/PROXY_clo + 0x000063b0 636b5f67 65747469 6d652e63 00535953 ck_gettime.c.SYS + 0x000063c0 5f736967 77616974 696e666f 00535953 _sigwaitinfo.SYS + 0x000063d0 5f706f73 69785f73 7061776e 00535953 _posix_spawn.SYS + 0x000063e0 5f736368 65645f67 65747061 72616d00 _sched_getparam. + 0x000063f0 5359535f 70746872 6561645f 636f6e64 SYS_pthread_cond + 0x00006400 5f736967 6e616c00 5359535f 6c736565 _signal.SYS_lsee + 0x00006410 6b005359 535f7265 61640073 69676e65 k.SYS_read.signe + 0x00006420 64206368 61720053 59535f6e 616e6f73 d char.SYS_nanos + 0x00006430 6c656570 00535953 5f63686f 776e0053 leep.SYS_chown.S + 0x00006440 59535f73 69677469 6d656477 61697400 YS_sigtimedwait. + 0x00006450 5359535f 636c6f73 65005359 535f7074 SYS_close.SYS_pt + 0x00006460 68726561 645f7365 74736368 65647061 hread_setschedpa + 0x00006470 72616d00 5359535f 6e787365 6d5f636c ram.SYS_nxsem_cl + 0x00006480 6f636b77 61697400 6c6f6e67 20696e74 ockwait.long int + 0x00006490 00535953 5f626f61 72646374 6c005359 .SYS_boardctl.SY + 0x000064a0 535f7074 68726561 645f7365 74736368 S_pthread_setsch + 0x000064b0 65647072 696f0053 59535f6d 715f6765 edprio.SYS_mq_ge + 0x000064c0 74617474 72005359 535f6e78 5f707468 tattr.SYS_nx_pth + 0x000064d0 72656164 5f637265 61746500 5359535f read_create.SYS_ + 0x000064e0 7369676e 616c0053 59535f73 69677072 signal.SYS_sigpr + 0x000064f0 6f636d61 736b0053 59535f70 74687265 ocmask.SYS_pthre + 0x00006500 61645f63 616e6365 6c005359 535f7365 ad_cancel.SYS_se + 0x00006510 74697469 6d657200 5359535f 6d6b6469 titimer.SYS_mkdi + 0x00006520 72005359 535f6d6d 61700053 59535f75 r.SYS_mmap.SYS_u + 0x00006530 6e736574 656e7600 7379735f 63616c6c nsetenv.sys_call + 0x00006540 32005359 535f6663 686f776e 00535953 2.SYS_fchown.SYS + 0x00006550 5f6d715f 72656365 69766500 5359535f _mq_receive.SYS_ + 0x00006560 636c6f63 6b5f7365 7474696d 65005359 clock_settime.SY + 0x00006570 535f7772 69746500 5359535f 67657470 S_write.SYS_getp + 0x00006580 69640053 59535f66 73796e63 00535953 id.SYS_fsync.SYS + 0x00006590 5f736574 686f7374 6e616d65 00535953 _sethostname.SYS + 0x000065a0 5f757469 6d656e73 00756e73 69676e65 _utimens.unsigne + 0x000065b0 6420696e 74005359 535f7369 67616374 d int.SYS_sigact + 0x000065c0 696f6e00 5359535f 6d715f63 6c6f7365 ion.SYS_mq_close + 0x000065d0 006c6f6e 6720756e 7369676e 65642069 .long unsigned i + 0x000065e0 6e740053 59535f73 63686564 5f796965 nt.SYS_sched_yie + 0x000065f0 6c640063 6c6f636b 5f676574 74696d65 ld.clock_gettime + 0x00006600 00535953 5f66636e 746c0053 59535f74 .SYS_fcntl.SYS_t + 0x00006610 696d6572 5f736574 74696d65 00535953 imer_settime.SYS + 0x00006620 5f6d715f 756e6c69 6e6b0073 686f7274 _mq_unlink.short + 0x00006630 20756e73 69676e65 6420696e 74005359 unsigned int.SY + 0x00006640 535f6570 6f6c6c5f 63726561 74653100 S_epoll_create1. + 0x00006650 5359535f 726d6469 72005359 535f7469 SYS_rmdir.SYS_ti + 0x00006660 6d65725f 6765746f 76657272 756e0053 mer_getoverrun.S + 0x00006670 59535f6d 6f756e74 00535953 5f6e7873 YS_mount.SYS_nxs + 0x00006680 656d5f64 65737472 6f790053 59535f6d em_destroy.SYS_m + 0x00006690 61787379 7363616c 6c005359 535f6368 axsyscall.SYS_ch + 0x000066a0 6d6f6400 5359535f 6e787365 6d5f7469 mod.SYS_nxsem_ti + 0x000066b0 6d656477 61697400 5359535f 6e785f76 medwait.SYS_nx_v + 0x000066c0 7379736c 6f670053 59535f70 73656c65 syslog.SYS_psele + 0x000066d0 63740053 59535f6d 715f6e6f 74696679 ct.SYS_mq_notify + 0x000066e0 00535953 5f737461 74667300 5f73697a .SYS_statfs._siz + 0x000066f0 655f7400 5359535f 67657469 74696d65 e_t.SYS_getitime + 0x00006700 72005359 535f7363 6865645f 73657473 r.SYS_sched_sets + 0x00006710 63686564 756c6572 00535953 5f707468 cheduler.SYS_pth + 0x00006720 72656164 5f6d7574 65785f75 6e6c6f63 read_mutex_unloc + 0x00006730 6b005359 535f6e78 73656d5f 74727977 k.SYS_nxsem_tryw + 0x00006740 61697400 5359535f 74696d65 725f6465 ait.SYS_timer_de + 0x00006750 6c657465 00535953 5f736967 73757370 lete.SYS_sigsusp + 0x00006760 656e6400 74765f6e 73656300 5359535f end.tv_nsec.SYS_ + 0x00006770 5f657869 74005359 535f6570 6f6c6c5f _exit.SYS_epoll_ + 0x00006780 77616974 0074765f 73656300 5359535f wait.tv_sec.SYS_ + 0x00006790 73636865 645f6c6f 636b0053 59535f63 sched_lock.SYS_c + 0x000067a0 6c6f636b 5f6e616e 6f736c65 65700053 lock_nanosleep.S + 0x000067b0 59535f73 7973696e 666f0053 59535f70 YS_sysinfo.SYS_p + 0x000067c0 74687265 61645f63 6f6e645f 62726f61 thread_cond_broa + 0x000067d0 64636173 74005359 535f7077 72697465 dcast.SYS_pwrite + 0x000067e0 00535953 5f6d715f 73656e64 00535953 .SYS_mq_send.SYS + 0x000067f0 5f707468 72656164 5f626172 72696572 _pthread_barrier + 0x00006800 5f776169 74005359 535f6663 686d6f64 _wait.SYS_fchmod + 0x00006810 0074696d 655f7400 5359535f 72656e61 .time_t.SYS_rena + 0x00006820 6d650053 59535f64 75700053 59535f6e me.SYS_dup.SYS_n + 0x00006830 7873656d 5f706f73 74005359 535f6d71 xsem_post.SYS_mq + 0x00006840 5f74696d 65647265 63656976 65005359 _timedreceive.SY + 0x00006850 535f6c63 686f776e 00535953 5f6e785f S_lchown.SYS_nx_ + 0x00006860 70746872 6561645f 65786974 00756e73 pthread_exit.uns + 0x00006870 69676e65 64206368 61720053 59535f73 igned char.SYS_s + 0x00006880 69677065 6e64696e 67005359 535f6673 igpending.SYS_fs + 0x00006890 74617466 73005359 535f6b69 6c6c0053 tatfs.SYS_kill.S + 0x000068a0 59535f73 6574656e 76007368 6f727420 YS_setenv.short + 0x000068b0 696e7400 5359535f 64757032 0074696d int.SYS_dup2.tim + 0x000068c0 65737065 63005359 535f7379 6e630053 espec.SYS_sync.S + 0x000068d0 59535f70 74687265 61645f67 65747363 YS_pthread_getsc + 0x000068e0 68656470 6172616d 00535953 5f736574 hedparam.SYS_set + 0x000068f0 74696d65 6f666461 79005359 535f6d71 timeofday.SYS_mq + 0x00006900 5f736574 61747472 00535953 5f657865 _setattr.SYS_exe + 0x00006910 63766500 5359535f 75705f66 6f726b00 cve.SYS_up_fork. + 0x00006920 5359535f 5f617373 65727400 5359535f SYS__assert.SYS_ + 0x00006930 66757469 6d656e73 00535953 5f676574 futimens.SYS_get + 0x00006940 686f7374 6e616d65 0075696e 7433325f hostname.uint32_ + 0x00006950 74005359 535f6e78 73636865 645f6765 t.SYS_nxsched_ge + 0x00006960 745f7374 61636b69 6e666f00 2f557365 t_stackinfo./Use + 0x00006970 72732f4c 75707079 2f6f7836 342f6e75 rs/Luppy/ox64/nu + 0x00006980 7474782f 73797363 616c6c00 7061726d ttx/syscall.parm + 0x00006990 31007061 726d3200 63686172 00535953 1.parm2.char.SYS + 0x000069a0 5f676574 5f656e76 69726f6e 5f707472 _get_environ_ptr + 0x000069b0 00535953 5f707468 72656164 5f6d7574 .SYS_pthread_mut + 0x000069c0 65785f74 696d6564 6c6f636b 00535953 ex_timedlock.SYS + 0x000069d0 5f776169 74706964 00535953 5f74696d _waitpid.SYS_tim + 0x000069e0 65005359 535f6765 7474696d 656f6664 e.SYS_gettimeofd + 0x000069f0 61790053 59535f63 6c656172 656e7600 ay.SYS_clearenv. + 0x00006a00 5359535f 70746872 6561645f 6d757465 SYS_pthread_mute + 0x00006a10 785f696e 69740053 59535f75 6d6f756e x_init.SYS_umoun + 0x00006a20 74320053 59535f73 63686564 5f736574 t2.SYS_sched_set + 0x00006a30 70617261 6d005359 535f7363 6865645f param.SYS_sched_ + 0x00006a40 72725f67 65745f69 6e746572 76616c00 rr_get_interval. + 0x00006a50 5359535f 6d756e6d 61700053 59535f6c SYS_munmap.SYS_l + 0x00006a60 73746174 00535953 5f636c6f 636b5f67 stat.SYS_clock_g + 0x00006a70 65747469 6d650053 59535f73 656e6466 ettime.SYS_sendf + 0x00006a80 696c6500 5359535f 70746872 6561645f ile.SYS_pthread_ + 0x00006a90 636f6e64 5f636c6f 636b7761 69740053 cond_clockwait.S + 0x00006aa0 59535f6d 715f6f70 656e0053 59535f70 YS_mq_open.SYS_p + 0x00006ab0 74687265 61645f63 6f6e645f 77616974 thread_cond_wait + 0x00006ac0 00535953 5f6f7065 6e005359 535f7369 .SYS_open.SYS_si + 0x00006ad0 67717565 75650053 59535f70 74687265 gqueue.SYS_pthre + 0x00006ae0 61645f6d 75746578 5f636f6e 73697374 ad_mutex_consist + 0x00006af0 656e7400 5359535f 73636865 645f6c6f ent.SYS_sched_lo + 0x00006b00 636b636f 756e7400 5359535f 7067616c ckcount.SYS_pgal + 0x00006b10 6c6f6300 5359535f 70746872 6561645f loc.SYS_pthread_ + 0x00006b20 7369676d 61736b00 474e5520 43313720 sigmask.GNU C17 + 0x00006b30 31302e32 2e30202d 6d636d6f 64656c3d 10.2.0 -mcmodel= + 0x00006b40 6d656461 6e79202d 6d617263 683d7276 medany -march=rv + 0x00006b50 3634696d 61666463 202d6d61 62693d6c 64imafdc -mabi=l + 0x00006b60 70363464 202d6d61 7263683d 72763634 p64d -march=rv64 + 0x00006b70 696d6166 6463202d 67202d4f 73202d66 imafdc -g -Os -f + 0x00006b80 6e6f2d63 6f6d6d6f 6e202d66 6e6f2d73 no-common -fno-s + 0x00006b90 74726963 742d616c 69617369 6e67202d trict-aliasing - + 0x00006ba0 666f6d69 742d6672 616d652d 706f696e fomit-frame-poin + 0x00006bb0 74657220 2d666675 6e637469 6f6e2d73 ter -ffunction-s + 0x00006bc0 65637469 6f6e7320 2d666461 74612d73 ections -fdata-s + 0x00006bd0 65637469 6f6e7300 5359535f 74696d65 ections.SYS_time + 0x00006be0 725f6765 7474696d 65005359 535f6765 r_gettime.SYS_ge + 0x00006bf0 74746964 00535953 5f6c7574 696d656e ttid.SYS_lutimen + 0x00006c00 73005359 535f6c63 686d6f64 00535953 s.SYS_lchmod.SYS + 0x00006c10 5f667472 756e6361 74650053 59535f69 _ftruncate.SYS_i + 0x00006c20 6f63746c 00535953 5f736368 65645f75 octl.SYS_sched_u + 0x00006c30 6e6c6f63 6b005359 535f7074 68726561 nlock.SYS_pthrea + 0x00006c40 645f6a6f 696e0063 6c6f636b 69645f74 d_join.clockid_t + 0x00006c50 00535953 5f737461 74005359 535f6765 .SYS_stat.SYS_ge + 0x00006c60 74656e76 00535953 5f676574 72616e64 tenv.SYS_getrand + 0x00006c70 6f6d0053 59535f73 63686564 5f676574 om.SYS_sched_get + 0x00006c80 73636865 64756c65 72005359 535f7072 scheduler.SYS_pr + 0x00006c90 63746c00 5359535f 756e6c69 6e6b0053 ctl.SYS_unlink.S + 0x00006ca0 59535f70 6f6c6c00 5359535f 74676b69 YS_poll.SYS_tgki + 0x00006cb0 6c6c0053 59535f70 74687265 61645f6d ll.SYS_pthread_m + 0x00006cc0 75746578 5f747279 6c6f636b 00535953 utex_trylock.SYS + 0x00006cd0 5f74696d 65725f63 72656174 65007569 _timer_create.ui + 0x00006ce0 6e747074 725f7400 5359535f 66737461 ntptr_t.SYS_fsta + 0x00006cf0 74005359 535f7363 6865645f 7969656c t.SYS_sched_yiel + 0x00006d00 64005359 535f7075 74656e76 00535953 d.SYS_putenv.SYS + 0x00006d10 5f6e7873 656d5f77 61697400 5359535f _nxsem_wait.SYS_ + 0x00006d20 70706f6c 6c005359 535f6d71 5f74696d ppoll.SYS_mq_tim + 0x00006d30 65647365 6e640053 59535f70 74687265 edsend.SYS_pthre + 0x00006d40 61645f64 65746163 68005359 535f636c ad_detach.SYS_cl + 0x00006d50 6f636b00 67657474 69640053 59535f65 ock.gettid.SYS_e + 0x00006d60 706f6c6c 5f63746c 00535953 5f73656c poll_ctl.SYS_sel + 0x00006d70 65637400 6c6f6e67 206c6f6e 6720756e ect.long long un + 0x00006d80 7369676e 65642069 6e740053 59535f70 signed int.SYS_p + 0x00006d90 74687265 61645f6d 75746578 5f646573 thread_mutex_des + 0x00006da0 74726f79 00535953 5f707265 61640053 troy.SYS_pread.S + 0x00006db0 59535f73 69677761 6974696e 666f0053 YS_sigwaitinfo.S + 0x00006dc0 59535f70 6f736978 5f737061 776e0053 YS_posix_spawn.S + 0x00006dd0 59535f73 63686564 5f676574 70617261 YS_sched_getpara + 0x00006de0 6d005359 535f7074 68726561 645f636f m.SYS_pthread_co + 0x00006df0 6e645f73 69676e61 6c005359 535f6c73 nd_signal.SYS_ls + 0x00006e00 65656b00 5359535f 72656164 00736967 eek.SYS_read.sig + 0x00006e10 6e656420 63686172 00535953 5f6e616e ned char.SYS_nan + 0x00006e20 6f736c65 65700053 59535f63 686f776e osleep.SYS_chown + 0x00006e30 00535953 5f736967 74696d65 64776169 .SYS_sigtimedwai + 0x00006e40 74005359 535f636c 6f736500 5359535f t.SYS_close.SYS_ + 0x00006e50 70746872 6561645f 73657473 63686564 pthread_setsched + 0x00006e60 70617261 6d005359 535f6e78 73656d5f param.SYS_nxsem_ + 0x00006e70 636c6f63 6b776169 74006c6f 6e672069 clockwait.long i + 0x00006e80 6e740053 59535f62 6f617264 63746c00 nt.SYS_boardctl. + 0x00006e90 5359535f 70746872 6561645f 73657473 SYS_pthread_sets + 0x00006ea0 63686564 7072696f 00535953 5f6d715f chedprio.SYS_mq_ + 0x00006eb0 67657461 74747200 5359535f 6e785f70 getattr.SYS_nx_p + 0x00006ec0 74687265 61645f63 72656174 65005359 thread_create.SY + 0x00006ed0 535f7369 676e616c 00535953 5f736967 S_signal.SYS_sig + 0x00006ee0 70726f63 6d61736b 00535953 5f707468 procmask.SYS_pth + 0x00006ef0 72656164 5f63616e 63656c00 5359535f read_cancel.SYS_ + 0x00006f00 73657469 74696d65 72005359 535f6d6b setitimer.SYS_mk + 0x00006f10 64697200 5359535f 6d6d6170 00535953 dir.SYS_mmap.SYS + 0x00006f20 5f756e73 6574656e 76007379 735f6361 _unsetenv.sys_ca + 0x00006f30 6c6c3000 5359535f 6663686f 776e0053 ll0.SYS_fchown.S + 0x00006f40 59535f6d 715f7265 63656976 65005359 YS_mq_receive.SY + 0x00006f50 535f636c 6f636b5f 73657474 696d6500 S_clock_settime. + 0x00006f60 5359535f 77726974 65005359 535f6765 SYS_write.SYS_ge + 0x00006f70 74706964 00535953 5f667379 6e630053 tpid.SYS_fsync.S + 0x00006f80 59535f73 6574686f 73746e61 6d650053 YS_sethostname.S + 0x00006f90 59535f75 74696d65 6e730075 6e736967 YS_utimens.unsig + 0x00006fa0 6e656420 696e7400 5359535f 73696761 ned int.SYS_siga + 0x00006fb0 6374696f 6e005359 535f6d71 5f636c6f ction.SYS_mq_clo + 0x00006fc0 7365006c 6f6e6720 756e7369 676e6564 se.long unsigned + 0x00006fd0 20696e74 00535953 5f66636e 746c0053 int.SYS_fcntl.S + 0x00006fe0 59535f74 696d6572 5f736574 74696d65 YS_timer_settime + 0x00006ff0 00535953 5f6d715f 756e6c69 6e6b0073 .SYS_mq_unlink.s + 0x00007000 686f7274 20756e73 69676e65 6420696e hort unsigned in + 0x00007010 74005359 535f726d 64697200 5359535f t.SYS_rmdir.SYS_ + 0x00007020 74696d65 725f6765 746f7665 7272756e timer_getoverrun + 0x00007030 00535953 5f6d6f75 6e740053 59535f6e .SYS_mount.SYS_n + 0x00007040 7873656d 5f646573 74726f79 00535953 xsem_destroy.SYS + 0x00007050 5f6d6178 73797363 616c6c00 5359535f _maxsyscall.SYS_ + 0x00007060 63686d6f 64005359 535f6e78 73656d5f chmod.SYS_nxsem_ + 0x00007070 74696d65 64776169 74005359 535f6e78 timedwait.SYS_nx + 0x00007080 5f767379 736c6f67 00535953 5f707365 _vsyslog.SYS_pse + 0x00007090 6c656374 00535953 5f6d715f 6e6f7469 lect.SYS_mq_noti + 0x000070a0 66790053 59535f73 74617466 73005f73 fy.SYS_statfs._s + 0x000070b0 697a655f 74005359 535f6765 74697469 ize_t.SYS_getiti + 0x000070c0 6d657200 5359535f 73636865 645f7365 mer.SYS_sched_se + 0x000070d0 74736368 6564756c 65720053 59535f70 tscheduler.SYS_p + 0x000070e0 74687265 61645f6d 75746578 5f756e6c thread_mutex_unl + 0x000070f0 6f636b00 5359535f 6e787365 6d5f7472 ock.SYS_nxsem_tr + 0x00007100 79776169 74005359 535f7469 6d65725f ywait.SYS_timer_ + 0x00007110 64656c65 74650053 59535f73 69677375 delete.SYS_sigsu + 0x00007120 7370656e 64005359 535f5f65 78697400 spend.SYS__exit. + 0x00007130 5359535f 65706f6c 6c5f7761 69740053 SYS_epoll_wait.S + 0x00007140 59535f73 63686564 5f6c6f63 6b005359 YS_sched_lock.SY + 0x00007150 535f636c 6f636b5f 6e616e6f 736c6565 S_clock_nanoslee + 0x00007160 70005359 535f7379 73696e66 6f005359 p.SYS_sysinfo.SY + 0x00007170 535f7074 68726561 645f636f 6e645f62 S_pthread_cond_b + 0x00007180 726f6164 63617374 00535953 5f707772 roadcast.SYS_pwr + 0x00007190 69746500 5359535f 6d715f73 656e6400 ite.SYS_mq_send. + 0x000071a0 5359535f 70746872 6561645f 62617272 SYS_pthread_barr + 0x000071b0 6965725f 77616974 00535953 5f666368 ier_wait.SYS_fch + 0x000071c0 6d6f6400 5359535f 67657474 69640053 mod.SYS_gettid.S + 0x000071d0 59535f72 656e616d 65005359 535f6475 YS_rename.SYS_du + 0x000071e0 70005359 535f6e78 73656d5f 706f7374 p.SYS_nxsem_post + 0x000071f0 00535953 5f6d715f 74696d65 64726563 .SYS_mq_timedrec + 0x00007200 65697665 0070726f 78696573 2f50524f eive.proxies/PRO + 0x00007210 58595f67 65747469 642e6300 5359535f XY_gettid.c.SYS_ + 0x00007220 6c63686f 776e0053 59535f6e 785f7074 lchown.SYS_nx_pt + 0x00007230 68726561 645f6578 69740075 6e736967 hread_exit.unsig + 0x00007240 6e656420 63686172 00535953 5f736967 ned char.SYS_sig + 0x00007250 70656e64 696e6700 5359535f 66737461 pending.SYS_fsta + 0x00007260 74667300 5359535f 6b696c6c 00535953 tfs.SYS_kill.SYS + 0x00007270 5f736574 656e7600 73686f72 7420696e _setenv.short in + 0x00007280 74005359 535f6475 70320053 59535f73 t.SYS_dup2.SYS_s + 0x00007290 796e6300 5359535f 70746872 6561645f ync.SYS_pthread_ + 0x000072a0 67657473 63686564 70617261 6d005359 getschedparam.SY + 0x000072b0 535f7365 7474696d 656f6664 61790053 S_settimeofday.S + 0x000072c0 59535f6d 715f7365 74617474 72005359 YS_mq_setattr.SY + 0x000072d0 535f6578 65637665 00535953 5f75705f S_execve.SYS_up_ + 0x000072e0 666f726b 00535953 5f5f6173 73657274 fork.SYS__assert + 0x000072f0 00535953 5f667574 696d656e 73005359 .SYS_futimens.SY + 0x00007300 535f6765 74686f73 746e616d 65005359 S_gethostname.SY + 0x00007310 535f6e78 73636865 645f6765 745f7374 S_nxsched_get_st + 0x00007320 61636b69 6e666f00 2f557365 72732f4c ackinfo./Users/L + 0x00007330 75707079 2f6f7836 342f6e75 7474782f uppy/ox64/nuttx/ + 0x00007340 73797363 616c6c00 63686172 00535953 syscall.char.SYS + 0x00007350 5f676574 5f656e76 69726f6e 5f707472 _get_environ_ptr + 0x00007360 00535953 5f707468 72656164 5f6d7574 .SYS_pthread_mut + 0x00007370 65785f74 696d6564 6c6f636b 00535953 ex_timedlock.SYS + 0x00007380 5f776169 74706964 00535953 5f74696d _waitpid.SYS_tim + 0x00007390 65005359 535f6765 7474696d 656f6664 e.SYS_gettimeofd + 0x000073a0 61790053 59535f63 6c656172 656e7600 ay.SYS_clearenv. + 0x000073b0 5359535f 70746872 6561645f 6d757465 SYS_pthread_mute + 0x000073c0 785f696e 69740053 59535f75 6d6f756e x_init.SYS_umoun + 0x000073d0 74320053 59535f73 63686564 5f736574 t2.SYS_sched_set + 0x000073e0 70617261 6d005359 535f7363 6865645f param.SYS_sched_ + 0x000073f0 72725f67 65745f69 6e746572 76616c00 rr_get_interval. + 0x00007400 5359535f 6d756e6d 61700053 59535f6c SYS_munmap.SYS_l + 0x00007410 73746174 00535953 5f636c6f 636b5f67 stat.SYS_clock_g + 0x00007420 65747469 6d650053 59535f73 656e6466 ettime.SYS_sendf + 0x00007430 696c6500 5359535f 70746872 6561645f ile.SYS_pthread_ + 0x00007440 636f6e64 5f636c6f 636b7761 69740053 cond_clockwait.S + 0x00007450 59535f6d 715f6f70 656e0053 59535f70 YS_mq_open.SYS_p + 0x00007460 74687265 61645f63 6f6e645f 77616974 thread_cond_wait + 0x00007470 00535953 5f6f7065 6e005359 535f7369 .SYS_open.SYS_si + 0x00007480 67717565 75650053 59535f70 74687265 gqueue.SYS_pthre + 0x00007490 61645f6d 75746578 5f636f6e 73697374 ad_mutex_consist + 0x000074a0 656e7400 5359535f 73636865 645f6c6f ent.SYS_sched_lo + 0x000074b0 636b636f 756e7400 5359535f 7067616c ckcount.SYS_pgal + 0x000074c0 6c6f6300 5359535f 70746872 6561645f loc.SYS_pthread_ + 0x000074d0 7369676d 61736b00 474e5520 43313720 sigmask.GNU C17 + 0x000074e0 31302e32 2e30202d 6d636d6f 64656c3d 10.2.0 -mcmodel= + 0x000074f0 6d656461 6e79202d 6d617263 683d7276 medany -march=rv + 0x00007500 3634696d 61666463 202d6d61 62693d6c 64imafdc -mabi=l + 0x00007510 70363464 202d6d61 7263683d 72763634 p64d -march=rv64 + 0x00007520 696d6166 6463202d 67202d4f 73202d66 imafdc -g -Os -f + 0x00007530 6e6f2d63 6f6d6d6f 6e202d66 6e6f2d73 no-common -fno-s + 0x00007540 74726963 742d616c 69617369 6e67202d trict-aliasing - + 0x00007550 666f6d69 742d6672 616d652d 706f696e fomit-frame-poin + 0x00007560 74657220 2d666675 6e637469 6f6e2d73 ter -ffunction-s + 0x00007570 65637469 6f6e7320 2d666461 74612d73 ections -fdata-s + 0x00007580 65637469 6f6e7300 5359535f 74696d65 ections.SYS_time + 0x00007590 725f6765 7474696d 65005359 535f6570 r_gettime.SYS_ep + 0x000075a0 6f6c6c5f 63726561 74653100 5359535f oll_create1.SYS_ + 0x000075b0 6c757469 6d656e73 00535953 5f6c6368 lutimens.SYS_lch + 0x000075c0 6d6f6400 5359535f 66747275 6e636174 mod.SYS_ftruncat + 0x000075d0 65005359 535f696f 63746c00 7069645f e.SYS_ioctl.pid_ + 0x000075e0 74005359 535f7363 6865645f 756e6c6f t.SYS_sched_unlo + 0x000075f0 636b0053 59535f70 74687265 61645f6a ck.SYS_pthread_j + 0x00007600 6f696e00 5359535f 73746174 00535953 oin.SYS_stat.SYS + 0x00007610 5f676574 656e7600 5359535f 67657472 _getenv.SYS_getr + 0x00007620 616e646f 6d005359 535f7363 6865645f andom.SYS_sched_ + 0x00007630 67657473 63686564 756c6572 00535953 getscheduler.SYS + 0x00007640 5f707263 746c0053 59535f75 6e6c696e _prctl.SYS_unlin + 0x00007650 6b007061 726d3300 5359535f 706f6c6c k.parm3.SYS_poll + 0x00007660 00535953 5f74676b 696c6c00 5359535f .SYS_tgkill.SYS_ + 0x00007670 70746872 6561645f 6d757465 785f7472 pthread_mutex_tr + 0x00007680 796c6f63 6b005359 535f7469 6d65725f ylock.SYS_timer_ + 0x00007690 63726561 74650075 696e7470 74725f74 create.uintptr_t + 0x000076a0 00535953 5f667374 61740053 59535f73 .SYS_fstat.SYS_s + 0x000076b0 63686564 5f796965 6c640053 59535f70 ched_yield.SYS_p + 0x000076c0 7574656e 76005359 535f6e78 73656d5f utenv.SYS_nxsem_ + 0x000076d0 77616974 00535953 5f70706f 6c6c0053 wait.SYS_ppoll.S + 0x000076e0 59535f75 6e736574 656e7600 5359535f YS_unsetenv.SYS_ + 0x000076f0 6d715f74 696d6564 73656e64 00535953 mq_timedsend.SYS + 0x00007700 5f707468 72656164 5f646574 61636800 _pthread_detach. + 0x00007710 5359535f 636c6f63 6b005359 535f6570 SYS_clock.SYS_ep + 0x00007720 6f6c6c5f 63746c00 5359535f 73656c65 oll_ctl.SYS_sele + 0x00007730 6374006c 6f6e6720 6c6f6e67 20756e73 ct.long long uns + 0x00007740 69676e65 6420696e 74005359 535f7074 igned int.SYS_pt + 0x00007750 68726561 645f6d75 7465785f 64657374 hread_mutex_dest + 0x00007760 726f7900 5359535f 70726561 64005359 roy.SYS_pread.SY + 0x00007770 535f7369 67776169 74696e66 6f005359 S_sigwaitinfo.SY + 0x00007780 535f706f 7369785f 73706177 6e005359 S_posix_spawn.SY + 0x00007790 535f7363 6865645f 67657470 6172616d S_sched_getparam + 0x000077a0 00535953 5f707468 72656164 5f636f6e .SYS_pthread_con + 0x000077b0 645f7369 676e616c 00535953 5f6c7365 d_signal.SYS_lse + 0x000077c0 656b0053 59535f72 65616400 7369676e ek.SYS_read.sign + 0x000077d0 65642063 68617200 5359535f 6e616e6f ed char.SYS_nano + 0x000077e0 736c6565 70005359 535f6368 6f776e00 sleep.SYS_chown. + 0x000077f0 5359535f 73696774 696d6564 77616974 SYS_sigtimedwait + 0x00007800 00535953 5f636c6f 73650053 59535f70 .SYS_close.SYS_p + 0x00007810 74687265 61645f73 65747363 68656470 thread_setschedp + 0x00007820 6172616d 00535953 5f6e7873 656d5f63 aram.SYS_nxsem_c + 0x00007830 6c6f636b 77616974 006c6f6e 6720696e lockwait.long in + 0x00007840 74005359 535f626f 61726463 746c0053 t.SYS_boardctl.S + 0x00007850 59535f70 74687265 61645f73 65747363 YS_pthread_setsc + 0x00007860 68656470 72696f00 5359535f 6d715f67 hedprio.SYS_mq_g + 0x00007870 65746174 74720053 59535f6e 785f7074 etattr.SYS_nx_pt + 0x00007880 68726561 645f6372 65617465 00535953 hread_create.SYS + 0x00007890 5f736967 6e616c00 5359535f 73696770 _signal.SYS_sigp + 0x000078a0 726f636d 61736b00 5359535f 70746872 rocmask.SYS_pthr + 0x000078b0 6561645f 63616e63 656c0053 59535f73 ead_cancel.SYS_s + 0x000078c0 65746974 696d6572 00535953 5f6d6b64 etitimer.SYS_mkd + 0x000078d0 69720053 59535f6d 6d617000 6f66665f ir.SYS_mmap.off_ + 0x000078e0 74007379 735f6361 6c6c3300 5359535f t.sys_call3.SYS_ + 0x000078f0 6663686f 776e0053 59535f6d 715f7265 fchown.SYS_mq_re + 0x00007900 63656976 65005359 535f636c 6f636b5f ceive.SYS_clock_ + 0x00007910 73657474 696d6500 5359535f 77726974 settime.SYS_writ + 0x00007920 65005359 535f6765 74706964 00535953 e.SYS_getpid.SYS + 0x00007930 5f667379 6e630053 59535f73 6574686f _fsync.SYS_setho + 0x00007940 73746e61 6d650053 59535f75 74696d65 stname.SYS_utime + 0x00007950 6e730075 6e736967 6e656420 696e7400 ns.unsigned int. + 0x00007960 5359535f 73696761 6374696f 6e005359 SYS_sigaction.SY + 0x00007970 535f6d71 5f636c6f 7365006c 6f6e6720 S_mq_close.long + 0x00007980 756e7369 676e6564 20696e74 00535953 unsigned int.SYS + 0x00007990 5f66636e 746c0053 59535f74 696d6572 _fcntl.SYS_timer + 0x000079a0 5f736574 74696d65 00535953 5f6d715f _settime.SYS_mq_ + 0x000079b0 756e6c69 6e6b0073 686f7274 20756e73 unlink.short uns + 0x000079c0 69676e65 6420696e 74005359 535f726d igned int.SYS_rm + 0x000079d0 64697200 5359535f 74696d65 725f6765 dir.SYS_timer_ge + 0x000079e0 746f7665 7272756e 00535953 5f6d6f75 toverrun.SYS_mou + 0x000079f0 6e740053 59535f6e 7873656d 5f646573 nt.SYS_nxsem_des + 0x00007a00 74726f79 00535953 5f6d6178 73797363 troy.SYS_maxsysc + 0x00007a10 616c6c00 5359535f 63686d6f 64005359 all.SYS_chmod.SY + 0x00007a20 535f6e78 73656d5f 74696d65 64776169 S_nxsem_timedwai + 0x00007a30 74005359 535f6e78 5f767379 736c6f67 t.SYS_nx_vsyslog + 0x00007a40 00535953 5f707365 6c656374 00535953 .SYS_pselect.SYS + 0x00007a50 5f6d715f 6e6f7469 66790053 59535f73 _mq_notify.SYS_s + 0x00007a60 74617466 73005f73 697a655f 74005359 tatfs._size_t.SY + 0x00007a70 535f6765 74697469 6d657200 5359535f S_getitimer.SYS_ + 0x00007a80 73636865 645f7365 74736368 6564756c sched_setschedul + 0x00007a90 65720053 59535f70 74687265 61645f6d er.SYS_pthread_m + 0x00007aa0 75746578 5f756e6c 6f636b00 5359535f utex_unlock.SYS_ + 0x00007ab0 6e787365 6d5f7472 79776169 74005f69 nxsem_trywait._i + 0x00007ac0 6e743332 5f740053 59535f74 696d6572 nt32_t.SYS_timer + 0x00007ad0 5f64656c 65746500 5359535f 73696773 _delete.SYS_sigs + 0x00007ae0 75737065 6e640053 59535f5f 65786974 uspend.SYS__exit + 0x00007af0 00535953 5f65706f 6c6c5f77 61697400 .SYS_epoll_wait. + 0x00007b00 5359535f 73636865 645f6c6f 636b0053 SYS_sched_lock.S + 0x00007b10 59535f63 6c6f636b 5f6e616e 6f736c65 YS_clock_nanosle + 0x00007b20 65700053 59535f73 7973696e 666f0053 ep.SYS_sysinfo.S + 0x00007b30 59535f70 74687265 61645f63 6f6e645f YS_pthread_cond_ + 0x00007b40 62726f61 64636173 74005359 535f7077 broadcast.SYS_pw + 0x00007b50 72697465 00535953 5f6d715f 73656e64 rite.SYS_mq_send + 0x00007b60 00535953 5f707468 72656164 5f626172 .SYS_pthread_bar + 0x00007b70 72696572 5f776169 74005359 535f6663 rier_wait.SYS_fc + 0x00007b80 686d6f64 00535953 5f676574 74696400 hmod.SYS_gettid. + 0x00007b90 5359535f 72656e61 6d650053 59535f64 SYS_rename.SYS_d + 0x00007ba0 75700053 59535f6e 7873656d 5f706f73 up.SYS_nxsem_pos + 0x00007bb0 74005359 535f6d71 5f74696d 65647265 t.SYS_mq_timedre + 0x00007bc0 63656976 65005359 535f6c63 686f776e ceive.SYS_lchown + 0x00007bd0 00535953 5f6e785f 70746872 6561645f .SYS_nx_pthread_ + 0x00007be0 65786974 00696e74 33325f74 00756e73 exit.int32_t.uns + 0x00007bf0 69676e65 64206368 61720053 59535f73 igned char.SYS_s + 0x00007c00 69677065 6e64696e 67005359 535f6673 igpending.SYS_fs + 0x00007c10 74617466 73005359 535f6b69 6c6c0053 tatfs.SYS_kill.S + 0x00007c20 59535f73 6574656e 76007368 6f727420 YS_setenv.short + 0x00007c30 696e7400 5359535f 64757032 00535953 int.SYS_dup2.SYS + 0x00007c40 5f73796e 63005359 535f7074 68726561 _sync.SYS_pthrea + 0x00007c50 645f6765 74736368 65647061 72616d00 d_getschedparam. + 0x00007c60 5359535f 73657474 696d656f 66646179 SYS_settimeofday + 0x00007c70 00535953 5f6d715f 73657461 74747200 .SYS_mq_setattr. + 0x00007c80 5359535f 65786563 76650053 59535f75 SYS_execve.SYS_u + 0x00007c90 705f666f 726b0053 59535f5f 61737365 p_fork.SYS__asse + 0x00007ca0 72740053 59535f66 7574696d 656e7300 rt.SYS_futimens. + 0x00007cb0 5359535f 67657468 6f73746e 616d6500 SYS_gethostname. + 0x00007cc0 5359535f 6e787363 6865645f 6765745f SYS_nxsched_get_ + 0x00007cd0 73746163 6b696e66 6f002f55 73657273 stackinfo./Users + 0x00007ce0 2f4c7570 70792f6f 7836342f 6e757474 /Luppy/ox64/nutt + 0x00007cf0 782f7379 7363616c 6c007061 726d3100 x/syscall.parm1. + 0x00007d00 7061726d 32006368 61720053 59535f67 parm2.char.SYS_g + 0x00007d10 65745f65 6e766972 6f6e5f70 74720053 et_environ_ptr.S + 0x00007d20 59535f70 74687265 61645f6d 75746578 YS_pthread_mutex + 0x00007d30 5f74696d 65646c6f 636b0053 59535f77 _timedlock.SYS_w + 0x00007d40 61697470 69640053 59535f74 696d6500 aitpid.SYS_time. + 0x00007d50 5359535f 67657474 696d656f 66646179 SYS_gettimeofday + 0x00007d60 00535953 5f636c65 6172656e 76005359 .SYS_clearenv.SY + 0x00007d70 535f7074 68726561 645f6d75 7465785f S_pthread_mutex_ + 0x00007d80 696e6974 00535953 5f756d6f 756e7432 init.SYS_umount2 + 0x00007d90 00535953 5f736368 65645f73 65747061 .SYS_sched_setpa + 0x00007da0 72616d00 5359535f 73636865 645f7272 ram.SYS_sched_rr + 0x00007db0 5f676574 5f696e74 65727661 6c005359 _get_interval.SY + 0x00007dc0 535f6d75 6e6d6170 00535953 5f6c7374 S_munmap.SYS_lst + 0x00007dd0 61740053 59535f63 6c6f636b 5f676574 at.SYS_clock_get + 0x00007de0 74696d65 00535953 5f73656e 6466696c time.SYS_sendfil + 0x00007df0 65005359 535f7074 68726561 645f636f e.SYS_pthread_co + 0x00007e00 6e645f63 6c6f636b 77616974 00535953 nd_clockwait.SYS + 0x00007e10 5f6d715f 6f70656e 00535953 5f707468 _mq_open.SYS_pth + 0x00007e20 72656164 5f636f6e 645f7761 69740053 read_cond_wait.S + 0x00007e30 59535f6f 70656e00 5359535f 73696771 YS_open.SYS_sigq + 0x00007e40 75657565 00535953 5f707468 72656164 ueue.SYS_pthread + 0x00007e50 5f6d7574 65785f63 6f6e7369 7374656e _mutex_consisten + 0x00007e60 74005359 535f7363 6865645f 6c6f636b t.SYS_sched_lock + 0x00007e70 636f756e 74005359 535f7067 616c6c6f count.SYS_pgallo + 0x00007e80 63005359 535f7074 68726561 645f7369 c.SYS_pthread_si + 0x00007e90 676d6173 6b00474e 55204331 37203130 gmask.GNU C17 10 + 0x00007ea0 2e322e30 202d6d63 6d6f6465 6c3d6d65 .2.0 -mcmodel=me + 0x00007eb0 64616e79 202d6d61 7263683d 72763634 dany -march=rv64 + 0x00007ec0 696d6166 6463202d 6d616269 3d6c7036 imafdc -mabi=lp6 + 0x00007ed0 3464202d 6d617263 683d7276 3634696d 4d -march=rv64im + 0x00007ee0 61666463 202d6720 2d4f7320 2d666e6f afdc -g -Os -fno + 0x00007ef0 2d636f6d 6d6f6e20 2d666e6f 2d737472 -common -fno-str + 0x00007f00 6963742d 616c6961 73696e67 202d666f ict-aliasing -fo + 0x00007f10 6d69742d 6672616d 652d706f 696e7465 mit-frame-pointe + 0x00007f20 72202d66 66756e63 74696f6e 2d736563 r -ffunction-sec + 0x00007f30 74696f6e 73202d66 64617461 2d736563 tions -fdata-sec + 0x00007f40 74696f6e 73005359 535f7469 6d65725f tions.SYS_timer_ + 0x00007f50 67657474 696d6500 5359535f 65706f6c gettime.SYS_epol + 0x00007f60 6c5f6372 65617465 31005359 535f6c75 l_create1.SYS_lu + 0x00007f70 74696d65 6e73006c 7365656b 00535953 timens.lseek.SYS + 0x00007f80 5f6c6368 6d6f6400 5359535f 66747275 _lchmod.SYS_ftru + 0x00007f90 6e636174 65005359 535f696f 63746c00 ncate.SYS_ioctl. + 0x00007fa0 70726f78 6965732f 50524f58 595f6c73 proxies/PROXY_ls + 0x00007fb0 65656b2e 63005359 535f7363 6865645f eek.c.SYS_sched_ + 0x00007fc0 756e6c6f 636b0053 59535f70 74687265 unlock.SYS_pthre + 0x00007fd0 61645f6a 6f696e00 5359535f 73746174 ad_join.SYS_stat + 0x00007fe0 00535953 5f676574 656e7600 5359535f .SYS_getenv.SYS_ + 0x00007ff0 67657472 616e646f 6d005359 535f7363 getrandom.SYS_sc + 0x00008000 6865645f 67657473 63686564 756c6572 hed_getscheduler + 0x00008010 00535953 5f707263 746c0053 59535f75 .SYS_prctl.SYS_u + 0x00008020 6e6c696e 6b005359 535f706f 6c6c0053 nlink.SYS_poll.S + 0x00008030 59535f74 676b696c 6c005359 535f7074 YS_tgkill.SYS_pt + 0x00008040 68726561 645f6d75 7465785f 7472796c hread_mutex_tryl + 0x00008050 6f636b00 5359535f 74696d65 725f6372 ock.SYS_timer_cr + 0x00008060 65617465 0075696e 74707472 5f740053 eate.uintptr_t.S + 0x00008070 59535f66 73746174 00535953 5f736368 YS_fstat.SYS_sch + 0x00008080 65645f79 69656c64 00535953 5f707574 ed_yield.SYS_put + 0x00008090 656e7600 5359535f 6e787365 6d5f7761 env.SYS_nxsem_wa + 0x000080a0 69740053 59535f70 706f6c6c 00535953 it.SYS_ppoll.SYS + 0x000080b0 5f6d715f 74696d65 6473656e 64005359 _mq_timedsend.SY + 0x000080c0 535f7074 68726561 645f6465 74616368 S_pthread_detach + 0x000080d0 00535953 5f636c6f 636b0053 59535f65 .SYS_clock.SYS_e + 0x000080e0 706f6c6c 5f63746c 00535953 5f73656c poll_ctl.SYS_sel + 0x000080f0 65637400 6c6f6e67 206c6f6e 6720756e ect.long long un + 0x00008100 7369676e 65642069 6e740053 59535f70 signed int.SYS_p + 0x00008110 74687265 61645f6d 75746578 5f646573 thread_mutex_des + 0x00008120 74726f79 00535953 5f707265 61640053 troy.SYS_pread.S + 0x00008130 59535f73 69677761 6974696e 666f0053 YS_sigwaitinfo.S + 0x00008140 59535f70 6f736978 5f737061 776e0053 YS_posix_spawn.S + 0x00008150 59535f73 63686564 5f676574 70617261 YS_sched_getpara + 0x00008160 6d005359 535f7074 68726561 645f636f m.SYS_pthread_co + 0x00008170 6e645f73 69676e61 6c005359 535f6c73 nd_signal.SYS_ls + 0x00008180 65656b00 5359535f 72656164 006c6f6e eek.SYS_read.lon + 0x00008190 67206c6f 6e672069 6e740073 69676e65 g long int.signe + 0x000081a0 64206368 61720053 59535f6e 616e6f73 d char.SYS_nanos + 0x000081b0 6c656570 00535953 5f63686f 776e0053 leep.SYS_chown.S + 0x000081c0 59535f73 69677469 6d656477 61697400 YS_sigtimedwait. + 0x000081d0 5359535f 636c6f73 65005359 535f7074 SYS_close.SYS_pt + 0x000081e0 68726561 645f7365 74736368 65647061 hread_setschedpa + 0x000081f0 72616d00 5359535f 6e787365 6d5f636c ram.SYS_nxsem_cl + 0x00008200 6f636b77 61697400 6c6f6e67 20696e74 ockwait.long int + 0x00008210 00535953 5f626f61 72646374 6c005359 .SYS_boardctl.SY + 0x00008220 535f7074 68726561 645f7365 74736368 S_pthread_setsch + 0x00008230 65647072 696f0053 59535f6d 715f6765 edprio.SYS_mq_ge + 0x00008240 74617474 72005359 535f6e78 5f707468 tattr.SYS_nx_pth + 0x00008250 72656164 5f637265 61746500 5359535f read_create.SYS_ + 0x00008260 7369676e 616c0053 59535f73 69677072 signal.SYS_sigpr + 0x00008270 6f636d61 736b0053 59535f70 74687265 ocmask.SYS_pthre + 0x00008280 61645f63 616e6365 6c005359 535f7365 ad_cancel.SYS_se + 0x00008290 74697469 6d657200 5359535f 6d6b6469 titimer.SYS_mkdi + 0x000082a0 72005359 535f6d6d 61700053 59535f75 r.SYS_mmap.SYS_u + 0x000082b0 6e736574 656e7600 7379735f 63616c6c nsetenv.sys_call + 0x000082c0 31005359 535f6663 686f776e 00535953 1.SYS_fchown.SYS + 0x000082d0 5f6d715f 72656365 69766500 5359535f _mq_receive.SYS_ + 0x000082e0 636c6f63 6b5f7365 7474696d 65005359 clock_settime.SY + 0x000082f0 535f7772 69746500 5359535f 67657470 S_write.SYS_getp + 0x00008300 69640053 59535f66 73796e63 00535953 id.SYS_fsync.SYS + 0x00008310 5f736574 686f7374 6e616d65 00535953 _sethostname.SYS + 0x00008320 5f757469 6d656e73 00756e73 69676e65 _utimens.unsigne + 0x00008330 6420696e 74005359 535f7369 67616374 d int.SYS_sigact + 0x00008340 696f6e00 5359535f 6d715f63 6c6f7365 ion.SYS_mq_close + 0x00008350 006e785f 70746872 6561645f 65786974 .nx_pthread_exit + 0x00008360 006c6f6e 6720756e 7369676e 65642069 .long unsigned i + 0x00008370 6e740053 59535f66 636e746c 00535953 nt.SYS_fcntl.SYS + 0x00008380 5f74696d 65725f73 65747469 6d650053 _timer_settime.S + 0x00008390 59535f6d 715f756e 6c696e6b 0073686f YS_mq_unlink.sho + 0x000083a0 72742075 6e736967 6e656420 696e7400 rt unsigned int. + 0x000083b0 5359535f 726d6469 72005359 535f7469 SYS_rmdir.SYS_ti + 0x000083c0 6d65725f 6765746f 76657272 756e0053 mer_getoverrun.S + 0x000083d0 59535f6d 6f756e74 00535953 5f6e7873 YS_mount.SYS_nxs + 0x000083e0 656d5f64 65737472 6f790053 59535f6d em_destroy.SYS_m + 0x000083f0 61787379 7363616c 6c005359 535f6368 axsyscall.SYS_ch + 0x00008400 6d6f6400 5359535f 6e787365 6d5f7469 mod.SYS_nxsem_ti + 0x00008410 6d656477 61697400 5359535f 6e785f76 medwait.SYS_nx_v + 0x00008420 7379736c 6f670053 59535f70 73656c65 syslog.SYS_psele + 0x00008430 63740053 59535f6d 715f6e6f 74696679 ct.SYS_mq_notify + 0x00008440 00535953 5f737461 74667300 5f73697a .SYS_statfs._siz + 0x00008450 655f7400 5359535f 67657469 74696d65 e_t.SYS_getitime + 0x00008460 72005359 535f7363 6865645f 73657473 r.SYS_sched_sets + 0x00008470 63686564 756c6572 00535953 5f707468 cheduler.SYS_pth + 0x00008480 72656164 5f6d7574 65785f75 6e6c6f63 read_mutex_unloc + 0x00008490 6b005359 535f6e78 73656d5f 74727977 k.SYS_nxsem_tryw + 0x000084a0 61697400 5359535f 74696d65 725f6465 ait.SYS_timer_de + 0x000084b0 6c657465 00535953 5f736967 73757370 lete.SYS_sigsusp + 0x000084c0 656e6400 5359535f 5f657869 74006c6f end.SYS__exit.lo + 0x000084d0 6e672064 6f75626c 65005359 535f6570 ng double.SYS_ep + 0x000084e0 6f6c6c5f 77616974 00535953 5f736368 oll_wait.SYS_sch + 0x000084f0 65645f6c 6f636b00 5359535f 636c6f63 ed_lock.SYS_cloc + 0x00008500 6b5f6e61 6e6f736c 65657000 5359535f k_nanosleep.SYS_ + 0x00008510 73797369 6e666f00 5359535f 70746872 sysinfo.SYS_pthr + 0x00008520 6561645f 636f6e64 5f62726f 61646361 ead_cond_broadca + 0x00008530 73740070 726f7869 65732f50 524f5859 st.proxies/PROXY + 0x00008540 5f6e785f 70746872 6561645f 65786974 _nx_pthread_exit + 0x00008550 2e630053 59535f70 77726974 65005359 .c.SYS_pwrite.SY + 0x00008560 535f6d71 5f73656e 64005359 535f7074 S_mq_send.SYS_pt + 0x00008570 68726561 645f6261 72726965 725f7761 hread_barrier_wa + 0x00008580 69740053 59535f66 63686d6f 64005359 it.SYS_fchmod.SY + 0x00008590 535f6765 74746964 00535953 5f72656e S_gettid.SYS_ren + 0x000085a0 616d6500 5359535f 64757000 5359535f ame.SYS_dup.SYS_ + 0x000085b0 6e787365 6d5f706f 73740053 59535f6d nxsem_post.SYS_m + 0x000085c0 715f7469 6d656472 65636569 76650053 q_timedreceive.S + 0x000085d0 59535f6c 63686f77 6e005359 535f6e78 YS_lchown.SYS_nx + 0x000085e0 5f707468 72656164 5f657869 74005f42 _pthread_exit._B + 0x000085f0 6f6f6c00 756e7369 676e6564 20636861 ool.unsigned cha + 0x00008600 72005359 535f7369 6770656e 64696e67 r.SYS_sigpending + 0x00008610 00535953 5f667374 61746673 00535953 .SYS_fstatfs.SYS + 0x00008620 5f6b696c 6c005359 535f7365 74656e76 _kill.SYS_setenv + 0x00008630 0073686f 72742069 6e740053 59535f64 .short int.SYS_d + 0x00008640 75703200 5359535f 73796e63 00535953 up2.SYS_sync.SYS + 0x00008650 5f707468 72656164 5f676574 73636865 _pthread_getsche + 0x00008660 64706172 616d0053 59535f73 65747469 dparam.SYS_setti + 0x00008670 6d656f66 64617900 5359535f 6d715f73 meofday.SYS_mq_s + 0x00008680 65746174 74720053 59535f65 78656376 etattr.SYS_execv + 0x00008690 65005359 535f7570 5f666f72 6b005359 e.SYS_up_fork.SY + 0x000086a0 535f5f61 73736572 74005359 535f6675 S__assert.SYS_fu + 0x000086b0 74696d65 6e730053 59535f67 6574686f timens.SYS_getho + 0x000086c0 73746e61 6d650053 59535f6e 78736368 stname.SYS_nxsch + 0x000086d0 65645f67 65745f73 7461636b 696e666f ed_get_stackinfo + 0x000086e0 002f5573 6572732f 4c757070 792f6f78 ./Users/Luppy/ox + 0x000086f0 36342f6e 75747478 2f737973 63616c6c 64/nuttx/syscall + 0x00008700 00706172 6d310063 68617200 5359535f .parm1.char.SYS_ + 0x00008710 6765745f 656e7669 726f6e5f 70747200 get_environ_ptr. + 0x00008720 5359535f 70746872 6561645f 6d757465 SYS_pthread_mute + 0x00008730 785f7469 6d65646c 6f636b00 5359535f x_timedlock.SYS_ + 0x00008740 77616974 70696400 5359535f 74696d65 waitpid.SYS_time + 0x00008750 00535953 5f676574 74696d65 6f666461 .SYS_gettimeofda + 0x00008760 79005359 535f636c 65617265 6e760053 y.SYS_clearenv.S + 0x00008770 59535f70 74687265 61645f6d 75746578 YS_pthread_mutex + 0x00008780 5f696e69 74005359 535f756d 6f756e74 _init.SYS_umount + 0x00008790 32005359 535f7363 6865645f 73657470 2.SYS_sched_setp + 0x000087a0 6172616d 00535953 5f736368 65645f72 aram.SYS_sched_r + 0x000087b0 725f6765 745f696e 74657276 616c0053 r_get_interval.S + 0x000087c0 59535f6d 756e6d61 70005359 535f6c73 YS_munmap.SYS_ls + 0x000087d0 74617400 5359535f 636c6f63 6b5f6765 tat.SYS_clock_ge + 0x000087e0 7474696d 65005359 535f7365 6e646669 ttime.SYS_sendfi + 0x000087f0 6c650070 74687265 61645f61 6464725f le.pthread_addr_ + 0x00008800 74005359 535f7074 68726561 645f636f t.SYS_pthread_co + 0x00008810 6e645f63 6c6f636b 77616974 00535953 nd_clockwait.SYS + 0x00008820 5f6d715f 6f70656e 00535953 5f707468 _mq_open.SYS_pth + 0x00008830 72656164 5f636f6e 645f7761 69740053 read_cond_wait.S + 0x00008840 59535f6f 70656e00 5359535f 73696771 YS_open.SYS_sigq + 0x00008850 75657565 00535953 5f707468 72656164 ueue.SYS_pthread + 0x00008860 5f6d7574 65785f63 6f6e7369 7374656e _mutex_consisten + 0x00008870 74005359 535f7363 6865645f 6c6f636b t.SYS_sched_lock + 0x00008880 636f756e 74005359 535f7067 616c6c6f count.SYS_pgallo + 0x00008890 63005359 535f7074 68726561 645f7369 c.SYS_pthread_si + 0x000088a0 676d6173 6b00474e 55204331 37203130 gmask.GNU C17 10 + 0x000088b0 2e322e30 202d6d63 6d6f6465 6c3d6d65 .2.0 -mcmodel=me + 0x000088c0 64616e79 202d6d61 7263683d 72763634 dany -march=rv64 + 0x000088d0 696d6166 6463202d 6d616269 3d6c7036 imafdc -mabi=lp6 + 0x000088e0 3464202d 6d617263 683d7276 3634696d 4d -march=rv64im + 0x000088f0 61666463 202d6720 2d4f7320 2d666e6f afdc -g -Os -fno + 0x00008900 2d636f6d 6d6f6e20 2d666e6f 2d737472 -common -fno-str + 0x00008910 6963742d 616c6961 73696e67 202d666f ict-aliasing -fo + 0x00008920 6d69742d 6672616d 652d706f 696e7465 mit-frame-pointe + 0x00008930 72202d66 66756e63 74696f6e 2d736563 r -ffunction-sec + 0x00008940 74696f6e 73202d66 64617461 2d736563 tions -fdata-sec + 0x00008950 74696f6e 73005359 535f7469 6d65725f tions.SYS_timer_ + 0x00008960 67657474 696d6500 5359535f 65706f6c gettime.SYS_epol + 0x00008970 6c5f6372 65617465 31005359 535f6c75 l_create1.SYS_lu + 0x00008980 74696d65 6e730053 59535f6c 63686d6f timens.SYS_lchmo + 0x00008990 64005359 535f6674 72756e63 61746500 d.SYS_ftruncate. + 0x000089a0 5359535f 696f6374 6c005359 535f7363 SYS_ioctl.SYS_sc + 0x000089b0 6865645f 756e6c6f 636b0053 59535f70 hed_unlock.SYS_p + 0x000089c0 74687265 61645f6a 6f696e00 5359535f thread_join.SYS_ + 0x000089d0 73746174 00535953 5f676574 656e7600 stat.SYS_getenv. + 0x000089e0 5359535f 67657472 616e646f 6d005359 SYS_getrandom.SY + 0x000089f0 535f7363 6865645f 67657473 63686564 S_sched_getsched + 0x00008a00 756c6572 00535953 5f707263 746c0053 uler.SYS_prctl.S + 0x00008a10 59535f75 6e6c696e 6b005359 535f7074 YS_unlink.SYS_pt + 0x00008a20 68726561 645f636f 6e645f77 61697400 hread_cond_wait. + 0x00008a30 5359535f 706f6c6c 00535953 5f74676b SYS_poll.SYS_tgk + 0x00008a40 696c6c00 5359535f 70746872 6561645f ill.SYS_pthread_ + 0x00008a50 6d757465 785f7472 796c6f63 6b005359 mutex_trylock.SY + 0x00008a60 535f7469 6d65725f 63726561 74650053 S_timer_create.S + 0x00008a70 59535f70 74687265 61645f62 61727269 YS_pthread_barri + 0x00008a80 65725f77 61697400 75696e74 7074725f er_wait.uintptr_ + 0x00008a90 74005359 535f6673 74617400 5359535f t.SYS_fstat.SYS_ + 0x00008aa0 70746872 6561645f 67657473 63686564 pthread_getsched + 0x00008ab0 70617261 6d005f75 696e7433 325f7400 param._uint32_t. + 0x00008ac0 5359535f 70757465 6e760053 59535f6e SYS_putenv.SYS_n + 0x00008ad0 7873656d 5f776169 74005359 535f7070 xsem_wait.SYS_pp + 0x00008ae0 6f6c6c00 5359535f 66757469 6d656e73 oll.SYS_futimens + 0x00008af0 00535953 5f6d715f 74696d65 6473656e .SYS_mq_timedsen + 0x00008b00 64005359 535f7074 68726561 645f6465 d.SYS_pthread_de + 0x00008b10 74616368 00535953 5f636c6f 636b0053 tach.SYS_clock.S + 0x00008b20 59535f65 706f6c6c 5f63746c 00535953 YS_epoll_ctl.SYS + 0x00008b30 5f73656c 65637400 6c6f6e67 206c6f6e _select.long lon + 0x00008b40 6720756e 7369676e 65642069 6e740053 g unsigned int.S + 0x00008b50 59535f70 74687265 61645f6d 75746578 YS_pthread_mutex + 0x00008b60 5f646573 74726f79 00535953 5f707265 _destroy.SYS_pre + 0x00008b70 61640053 59535f73 69677761 6974696e ad.SYS_sigwaitin + 0x00008b80 666f0053 59535f70 6f736978 5f737061 fo.SYS_posix_spa + 0x00008b90 776e0053 59535f73 63686564 5f676574 wn.SYS_sched_get + 0x00008ba0 70617261 6d005359 535f7074 68726561 param.SYS_pthrea + 0x00008bb0 645f636f 6e645f73 69676e61 6c005359 d_cond_signal.SY + 0x00008bc0 535f6663 6e746c00 696e7431 365f7400 S_fcntl.int16_t. + 0x00008bd0 5359535f 72656164 00736967 6e656420 SYS_read.signed + 0x00008be0 63686172 00535953 5f6e616e 6f736c65 char.SYS_nanosle + 0x00008bf0 65700053 59535f63 686f776e 00535953 ep.SYS_chown.SYS + 0x00008c00 5f736967 74696d65 64776169 74005359 _sigtimedwait.SY + 0x00008c10 535f636c 6f736500 5359535f 70746872 S_close.SYS_pthr + 0x00008c20 6561645f 73657473 63686564 70617261 ead_setschedpara + 0x00008c30 6d005359 535f6e78 73656d5f 636c6f63 m.SYS_nxsem_cloc + 0x00008c40 6b776169 74005359 535f6c73 65656b00 kwait.SYS_lseek. + 0x00008c50 6c6f6e67 20696e74 00535953 5f626f61 long int.SYS_boa + 0x00008c60 72646374 6c007761 69746c69 73740053 rdctl.waitlist.S + 0x00008c70 59535f70 74687265 61645f73 65747363 YS_pthread_setsc + 0x00008c80 68656470 72696f00 5359535f 6d715f67 hedprio.SYS_mq_g + 0x00008c90 65746174 74720053 59535f6e 785f7074 etattr.SYS_nx_pt + 0x00008ca0 68726561 645f6372 65617465 00535953 hread_create.SYS + 0x00008cb0 5f736967 6e616c00 5359535f 73696770 _signal.SYS_sigp + 0x00008cc0 726f636d 61736b00 5359535f 70746872 rocmask.SYS_pthr + 0x00008cd0 6561645f 63616e63 656c0053 59535f73 ead_cancel.SYS_s + 0x00008ce0 65746974 696d6572 00535953 5f6d6b64 etitimer.SYS_mkd + 0x00008cf0 69720053 59535f6d 6d617000 6e787365 ir.SYS_mmap.nxse + 0x00008d00 6d5f636c 6f636b77 61697400 5359535f m_clockwait.SYS_ + 0x00008d10 756e7365 74656e76 00535953 5f74696d unsetenv.SYS_tim + 0x00008d20 65725f67 65747469 6d650073 79735f63 er_gettime.sys_c + 0x00008d30 616c6c33 00535953 5f666368 6f776e00 all3.SYS_fchown. + 0x00008d40 5359535f 6d715f72 65636569 76650053 SYS_mq_receive.S + 0x00008d50 59535f63 6c6f636b 5f736574 74696d65 YS_clock_settime + 0x00008d60 00535953 5f777269 74650053 59535f67 .SYS_write.SYS_g + 0x00008d70 65747069 64005359 535f6673 796e6300 etpid.SYS_fsync. + 0x00008d80 5359535f 73657468 6f73746e 616d6500 SYS_sethostname. + 0x00008d90 5359535f 7574696d 656e7300 756e7369 SYS_utimens.unsi + 0x00008da0 676e6564 20696e74 00535953 5f736967 gned int.SYS_sig + 0x00008db0 61637469 6f6e0053 59535f6d 715f636c action.SYS_mq_cl + 0x00008dc0 6f736500 6c6f6e67 20756e73 69676e65 ose.long unsigne + 0x00008dd0 6420696e 74005359 535f7363 6865645f d int.SYS_sched_ + 0x00008de0 7969656c 6400666c 696e6b00 5359535f yield.flink.SYS_ + 0x00008df0 74696d65 725f7365 7474696d 65005359 timer_settime.SY + 0x00008e00 535f6e78 73656d5f 64657374 726f7900 S_nxsem_destroy. + 0x00008e10 5359535f 6d715f75 6e6c696e 6b007368 SYS_mq_unlink.sh + 0x00008e20 6f727420 756e7369 676e6564 20696e74 ort unsigned int + 0x00008e30 00535953 5f65706f 6c6c5f63 72656174 .SYS_epoll_creat + 0x00008e40 65310053 59535f72 6d646972 00535953 e1.SYS_rmdir.SYS + 0x00008e50 5f74696d 65725f67 65746f76 65727275 _timer_getoverru + 0x00008e60 6e005359 535f6d6f 756e7400 73656d63 n.SYS_mount.semc + 0x00008e70 6f756e74 00535953 5f6d6178 73797363 ount.SYS_maxsysc + 0x00008e80 616c6c00 5359535f 63686d6f 64005359 all.SYS_chmod.SY + 0x00008e90 535f6e78 73656d5f 74696d65 64776169 S_nxsem_timedwai + 0x00008ea0 74005359 535f6e78 5f767379 736c6f67 t.SYS_nx_vsyslog + 0x00008eb0 00535953 5f707365 6c656374 00535953 .SYS_pselect.SYS + 0x00008ec0 5f6d715f 6e6f7469 66790053 59535f73 _mq_notify.SYS_s + 0x00008ed0 74617466 73005f73 697a655f 74005359 tatfs._size_t.SY + 0x00008ee0 535f6765 74697469 6d657200 5359535f S_getitimer.SYS_ + 0x00008ef0 73636865 645f7365 74736368 6564756c sched_setschedul + 0x00008f00 65720053 59535f70 74687265 61645f6d er.SYS_pthread_m + 0x00008f10 75746578 5f756e6c 6f636b00 5359535f utex_unlock.SYS_ + 0x00008f20 6c757469 6d656e73 00535953 5f6e7873 lutimens.SYS_nxs + 0x00008f30 656d5f74 72797761 69740053 59535f74 em_trywait.SYS_t + 0x00008f40 696d6572 5f64656c 65746500 5359535f imer_delete.SYS_ + 0x00008f50 73696773 75737065 6e640074 61696c00 sigsuspend.tail. + 0x00008f60 74765f6e 73656300 5359535f 5f657869 tv_nsec.SYS__exi + 0x00008f70 74005359 535f6570 6f6c6c5f 77616974 t.SYS_epoll_wait + 0x00008f80 0074765f 73656300 5359535f 73636865 .tv_sec.SYS_sche + 0x00008f90 645f6c6f 636b0053 59535f63 6c6f636b d_lock.SYS_clock + 0x00008fa0 5f6e616e 6f736c65 65700053 59535f73 _nanosleep.SYS_s + 0x00008fb0 7973696e 666f0053 59535f70 74687265 ysinfo.SYS_pthre + 0x00008fc0 61645f63 6f6e645f 62726f61 64636173 ad_cond_broadcas + 0x00008fd0 74005359 535f7077 72697465 00535953 t.SYS_pwrite.SYS + 0x00008fe0 5f6d715f 73656e64 00535953 5f5f6173 _mq_send.SYS__as + 0x00008ff0 73657274 00535953 5f666368 6d6f6400 sert.SYS_fchmod. + 0x00009000 74696d65 5f740053 59535f72 656e616d time_t.SYS_renam + 0x00009010 65005359 535f6475 70005359 535f6e78 e.SYS_dup.SYS_nx + 0x00009020 73656d5f 706f7374 00535953 5f6d715f sem_post.SYS_mq_ + 0x00009030 74696d65 64726563 65697665 00535953 timedreceive.SYS + 0x00009040 5f6c6368 6f776e00 5359535f 6e785f70 _lchown.SYS_nx_p + 0x00009050 74687265 61645f65 78697400 756e7369 thread_exit.unsi + 0x00009060 676e6564 20636861 72005359 535f7369 gned char.SYS_si + 0x00009070 6770656e 64696e67 00535953 5f667374 gpending.SYS_fst + 0x00009080 61746673 00535953 5f6b696c 6c005359 atfs.SYS_kill.SY + 0x00009090 535f7365 74656e76 0073686f 72742069 S_setenv.short i + 0x000090a0 6e740053 59535f64 75703200 74696d65 nt.SYS_dup2.time + 0x000090b0 73706563 00535953 5f73796e 63006471 spec.SYS_sync.dq + 0x000090c0 5f717565 75655f73 0064715f 71756575 _queue_s.dq_queu + 0x000090d0 655f7400 5359535f 73657474 696d656f e_t.SYS_settimeo + 0x000090e0 66646179 00535953 5f6d715f 73657461 fday.SYS_mq_seta + 0x000090f0 74747200 5359535f 65786563 76650053 ttr.SYS_execve.S + 0x00009100 59535f75 705f666f 726b005f 75696e74 YS_up_fork._uint + 0x00009110 385f7400 68656164 00535953 5f676574 8_t.head.SYS_get + 0x00009120 686f7374 6e616d65 0075696e 7433325f hostname.uint32_ + 0x00009130 74005359 535f6e78 73636865 645f6765 t.SYS_nxsched_ge + 0x00009140 745f7374 61636b69 6e666f00 2f557365 t_stackinfo./Use + 0x00009150 72732f4c 75707079 2f6f7836 342f6e75 rs/Luppy/ox64/nu + 0x00009160 7474782f 73797363 616c6c00 7061726d ttx/syscall.parm + 0x00009170 31007061 726d3200 7061726d 33006368 1.parm2.parm3.ch + 0x00009180 61720053 59535f67 65745f65 6e766972 ar.SYS_get_envir + 0x00009190 6f6e5f70 74720053 59535f70 74687265 on_ptr.SYS_pthre + 0x000091a0 61645f6d 75746578 5f74696d 65646c6f ad_mutex_timedlo + 0x000091b0 636b0053 59535f77 61697470 69640053 ck.SYS_waitpid.S + 0x000091c0 59535f74 696d6500 5359535f 67657474 YS_time.SYS_gett + 0x000091d0 696d656f 66646179 00535953 5f636c65 imeofday.SYS_cle + 0x000091e0 6172656e 76005359 535f7074 68726561 arenv.SYS_pthrea + 0x000091f0 645f6d75 7465785f 696e6974 00535953 d_mutex_init.SYS + 0x00009200 5f756d6f 756e7432 0070726f 78696573 _umount2.proxies + 0x00009210 2f50524f 58595f6e 7873656d 5f636c6f /PROXY_nxsem_clo + 0x00009220 636b7761 69742e63 00535953 5f736368 ckwait.c.SYS_sch + 0x00009230 65645f73 65747061 72616d00 5359535f ed_setparam.SYS_ + 0x00009240 73636865 645f7272 5f676574 5f696e74 sched_rr_get_int + 0x00009250 65727661 6c005359 535f6d75 6e6d6170 erval.SYS_munmap + 0x00009260 00535953 5f6c7374 61740053 59535f63 .SYS_lstat.SYS_c + 0x00009270 6c6f636b 5f676574 74696d65 00535953 lock_gettime.SYS + 0x00009280 5f73656e 6466696c 65005359 535f7074 _sendfile.SYS_pt + 0x00009290 68726561 645f636f 6e645f63 6c6f636b hread_cond_clock + 0x000092a0 77616974 00535953 5f6d715f 6f70656e wait.SYS_mq_open + 0x000092b0 00626c69 6e6b0053 59535f6f 70656e00 .blink.SYS_open. + 0x000092c0 5359535f 73696771 75657565 00535953 SYS_sigqueue.SYS + 0x000092d0 5f707468 72656164 5f6d7574 65785f63 _pthread_mutex_c + 0x000092e0 6f6e7369 7374656e 74005359 535f7363 onsistent.SYS_sc + 0x000092f0 6865645f 6c6f636b 636f756e 74005359 hed_lockcount.SY + 0x00009300 535f7067 616c6c6f 63005359 535f7074 S_pgalloc.SYS_pt + 0x00009310 68726561 645f7369 676d6173 6b00474e hread_sigmask.GN + 0x00009320 55204331 37203130 2e322e30 202d6d63 U C17 10.2.0 -mc + 0x00009330 6d6f6465 6c3d6d65 64616e79 202d6d61 model=medany -ma + 0x00009340 7263683d 72763634 696d6166 6463202d rch=rv64imafdc - + 0x00009350 6d616269 3d6c7036 3464202d 6d617263 mabi=lp64d -marc + 0x00009360 683d7276 3634696d 61666463 202d6720 h=rv64imafdc -g + 0x00009370 2d4f7320 2d666e6f 2d636f6d 6d6f6e20 -Os -fno-common + 0x00009380 2d666e6f 2d737472 6963742d 616c6961 -fno-strict-alia + 0x00009390 73696e67 202d666f 6d69742d 6672616d sing -fomit-fram + 0x000093a0 652d706f 696e7465 72202d66 66756e63 e-pointer -ffunc + 0x000093b0 74696f6e 2d736563 74696f6e 73202d66 tion-sections -f + 0x000093c0 64617461 2d736563 74696f6e 73007569 data-sections.ui + 0x000093d0 6e74385f 7400666c 61677300 5359535f nt8_t.flags.SYS_ + 0x000093e0 67657474 69640064 715f656e 7472795f gettid.dq_entry_ + 0x000093f0 73006471 5f656e74 72795f74 00535953 s.dq_entry_t.SYS + 0x00009400 5f6c6368 6d6f6400 5359535f 66747275 _lchmod.SYS_ftru + 0x00009410 6e636174 65005359 535f696f 63746c00 ncate.SYS_ioctl. + 0x00009420 73656d5f 73007365 6d5f7400 5359535f sem_s.sem_t.SYS_ + 0x00009430 73636865 645f756e 6c6f636b 00535953 sched_unlock.SYS + 0x00009440 5f707468 72656164 5f6a6f69 6e00636c _pthread_join.cl + 0x00009450 6f636b69 645f7400 5359535f 73746174 ockid_t.SYS_stat + 0x00009460 005f696e 7431365f 74005359 535f6765 ._int16_t.SYS_ge + 0x00009470 74656e76 00535953 5f676574 72616e64 tenv.SYS_getrand + 0x00009480 6f6d0053 59535f73 63686564 5f676574 om.SYS_sched_get + 0x00009490 73636865 64756c65 72005359 535f7072 scheduler.SYS_pr + 0x000094a0 63746c00 5359535f 756e6c69 6e6b0053 ctl.SYS_unlink.S + 0x000094b0 59535f70 74687265 61645f63 6f6e645f YS_pthread_cond_ + 0x000094c0 77616974 00535953 5f706f6c 6c005359 wait.SYS_poll.SY + 0x000094d0 535f7467 6b696c6c 00535953 5f707468 S_tgkill.SYS_pth + 0x000094e0 72656164 5f6d7574 65785f74 72796c6f read_mutex_trylo + 0x000094f0 636b0053 59535f74 696d6572 5f637265 ck.SYS_timer_cre + 0x00009500 61746500 5359535f 70746872 6561645f ate.SYS_pthread_ + 0x00009510 62617272 6965725f 77616974 0075696e barrier_wait.uin + 0x00009520 74707472 5f740053 59535f66 73746174 tptr_t.SYS_fstat + 0x00009530 00535953 5f707468 72656164 5f676574 .SYS_pthread_get + 0x00009540 73636865 64706172 616d0053 59535f73 schedparam.SYS_s + 0x00009550 63686564 5f796965 6c640053 59535f70 ched_yield.SYS_p + 0x00009560 7574656e 76005359 535f6e78 73656d5f utenv.SYS_nxsem_ + 0x00009570 77616974 00535953 5f70706f 6c6c0053 wait.SYS_ppoll.S + 0x00009580 59535f66 7574696d 656e7300 5359535f YS_futimens.SYS_ + 0x00009590 6d715f74 696d6564 73656e64 00535953 mq_timedsend.SYS + 0x000095a0 5f707468 72656164 5f646574 61636800 _pthread_detach. + 0x000095b0 5359535f 636c6f63 6b005359 535f6570 SYS_clock.SYS_ep + 0x000095c0 6f6c6c5f 63746c00 5359535f 73656c65 oll_ctl.SYS_sele + 0x000095d0 6374006c 6f6e6720 6c6f6e67 20756e73 ct.long long uns + 0x000095e0 69676e65 6420696e 74005359 535f7074 igned int.SYS_pt + 0x000095f0 68726561 645f6d75 7465785f 64657374 hread_mutex_dest + 0x00009600 726f7900 5359535f 70726561 64005359 roy.SYS_pread.SY + 0x00009610 535f7369 67776169 74696e66 6f005359 S_sigwaitinfo.SY + 0x00009620 535f706f 7369785f 73706177 6e005359 S_posix_spawn.SY + 0x00009630 535f7363 6865645f 67657470 6172616d S_sched_getparam + 0x00009640 00535953 5f707468 72656164 5f636f6e .SYS_pthread_con + 0x00009650 645f7369 676e616c 00535953 5f66636e d_signal.SYS_fcn + 0x00009660 746c0069 6e743136 5f740053 59535f72 tl.int16_t.SYS_r + 0x00009670 65616400 7369676e 65642063 68617200 ead.signed char. + 0x00009680 5359535f 6e616e6f 736c6565 70005359 SYS_nanosleep.SY + 0x00009690 535f6368 6f776e00 5359535f 73696774 S_chown.SYS_sigt + 0x000096a0 696d6564 77616974 00535953 5f636c6f imedwait.SYS_clo + 0x000096b0 73650053 59535f70 74687265 61645f73 se.SYS_pthread_s + 0x000096c0 65747363 68656470 6172616d 00535953 etschedparam.SYS + 0x000096d0 5f6e7873 656d5f63 6c6f636b 77616974 _nxsem_clockwait + 0x000096e0 00535953 5f6c7365 656b006c 6f6e6720 .SYS_lseek.long + 0x000096f0 696e7400 5359535f 626f6172 6463746c int.SYS_boardctl + 0x00009700 00776169 746c6973 74005359 535f7074 .waitlist.SYS_pt + 0x00009710 68726561 645f7365 74736368 65647072 hread_setschedpr + 0x00009720 696f0053 59535f6d 715f6765 74617474 io.SYS_mq_getatt + 0x00009730 72005359 535f6e78 5f707468 72656164 r.SYS_nx_pthread + 0x00009740 5f637265 61746500 5359535f 7369676e _create.SYS_sign + 0x00009750 616c0053 59535f73 69677072 6f636d61 al.SYS_sigprocma + 0x00009760 736b0053 59535f70 74687265 61645f63 sk.SYS_pthread_c + 0x00009770 616e6365 6c005359 535f7365 74697469 ancel.SYS_setiti + 0x00009780 6d657200 5359535f 6d6b6469 72005359 mer.SYS_mkdir.SY + 0x00009790 535f6d6d 61700053 59535f75 6e736574 S_mmap.SYS_unset + 0x000097a0 656e7600 5359535f 74696d65 725f6765 env.SYS_timer_ge + 0x000097b0 7474696d 65005359 535f6663 686f776e ttime.SYS_fchown + 0x000097c0 00535953 5f6d715f 72656365 69766500 .SYS_mq_receive. + 0x000097d0 5359535f 636c6f63 6b5f7365 7474696d SYS_clock_settim + 0x000097e0 65005359 535f7772 69746500 5359535f e.SYS_write.SYS_ + 0x000097f0 67657470 69640053 59535f66 73796e63 getpid.SYS_fsync + 0x00009800 00535953 5f736574 686f7374 6e616d65 .SYS_sethostname + 0x00009810 00535953 5f757469 6d656e73 00756e73 .SYS_utimens.uns + 0x00009820 69676e65 6420696e 74005359 535f7369 igned int.SYS_si + 0x00009830 67616374 696f6e00 5359535f 6d715f63 gaction.SYS_mq_c + 0x00009840 6c6f7365 006c6f6e 6720756e 7369676e lose.long unsign + 0x00009850 65642069 6e740066 6c696e6b 00535953 ed int.flink.SYS + 0x00009860 5f74696d 65725f73 65747469 6d650053 _timer_settime.S + 0x00009870 59535f6e 7873656d 5f646573 74726f79 YS_nxsem_destroy + 0x00009880 00535953 5f6d715f 756e6c69 6e6b0073 .SYS_mq_unlink.s + 0x00009890 686f7274 20756e73 69676e65 6420696e hort unsigned in + 0x000098a0 74005359 535f726d 64697200 5359535f t.SYS_rmdir.SYS_ + 0x000098b0 74696d65 725f6765 746f7665 7272756e timer_getoverrun + 0x000098c0 00535953 5f6d6f75 6e740073 656d636f .SYS_mount.semco + 0x000098d0 756e7400 70726f78 6965732f 50524f58 unt.proxies/PROX + 0x000098e0 595f6e78 73656d5f 64657374 726f792e Y_nxsem_destroy. + 0x000098f0 63006e78 73656d5f 64657374 726f7900 c.nxsem_destroy. + 0x00009900 5359535f 63686d6f 64005359 535f6e78 SYS_chmod.SYS_nx + 0x00009910 73656d5f 74696d65 64776169 74005359 sem_timedwait.SY + 0x00009920 535f6e78 5f767379 736c6f67 00535953 S_nx_vsyslog.SYS + 0x00009930 5f707365 6c656374 00535953 5f6d715f _pselect.SYS_mq_ + 0x00009940 6e6f7469 66790053 59535f73 74617466 notify.SYS_statf + 0x00009950 73005f73 697a655f 74005359 535f6765 s._size_t.SYS_ge + 0x00009960 74697469 6d657200 5359535f 73636865 titimer.SYS_sche + 0x00009970 645f7365 74736368 6564756c 65720053 d_setscheduler.S + 0x00009980 59535f70 74687265 61645f6d 75746578 YS_pthread_mutex + 0x00009990 5f756e6c 6f636b00 5359535f 6c757469 _unlock.SYS_luti + 0x000099a0 6d656e73 00535953 5f6e7873 656d5f74 mens.SYS_nxsem_t + 0x000099b0 72797761 69740053 59535f74 696d6572 rywait.SYS_timer + 0x000099c0 5f64656c 65746500 5359535f 73696773 _delete.SYS_sigs + 0x000099d0 75737065 6e640074 61696c00 5359535f uspend.tail.SYS_ + 0x000099e0 5f657869 74005359 535f6570 6f6c6c5f _exit.SYS_epoll_ + 0x000099f0 77616974 00737973 5f63616c 6c310053 wait.sys_call1.S + 0x00009a00 59535f73 63686564 5f6c6f63 6b005359 YS_sched_lock.SY + 0x00009a10 535f636c 6f636b5f 6e616e6f 736c6565 S_clock_nanoslee + 0x00009a20 70005359 535f7379 73696e66 6f005359 p.SYS_sysinfo.SY + 0x00009a30 535f7074 68726561 645f636f 6e645f62 S_pthread_cond_b + 0x00009a40 726f6164 63617374 00535953 5f707772 roadcast.SYS_pwr + 0x00009a50 69746500 5359535f 6d715f73 656e6400 ite.SYS_mq_send. + 0x00009a60 5359535f 5f617373 65727400 5359535f SYS__assert.SYS_ + 0x00009a70 6663686d 6f640053 59535f67 65747469 fchmod.SYS_getti + 0x00009a80 64005359 535f7265 6e616d65 00535953 d.SYS_rename.SYS + 0x00009a90 5f647570 00535953 5f6e7873 656d5f70 _dup.SYS_nxsem_p + 0x00009aa0 6f737400 5359535f 6d715f74 696d6564 ost.SYS_mq_timed + 0x00009ab0 72656365 69766500 5359535f 6c63686f receive.SYS_lcho + 0x00009ac0 776e0053 59535f6e 785f7074 68726561 wn.SYS_nx_pthrea + 0x00009ad0 645f6578 69740075 6e736967 6e656420 d_exit.unsigned + 0x00009ae0 63686172 00535953 5f736967 70656e64 char.SYS_sigpend + 0x00009af0 696e6700 5359535f 66737461 74667300 ing.SYS_fstatfs. + 0x00009b00 5359535f 6b696c6c 00535953 5f736574 SYS_kill.SYS_set + 0x00009b10 656e7600 73686f72 7420696e 74005359 env.short int.SY + 0x00009b20 535f6475 70320053 59535f73 796e6300 S_dup2.SYS_sync. + 0x00009b30 64715f71 75657565 5f730064 715f7175 dq_queue_s.dq_qu + 0x00009b40 6575655f 74005359 535f7365 7474696d eue_t.SYS_settim + 0x00009b50 656f6664 61790053 59535f6d 715f7365 eofday.SYS_mq_se + 0x00009b60 74617474 72005359 535f6578 65637665 tattr.SYS_execve + 0x00009b70 00535953 5f75705f 666f726b 005f7569 .SYS_up_fork._ui + 0x00009b80 6e74385f 74006865 61640053 59535f67 nt8_t.head.SYS_g + 0x00009b90 6574686f 73746e61 6d650053 59535f6e ethostname.SYS_n + 0x00009ba0 78736368 65645f67 65745f73 7461636b xsched_get_stack + 0x00009bb0 696e666f 002f5573 6572732f 4c757070 info./Users/Lupp + 0x00009bc0 792f6f78 36342f6e 75747478 2f737973 y/ox64/nuttx/sys + 0x00009bd0 63616c6c 00706172 6d310063 68617200 call.parm1.char. + 0x00009be0 5359535f 6765745f 656e7669 726f6e5f SYS_get_environ_ + 0x00009bf0 70747200 5359535f 6d617873 79736361 ptr.SYS_maxsysca + 0x00009c00 6c6c0053 59535f70 74687265 61645f6d ll.SYS_pthread_m + 0x00009c10 75746578 5f74696d 65646c6f 636b0053 utex_timedlock.S + 0x00009c20 59535f77 61697470 69640053 59535f74 YS_waitpid.SYS_t + 0x00009c30 696d6500 5359535f 67657474 696d656f ime.SYS_gettimeo + 0x00009c40 66646179 00535953 5f636c65 6172656e fday.SYS_clearen + 0x00009c50 76005359 535f7074 68726561 645f6d75 v.SYS_pthread_mu + 0x00009c60 7465785f 696e6974 00535953 5f756d6f tex_init.SYS_umo + 0x00009c70 756e7432 00535953 5f736368 65645f73 unt2.SYS_sched_s + 0x00009c80 65747061 72616d00 5359535f 73636865 etparam.SYS_sche + 0x00009c90 645f7272 5f676574 5f696e74 65727661 d_rr_get_interva + 0x00009ca0 6c005359 535f6d75 6e6d6170 00535953 l.SYS_munmap.SYS + 0x00009cb0 5f6c7374 61740053 59535f63 6c6f636b _lstat.SYS_clock + 0x00009cc0 5f676574 74696d65 00535953 5f73656e _gettime.SYS_sen + 0x00009cd0 6466696c 65005359 535f7074 68726561 dfile.SYS_pthrea + 0x00009ce0 645f636f 6e645f63 6c6f636b 77616974 d_cond_clockwait + 0x00009cf0 00535953 5f6d715f 6f70656e 00626c69 .SYS_mq_open.bli + 0x00009d00 6e6b0053 59535f6f 70656e00 5359535f nk.SYS_open.SYS_ + 0x00009d10 73696771 75657565 00535953 5f707468 sigqueue.SYS_pth + 0x00009d20 72656164 5f6d7574 65785f63 6f6e7369 read_mutex_consi + 0x00009d30 7374656e 74005359 535f7363 6865645f stent.SYS_sched_ + 0x00009d40 6c6f636b 636f756e 74005359 535f7067 lockcount.SYS_pg + 0x00009d50 616c6c6f 63005359 535f7074 68726561 alloc.SYS_pthrea + 0x00009d60 645f7369 676d6173 6b00474e 55204331 d_sigmask.GNU C1 + 0x00009d70 37203130 2e322e30 202d6d63 6d6f6465 7 10.2.0 -mcmode + 0x00009d80 6c3d6d65 64616e79 202d6d61 7263683d l=medany -march= + 0x00009d90 72763634 696d6166 6463202d 6d616269 rv64imafdc -mabi + 0x00009da0 3d6c7036 3464202d 6d617263 683d7276 =lp64d -march=rv + 0x00009db0 3634696d 61666463 202d6720 2d4f7320 64imafdc -g -Os + 0x00009dc0 2d666e6f 2d636f6d 6d6f6e20 2d666e6f -fno-common -fno + 0x00009dd0 2d737472 6963742d 616c6961 73696e67 -strict-aliasing + 0x00009de0 202d666f 6d69742d 6672616d 652d706f -fomit-frame-po + 0x00009df0 696e7465 72202d66 66756e63 74696f6e inter -ffunction + 0x00009e00 2d736563 74696f6e 73202d66 64617461 -sections -fdata + 0x00009e10 2d736563 74696f6e 73007569 6e74385f -sections.uint8_ + 0x00009e20 7400666c 61677300 5359535f 65706f6c t.flags.SYS_epol + 0x00009e30 6c5f6372 65617465 31006471 5f656e74 l_create1.dq_ent + 0x00009e40 72795f73 0064715f 656e7472 795f7400 ry_s.dq_entry_t. + 0x00009e50 5359535f 6c63686d 6f640053 59535f66 SYS_lchmod.SYS_f + 0x00009e60 7472756e 63617465 00535953 5f696f63 truncate.SYS_ioc + 0x00009e70 746c0073 656d5f73 0073656d 5f740053 tl.sem_s.sem_t.S + 0x00009e80 59535f73 63686564 5f756e6c 6f636b00 YS_sched_unlock. + 0x00009e90 5359535f 70746872 6561645f 6a6f696e SYS_pthread_join + 0x00009ea0 00535953 5f737461 74005f69 6e743136 .SYS_stat._int16 + 0x00009eb0 5f740053 59535f67 6574656e 76005359 _t.SYS_getenv.SY + 0x00009ec0 535f6765 7472616e 646f6d00 5359535f S_getrandom.SYS_ + 0x00009ed0 73636865 645f6765 74736368 6564756c sched_getschedul + 0x00009ee0 65720053 59535f70 7263746c 00535953 er.SYS_prctl.SYS + 0x00009ef0 5f756e6c 696e6b00 5359535f 70746872 _unlink.SYS_pthr + 0x00009f00 6561645f 636f6e64 5f776169 74005359 ead_cond_wait.SY + 0x00009f10 535f706f 6c6c0053 59535f74 676b696c S_poll.SYS_tgkil + 0x00009f20 6c005359 535f7074 68726561 645f6d75 l.SYS_pthread_mu + 0x00009f30 7465785f 7472796c 6f636b00 5359535f tex_trylock.SYS_ + 0x00009f40 74696d65 725f6372 65617465 00535953 timer_create.SYS + 0x00009f50 5f707468 72656164 5f626172 72696572 _pthread_barrier + 0x00009f60 5f776169 74007569 6e747074 725f7400 _wait.uintptr_t. + 0x00009f70 5359535f 66737461 74005359 535f7074 SYS_fstat.SYS_pt + 0x00009f80 68726561 645f6765 74736368 65647061 hread_getschedpa + 0x00009f90 72616d00 5359535f 73636865 645f7969 ram.SYS_sched_yi + 0x00009fa0 656c6400 5359535f 70757465 6e760053 eld.SYS_putenv.S + 0x00009fb0 59535f6e 7873656d 5f776169 74005359 YS_nxsem_wait.SY + 0x00009fc0 535f7070 6f6c6c00 5359535f 66757469 S_ppoll.SYS_futi + 0x00009fd0 6d656e73 00535953 5f6d715f 74696d65 mens.SYS_mq_time + 0x00009fe0 6473656e 64005359 535f7074 68726561 dsend.SYS_pthrea + 0x00009ff0 645f6465 74616368 00535953 5f636c6f d_detach.SYS_clo + 0x0000a000 636b0053 59535f65 706f6c6c 5f63746c ck.SYS_epoll_ctl + 0x0000a010 00535953 5f73656c 65637400 6c6f6e67 .SYS_select.long + 0x0000a020 206c6f6e 6720756e 7369676e 65642069 long unsigned i + 0x0000a030 6e740053 59535f70 74687265 61645f6d nt.SYS_pthread_m + 0x0000a040 75746578 5f646573 74726f79 00535953 utex_destroy.SYS + 0x0000a050 5f707265 61640053 59535f73 69677761 _pread.SYS_sigwa + 0x0000a060 6974696e 666f0053 59535f70 6f736978 itinfo.SYS_posix + 0x0000a070 5f737061 776e0053 59535f73 63686564 _spawn.SYS_sched + 0x0000a080 5f676574 70617261 6d005359 535f7074 _getparam.SYS_pt + 0x0000a090 68726561 645f636f 6e645f73 69676e61 hread_cond_signa + 0x0000a0a0 6c005359 535f6663 6e746c00 696e7431 l.SYS_fcntl.int1 + 0x0000a0b0 365f7400 5359535f 72656164 00736967 6_t.SYS_read.sig + 0x0000a0c0 6e656420 63686172 00535953 5f6e616e ned char.SYS_nan + 0x0000a0d0 6f736c65 65700053 59535f63 686f776e osleep.SYS_chown + 0x0000a0e0 00535953 5f736967 74696d65 64776169 .SYS_sigtimedwai + 0x0000a0f0 74005359 535f636c 6f736500 5359535f t.SYS_close.SYS_ + 0x0000a100 70746872 6561645f 73657473 63686564 pthread_setsched + 0x0000a110 70617261 6d005359 535f6e78 73656d5f param.SYS_nxsem_ + 0x0000a120 636c6f63 6b776169 74005359 535f6c73 clockwait.SYS_ls + 0x0000a130 65656b00 6c6f6e67 20696e74 00535953 eek.long int.SYS + 0x0000a140 5f626f61 72646374 6c007761 69746c69 _boardctl.waitli + 0x0000a150 73740053 59535f70 74687265 61645f73 st.SYS_pthread_s + 0x0000a160 65747363 68656470 72696f00 5359535f etschedprio.SYS_ + 0x0000a170 6d715f67 65746174 74720053 59535f6e mq_getattr.SYS_n + 0x0000a180 785f7074 68726561 645f6372 65617465 x_pthread_create + 0x0000a190 00535953 5f736967 6e616c00 5359535f .SYS_signal.SYS_ + 0x0000a1a0 73696770 726f636d 61736b00 5359535f sigprocmask.SYS_ + 0x0000a1b0 70746872 6561645f 63616e63 656c0053 pthread_cancel.S + 0x0000a1c0 59535f73 65746974 696d6572 00535953 YS_setitimer.SYS + 0x0000a1d0 5f6d6b64 69720053 59535f6d 6d617000 _mkdir.SYS_mmap. + 0x0000a1e0 5359535f 756e7365 74656e76 00535953 SYS_unsetenv.SYS + 0x0000a1f0 5f74696d 65725f67 65747469 6d650053 _timer_gettime.S + 0x0000a200 59535f66 63686f77 6e005359 535f6d71 YS_fchown.SYS_mq + 0x0000a210 5f726563 65697665 00535953 5f636c6f _receive.SYS_clo + 0x0000a220 636b5f73 65747469 6d650053 59535f77 ck_settime.SYS_w + 0x0000a230 72697465 00535953 5f676574 70696400 rite.SYS_getpid. + 0x0000a240 5359535f 6673796e 63005359 535f7365 SYS_fsync.SYS_se + 0x0000a250 74686f73 746e616d 65005359 535f7574 thostname.SYS_ut + 0x0000a260 696d656e 7300756e 7369676e 65642069 imens.unsigned i + 0x0000a270 6e740053 59535f73 69676163 74696f6e nt.SYS_sigaction + 0x0000a280 00535953 5f6d715f 636c6f73 65006c6f .SYS_mq_close.lo + 0x0000a290 6e672075 6e736967 6e656420 696e7400 ng unsigned int. + 0x0000a2a0 666c696e 6b005359 535f7469 6d65725f flink.SYS_timer_ + 0x0000a2b0 73657474 696d6500 5359535f 6e787365 settime.SYS_nxse + 0x0000a2c0 6d5f6465 7374726f 79005359 535f6d71 m_destroy.SYS_mq + 0x0000a2d0 5f756e6c 696e6b00 73686f72 7420756e _unlink.short un + 0x0000a2e0 7369676e 65642069 6e740053 59535f72 signed int.SYS_r + 0x0000a2f0 6d646972 00535953 5f74696d 65725f67 mdir.SYS_timer_g + 0x0000a300 65746f76 65727275 6e005359 535f6d6f etoverrun.SYS_mo + 0x0000a310 756e7400 73656d63 6f756e74 00535953 unt.semcount.SYS + 0x0000a320 5f6d6178 73797363 616c6c00 5359535f _maxsyscall.SYS_ + 0x0000a330 63686d6f 64005359 535f6e78 73656d5f chmod.SYS_nxsem_ + 0x0000a340 74696d65 64776169 74005359 535f6e78 timedwait.SYS_nx + 0x0000a350 5f767379 736c6f67 00535953 5f707365 _vsyslog.SYS_pse + 0x0000a360 6c656374 00535953 5f6d715f 6e6f7469 lect.SYS_mq_noti + 0x0000a370 66790053 59535f73 74617466 73005f73 fy.SYS_statfs._s + 0x0000a380 697a655f 74005359 535f6765 74697469 ize_t.SYS_getiti + 0x0000a390 6d657200 5359535f 73636865 645f7365 mer.SYS_sched_se + 0x0000a3a0 74736368 6564756c 65720053 59535f70 tscheduler.SYS_p + 0x0000a3b0 74687265 61645f6d 75746578 5f756e6c thread_mutex_unl + 0x0000a3c0 6f636b00 5359535f 6c757469 6d656e73 ock.SYS_lutimens + 0x0000a3d0 00535953 5f6e7873 656d5f74 72797761 .SYS_nxsem_trywa + 0x0000a3e0 69740053 59535f74 696d6572 5f64656c it.SYS_timer_del + 0x0000a3f0 65746500 5359535f 73696773 75737065 ete.SYS_sigsuspe + 0x0000a400 6e640074 61696c00 5359535f 5f657869 nd.tail.SYS__exi + 0x0000a410 74005359 535f6570 6f6c6c5f 77616974 t.SYS_epoll_wait + 0x0000a420 00737973 5f63616c 6c310053 59535f73 .sys_call1.SYS_s + 0x0000a430 63686564 5f6c6f63 6b005359 535f636c ched_lock.SYS_cl + 0x0000a440 6f636b5f 6e616e6f 736c6565 70005359 ock_nanosleep.SY + 0x0000a450 535f7379 73696e66 6f005359 535f7074 S_sysinfo.SYS_pt + 0x0000a460 68726561 645f636f 6e645f62 726f6164 hread_cond_broad + 0x0000a470 63617374 00535953 5f707772 69746500 cast.SYS_pwrite. + 0x0000a480 5359535f 6d715f73 656e6400 5359535f SYS_mq_send.SYS_ + 0x0000a490 5f617373 65727400 5359535f 6663686d _assert.SYS_fchm + 0x0000a4a0 6f640053 59535f67 65747469 64006e78 od.SYS_gettid.nx + 0x0000a4b0 73656d5f 706f7374 00535953 5f72656e sem_post.SYS_ren + 0x0000a4c0 616d6500 5359535f 64757000 5359535f ame.SYS_dup.SYS_ + 0x0000a4d0 6e787365 6d5f706f 73740053 59535f6d nxsem_post.SYS_m + 0x0000a4e0 715f7469 6d656472 65636569 76650053 q_timedreceive.S + 0x0000a4f0 59535f6c 63686f77 6e005359 535f6e78 YS_lchown.SYS_nx + 0x0000a500 5f707468 72656164 5f657869 7400756e _pthread_exit.un + 0x0000a510 7369676e 65642063 68617200 5359535f signed char.SYS_ + 0x0000a520 73696770 656e6469 6e670053 59535f66 sigpending.SYS_f + 0x0000a530 73746174 66730053 59535f6b 696c6c00 statfs.SYS_kill. + 0x0000a540 5359535f 73657465 6e760073 686f7274 SYS_setenv.short + 0x0000a550 20696e74 00535953 5f647570 32005359 int.SYS_dup2.SY + 0x0000a560 535f7379 6e630064 715f7175 6575655f S_sync.dq_queue_ + 0x0000a570 73006471 5f717565 75655f74 00535953 s.dq_queue_t.SYS + 0x0000a580 5f736574 74696d65 6f666461 79005359 _settimeofday.SY + 0x0000a590 535f6d71 5f736574 61747472 00535953 S_mq_setattr.SYS + 0x0000a5a0 5f657865 63766500 5359535f 75705f66 _execve.SYS_up_f + 0x0000a5b0 6f726b00 5f75696e 74385f74 00686561 ork._uint8_t.hea + 0x0000a5c0 64005359 535f6765 74686f73 746e616d d.SYS_gethostnam + 0x0000a5d0 65005359 535f6e78 73636865 645f6765 e.SYS_nxsched_ge + 0x0000a5e0 745f7374 61636b69 6e666f00 2f557365 t_stackinfo./Use + 0x0000a5f0 72732f4c 75707079 2f6f7836 342f6e75 rs/Luppy/ox64/nu + 0x0000a600 7474782f 73797363 616c6c00 7061726d ttx/syscall.parm + 0x0000a610 31006368 61720053 59535f67 65745f65 1.char.SYS_get_e + 0x0000a620 6e766972 6f6e5f70 74720053 59535f70 nviron_ptr.SYS_p + 0x0000a630 74687265 61645f6d 75746578 5f74696d thread_mutex_tim + 0x0000a640 65646c6f 636b0053 59535f77 61697470 edlock.SYS_waitp + 0x0000a650 69640053 59535f74 696d6500 5359535f id.SYS_time.SYS_ + 0x0000a660 67657474 696d656f 66646179 00535953 gettimeofday.SYS + 0x0000a670 5f636c65 6172656e 76005359 535f7074 _clearenv.SYS_pt + 0x0000a680 68726561 645f6d75 7465785f 696e6974 hread_mutex_init + 0x0000a690 00535953 5f756d6f 756e7432 00535953 .SYS_umount2.SYS + 0x0000a6a0 5f736368 65645f73 65747061 72616d00 _sched_setparam. + 0x0000a6b0 5359535f 73636865 645f7272 5f676574 SYS_sched_rr_get + 0x0000a6c0 5f696e74 65727661 6c005359 535f6d75 _interval.SYS_mu + 0x0000a6d0 6e6d6170 00535953 5f6c7374 61740053 nmap.SYS_lstat.S + 0x0000a6e0 59535f63 6c6f636b 5f676574 74696d65 YS_clock_gettime + 0x0000a6f0 0070726f 78696573 2f50524f 58595f6e .proxies/PROXY_n + 0x0000a700 7873656d 5f706f73 742e6300 5359535f xsem_post.c.SYS_ + 0x0000a710 73656e64 66696c65 00535953 5f707468 sendfile.SYS_pth + 0x0000a720 72656164 5f636f6e 645f636c 6f636b77 read_cond_clockw + 0x0000a730 61697400 5359535f 6d715f6f 70656e00 ait.SYS_mq_open. + 0x0000a740 626c696e 6b005359 535f6f70 656e0053 blink.SYS_open.S + 0x0000a750 59535f73 69677175 65756500 5359535f YS_sigqueue.SYS_ + 0x0000a760 70746872 6561645f 6d757465 785f636f pthread_mutex_co + 0x0000a770 6e736973 74656e74 00535953 5f736368 nsistent.SYS_sch + 0x0000a780 65645f6c 6f636b63 6f756e74 00535953 ed_lockcount.SYS + 0x0000a790 5f706761 6c6c6f63 00535953 5f707468 _pgalloc.SYS_pth + 0x0000a7a0 72656164 5f736967 6d61736b 00474e55 read_sigmask.GNU + 0x0000a7b0 20433137 2031302e 322e3020 2d6d636d C17 10.2.0 -mcm + 0x0000a7c0 6f64656c 3d6d6564 616e7920 2d6d6172 odel=medany -mar + 0x0000a7d0 63683d72 76363469 6d616664 63202d6d ch=rv64imafdc -m + 0x0000a7e0 6162693d 6c703634 64202d6d 61726368 abi=lp64d -march + 0x0000a7f0 3d727636 34696d61 66646320 2d67202d =rv64imafdc -g - + 0x0000a800 4f73202d 666e6f2d 636f6d6d 6f6e202d Os -fno-common - + 0x0000a810 666e6f2d 73747269 63742d61 6c696173 fno-strict-alias + 0x0000a820 696e6720 2d666f6d 69742d66 72616d65 ing -fomit-frame + 0x0000a830 2d706f69 6e746572 202d6666 756e6374 -pointer -ffunct + 0x0000a840 696f6e2d 73656374 696f6e73 202d6664 ion-sections -fd + 0x0000a850 6174612d 73656374 696f6e73 0075696e ata-sections.uin + 0x0000a860 74385f74 00666c61 67730053 59535f65 t8_t.flags.SYS_e + 0x0000a870 706f6c6c 5f637265 61746531 0064715f poll_create1.dq_ + 0x0000a880 656e7472 795f7300 64715f65 6e747279 entry_s.dq_entry + 0x0000a890 5f740053 59535f6c 63686d6f 64005359 _t.SYS_lchmod.SY + 0x0000a8a0 535f6674 72756e63 61746500 5359535f S_ftruncate.SYS_ + 0x0000a8b0 696f6374 6c007365 6d5f7300 73656d5f ioctl.sem_s.sem_ + 0x0000a8c0 74005359 535f7363 6865645f 756e6c6f t.SYS_sched_unlo + 0x0000a8d0 636b0053 59535f70 74687265 61645f6a ck.SYS_pthread_j + 0x0000a8e0 6f696e00 5359535f 73746174 005f696e oin.SYS_stat._in + 0x0000a8f0 7431365f 74005359 535f6765 74656e76 t16_t.SYS_getenv + 0x0000a900 00535953 5f676574 72616e64 6f6d0053 .SYS_getrandom.S + 0x0000a910 59535f73 63686564 5f676574 73636865 YS_sched_getsche + 0x0000a920 64756c65 72005359 535f7072 63746c00 duler.SYS_prctl. + 0x0000a930 5359535f 756e6c69 6e6b0053 59535f70 SYS_unlink.SYS_p + 0x0000a940 74687265 61645f63 6f6e645f 77616974 thread_cond_wait + 0x0000a950 00535953 5f706f6c 6c005359 535f7467 .SYS_poll.SYS_tg + 0x0000a960 6b696c6c 00535953 5f707468 72656164 kill.SYS_pthread + 0x0000a970 5f6d7574 65785f74 72796c6f 636b0053 _mutex_trylock.S + 0x0000a980 59535f74 696d6572 5f637265 61746500 YS_timer_create. + 0x0000a990 5359535f 70746872 6561645f 62617272 SYS_pthread_barr + 0x0000a9a0 6965725f 77616974 0075696e 74707472 ier_wait.uintptr + 0x0000a9b0 5f740053 59535f66 73746174 00535953 _t.SYS_fstat.SYS + 0x0000a9c0 5f707468 72656164 5f676574 73636865 _pthread_getsche + 0x0000a9d0 64706172 616d0053 59535f73 63686564 dparam.SYS_sched + 0x0000a9e0 5f796965 6c640053 59535f70 7574656e _yield.SYS_puten + 0x0000a9f0 76005359 535f6e78 73656d5f 77616974 v.SYS_nxsem_wait + 0x0000aa00 00535953 5f70706f 6c6c0053 59535f66 .SYS_ppoll.SYS_f + 0x0000aa10 7574696d 656e7300 5359535f 6d715f74 utimens.SYS_mq_t + 0x0000aa20 696d6564 73656e64 00535953 5f707468 imedsend.SYS_pth + 0x0000aa30 72656164 5f646574 61636800 5359535f read_detach.SYS_ + 0x0000aa40 636c6f63 6b005359 535f6570 6f6c6c5f clock.SYS_epoll_ + 0x0000aa50 63746c00 5359535f 73656c65 6374006c ctl.SYS_select.l + 0x0000aa60 6f6e6720 6c6f6e67 20756e73 69676e65 ong long unsigne + 0x0000aa70 6420696e 74005359 535f7074 68726561 d int.SYS_pthrea + 0x0000aa80 645f6d75 7465785f 64657374 726f7900 d_mutex_destroy. + 0x0000aa90 5359535f 70726561 64005359 535f7369 SYS_pread.SYS_si + 0x0000aaa0 67776169 74696e66 6f005359 535f706f gwaitinfo.SYS_po + 0x0000aab0 7369785f 73706177 6e005359 535f7363 six_spawn.SYS_sc + 0x0000aac0 6865645f 67657470 6172616d 00535953 hed_getparam.SYS + 0x0000aad0 5f707468 72656164 5f636f6e 645f7369 _pthread_cond_si + 0x0000aae0 676e616c 00535953 5f66636e 746c0069 gnal.SYS_fcntl.i + 0x0000aaf0 6e743136 5f740053 59535f72 65616400 nt16_t.SYS_read. + 0x0000ab00 7369676e 65642063 68617200 5359535f signed char.SYS_ + 0x0000ab10 6e616e6f 736c6565 70005359 535f6368 nanosleep.SYS_ch + 0x0000ab20 6f776e00 5359535f 73696774 696d6564 own.SYS_sigtimed + 0x0000ab30 77616974 00535953 5f636c6f 73650053 wait.SYS_close.S + 0x0000ab40 59535f70 74687265 61645f73 65747363 YS_pthread_setsc + 0x0000ab50 68656470 6172616d 00535953 5f6e7873 hedparam.SYS_nxs + 0x0000ab60 656d5f63 6c6f636b 77616974 00535953 em_clockwait.SYS + 0x0000ab70 5f6c7365 656b006c 6f6e6720 696e7400 _lseek.long int. + 0x0000ab80 5359535f 626f6172 6463746c 00776169 SYS_boardctl.wai + 0x0000ab90 746c6973 74005359 535f7074 68726561 tlist.SYS_pthrea + 0x0000aba0 645f7365 74736368 65647072 696f0053 d_setschedprio.S + 0x0000abb0 59535f6d 715f6765 74617474 72005359 YS_mq_getattr.SY + 0x0000abc0 535f6e78 5f707468 72656164 5f637265 S_nx_pthread_cre + 0x0000abd0 61746500 5359535f 7369676e 616c0053 ate.SYS_signal.S + 0x0000abe0 59535f73 69677072 6f636d61 736b0053 YS_sigprocmask.S + 0x0000abf0 59535f70 74687265 61645f63 616e6365 YS_pthread_cance + 0x0000ac00 6c005359 535f7365 74697469 6d657200 l.SYS_setitimer. + 0x0000ac10 5359535f 6d6b6469 72005359 535f6d6d SYS_mkdir.SYS_mm + 0x0000ac20 61700053 59535f75 6e736574 656e7600 ap.SYS_unsetenv. + 0x0000ac30 5359535f 74696d65 725f6765 7474696d SYS_timer_gettim + 0x0000ac40 65005359 535f6663 686f776e 00535953 e.SYS_fchown.SYS + 0x0000ac50 5f6d715f 72656365 69766500 5359535f _mq_receive.SYS_ + 0x0000ac60 636c6f63 6b5f7365 7474696d 65005359 clock_settime.SY + 0x0000ac70 535f7772 69746500 5359535f 67657470 S_write.SYS_getp + 0x0000ac80 69640053 59535f66 73796e63 00535953 id.SYS_fsync.SYS + 0x0000ac90 5f736574 686f7374 6e616d65 00535953 _sethostname.SYS + 0x0000aca0 5f757469 6d656e73 00756e73 69676e65 _utimens.unsigne + 0x0000acb0 6420696e 74005359 535f7369 67616374 d int.SYS_sigact + 0x0000acc0 696f6e00 5359535f 6d715f63 6c6f7365 ion.SYS_mq_close + 0x0000acd0 006c6f6e 6720756e 7369676e 65642069 .long unsigned i + 0x0000ace0 6e740066 6c696e6b 00535953 5f74696d nt.flink.SYS_tim + 0x0000acf0 65725f73 65747469 6d650053 59535f6e er_settime.SYS_n + 0x0000ad00 7873656d 5f646573 74726f79 00535953 xsem_destroy.SYS + 0x0000ad10 5f6d715f 756e6c69 6e6b0073 686f7274 _mq_unlink.short + 0x0000ad20 20756e73 69676e65 6420696e 74005359 unsigned int.SY + 0x0000ad30 535f726d 64697200 5359535f 74696d65 S_rmdir.SYS_time + 0x0000ad40 725f6765 746f7665 7272756e 00535953 r_getoverrun.SYS + 0x0000ad50 5f6d6f75 6e740073 656d636f 756e7400 _mount.semcount. + 0x0000ad60 5359535f 6d617873 79736361 6c6c0053 SYS_maxsyscall.S + 0x0000ad70 59535f63 686d6f64 00535953 5f6e7873 YS_chmod.SYS_nxs + 0x0000ad80 656d5f74 696d6564 77616974 00535953 em_timedwait.SYS + 0x0000ad90 5f6e785f 76737973 6c6f6700 5359535f _nx_vsyslog.SYS_ + 0x0000ada0 7073656c 65637400 5359535f 6d715f6e pselect.SYS_mq_n + 0x0000adb0 6f746966 79005359 535f7374 61746673 otify.SYS_statfs + 0x0000adc0 005f7369 7a655f74 00535953 5f676574 ._size_t.SYS_get + 0x0000add0 6974696d 65720053 59535f73 63686564 itimer.SYS_sched + 0x0000ade0 5f736574 73636865 64756c65 72005359 _setscheduler.SY + 0x0000adf0 535f7074 68726561 645f6d75 7465785f S_pthread_mutex_ + 0x0000ae00 756e6c6f 636b0053 59535f6c 7574696d unlock.SYS_lutim + 0x0000ae10 656e7300 5359535f 6e787365 6d5f7472 ens.SYS_nxsem_tr + 0x0000ae20 79776169 74005359 535f7469 6d65725f ywait.SYS_timer_ + 0x0000ae30 64656c65 74650053 59535f73 69677375 delete.SYS_sigsu + 0x0000ae40 7370656e 64007461 696c0053 59535f5f spend.tail.SYS__ + 0x0000ae50 65786974 00535953 5f65706f 6c6c5f77 exit.SYS_epoll_w + 0x0000ae60 61697400 7379735f 63616c6c 31005359 ait.sys_call1.SY + 0x0000ae70 535f7363 6865645f 6c6f636b 006e7873 S_sched_lock.nxs + 0x0000ae80 656d5f74 72797761 69740053 59535f63 em_trywait.SYS_c + 0x0000ae90 6c6f636b 5f6e616e 6f736c65 65700053 lock_nanosleep.S + 0x0000aea0 59535f73 7973696e 666f0053 59535f70 YS_sysinfo.SYS_p + 0x0000aeb0 74687265 61645f63 6f6e645f 62726f61 thread_cond_broa + 0x0000aec0 64636173 74005359 535f7077 72697465 dcast.SYS_pwrite + 0x0000aed0 00535953 5f6d715f 73656e64 00535953 .SYS_mq_send.SYS + 0x0000aee0 5f5f6173 73657274 00535953 5f666368 __assert.SYS_fch + 0x0000aef0 6d6f6400 5359535f 67657474 69640053 mod.SYS_gettid.S + 0x0000af00 59535f72 656e616d 65005359 535f6475 YS_rename.SYS_du + 0x0000af10 70005359 535f6e78 73656d5f 706f7374 p.SYS_nxsem_post + 0x0000af20 00535953 5f6d715f 74696d65 64726563 .SYS_mq_timedrec + 0x0000af30 65697665 00535953 5f6c6368 6f776e00 eive.SYS_lchown. + 0x0000af40 5359535f 6e785f70 74687265 61645f65 SYS_nx_pthread_e + 0x0000af50 78697400 756e7369 676e6564 20636861 xit.unsigned cha + 0x0000af60 72005359 535f7369 6770656e 64696e67 r.SYS_sigpending + 0x0000af70 00535953 5f667374 61746673 00535953 .SYS_fstatfs.SYS + 0x0000af80 5f6b696c 6c005359 535f7365 74656e76 _kill.SYS_setenv + 0x0000af90 0073686f 72742069 6e740053 59535f64 .short int.SYS_d + 0x0000afa0 75703200 5359535f 73796e63 0064715f up2.SYS_sync.dq_ + 0x0000afb0 71756575 655f7300 64715f71 75657565 queue_s.dq_queue + 0x0000afc0 5f740053 59535f73 65747469 6d656f66 _t.SYS_settimeof + 0x0000afd0 64617900 5359535f 6d715f73 65746174 day.SYS_mq_setat + 0x0000afe0 74720053 59535f65 78656376 65005359 tr.SYS_execve.SY + 0x0000aff0 535f7570 5f666f72 6b005f75 696e7438 S_up_fork._uint8 + 0x0000b000 5f740068 65616400 5359535f 67657468 _t.head.SYS_geth + 0x0000b010 6f73746e 616d6500 5359535f 6e787363 ostname.SYS_nxsc + 0x0000b020 6865645f 6765745f 73746163 6b696e66 hed_get_stackinf + 0x0000b030 6f002f55 73657273 2f4c7570 70792f6f o./Users/Luppy/o + 0x0000b040 7836342f 6e757474 782f7379 7363616c x64/nuttx/syscal + 0x0000b050 6c007061 726d3100 63686172 00535953 l.parm1.char.SYS + 0x0000b060 5f676574 5f656e76 69726f6e 5f707472 _get_environ_ptr + 0x0000b070 00535953 5f707468 72656164 5f6d7574 .SYS_pthread_mut + 0x0000b080 65785f74 696d6564 6c6f636b 00535953 ex_timedlock.SYS + 0x0000b090 5f776169 74706964 00535953 5f74696d _waitpid.SYS_tim + 0x0000b0a0 65005359 535f6765 7474696d 656f6664 e.SYS_gettimeofd + 0x0000b0b0 61790053 59535f63 6c656172 656e7600 ay.SYS_clearenv. + 0x0000b0c0 5359535f 70746872 6561645f 6d757465 SYS_pthread_mute + 0x0000b0d0 785f696e 69740053 59535f75 6d6f756e x_init.SYS_umoun + 0x0000b0e0 74320053 59535f73 63686564 5f736574 t2.SYS_sched_set + 0x0000b0f0 70617261 6d005359 535f7363 6865645f param.SYS_sched_ + 0x0000b100 72725f67 65745f69 6e746572 76616c00 rr_get_interval. + 0x0000b110 5359535f 6d756e6d 61700053 59535f6c SYS_munmap.SYS_l + 0x0000b120 73746174 00535953 5f636c6f 636b5f67 stat.SYS_clock_g + 0x0000b130 65747469 6d650070 726f7869 65732f50 ettime.proxies/P + 0x0000b140 524f5859 5f6e7873 656d5f74 72797761 ROXY_nxsem_trywa + 0x0000b150 69742e63 00535953 5f73656e 6466696c it.c.SYS_sendfil + 0x0000b160 65005359 535f7074 68726561 645f636f e.SYS_pthread_co + 0x0000b170 6e645f63 6c6f636b 77616974 00535953 nd_clockwait.SYS + 0x0000b180 5f6d715f 6f70656e 00626c69 6e6b0053 _mq_open.blink.S + 0x0000b190 59535f6f 70656e00 5359535f 73696771 YS_open.SYS_sigq + 0x0000b1a0 75657565 00535953 5f707468 72656164 ueue.SYS_pthread + 0x0000b1b0 5f6d7574 65785f63 6f6e7369 7374656e _mutex_consisten + 0x0000b1c0 74005359 535f7363 6865645f 6c6f636b t.SYS_sched_lock + 0x0000b1d0 636f756e 74005359 535f7067 616c6c6f count.SYS_pgallo + 0x0000b1e0 63005359 535f7074 68726561 645f7369 c.SYS_pthread_si + 0x0000b1f0 676d6173 6b00474e 55204331 37203130 gmask.GNU C17 10 + 0x0000b200 2e322e30 202d6d63 6d6f6465 6c3d6d65 .2.0 -mcmodel=me + 0x0000b210 64616e79 202d6d61 7263683d 72763634 dany -march=rv64 + 0x0000b220 696d6166 6463202d 6d616269 3d6c7036 imafdc -mabi=lp6 + 0x0000b230 3464202d 6d617263 683d7276 3634696d 4d -march=rv64im + 0x0000b240 61666463 202d6720 2d4f7320 2d666e6f afdc -g -Os -fno + 0x0000b250 2d636f6d 6d6f6e20 2d666e6f 2d737472 -common -fno-str + 0x0000b260 6963742d 616c6961 73696e67 202d666f ict-aliasing -fo + 0x0000b270 6d69742d 6672616d 652d706f 696e7465 mit-frame-pointe + 0x0000b280 72202d66 66756e63 74696f6e 2d736563 r -ffunction-sec + 0x0000b290 74696f6e 73202d66 64617461 2d736563 tions -fdata-sec + 0x0000b2a0 74696f6e 73007569 6e74385f 7400666c tions.uint8_t.fl + 0x0000b2b0 61677300 5359535f 65706f6c 6c5f6372 ags.SYS_epoll_cr + 0x0000b2c0 65617465 31006471 5f656e74 72795f73 eate1.dq_entry_s + 0x0000b2d0 0064715f 656e7472 795f7400 5359535f .dq_entry_t.SYS_ + 0x0000b2e0 6c63686d 6f640053 59535f66 7472756e lchmod.SYS_ftrun + 0x0000b2f0 63617465 00535953 5f696f63 746c0073 cate.SYS_ioctl.s + 0x0000b300 656d5f73 0073656d 5f740053 59535f73 em_s.sem_t.SYS_s + 0x0000b310 63686564 5f756e6c 6f636b00 5359535f ched_unlock.SYS_ + 0x0000b320 70746872 6561645f 6a6f696e 00535953 pthread_join.SYS + 0x0000b330 5f737461 74005f69 6e743136 5f740053 _stat._int16_t.S + 0x0000b340 59535f67 6574656e 76005359 535f6765 YS_getenv.SYS_ge + 0x0000b350 7472616e 646f6d00 5359535f 73636865 trandom.SYS_sche + 0x0000b360 645f6765 74736368 6564756c 65720053 d_getscheduler.S + 0x0000b370 59535f70 7263746c 00535953 5f756e6c YS_prctl.SYS_unl + 0x0000b380 696e6b00 5359535f 70746872 6561645f ink.SYS_pthread_ + 0x0000b390 636f6e64 5f776169 74005359 535f706f cond_wait.SYS_po + 0x0000b3a0 6c6c0053 59535f74 676b696c 6c005359 ll.SYS_tgkill.SY + 0x0000b3b0 535f7074 68726561 645f6d75 7465785f S_pthread_mutex_ + 0x0000b3c0 7472796c 6f636b00 6e787365 6d5f7761 trylock.nxsem_wa + 0x0000b3d0 69740053 59535f74 696d6572 5f637265 it.SYS_timer_cre + 0x0000b3e0 61746500 5359535f 70746872 6561645f ate.SYS_pthread_ + 0x0000b3f0 62617272 6965725f 77616974 0075696e barrier_wait.uin + 0x0000b400 74707472 5f740053 59535f66 73746174 tptr_t.SYS_fstat + 0x0000b410 00535953 5f707468 72656164 5f676574 .SYS_pthread_get + 0x0000b420 73636865 64706172 616d0053 59535f73 schedparam.SYS_s + 0x0000b430 63686564 5f796965 6c640053 59535f70 ched_yield.SYS_p + 0x0000b440 7574656e 76005359 535f6e78 73656d5f utenv.SYS_nxsem_ + 0x0000b450 77616974 00535953 5f70706f 6c6c0053 wait.SYS_ppoll.S + 0x0000b460 59535f66 7574696d 656e7300 5359535f YS_futimens.SYS_ + 0x0000b470 6d715f74 696d6564 73656e64 00535953 mq_timedsend.SYS + 0x0000b480 5f707468 72656164 5f646574 61636800 _pthread_detach. + 0x0000b490 5359535f 636c6f63 6b005359 535f6570 SYS_clock.SYS_ep + 0x0000b4a0 6f6c6c5f 63746c00 5359535f 73656c65 oll_ctl.SYS_sele + 0x0000b4b0 6374006c 6f6e6720 6c6f6e67 20756e73 ct.long long uns + 0x0000b4c0 69676e65 6420696e 74005359 535f7074 igned int.SYS_pt + 0x0000b4d0 68726561 645f6d75 7465785f 64657374 hread_mutex_dest + 0x0000b4e0 726f7900 5359535f 70726561 64005359 roy.SYS_pread.SY + 0x0000b4f0 535f7369 67776169 74696e66 6f005359 S_sigwaitinfo.SY + 0x0000b500 535f706f 7369785f 73706177 6e005359 S_posix_spawn.SY + 0x0000b510 535f7363 6865645f 67657470 6172616d S_sched_getparam + 0x0000b520 00535953 5f707468 72656164 5f636f6e .SYS_pthread_con + 0x0000b530 645f7369 676e616c 00535953 5f66636e d_signal.SYS_fcn + 0x0000b540 746c0069 6e743136 5f740053 59535f72 tl.int16_t.SYS_r + 0x0000b550 65616400 7369676e 65642063 68617200 ead.signed char. + 0x0000b560 5359535f 6e616e6f 736c6565 70005359 SYS_nanosleep.SY + 0x0000b570 535f6368 6f776e00 5359535f 73696774 S_chown.SYS_sigt + 0x0000b580 696d6564 77616974 00535953 5f636c6f imedwait.SYS_clo + 0x0000b590 73650053 59535f70 74687265 61645f73 se.SYS_pthread_s + 0x0000b5a0 65747363 68656470 6172616d 00535953 etschedparam.SYS + 0x0000b5b0 5f6e7873 656d5f63 6c6f636b 77616974 _nxsem_clockwait + 0x0000b5c0 00535953 5f6c7365 656b006c 6f6e6720 .SYS_lseek.long + 0x0000b5d0 696e7400 5359535f 626f6172 6463746c int.SYS_boardctl + 0x0000b5e0 00776169 746c6973 74005359 535f7074 .waitlist.SYS_pt + 0x0000b5f0 68726561 645f7365 74736368 65647072 hread_setschedpr + 0x0000b600 696f0053 59535f6d 715f6765 74617474 io.SYS_mq_getatt + 0x0000b610 72005359 535f6e78 5f707468 72656164 r.SYS_nx_pthread + 0x0000b620 5f637265 61746500 5359535f 7369676e _create.SYS_sign + 0x0000b630 616c0053 59535f73 69677072 6f636d61 al.SYS_sigprocma + 0x0000b640 736b0053 59535f70 74687265 61645f63 sk.SYS_pthread_c + 0x0000b650 616e6365 6c005359 535f7365 74697469 ancel.SYS_setiti + 0x0000b660 6d657200 5359535f 6d6b6469 72005359 mer.SYS_mkdir.SY + 0x0000b670 535f6d6d 61700053 59535f75 6e736574 S_mmap.SYS_unset + 0x0000b680 656e7600 5359535f 74696d65 725f6765 env.SYS_timer_ge + 0x0000b690 7474696d 65005359 535f6663 686f776e ttime.SYS_fchown + 0x0000b6a0 00535953 5f6d715f 72656365 69766500 .SYS_mq_receive. + 0x0000b6b0 5359535f 636c6f63 6b5f7365 7474696d SYS_clock_settim + 0x0000b6c0 65005359 535f7772 69746500 5359535f e.SYS_write.SYS_ + 0x0000b6d0 67657470 69640053 59535f66 73796e63 getpid.SYS_fsync + 0x0000b6e0 00535953 5f736574 686f7374 6e616d65 .SYS_sethostname + 0x0000b6f0 00535953 5f757469 6d656e73 00756e73 .SYS_utimens.uns + 0x0000b700 69676e65 6420696e 74005359 535f7369 igned int.SYS_si + 0x0000b710 67616374 696f6e00 5359535f 6d715f63 gaction.SYS_mq_c + 0x0000b720 6c6f7365 006c6f6e 6720756e 7369676e lose.long unsign + 0x0000b730 65642069 6e740066 6c696e6b 00535953 ed int.flink.SYS + 0x0000b740 5f74696d 65725f73 65747469 6d650053 _timer_settime.S + 0x0000b750 59535f6e 7873656d 5f646573 74726f79 YS_nxsem_destroy + 0x0000b760 00535953 5f6d715f 756e6c69 6e6b0073 .SYS_mq_unlink.s + 0x0000b770 686f7274 20756e73 69676e65 6420696e hort unsigned in + 0x0000b780 74005359 535f726d 64697200 5359535f t.SYS_rmdir.SYS_ + 0x0000b790 74696d65 725f6765 746f7665 7272756e timer_getoverrun + 0x0000b7a0 00535953 5f6d6f75 6e740073 656d636f .SYS_mount.semco + 0x0000b7b0 756e7400 5359535f 6d617873 79736361 unt.SYS_maxsysca + 0x0000b7c0 6c6c0053 59535f63 686d6f64 00535953 ll.SYS_chmod.SYS + 0x0000b7d0 5f6e7873 656d5f74 696d6564 77616974 _nxsem_timedwait + 0x0000b7e0 00535953 5f6e785f 76737973 6c6f6700 .SYS_nx_vsyslog. + 0x0000b7f0 5359535f 7073656c 65637400 5359535f SYS_pselect.SYS_ + 0x0000b800 6d715f6e 6f746966 79005359 535f7374 mq_notify.SYS_st + 0x0000b810 61746673 005f7369 7a655f74 00535953 atfs._size_t.SYS + 0x0000b820 5f676574 6974696d 65720053 59535f73 _getitimer.SYS_s + 0x0000b830 63686564 5f736574 73636865 64756c65 ched_setschedule + 0x0000b840 72005359 535f7074 68726561 645f6d75 r.SYS_pthread_mu + 0x0000b850 7465785f 756e6c6f 636b0053 59535f6c tex_unlock.SYS_l + 0x0000b860 7574696d 656e7300 5359535f 6e787365 utimens.SYS_nxse + 0x0000b870 6d5f7472 79776169 74005359 535f7469 m_trywait.SYS_ti + 0x0000b880 6d65725f 64656c65 74650053 59535f73 mer_delete.SYS_s + 0x0000b890 69677375 7370656e 64007461 696c0053 igsuspend.tail.S + 0x0000b8a0 59535f5f 65786974 00535953 5f65706f YS__exit.SYS_epo + 0x0000b8b0 6c6c5f77 61697400 7379735f 63616c6c ll_wait.sys_call + 0x0000b8c0 31005359 535f7363 6865645f 6c6f636b 1.SYS_sched_lock + 0x0000b8d0 00535953 5f636c6f 636b5f6e 616e6f73 .SYS_clock_nanos + 0x0000b8e0 6c656570 00535953 5f737973 696e666f leep.SYS_sysinfo + 0x0000b8f0 00535953 5f707468 72656164 5f636f6e .SYS_pthread_con + 0x0000b900 645f6272 6f616463 61737400 5359535f d_broadcast.SYS_ + 0x0000b910 70777269 74650053 59535f6d 715f7365 pwrite.SYS_mq_se + 0x0000b920 6e640053 59535f5f 61737365 72740053 nd.SYS__assert.S + 0x0000b930 59535f66 63686d6f 64005359 535f6765 YS_fchmod.SYS_ge + 0x0000b940 74746964 0070726f 78696573 2f50524f ttid.proxies/PRO + 0x0000b950 58595f6e 7873656d 5f776169 742e6300 XY_nxsem_wait.c. + 0x0000b960 5359535f 72656e61 6d650053 59535f64 SYS_rename.SYS_d + 0x0000b970 75700053 59535f6e 7873656d 5f706f73 up.SYS_nxsem_pos + 0x0000b980 74005359 535f6d71 5f74696d 65647265 t.SYS_mq_timedre + 0x0000b990 63656976 65005359 535f6c63 686f776e ceive.SYS_lchown + 0x0000b9a0 00535953 5f6e785f 70746872 6561645f .SYS_nx_pthread_ + 0x0000b9b0 65786974 00756e73 69676e65 64206368 exit.unsigned ch + 0x0000b9c0 61720053 59535f73 69677065 6e64696e ar.SYS_sigpendin + 0x0000b9d0 67005359 535f6673 74617466 73005359 g.SYS_fstatfs.SY + 0x0000b9e0 535f6b69 6c6c0053 59535f73 6574656e S_kill.SYS_seten + 0x0000b9f0 76007368 6f727420 696e7400 5359535f v.short int.SYS_ + 0x0000ba00 64757032 00535953 5f73796e 63006471 dup2.SYS_sync.dq + 0x0000ba10 5f717565 75655f73 0064715f 71756575 _queue_s.dq_queu + 0x0000ba20 655f7400 5359535f 73657474 696d656f e_t.SYS_settimeo + 0x0000ba30 66646179 00535953 5f6d715f 73657461 fday.SYS_mq_seta + 0x0000ba40 74747200 5359535f 65786563 76650053 ttr.SYS_execve.S + 0x0000ba50 59535f75 705f666f 726b005f 75696e74 YS_up_fork._uint + 0x0000ba60 385f7400 68656164 00535953 5f676574 8_t.head.SYS_get + 0x0000ba70 686f7374 6e616d65 00535953 5f6e7873 hostname.SYS_nxs + 0x0000ba80 63686564 5f676574 5f737461 636b696e ched_get_stackin + 0x0000ba90 666f002f 55736572 732f4c75 7070792f fo./Users/Luppy/ + 0x0000baa0 6f783634 2f6e7574 74782f73 79736361 ox64/nuttx/sysca + 0x0000bab0 6c6c0070 61726d31 00636861 72005359 ll.parm1.char.SY + 0x0000bac0 535f6765 745f656e 7669726f 6e5f7074 S_get_environ_pt + 0x0000bad0 72005359 535f7074 68726561 645f6d75 r.SYS_pthread_mu + 0x0000bae0 7465785f 74696d65 646c6f63 6b005359 tex_timedlock.SY + 0x0000baf0 535f7761 69747069 64005359 535f7469 S_waitpid.SYS_ti + 0x0000bb00 6d650053 59535f67 65747469 6d656f66 me.SYS_gettimeof + 0x0000bb10 64617900 5359535f 636c6561 72656e76 day.SYS_clearenv + 0x0000bb20 00535953 5f707468 72656164 5f6d7574 .SYS_pthread_mut + 0x0000bb30 65785f69 6e697400 5359535f 756d6f75 ex_init.SYS_umou + 0x0000bb40 6e743200 5359535f 73636865 645f7365 nt2.SYS_sched_se + 0x0000bb50 74706172 616d0053 59535f73 63686564 tparam.SYS_sched + 0x0000bb60 5f72725f 6765745f 696e7465 7276616c _rr_get_interval + 0x0000bb70 00535953 5f6d756e 6d617000 5359535f .SYS_munmap.SYS_ + 0x0000bb80 6c737461 74005359 535f636c 6f636b5f lstat.SYS_clock_ + 0x0000bb90 67657474 696d6500 5359535f 73656e64 gettime.SYS_send + 0x0000bba0 66696c65 00535953 5f707468 72656164 file.SYS_pthread + 0x0000bbb0 5f636f6e 645f636c 6f636b77 61697400 _cond_clockwait. + 0x0000bbc0 5359535f 6d715f6f 70656e00 626c696e SYS_mq_open.blin + 0x0000bbd0 6b005359 535f6f70 656e0053 59535f73 k.SYS_open.SYS_s + 0x0000bbe0 69677175 65756500 5359535f 70746872 igqueue.SYS_pthr + 0x0000bbf0 6561645f 6d757465 785f636f 6e736973 ead_mutex_consis + 0x0000bc00 74656e74 00535953 5f736368 65645f6c tent.SYS_sched_l + 0x0000bc10 6f636b63 6f756e74 00535953 5f706761 ockcount.SYS_pga + 0x0000bc20 6c6c6f63 00535953 5f707468 72656164 lloc.SYS_pthread + 0x0000bc30 5f736967 6d61736b 00474e55 20433137 _sigmask.GNU C17 + 0x0000bc40 2031302e 322e3020 2d6d636d 6f64656c 10.2.0 -mcmodel + 0x0000bc50 3d6d6564 616e7920 2d6d6172 63683d72 =medany -march=r + 0x0000bc60 76363469 6d616664 63202d6d 6162693d v64imafdc -mabi= + 0x0000bc70 6c703634 64202d6d 61726368 3d727636 lp64d -march=rv6 + 0x0000bc80 34696d61 66646320 2d67202d 4f73202d 4imafdc -g -Os - + 0x0000bc90 666e6f2d 636f6d6d 6f6e202d 666e6f2d fno-common -fno- + 0x0000bca0 73747269 63742d61 6c696173 696e6720 strict-aliasing + 0x0000bcb0 2d666f6d 69742d66 72616d65 2d706f69 -fomit-frame-poi + 0x0000bcc0 6e746572 202d6666 756e6374 696f6e2d nter -ffunction- + 0x0000bcd0 73656374 696f6e73 202d6664 6174612d sections -fdata- + 0x0000bce0 73656374 696f6e73 0075696e 74385f74 sections.uint8_t + 0x0000bcf0 00666c61 67730053 59535f65 706f6c6c .flags.SYS_epoll + 0x0000bd00 5f637265 61746531 0064715f 656e7472 _create1.dq_entr + 0x0000bd10 795f7300 64715f65 6e747279 5f740053 y_s.dq_entry_t.S + 0x0000bd20 59535f6c 63686d6f 64005359 535f6674 YS_lchmod.SYS_ft + 0x0000bd30 72756e63 61746500 5359535f 696f6374 runcate.SYS_ioct + 0x0000bd40 6c007365 6d5f7300 73656d5f 74005359 l.sem_s.sem_t.SY + 0x0000bd50 535f7363 6865645f 756e6c6f 636b0053 S_sched_unlock.S + 0x0000bd60 59535f70 74687265 61645f6a 6f696e00 YS_pthread_join. + 0x0000bd70 5359535f 73746174 005f696e 7431365f SYS_stat._int16_ + 0x0000bd80 74005359 535f6765 74656e76 00535953 t.SYS_getenv.SYS + 0x0000bd90 5f676574 72616e64 6f6d0053 59535f73 _getrandom.SYS_s + 0x0000bda0 63686564 5f676574 73636865 64756c65 ched_getschedule + 0x0000bdb0 72005359 535f7072 63746c00 5359535f r.SYS_prctl.SYS_ + 0x0000bdc0 756e6c69 6e6b0070 61726d33 00535953 unlink.parm3.SYS + 0x0000bdd0 5f706f6c 6c005359 535f7467 6b696c6c _poll.SYS_tgkill + 0x0000bde0 00535953 5f707468 72656164 5f6d7574 .SYS_pthread_mut + 0x0000bdf0 65785f74 72796c6f 636b0073 697a655f ex_trylock.size_ + 0x0000be00 74007569 6e747074 725f7400 5359535f t.uintptr_t.SYS_ + 0x0000be10 66737461 74007772 69746500 5359535f fstat.write.SYS_ + 0x0000be20 73636865 645f7969 656c6400 5359535f sched_yield.SYS_ + 0x0000be30 70757465 6e760053 59535f6e 7873656d putenv.SYS_nxsem + 0x0000be40 5f776169 74005359 535f7070 6f6c6c00 _wait.SYS_ppoll. + 0x0000be50 7373697a 655f7400 5359535f 6d715f74 ssize_t.SYS_mq_t + 0x0000be60 696d6564 73656e64 00535953 5f707468 imedsend.SYS_pth + 0x0000be70 72656164 5f646574 61636800 5359535f read_detach.SYS_ + 0x0000be80 636c6f63 6b005359 535f6570 6f6c6c5f clock.SYS_epoll_ + 0x0000be90 63746c00 5359535f 73656c65 6374006c ctl.SYS_select.l + 0x0000bea0 6f6e6720 6c6f6e67 20756e73 69676e65 ong long unsigne + 0x0000beb0 6420696e 74005359 535f7074 68726561 d int.SYS_pthrea + 0x0000bec0 645f6d75 7465785f 64657374 726f7900 d_mutex_destroy. + 0x0000bed0 5359535f 70726561 64005359 535f7369 SYS_pread.SYS_si + 0x0000bee0 67776169 74696e66 6f005359 535f706f gwaitinfo.SYS_po + 0x0000bef0 7369785f 73706177 6e005359 535f7363 six_spawn.SYS_sc + 0x0000bf00 6865645f 67657470 6172616d 00535953 hed_getparam.SYS + 0x0000bf10 5f707468 72656164 5f636f6e 645f7369 _pthread_cond_si + 0x0000bf20 676e616c 00535953 5f6c7365 656b0053 gnal.SYS_lseek.S + 0x0000bf30 59535f72 65616400 7369676e 65642063 YS_read.signed c + 0x0000bf40 68617200 5359535f 6e616e6f 736c6565 har.SYS_nanoslee + 0x0000bf50 70005359 535f6368 6f776e00 5359535f p.SYS_chown.SYS_ + 0x0000bf60 73696774 696d6564 77616974 00535953 sigtimedwait.SYS + 0x0000bf70 5f636c6f 73650053 59535f70 74687265 _close.SYS_pthre + 0x0000bf80 61645f73 65747363 68656470 6172616d ad_setschedparam + 0x0000bf90 00535953 5f6e7873 656d5f63 6c6f636b .SYS_nxsem_clock + 0x0000bfa0 77616974 006c6f6e 6720696e 74005359 wait.long int.SY + 0x0000bfb0 535f626f 61726463 746c0053 59535f70 S_boardctl.SYS_p + 0x0000bfc0 74687265 61645f73 65747363 68656470 thread_setschedp + 0x0000bfd0 72696f00 5359535f 6d715f67 65746174 rio.SYS_mq_getat + 0x0000bfe0 74720053 59535f6e 785f7074 68726561 tr.SYS_nx_pthrea + 0x0000bff0 645f6372 65617465 00535953 5f736967 d_create.SYS_sig + 0x0000c000 6e616c00 5359535f 73696770 726f636d nal.SYS_sigprocm + 0x0000c010 61736b00 5359535f 70746872 6561645f ask.SYS_pthread_ + 0x0000c020 63616e63 656c0053 59535f73 65746974 cancel.SYS_setit + 0x0000c030 696d6572 00535953 5f6d6b64 69720053 imer.SYS_mkdir.S + 0x0000c040 59535f6d 6d617000 5359535f 756e7365 YS_mmap.SYS_unse + 0x0000c050 74656e76 00535953 5f74696d 65725f67 tenv.SYS_timer_g + 0x0000c060 65747469 6d650073 79735f63 616c6c33 ettime.sys_call3 + 0x0000c070 00535953 5f666368 6f776e00 5359535f .SYS_fchown.SYS_ + 0x0000c080 6d715f72 65636569 76650053 59535f63 mq_receive.SYS_c + 0x0000c090 6c6f636b 5f736574 74696d65 00535953 lock_settime.SYS + 0x0000c0a0 5f777269 74650053 59535f67 65747069 _write.SYS_getpi + 0x0000c0b0 64005359 535f6673 796e6300 5359535f d.SYS_fsync.SYS_ + 0x0000c0c0 73657468 6f73746e 616d6500 5359535f sethostname.SYS_ + 0x0000c0d0 7574696d 656e7300 756e7369 676e6564 utimens.unsigned + 0x0000c0e0 20696e74 00535953 5f736967 61637469 int.SYS_sigacti + 0x0000c0f0 6f6e0053 59535f6d 715f636c 6f736500 on.SYS_mq_close. + 0x0000c100 6c6f6e67 20756e73 69676e65 6420696e long unsigned in + 0x0000c110 74005359 535f6663 6e746c00 5359535f t.SYS_fcntl.SYS_ + 0x0000c120 74696d65 725f7365 7474696d 65005359 timer_settime.SY + 0x0000c130 535f6d71 5f756e6c 696e6b00 73686f72 S_mq_unlink.shor + 0x0000c140 7420756e 7369676e 65642069 6e740053 t unsigned int.S + 0x0000c150 59535f72 6d646972 00535953 5f74696d YS_rmdir.SYS_tim + 0x0000c160 65725f67 65746f76 65727275 6e005359 er_getoverrun.SY + 0x0000c170 535f6d6f 756e7400 70726f78 6965732f S_mount.proxies/ + 0x0000c180 50524f58 595f7772 6974652e 63005359 PROXY_write.c.SY + 0x0000c190 535f6e78 73656d5f 64657374 726f7900 S_nxsem_destroy. + 0x0000c1a0 5359535f 6d617873 79736361 6c6c0053 SYS_maxsyscall.S + 0x0000c1b0 59535f63 686d6f64 00535953 5f6e7873 YS_chmod.SYS_nxs + 0x0000c1c0 656d5f74 696d6564 77616974 00535953 em_timedwait.SYS + 0x0000c1d0 5f6e785f 76737973 6c6f6700 5359535f _nx_vsyslog.SYS_ + 0x0000c1e0 7073656c 65637400 5359535f 6d715f6e pselect.SYS_mq_n + 0x0000c1f0 6f746966 79005359 535f7374 61746673 otify.SYS_statfs + 0x0000c200 005f7369 7a655f74 00535953 5f676574 ._size_t.SYS_get + 0x0000c210 6974696d 65720053 59535f73 63686564 itimer.SYS_sched + 0x0000c220 5f736574 73636865 64756c65 72005359 _setscheduler.SY + 0x0000c230 535f7074 68726561 645f6d75 7465785f S_pthread_mutex_ + 0x0000c240 756e6c6f 636b0053 59535f6e 7873656d unlock.SYS_nxsem + 0x0000c250 5f747279 77616974 00535953 5f74696d _trywait.SYS_tim + 0x0000c260 65725f64 656c6574 65005359 535f7369 er_delete.SYS_si + 0x0000c270 67737573 70656e64 00535953 5f5f6578 gsuspend.SYS__ex + 0x0000c280 69740053 59535f65 706f6c6c 5f776169 it.SYS_epoll_wai + 0x0000c290 74005359 535f7363 6865645f 6c6f636b t.SYS_sched_lock + 0x0000c2a0 00535953 5f636c6f 636b5f6e 616e6f73 .SYS_clock_nanos + 0x0000c2b0 6c656570 00535953 5f737973 696e666f leep.SYS_sysinfo + 0x0000c2c0 00535953 5f707468 72656164 5f636f6e .SYS_pthread_con + 0x0000c2d0 645f6272 6f616463 61737400 5359535f d_broadcast.SYS_ + 0x0000c2e0 70777269 74650053 59535f6d 715f7365 pwrite.SYS_mq_se + 0x0000c2f0 6e640053 59535f70 74687265 61645f62 nd.SYS_pthread_b + 0x0000c300 61727269 65725f77 61697400 5359535f arrier_wait.SYS_ + 0x0000c310 6663686d 6f640053 59535f67 65747469 fchmod.SYS_getti + 0x0000c320 64005359 535f7265 6e616d65 00535953 d.SYS_rename.SYS + 0x0000c330 5f647570 00535953 5f6e7873 656d5f70 _dup.SYS_nxsem_p + 0x0000c340 6f737400 5359535f 6d715f74 696d6564 ost.SYS_mq_timed + 0x0000c350 72656365 69766500 5359535f 6c63686f receive.SYS_lcho + 0x0000c360 776e0053 59535f6e 785f7074 68726561 wn.SYS_nx_pthrea + 0x0000c370 645f6578 69740075 6e736967 6e656420 d_exit.unsigned + 0x0000c380 63686172 00535953 5f736967 70656e64 char.SYS_sigpend + 0x0000c390 696e6700 5359535f 66737461 74667300 ing.SYS_fstatfs. + 0x0000c3a0 5359535f 6b696c6c 00535953 5f736574 SYS_kill.SYS_set + 0x0000c3b0 656e7600 73686f72 7420696e 74005359 env.short int.SY + 0x0000c3c0 535f6475 70320053 59535f73 796e6300 S_dup2.SYS_sync. + 0x0000c3d0 5359535f 70746872 6561645f 67657473 SYS_pthread_gets + 0x0000c3e0 63686564 70617261 6d005359 535f7365 chedparam.SYS_se + 0x0000c3f0 7474696d 656f6664 61790053 59535f6d ttimeofday.SYS_m + 0x0000c400 715f7365 74617474 72005359 535f6578 q_setattr.SYS_ex + 0x0000c410 65637665 00535953 5f75705f 666f726b ecve.SYS_up_fork + 0x0000c420 00535953 5f5f6173 73657274 00535953 .SYS__assert.SYS + 0x0000c430 5f667574 696d656e 73005359 535f6765 _futimens.SYS_ge + 0x0000c440 74686f73 746e616d 65005359 535f6e78 thostname.SYS_nx + 0x0000c450 73636865 645f6765 745f7374 61636b69 sched_get_stacki + 0x0000c460 6e666f00 2f557365 72732f4c 75707079 nfo./Users/Luppy + 0x0000c470 2f6f7836 342f6e75 7474782f 73797363 /ox64/nuttx/sysc + 0x0000c480 616c6c00 7061726d 31007061 726d3200 all.parm1.parm2. + 0x0000c490 63686172 00535953 5f676574 5f656e76 char.SYS_get_env + 0x0000c4a0 69726f6e 5f707472 00535953 5f707468 iron_ptr.SYS_pth + 0x0000c4b0 72656164 5f6d7574 65785f74 696d6564 read_mutex_timed + 0x0000c4c0 6c6f636b 00535953 5f776169 74706964 lock.SYS_waitpid + 0x0000c4d0 00535953 5f74696d 65005359 535f6765 .SYS_time.SYS_ge + 0x0000c4e0 7474696d 656f6664 61790053 59535f63 ttimeofday.SYS_c + 0x0000c4f0 6c656172 656e7600 5359535f 70746872 learenv.SYS_pthr + 0x0000c500 6561645f 6d757465 785f696e 69740053 ead_mutex_init.S + 0x0000c510 59535f75 6d6f756e 74320053 59535f73 YS_umount2.SYS_s + 0x0000c520 63686564 5f736574 70617261 6d005359 ched_setparam.SY + 0x0000c530 535f7363 6865645f 72725f67 65745f69 S_sched_rr_get_i + 0x0000c540 6e746572 76616c00 5359535f 6d756e6d nterval.SYS_munm + 0x0000c550 61700053 59535f6c 73746174 00535953 ap.SYS_lstat.SYS + 0x0000c560 5f636c6f 636b5f67 65747469 6d650053 _clock_gettime.S + 0x0000c570 59535f73 656e6466 696c6500 5359535f YS_sendfile.SYS_ + 0x0000c580 70746872 6561645f 636f6e64 5f636c6f pthread_cond_clo + 0x0000c590 636b7761 69740053 59535f6d 715f6f70 ckwait.SYS_mq_op + 0x0000c5a0 656e0053 59535f74 696d6572 5f637265 en.SYS_timer_cre + 0x0000c5b0 61746500 5359535f 70746872 6561645f ate.SYS_pthread_ + 0x0000c5c0 636f6e64 5f776169 74005359 535f6f70 cond_wait.SYS_op + 0x0000c5d0 656e0053 59535f73 69677175 65756500 en.SYS_sigqueue. + 0x0000c5e0 5359535f 70746872 6561645f 6d757465 SYS_pthread_mute + 0x0000c5f0 785f636f 6e736973 74656e74 00535953 x_consistent.SYS + 0x0000c600 5f736368 65645f6c 6f636b63 6f756e74 _sched_lockcount + 0x0000c610 00535953 5f706761 6c6c6f63 00535953 .SYS_pgalloc.SYS + 0x0000c620 5f707468 72656164 5f736967 6d61736b _pthread_sigmask + 0x0000c630 00474e55 20433137 2031302e 322e3020 .GNU C17 10.2.0 + 0x0000c640 2d6d636d 6f64656c 3d6d6564 616e7920 -mcmodel=medany + 0x0000c650 2d6d6172 63683d72 76363469 6d616664 -march=rv64imafd + 0x0000c660 63202d6d 6162693d 6c703634 64202d6d c -mabi=lp64d -m + 0x0000c670 61726368 3d727636 34696d61 66646320 arch=rv64imafdc + 0x0000c680 2d67202d 4f73202d 666e6f2d 636f6d6d -g -Os -fno-comm + 0x0000c690 6f6e202d 666e6f2d 73747269 63742d61 on -fno-strict-a + 0x0000c6a0 6c696173 696e6720 2d666f6d 69742d66 liasing -fomit-f + 0x0000c6b0 72616d65 2d706f69 6e746572 202d6666 rame-pointer -ff + 0x0000c6c0 756e6374 696f6e2d 73656374 696f6e73 unction-sections + 0x0000c6d0 202d6664 6174612d 73656374 696f6e73 -fdata-sections + 0x0000c6e0 005f7373 697a655f 74005359 535f6570 ._ssize_t.SYS_ep + 0x0000c6f0 6f6c6c5f 63726561 74653100 5359535f oll_create1.SYS_ + 0x0000c700 6c757469 6d656e73 00535953 5f6c6368 lutimens.SYS_lch + 0x0000c710 6d6f6400 5359535f 66747275 6e636174 mod.SYS_ftruncat + 0x0000c720 65005359 535f696f 63746c00 5359535f e.SYS_ioctl.SYS_ + 0x0000c730 73636865 645f756e 6c6f636b 00535953 sched_unlock.SYS + 0x0000c740 5f707468 72656164 5f6a6f69 6e005359 _pthread_join.SY + 0x0000c750 535f7374 61740053 59535f67 6574656e S_stat.SYS_geten + 0x0000c760 76005359 535f6765 7472616e 646f6d00 v.SYS_getrandom. + 0x0000c770 5359535f 73636865 645f6765 74736368 SYS_sched_getsch + 0x0000c780 6564756c 65720053 59535f70 7263746c eduler.SYS_prctl + 0x0000c790 00535953 5f756e6c 696e6b00 .SYS_unlink. + +Contents of the .debug_frame section (loaded from ../apps/bin/hello): + + +00000000 000000000000000c ffffffff CIE + Version: 3 + Augmentation: "" + Code alignment factor: 1 + Data alignment factor: -4 + Return address column: 1 + + DW_CFA_def_cfa_register: r2 (sp) + DW_CFA_nop + +00000010 0000000000000014 00000000 FDE cie=00000000 pc=0000000000000000..000000000000001a + +00000028 000000000000001c 00000000 FDE cie=00000000 pc=000000000000001a..000000000000003e + DW_CFA_advance_loc: 2 to 000000000000001c + DW_CFA_def_cfa_offset: 16 + DW_CFA_advance_loc: 6 to 0000000000000022 + DW_CFA_offset: r1 (ra) at cfa-8 + DW_CFA_nop + DW_CFA_nop + +00000048 000000000000000c ffffffff CIE + Version: 3 + Augmentation: "" + Code alignment factor: 1 + Data alignment factor: -4 + Return address column: 1 + + DW_CFA_def_cfa_register: r2 (sp) + DW_CFA_nop + +00000058 0000000000000024 00000048 FDE cie=00000048 pc=000000000000003e..000000000000005a + DW_CFA_advance_loc: 2 to 0000000000000040 + DW_CFA_def_cfa_offset: 16 + DW_CFA_remember_state + DW_CFA_offset: r1 (ra) at cfa-8 + DW_CFA_remember_state + DW_CFA_restore: r1 (ra) + DW_CFA_advance_loc: 4 to 0000000000000044 + DW_CFA_def_cfa_offset: 0 + DW_CFA_nop + DW_CFA_nop + DW_CFA_nop + DW_CFA_nop + DW_CFA_nop + +00000080 000000000000000c ffffffff CIE + Version: 3 + Augmentation: "" + Code alignment factor: 1 + Data alignment factor: -4 + Return address column: 1 + + DW_CFA_def_cfa_register: r2 (sp) + DW_CFA_nop + +00000090 000000000000002c 00000080 FDE cie=00000080 pc=000000000000005a..00000000000000e0 + DW_CFA_advance_loc: 2 to 000000000000005c + DW_CFA_def_cfa_offset: 48 + DW_CFA_advance_loc: 2 to 000000000000005e + DW_CFA_offset: r8 (s0) at cfa-16 + DW_CFA_advance_loc: 8 to 0000000000000066 + DW_CFA_offset: r1 (ra) at cfa-8 + DW_CFA_offset: r9 (s1) at cfa-24 + DW_CFA_advance_loc1: 112 to 00000000000000d6 + DW_CFA_restore: r1 (ra) + DW_CFA_advance_loc: 4 to 00000000000000da + DW_CFA_restore: r8 (s0) + DW_CFA_advance_loc: 2 to 00000000000000dc + DW_CFA_restore: r9 (s1) + DW_CFA_advance_loc: 2 to 00000000000000de + DW_CFA_def_cfa_offset: 0 + DW_CFA_nop + DW_CFA_nop + DW_CFA_nop + +000000c0 000000000000000c ffffffff CIE + Version: 3 + Augmentation: "" + Code alignment factor: 1 + Data alignment factor: -4 + Return address column: 1 + + DW_CFA_def_cfa_register: r2 (sp) + DW_CFA_nop + +000000d0 000000000000003c 000000c0 FDE cie=000000c0 pc=00000000000000e0..000000000000020a + DW_CFA_advance_loc: 2 to 00000000000000e2 + DW_CFA_def_cfa_offset: 48 + DW_CFA_advance_loc: 12 to 00000000000000ee + DW_CFA_offset: r1 (ra) at cfa-8 + DW_CFA_offset: r8 (s0) at cfa-16 + DW_CFA_offset: r9 (s1) at cfa-24 + DW_CFA_offset: r18 (s2) at cfa-32 + DW_CFA_offset: r19 (s3) at cfa-40 + DW_CFA_offset: r20 (s4) at cfa-48 + DW_CFA_advance_loc: 18 to 0000000000000100 + DW_CFA_remember_state + DW_CFA_restore: r1 (ra) + DW_CFA_advance_loc: 2 to 0000000000000102 + DW_CFA_restore: r8 (s0) + DW_CFA_advance_loc: 2 to 0000000000000104 + DW_CFA_restore: r9 (s1) + DW_CFA_advance_loc: 2 to 0000000000000106 + DW_CFA_restore: r18 (s2) + DW_CFA_advance_loc: 2 to 0000000000000108 + DW_CFA_restore: r19 (s3) + DW_CFA_advance_loc: 2 to 000000000000010a + DW_CFA_restore: r20 (s4) + DW_CFA_advance_loc: 2 to 000000000000010c + DW_CFA_def_cfa_offset: 0 + DW_CFA_advance_loc: 2 to 000000000000010e + DW_CFA_restore_state + DW_CFA_nop + DW_CFA_nop + DW_CFA_nop + DW_CFA_nop + DW_CFA_nop + DW_CFA_nop + +00000110 000000000000002c 000000c0 FDE cie=000000c0 pc=000000000000020a..0000000000000248 + DW_CFA_advance_loc: 2 to 000000000000020c + DW_CFA_def_cfa_offset: 48 + DW_CFA_advance_loc: 2 to 000000000000020e + DW_CFA_offset: r9 (s1) at cfa-24 + DW_CFA_advance_loc: 8 to 0000000000000216 + DW_CFA_offset: r1 (ra) at cfa-8 + DW_CFA_offset: r8 (s0) at cfa-16 + DW_CFA_advance_loc: 40 to 000000000000023e + DW_CFA_restore: r1 (ra) + DW_CFA_advance_loc: 2 to 0000000000000240 + DW_CFA_restore: r8 (s0) + DW_CFA_advance_loc: 4 to 0000000000000244 + DW_CFA_restore: r9 (s1) + DW_CFA_advance_loc: 2 to 0000000000000246 + DW_CFA_def_cfa_offset: 0 + DW_CFA_nop + DW_CFA_nop + DW_CFA_nop + DW_CFA_nop + +00000140 000000000000000c ffffffff CIE + Version: 3 + Augmentation: "" + Code alignment factor: 1 + Data alignment factor: -4 + Return address column: 1 + + DW_CFA_def_cfa_register: r2 (sp) + DW_CFA_nop + +00000150 000000000000003c 00000140 FDE cie=00000140 pc=0000000000000248..00000000000002d0 + DW_CFA_remember_state + DW_CFA_def_cfa_offset: 32 + DW_CFA_advance_loc: 8 to 0000000000000250 + DW_CFA_offset: r8 (s0) at cfa-16 + DW_CFA_offset: r1 (ra) at cfa-8 + DW_CFA_offset: r9 (s1) at cfa-24 + DW_CFA_offset: r18 (s2) at cfa-32 + DW_CFA_advance_loc1: 72 to 0000000000000298 + DW_CFA_remember_state + DW_CFA_restore: r1 (ra) + DW_CFA_advance_loc: 2 to 000000000000029a + DW_CFA_restore: r8 (s0) + DW_CFA_advance_loc: 2 to 000000000000029c + DW_CFA_restore: r9 (s1) + DW_CFA_advance_loc: 2 to 000000000000029e + DW_CFA_restore: r18 (s2) + DW_CFA_advance_loc: 2 to 00000000000002a0 + DW_CFA_def_cfa_offset: 0 + DW_CFA_advance_loc: 2 to 00000000000002a2 + DW_CFA_restore_state + DW_CFA_offset: r32 (ft0) at cfa-56 + DW_CFA_nop + DW_CFA_restore: r1 (ra) + DW_CFA_restore: r8 (s0) + DW_CFA_restore: r9 (s1) + DW_CFA_restore: r18 (s2) + DW_CFA_nop + DW_CFA_nop + DW_CFA_nop + DW_CFA_nop + DW_CFA_nop + DW_CFA_nop + +00000190 000000000000002c 00000140 FDE cie=00000140 pc=00000000000002d0..0000000000000304 + DW_CFA_advance_loc: 2 to 00000000000002d2 + DW_CFA_def_cfa_offset: 32 + DW_CFA_advance_loc: 6 to 00000000000002d8 + DW_CFA_offset: r1 (ra) at cfa-8 + DW_CFA_offset: r8 (s0) at cfa-16 + DW_CFA_offset: r9 (s1) at cfa-24 + DW_CFA_offset: r34 (ft2) at cfa-34052 + DW_CFA_restore: r8 (s0) + DW_CFA_advance_loc: 4 to 00000000000002dc + DW_CFA_restore: r9 (s1) + DW_CFA_advance_loc: 2 to 00000000000002de + DW_CFA_def_cfa_offset: 0 + DW_CFA_nop + DW_CFA_nop + DW_CFA_nop + DW_CFA_nop + DW_CFA_nop + +000001c0 000000000000000c ffffffff CIE + Version: 3 + Augmentation: "" + Code alignment factor: 1 + Data alignment factor: -4 + Return address column: 1 + + DW_CFA_def_cfa_register: r2 (sp) + DW_CFA_nop + +000001d0 0000000000000024 000001c0 FDE cie=000001c0 pc=0000000000000304..0000000000000364 + DW_CFA_advance_loc: 2 to 0000000000000306 + DW_CFA_def_cfa_offset: 32 + DW_CFA_advance_loc: 2 to 0000000000000308 + DW_CFA_offset: r1 (ra) at cfa-8 + DW_CFA_advance_loc1: 76 to 0000000000000354 + DW_CFA_remember_state + DW_CFA_restore: r1 (ra) + DW_CFA_advance_loc: 2 to 0000000000000356 + DW_CFA_def_cfa_offset: 0 + DW_CFA_advance_loc: 2 to 0000000000000358 + DW_CFA_restore_state + DW_CFA_nop + +000001f8 000000000000000c ffffffff CIE + Version: 3 + Augmentation: "" + Code alignment factor: 1 + Data alignment factor: -4 + Return address column: 1 + + DW_CFA_def_cfa_register: r2 (sp) + DW_CFA_nop + +00000208 0000000000000034 000001f8 FDE cie=000001f8 pc=0000000000000364..00000000000003f6 + DW_CFA_advance_loc: 2 to 0000000000000366 + DW_CFA_def_cfa_offset: 48 + DW_CFA_advance_loc: 10 to 0000000000000370 + DW_CFA_offset: r8 (s0) at cfa-16 + DW_CFA_offset: r18 (s2) at cfa-32 + DW_CFA_offset: r1 (ra) at cfa-8 + DW_CFA_offset: r9 (s1) at cfa-24 + DW_CFA_offset: r19 (s3) at cfa-40 + DW_CFA_advance_loc1: 98 to 00000000000003d2 + DW_CFA_remember_state + DW_CFA_restore: r1 (ra) + DW_CFA_advance_loc: 2 to 00000000000003d4 + DW_CFA_restore: r8 (s0) + DW_CFA_advance_loc: 2 to 00000000000003d6 + DW_CFA_restore: r9 (s1) + DW_CFA_advance_loc: 2 to 00000000000003d8 + DW_CFA_restore: r18 (s2) + DW_CFA_advance_loc: 2 to 00000000000003da + DW_CFA_restore: r19 (s3) + DW_CFA_advance_loc: 2 to 00000000000003dc + DW_CFA_def_cfa_offset: 0 + DW_CFA_advance_loc: 2 to 00000000000003de + DW_CFA_restore_state + DW_CFA_nop + +00000240 000000000000002c 000001f8 FDE cie=000001f8 pc=00000000000003f6..0000000000000430 + DW_CFA_advance_loc: 2 to 00000000000003f8 + DW_CFA_def_cfa_offset: 32 + DW_CFA_advance_loc: 2 to 00000000000003fa + DW_CFA_offset: r9 (s1) at cfa-24 + DW_CFA_advance_loc: 8 to 0000000000000402 + DW_CFA_offset: r1 (ra) at cfa-8 + DW_CFA_offset: r8 (s0) at cfa-16 + DW_CFA_advance_loc: 36 to 0000000000000426 + DW_CFA_restore: r1 (ra) + DW_CFA_advance_loc: 2 to 0000000000000428 + DW_CFA_restore: r8 (s0) + DW_CFA_advance_loc: 4 to 000000000000042c + DW_CFA_restore: r9 (s1) + DW_CFA_advance_loc: 2 to 000000000000042e + DW_CFA_def_cfa_offset: 0 + DW_CFA_nop + DW_CFA_nop + DW_CFA_nop + DW_CFA_nop + +00000270 000000000000000c ffffffff CIE + Version: 3 + Augmentation: "" + Code alignment factor: 1 + Data alignment factor: -4 + Return address column: 1 + + DW_CFA_def_cfa_register: r2 (sp) + DW_CFA_nop + +00000280 0000000000000014 00000270 FDE cie=00000270 pc=0000000000000430..000000000000043a + +00000298 0000000000000014 00000270 FDE cie=00000270 pc=000000000000043a..0000000000000444 + +000002b0 0000000000000014 00000270 FDE cie=00000270 pc=0000000000000444..000000000000044e + +000002c8 000000000000000c ffffffff CIE + Version: 3 + Augmentation: "" + Code alignment factor: 1 + Data alignment factor: -4 + Return address column: 1 + + DW_CFA_def_cfa_register: r2 (sp) + DW_CFA_nop + +000002d8 0000000000000024 000002c8 FDE cie=000002c8 pc=000000000000044e..0000000000000464 + DW_CFA_advance_loc: 2 to 0000000000000450 + DW_CFA_def_cfa_offset: 16 + DW_CFA_advance_loc: 2 to 0000000000000452 + DW_CFA_offset: r1 (ra) at cfa-8 + DW_CFA_remember_state + DW_CFA_restore: r1 (ra) + DW_CFA_advance_loc: 6 to 0000000000000458 + DW_CFA_def_cfa_offset: 0 + DW_CFA_nop + DW_CFA_nop + DW_CFA_nop + DW_CFA_nop + DW_CFA_nop + +00000300 0000000000000024 000002c8 FDE cie=000002c8 pc=0000000000000464..000000000000048a + DW_CFA_advance_loc: 2 to 0000000000000466 + DW_CFA_def_cfa_offset: 16 + DW_CFA_advance_loc: 4 to 000000000000046a + DW_CFA_offset: r8 (s0) at cfa-16 + DW_CFA_offset: r1 (ra) at cfa-8 + DW_CFA_val_offset: bad register: r8769 is cfa-36128 + DW_CFA_def_cfa_offset: 0 + DW_CFA_nop + +00000328 000000000000000c ffffffff CIE + Version: 3 + Augmentation: "" + Code alignment factor: 1 + Data alignment factor: -4 + Return address column: 1 + + DW_CFA_def_cfa_register: r2 (sp) + DW_CFA_nop + +00000338 0000000000000024 00000328 FDE cie=00000328 pc=000000000000048a..00000000000004b2 + DW_CFA_advance_loc: 2 to 000000000000048c + DW_CFA_def_cfa_offset: 16 + DW_CFA_advance_loc: 4 to 0000000000000490 + DW_CFA_offset: r8 (s0) at cfa-16 + DW_CFA_advance_loc: 6 to 0000000000000496 + DW_CFA_offset: r1 (ra) at cfa-8 + DW_CFA_nop + DW_CFA_nop + DW_CFA_nop + DW_CFA_nop + DW_CFA_nop + DW_CFA_nop + DW_CFA_nop + +00000360 0000000000000024 00000328 FDE cie=00000328 pc=00000000000004b2..00000000000004d0 + DW_CFA_advance_loc: 2 to 00000000000004b4 + DW_CFA_def_cfa_offset: 16 + DW_CFA_advance_loc: 4 to 00000000000004b8 + DW_CFA_offset: r8 (s0) at cfa-16 + DW_CFA_advance_loc: 6 to 00000000000004be + DW_CFA_offset: r1 (ra) at cfa-8 + DW_CFA_nop + DW_CFA_nop + DW_CFA_nop + DW_CFA_nop + DW_CFA_nop + DW_CFA_nop + DW_CFA_nop + +00000388 000000000000001c 00000328 FDE cie=00000328 pc=00000000000004d0..00000000000004dc + DW_CFA_advance_loc: 2 to 00000000000004d2 + DW_CFA_def_cfa_offset: 16 + DW_CFA_advance_loc: 2 to 00000000000004d4 + DW_CFA_offset: r1 (ra) at cfa-8 + DW_CFA_nop + DW_CFA_nop + +000003a8 000000000000000c ffffffff CIE + Version: 3 + Augmentation: "" + Code alignment factor: 1 + Data alignment factor: -4 + Return address column: 1 + + DW_CFA_def_cfa_register: r2 (sp) + DW_CFA_nop + +000003b8 0000000000000014 000003a8 FDE cie=000003a8 pc=00000000000004dc..00000000000004ee + +000003d0 000000000000000c ffffffff CIE + Version: 3 + Augmentation: "" + Code alignment factor: 1 + Data alignment factor: -4 + Return address column: 1 + + DW_CFA_def_cfa_register: r2 (sp) + DW_CFA_nop + +000003e0 0000000000000014 000003d0 FDE cie=000003d0 pc=00000000000004ee..000000000000050a + +000003f8 000000000000000c ffffffff CIE + Version: 3 + Augmentation: "" + Code alignment factor: 1 + Data alignment factor: -4 + Return address column: 1 + + DW_CFA_def_cfa_register: r2 (sp) + DW_CFA_nop + +00000408 0000000000000014 000003f8 FDE cie=000003f8 pc=000000000000050a..0000000000000514 + +00000420 000000000000000c ffffffff CIE + Version: 3 + Augmentation: "" + Code alignment factor: 1 + Data alignment factor: -4 + Return address column: 1 + + DW_CFA_def_cfa_register: r2 (sp) + DW_CFA_nop + +00000430 0000000000000014 00000420 FDE cie=00000420 pc=0000000000000514..000000000000052a + +00000448 000000000000000c ffffffff CIE + Version: 3 + Augmentation: "" + Code alignment factor: 1 + Data alignment factor: -4 + Return address column: 1 + + DW_CFA_def_cfa_register: r2 (sp) + DW_CFA_nop + +00000458 000000000000002c 00000448 FDE cie=00000448 pc=000000000000052a..0000000000000562 + DW_CFA_advance_loc: 2 to 000000000000052c + DW_CFA_def_cfa_offset: 32 + DW_CFA_advance_loc: 10 to 0000000000000536 + DW_CFA_offset: r8 (s0) at cfa-16 + DW_CFA_offset: r9 (s1) at cfa-24 + DW_CFA_offset: r1 (ra) at cfa-8 + DW_CFA_??? (User defined call frame op: 0x22) + +00000488 0000000000000024 00000448 FDE cie=00000448 pc=0000000000000562..0000000000000582 + DW_CFA_advance_loc: 2 to 0000000000000564 + DW_CFA_def_cfa_offset: 16 + DW_CFA_advance_loc: 4 to 0000000000000568 + DW_CFA_offset: r8 (s0) at cfa-16 + DW_CFA_offset: r1 (ra) at cfa-8 + DW_CFA_val_offset: bad register: r8513 is cfa-34080 + DW_CFA_def_cfa_offset: 0 + DW_CFA_nop + +000004b0 0000000000000024 00000448 FDE cie=00000448 pc=0000000000000582..00000000000005a2 + DW_CFA_advance_loc: 2 to 0000000000000584 + DW_CFA_def_cfa_offset: 16 + DW_CFA_advance_loc: 4 to 0000000000000588 + DW_CFA_offset: r1 (ra) at cfa-8 + DW_CFA_offset: r8 (s0) at cfa-16 + DW_CFA_restore: r12 (a2) + DW_CFA_restore: r1 (ra) + DW_CFA_advance_loc: 6 to 000000000000058e + DW_CFA_restore: r8 (s0) + DW_CFA_advance_loc: 6 to 0000000000000594 + DW_CFA_def_cfa_offset: 0 + DW_CFA_nop + +000004d8 0000000000000024 00000448 FDE cie=00000448 pc=00000000000005a2..00000000000005c4 + DW_CFA_advance_loc: 2 to 00000000000005a4 + DW_CFA_def_cfa_offset: 32 + DW_CFA_advance_loc: 4 to 00000000000005a8 + DW_CFA_offset: r1 (ra) at cfa-8 + DW_CFA_restore: r20 (s4) + DW_CFA_remember_state + DW_CFA_restore: r1 (ra) + DW_CFA_advance_loc: 2 to 00000000000005aa + DW_CFA_def_cfa_offset: 0 + DW_CFA_advance_loc: 2 to 00000000000005ac + DW_CFA_restore_state + DW_CFA_nop + DW_CFA_nop + +00000500 0000000000000034 00000448 FDE cie=00000448 pc=00000000000005c4..0000000000000632 + DW_CFA_advance_loc: 2 to 00000000000005c6 + DW_CFA_def_cfa_offset: 48 + DW_CFA_advance_loc: 10 to 00000000000005d0 + DW_CFA_offset: r9 (s1) at cfa-24 + DW_CFA_offset: r1 (ra) at cfa-8 + DW_CFA_offset: r8 (s0) at cfa-16 + DW_CFA_offset: r18 (s2) at cfa-32 + DW_CFA_offset: r19 (s3) at cfa-40 + DW_CFA_offset: r46 (fa4) at cfa-40 + DW_CFA_restore: r1 (ra) + DW_CFA_advance_loc: 4 to 00000000000005d4 + DW_CFA_restore: r8 (s0) + DW_CFA_advance_loc: 2 to 00000000000005d6 + DW_CFA_restore: r9 (s1) + DW_CFA_advance_loc: 2 to 00000000000005d8 + DW_CFA_restore: r18 (s2) + DW_CFA_advance_loc: 2 to 00000000000005da + DW_CFA_restore: r19 (s3) + DW_CFA_advance_loc: 2 to 00000000000005dc + DW_CFA_def_cfa_offset: 0 + DW_CFA_advance_loc: 2 to 00000000000005de + DW_CFA_restore_state + DW_CFA_nop + DW_CFA_nop + +00000538 000000000000002c 00000448 FDE cie=00000448 pc=0000000000000632..0000000000000688 + DW_CFA_advance_loc: 2 to 0000000000000634 + DW_CFA_def_cfa_offset: 32 + DW_CFA_advance_loc: 6 to 000000000000063a + DW_CFA_offset: r9 (s1) at cfa-24 + DW_CFA_offset: r1 (ra) at cfa-8 + DW_CFA_offset: r8 (s0) at cfa-16 + DW_CFA_advance_loc1: 68 to 000000000000067e + DW_CFA_restore: r1 (ra) + DW_CFA_advance_loc: 4 to 0000000000000682 + DW_CFA_restore: r8 (s0) + DW_CFA_advance_loc: 2 to 0000000000000684 + DW_CFA_restore: r9 (s1) + DW_CFA_advance_loc: 2 to 0000000000000686 + DW_CFA_def_cfa_offset: 0 + DW_CFA_nop + DW_CFA_nop + DW_CFA_nop + DW_CFA_nop + +00000568 0000000000000034 00000448 FDE cie=00000448 pc=0000000000000688..00000000000006fa + DW_CFA_advance_loc: 2 to 000000000000068a + DW_CFA_def_cfa_offset: 96 + DW_CFA_advance_loc: 4 to 000000000000068e + DW_CFA_offset: r8 (s0) at cfa-16 + DW_CFA_offset: r9 (s1) at cfa-24 + DW_CFA_advance_loc: 14 to 000000000000069c + DW_CFA_offset: r1 (ra) at cfa-8 + DW_CFA_offset: r18 (s2) at cfa-32 + DW_CFA_offset: r19 (s3) at cfa-40 + DW_CFA_advance_loc1: 80 to 00000000000006ec + DW_CFA_restore: r1 (ra) + DW_CFA_advance_loc: 4 to 00000000000006f0 + DW_CFA_restore: r8 (s0) + DW_CFA_advance_loc: 2 to 00000000000006f2 + DW_CFA_restore: r9 (s1) + DW_CFA_advance_loc: 2 to 00000000000006f4 + DW_CFA_restore: r18 (s2) + DW_CFA_advance_loc: 2 to 00000000000006f6 + DW_CFA_restore: r19 (s3) + DW_CFA_advance_loc: 2 to 00000000000006f8 + DW_CFA_def_cfa_offset: 0 + DW_CFA_nop + DW_CFA_nop + DW_CFA_nop + +000005a0 000000000000002c 00000448 FDE cie=00000448 pc=00000000000006fa..0000000000000760 + DW_CFA_advance_loc: 2 to 00000000000006fc + DW_CFA_def_cfa_offset: 32 + DW_CFA_advance_loc: 6 to 0000000000000702 + DW_CFA_offset: r1 (ra) at cfa-8 + DW_CFA_offset: r8 (s0) at cfa-16 + DW_CFA_offset: r9 (s1) at cfa-24 + DW_CFA_advance_loc1: 80 to 0000000000000752 + DW_CFA_remember_state + DW_CFA_restore: r1 (ra) + DW_CFA_advance_loc: 2 to 0000000000000754 + DW_CFA_restore: r8 (s0) + DW_CFA_advance_loc: 4 to 0000000000000758 + DW_CFA_restore: r9 (s1) + DW_CFA_advance_loc: 2 to 000000000000075a + DW_CFA_def_cfa_offset: 0 + DW_CFA_advance_loc: 2 to 000000000000075c + DW_CFA_restore_state + DW_CFA_nop + +000005d0 000000000000002c 00000448 FDE cie=00000448 pc=0000000000000760..000000000000079c + DW_CFA_advance_loc: 2 to 0000000000000762 + DW_CFA_def_cfa_offset: 32 + DW_CFA_advance_loc: 10 to 000000000000076c + DW_CFA_offset: r8 (s0) at cfa-16 + DW_CFA_offset: r9 (s1) at cfa-24 + DW_CFA_offset: r1 (ra) at cfa-8 + DW_CFA_restore: r36 (ft4) + DW_CFA_remember_state + DW_CFA_restore: r1 (ra) + DW_CFA_advance_loc: 2 to 000000000000076e + DW_CFA_restore: r8 (s0) + DW_CFA_advance_loc: 2 to 0000000000000770 + DW_CFA_restore: r9 (s1) + DW_CFA_advance_loc: 2 to 0000000000000772 + DW_CFA_def_cfa_offset: 0 + DW_CFA_advance_loc: 2 to 0000000000000774 + DW_CFA_restore_state + DW_CFA_nop + DW_CFA_nop + +00000600 0000000000000014 00000448 FDE cie=00000448 pc=000000000000079c..00000000000007aa + +00000618 0000000000000014 00000448 FDE cie=00000448 pc=00000000000007aa..00000000000007b6 + +00000630 0000000000000024 00000448 FDE cie=00000448 pc=00000000000007b6..00000000000007d6 + DW_CFA_advance_loc: 2 to 00000000000007b8 + DW_CFA_def_cfa_offset: 16 + DW_CFA_advance_loc: 4 to 00000000000007bc + DW_CFA_offset: r8 (s0) at cfa-16 + DW_CFA_offset: r1 (ra) at cfa-8 + DW_CFA_offset: r20 (s4) at cfa-34052 + DW_CFA_restore: r8 (s0) + DW_CFA_advance_loc: 2 to 00000000000007be + DW_CFA_def_cfa_offset: 0 + DW_CFA_nop + +00000658 0000000000000014 00000448 FDE cie=00000448 pc=00000000000007d6..00000000000007de + +00000670 0000000000000014 00000448 FDE cie=00000448 pc=00000000000007de..00000000000007e6 + +00000688 0000000000000024 00000448 FDE cie=00000448 pc=00000000000007e6..000000000000083a + DW_CFA_advance_loc: 2 to 00000000000007e8 + DW_CFA_def_cfa_offset: 16 + DW_CFA_advance_loc: 4 to 00000000000007ec + DW_CFA_offset: r8 (s0) at cfa-16 + DW_CFA_offset: r1 (ra) at cfa-8 + DW_CFA_advance_loc1: 72 to 0000000000000834 + DW_CFA_restore: r1 (ra) + DW_CFA_advance_loc: 2 to 0000000000000836 + DW_CFA_restore: r8 (s0) + DW_CFA_advance_loc: 2 to 0000000000000838 + DW_CFA_def_cfa_offset: 0 + +000006b0 0000000000000024 00000448 FDE cie=00000448 pc=000000000000083a..000000000000088e + DW_CFA_advance_loc: 2 to 000000000000083c + DW_CFA_def_cfa_offset: 16 + DW_CFA_advance_loc: 4 to 0000000000000840 + DW_CFA_offset: r8 (s0) at cfa-16 + DW_CFA_offset: r1 (ra) at cfa-8 + DW_CFA_advance_loc1: 72 to 0000000000000888 + DW_CFA_restore: r1 (ra) + DW_CFA_advance_loc: 2 to 000000000000088a + DW_CFA_restore: r8 (s0) + DW_CFA_advance_loc: 2 to 000000000000088c + DW_CFA_def_cfa_offset: 0 + +000006d8 0000000000000024 00000448 FDE cie=00000448 pc=000000000000088e..00000000000008e6 + DW_CFA_advance_loc: 2 to 0000000000000890 + DW_CFA_def_cfa_offset: 32 + DW_CFA_advance_loc: 6 to 0000000000000896 + DW_CFA_offset: r8 (s0) at cfa-16 + DW_CFA_offset: r1 (ra) at cfa-8 + DW_CFA_advance_loc1: 74 to 00000000000008e0 + DW_CFA_restore: r1 (ra) + DW_CFA_advance_loc: 2 to 00000000000008e2 + DW_CFA_restore: r8 (s0) + DW_CFA_advance_loc: 2 to 00000000000008e4 + DW_CFA_def_cfa_offset: 0 + +00000700 0000000000000024 00000448 FDE cie=00000448 pc=00000000000008e6..0000000000000936 + DW_CFA_advance_loc: 2 to 00000000000008e8 + DW_CFA_def_cfa_offset: 16 + DW_CFA_advance_loc: 4 to 00000000000008ec + DW_CFA_offset: r1 (ra) at cfa-8 + DW_CFA_offset: r8 (s0) at cfa-16 + DW_CFA_advance_loc1: 66 to 000000000000092e + DW_CFA_restore: r1 (ra) + DW_CFA_advance_loc: 2 to 0000000000000930 + DW_CFA_restore: r8 (s0) + DW_CFA_advance_loc: 4 to 0000000000000934 + DW_CFA_def_cfa_offset: 0 + +00000728 000000000000002c 00000448 FDE cie=00000448 pc=0000000000000936..0000000000000978 + DW_CFA_advance_loc: 2 to 0000000000000938 + DW_CFA_def_cfa_offset: 32 + DW_CFA_advance_loc: 10 to 0000000000000942 + DW_CFA_offset: r8 (s0) at cfa-16 + DW_CFA_offset: r9 (s1) at cfa-24 + DW_CFA_offset: r1 (ra) at cfa-8 + DW_CFA_??? (User defined call frame op: 0x2a) + +00000758 000000000000002c 00000448 FDE cie=00000448 pc=0000000000000978..00000000000009a2 + DW_CFA_advance_loc4: 2286297102 to 0000000088462986 + DW_CFA_advance_loc4: 42010249 to 000000008ac7300f + DW_CFA_restore: r20 (s4) + DW_CFA_restore: r1 (ra) + DW_CFA_advance_loc: 2 to 000000008ac73011 + DW_CFA_restore: r8 (s0) + DW_CFA_advance_loc: 2 to 000000008ac73013 + DW_CFA_restore: r9 (s1) + DW_CFA_advance_loc: 2 to 000000008ac73015 + DW_CFA_def_cfa_offset: 0 + DW_CFA_nop + DW_CFA_nop + DW_CFA_nop + DW_CFA_nop + DW_CFA_nop + +00000788 000000000000000c ffffffff CIE + Version: 3 + Augmentation: "" + Code alignment factor: 1 + Data alignment factor: -4 + Return address column: 1 + + DW_CFA_def_cfa_register: r2 (sp) + DW_CFA_nop + +00000798 0000000000000014 00000788 FDE cie=00000788 pc=00000000000009a2..00000000000009c8 + +000007b0 000000000000000c ffffffff CIE + Version: 3 + Augmentation: "" + Code alignment factor: 1 + Data alignment factor: -4 + Return address column: 1 + + DW_CFA_def_cfa_register: r2 (sp) + DW_CFA_nop + +000007c0 0000000000000014 000007b0 FDE cie=000007b0 pc=00000000000009c8..00000000000009f6 + +000007d8 000000000000000c ffffffff CIE + Version: 3 + Augmentation: "" + Code alignment factor: 1 + Data alignment factor: -4 + Return address column: 1 + + DW_CFA_def_cfa_register: r2 (sp) + DW_CFA_nop + +000007e8 0000000000000024 000007d8 FDE cie=000007d8 pc=00000000000009f6..0000000000000a62 + DW_CFA_advance_loc: 2 to 00000000000009f8 + DW_CFA_def_cfa_offset: 16 + DW_CFA_advance_loc: 4 to 00000000000009fc + DW_CFA_offset: r1 (ra) at cfa-8 + DW_CFA_advance_loc1: 82 to 0000000000000a4e + DW_CFA_remember_state + DW_CFA_restore: r1 (ra) + DW_CFA_advance_loc: 2 to 0000000000000a50 + DW_CFA_def_cfa_offset: 0 + DW_CFA_advance_loc: 2 to 0000000000000a52 + DW_CFA_restore_state + DW_CFA_nop + +00000810 000000000000000c ffffffff CIE + Version: 3 + Augmentation: "" + Code alignment factor: 1 + Data alignment factor: -4 + Return address column: 1 + + DW_CFA_def_cfa_register: r2 (sp) + DW_CFA_nop + +00000820 0000000000000024 00000810 FDE cie=00000810 pc=0000000000000a62..0000000000000aa6 + DW_CFA_remember_state + DW_CFA_def_cfa_offset: 16 + DW_CFA_restore: r22 (s6) + DW_CFA_offset: r1 (ra) at cfa-8 + DW_CFA_restore: r8 (s0) + DW_CFA_def_cfa_offset: 0 + DW_CFA_restore: r1 (ra) + DW_CFA_nop + DW_CFA_nop + DW_CFA_nop + DW_CFA_nop + DW_CFA_nop + DW_CFA_nop + +00000848 000000000000002c 00000810 FDE cie=00000810 pc=0000000000000aa6..0000000000000aea + DW_CFA_advance_loc: 2 to 0000000000000aa8 + DW_CFA_def_cfa_offset: 16 + DW_CFA_advance_loc: 4 to 0000000000000aac + DW_CFA_offset: r1 (ra) at cfa-8 + DW_CFA_offset: r8 (s0) at cfa-16 + DW_CFA_offset: r24 (s8) at cfa-40 + DW_CFA_restore: r1 (ra) + DW_CFA_advance_loc: 4 to 0000000000000ab0 + DW_CFA_restore: r8 (s0) + DW_CFA_advance_loc: 2 to 0000000000000ab2 + DW_CFA_def_cfa_offset: 0 + DW_CFA_advance_loc: 2 to 0000000000000ab4 + DW_CFA_restore_state + DW_CFA_nop + DW_CFA_nop + DW_CFA_nop + DW_CFA_nop + DW_CFA_nop + DW_CFA_nop + +00000878 000000000000000c ffffffff CIE + Version: 3 + Augmentation: "" + Code alignment factor: 1 + Data alignment factor: -4 + Return address column: 1 + + DW_CFA_def_cfa_register: r2 (sp) + DW_CFA_nop + +00000888 0000000000000024 00000878 FDE cie=00000878 pc=0000000000000aea..0000000000000b2c + DW_CFA_offset: r4 (tp) at cfa-56 + DW_CFA_expression: + DW_CFA_advance_loc: 8 to 0000000000000af2 + DW_CFA_def_cfa_offset: 0 + DW_CFA_restore: r1 (ra) + DW_CFA_nop + DW_CFA_nop + DW_CFA_nop + DW_CFA_nop + DW_CFA_nop + DW_CFA_nop + +000008b0 0000000000000024 00000878 FDE cie=00000878 pc=0000000000000b2c..0000000000000b5a + DW_CFA_advance_loc: 2 to 0000000000000b2e + DW_CFA_def_cfa_offset: 16 + DW_CFA_advance_loc: 4 to 0000000000000b32 + DW_CFA_offset: r8 (s0) at cfa-16 + DW_CFA_offset: r1 (ra) at cfa-8 + DW_CFA_??? (User defined call frame op: 0x20) + +000008d8 000000000000000c ffffffff CIE + Version: 3 + Augmentation: "" + Code alignment factor: 1 + Data alignment factor: -4 + Return address column: 1 + + DW_CFA_def_cfa_register: r2 (sp) + DW_CFA_nop + +000008e8 0000000000000014 000008d8 FDE cie=000008d8 pc=0000000000000b5a..0000000000000b76 + +00000900 0000000000000024 000008d8 FDE cie=000008d8 pc=0000000000000b76..0000000000000ba4 + DW_CFA_advance_loc: 2 to 0000000000000b78 + DW_CFA_def_cfa_offset: 16 + DW_CFA_advance_loc: 4 to 0000000000000b7c + DW_CFA_offset: r8 (s0) at cfa-16 + DW_CFA_offset: r1 (ra) at cfa-8 + DW_CFA_restore: r32 (ft0) + DW_CFA_restore: r1 (ra) + DW_CFA_advance_loc: 4 to 0000000000000b80 + DW_CFA_restore: r8 (s0) + DW_CFA_advance_loc: 2 to 0000000000000b82 + DW_CFA_def_cfa_offset: 0 + DW_CFA_nop + +00000928 000000000000000c ffffffff CIE + Version: 3 + Augmentation: "" + Code alignment factor: 1 + Data alignment factor: -4 + Return address column: 1 + + DW_CFA_def_cfa_register: r2 (sp) + DW_CFA_nop + +00000938 000000000000002c 00000928 FDE cie=00000928 pc=0000000000000ba4..0000000000000bea + DW_CFA_advance_loc: 2 to 0000000000000ba6 + DW_CFA_def_cfa_offset: 16 + DW_CFA_advance_loc: 4 to 0000000000000baa + DW_CFA_offset: r1 (ra) at cfa-8 + DW_CFA_offset: r8 (s0) at cfa-16 + DW_CFA_offset: r44 (fa2) at cfa-40 + DW_CFA_restore: r1 (ra) + DW_CFA_advance_loc: 2 to 0000000000000bac + DW_CFA_restore: r8 (s0) + DW_CFA_advance_loc: 2 to 0000000000000bae + DW_CFA_def_cfa_offset: 0 + DW_CFA_advance_loc: 2 to 0000000000000bb0 + DW_CFA_restore_state + DW_CFA_nop + DW_CFA_nop + DW_CFA_nop + DW_CFA_nop + DW_CFA_nop + DW_CFA_nop + +00000968 000000000000002c 00000928 FDE cie=00000928 pc=0000000000000bea..0000000000000c30 + DW_CFA_advance_loc: 2 to 0000000000000bec + DW_CFA_def_cfa_offset: 16 + DW_CFA_advance_loc: 4 to 0000000000000bf0 + DW_CFA_offset: r1 (ra) at cfa-8 + DW_CFA_offset: r8 (s0) at cfa-16 + DW_CFA_advance_loc: 44 to 0000000000000c1c + DW_CFA_remember_state + DW_CFA_restore: r1 (ra) + DW_CFA_advance_loc: 2 to 0000000000000c1e + DW_CFA_restore: r8 (s0) + DW_CFA_advance_loc: 2 to 0000000000000c20 + DW_CFA_def_cfa_offset: 0 + DW_CFA_advance_loc: 2 to 0000000000000c22 + DW_CFA_restore_state + DW_CFA_nop + DW_CFA_nop + DW_CFA_nop + DW_CFA_nop + DW_CFA_nop + DW_CFA_nop + +00000998 000000000000000c ffffffff CIE + Version: 3 + Augmentation: "" + Code alignment factor: 1 + Data alignment factor: -4 + Return address column: 1 + + DW_CFA_def_cfa_register: r2 (sp) + DW_CFA_nop + +000009a8 000000000000002c 00000998 FDE cie=00000998 pc=0000000000000c30..0000000000000c94 + DW_CFA_advance_loc: 2 to 0000000000000c32 + DW_CFA_def_cfa_offset: 32 + DW_CFA_advance_loc: 6 to 0000000000000c38 + DW_CFA_offset: r9 (s1) at cfa-24 + DW_CFA_offset: r1 (ra) at cfa-8 + DW_CFA_offset: r8 (s0) at cfa-16 + DW_CFA_??? (User defined call frame op: 0x34) + +000009d8 0000000000000034 00000998 FDE cie=00000998 pc=0000000000000c94..0000000000000d0e + DW_CFA_advance_loc: 2 to 0000000000000c96 + DW_CFA_def_cfa_offset: 32 + DW_CFA_advance_loc: 8 to 0000000000000c9e + DW_CFA_offset: r18 (s2) at cfa-32 + DW_CFA_offset: r1 (ra) at cfa-8 + DW_CFA_offset: r8 (s0) at cfa-16 + DW_CFA_offset: r9 (s1) at cfa-24 + DW_CFA_advance_loc1: 70 to 0000000000000ce4 + DW_CFA_remember_state + DW_CFA_restore: r1 (ra) + DW_CFA_advance_loc: 2 to 0000000000000ce6 + DW_CFA_restore: r8 (s0) + DW_CFA_advance_loc: 2 to 0000000000000ce8 + DW_CFA_restore: r9 (s1) + DW_CFA_advance_loc: 4 to 0000000000000cec + DW_CFA_restore: r18 (s2) + DW_CFA_advance_loc: 2 to 0000000000000cee + DW_CFA_def_cfa_offset: 0 + DW_CFA_advance_loc: 2 to 0000000000000cf0 + DW_CFA_restore_state + DW_CFA_nop + DW_CFA_nop + DW_CFA_nop + DW_CFA_nop + DW_CFA_nop + +00000a10 000000000000000c ffffffff CIE + Version: 3 + Augmentation: "" + Code alignment factor: 1 + Data alignment factor: -4 + Return address column: 1 + + DW_CFA_def_cfa_register: r2 (sp) + DW_CFA_nop + +00000a20 000000000000001c 00000a10 FDE cie=00000a10 pc=0000000000000d0e..0000000000000d24 + DW_CFA_advance_loc: 2 to 0000000000000d10 + DW_CFA_def_cfa_offset: 16 + DW_CFA_advance_loc: 4 to 0000000000000d14 + DW_CFA_offset: r1 (ra) at cfa-8 + DW_CFA_nop + DW_CFA_nop + +00000a40 000000000000000c ffffffff CIE + Version: 3 + Augmentation: "" + Code alignment factor: 1 + Data alignment factor: -4 + Return address column: 1 + + DW_CFA_def_cfa_register: r2 (sp) + DW_CFA_nop + +00000a50 0000000000000024 00000a40 FDE cie=00000a40 pc=0000000000000d24..0000000000000d42 + DW_CFA_advance_loc: 2 to 0000000000000d26 + DW_CFA_def_cfa_offset: 16 + DW_CFA_advance_loc: 4 to 0000000000000d2a + DW_CFA_offset: r8 (s0) at cfa-16 + DW_CFA_advance_loc: 6 to 0000000000000d30 + DW_CFA_offset: r1 (ra) at cfa-8 + DW_CFA_nop + DW_CFA_nop + DW_CFA_nop + DW_CFA_nop + DW_CFA_nop + DW_CFA_nop + DW_CFA_nop + +00000a78 000000000000000c ffffffff CIE + Version: 3 + Augmentation: "" + Code alignment factor: 1 + Data alignment factor: -4 + Return address column: 1 + + DW_CFA_def_cfa_register: r2 (sp) + DW_CFA_nop + +00000a88 000000000000001c 00000a78 FDE cie=00000a78 pc=0000000000000d42..0000000000000d50 + DW_CFA_advance_loc: 2 to 0000000000000d44 + DW_CFA_def_cfa_offset: 16 + DW_CFA_advance_loc: 4 to 0000000000000d48 + DW_CFA_offset: r1 (ra) at cfa-8 + DW_CFA_nop + DW_CFA_nop + +00000aa8 000000000000000c ffffffff CIE + Version: 3 + Augmentation: "" + Code alignment factor: 1 + Data alignment factor: -4 + Return address column: 1 + + DW_CFA_def_cfa_register: r2 (sp) + DW_CFA_nop + +00000ab8 0000000000000014 00000aa8 FDE cie=00000aa8 pc=0000000000000d50..0000000000000d68 + +00000ad0 000000000000000c ffffffff CIE + Version: 3 + Augmentation: "" + Code alignment factor: 1 + Data alignment factor: -4 + Return address column: 1 + + DW_CFA_def_cfa_register: r2 (sp) + DW_CFA_nop + +00000ae0 0000000000000014 00000ad0 FDE cie=00000ad0 pc=0000000000000d68..0000000000000d74 + +00000af8 000000000000000c ffffffff CIE + Version: 3 + Augmentation: "" + Code alignment factor: 1 + Data alignment factor: -4 + Return address column: 1 + + DW_CFA_def_cfa_register: r2 (sp) + DW_CFA_nop + +00000b08 0000000000000014 00000af8 FDE cie=00000af8 pc=0000000000000d74..0000000000000d88 + +00000b20 000000000000000c ffffffff CIE + Version: 3 + Augmentation: "" + Code alignment factor: 1 + Data alignment factor: -4 + Return address column: 1 + + DW_CFA_def_cfa_register: r2 (sp) + DW_CFA_nop + +00000b30 0000000000000014 00000b20 FDE cie=00000b20 pc=0000000000000d88..0000000000000d94 + +00000b48 000000000000000c ffffffff CIE + Version: 3 + Augmentation: "" + Code alignment factor: 1 + Data alignment factor: -4 + Return address column: 1 + + DW_CFA_def_cfa_register: r2 (sp) + DW_CFA_nop + +00000b58 0000000000000014 00000b48 FDE cie=00000b48 pc=0000000000000d94..0000000000000dac + +00000b70 000000000000000c ffffffff CIE + Version: 3 + Augmentation: "" + Code alignment factor: 1 + Data alignment factor: -4 + Return address column: 1 + + DW_CFA_def_cfa_register: r2 (sp) + DW_CFA_nop + +00000b80 0000000000000014 00000b70 FDE cie=00000b70 pc=0000000000000dac..0000000000000dba + +00000b98 000000000000000c ffffffff CIE + Version: 3 + Augmentation: "" + Code alignment factor: 1 + Data alignment factor: -4 + Return address column: 1 + + DW_CFA_def_cfa_register: r2 (sp) + DW_CFA_nop + +00000ba8 0000000000000014 00000b98 FDE cie=00000b98 pc=0000000000000dba..0000000000000dd0 + +00000bc0 000000000000000c ffffffff CIE + Version: 3 + Augmentation: "" + Code alignment factor: 1 + Data alignment factor: -4 + Return address column: 1 + + DW_CFA_def_cfa_register: r2 (sp) + DW_CFA_nop + +00000bd0 0000000000000014 00000bc0 FDE cie=00000bc0 pc=0000000000000dd0..0000000000000dde + +00000be8 000000000000000c ffffffff CIE + Version: 3 + Augmentation: "" + Code alignment factor: 1 + Data alignment factor: -4 + Return address column: 1 + + DW_CFA_def_cfa_register: r2 (sp) + DW_CFA_nop + +00000bf8 0000000000000014 00000be8 FDE cie=00000be8 pc=0000000000000dde..0000000000000dec + +00000c10 000000000000000c ffffffff CIE + Version: 3 + Augmentation: "" + Code alignment factor: 1 + Data alignment factor: -4 + Return address column: 1 + + DW_CFA_def_cfa_register: r2 (sp) + DW_CFA_nop + +00000c20 0000000000000014 00000c10 FDE cie=00000c10 pc=0000000000000dec..0000000000000dfa + +00000c38 000000000000000c ffffffff CIE + Version: 3 + Augmentation: "" + Code alignment factor: 1 + Data alignment factor: -4 + Return address column: 1 + + DW_CFA_def_cfa_register: r2 (sp) + DW_CFA_nop + +00000c48 0000000000000014 00000c38 FDE cie=00000c38 pc=0000000000000dfa..0000000000000e08 + +00000c60 000000000000000c ffffffff CIE + Version: 3 + Augmentation: "" + Code alignment factor: 1 + Data alignment factor: -4 + Return address column: 1 + + DW_CFA_def_cfa_register: r2 (sp) + DW_CFA_nop + +00000c70 0000000000000014 00000c60 FDE cie=00000c60 pc=0000000000000e08..0000000000000e1e + diff --git a/init.S b/init.S new file mode 100644 index 0000000000000..fc9b3811e6a06 --- /dev/null +++ b/init.S @@ -0,0 +1,298930 @@ + +../apps/bin/init: file format elf64-littleriscv + +SYMBOL TABLE: +0000000000000000 l d .text 0000000000000000 .text +000000000000a840 l d .rodata 0000000000000000 .rodata +0000000000000000 l d .srodata.g_nullstring 0000000000000000 .srodata.g_nullstring +0000000000000000 l d .srodata.cst8 0000000000000000 .srodata.cst8 +0000000000000000 l d .srodata.g_arg_separator 0000000000000000 .srodata.g_arg_separator +0000000000000000 l d .srodata.g_exitstatus 0000000000000000 .srodata.g_exitstatus +0000000000000000 l d .srodata.g_failure 0000000000000000 .srodata.g_failure +0000000000000000 l d .srodata.g_line_separator 0000000000000000 .srodata.g_line_separator +0000000000000000 l d .srodata.g_nshprompt 0000000000000000 .srodata.g_nshprompt +0000000000000000 l d .srodata.g_quote_separator 0000000000000000 .srodata.g_quote_separator +0000000000000000 l d .srodata.g_redirect1 0000000000000000 .srodata.g_redirect1 +0000000000000000 l d .srodata.g_redirect2 0000000000000000 .srodata.g_redirect2 +0000000000000000 l d .srodata.g_success 0000000000000000 .srodata.g_success +0000000000000000 l d .srodata.g_token_separator 0000000000000000 .srodata.g_token_separator +0000000000000000 l d .srodata.g_erasetoeol 0000000000000000 .srodata.g_erasetoeol +0000000000000000 l d .srodata.g_home 0000000000000000 .srodata.g_home +0000000000000000 l d .srodata.g_oldpwd 0000000000000000 .srodata.g_oldpwd +0000000000000000 l d .srodata.g_pwd 0000000000000000 .srodata.g_pwd +0000000000000000 l d .srodata.cst4 0000000000000000 .srodata.cst4 +0000000000000000 l d .srodata.g_flags 0000000000000000 .srodata.g_flags +0000000000000000 l d .srodata.g_groupid 0000000000000000 .srodata.g_groupid +0000000000000000 l d .srodata.g_state 0000000000000000 .srodata.g_state +0000000000000000 l d .srodata.g_type 0000000000000000 .srodata.g_type +0000000000000000 l d .srodata.g_unknown 0000000000000000 .srodata.g_unknown +0000000000000008 l d .data 0000000000000000 .data +0000000000000000 l d .sdata.__dso_handle 0000000000000000 .sdata.__dso_handle +0000000000000000 l d .sdata.g_syslog_mask 0000000000000000 .sdata.g_syslog_mask +0000000000000001 l d .ctors 0000000000000000 .ctors +0000000000000001 l d .dtors 0000000000000000 .dtors +0000000000000008 l d .bss 0000000000000000 .bss +0000000000000000 l d .comment 0000000000000000 .comment +0000000000000000 l d .riscv.attributes 0000000000000000 .riscv.attributes +0000000000000000 l d .debug_abbrev 0000000000000000 .debug_abbrev +0000000000000000 l d .debug_info 0000000000000000 .debug_info +0000000000000000 l d .debug_line 0000000000000000 .debug_line +0000000000000000 l d .debug_aranges 0000000000000000 .debug_aranges +0000000000000000 l d .debug_loc 0000000000000000 .debug_loc +0000000000000000 l d .debug_ranges 0000000000000000 .debug_ranges +0000000000000000 l d .debug_str 0000000000000000 .debug_str +0000000000000000 l d .debug_frame 0000000000000000 .debug_frame +0000000000000000 l df *ABS* 0000000000000000 crt0.c +0000000000000030 l F .text 000000000000001a sig_trampoline +0000000000000054 l .text 0000000000000000 .L0 +0000000000000000 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000000092 l .debug_str 0000000000000000 .LASF32 +000000000000000e l .debug_str 0000000000000000 .LASF33 +0000000000000242 l .debug_str 0000000000000000 .LASF34 +0000000000000000 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000000000 l .debug_line 0000000000000000 .Ldebug_line0 +000000000000021b l .debug_str 0000000000000000 .LASF0 +0000000000000239 l .debug_str 0000000000000000 .LASF8 +0000000000000142 l .debug_str 0000000000000000 .LASF1 +0000000000000158 l .debug_str 0000000000000000 .LASF2 +0000000000000076 l .debug_str 0000000000000000 .LASF3 +0000000000000184 l .debug_str 0000000000000000 .LASF4 +00000000000001ff l .debug_str 0000000000000000 .LASF5 +0000000000000064 l .debug_str 0000000000000000 .LASF6 +0000000000000191 l .debug_str 0000000000000000 .LASF7 +00000000000001a8 l .debug_str 0000000000000000 .LASF9 +0000000000000009 l .debug_str 0000000000000000 .LASF10 +00000000000001c5 l .debug_str 0000000000000000 .LASF11 +000000000000020f l .debug_str 0000000000000000 .LASF12 +0000000000000208 l .debug_str 0000000000000000 .LASF35 +000000000000005a l .debug_str 0000000000000000 .LASF13 +000000000000001c l .debug_str 0000000000000000 .LASF14 +00000000000001d3 l .debug_str 0000000000000000 .LASF24 +0000000000000000 l .debug_str 0000000000000000 .LASF15 +0000000000000150 l .debug_str 0000000000000000 .LASF16 +0000000000000051 l .debug_str 0000000000000000 .LASF17 +0000000000000089 l .debug_str 0000000000000000 .LASF18 +000000000000017c l .debug_str 0000000000000000 .LASF19 +00000000000001eb l .debug_str 0000000000000000 .LASF20 +00000000000001db l .debug_str 0000000000000000 .LASF21 +0000000000000227 l .debug_str 0000000000000000 .LASF22 +0000000000000162 l .debug_str 0000000000000000 .LASF23 +0000000000000035 l .debug_str 0000000000000000 .LASF25 +000000000000022d l .debug_str 0000000000000000 .LASF26 +00000000000001ba l .debug_str 0000000000000000 .LASF27 +0000000000000047 l .debug_str 0000000000000000 .LASF36 +0000000000000175 l .debug_str 0000000000000000 .LASF37 +000000000000004a l .text 0000000000000000 .LFB15 +000000000000006e l .text 0000000000000000 .LFE15 +00000000000001b5 l .debug_str 0000000000000000 .LASF28 +0000000000000000 l .debug_loc 0000000000000000 .LLST0 +00000000000001fa l .debug_str 0000000000000000 .LASF29 +0000000000000039 l .debug_loc 0000000000000000 .LLST1 +0000000000000072 l .debug_loc 0000000000000000 .LLST2 +0000000000000066 l .text 0000000000000000 .LVL1 +000000000000006e l .text 0000000000000000 .LVL2 +0000000000000026 l .debug_str 0000000000000000 .LASF38 +0000000000000030 l .text 0000000000000000 .LFB14 +000000000000004a l .text 0000000000000000 .LFE14 +00000000000001b0 l .debug_str 0000000000000000 .LASF30 +00000000000001f5 l .debug_str 0000000000000000 .LASF31 +000000000000004a l .text 0000000000000000 .LVL0 +0000000000000000 l .debug_info 0000000000000000 .Ldebug_info0 +0000000000000030 l .text 0000000000000000 .L0 +000000000000004a l .text 0000000000000000 .L0 +0000000000000030 l .text 0000000000000000 .L0 +000000000000004a l .text 0000000000000000 .L0 +000000000000004a l .text 0000000000000000 .L0 +000000000000004a l .text 0000000000000000 .L0 +000000000000004a l .text 0000000000000000 .L0 +000000000000004a l .text 0000000000000000 .L0 +000000000000004c l .text 0000000000000000 .L0 +0000000000000050 l .text 0000000000000000 .L0 +0000000000000052 l .text 0000000000000000 .L0 +000000000000005e l .text 0000000000000000 .L0 +000000000000005e l .text 0000000000000000 .L0 +0000000000000066 l .text 0000000000000000 .L0 +000000000000006e l .text 0000000000000000 .L0 +0000000000000000 l .debug_frame 0000000000000000 .L0 +0000000000000030 l .text 0000000000000000 .L0 +000000000000004a l .text 0000000000000000 .L0 +000000000000004a l .text 0000000000000000 .L0 +000000000000006e l .text 0000000000000000 .L0 +0000000000000052 l .text 0000000000000000 .L0 +000000000000004c l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 nsh_main.c +000000000000a940 l .rodata 0000000000000000 .LC0 +00000000000000b4 l .text 0000000000000000 .L0 +000000000000009e l .text 0000000000000000 .L2 +0000000000000140 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +00000000000003a1 l .debug_str 0000000000000000 .LASF20 +00000000000002e5 l .debug_str 0000000000000000 .LASF21 +00000000000002ac l .debug_str 0000000000000000 .LASF22 +0000000000000030 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000000015e l .debug_line 0000000000000000 .Ldebug_line0 +0000000000000341 l .debug_str 0000000000000000 .LASF0 +0000000000000299 l .debug_str 0000000000000000 .LASF1 +0000000000000379 l .debug_str 0000000000000000 .LASF2 +000000000000032e l .debug_str 0000000000000000 .LASF3 +000000000000028c l .debug_str 0000000000000000 .LASF4 +00000000000002f5 l .debug_str 0000000000000000 .LASF5 +000000000000027a l .debug_str 0000000000000000 .LASF6 +00000000000002ce l .debug_str 0000000000000000 .LASF7 +00000000000002f0 l .debug_str 0000000000000000 .LASF8 +0000000000000313 l .debug_str 0000000000000000 .LASF9 +000000000000036d l .debug_str 0000000000000000 .LASF10 +000000000000034d l .debug_str 0000000000000000 .LASF23 +0000000000000392 l .debug_str 0000000000000000 .LASF24 +000000000000030d l .debug_str 0000000000000000 .LASF11 +00000000000002a7 l .debug_str 0000000000000000 .LASF25 +000000000000006e l .text 0000000000000000 .LFB6 +00000000000000d2 l .text 0000000000000000 .LFE6 +0000000000000321 l .debug_str 0000000000000000 .LASF12 +0000000000000095 l .debug_loc 0000000000000000 .LLST0 +0000000000000359 l .debug_str 0000000000000000 .LASF13 +00000000000000ce l .debug_loc 0000000000000000 .LLST1 +0000000000000451 l .debug_str 0000000000000000 .LASF14 +000000000000011a l .debug_loc 0000000000000000 .LLST2 +0000000000000086 l .text 0000000000000000 .LVL3 +000000000000009e l .text 0000000000000000 .LVL4 +00000000000000a6 l .text 0000000000000000 .LVL5 +00000000000000b2 l .text 0000000000000000 .LVL6 +00000000000000c6 l .text 0000000000000000 .LVL8 +000000000000035e l .debug_str 0000000000000000 .LASF15 +00000000000002fe l .debug_str 0000000000000000 .LASF16 +0000000000000383 l .debug_str 0000000000000000 .LASF17 +000000000000026a l .debug_str 0000000000000000 .LASF18 +0000000000000326 l .debug_str 0000000000000000 .LASF19 +000000000000006e l .text 0000000000000000 .LVL0 +000000000000007a l .text 0000000000000000 .LVL1 +000000000000007c l .text 0000000000000000 .LVL2 +00000000000000cc l .text 0000000000000000 .LVL9 +00000000000000b4 l .text 0000000000000000 .LVL7 +000000000000026e l .debug_info 0000000000000000 .Ldebug_info0 +000000000000006e l .text 0000000000000000 .L0 +000000000000006e l .text 0000000000000000 .L0 +000000000000006e l .text 0000000000000000 .L0 +000000000000006e l .text 0000000000000000 .L0 +000000000000006e l .text 0000000000000000 .L0 +0000000000000078 l .text 0000000000000000 .L0 +000000000000007c l .text 0000000000000000 .L0 +000000000000007e l .text 0000000000000000 .L0 +0000000000000086 l .text 0000000000000000 .L0 +0000000000000086 l .text 0000000000000000 .L0 +0000000000000090 l .text 0000000000000000 .L0 +0000000000000090 l .text 0000000000000000 .L0 +0000000000000094 l .text 0000000000000000 .L0 +0000000000000096 l .text 0000000000000000 .L0 +000000000000009e l .text 0000000000000000 .L0 +00000000000000a6 l .text 0000000000000000 .L0 +00000000000000a6 l .text 0000000000000000 .L0 +00000000000000b4 l .text 0000000000000000 .L0 +00000000000000c6 l .text 0000000000000000 .L0 +00000000000000c6 l .text 0000000000000000 .L0 +00000000000000c6 l .text 0000000000000000 .L0 +00000000000000d2 l .text 0000000000000000 .L0 +0000000000000048 l .debug_frame 0000000000000000 .L0 +000000000000006e l .text 0000000000000000 .L0 +00000000000000d2 l .text 0000000000000000 .L0 +00000000000000c8 l .text 0000000000000000 .L0 +000000000000007e l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_dprintf.c +0000000000000228 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000000562 l .debug_str 0000000000000000 .LASF14 +0000000000000484 l .debug_str 0000000000000000 .LASF15 +0000000000000537 l .debug_str 0000000000000000 .LASF16 +0000000000000050 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +00000000000002a8 l .debug_line 0000000000000000 .Ldebug_line0 +00000000000004f8 l .debug_str 0000000000000000 .LASF0 +0000000000000504 l .debug_str 0000000000000000 .LASF1 +000000000000052d l .debug_str 0000000000000000 .LASF2 +00000000000004e5 l .debug_str 0000000000000000 .LASF3 +0000000000000465 l .debug_str 0000000000000000 .LASF4 +00000000000004c6 l .debug_str 0000000000000000 .LASF5 +0000000000000498 l .debug_str 0000000000000000 .LASF6 +00000000000004aa l .debug_str 0000000000000000 .LASF7 +00000000000004c1 l .debug_str 0000000000000000 .LASF8 +0000000000000512 l .debug_str 0000000000000000 .LASF9 +0000000000000472 l .debug_str 0000000000000000 .LASF17 +00000000000004cf l .debug_str 0000000000000000 .LASF10 +0000000000000457 l .debug_str 0000000000000000 .LASF11 +0000000000000521 l .debug_str 0000000000000000 .LASF12 +00000000000004d7 l .debug_str 0000000000000000 .LASF13 +00000000000004dd l .debug_str 0000000000000000 .LASF18 +00000000000000d2 l .text 0000000000000000 .LFB4 +00000000000000f4 l .text 0000000000000000 .LFE4 +0000000000000165 l .debug_loc 0000000000000000 .LLST0 +000000000000019e l .debug_loc 0000000000000000 .LLST1 +00000000000000ee l .text 0000000000000000 .LVL1 +0000000000000559 l .debug_str 0000000000000000 .LASF19 +00000000000000d2 l .text 0000000000000000 .LVL0 +000000000000043d l .debug_info 0000000000000000 .Ldebug_info0 +00000000000000d2 l .text 0000000000000000 .L0 +00000000000000d2 l .text 0000000000000000 .L0 +00000000000000d2 l .text 0000000000000000 .L0 +00000000000000d2 l .text 0000000000000000 .L0 +00000000000000d2 l .text 0000000000000000 .L0 +00000000000000d6 l .text 0000000000000000 .L0 +00000000000000d8 l .text 0000000000000000 .L0 +00000000000000da l .text 0000000000000000 .L0 +00000000000000e4 l .text 0000000000000000 .L0 +00000000000000e6 l .text 0000000000000000 .L0 +00000000000000e6 l .text 0000000000000000 .L0 +00000000000000ee l .text 0000000000000000 .L0 +00000000000000ee l .text 0000000000000000 .L0 +00000000000000ee l .text 0000000000000000 .L0 +00000000000000f4 l .text 0000000000000000 .L0 +0000000000000088 l .debug_frame 0000000000000000 .L0 +00000000000000d2 l .text 0000000000000000 .L0 +00000000000000f4 l .text 0000000000000000 .L0 +00000000000000f0 l .text 0000000000000000 .L0 +00000000000000da l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_vdprintf.c +00000000000002e9 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +00000000000006c7 l .debug_str 0000000000000000 .LASF33 +0000000000000873 l .debug_str 0000000000000000 .LASF34 +0000000000000792 l .debug_str 0000000000000000 .LASF35 +0000000000000070 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000000407 l .debug_line 0000000000000000 .Ldebug_line0 +0000000000000867 l .debug_str 0000000000000000 .LASF0 +000000000000067f l .debug_str 0000000000000000 .LASF1 +000000000000083f l .debug_str 0000000000000000 .LASF2 +00000000000006ac l .debug_str 0000000000000000 .LASF3 +00000000000007b4 l .debug_str 0000000000000000 .LASF4 +000000000000064a l .debug_str 0000000000000000 .LASF5 +000000000000069a l .debug_str 0000000000000000 .LASF6 +00000000000007c6 l .debug_str 0000000000000000 .LASF7 +0000000000000824 l .debug_str 0000000000000000 .LASF8 +0000000000000670 l .debug_str 0000000000000000 .LASF9 +0000000000000638 l .debug_str 0000000000000000 .LASF36 +00000000000006bf l .debug_str 0000000000000000 .LASF10 +00000000000007fe l .debug_str 0000000000000000 .LASF11 +00000000000007f2 l .debug_str 0000000000000000 .LASF12 +0000000000000888 l .debug_str 0000000000000000 .LASF13 +0000000000000857 l .debug_str 0000000000000000 .LASF14 +0000000000000612 l .debug_str 0000000000000000 .LASF21 +00000000000007c1 l .debug_str 0000000000000000 .LASF15 +0000000000000829 l .debug_str 0000000000000000 .LASF16 +0000000000000862 l .debug_str 0000000000000000 .LASF17 +0000000000000777 l .debug_str 0000000000000000 .LASF18 +0000000000000787 l .debug_str 0000000000000000 .LASF19 +00000000000007dd l .debug_str 0000000000000000 .LASF20 +000000000000088e l .debug_str 0000000000000000 .LASF22 +0000000000000850 l .debug_str 0000000000000000 .LASF23 +000000000000080c l .debug_str 0000000000000000 .LASF24 +000000000000065b l .debug_str 0000000000000000 .LASF25 +0000000000000653 l .debug_str 0000000000000000 .LASF26 +0000000000000849 l .debug_str 0000000000000000 .LASF27 +00000000000007e9 l .debug_str 0000000000000000 .LASF37 +00000000000000f4 l .text 0000000000000000 .LFB4 +0000000000000136 l .text 0000000000000000 .LFE4 +00000000000001d7 l .debug_loc 0000000000000000 .LLST0 +0000000000000210 l .debug_loc 0000000000000000 .LLST1 +000000000000025c l .debug_loc 0000000000000000 .LLST2 +00000000000002a9 l .debug_loc 0000000000000000 .LLST3 +0000000000000663 l .debug_str 0000000000000000 .LASF28 +000000000000077d l .debug_str 0000000000000000 .LASF29 +000000000000010a l .text 0000000000000000 .LVL3 +0000000000000116 l .text 0000000000000000 .LVL4 +0000000000000124 l .text 0000000000000000 .LVL5 +000000000000012c l .text 0000000000000000 .LVL7 +000000000000082e l .debug_str 0000000000000000 .LASF30 +0000000000000622 l .debug_str 0000000000000000 .LASF31 +000000000000068d l .debug_str 0000000000000000 .LASF32 +00000000000000f4 l .text 0000000000000000 .LVL0 +00000000000000fe l .text 0000000000000000 .LVL2 +00000000000000fc l .text 0000000000000000 .LVL1 +0000000000000128 l .text 0000000000000000 .LVL6 +0000000000000134 l .text 0000000000000000 .LVL9 +0000000000000132 l .text 0000000000000000 .LVL8 +0000000000000572 l .debug_info 0000000000000000 .Ldebug_info0 +00000000000000f4 l .text 0000000000000000 .L0 +00000000000000f4 l .text 0000000000000000 .L0 +00000000000000f4 l .text 0000000000000000 .L0 +00000000000000f4 l .text 0000000000000000 .L0 +00000000000000f4 l .text 0000000000000000 .L0 +00000000000000f4 l .text 0000000000000000 .L0 +00000000000000fa l .text 0000000000000000 .L0 +00000000000000fe l .text 0000000000000000 .L0 +0000000000000100 l .text 0000000000000000 .L0 +0000000000000102 l .text 0000000000000000 .L0 +000000000000010a l .text 0000000000000000 .L0 +0000000000000116 l .text 0000000000000000 .L0 +0000000000000116 l .text 0000000000000000 .L0 +0000000000000124 l .text 0000000000000000 .L0 +0000000000000126 l .text 0000000000000000 .L0 +0000000000000128 l .text 0000000000000000 .L0 +000000000000012c l .text 0000000000000000 .L0 +000000000000012c l .text 0000000000000000 .L0 +0000000000000136 l .text 0000000000000000 .L0 +00000000000000c0 l .debug_frame 0000000000000000 .L0 +00000000000000f4 l .text 0000000000000000 .L0 +0000000000000136 l .text 0000000000000000 .L0 +000000000000012e l .text 0000000000000000 .L0 +0000000000000100 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_libvsprintf.c +000000000000014e l F .text 00000000000009a6 vsprintf_internal.constprop.0 +0000000000000000 l O .srodata.g_nullstring 0000000000000007 g_nullstring +000000000000a968 l .rodata 0000000000000000 .LC0 +000000000000030e l .text 0000000000000000 .L0 +000000000000a970 l .rodata 0000000000000000 .LC1 +000000000000031a l .text 0000000000000000 .L0 +0000000000000000 l .srodata.g_nullstring 0000000000000000 .LANCHOR0 +000000000000045e l .text 0000000000000000 .L0 +0000000000000ad4 l .text 0000000000000000 .L5 +00000000000001a6 l .text 0000000000000000 .L7 +00000000000001b8 l .text 0000000000000000 .L153 +0000000000000acc l .text 0000000000000000 .L244 +0000000000000350 l .text 0000000000000000 .L10 +000000000000033a l .text 0000000000000000 .L11 +0000000000000230 l .text 0000000000000000 .L12 +000000000000033e l .text 0000000000000000 .L13 +000000000000034a l .text 0000000000000000 .L14 +0000000000000384 l .text 0000000000000000 .L19 +0000000000000376 l .text 0000000000000000 .L20 +000000000000023c l .text 0000000000000000 .L17 +0000000000000344 l .text 0000000000000000 .L16 +0000000000000212 l .text 0000000000000000 .L15 +00000000000001f6 l .text 0000000000000000 .L8 +0000000000000436 l .text 0000000000000000 .L34 +0000000000000270 l .text 0000000000000000 .L37 +000000000000047e l .text 0000000000000000 .L38 +0000000000000298 l .text 0000000000000000 .L40 +0000000000000494 l .text 0000000000000000 .L155 +000000000000049a l .text 0000000000000000 .L156 +00000000000002c8 l .text 0000000000000000 .L41 +00000000000004b6 l .text 0000000000000000 .L42 +00000000000002fa l .text 0000000000000000 .L44 +00000000000002e6 l .text 0000000000000000 .L45 +000000000000030a l .text 0000000000000000 .L46 +0000000000000322 l .text 0000000000000000 .L47 +00000000000004a0 l .text 0000000000000000 .L50 +0000000000000ac6 l .text 0000000000000000 .L150 +00000000000003ce l .text 0000000000000000 .L25 +00000000000003ca l .text 0000000000000000 .L26 +00000000000003b8 l .text 0000000000000000 .L21 +00000000000003a2 l .text 0000000000000000 .L22 +00000000000003ae l .text 0000000000000000 .L24 +0000000000000354 l .text 0000000000000000 .L18 +00000000000003f0 l .text 0000000000000000 .L27 +00000000000003ea l .text 0000000000000000 .L29 +000000000000036c l .text 0000000000000000 .L245 +0000000000000416 l .text 0000000000000000 .L30 +0000000000000410 l .text 0000000000000000 .L32 +0000000000000246 l .text 0000000000000000 .L33 +0000000000000268 l .text 0000000000000000 .L35 +000000000000073e l .text 0000000000000000 .L93 +0000000000000798 l .text 0000000000000000 .L241 +0000000000000466 l .text 0000000000000000 .L97 +0000000000000470 l .text 0000000000000000 .L98 +000000000000074c l .text 0000000000000000 .L96 +000000000000028a l .text 0000000000000000 .L39 +00000000000004aa l .text 0000000000000000 .L49 +000000000000032a l .text 0000000000000000 .L48 +0000000000000504 l .text 0000000000000000 .L52 +00000000000004da l .text 0000000000000000 .L54 +0000000000000540 l .text 0000000000000000 .L55 +0000000000000548 l .text 0000000000000000 .L56 +00000000000004fc l .text 0000000000000000 .L57 +000000000000051e l .text 0000000000000000 .L58 +000000000000051c l .text 0000000000000000 .L59 +0000000000000524 l .text 0000000000000000 .L60 +000000000000054e l .text 0000000000000000 .L61 +0000000000000536 l .text 0000000000000000 .L63 +0000000000000570 l .text 0000000000000000 .L65 +0000000000000562 l .text 0000000000000000 .L64 +00000000000004cc l .text 0000000000000000 .L53 +000000000000052c l .text 0000000000000000 .L62 +0000000000000558 l .text 0000000000000000 .L66 +0000000000000580 l .text 0000000000000000 .L67 +00000000000005a2 l .text 0000000000000000 .L69 +0000000000000594 l .text 0000000000000000 .L68 +000000000000058a l .text 0000000000000000 .L70 +0000000000000642 l .text 0000000000000000 .L71 +00000000000005b0 l .text 0000000000000000 .L72 +00000000000005d0 l .text 0000000000000000 .L74 +00000000000005fe l .text 0000000000000000 .L75 +00000000000005f8 l .text 0000000000000000 .L77 +00000000000005c0 l .text 0000000000000000 .L73 +000000000000061e l .text 0000000000000000 .L78 +000000000000061a l .text 0000000000000000 .L166 +0000000000000336 l .text 0000000000000000 .L51 +0000000000000658 l .text 0000000000000000 .L79 +0000000000000708 l .text 0000000000000000 .L80 +00000000000006ea l .text 0000000000000000 .L83 +0000000000000694 l .text 0000000000000000 .L86 +00000000000006ac l .text 0000000000000000 .L87 +00000000000006b4 l .text 0000000000000000 .L88 +000000000000071e l .text 0000000000000000 .L89 +000000000000072e l .text 0000000000000000 .L92 +00000000000006fc l .text 0000000000000000 .L82 +0000000000000674 l .text 0000000000000000 .L81 +0000000000000712 l .text 0000000000000000 .L85 +0000000000000680 l .text 0000000000000000 .L84 +00000000000006da l .text 0000000000000000 .L90 +00000000000006e0 l .text 0000000000000000 .L91 +0000000000000778 l .text 0000000000000000 .L100 +0000000000000766 l .text 0000000000000000 .L99 +0000000000000758 l .text 0000000000000000 .L101 +00000000000007ac l .text 0000000000000000 .L102 +00000000000008b6 l .text 0000000000000000 .L103 +0000000000000886 l .text 0000000000000000 .L104 +00000000000007d0 l .text 0000000000000000 .L109 +00000000000007dc l .text 0000000000000000 .L110 +00000000000007f4 l .text 0000000000000000 .L111 +00000000000009b6 l .text 0000000000000000 .L179 +000000000000082e l .text 0000000000000000 .L128 +00000000000009d0 l .text 0000000000000000 .L129 +00000000000009bc l .text 0000000000000000 .L130 +00000000000009f8 l .text 0000000000000000 .L133 +000000000000087c l .text 0000000000000000 .L134 +00000000000009ec l .text 0000000000000000 .L135 +00000000000007b0 l .text 0000000000000000 .L246 +00000000000007b4 l .text 0000000000000000 .L105 +00000000000008ac l .text 0000000000000000 .L108 +0000000000000900 l .text 0000000000000000 .L112 +0000000000000972 l .text 0000000000000000 .L117 +0000000000000930 l .text 0000000000000000 .L118 +00000000000009a8 l .text 0000000000000000 .L119 +000000000000095e l .text 0000000000000000 .L120 +00000000000008ba l .text 0000000000000000 .L247 +0000000000000918 l .text 0000000000000000 .L115 +00000000000008be l .text 0000000000000000 .L113 +0000000000000950 l .text 0000000000000000 .L122 +00000000000008e6 l .text 0000000000000000 .L121 +000000000000096c l .text 0000000000000000 .L127 +00000000000007e2 l .text 0000000000000000 .L249 +0000000000000996 l .text 0000000000000000 .L124 +0000000000000990 l .text 0000000000000000 .L126 +0000000000000940 l .text 0000000000000000 .L123 +0000000000000ace l .text 0000000000000000 .L9 +000000000000094a l .text 0000000000000000 .L248 +00000000000009c8 l .text 0000000000000000 .L132 +00000000000009ca l .text 0000000000000000 .L251 +0000000000000856 l .text 0000000000000000 .L131 +00000000000009c4 l .text 0000000000000000 .L250 +00000000000009de l .text 0000000000000000 .L136 +0000000000000a06 l .text 0000000000000000 .L137 +0000000000000a5c l .text 0000000000000000 .L138 +0000000000000a40 l .text 0000000000000000 .L139 +0000000000000a8c l .text 0000000000000000 .L145 +0000000000000a32 l .text 0000000000000000 .L147 +0000000000000a9c l .text 0000000000000000 .L149 +0000000000000a56 l .text 0000000000000000 .L141 +0000000000000a22 l .text 0000000000000000 .L140 +0000000000000a74 l .text 0000000000000000 .L142 +0000000000000a80 l .text 0000000000000000 .L143 +0000000000000a24 l .text 0000000000000000 .L144 +0000000000000a36 l .text 0000000000000000 .L148 +0000000000000ab8 l .text 0000000000000000 .L151 +0000000000000184 l .text 0000000000000000 .L4 +0000000000000426 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +00000000000008cc l .debug_str 0000000000000000 .LASF62 +0000000000000a29 l .debug_str 0000000000000000 .LASF63 +00000000000009e3 l .debug_str 0000000000000000 .LASF64 +0000000000000090 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +00000000000005b6 l .debug_line 0000000000000000 .Ldebug_line0 +0000000000000bb4 l .debug_str 0000000000000000 .LASF0 +0000000000000b55 l .debug_str 0000000000000000 .LASF65 +000000000000097c l .debug_str 0000000000000000 .LASF1 +00000000000009c3 l .debug_str 0000000000000000 .LASF3 +0000000000000bc3 l .debug_str 0000000000000000 .LASF2 +0000000000000a48 l .debug_str 0000000000000000 .LASF4 +00000000000008a9 l .debug_str 0000000000000000 .LASF5 +0000000000000bd1 l .debug_str 0000000000000000 .LASF6 +0000000000000ad0 l .debug_str 0000000000000000 .LASF7 +0000000000000a69 l .debug_str 0000000000000000 .LASF8 +0000000000000aac l .debug_str 0000000000000000 .LASF9 +0000000000000a1a l .debug_str 0000000000000000 .LASF10 +0000000000000b43 l .debug_str 0000000000000000 .LASF11 +0000000000000ba2 l .debug_str 0000000000000000 .LASF12 +0000000000000a90 l .debug_str 0000000000000000 .LASF13 +0000000000000992 l .debug_str 0000000000000000 .LASF14 +0000000000000ab9 l .debug_str 0000000000000000 .LASF15 +0000000000000aff l .debug_str 0000000000000000 .LASF16 +000000000000099a l .debug_str 0000000000000000 .LASF17 +00000000000008b3 l .debug_str 0000000000000000 .LASF18 +0000000000000afa l .debug_str 0000000000000000 .LASF19 +00000000000009d5 l .debug_str 0000000000000000 .LASF20 +0000000000000a5d l .debug_str 0000000000000000 .LASF21 +0000000000000b2a l .debug_str 0000000000000000 .LASF22 +0000000000000b39 l .debug_str 0000000000000000 .LASF24 +0000000000000b82 l .debug_str 0000000000000000 .LASF23 +0000000000000b92 l .debug_str 0000000000000000 .LASF25 +0000000000000bcc l .debug_str 0000000000000000 .LASF26 +0000000000000a7d l .debug_str 0000000000000000 .LASF27 +0000000000000acb l .debug_str 0000000000000000 .LASF28 +0000000000000a23 l .debug_str 0000000000000000 .LASF29 +0000000000000be0 l .debug_str 0000000000000000 .LASF30 +00000000000009a4 l .debug_str 0000000000000000 .LASF31 +0000000000000b07 l .debug_str 0000000000000000 .LASF32 +0000000000000a8a l .debug_str 0000000000000000 .LASF33 +0000000000000a41 l .debug_str 0000000000000000 .LASF34 +0000000000000b6c l .debug_str 0000000000000000 .LASF35 +0000000000000a72 l .debug_str 0000000000000000 .LASF36 +0000000000000aa7 l .debug_str 0000000000000000 .LASF37 +0000000000000b0e l .debug_str 0000000000000000 .LASF38 +00000000000009b6 l .debug_str 0000000000000000 .LASF42 +0000000000000b14 l .debug_str 0000000000000000 .LASF40 +0000000000000136 l .text 0000000000000000 .LFB7 +0000000000000146 l .text 0000000000000000 .LFE7 +0000000000000beb l .debug_str 0000000000000000 .LASF39 +00000000000002cc l .debug_loc 0000000000000000 .LLST0 +0000000000000305 l .debug_loc 0000000000000000 .LLST1 +0000000000000351 l .debug_loc 0000000000000000 .LLST2 +0000000000000146 l .text 0000000000000000 .LVL3 +0000000000000a05 l .debug_str 0000000000000000 .LASF41 +0000000000000af4 l .text 0000000000000000 .LFB6 +0000000000000b1c l .text 0000000000000000 .LFE6 +000000000000039d l .debug_loc 0000000000000000 .LLST30 +00000000000003d6 l .debug_loc 0000000000000000 .LLST31 +0000000000000b16 l .text 0000000000000000 .LVL269 +0000000000000ae3 l .debug_str 0000000000000000 .LASF66 +00000000000008ba l .debug_str 0000000000000000 .LASF67 +0000000000000bf2 l .debug_str 0000000000000000 .LASF43 +0000000000000a82 l .debug_str 0000000000000000 .LASF44 +00000000000009cf l .debug_str 0000000000000000 .LASF45 +0000000000000baa l .debug_str 0000000000000000 .LASF46 +00000000000009b0 l .debug_str 0000000000000000 .LASF47 +0000000000000a56 l .debug_str 0000000000000000 .LASF48 +0000000000000b8d l .debug_str 0000000000000000 .LASF49 +0000000000000af0 l .debug_str 0000000000000000 .LASF50 +0000000000000ac2 l .debug_str 0000000000000000 .LASF51 +0000000000000a78 l .debug_str 0000000000000000 .LASF52 +0000000000000bfa l .debug_str 0000000000000000 .LASF53 +0000000000000b67 l .debug_str 0000000000000000 .LASF54 +0000000000000c03 l .debug_str 0000000000000000 .LASF55 +0000000000000b30 l .debug_str 0000000000000000 .LASF56 +0000000000000bdb l .debug_str 0000000000000000 .LASF57 +0000000000000baf l .debug_str 0000000000000000 .LASF58 +000000000000014e l .text 0000000000000000 .LFB10 +0000000000000af4 l .text 0000000000000000 .LFE10 +0000000000000422 l .debug_loc 0000000000000000 .LLST3 +000000000000046e l .debug_loc 0000000000000000 .LLST4 +00000000000004a7 l .debug_loc 0000000000000000 .LLST5 +00000000000004e0 l .debug_loc 0000000000000000 .LLST6 +00000000000005c3 l .debug_loc 0000000000000000 .LLST7 +00000000000007c6 l .debug_loc 0000000000000000 .LLST8 +00000000000009d3 l .debug_loc 0000000000000000 .LLST9 +0000000000000c1d l .debug_loc 0000000000000000 .LLST10 +0000000000000dc1 l .debug_loc 0000000000000000 .LLST11 +0000000000000f89 l .debug_loc 0000000000000000 .LLST12 +0000000000000fbf l .debug_loc 0000000000000000 .LLST13 +0000000000000ff5 l .debug_loc 0000000000000000 .LLST14 +00000000000010c7 l .debug_loc 0000000000000000 .LLST15 +0000000000000ad4 l .text 0000000000000000 .LDL1 +0000000000001274 l .debug_loc 0000000000000000 .LLST16 +00000000000012e6 l .debug_loc 0000000000000000 .LLST17 +0000000000001342 l .debug_loc 0000000000000000 .LLST18 +00000000000013c6 l .debug_loc 0000000000000000 .LLST19 +0000000000001587 l .debug_loc 0000000000000000 .LLST20 +00000000000015d1 l .debug_loc 0000000000000000 .LLST21 +00000000000002f4 l .text 0000000000000000 .LVL37 +000000000000030a l .text 0000000000000000 .LVL41 +00000000000004b4 l .text 0000000000000000 .LVL89 +000000000000164b l .debug_loc 0000000000000000 .LLST22 +00000000000005e2 l .text 0000000000000000 .LVL126 +00000000000005f8 l .text 0000000000000000 .LVL128 +0000000000000622 l .text 0000000000000000 .LVL131 +0000000000000640 l .text 0000000000000000 .LVL133 +0000000000001681 l .debug_loc 0000000000000000 .LLST23 +0000000000000672 l .text 0000000000000000 .LVL136 +0000000000000702 l .text 0000000000000000 .LVL151 +00000000000002aa l .text 0000000000000000 .LVL28 +0000000000000560 l .text 0000000000000000 .LVL110 +0000000000000580 l .text 0000000000000000 .LVL116 +0000000000000592 l .text 0000000000000000 .LVL118 +0000000000000660 l .text 0000000000000000 .LVL135 +0000000000000698 l .text 0000000000000000 .LVL139 +00000000000006bc l .text 0000000000000000 .LVL142 +00000000000006ca l .text 0000000000000000 .LVL143 +000000000000071c l .text 0000000000000000 .LVL154 +000000000000072c l .text 0000000000000000 .LVL157 +000000000000073c l .text 0000000000000000 .LVL160 +00000000000016de l .debug_loc 0000000000000000 .LLST24 +0000000000001797 l .debug_loc 0000000000000000 .LLST25 +00000000000017ce l .debug_loc 0000000000000000 .LLST26 +0000000000000996 l .text 0000000000000000 .LBB20 +00000000000009a8 l .text 0000000000000000 .LBE20 +0000000000001832 l .debug_loc 0000000000000000 .LLST27 +0000000000001855 l .debug_loc 0000000000000000 .LLST28 +00000000000009a6 l .text 0000000000000000 .LVL225 +00000000000007ec l .text 0000000000000000 .LVL178 +00000000000008f2 l .text 0000000000000000 .LVL203 +00000000000008fe l .text 0000000000000000 .LVL205 +000000000000188e l .debug_loc 0000000000000000 .LLST29 +0000000000000a8a l .text 0000000000000000 .LVL252 +00000000000001b0 l .text 0000000000000000 .LVL11 +000000000000047a l .text 0000000000000000 .LVL79 +0000000000000764 l .text 0000000000000000 .LVL164 +000000000000078c l .text 0000000000000000 .LVL169 +00000000000009ec l .text 0000000000000000 .LVL236 +0000000000000a18 l .text 0000000000000000 .LVL241 +0000000000000a5a l .text 0000000000000000 .LVL246 +0000000000000a98 l .text 0000000000000000 .LVL254 +0000000000000ab6 l .text 0000000000000000 .LVL258 +0000000000000ac4 l .text 0000000000000000 .LVL260 +0000000000000984 l .debug_str 0000000000000000 .LASF59 +0000000000000b73 l .debug_str 0000000000000000 .LASF60 +00000000000008a1 l .debug_str 0000000000000000 .LASF61 +0000000000000136 l .text 0000000000000000 .LVL0 +000000000000013c l .text 0000000000000000 .LVL1 +000000000000013e l .text 0000000000000000 .LVL2 +0000000000000af4 l .text 0000000000000000 .LVL267 +0000000000000b04 l .text 0000000000000000 .LVL268 +000000000000014e l .text 0000000000000000 .LVL4 +0000000000000184 l .text 0000000000000000 .LVL5 +0000000000000aea l .text 0000000000000000 .LVL266 +0000000000000196 l .text 0000000000000000 .LVL7 +0000000000000246 l .text 0000000000000000 .LVL20 +000000000000033a l .text 0000000000000000 .LVL46 +0000000000000436 l .text 0000000000000000 .LVL76 +00000000000007f4 l .text 0000000000000000 .LVL179 +0000000000000886 l .text 0000000000000000 .LVL190 +0000000000000940 l .text 0000000000000000 .LVL211 +000000000000094a l .text 0000000000000000 .LVL212 +000000000000095e l .text 0000000000000000 .LVL216 +0000000000000972 l .text 0000000000000000 .LVL217 +000000000000097e l .text 0000000000000000 .LVL218 +0000000000000990 l .text 0000000000000000 .LVL220 +0000000000000996 l .text 0000000000000000 .LVL222 +00000000000009a8 l .text 0000000000000000 .LVL226 +00000000000009b6 l .text 0000000000000000 .LVL227 +0000000000000acc l .text 0000000000000000 .LVL262 +000000000000028a l .text 0000000000000000 .LVL26 +00000000000002b2 l .text 0000000000000000 .LVL29 +0000000000000392 l .text 0000000000000000 .LVL58 +0000000000000396 l .text 0000000000000000 .LVL59 +00000000000003b8 l .text 0000000000000000 .LVL65 +0000000000000456 l .text 0000000000000000 .LVL77 +000000000000047e l .text 0000000000000000 .LVL81 +0000000000000494 l .text 0000000000000000 .LVL84 +000000000000073e l .text 0000000000000000 .LVL161 +000000000000074c l .text 0000000000000000 .LVL162 +0000000000000798 l .text 0000000000000000 .LVL170 +00000000000007b0 l .text 0000000000000000 .LVL171 +00000000000007b4 l .text 0000000000000000 .LVL172 +000000000000088c l .text 0000000000000000 .LVL191 +00000000000008b6 l .text 0000000000000000 .LVL198 +00000000000008ba l .text 0000000000000000 .LVL199 +00000000000008be l .text 0000000000000000 .LVL200 +0000000000000900 l .text 0000000000000000 .LVL206 +0000000000000906 l .text 0000000000000000 .LVL207 +0000000000000930 l .text 0000000000000000 .LVL210 +0000000000000ad4 l .text 0000000000000000 .LVL263 +0000000000000ae0 l .text 0000000000000000 .LVL265 +0000000000000188 l .text 0000000000000000 .LVL6 +000000000000019e l .text 0000000000000000 .LVL8 +00000000000001a2 l .text 0000000000000000 .LVL9 +000000000000021e l .text 0000000000000000 .LVL14 +0000000000000224 l .text 0000000000000000 .LVL15 +0000000000000230 l .text 0000000000000000 .LVL17 +000000000000023c l .text 0000000000000000 .LVL18 +0000000000000242 l .text 0000000000000000 .LVL19 +0000000000000268 l .text 0000000000000000 .LVL22 +00000000000002d6 l .text 0000000000000000 .LVL33 +000000000000036c l .text 0000000000000000 .LVL52 +0000000000000384 l .text 0000000000000000 .LVL56 +000000000000038c l .text 0000000000000000 .LVL57 +00000000000003ca l .text 0000000000000000 .LVL67 +0000000000000416 l .text 0000000000000000 .LVL71 +00000000000004a0 l .text 0000000000000000 .LVL85 +00000000000004b6 l .text 0000000000000000 .LVL90 +000000000000052e l .text 0000000000000000 .LVL99 +0000000000000540 l .text 0000000000000000 .LVL102 +0000000000000558 l .text 0000000000000000 .LVL109 +00000000000006d4 l .text 0000000000000000 .LVL145 +00000000000006e0 l .text 0000000000000000 .LVL147 +00000000000006ea l .text 0000000000000000 .LVL148 +000000000000071e l .text 0000000000000000 .LVL155 +000000000000072e l .text 0000000000000000 .LVL158 +000000000000073a l .text 0000000000000000 .LVL159 +0000000000000986 l .text 0000000000000000 .LVL219 +0000000000000998 l .text 0000000000000000 .LVL223 +0000000000000ab8 l .text 0000000000000000 .LVL259 +0000000000000ade l .text 0000000000000000 .LVL264 +00000000000001f6 l .text 0000000000000000 .LVL13 +0000000000000336 l .text 0000000000000000 .LVL45 +0000000000000360 l .text 0000000000000000 .LVL51 +0000000000000374 l .text 0000000000000000 .LVL53 +000000000000037e l .text 0000000000000000 .LVL54 +0000000000000382 l .text 0000000000000000 .LVL55 +00000000000003a2 l .text 0000000000000000 .LVL60 +00000000000003aa l .text 0000000000000000 .LVL61 +00000000000003ae l .text 0000000000000000 .LVL62 +00000000000003b6 l .text 0000000000000000 .LVL64 +00000000000003ea l .text 0000000000000000 .LVL68 +00000000000003f0 l .text 0000000000000000 .LVL69 +0000000000000410 l .text 0000000000000000 .LVL70 +0000000000000428 l .text 0000000000000000 .LVL72 +000000000000042c l .text 0000000000000000 .LVL73 +0000000000000430 l .text 0000000000000000 .LVL74 +0000000000000434 l .text 0000000000000000 .LVL75 +00000000000007bc l .text 0000000000000000 .LVL173 +00000000000007c6 l .text 0000000000000000 .LVL174 +00000000000007d0 l .text 0000000000000000 .LVL176 +000000000000080c l .text 0000000000000000 .LVL180 +000000000000082a l .text 0000000000000000 .LVL182 +000000000000082e l .text 0000000000000000 .LVL183 +0000000000000850 l .text 0000000000000000 .LVL184 +0000000000000856 l .text 0000000000000000 .LVL185 +00000000000008cc l .text 0000000000000000 .LVL201 +0000000000000958 l .text 0000000000000000 .LVL214 +000000000000095c l .text 0000000000000000 .LVL215 +00000000000009bc l .text 0000000000000000 .LVL228 +00000000000002e4 l .text 0000000000000000 .LVL34 +00000000000002f2 l .text 0000000000000000 .LVL36 +00000000000002fa l .text 0000000000000000 .LVL38 +00000000000003b2 l .text 0000000000000000 .LVL63 +0000000000000536 l .text 0000000000000000 .LVL100 +000000000000056a l .text 0000000000000000 .LVL112 +0000000000000570 l .text 0000000000000000 .LVL113 +000000000000058a l .text 0000000000000000 .LVL117 +00000000000005a2 l .text 0000000000000000 .LVL120 +0000000000000758 l .text 0000000000000000 .LVL163 +0000000000000766 l .text 0000000000000000 .LVL165 +0000000000000772 l .text 0000000000000000 .LVL166 +0000000000000778 l .text 0000000000000000 .LVL167 +0000000000000a06 l .text 0000000000000000 .LVL239 +000000000000022c l .text 0000000000000000 .LVL16 +0000000000000270 l .text 0000000000000000 .LVL23 +00000000000002d2 l .text 0000000000000000 .LVL31 +00000000000004c4 l .text 0000000000000000 .LVL91 +00000000000004e8 l .text 0000000000000000 .LVL93 +0000000000000504 l .text 0000000000000000 .LVL95 +0000000000000548 l .text 0000000000000000 .LVL105 +000000000000054c l .text 0000000000000000 .LVL106 +000000000000054e l .text 0000000000000000 .LVL107 +00000000000005c0 l .text 0000000000000000 .LVL124 +0000000000000642 l .text 0000000000000000 .LVL134 +00000000000006ce l .text 0000000000000000 .LVL144 +000000000000086a l .text 0000000000000000 .LVL186 +0000000000000878 l .text 0000000000000000 .LVL187 +000000000000087c l .text 0000000000000000 .LVL188 +00000000000009de l .text 0000000000000000 .LVL233 +00000000000009f4 l .text 0000000000000000 .LVL237 +0000000000000a24 l .text 0000000000000000 .LVL243 +0000000000000a40 l .text 0000000000000000 .LVL244 +0000000000000a8c l .text 0000000000000000 .LVL253 +0000000000000a9a l .text 0000000000000000 .LVL255 +0000000000000a9c l .text 0000000000000000 .LVL256 +0000000000000466 l .text 0000000000000000 .LVL78 +000000000000047c l .text 0000000000000000 .LVL80 +000000000000081a l .text 0000000000000000 .LVL181 +000000000000087e l .text 0000000000000000 .LVL189 +00000000000009c4 l .text 0000000000000000 .LVL229 +00000000000009c8 l .text 0000000000000000 .LVL230 +00000000000009ca l .text 0000000000000000 .LVL231 +00000000000009ce l .text 0000000000000000 .LVL232 +00000000000009e2 l .text 0000000000000000 .LVL234 +00000000000009f8 l .text 0000000000000000 .LVL238 +00000000000001a6 l .text 0000000000000000 .LVL10 +00000000000001b2 l .text 0000000000000000 .LVL12 +00000000000002fe l .text 0000000000000000 .LVL39 +0000000000000308 l .text 0000000000000000 .LVL40 +0000000000000332 l .text 0000000000000000 .LVL44 +00000000000004aa l .text 0000000000000000 .LVL87 +0000000000000574 l .text 0000000000000000 .LVL114 +000000000000057e l .text 0000000000000000 .LVL115 +00000000000005f6 l .text 0000000000000000 .LVL127 +000000000000063e l .text 0000000000000000 .LVL132 +0000000000000674 l .text 0000000000000000 .LVL137 +0000000000000680 l .text 0000000000000000 .LVL138 +00000000000006b4 l .text 0000000000000000 .LVL141 +00000000000006da l .text 0000000000000000 .LVL146 +00000000000006ec l .text 0000000000000000 .LVL149 +000000000000072a l .text 0000000000000000 .LVL156 +000000000000078a l .text 0000000000000000 .LVL168 +00000000000008fc l .text 0000000000000000 .LVL204 +00000000000009ea l .text 0000000000000000 .LVL235 +0000000000000a0c l .text 0000000000000000 .LVL240 +0000000000000a22 l .text 0000000000000000 .LVL242 +0000000000000a4c l .text 0000000000000000 .LVL245 +0000000000000a5c l .text 0000000000000000 .LVL247 +0000000000000a88 l .text 0000000000000000 .LVL251 +00000000000002e6 l .text 0000000000000000 .LVL35 +00000000000006b0 l .text 0000000000000000 .LVL140 +000000000000051e l .text 0000000000000000 .LVL96 +000000000000053a l .text 0000000000000000 .LVL101 +0000000000000556 l .text 0000000000000000 .LVL108 +00000000000005b4 l .text 0000000000000000 .LVL121 +00000000000005b8 l .text 0000000000000000 .LVL122 +00000000000002c8 l .text 0000000000000000 .LVL30 +000000000000032a l .text 0000000000000000 .LVL43 +0000000000000708 l .text 0000000000000000 .LVL153 +0000000000000284 l .text 0000000000000000 .LVL24 +00000000000002d4 l .text 0000000000000000 .LVL32 +0000000000000488 l .text 0000000000000000 .LVL82 +00000000000004a6 l .text 0000000000000000 .LVL86 +00000000000004cc l .text 0000000000000000 .LVL92 +0000000000000542 l .text 0000000000000000 .LVL103 +0000000000000546 l .text 0000000000000000 .LVL104 +00000000000005bc l .text 0000000000000000 .LVL123 +000000000000028e l .text 0000000000000000 .LVL27 +0000000000000322 l .text 0000000000000000 .LVL42 +00000000000004b2 l .text 0000000000000000 .LVL88 +00000000000005d0 l .text 0000000000000000 .LVL125 +00000000000005fe l .text 0000000000000000 .LVL129 +0000000000000700 l .text 0000000000000000 .LVL150 +0000000000000706 l .text 0000000000000000 .LVL152 +00000000000007e2 l .text 0000000000000000 .LVL177 +0000000000000894 l .text 0000000000000000 .LVL192 +00000000000008a6 l .text 0000000000000000 .LVL193 +00000000000008aa l .text 0000000000000000 .LVL194 +00000000000008ac l .text 0000000000000000 .LVL195 +00000000000008b0 l .text 0000000000000000 .LVL196 +00000000000008b4 l .text 0000000000000000 .LVL197 +00000000000008ec l .text 0000000000000000 .LVL202 +000000000000090e l .text 0000000000000000 .LVL208 +000000000000092e l .text 0000000000000000 .LVL209 +000000000000099c l .text 0000000000000000 .LVL224 +0000000000000a66 l .text 0000000000000000 .LVL248 +0000000000000a74 l .text 0000000000000000 .LVL249 +000000000000086f l .debug_info 0000000000000000 .Ldebug_info0 +0000000000000268 l .text 0000000000000000 .LBB10 +0000000000000336 l .text 0000000000000000 .LBE10 +000000000000047e l .text 0000000000000000 .LBB17 +000000000000073e l .text 0000000000000000 .LBE17 +00000000000002ce l .text 0000000000000000 .LBB11 +0000000000000336 l .text 0000000000000000 .LBE11 +00000000000004a0 l .text 0000000000000000 .LBB12 +00000000000004b6 l .text 0000000000000000 .LBE12 +00000000000005a8 l .text 0000000000000000 .LBB13 +00000000000005fa l .text 0000000000000000 .LBE13 +00000000000005fe l .text 0000000000000000 .LBB14 +0000000000000642 l .text 0000000000000000 .LBE14 +0000000000000668 l .text 0000000000000000 .LBB15 +0000000000000680 l .text 0000000000000000 .LBE15 +00000000000006ea l .text 0000000000000000 .LBB16 +0000000000000708 l .text 0000000000000000 .LBE16 +00000000000007ac l .text 0000000000000000 .LBB18 +00000000000007e2 l .text 0000000000000000 .LBE18 +0000000000000886 l .text 0000000000000000 .LBB21 +00000000000008b6 l .text 0000000000000000 .LBE21 +00000000000007e2 l .text 0000000000000000 .LBB19 +00000000000007f4 l .text 0000000000000000 .LBE19 +00000000000008b6 l .text 0000000000000000 .LBB22 +00000000000009b6 l .text 0000000000000000 .LBE22 +0000000000000a22 l .text 0000000000000000 .LBB23 +0000000000000a24 l .text 0000000000000000 .LBE23 +0000000000000a66 l .text 0000000000000000 .LBB24 +0000000000000a8c l .text 0000000000000000 .LBE24 +0000000000000136 l .text 0000000000000000 .L0 +000000000000014e l .text 0000000000000000 .L0 +0000000000000af4 l .text 0000000000000000 .L0 +0000000000000136 l .text 0000000000000000 .L0 +0000000000000136 l .text 0000000000000000 .L0 +000000000000013a l .text 0000000000000000 .L0 +0000000000000146 l .text 0000000000000000 .L0 +000000000000014e l .text 0000000000000000 .L0 +0000000000000150 l .text 0000000000000000 .L0 +0000000000000152 l .text 0000000000000000 .L0 +0000000000000154 l .text 0000000000000000 .L0 +0000000000000158 l .text 0000000000000000 .L0 +000000000000015e l .text 0000000000000000 .L0 +0000000000000162 l .text 0000000000000000 .L0 +000000000000017a l .text 0000000000000000 .L0 +0000000000000180 l .text 0000000000000000 .L0 +0000000000000182 l .text 0000000000000000 .L0 +0000000000000184 l .text 0000000000000000 .L0 +0000000000000184 l .text 0000000000000000 .L0 +0000000000000184 l .text 0000000000000000 .L0 +0000000000000184 l .text 0000000000000000 .L0 +0000000000000188 l .text 0000000000000000 .L0 +0000000000000188 l .text 0000000000000000 .L0 +000000000000018c l .text 0000000000000000 .L0 +000000000000018c l .text 0000000000000000 .L0 +0000000000000192 l .text 0000000000000000 .L0 +0000000000000196 l .text 0000000000000000 .L0 +000000000000019a l .text 0000000000000000 .L0 +000000000000019a l .text 0000000000000000 .L0 +000000000000019e l .text 0000000000000000 .L0 +00000000000001a2 l .text 0000000000000000 .L0 +00000000000001a2 l .text 0000000000000000 .L0 +00000000000001a6 l .text 0000000000000000 .L0 +00000000000001b2 l .text 0000000000000000 .L0 +00000000000001b2 l .text 0000000000000000 .L0 +00000000000001b8 l .text 0000000000000000 .L0 +00000000000001ba l .text 0000000000000000 .L0 +00000000000001bc l .text 0000000000000000 .L0 +00000000000001be l .text 0000000000000000 .L0 +00000000000001c2 l .text 0000000000000000 .L0 +00000000000001c6 l .text 0000000000000000 .L0 +00000000000001ca l .text 0000000000000000 .L0 +00000000000001ce l .text 0000000000000000 .L0 +00000000000001d2 l .text 0000000000000000 .L0 +00000000000001d6 l .text 0000000000000000 .L0 +00000000000001d8 l .text 0000000000000000 .L0 +00000000000001dc l .text 0000000000000000 .L0 +00000000000001e0 l .text 0000000000000000 .L0 +00000000000001e2 l .text 0000000000000000 .L0 +00000000000001e6 l .text 0000000000000000 .L0 +00000000000001f6 l .text 0000000000000000 .L0 +00000000000001f6 l .text 0000000000000000 .L0 +00000000000001f6 l .text 0000000000000000 .L0 +00000000000001fe l .text 0000000000000000 .L0 +0000000000000212 l .text 0000000000000000 .L0 +0000000000000212 l .text 0000000000000000 .L0 +000000000000021a l .text 0000000000000000 .L0 +000000000000021e l .text 0000000000000000 .L0 +000000000000021e l .text 0000000000000000 .L0 +000000000000021e l .text 0000000000000000 .L0 +0000000000000222 l .text 0000000000000000 .L0 +0000000000000224 l .text 0000000000000000 .L0 +0000000000000228 l .text 0000000000000000 .L0 +0000000000000228 l .text 0000000000000000 .L0 +000000000000022c l .text 0000000000000000 .L0 +000000000000022e l .text 0000000000000000 .L0 +0000000000000230 l .text 0000000000000000 .L0 +0000000000000238 l .text 0000000000000000 .L0 +0000000000000238 l .text 0000000000000000 .L0 +000000000000023c l .text 0000000000000000 .L0 +000000000000023c l .text 0000000000000000 .L0 +000000000000023c l .text 0000000000000000 .L0 +0000000000000240 l .text 0000000000000000 .L0 +0000000000000242 l .text 0000000000000000 .L0 +0000000000000246 l .text 0000000000000000 .L0 +0000000000000246 l .text 0000000000000000 .L0 +000000000000024a l .text 0000000000000000 .L0 +000000000000024e l .text 0000000000000000 .L0 +0000000000000250 l .text 0000000000000000 .L0 +000000000000025a l .text 0000000000000000 .L0 +000000000000025a l .text 0000000000000000 .L0 +000000000000025c l .text 0000000000000000 .L0 +0000000000000260 l .text 0000000000000000 .L0 +0000000000000264 l .text 0000000000000000 .L0 +0000000000000264 l .text 0000000000000000 .L0 +0000000000000268 l .text 0000000000000000 .L0 +0000000000000268 l .text 0000000000000000 .L0 +0000000000000268 l .text 0000000000000000 .L0 +0000000000000268 l .text 0000000000000000 .L0 +000000000000026e l .text 0000000000000000 .L0 +0000000000000270 l .text 0000000000000000 .L0 +0000000000000270 l .text 0000000000000000 .L0 +0000000000000270 l .text 0000000000000000 .L0 +0000000000000274 l .text 0000000000000000 .L0 +0000000000000278 l .text 0000000000000000 .L0 +000000000000027c l .text 0000000000000000 .L0 +000000000000027c l .text 0000000000000000 .L0 +000000000000027e l .text 0000000000000000 .L0 +0000000000000280 l .text 0000000000000000 .L0 +0000000000000284 l .text 0000000000000000 .L0 +0000000000000284 l .text 0000000000000000 .L0 +0000000000000284 l .text 0000000000000000 .L0 +0000000000000288 l .text 0000000000000000 .L0 +000000000000028a l .text 0000000000000000 .L0 +000000000000028a l .text 0000000000000000 .L0 +000000000000028a l .text 0000000000000000 .L0 +000000000000028a l .text 0000000000000000 .L0 +00000000000002aa l .text 0000000000000000 .L0 +00000000000002aa l .text 0000000000000000 .L0 +00000000000002aa l .text 0000000000000000 .L0 +00000000000002aa l .text 0000000000000000 .L0 +00000000000002b2 l .text 0000000000000000 .L0 +00000000000002b6 l .text 0000000000000000 .L0 +00000000000002b6 l .text 0000000000000000 .L0 +00000000000002be l .text 0000000000000000 .L0 +00000000000002be l .text 0000000000000000 .L0 +00000000000002c4 l .text 0000000000000000 .L0 +00000000000002c8 l .text 0000000000000000 .L0 +00000000000002c8 l .text 0000000000000000 .L0 +00000000000002ce l .text 0000000000000000 .L0 +00000000000002ce l .text 0000000000000000 .L0 +00000000000002ce l .text 0000000000000000 .L0 +00000000000002d2 l .text 0000000000000000 .L0 +00000000000002d2 l .text 0000000000000000 .L0 +00000000000002d4 l .text 0000000000000000 .L0 +00000000000002d6 l .text 0000000000000000 .L0 +00000000000002da l .text 0000000000000000 .L0 +00000000000002da l .text 0000000000000000 .L0 +00000000000002de l .text 0000000000000000 .L0 +00000000000002e2 l .text 0000000000000000 .L0 +00000000000002e4 l .text 0000000000000000 .L0 +00000000000002e4 l .text 0000000000000000 .L0 +00000000000002e6 l .text 0000000000000000 .L0 +00000000000002e6 l .text 0000000000000000 .L0 +00000000000002f0 l .text 0000000000000000 .L0 +00000000000002f2 l .text 0000000000000000 .L0 +00000000000002f4 l .text 0000000000000000 .L0 +00000000000002f4 l .text 0000000000000000 .L0 +00000000000002f8 l .text 0000000000000000 .L0 +00000000000002fa l .text 0000000000000000 .L0 +00000000000002fa l .text 0000000000000000 .L0 +00000000000002fe l .text 0000000000000000 .L0 +000000000000030a l .text 0000000000000000 .L0 +000000000000030a l .text 0000000000000000 .L0 +000000000000030a l .text 0000000000000000 .L0 +000000000000030e l .text 0000000000000000 .L0 +0000000000000316 l .text 0000000000000000 .L0 +000000000000031a l .text 0000000000000000 .L0 +0000000000000322 l .text 0000000000000000 .L0 +000000000000032a l .text 0000000000000000 .L0 +0000000000000332 l .text 0000000000000000 .L0 +0000000000000336 l .text 0000000000000000 .L0 +000000000000033a l .text 0000000000000000 .L0 +000000000000033a l .text 0000000000000000 .L0 +000000000000033e l .text 0000000000000000 .L0 +000000000000033e l .text 0000000000000000 .L0 +0000000000000342 l .text 0000000000000000 .L0 +0000000000000344 l .text 0000000000000000 .L0 +0000000000000344 l .text 0000000000000000 .L0 +0000000000000348 l .text 0000000000000000 .L0 +000000000000034a l .text 0000000000000000 .L0 +000000000000034a l .text 0000000000000000 .L0 +000000000000034e l .text 0000000000000000 .L0 +0000000000000350 l .text 0000000000000000 .L0 +0000000000000350 l .text 0000000000000000 .L0 +0000000000000354 l .text 0000000000000000 .L0 +0000000000000354 l .text 0000000000000000 .L0 +0000000000000358 l .text 0000000000000000 .L0 +000000000000035c l .text 0000000000000000 .L0 +000000000000035c l .text 0000000000000000 .L0 +0000000000000360 l .text 0000000000000000 .L0 +0000000000000360 l .text 0000000000000000 .L0 +0000000000000360 l .text 0000000000000000 .L0 +0000000000000368 l .text 0000000000000000 .L0 +000000000000036c l .text 0000000000000000 .L0 +0000000000000374 l .text 0000000000000000 .L0 +0000000000000376 l .text 0000000000000000 .L0 +0000000000000376 l .text 0000000000000000 .L0 +000000000000037a l .text 0000000000000000 .L0 +000000000000037e l .text 0000000000000000 .L0 +0000000000000382 l .text 0000000000000000 .L0 +0000000000000382 l .text 0000000000000000 .L0 +0000000000000384 l .text 0000000000000000 .L0 +0000000000000384 l .text 0000000000000000 .L0 +0000000000000388 l .text 0000000000000000 .L0 +0000000000000388 l .text 0000000000000000 .L0 +000000000000038c l .text 0000000000000000 .L0 +0000000000000392 l .text 0000000000000000 .L0 +0000000000000396 l .text 0000000000000000 .L0 +0000000000000396 l .text 0000000000000000 .L0 +00000000000003a2 l .text 0000000000000000 .L0 +00000000000003a2 l .text 0000000000000000 .L0 +00000000000003a2 l .text 0000000000000000 .L0 +00000000000003a2 l .text 0000000000000000 .L0 +00000000000003a6 l .text 0000000000000000 .L0 +00000000000003ae l .text 0000000000000000 .L0 +00000000000003ae l .text 0000000000000000 .L0 +00000000000003b2 l .text 0000000000000000 .L0 +00000000000003b2 l .text 0000000000000000 .L0 +00000000000003b8 l .text 0000000000000000 .L0 +00000000000003b8 l .text 0000000000000000 .L0 +00000000000003bc l .text 0000000000000000 .L0 +00000000000003bc l .text 0000000000000000 .L0 +00000000000003c4 l .text 0000000000000000 .L0 +00000000000003c4 l .text 0000000000000000 .L0 +00000000000003c8 l .text 0000000000000000 .L0 +00000000000003ca l .text 0000000000000000 .L0 +00000000000003ca l .text 0000000000000000 .L0 +00000000000003ce l .text 0000000000000000 .L0 +00000000000003ce l .text 0000000000000000 .L0 +00000000000003d2 l .text 0000000000000000 .L0 +00000000000003d6 l .text 0000000000000000 .L0 +00000000000003da l .text 0000000000000000 .L0 +00000000000003da l .text 0000000000000000 .L0 +00000000000003ea l .text 0000000000000000 .L0 +00000000000003ea l .text 0000000000000000 .L0 +00000000000003f0 l .text 0000000000000000 .L0 +00000000000003f0 l .text 0000000000000000 .L0 +00000000000003f4 l .text 0000000000000000 .L0 +00000000000003f4 l .text 0000000000000000 .L0 +00000000000003f8 l .text 0000000000000000 .L0 +00000000000003fc l .text 0000000000000000 .L0 +0000000000000400 l .text 0000000000000000 .L0 +0000000000000400 l .text 0000000000000000 .L0 +0000000000000410 l .text 0000000000000000 .L0 +0000000000000410 l .text 0000000000000000 .L0 +0000000000000416 l .text 0000000000000000 .L0 +0000000000000416 l .text 0000000000000000 .L0 +000000000000041e l .text 0000000000000000 .L0 +000000000000041e l .text 0000000000000000 .L0 +0000000000000428 l .text 0000000000000000 .L0 +0000000000000428 l .text 0000000000000000 .L0 +0000000000000428 l .text 0000000000000000 .L0 +0000000000000436 l .text 0000000000000000 .L0 +0000000000000436 l .text 0000000000000000 .L0 +000000000000043a l .text 0000000000000000 .L0 +0000000000000442 l .text 0000000000000000 .L0 +0000000000000456 l .text 0000000000000000 .L0 +0000000000000456 l .text 0000000000000000 .L0 +000000000000045a l .text 0000000000000000 .L0 +000000000000045a l .text 0000000000000000 .L0 +000000000000045e l .text 0000000000000000 .L0 +0000000000000466 l .text 0000000000000000 .L0 +0000000000000466 l .text 0000000000000000 .L0 +000000000000047e l .text 0000000000000000 .L0 +000000000000047e l .text 0000000000000000 .L0 +0000000000000482 l .text 0000000000000000 .L0 +0000000000000484 l .text 0000000000000000 .L0 +0000000000000488 l .text 0000000000000000 .L0 +0000000000000488 l .text 0000000000000000 .L0 +0000000000000488 l .text 0000000000000000 .L0 +0000000000000488 l .text 0000000000000000 .L0 +000000000000048a l .text 0000000000000000 .L0 +000000000000048c l .text 0000000000000000 .L0 +0000000000000490 l .text 0000000000000000 .L0 +0000000000000494 l .text 0000000000000000 .L0 +000000000000049a l .text 0000000000000000 .L0 +00000000000004a0 l .text 0000000000000000 .L0 +00000000000004a0 l .text 0000000000000000 .L0 +00000000000004a4 l .text 0000000000000000 .L0 +00000000000004a4 l .text 0000000000000000 .L0 +00000000000004aa l .text 0000000000000000 .L0 +00000000000004b0 l .text 0000000000000000 .L0 +00000000000004b2 l .text 0000000000000000 .L0 +00000000000004b4 l .text 0000000000000000 .L0 +00000000000004b6 l .text 0000000000000000 .L0 +00000000000004bc l .text 0000000000000000 .L0 +00000000000004be l .text 0000000000000000 .L0 +00000000000004c2 l .text 0000000000000000 .L0 +00000000000004c2 l .text 0000000000000000 .L0 +00000000000004c4 l .text 0000000000000000 .L0 +00000000000004c4 l .text 0000000000000000 .L0 +00000000000004c8 l .text 0000000000000000 .L0 +00000000000004cc l .text 0000000000000000 .L0 +00000000000004d0 l .text 0000000000000000 .L0 +00000000000004da l .text 0000000000000000 .L0 +00000000000004da l .text 0000000000000000 .L0 +00000000000004dc l .text 0000000000000000 .L0 +00000000000004e0 l .text 0000000000000000 .L0 +00000000000004e4 l .text 0000000000000000 .L0 +00000000000004ec l .text 0000000000000000 .L0 +00000000000004ec l .text 0000000000000000 .L0 +00000000000004f2 l .text 0000000000000000 .L0 +00000000000004f2 l .text 0000000000000000 .L0 +00000000000004f6 l .text 0000000000000000 .L0 +00000000000004f8 l .text 0000000000000000 .L0 +00000000000004fc l .text 0000000000000000 .L0 +00000000000004fc l .text 0000000000000000 .L0 +0000000000000500 l .text 0000000000000000 .L0 +0000000000000504 l .text 0000000000000000 .L0 +0000000000000504 l .text 0000000000000000 .L0 +000000000000050e l .text 0000000000000000 .L0 +0000000000000510 l .text 0000000000000000 .L0 +0000000000000514 l .text 0000000000000000 .L0 +0000000000000514 l .text 0000000000000000 .L0 +000000000000051c l .text 0000000000000000 .L0 +000000000000051e l .text 0000000000000000 .L0 +000000000000051e l .text 0000000000000000 .L0 +0000000000000522 l .text 0000000000000000 .L0 +0000000000000522 l .text 0000000000000000 .L0 +0000000000000524 l .text 0000000000000000 .L0 +0000000000000524 l .text 0000000000000000 .L0 +0000000000000526 l .text 0000000000000000 .L0 +0000000000000526 l .text 0000000000000000 .L0 +000000000000052a l .text 0000000000000000 .L0 +000000000000052c l .text 0000000000000000 .L0 +000000000000052c l .text 0000000000000000 .L0 +0000000000000536 l .text 0000000000000000 .L0 +0000000000000536 l .text 0000000000000000 .L0 +000000000000053c l .text 0000000000000000 .L0 +0000000000000540 l .text 0000000000000000 .L0 +0000000000000540 l .text 0000000000000000 .L0 +0000000000000548 l .text 0000000000000000 .L0 +0000000000000548 l .text 0000000000000000 .L0 +000000000000054e l .text 0000000000000000 .L0 +000000000000054e l .text 0000000000000000 .L0 +0000000000000554 l .text 0000000000000000 .L0 +0000000000000554 l .text 0000000000000000 .L0 +0000000000000558 l .text 0000000000000000 .L0 +0000000000000560 l .text 0000000000000000 .L0 +0000000000000560 l .text 0000000000000000 .L0 +0000000000000562 l .text 0000000000000000 .L0 +0000000000000562 l .text 0000000000000000 .L0 +0000000000000566 l .text 0000000000000000 .L0 +0000000000000570 l .text 0000000000000000 .L0 +0000000000000570 l .text 0000000000000000 .L0 +0000000000000574 l .text 0000000000000000 .L0 +000000000000057e l .text 0000000000000000 .L0 +0000000000000580 l .text 0000000000000000 .L0 +0000000000000580 l .text 0000000000000000 .L0 +000000000000058a l .text 0000000000000000 .L0 +0000000000000592 l .text 0000000000000000 .L0 +0000000000000592 l .text 0000000000000000 .L0 +0000000000000594 l .text 0000000000000000 .L0 +0000000000000594 l .text 0000000000000000 .L0 +0000000000000598 l .text 0000000000000000 .L0 +00000000000005a2 l .text 0000000000000000 .L0 +00000000000005a2 l .text 0000000000000000 .L0 +00000000000005a8 l .text 0000000000000000 .L0 +00000000000005a8 l .text 0000000000000000 .L0 +00000000000005a8 l .text 0000000000000000 .L0 +00000000000005b4 l .text 0000000000000000 .L0 +00000000000005b4 l .text 0000000000000000 .L0 +00000000000005ba l .text 0000000000000000 .L0 +00000000000005bc l .text 0000000000000000 .L0 +00000000000005c0 l .text 0000000000000000 .L0 +00000000000005c0 l .text 0000000000000000 .L0 +00000000000005c4 l .text 0000000000000000 .L0 +00000000000005c8 l .text 0000000000000000 .L0 +00000000000005cc l .text 0000000000000000 .L0 +00000000000005cc l .text 0000000000000000 .L0 +00000000000005d0 l .text 0000000000000000 .L0 +00000000000005d0 l .text 0000000000000000 .L0 +00000000000005d2 l .text 0000000000000000 .L0 +00000000000005da l .text 0000000000000000 .L0 +00000000000005de l .text 0000000000000000 .L0 +00000000000005e2 l .text 0000000000000000 .L0 +00000000000005e2 l .text 0000000000000000 .L0 +00000000000005e2 l .text 0000000000000000 .L0 +00000000000005e2 l .text 0000000000000000 .L0 +00000000000005e8 l .text 0000000000000000 .L0 +00000000000005fa l .text 0000000000000000 .L0 +00000000000005fe l .text 0000000000000000 .L0 +00000000000005fe l .text 0000000000000000 .L0 +0000000000000602 l .text 0000000000000000 .L0 +0000000000000606 l .text 0000000000000000 .L0 +000000000000060e l .text 0000000000000000 .L0 +0000000000000612 l .text 0000000000000000 .L0 +000000000000061a l .text 0000000000000000 .L0 +000000000000061e l .text 0000000000000000 .L0 +0000000000000622 l .text 0000000000000000 .L0 +0000000000000622 l .text 0000000000000000 .L0 +000000000000062a l .text 0000000000000000 .L0 +0000000000000630 l .text 0000000000000000 .L0 +0000000000000642 l .text 0000000000000000 .L0 +0000000000000642 l .text 0000000000000000 .L0 +0000000000000646 l .text 0000000000000000 .L0 +000000000000064e l .text 0000000000000000 .L0 +000000000000064e l .text 0000000000000000 .L0 +0000000000000658 l .text 0000000000000000 .L0 +0000000000000660 l .text 0000000000000000 .L0 +0000000000000664 l .text 0000000000000000 .L0 +0000000000000668 l .text 0000000000000000 .L0 +0000000000000668 l .text 0000000000000000 .L0 +0000000000000672 l .text 0000000000000000 .L0 +0000000000000672 l .text 0000000000000000 .L0 +0000000000000674 l .text 0000000000000000 .L0 +0000000000000674 l .text 0000000000000000 .L0 +0000000000000678 l .text 0000000000000000 .L0 +000000000000067c l .text 0000000000000000 .L0 +0000000000000680 l .text 0000000000000000 .L0 +0000000000000698 l .text 0000000000000000 .L0 +0000000000000698 l .text 0000000000000000 .L0 +0000000000000698 l .text 0000000000000000 .L0 +000000000000069c l .text 0000000000000000 .L0 +00000000000006a0 l .text 0000000000000000 .L0 +00000000000006a4 l .text 0000000000000000 .L0 +00000000000006ac l .text 0000000000000000 .L0 +00000000000006ac l .text 0000000000000000 .L0 +00000000000006b0 l .text 0000000000000000 .L0 +00000000000006b0 l .text 0000000000000000 .L0 +00000000000006b4 l .text 0000000000000000 .L0 +00000000000006bc l .text 0000000000000000 .L0 +00000000000006bc l .text 0000000000000000 .L0 +00000000000006ca l .text 0000000000000000 .L0 +00000000000006ce l .text 0000000000000000 .L0 +00000000000006d0 l .text 0000000000000000 .L0 +00000000000006d4 l .text 0000000000000000 .L0 +00000000000006d4 l .text 0000000000000000 .L0 +00000000000006d8 l .text 0000000000000000 .L0 +00000000000006e0 l .text 0000000000000000 .L0 +00000000000006ea l .text 0000000000000000 .L0 +00000000000006fe l .text 0000000000000000 .L0 +0000000000000700 l .text 0000000000000000 .L0 +0000000000000702 l .text 0000000000000000 .L0 +0000000000000702 l .text 0000000000000000 .L0 +0000000000000708 l .text 0000000000000000 .L0 +0000000000000708 l .text 0000000000000000 .L0 +000000000000070e l .text 0000000000000000 .L0 +0000000000000712 l .text 0000000000000000 .L0 +000000000000071e l .text 0000000000000000 .L0 +000000000000072e l .text 0000000000000000 .L0 +000000000000073c l .text 0000000000000000 .L0 +000000000000073e l .text 0000000000000000 .L0 +000000000000073e l .text 0000000000000000 .L0 +0000000000000742 l .text 0000000000000000 .L0 +0000000000000744 l .text 0000000000000000 .L0 +0000000000000748 l .text 0000000000000000 .L0 +000000000000074c l .text 0000000000000000 .L0 +000000000000074c l .text 0000000000000000 .L0 +000000000000074c l .text 0000000000000000 .L0 +000000000000074c l .text 0000000000000000 .L0 +000000000000074c l .text 0000000000000000 .L0 +0000000000000758 l .text 0000000000000000 .L0 +0000000000000764 l .text 0000000000000000 .L0 +0000000000000766 l .text 0000000000000000 .L0 +0000000000000772 l .text 0000000000000000 .L0 +0000000000000778 l .text 0000000000000000 .L0 +000000000000078c l .text 0000000000000000 .L0 +000000000000078c l .text 0000000000000000 .L0 +0000000000000798 l .text 0000000000000000 .L0 +0000000000000798 l .text 0000000000000000 .L0 +00000000000007a4 l .text 0000000000000000 .L0 +00000000000007ac l .text 0000000000000000 .L0 +00000000000007ac l .text 0000000000000000 .L0 +00000000000007ac l .text 0000000000000000 .L0 +00000000000007b0 l .text 0000000000000000 .L0 +00000000000007b0 l .text 0000000000000000 .L0 +00000000000007b4 l .text 0000000000000000 .L0 +00000000000007b4 l .text 0000000000000000 .L0 +00000000000007bc l .text 0000000000000000 .L0 +00000000000007bc l .text 0000000000000000 .L0 +00000000000007c0 l .text 0000000000000000 .L0 +00000000000007c0 l .text 0000000000000000 .L0 +00000000000007c8 l .text 0000000000000000 .L0 +00000000000007cc l .text 0000000000000000 .L0 +00000000000007cc l .text 0000000000000000 .L0 +00000000000007d0 l .text 0000000000000000 .L0 +00000000000007d0 l .text 0000000000000000 .L0 +00000000000007d6 l .text 0000000000000000 .L0 +00000000000007d8 l .text 0000000000000000 .L0 +00000000000007da l .text 0000000000000000 .L0 +00000000000007dc l .text 0000000000000000 .L0 +00000000000007dc l .text 0000000000000000 .L0 +00000000000007e2 l .text 0000000000000000 .L0 +00000000000007ec l .text 0000000000000000 .L0 +00000000000007f0 l .text 0000000000000000 .L0 +00000000000007f4 l .text 0000000000000000 .L0 +00000000000007f4 l .text 0000000000000000 .L0 +00000000000007f4 l .text 0000000000000000 .L0 +00000000000007f8 l .text 0000000000000000 .L0 +00000000000007fc l .text 0000000000000000 .L0 +0000000000000800 l .text 0000000000000000 .L0 +0000000000000800 l .text 0000000000000000 .L0 +000000000000080c l .text 0000000000000000 .L0 +000000000000080c l .text 0000000000000000 .L0 +000000000000080e l .text 0000000000000000 .L0 +0000000000000812 l .text 0000000000000000 .L0 +0000000000000812 l .text 0000000000000000 .L0 +0000000000000816 l .text 0000000000000000 .L0 +000000000000081a l .text 0000000000000000 .L0 +000000000000081a l .text 0000000000000000 .L0 +0000000000000822 l .text 0000000000000000 .L0 +0000000000000822 l .text 0000000000000000 .L0 +000000000000082e l .text 0000000000000000 .L0 +000000000000082e l .text 0000000000000000 .L0 +0000000000000836 l .text 0000000000000000 .L0 +0000000000000836 l .text 0000000000000000 .L0 +000000000000083e l .text 0000000000000000 .L0 +000000000000084a l .text 0000000000000000 .L0 +000000000000084a l .text 0000000000000000 .L0 +0000000000000856 l .text 0000000000000000 .L0 +0000000000000856 l .text 0000000000000000 .L0 +0000000000000860 l .text 0000000000000000 .L0 +0000000000000860 l .text 0000000000000000 .L0 +0000000000000866 l .text 0000000000000000 .L0 +000000000000086a l .text 0000000000000000 .L0 +000000000000086a l .text 0000000000000000 .L0 +000000000000086a l .text 0000000000000000 .L0 +000000000000086c l .text 0000000000000000 .L0 +0000000000000870 l .text 0000000000000000 .L0 +0000000000000870 l .text 0000000000000000 .L0 +0000000000000874 l .text 0000000000000000 .L0 +0000000000000878 l .text 0000000000000000 .L0 +0000000000000878 l .text 0000000000000000 .L0 +000000000000087e l .text 0000000000000000 .L0 +0000000000000886 l .text 0000000000000000 .L0 +0000000000000886 l .text 0000000000000000 .L0 +000000000000088c l .text 0000000000000000 .L0 +000000000000088c l .text 0000000000000000 .L0 +0000000000000890 l .text 0000000000000000 .L0 +0000000000000894 l .text 0000000000000000 .L0 +0000000000000894 l .text 0000000000000000 .L0 +0000000000000896 l .text 0000000000000000 .L0 +0000000000000896 l .text 0000000000000000 .L0 +00000000000008a2 l .text 0000000000000000 .L0 +00000000000008a2 l .text 0000000000000000 .L0 +00000000000008ac l .text 0000000000000000 .L0 +00000000000008ac l .text 0000000000000000 .L0 +00000000000008b6 l .text 0000000000000000 .L0 +00000000000008b6 l .text 0000000000000000 .L0 +00000000000008b6 l .text 0000000000000000 .L0 +00000000000008b6 l .text 0000000000000000 .L0 +00000000000008ba l .text 0000000000000000 .L0 +00000000000008ba l .text 0000000000000000 .L0 +00000000000008be l .text 0000000000000000 .L0 +00000000000008be l .text 0000000000000000 .L0 +00000000000008c4 l .text 0000000000000000 .L0 +00000000000008c8 l .text 0000000000000000 .L0 +00000000000008cc l .text 0000000000000000 .L0 +00000000000008e6 l .text 0000000000000000 .L0 +00000000000008f2 l .text 0000000000000000 .L0 +00000000000008fe l .text 0000000000000000 .L0 +0000000000000900 l .text 0000000000000000 .L0 +0000000000000900 l .text 0000000000000000 .L0 +0000000000000906 l .text 0000000000000000 .L0 +0000000000000906 l .text 0000000000000000 .L0 +000000000000090a l .text 0000000000000000 .L0 +000000000000090e l .text 0000000000000000 .L0 +000000000000090e l .text 0000000000000000 .L0 +0000000000000910 l .text 0000000000000000 .L0 +0000000000000918 l .text 0000000000000000 .L0 +0000000000000918 l .text 0000000000000000 .L0 +0000000000000922 l .text 0000000000000000 .L0 +0000000000000926 l .text 0000000000000000 .L0 +0000000000000928 l .text 0000000000000000 .L0 +0000000000000928 l .text 0000000000000000 .L0 +0000000000000930 l .text 0000000000000000 .L0 +0000000000000940 l .text 0000000000000000 .L0 +0000000000000940 l .text 0000000000000000 .L0 +0000000000000944 l .text 0000000000000000 .L0 +0000000000000946 l .text 0000000000000000 .L0 +0000000000000948 l .text 0000000000000000 .L0 +0000000000000948 l .text 0000000000000000 .L0 +000000000000094a l .text 0000000000000000 .L0 +0000000000000950 l .text 0000000000000000 .L0 +0000000000000950 l .text 0000000000000000 .L0 +000000000000095c l .text 0000000000000000 .L0 +000000000000095c l .text 0000000000000000 .L0 +000000000000095c l .text 0000000000000000 .L0 +000000000000095e l .text 0000000000000000 .L0 +000000000000095e l .text 0000000000000000 .L0 +0000000000000964 l .text 0000000000000000 .L0 +0000000000000966 l .text 0000000000000000 .L0 +0000000000000968 l .text 0000000000000000 .L0 +000000000000096c l .text 0000000000000000 .L0 +000000000000096c l .text 0000000000000000 .L0 +0000000000000972 l .text 0000000000000000 .L0 +000000000000097a l .text 0000000000000000 .L0 +000000000000097e l .text 0000000000000000 .L0 +000000000000097e l .text 0000000000000000 .L0 +000000000000098e l .text 0000000000000000 .L0 +0000000000000990 l .text 0000000000000000 .L0 +0000000000000990 l .text 0000000000000000 .L0 +0000000000000996 l .text 0000000000000000 .L0 +0000000000000996 l .text 0000000000000000 .L0 +0000000000000996 l .text 0000000000000000 .L0 +0000000000000996 l .text 0000000000000000 .L0 +0000000000000996 l .text 0000000000000000 .L0 +0000000000000998 l .text 0000000000000000 .L0 +00000000000009a6 l .text 0000000000000000 .L0 +00000000000009a6 l .text 0000000000000000 .L0 +00000000000009a8 l .text 0000000000000000 .L0 +00000000000009a8 l .text 0000000000000000 .L0 +00000000000009ac l .text 0000000000000000 .L0 +00000000000009b0 l .text 0000000000000000 .L0 +00000000000009b2 l .text 0000000000000000 .L0 +00000000000009b2 l .text 0000000000000000 .L0 +00000000000009b6 l .text 0000000000000000 .L0 +00000000000009bc l .text 0000000000000000 .L0 +00000000000009bc l .text 0000000000000000 .L0 +00000000000009bc l .text 0000000000000000 .L0 +00000000000009c4 l .text 0000000000000000 .L0 +00000000000009c4 l .text 0000000000000000 .L0 +00000000000009c8 l .text 0000000000000000 .L0 +00000000000009c8 l .text 0000000000000000 .L0 +00000000000009ca l .text 0000000000000000 .L0 +00000000000009d0 l .text 0000000000000000 .L0 +00000000000009d0 l .text 0000000000000000 .L0 +00000000000009de l .text 0000000000000000 .L0 +00000000000009ec l .text 0000000000000000 .L0 +00000000000009f4 l .text 0000000000000000 .L0 +00000000000009f8 l .text 0000000000000000 .L0 +00000000000009f8 l .text 0000000000000000 .L0 +00000000000009fc l .text 0000000000000000 .L0 +0000000000000a06 l .text 0000000000000000 .L0 +0000000000000a06 l .text 0000000000000000 .L0 +0000000000000a0c l .text 0000000000000000 .L0 +0000000000000a18 l .text 0000000000000000 .L0 +0000000000000a18 l .text 0000000000000000 .L0 +0000000000000a20 l .text 0000000000000000 .L0 +0000000000000a22 l .text 0000000000000000 .L0 +0000000000000a24 l .text 0000000000000000 .L0 +0000000000000a36 l .text 0000000000000000 .L0 +0000000000000a40 l .text 0000000000000000 .L0 +0000000000000a5c l .text 0000000000000000 .L0 +0000000000000a5c l .text 0000000000000000 .L0 +0000000000000a66 l .text 0000000000000000 .L0 +0000000000000a66 l .text 0000000000000000 .L0 +0000000000000a66 l .text 0000000000000000 .L0 +0000000000000a6a l .text 0000000000000000 .L0 +0000000000000a6e l .text 0000000000000000 .L0 +0000000000000a70 l .text 0000000000000000 .L0 +0000000000000a74 l .text 0000000000000000 .L0 +0000000000000a74 l .text 0000000000000000 .L0 +0000000000000a7c l .text 0000000000000000 .L0 +0000000000000a80 l .text 0000000000000000 .L0 +0000000000000a8c l .text 0000000000000000 .L0 +0000000000000a98 l .text 0000000000000000 .L0 +0000000000000a98 l .text 0000000000000000 .L0 +0000000000000a9c l .text 0000000000000000 .L0 +0000000000000ab8 l .text 0000000000000000 .L0 +0000000000000ac4 l .text 0000000000000000 .L0 +0000000000000ac4 l .text 0000000000000000 .L0 +0000000000000ac6 l .text 0000000000000000 .L0 +0000000000000ad4 l .text 0000000000000000 .L0 +0000000000000ad4 l .text 0000000000000000 .L0 +0000000000000af4 l .text 0000000000000000 .L0 +0000000000000af4 l .text 0000000000000000 .L0 +0000000000000af4 l .text 0000000000000000 .L0 +0000000000000af4 l .text 0000000000000000 .L0 +0000000000000af4 l .text 0000000000000000 .L0 +0000000000000afc l .text 0000000000000000 .L0 +0000000000000afe l .text 0000000000000000 .L0 +0000000000000b00 l .text 0000000000000000 .L0 +0000000000000b04 l .text 0000000000000000 .L0 +0000000000000b06 l .text 0000000000000000 .L0 +0000000000000b0c l .text 0000000000000000 .L0 +0000000000000b0e l .text 0000000000000000 .L0 +0000000000000b0e l .text 0000000000000000 .L0 +0000000000000b16 l .text 0000000000000000 .L0 +0000000000000b16 l .text 0000000000000000 .L0 +0000000000000b16 l .text 0000000000000000 .L0 +0000000000000b1c l .text 0000000000000000 .L0 +0000000000000100 l .debug_frame 0000000000000000 .L0 +0000000000000136 l .text 0000000000000000 .L0 +0000000000000146 l .text 0000000000000000 .L0 +0000000000000146 l .text 0000000000000000 .L0 +000000000000014e l .text 0000000000000000 .L0 +000000000000014e l .text 0000000000000000 .L0 +0000000000000af4 l .text 0000000000000000 .L0 +0000000000000af4 l .text 0000000000000000 .L0 +0000000000000b1c l .text 0000000000000000 .L0 +0000000000000ad6 l .text 0000000000000000 .L0 +000000000000017a l .text 0000000000000000 .L0 +0000000000000b18 l .text 0000000000000000 .L0 +0000000000000b06 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_ultoa_invert.c +0000000000000b2c l .text 0000000000000000 .L2 +0000000000000b4e l .text 0000000000000000 .L3 +0000000000000b2e l .text 0000000000000000 .L6 +0000000000000b56 l .text 0000000000000000 .L5 +0000000000000b42 l .text 0000000000000000 .L4 +00000000000006f0 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000000c52 l .debug_str 0000000000000000 .LASF4 +0000000000000c09 l .debug_str 0000000000000000 .LASF5 +0000000000000d02 l .debug_str 0000000000000000 .LASF6 +0000000000000220 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000001cd0 l .debug_line 0000000000000000 .Ldebug_line0 +0000000000000c3e l .debug_str 0000000000000000 .LASF7 +0000000000000b1c l .text 0000000000000000 .LFB0 +0000000000000b5c l .text 0000000000000000 .LFE0 +00000000000018c6 l .debug_loc 0000000000000000 .LLST0 +00000000000018fc l .debug_loc 0000000000000000 .LLST1 +0000000000000c4d l .debug_str 0000000000000000 .LASF0 +0000000000001932 l .debug_loc 0000000000000000 .LLST2 +0000000000000d24 l .debug_str 0000000000000000 .LASF1 +0000000000001968 l .debug_loc 0000000000000000 .LLST3 +00000000000019b3 l .debug_loc 0000000000000000 .LLST4 +0000000000000c22 l .debug_str 0000000000000000 .LASF2 +0000000000000c27 l .debug_str 0000000000000000 .LASF3 +0000000000000b1c l .text 0000000000000000 .LVL0 +0000000000000b24 l .text 0000000000000000 .LVL1 +0000000000000b2e l .text 0000000000000000 .LVL5 +0000000000000b2a l .text 0000000000000000 .LVL3 +0000000000000b26 l .text 0000000000000000 .LVL2 +0000000000000b2c l .text 0000000000000000 .LVL4 +0000000000000b36 l .text 0000000000000000 .LVL6 +0000000000000b54 l .text 0000000000000000 .LVL10 +0000000000000b56 l .text 0000000000000000 .LVL11 +0000000000000b5a l .text 0000000000000000 .LVL12 +00000000000013c7 l .debug_info 0000000000000000 .Ldebug_info0 +0000000000000b2c l .text 0000000000000000 .LBB2 +0000000000000b2e l .text 0000000000000000 .LBE2 +0000000000000b2e l .text 0000000000000000 .LBB3 +0000000000000b48 l .text 0000000000000000 .LBE3 +0000000000000b4e l .text 0000000000000000 .LBB4 +0000000000000b5c l .text 0000000000000000 .LBE4 +0000000000000b1c l .text 0000000000000000 .L0 +0000000000000b1c l .text 0000000000000000 .L0 +0000000000000b1c l .text 0000000000000000 .L0 +0000000000000b1c l .text 0000000000000000 .L0 +0000000000000b20 l .text 0000000000000000 .L0 +0000000000000b24 l .text 0000000000000000 .L0 +0000000000000b26 l .text 0000000000000000 .L0 +0000000000000b26 l .text 0000000000000000 .L0 +0000000000000b26 l .text 0000000000000000 .L0 +0000000000000b2a l .text 0000000000000000 .L0 +0000000000000b2c l .text 0000000000000000 .L0 +0000000000000b2e l .text 0000000000000000 .L0 +0000000000000b2e l .text 0000000000000000 .L0 +0000000000000b2e l .text 0000000000000000 .L0 +0000000000000b2e l .text 0000000000000000 .L0 +0000000000000b34 l .text 0000000000000000 .L0 +0000000000000b36 l .text 0000000000000000 .L0 +0000000000000b36 l .text 0000000000000000 .L0 +0000000000000b3a l .text 0000000000000000 .L0 +0000000000000b3a l .text 0000000000000000 .L0 +0000000000000b3e l .text 0000000000000000 .L0 +0000000000000b3e l .text 0000000000000000 .L0 +0000000000000b42 l .text 0000000000000000 .L0 +0000000000000b42 l .text 0000000000000000 .L0 +0000000000000b46 l .text 0000000000000000 .L0 +0000000000000b48 l .text 0000000000000000 .L0 +0000000000000b48 l .text 0000000000000000 .L0 +0000000000000b4c l .text 0000000000000000 .L0 +0000000000000b4c l .text 0000000000000000 .L0 +0000000000000b4e l .text 0000000000000000 .L0 +0000000000000b4e l .text 0000000000000000 .L0 +0000000000000b50 l .text 0000000000000000 .L0 +0000000000000b50 l .text 0000000000000000 .L0 +0000000000000b56 l .text 0000000000000000 .L0 +0000000000000b56 l .text 0000000000000000 .L0 +0000000000000b5c l .text 0000000000000000 .L0 +00000000000001c0 l .debug_frame 0000000000000000 .L0 +0000000000000b1c l .text 0000000000000000 .L0 +0000000000000b5c l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_dtoa_engine.c +0000000000000008 l .srodata.cst8 0000000000000000 .LC1 +0000000000000bd6 l .text 0000000000000000 .L0 +0000000000000010 l .srodata.cst8 0000000000000000 .LC2 +0000000000000bf8 l .text 0000000000000000 .L0 +0000000000000018 l .srodata.cst8 0000000000000000 .LC3 +0000000000000c06 l .text 0000000000000000 .L0 +0000000000000c0e l .text 0000000000000000 .L0 +0000000000000c5e l .text 0000000000000000 .L0 +0000000000000c70 l .text 0000000000000000 .L0 +0000000000000020 l .srodata.cst8 0000000000000000 .LC4 +0000000000000c7e l .text 0000000000000000 .L0 +0000000000000000 l .srodata.cst8 0000000000000000 .LC0 +0000000000000c92 l .text 0000000000000000 .L0 +0000000000000cc0 l .text 0000000000000000 .L0 +0000000000000b7c l .text 0000000000000000 .L2 +0000000000000bc6 l .text 0000000000000000 .L3 +0000000000000b96 l .text 0000000000000000 .L5 +0000000000000bd4 l .text 0000000000000000 .L7 +0000000000000ba6 l .text 0000000000000000 .L39 +0000000000000bf6 l .text 0000000000000000 .L8 +0000000000000cc0 l .text 0000000000000000 .L36 +0000000000000c38 l .text 0000000000000000 .L11 +0000000000000c1e l .text 0000000000000000 .L13 +0000000000000c5a l .text 0000000000000000 .L18 +0000000000000c4a l .text 0000000000000000 .L19 +0000000000000c56 l .text 0000000000000000 .L20 +0000000000000c8c l .text 0000000000000000 .L21 +0000000000000ba8 l .text 0000000000000000 .L6 +0000000000000c9c l .text 0000000000000000 .L23 +0000000000000cea l .text 0000000000000000 .L15 +0000000000000cd0 l .text 0000000000000000 .L17 +0000000000000c40 l .text 0000000000000000 .L14 +000000000000078c l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000000ddb l .debug_str 0000000000000000 .LASF29 +0000000000000d2a l .debug_str 0000000000000000 .LASF30 +0000000000000eb5 l .debug_str 0000000000000000 .LASF31 +0000000000000280 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000001e3e l .debug_line 0000000000000000 .Ldebug_line0 +0000000000000f5c l .debug_str 0000000000000000 .LASF0 +0000000000000f68 l .debug_str 0000000000000000 .LASF4 +0000000000000e8b l .debug_str 0000000000000000 .LASF1 +0000000000000f3d l .debug_str 0000000000000000 .LASF2 +0000000000000db8 l .debug_str 0000000000000000 .LASF3 +0000000000000d78 l .debug_str 0000000000000000 .LASF5 +0000000000000ed7 l .debug_str 0000000000000000 .LASF6 +0000000000000f47 l .debug_str 0000000000000000 .LASF7 +0000000000000d5d l .debug_str 0000000000000000 .LASF8 +0000000000000da6 l .debug_str 0000000000000000 .LASF9 +0000000000000eea l .debug_str 0000000000000000 .LASF10 +0000000000000f01 l .debug_str 0000000000000000 .LASF11 +0000000000000f09 l .debug_str 0000000000000000 .LASF12 +0000000000000d4f l .debug_str 0000000000000000 .LASF13 +0000000000000f31 l .debug_str 0000000000000000 .LASF14 +0000000000000f11 l .debug_str 0000000000000000 .LASF15 +0000000000000f50 l .debug_str 0000000000000000 .LASF16 +0000000000000d67 l .debug_str 0000000000000000 .LASF17 +0000000000000ea0 l .debug_str 0000000000000000 .LASF18 +0000000000000d81 l .debug_str 0000000000000000 .LASF32 +0000000000000ee4 l .debug_str 0000000000000000 .LASF19 +0000000000000f36 l .debug_str 0000000000000000 .LASF20 +0000000000000dcb l .debug_str 0000000000000000 .LASF21 +0000000000000f1f l .debug_str 0000000000000000 .LASF22 +0000000000000f71 l .debug_str 0000000000000000 .LASF23 +0000000000000ea7 l .debug_str 0000000000000000 .LASF33 +0000000000000b5c l .text 0000000000000000 .LFB0 +0000000000000cf4 l .text 0000000000000000 .LFE0 +0000000000001a1d l .debug_loc 0000000000000000 .LLST0 +0000000000000d58 l .debug_str 0000000000000000 .LASF24 +0000000000001af5 l .debug_loc 0000000000000000 .LLST1 +0000000000000d6d l .debug_str 0000000000000000 .LASF25 +0000000000001b8d l .debug_loc 0000000000000000 .LLST2 +0000000000000d88 l .debug_str 0000000000000000 .LASF26 +0000000000001c3e l .debug_loc 0000000000000000 .LLST3 +0000000000001cb3 l .debug_loc 0000000000000000 .LLST4 +0000000000001d72 l .debug_loc 0000000000000000 .LLST5 +0000000000001e0e l .debug_loc 0000000000000000 .LLST6 +0000000000000bf6 l .text 0000000000000000 .LBB2 +0000000000000cf4 l .text 0000000000000000 .LBE2 +0000000000001e7f l .debug_loc 0000000000000000 .LLST7 +0000000000000d4a l .debug_str 0000000000000000 .LASF27 +0000000000001eb7 l .debug_loc 0000000000000000 .LLST8 +0000000000000d42 l .debug_str 0000000000000000 .LASF28 +0000000000001eed l .debug_loc 0000000000000000 .LLST9 +0000000000000ba6 l .text 0000000000000000 .LVL7 +0000000000000e99 l .debug_str 0000000000000000 .LASF34 +0000000000000d95 l .debug_str 0000000000000000 .LASF35 +0000000000000b5c l .text 0000000000000000 .LVL0 +0000000000000b7c l .text 0000000000000000 .LVL2 +0000000000000ba8 l .text 0000000000000000 .LVL8 +0000000000000bc6 l .text 0000000000000000 .LVL12 +0000000000000bde l .text 0000000000000000 .LVL15 +0000000000000c2e l .text 0000000000000000 .LVL22 +0000000000000c38 l .text 0000000000000000 .LVL24 +0000000000000c70 l .text 0000000000000000 .LVL29 +0000000000000cc0 l .text 0000000000000000 .LVL38 +0000000000000ce0 l .text 0000000000000000 .LVL42 +0000000000000cea l .text 0000000000000000 .LVL44 +0000000000000b9e l .text 0000000000000000 .LVL6 +0000000000000bc2 l .text 0000000000000000 .LVL11 +0000000000000c1c l .text 0000000000000000 .LVL19 +0000000000000cce l .text 0000000000000000 .LVL39 +0000000000000b9a l .text 0000000000000000 .LVL5 +0000000000000bb6 l .text 0000000000000000 .LVL9 +0000000000000c0e l .text 0000000000000000 .LVL18 +0000000000000c5a l .text 0000000000000000 .LVL27 +0000000000000cd0 l .text 0000000000000000 .LVL40 +0000000000000b90 l .text 0000000000000000 .LVL4 +0000000000000c50 l .text 0000000000000000 .LVL26 +0000000000000bf6 l .text 0000000000000000 .LVL17 +0000000000000c1e l .text 0000000000000000 .LVL20 +0000000000000c36 l .text 0000000000000000 .LVL23 +0000000000000ce8 l .text 0000000000000000 .LVL43 +0000000000000b74 l .text 0000000000000000 .LVL1 +0000000000000bc0 l .text 0000000000000000 .LVL10 +0000000000000bd2 l .text 0000000000000000 .LVL13 +0000000000000bd4 l .text 0000000000000000 .LVL14 +0000000000000b8c l .text 0000000000000000 .LVL3 +0000000000000c3a l .text 0000000000000000 .LVL25 +0000000000000c90 l .text 0000000000000000 .LVL32 +0000000000000c9c l .text 0000000000000000 .LVL33 +0000000000000cae l .text 0000000000000000 .LVL34 +0000000000000cec l .text 0000000000000000 .LVL45 +0000000000000c26 l .text 0000000000000000 .LVL21 +0000000000000c6a l .text 0000000000000000 .LVL28 +0000000000000cd8 l .text 0000000000000000 .LVL41 +0000000000000cb6 l .text 0000000000000000 .LVL35 +0000000000000cba l .text 0000000000000000 .LVL36 +0000000000001483 l .debug_info 0000000000000000 .Ldebug_info0 +0000000000000b5c l .text 0000000000000000 .L0 +0000000000000b5c l .text 0000000000000000 .L0 +0000000000000b5c l .text 0000000000000000 .L0 +0000000000000b5c l .text 0000000000000000 .L0 +0000000000000b5c l .text 0000000000000000 .L0 +0000000000000b5c l .text 0000000000000000 .L0 +0000000000000b60 l .text 0000000000000000 .L0 +0000000000000b62 l .text 0000000000000000 .L0 +0000000000000b6a l .text 0000000000000000 .L0 +0000000000000b70 l .text 0000000000000000 .L0 +0000000000000b74 l .text 0000000000000000 .L0 +0000000000000b74 l .text 0000000000000000 .L0 +0000000000000b74 l .text 0000000000000000 .L0 +0000000000000b78 l .text 0000000000000000 .L0 +0000000000000b7a l .text 0000000000000000 .L0 +0000000000000b7c l .text 0000000000000000 .L0 +0000000000000b7c l .text 0000000000000000 .L0 +0000000000000b88 l .text 0000000000000000 .L0 +0000000000000b88 l .text 0000000000000000 .L0 +0000000000000b8c l .text 0000000000000000 .L0 +0000000000000b8c l .text 0000000000000000 .L0 +0000000000000ba6 l .text 0000000000000000 .L0 +0000000000000ba8 l .text 0000000000000000 .L0 +0000000000000ba8 l .text 0000000000000000 .L0 +0000000000000bb0 l .text 0000000000000000 .L0 +0000000000000bb0 l .text 0000000000000000 .L0 +0000000000000bb6 l .text 0000000000000000 .L0 +0000000000000bba l .text 0000000000000000 .L0 +0000000000000bba l .text 0000000000000000 .L0 +0000000000000bbe l .text 0000000000000000 .L0 +0000000000000bbe l .text 0000000000000000 .L0 +0000000000000bc6 l .text 0000000000000000 .L0 +0000000000000bc6 l .text 0000000000000000 .L0 +0000000000000bce l .text 0000000000000000 .L0 +0000000000000bce l .text 0000000000000000 .L0 +0000000000000bd4 l .text 0000000000000000 .L0 +0000000000000bd4 l .text 0000000000000000 .L0 +0000000000000bf0 l .text 0000000000000000 .L0 +0000000000000bf0 l .text 0000000000000000 .L0 +0000000000000bf6 l .text 0000000000000000 .L0 +0000000000000bf6 l .text 0000000000000000 .L0 +0000000000000bf6 l .text 0000000000000000 .L0 +0000000000000bf6 l .text 0000000000000000 .L0 +0000000000000c06 l .text 0000000000000000 .L0 +0000000000000c16 l .text 0000000000000000 .L0 +0000000000000c18 l .text 0000000000000000 .L0 +0000000000000c1a l .text 0000000000000000 .L0 +0000000000000c1c l .text 0000000000000000 .L0 +0000000000000c1e l .text 0000000000000000 .L0 +0000000000000c1e l .text 0000000000000000 .L0 +0000000000000c26 l .text 0000000000000000 .L0 +0000000000000c26 l .text 0000000000000000 .L0 +0000000000000c2e l .text 0000000000000000 .L0 +0000000000000c2e l .text 0000000000000000 .L0 +0000000000000c2e l .text 0000000000000000 .L0 +0000000000000c32 l .text 0000000000000000 .L0 +0000000000000c36 l .text 0000000000000000 .L0 +0000000000000c38 l .text 0000000000000000 .L0 +0000000000000c38 l .text 0000000000000000 .L0 +0000000000000c3a l .text 0000000000000000 .L0 +0000000000000c3a l .text 0000000000000000 .L0 +0000000000000c40 l .text 0000000000000000 .L0 +0000000000000c40 l .text 0000000000000000 .L0 +0000000000000c42 l .text 0000000000000000 .L0 +0000000000000c42 l .text 0000000000000000 .L0 +0000000000000c50 l .text 0000000000000000 .L0 +0000000000000c5a l .text 0000000000000000 .L0 +0000000000000c5a l .text 0000000000000000 .L0 +0000000000000c68 l .text 0000000000000000 .L0 +0000000000000c70 l .text 0000000000000000 .L0 +0000000000000c70 l .text 0000000000000000 .L0 +0000000000000c7e l .text 0000000000000000 .L0 +0000000000000c7e l .text 0000000000000000 .L0 +0000000000000c8a l .text 0000000000000000 .L0 +0000000000000c8a l .text 0000000000000000 .L0 +0000000000000c8c l .text 0000000000000000 .L0 +0000000000000c8c l .text 0000000000000000 .L0 +0000000000000c90 l .text 0000000000000000 .L0 +0000000000000c90 l .text 0000000000000000 .L0 +0000000000000c92 l .text 0000000000000000 .L0 +0000000000000c9a l .text 0000000000000000 .L0 +0000000000000c9c l .text 0000000000000000 .L0 +0000000000000c9c l .text 0000000000000000 .L0 +0000000000000ca4 l .text 0000000000000000 .L0 +0000000000000ca4 l .text 0000000000000000 .L0 +0000000000000ca8 l .text 0000000000000000 .L0 +0000000000000cae l .text 0000000000000000 .L0 +0000000000000cb2 l .text 0000000000000000 .L0 +0000000000000cb6 l .text 0000000000000000 .L0 +0000000000000cba l .text 0000000000000000 .L0 +0000000000000cba l .text 0000000000000000 .L0 +0000000000000cba l .text 0000000000000000 .L0 +0000000000000cbe l .text 0000000000000000 .L0 +0000000000000cc8 l .text 0000000000000000 .L0 +0000000000000cca l .text 0000000000000000 .L0 +0000000000000ccc l .text 0000000000000000 .L0 +0000000000000cce l .text 0000000000000000 .L0 +0000000000000cd0 l .text 0000000000000000 .L0 +0000000000000cd0 l .text 0000000000000000 .L0 +0000000000000cd8 l .text 0000000000000000 .L0 +0000000000000cd8 l .text 0000000000000000 .L0 +0000000000000ce0 l .text 0000000000000000 .L0 +0000000000000ce0 l .text 0000000000000000 .L0 +0000000000000ce0 l .text 0000000000000000 .L0 +0000000000000ce4 l .text 0000000000000000 .L0 +0000000000000ce8 l .text 0000000000000000 .L0 +0000000000000cea l .text 0000000000000000 .L0 +0000000000000cea l .text 0000000000000000 .L0 +0000000000000cec l .text 0000000000000000 .L0 +0000000000000cec l .text 0000000000000000 .L0 +0000000000000cf4 l .text 0000000000000000 .L0 +00000000000001e8 l .debug_frame 0000000000000000 .L0 +0000000000000b5c l .text 0000000000000000 .L0 +0000000000000cf4 l .text 0000000000000000 .L0 +0000000000000bb2 l .text 0000000000000000 .L0 +0000000000000b6a l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_dtoa_data.c +00000000000008c7 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000000ff6 l .debug_str 0000000000000000 .LASF13 +0000000000000f7e l .debug_str 0000000000000000 .LASF14 +00000000000010ad l .debug_str 0000000000000000 .LASF15 +00000000000022f3 l .debug_line 0000000000000000 .Ldebug_line0 +00000000000010fe l .debug_str 0000000000000000 .LASF0 +0000000000000fc3 l .debug_str 0000000000000000 .LASF1 +00000000000010eb l .debug_str 0000000000000000 .LASF2 +0000000000000fe3 l .debug_str 0000000000000000 .LASF3 +0000000000000f94 l .debug_str 0000000000000000 .LASF4 +00000000000010f5 l .debug_str 0000000000000000 .LASF5 +0000000000000fd1 l .debug_str 0000000000000000 .LASF6 +00000000000010cf l .debug_str 0000000000000000 .LASF7 +00000000000010e6 l .debug_str 0000000000000000 .LASF8 +00000000000010a6 l .debug_str 0000000000000000 .LASF9 +0000000000000fa1 l .debug_str 0000000000000000 .LASF10 +0000000000000fb1 l .debug_str 0000000000000000 .LASF11 +000000000000110a l .debug_str 0000000000000000 .LASF12 +00000000000016d3 l .debug_info 0000000000000000 .Ldebug_info0 +0000000000000000 l df *ABS* 0000000000000000 lib_exit.c +000000000000092f l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000001231 l .debug_str 0000000000000000 .LASF19 +0000000000001138 l .debug_str 0000000000000000 .LASF20 +000000000000120f l .debug_str 0000000000000000 .LASF21 +00000000000002a0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000000233e l .debug_line 0000000000000000 .Ldebug_line0 +00000000000011e8 l .debug_str 0000000000000000 .LASF0 +00000000000011a1 l .debug_str 0000000000000000 .LASF1 +0000000000001205 l .debug_str 0000000000000000 .LASF2 +00000000000011d5 l .debug_str 0000000000000000 .LASF3 +0000000000001125 l .debug_str 0000000000000000 .LASF4 +00000000000011c6 l .debug_str 0000000000000000 .LASF5 +0000000000001151 l .debug_str 0000000000000000 .LASF6 +0000000000001177 l .debug_str 0000000000000000 .LASF7 +00000000000011ba l .debug_str 0000000000000000 .LASF8 +0000000000001117 l .debug_str 0000000000000000 .LASF9 +00000000000011f4 l .debug_str 0000000000000000 .LASF10 +00000000000011cf l .debug_str 0000000000000000 .LASF11 +0000000000001194 l .debug_str 0000000000000000 .LASF22 +0000000000001132 l .debug_str 0000000000000000 .LASF12 +0000000000000d3a l .text 0000000000000000 .LFB9 +0000000000000d46 l .text 0000000000000000 .LFE9 +000000000000114a l .debug_str 0000000000000000 .LASF14 +0000000000001f2c l .debug_loc 0000000000000000 .LLST2 +0000000000000d46 l .text 0000000000000000 .LVL10 +00000000000011af l .debug_str 0000000000000000 .LASF13 +0000000000000d1c l .text 0000000000000000 .LFB8 +0000000000000d3a l .text 0000000000000000 .LFE8 +0000000000001f65 l .debug_loc 0000000000000000 .LLST1 +0000000000000d30 l .text 0000000000000000 .LVL7 +0000000000000d3a l .text 0000000000000000 .LVL8 +0000000000001200 l .debug_str 0000000000000000 .LASF15 +0000000000000cf4 l .text 0000000000000000 .LFB7 +0000000000000d1c l .text 0000000000000000 .LFE7 +0000000000001f9e l .debug_loc 0000000000000000 .LLST0 +0000000000000d08 l .text 0000000000000000 .LVL2 +0000000000000d12 l .text 0000000000000000 .LVL3 +0000000000000d1c l .text 0000000000000000 .LVL4 +000000000000118e l .debug_str 0000000000000000 .LASF16 +0000000000001163 l .debug_str 0000000000000000 .LASF17 +00000000000011bf l .debug_str 0000000000000000 .LASF18 +0000000000000d3a l .text 0000000000000000 .LVL9 +0000000000000d1c l .text 0000000000000000 .LVL5 +0000000000000d26 l .text 0000000000000000 .LVL6 +0000000000000cf4 l .text 0000000000000000 .LVL0 +0000000000000cfe l .text 0000000000000000 .LVL1 +00000000000017e3 l .debug_info 0000000000000000 .Ldebug_info0 +0000000000000cf4 l .text 0000000000000000 .L0 +0000000000000d1c l .text 0000000000000000 .L0 +0000000000000d3a l .text 0000000000000000 .L0 +0000000000000cf4 l .text 0000000000000000 .L0 +0000000000000cf4 l .text 0000000000000000 .L0 +0000000000000cf8 l .text 0000000000000000 .L0 +0000000000000cfa l .text 0000000000000000 .L0 +0000000000000cfc l .text 0000000000000000 .L0 +0000000000000cfe l .text 0000000000000000 .L0 +0000000000000d00 l .text 0000000000000000 .L0 +0000000000000d08 l .text 0000000000000000 .L0 +0000000000000d08 l .text 0000000000000000 .L0 +0000000000000d12 l .text 0000000000000000 .L0 +0000000000000d1c l .text 0000000000000000 .L0 +0000000000000d1c l .text 0000000000000000 .L0 +0000000000000d1c l .text 0000000000000000 .L0 +0000000000000d20 l .text 0000000000000000 .L0 +0000000000000d22 l .text 0000000000000000 .L0 +0000000000000d24 l .text 0000000000000000 .L0 +0000000000000d26 l .text 0000000000000000 .L0 +0000000000000d28 l .text 0000000000000000 .L0 +0000000000000d30 l .text 0000000000000000 .L0 +0000000000000d30 l .text 0000000000000000 .L0 +0000000000000d3a l .text 0000000000000000 .L0 +0000000000000d3a l .text 0000000000000000 .L0 +0000000000000d3a l .text 0000000000000000 .L0 +0000000000000d3e l .text 0000000000000000 .L0 +0000000000000d46 l .text 0000000000000000 .L0 +0000000000000230 l .debug_frame 0000000000000000 .L0 +0000000000000cf4 l .text 0000000000000000 .L0 +0000000000000d1c l .text 0000000000000000 .L0 +0000000000000d1c l .text 0000000000000000 .L0 +0000000000000d3a l .text 0000000000000000 .L0 +0000000000000d3a l .text 0000000000000000 .L0 +0000000000000d46 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_rawoutstream.c +0000000000000d46 l F .text 0000000000000070 rawoutstream_puts +0000000000000db6 l F .text 000000000000001c rawoutstream_putc +000000000000aa88 l .rodata 0000000000000000 .LC0 +0000000000000d90 l .text 0000000000000000 .L0 +000000000000aa98 l .rodata 0000000000000000 .LC1 +0000000000000d9c l .text 0000000000000000 .L0 +0000000000000d82 l .text 0000000000000000 .L2 +0000000000000dac l .text 0000000000000000 .L4 +0000000000000d5a l .text 0000000000000000 .L5 +0000000000000d74 l .text 0000000000000000 .L3 +0000000000000dd2 l .text 0000000000000000 .L0 +0000000000000ddc l .text 0000000000000000 .L0 +0000000000000de6 l .text 0000000000000000 .L0 +0000000000000a05 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000001364 l .debug_str 0000000000000000 .LASF28 +00000000000012fa l .debug_str 0000000000000000 .LASF29 +000000000000141f l .debug_str 0000000000000000 .LASF30 +00000000000002e0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +00000000000024b6 l .debug_line 0000000000000000 .Ldebug_line0 +00000000000014f3 l .debug_str 0000000000000000 .LASF0 +0000000000001319 l .debug_str 0000000000000000 .LASF1 +00000000000014b1 l .debug_str 0000000000000000 .LASF2 +000000000000134b l .debug_str 0000000000000000 .LASF3 +0000000000001446 l .debug_str 0000000000000000 .LASF4 +00000000000012e8 l .debug_str 0000000000000000 .LASF5 +0000000000001339 l .debug_str 0000000000000000 .LASF6 +0000000000001453 l .debug_str 0000000000000000 .LASF7 +0000000000001490 l .debug_str 0000000000000000 .LASF8 +0000000000001482 l .debug_str 0000000000000000 .LASF9 +0000000000001476 l .debug_str 0000000000000000 .LASF10 +0000000000001511 l .debug_str 0000000000000000 .LASF11 +00000000000014e3 l .debug_str 0000000000000000 .LASF16 +00000000000014c4 l .debug_str 0000000000000000 .LASF19 +0000000000001314 l .debug_str 0000000000000000 .LASF12 +000000000000149b l .debug_str 0000000000000000 .LASF13 +00000000000014ee l .debug_str 0000000000000000 .LASF14 +0000000000001495 l .debug_str 0000000000000000 .LASF15 +0000000000001414 l .debug_str 0000000000000000 .LASF17 +000000000000146a l .debug_str 0000000000000000 .LASF18 +0000000000001517 l .debug_str 0000000000000000 .LASF20 +00000000000014dc l .debug_str 0000000000000000 .LASF21 +00000000000014a0 l .debug_str 0000000000000000 .LASF31 +0000000000000dd2 l .text 0000000000000000 .LFB6 +0000000000000df8 l .text 0000000000000000 .LFE6 +00000000000012e1 l .debug_str 0000000000000000 .LASF22 +00000000000014ff l .debug_str 0000000000000000 .LASF32 +0000000000000db6 l .text 0000000000000000 .LFB5 +0000000000000dd2 l .text 0000000000000000 .LFE5 +0000000000001441 l .debug_str 0000000000000000 .LASF23 +0000000000001fd7 l .debug_loc 0000000000000000 .LLST8 +0000000000002010 l .debug_loc 0000000000000000 .LLST9 +0000000000000dcc l .text 0000000000000000 .LVL15 +0000000000001327 l .debug_str 0000000000000000 .LASF33 +00000000000014bb l .debug_str 0000000000000000 .LASF24 +0000000000000d46 l .text 0000000000000000 .LFB4 +0000000000000db6 l .text 0000000000000000 .LFE4 +0000000000002049 l .debug_loc 0000000000000000 .LLST0 +00000000000020a8 l .debug_loc 0000000000000000 .LLST1 +0000000000002107 l .debug_loc 0000000000000000 .LLST2 +0000000000002140 l .debug_loc 0000000000000000 .LLST3 +000000000000219f l .debug_loc 0000000000000000 .LLST4 +0000000000000d90 l .text 0000000000000000 .LBB4 +0000000000000dac l .text 0000000000000000 .LBE4 +0000000000002215 l .debug_loc 0000000000000000 .LLST5 +0000000000002238 l .debug_loc 0000000000000000 .LLST6 +000000000000225b l .debug_loc 0000000000000000 .LLST7 +0000000000000dac l .text 0000000000000000 .LVL12 +0000000000000d68 l .text 0000000000000000 .LVL3 +0000000000000d8a l .text 0000000000000000 .LVL9 +00000000000012f1 l .debug_str 0000000000000000 .LASF25 +000000000000135e l .debug_str 0000000000000000 .LASF26 +00000000000014d4 l .debug_str 0000000000000000 .LASF27 +0000000000000db6 l .text 0000000000000000 .LVL13 +0000000000000dc2 l .text 0000000000000000 .LVL14 +0000000000000d46 l .text 0000000000000000 .LVL0 +0000000000000d5a l .text 0000000000000000 .LVL2 +0000000000000d78 l .text 0000000000000000 .LVL6 +0000000000000d82 l .text 0000000000000000 .LVL8 +0000000000000d7a l .text 0000000000000000 .LVL7 +0000000000000d56 l .text 0000000000000000 .LVL1 +0000000000000d6a l .text 0000000000000000 .LVL4 +0000000000000d74 l .text 0000000000000000 .LVL5 +0000000000000d8c l .text 0000000000000000 .LVL10 +0000000000000d90 l .text 0000000000000000 .LVL11 +00000000000019bd l .debug_info 0000000000000000 .Ldebug_info0 +0000000000000d46 l .text 0000000000000000 .L0 +0000000000000db6 l .text 0000000000000000 .L0 +0000000000000dd2 l .text 0000000000000000 .L0 +0000000000000d52 l .text 0000000000000000 .L0 +0000000000000d56 l .text 0000000000000000 .L0 +0000000000000d56 l .text 0000000000000000 .L0 +0000000000000d56 l .text 0000000000000000 .L0 +0000000000000d58 l .text 0000000000000000 .L0 +0000000000000d5a l .text 0000000000000000 .L0 +0000000000000d5a l .text 0000000000000000 .L0 +0000000000000d5a l .text 0000000000000000 .L0 +0000000000000d68 l .text 0000000000000000 .L0 +0000000000000d6a l .text 0000000000000000 .L0 +0000000000000d6a l .text 0000000000000000 .L0 +0000000000000d6e l .text 0000000000000000 .L0 +0000000000000d6e l .text 0000000000000000 .L0 +0000000000000d74 l .text 0000000000000000 .L0 +0000000000000d74 l .text 0000000000000000 .L0 +0000000000000d82 l .text 0000000000000000 .L0 +0000000000000d82 l .text 0000000000000000 .L0 +0000000000000d8c l .text 0000000000000000 .L0 +0000000000000d8c l .text 0000000000000000 .L0 +0000000000000d90 l .text 0000000000000000 .L0 +0000000000000dac l .text 0000000000000000 .L0 +0000000000000dac l .text 0000000000000000 .L0 +0000000000000dac l .text 0000000000000000 .L0 +0000000000000db0 l .text 0000000000000000 .L0 +0000000000000db6 l .text 0000000000000000 .L0 +0000000000000db6 l .text 0000000000000000 .L0 +0000000000000db6 l .text 0000000000000000 .L0 +0000000000000db8 l .text 0000000000000000 .L0 +0000000000000dbc l .text 0000000000000000 .L0 +0000000000000dc2 l .text 0000000000000000 .L0 +0000000000000dc4 l .text 0000000000000000 .L0 +0000000000000dcc l .text 0000000000000000 .L0 +0000000000000dd2 l .text 0000000000000000 .L0 +0000000000000dd2 l .text 0000000000000000 .L0 +0000000000000dd2 l .text 0000000000000000 .L0 +0000000000000ddc l .text 0000000000000000 .L0 +0000000000000ddc l .text 0000000000000000 .L0 +0000000000000de6 l .text 0000000000000000 .L0 +0000000000000de6 l .text 0000000000000000 .L0 +0000000000000df0 l .text 0000000000000000 .L0 +0000000000000df0 l .text 0000000000000000 .L0 +0000000000000df4 l .text 0000000000000000 .L0 +0000000000000df4 l .text 0000000000000000 .L0 +0000000000000df6 l .text 0000000000000000 .L0 +0000000000000df8 l .text 0000000000000000 .L0 +00000000000002b0 l .debug_frame 0000000000000000 .L0 +0000000000000d46 l .text 0000000000000000 .L0 +0000000000000db6 l .text 0000000000000000 .L0 +0000000000000db6 l .text 0000000000000000 .L0 +0000000000000dd2 l .text 0000000000000000 .L0 +0000000000000dd2 l .text 0000000000000000 .L0 +0000000000000df8 l .text 0000000000000000 .L0 +0000000000000d76 l .text 0000000000000000 .L0 +0000000000000d52 l .text 0000000000000000 .L0 +0000000000000dce l .text 0000000000000000 .L0 +0000000000000dc4 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_libnoflush.c +0000000000000bfa l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000000165d l .debug_str 0000000000000000 .LASF20 +000000000000160d l .debug_str 0000000000000000 .LASF21 +0000000000001625 l .debug_str 0000000000000000 .LASF22 +0000000000000320 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000002717 l .debug_line 0000000000000000 .Ldebug_line0 +00000000000015da l .debug_str 0000000000000000 .LASF0 +000000000000158e l .debug_str 0000000000000000 .LASF1 +0000000000001603 l .debug_str 0000000000000000 .LASF2 +00000000000015c7 l .debug_str 0000000000000000 .LASF3 +0000000000001543 l .debug_str 0000000000000000 .LASF4 +00000000000015ac l .debug_str 0000000000000000 .LASF5 +0000000000001560 l .debug_str 0000000000000000 .LASF6 +0000000000001572 l .debug_str 0000000000000000 .LASF7 +000000000000159c l .debug_str 0000000000000000 .LASF8 +000000000000155a l .debug_str 0000000000000000 .LASF9 +000000000000152a l .debug_str 0000000000000000 .LASF10 +00000000000015e6 l .debug_str 0000000000000000 .LASF11 +00000000000015c1 l .debug_str 0000000000000000 .LASF12 +00000000000015a1 l .debug_str 0000000000000000 .LASF17 +000000000000164d l .debug_str 0000000000000000 .LASF23 +0000000000001555 l .debug_str 0000000000000000 .LASF13 +00000000000015f2 l .debug_str 0000000000000000 .LASF14 +0000000000001550 l .debug_str 0000000000000000 .LASF15 +0000000000001647 l .debug_str 0000000000000000 .LASF16 +0000000000001538 l .debug_str 0000000000000000 .LASF18 +00000000000015b5 l .debug_str 0000000000000000 .LASF19 +00000000000015f7 l .debug_str 0000000000000000 .LASF24 +0000000000000df8 l .text 0000000000000000 .LFB4 +0000000000000dfc l .text 0000000000000000 .LFE4 +0000000000001589 l .debug_str 0000000000000000 .LASF25 +000000000000227e l .debug_loc 0000000000000000 .LLST0 +0000000000000df8 l .text 0000000000000000 .LVL0 +0000000000000dfa l .text 0000000000000000 .LVL1 +0000000000001d2c l .debug_info 0000000000000000 .Ldebug_info0 +0000000000000df8 l .text 0000000000000000 .L0 +0000000000000df8 l .text 0000000000000000 .L0 +0000000000000df8 l .text 0000000000000000 .L0 +0000000000000df8 l .text 0000000000000000 .L0 +0000000000000dfc l .text 0000000000000000 .L0 +0000000000000338 l .debug_frame 0000000000000000 .L0 +0000000000000df8 l .text 0000000000000000 .L0 +0000000000000dfc l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_bufferedoutstream.c +0000000000000dfc l F .text 0000000000000024 bufferedoutstream_flush +0000000000000e20 l F .text 000000000000005c bufferedoutstream_puts +0000000000000e7c l F .text 000000000000001c bufferedoutstream_putc +0000000000000e18 l .text 0000000000000000 .L2 +0000000000000e5e l .text 0000000000000000 .L5 +0000000000000e52 l .text 0000000000000000 .L6 +0000000000000e98 l .text 0000000000000000 .L0 +0000000000000ea2 l .text 0000000000000000 .L0 +0000000000000eac l .text 0000000000000000 .L0 +0000000000000cd0 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +00000000000017e4 l .debug_str 0000000000000000 .LASF28 +0000000000001724 l .debug_str 0000000000000000 .LASF29 +000000000000177a l .debug_str 0000000000000000 .LASF30 +0000000000000340 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +00000000000027de l .debug_line 0000000000000000 .Ldebug_line0 +000000000000198a l .debug_str 0000000000000000 .LASF0 +00000000000017b1 l .debug_str 0000000000000000 .LASF1 +000000000000195c l .debug_str 0000000000000000 .LASF2 +00000000000017d1 l .debug_str 0000000000000000 .LASF3 +00000000000018bb l .debug_str 0000000000000000 .LASF4 +000000000000175b l .debug_str 0000000000000000 .LASF5 +00000000000017bf l .debug_str 0000000000000000 .LASF6 +00000000000018c8 l .debug_str 0000000000000000 .LASF7 +0000000000001945 l .debug_str 0000000000000000 .LASF8 +000000000000197f l .debug_str 0000000000000000 .LASF9 +000000000000191f l .debug_str 0000000000000000 .LASF10 +0000000000001913 l .debug_str 0000000000000000 .LASF11 +0000000000001996 l .debug_str 0000000000000000 .LASF12 +0000000000001966 l .debug_str 0000000000000000 .LASF17 +000000000000170d l .debug_str 0000000000000000 .LASF20 +00000000000017ac l .debug_str 0000000000000000 .LASF13 +0000000000001950 l .debug_str 0000000000000000 .LASF14 +0000000000001985 l .debug_str 0000000000000000 .LASF15 +000000000000194a l .debug_str 0000000000000000 .LASF16 +00000000000018ab l .debug_str 0000000000000000 .LASF18 +00000000000018df l .debug_str 0000000000000000 .LASF19 +000000000000192d l .debug_str 0000000000000000 .LASF21 +0000000000001978 l .debug_str 0000000000000000 .LASF22 +00000000000017a4 l .debug_str 0000000000000000 .LASF23 +000000000000179c l .debug_str 0000000000000000 .LASF24 +0000000000001971 l .debug_str 0000000000000000 .LASF25 +0000000000001764 l .debug_str 0000000000000000 .LASF31 +0000000000000e98 l .text 0000000000000000 .LFB7 +0000000000000ec2 l .text 0000000000000000 .LFE7 +000000000000171d l .debug_str 0000000000000000 .LASF26 +0000000000001894 l .debug_str 0000000000000000 .LASF32 +0000000000000e7c l .text 0000000000000000 .LFB6 +0000000000000e98 l .text 0000000000000000 .LFE6 +00000000000018b6 l .debug_str 0000000000000000 .LASF27 +00000000000022b7 l .debug_loc 0000000000000000 .LLST12 +00000000000022f0 l .debug_loc 0000000000000000 .LLST13 +0000000000000e92 l .text 0000000000000000 .LVL19 +00000000000018fc l .debug_str 0000000000000000 .LASF33 +0000000000001743 l .debug_str 0000000000000000 .LASF34 +0000000000000dfc l .text 0000000000000000 .LFB4 +0000000000000e20 l .text 0000000000000000 .LFE4 +0000000000002329 l .debug_loc 0000000000000000 .LLST0 +0000000000002375 l .debug_loc 0000000000000000 .LLST1 +00000000000023c1 l .debug_loc 0000000000000000 .LLST2 +0000000000000e10 l .text 0000000000000000 .LVL2 +0000000000000e20 l .text 0000000000000000 .LFB5 +0000000000000e7c l .text 0000000000000000 .LFE5 +00000000000023f8 l .debug_loc 0000000000000000 .LLST3 +000000000000246d l .debug_loc 0000000000000000 .LLST4 +00000000000024f5 l .debug_loc 0000000000000000 .LLST5 +0000000000002557 l .debug_loc 0000000000000000 .LLST6 +00000000000025cc l .debug_loc 0000000000000000 .LLST7 +0000000000000e5e l .text 0000000000000000 .LBB4 +0000000000002641 l .debug_loc 0000000000000000 .LLST8 +0000000000002664 l .debug_loc 0000000000000000 .LLST9 +00000000000026b0 l .debug_loc 0000000000000000 .LLST10 +00000000000026e9 l .debug_loc 0000000000000000 .LLST11 +0000000000000e64 l .text 0000000000000000 .LVL11 +0000000000000e7c l .text 0000000000000000 .LVL16 +0000000000000e4a l .text 0000000000000000 .LVL6 +0000000000001955 l .debug_str 0000000000000000 .LASF35 +00000000000018eb l .debug_str 0000000000000000 .LASF36 +0000000000000e7c l .text 0000000000000000 .LVL17 +0000000000000e88 l .text 0000000000000000 .LVL18 +0000000000000dfc l .text 0000000000000000 .LVL0 +0000000000000e06 l .text 0000000000000000 .LVL1 +0000000000000e1c l .text 0000000000000000 .LVL3 +0000000000000e20 l .text 0000000000000000 .LVL4 +0000000000000e40 l .text 0000000000000000 .LVL5 +0000000000000e56 l .text 0000000000000000 .LVL8 +0000000000000e5e l .text 0000000000000000 .LVL9 +0000000000000e6c l .text 0000000000000000 .LVL13 +0000000000000e78 l .text 0000000000000000 .LVL15 +0000000000000e52 l .text 0000000000000000 .LVL7 +0000000000000e62 l .text 0000000000000000 .LVL10 +0000000000000e76 l .text 0000000000000000 .LVL14 +0000000000000e6a l .text 0000000000000000 .LVL12 +0000000000001eb9 l .debug_info 0000000000000000 .Ldebug_info0 +0000000000000e6a l .text 0000000000000000 .LBE4 +0000000000000e6e l .text 0000000000000000 .LBB8 +0000000000000e74 l .text 0000000000000000 .LBE8 +0000000000000e7a l .text 0000000000000000 .LBB9 +0000000000000e7c l .text 0000000000000000 .LBE9 +0000000000000dfc l .text 0000000000000000 .L0 +0000000000000e20 l .text 0000000000000000 .L0 +0000000000000e7c l .text 0000000000000000 .L0 +0000000000000e98 l .text 0000000000000000 .L0 +0000000000000dfc l .text 0000000000000000 .L0 +0000000000000dfc l .text 0000000000000000 .L0 +0000000000000dfc l .text 0000000000000000 .L0 +0000000000000dfc l .text 0000000000000000 .L0 +0000000000000e02 l .text 0000000000000000 .L0 +0000000000000e04 l .text 0000000000000000 .L0 +0000000000000e10 l .text 0000000000000000 .L0 +0000000000000e10 l .text 0000000000000000 .L0 +0000000000000e14 l .text 0000000000000000 .L0 +0000000000000e14 l .text 0000000000000000 .L0 +0000000000000e18 l .text 0000000000000000 .L0 +0000000000000e18 l .text 0000000000000000 .L0 +0000000000000e20 l .text 0000000000000000 .L0 +0000000000000e20 l .text 0000000000000000 .L0 +0000000000000e20 l .text 0000000000000000 .L0 +0000000000000e20 l .text 0000000000000000 .L0 +0000000000000e20 l .text 0000000000000000 .L0 +0000000000000e2a l .text 0000000000000000 .L0 +0000000000000e2c l .text 0000000000000000 .L0 +0000000000000e30 l .text 0000000000000000 .L0 +0000000000000e32 l .text 0000000000000000 .L0 +0000000000000e36 l .text 0000000000000000 .L0 +0000000000000e38 l .text 0000000000000000 .L0 +0000000000000e3c l .text 0000000000000000 .L0 +0000000000000e3c l .text 0000000000000000 .L0 +0000000000000e40 l .text 0000000000000000 .L0 +0000000000000e4a l .text 0000000000000000 .L0 +0000000000000e4a l .text 0000000000000000 .L0 +0000000000000e4c l .text 0000000000000000 .L0 +0000000000000e4e l .text 0000000000000000 .L0 +0000000000000e52 l .text 0000000000000000 .L0 +0000000000000e52 l .text 0000000000000000 .L0 +0000000000000e5e l .text 0000000000000000 .L0 +0000000000000e62 l .text 0000000000000000 .L0 +0000000000000e62 l .text 0000000000000000 .L0 +0000000000000e64 l .text 0000000000000000 .L0 +0000000000000e64 l .text 0000000000000000 .L0 +0000000000000e68 l .text 0000000000000000 .L0 +0000000000000e68 l .text 0000000000000000 .L0 +0000000000000e6a l .text 0000000000000000 .L0 +0000000000000e6e l .text 0000000000000000 .L0 +0000000000000e74 l .text 0000000000000000 .L0 +0000000000000e7a l .text 0000000000000000 .L0 +0000000000000e7c l .text 0000000000000000 .L0 +0000000000000e7c l .text 0000000000000000 .L0 +0000000000000e7c l .text 0000000000000000 .L0 +0000000000000e7e l .text 0000000000000000 .L0 +0000000000000e82 l .text 0000000000000000 .L0 +0000000000000e88 l .text 0000000000000000 .L0 +0000000000000e8a l .text 0000000000000000 .L0 +0000000000000e92 l .text 0000000000000000 .L0 +0000000000000e98 l .text 0000000000000000 .L0 +0000000000000e98 l .text 0000000000000000 .L0 +0000000000000e98 l .text 0000000000000000 .L0 +0000000000000ea2 l .text 0000000000000000 .L0 +0000000000000ea2 l .text 0000000000000000 .L0 +0000000000000eac l .text 0000000000000000 .L0 +0000000000000eac l .text 0000000000000000 .L0 +0000000000000eb6 l .text 0000000000000000 .L0 +0000000000000eb6 l .text 0000000000000000 .L0 +0000000000000eba l .text 0000000000000000 .L0 +0000000000000eba l .text 0000000000000000 .L0 +0000000000000ebc l .text 0000000000000000 .L0 +0000000000000ebc l .text 0000000000000000 .L0 +0000000000000ec0 l .text 0000000000000000 .L0 +0000000000000ec2 l .text 0000000000000000 .L0 +0000000000000360 l .debug_frame 0000000000000000 .L0 +0000000000000dfc l .text 0000000000000000 .L0 +0000000000000e20 l .text 0000000000000000 .L0 +0000000000000e20 l .text 0000000000000000 .L0 +0000000000000e7c l .text 0000000000000000 .L0 +0000000000000e7c l .text 0000000000000000 .L0 +0000000000000e98 l .text 0000000000000000 .L0 +0000000000000e98 l .text 0000000000000000 .L0 +0000000000000ec2 l .text 0000000000000000 .L0 +0000000000000e1a l .text 0000000000000000 .L0 +0000000000000e02 l .text 0000000000000000 .L0 +0000000000000e54 l .text 0000000000000000 .L0 +0000000000000e2a l .text 0000000000000000 .L0 +0000000000000e6c l .text 0000000000000000 .L0 +0000000000000e5e l .text 0000000000000000 .L0 +0000000000000e94 l .text 0000000000000000 .L0 +0000000000000e8a l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_memset.c +0000000000000f8c l .text 0000000000000000 .L18 +0000000000000f84 l .text 0000000000000000 .L4 +0000000000000f68 l .text 0000000000000000 .L5 +0000000000000f7c l .text 0000000000000000 .L6 +0000000000000f5a l .text 0000000000000000 .L7 +0000000000000f20 l .text 0000000000000000 .L8 +0000000000000f70 l .text 0000000000000000 .L10 +0000000000000f38 l .text 0000000000000000 .L9 +0000000000000f04 l .text 0000000000000000 .L12 +0000000000000f60 l .text 0000000000000000 .L13 +0000000000000edc l .text 0000000000000000 .L14 +0000000000000f6a l .text 0000000000000000 .L15 +0000000000000f21 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000001a2e l .debug_str 0000000000000000 .LASF27 +00000000000019b6 l .debug_str 0000000000000000 .LASF28 +00000000000019d3 l .debug_str 0000000000000000 .LASF29 +00000000000003d0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000002af2 l .debug_line 0000000000000000 .Ldebug_line0 +0000000000001b79 l .debug_str 0000000000000000 .LASF0 +0000000000001b95 l .debug_str 0000000000000000 .LASF3 +00000000000019ff l .debug_str 0000000000000000 .LASF1 +0000000000001b3c l .debug_str 0000000000000000 .LASF2 +0000000000001b1f l .debug_str 0000000000000000 .LASF4 +00000000000019a3 l .debug_str 0000000000000000 .LASF5 +0000000000001b85 l .debug_str 0000000000000000 .LASF6 +0000000000001af3 l .debug_str 0000000000000000 .LASF7 +0000000000001b5e l .debug_str 0000000000000000 .LASF8 +00000000000019f5 l .debug_str 0000000000000000 .LASF9 +0000000000001a0d l .debug_str 0000000000000000 .LASF10 +0000000000001ae5 l .debug_str 0000000000000000 .LASF11 +0000000000001b00 l .debug_str 0000000000000000 .LASF12 +0000000000001b17 l .debug_str 0000000000000000 .LASF13 +0000000000001b46 l .debug_str 0000000000000000 .LASF14 +0000000000001b55 l .debug_str 0000000000000000 .LASF15 +00000000000019ca l .debug_str 0000000000000000 .LASF16 +0000000000001a24 l .debug_str 0000000000000000 .LASF17 +000000000000199c l .debug_str 0000000000000000 .LASF18 +0000000000001b37 l .debug_str 0000000000000000 .LASF19 +0000000000001b29 l .debug_str 0000000000000000 .LASF20 +0000000000001b6d l .debug_str 0000000000000000 .LASF21 +0000000000001b8f l .debug_str 0000000000000000 .LASF22 +0000000000001ade l .debug_str 0000000000000000 .LASF30 +0000000000000ec2 l .text 0000000000000000 .LFB4 +0000000000000f8e l .text 0000000000000000 .LFE4 +000000000000270c l .debug_loc 0000000000000000 .LLST0 +0000000000001a1f l .debug_str 0000000000000000 .LASF23 +000000000000281b l .debug_loc 0000000000000000 .LLST1 +0000000000001b4f l .debug_str 0000000000000000 .LASF24 +0000000000001b67 l .debug_str 0000000000000000 .LASF25 +0000000000001aed l .debug_str 0000000000000000 .LASF26 +0000000000000ec2 l .text 0000000000000000 .LVL0 +0000000000000ed2 l .text 0000000000000000 .LVL1 +0000000000000ed8 l .text 0000000000000000 .LVL2 +0000000000000efc l .text 0000000000000000 .LVL3 +0000000000000f00 l .text 0000000000000000 .LVL4 +0000000000000f20 l .text 0000000000000000 .LVL5 +0000000000000f38 l .text 0000000000000000 .LVL6 +0000000000000f40 l .text 0000000000000000 .LVL7 +0000000000000f4c l .text 0000000000000000 .LVL8 +0000000000000f58 l .text 0000000000000000 .LVL9 +0000000000000f5a l .text 0000000000000000 .LVL10 +0000000000000f66 l .text 0000000000000000 .LVL11 +0000000000000f68 l .text 0000000000000000 .LVL12 +0000000000000f6a l .text 0000000000000000 .LVL13 +0000000000000f70 l .text 0000000000000000 .LVL14 +0000000000000f78 l .text 0000000000000000 .LVL15 +0000000000000f7a l .text 0000000000000000 .LVL16 +0000000000000f7c l .text 0000000000000000 .LVL17 +0000000000000f84 l .text 0000000000000000 .LVL18 +0000000000000f8c l .text 0000000000000000 .LVL19 +00000000000022a2 l .debug_info 0000000000000000 .Ldebug_info0 +0000000000000ec2 l .text 0000000000000000 .L0 +0000000000000ec2 l .text 0000000000000000 .L0 +0000000000000ec2 l .text 0000000000000000 .L0 +0000000000000ec2 l .text 0000000000000000 .L0 +0000000000000ec2 l .text 0000000000000000 .L0 +0000000000000ec2 l .text 0000000000000000 .L0 +0000000000000ec2 l .text 0000000000000000 .L0 +0000000000000ec4 l .text 0000000000000000 .L0 +0000000000000ec8 l .text 0000000000000000 .L0 +0000000000000eca l .text 0000000000000000 .L0 +0000000000000eca l .text 0000000000000000 .L0 +0000000000000ecc l .text 0000000000000000 .L0 +0000000000000ecc l .text 0000000000000000 .L0 +0000000000000ed0 l .text 0000000000000000 .L0 +0000000000000ed0 l .text 0000000000000000 .L0 +0000000000000ed2 l .text 0000000000000000 .L0 +0000000000000ed4 l .text 0000000000000000 .L0 +0000000000000ed8 l .text 0000000000000000 .L0 +0000000000000ed8 l .text 0000000000000000 .L0 +0000000000000ed8 l .text 0000000000000000 .L0 +0000000000000edc l .text 0000000000000000 .L0 +0000000000000eea l .text 0000000000000000 .L0 +0000000000000eec l .text 0000000000000000 .L0 +0000000000000eee l .text 0000000000000000 .L0 +0000000000000ef2 l .text 0000000000000000 .L0 +0000000000000ef4 l .text 0000000000000000 .L0 +0000000000000ef4 l .text 0000000000000000 .L0 +0000000000000ef6 l .text 0000000000000000 .L0 +0000000000000ef6 l .text 0000000000000000 .L0 +0000000000000efa l .text 0000000000000000 .L0 +0000000000000efa l .text 0000000000000000 .L0 +0000000000000efc l .text 0000000000000000 .L0 +0000000000000efe l .text 0000000000000000 .L0 +0000000000000f00 l .text 0000000000000000 .L0 +0000000000000f00 l .text 0000000000000000 .L0 +0000000000000f00 l .text 0000000000000000 .L0 +0000000000000f04 l .text 0000000000000000 .L0 +0000000000000f08 l .text 0000000000000000 .L0 +0000000000000f0c l .text 0000000000000000 .L0 +0000000000000f10 l .text 0000000000000000 .L0 +0000000000000f12 l .text 0000000000000000 .L0 +0000000000000f14 l .text 0000000000000000 .L0 +0000000000000f18 l .text 0000000000000000 .L0 +0000000000000f18 l .text 0000000000000000 .L0 +0000000000000f1c l .text 0000000000000000 .L0 +0000000000000f1c l .text 0000000000000000 .L0 +0000000000000f1e l .text 0000000000000000 .L0 +0000000000000f20 l .text 0000000000000000 .L0 +0000000000000f20 l .text 0000000000000000 .L0 +0000000000000f24 l .text 0000000000000000 .L0 +0000000000000f28 l .text 0000000000000000 .L0 +0000000000000f2c l .text 0000000000000000 .L0 +0000000000000f30 l .text 0000000000000000 .L0 +0000000000000f32 l .text 0000000000000000 .L0 +0000000000000f34 l .text 0000000000000000 .L0 +0000000000000f38 l .text 0000000000000000 .L0 +0000000000000f4c l .text 0000000000000000 .L0 +0000000000000f4c l .text 0000000000000000 .L0 +0000000000000f52 l .text 0000000000000000 .L0 +0000000000000f52 l .text 0000000000000000 .L0 +0000000000000f56 l .text 0000000000000000 .L0 +0000000000000f56 l .text 0000000000000000 .L0 +0000000000000f58 l .text 0000000000000000 .L0 +0000000000000f5a l .text 0000000000000000 .L0 +0000000000000f5a l .text 0000000000000000 .L0 +0000000000000f5a l .text 0000000000000000 .L0 +0000000000000f60 l .text 0000000000000000 .L0 +0000000000000f60 l .text 0000000000000000 .L0 +0000000000000f64 l .text 0000000000000000 .L0 +0000000000000f64 l .text 0000000000000000 .L0 +0000000000000f66 l .text 0000000000000000 .L0 +0000000000000f68 l .text 0000000000000000 .L0 +0000000000000f68 l .text 0000000000000000 .L0 +0000000000000f68 l .text 0000000000000000 .L0 +0000000000000f6a l .text 0000000000000000 .L0 +0000000000000f6a l .text 0000000000000000 .L0 +0000000000000f6e l .text 0000000000000000 .L0 +0000000000000f6e l .text 0000000000000000 .L0 +0000000000000f70 l .text 0000000000000000 .L0 +0000000000000f70 l .text 0000000000000000 .L0 +0000000000000f78 l .text 0000000000000000 .L0 +0000000000000f78 l .text 0000000000000000 .L0 +0000000000000f78 l .text 0000000000000000 .L0 +0000000000000f7c l .text 0000000000000000 .L0 +0000000000000f7c l .text 0000000000000000 .L0 +0000000000000f84 l .text 0000000000000000 .L0 +0000000000000f84 l .text 0000000000000000 .L0 +0000000000000f8c l .text 0000000000000000 .L0 +0000000000000f8e l .text 0000000000000000 .L0 +0000000000000418 l .debug_frame 0000000000000000 .L0 +0000000000000ec2 l .text 0000000000000000 .L0 +0000000000000f8e l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_strnlen.c +0000000000000f9c l .text 0000000000000000 .L5 +0000000000000fa2 l .text 0000000000000000 .L4 +0000000000000f92 l .text 0000000000000000 .L2 +0000000000000fc1 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000001c19 l .debug_str 0000000000000000 .LASF15 +0000000000001be9 l .debug_str 0000000000000000 .LASF16 +0000000000001d1c l .debug_str 0000000000000000 .LASF17 +00000000000003f0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000002eaf l .debug_line 0000000000000000 .Ldebug_line0 +0000000000001cf2 l .debug_str 0000000000000000 .LASF0 +0000000000001c06 l .debug_str 0000000000000000 .LASF1 +0000000000001d12 l .debug_str 0000000000000000 .LASF2 +0000000000001cdf l .debug_str 0000000000000000 .LASF3 +0000000000001bac l .debug_str 0000000000000000 .LASF4 +0000000000001cc9 l .debug_str 0000000000000000 .LASF5 +0000000000001bc0 l .debug_str 0000000000000000 .LASF6 +0000000000001d0a l .debug_str 0000000000000000 .LASF8 +0000000000001bd2 l .debug_str 0000000000000000 .LASF7 +0000000000001bb9 l .debug_str 0000000000000000 .LASF9 +0000000000001c14 l .debug_str 0000000000000000 .LASF10 +0000000000001b9e l .debug_str 0000000000000000 .LASF11 +0000000000001cfe l .debug_str 0000000000000000 .LASF12 +0000000000001cd2 l .debug_str 0000000000000000 .LASF13 +0000000000001bfe l .debug_str 0000000000000000 .LASF18 +0000000000000f8e l .text 0000000000000000 .LFB4 +0000000000000fa6 l .text 0000000000000000 .LFE4 +00000000000028f8 l .debug_loc 0000000000000000 .LLST0 +0000000000001cd8 l .debug_str 0000000000000000 .LASF14 +0000000000002944 l .debug_loc 0000000000000000 .LLST1 +00000000000029ef l .debug_loc 0000000000000000 .LLST2 +0000000000000f8e l .text 0000000000000000 .LVL0 +0000000000000fa0 l .text 0000000000000000 .LVL3 +0000000000000fa2 l .text 0000000000000000 .LVL4 +0000000000000f90 l .text 0000000000000000 .LVL1 +0000000000000f92 l .text 0000000000000000 .LVL2 +0000000000000fa4 l .text 0000000000000000 .LVL5 +00000000000024b8 l .debug_info 0000000000000000 .Ldebug_info0 +0000000000000f8e l .text 0000000000000000 .L0 +0000000000000f8e l .text 0000000000000000 .L0 +0000000000000f8e l .text 0000000000000000 .L0 +0000000000000f90 l .text 0000000000000000 .L0 +0000000000000f92 l .text 0000000000000000 .L0 +0000000000000f92 l .text 0000000000000000 .L0 +0000000000000f96 l .text 0000000000000000 .L0 +0000000000000f9c l .text 0000000000000000 .L0 +0000000000000f9c l .text 0000000000000000 .L0 +0000000000000fa0 l .text 0000000000000000 .L0 +0000000000000fa2 l .text 0000000000000000 .L0 +0000000000000fa2 l .text 0000000000000000 .L0 +0000000000000fa2 l .text 0000000000000000 .L0 +0000000000000fa6 l .text 0000000000000000 .L0 +0000000000000440 l .debug_frame 0000000000000000 .L0 +0000000000000f8e l .text 0000000000000000 .L0 +0000000000000fa6 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_memcpy.c +0000000000000fae l .text 0000000000000000 .L3 +0000000000000fa8 l .text 0000000000000000 .L2 +0000000000001059 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000001e2f l .debug_str 0000000000000000 .LASF16 +0000000000001db1 l .debug_str 0000000000000000 .LASF17 +0000000000001e0d l .debug_str 0000000000000000 .LASF18 +0000000000000410 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000003004 l .debug_line 0000000000000000 .Ldebug_line0 +0000000000001de3 l .debug_str 0000000000000000 .LASF0 +0000000000001d95 l .debug_str 0000000000000000 .LASF1 +0000000000001e03 l .debug_str 0000000000000000 .LASF2 +0000000000001dd0 l .debug_str 0000000000000000 .LASF3 +0000000000001d53 l .debug_str 0000000000000000 .LASF4 +0000000000001da8 l .debug_str 0000000000000000 .LASF5 +0000000000001d6c l .debug_str 0000000000000000 .LASF6 +0000000000001dfb l .debug_str 0000000000000000 .LASF8 +0000000000001d7e l .debug_str 0000000000000000 .LASF7 +0000000000001d65 l .debug_str 0000000000000000 .LASF9 +0000000000001da3 l .debug_str 0000000000000000 .LASF10 +0000000000001d3e l .debug_str 0000000000000000 .LASF11 +0000000000001def l .debug_str 0000000000000000 .LASF12 +0000000000001dc5 l .debug_str 0000000000000000 .LASF13 +0000000000001d4c l .debug_str 0000000000000000 .LASF19 +0000000000000fa6 l .text 0000000000000000 .LFB4 +0000000000000fc2 l .text 0000000000000000 .LFE4 +0000000000001d60 l .debug_str 0000000000000000 .LASF14 +0000000000002a25 l .debug_loc 0000000000000000 .LLST0 +0000000000001dcb l .debug_str 0000000000000000 .LASF15 +0000000000002a79 l .debug_loc 0000000000000000 .LLST1 +0000000000002ae6 l .debug_loc 0000000000000000 .LLST2 +0000000000000fa6 l .text 0000000000000000 .LVL0 +0000000000000fa8 l .text 0000000000000000 .LVL1 +0000000000000fbc l .text 0000000000000000 .LVL3 +0000000000000fae l .text 0000000000000000 .LVL2 +00000000000025ac l .debug_info 0000000000000000 .Ldebug_info0 +0000000000000fa6 l .text 0000000000000000 .L0 +0000000000000fa6 l .text 0000000000000000 .L0 +0000000000000fa6 l .text 0000000000000000 .L0 +0000000000000fa6 l .text 0000000000000000 .L0 +0000000000000fa6 l .text 0000000000000000 .L0 +0000000000000fa8 l .text 0000000000000000 .L0 +0000000000000fac l .text 0000000000000000 .L0 +0000000000000fac l .text 0000000000000000 .L0 +0000000000000fae l .text 0000000000000000 .L0 +0000000000000fae l .text 0000000000000000 .L0 +0000000000000fb6 l .text 0000000000000000 .L0 +0000000000000fc2 l .text 0000000000000000 .L0 +0000000000000468 l .debug_frame 0000000000000000 .L0 +0000000000000fa6 l .text 0000000000000000 .L0 +0000000000000fc2 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_assert.c +0000000000001118 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000001fd8 l .debug_str 0000000000000000 .LASF16 +0000000000001f2b l .debug_str 0000000000000000 .LASF17 +0000000000001fb6 l .debug_str 0000000000000000 .LASF18 +0000000000000430 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000000312a l .debug_line 0000000000000000 .Ldebug_line0 +0000000000001f7c l .debug_str 0000000000000000 .LASF0 +0000000000001f47 l .debug_str 0000000000000000 .LASF1 +0000000000001fa3 l .debug_str 0000000000000000 .LASF2 +0000000000001f69 l .debug_str 0000000000000000 .LASF3 +0000000000001eed l .debug_str 0000000000000000 .LASF4 +0000000000001f5a l .debug_str 0000000000000000 .LASF5 +0000000000001f02 l .debug_str 0000000000000000 .LASF6 +0000000000001f14 l .debug_str 0000000000000000 .LASF7 +0000000000001f55 l .debug_str 0000000000000000 .LASF8 +0000000000001edf l .debug_str 0000000000000000 .LASF9 +0000000000001f91 l .debug_str 0000000000000000 .LASF10 +0000000000001f63 l .debug_str 0000000000000000 .LASF11 +0000000000001f88 l .debug_str 0000000000000000 .LASF19 +0000000000000fc2 l .text 0000000000000000 .LFB4 +0000000000000fd8 l .text 0000000000000000 .LFE4 +0000000000001fad l .debug_str 0000000000000000 .LASF12 +0000000000002b53 l .debug_loc 0000000000000000 .LLST0 +0000000000001efa l .debug_str 0000000000000000 .LASF13 +0000000000002b8c l .debug_loc 0000000000000000 .LLST1 +0000000000002bc5 l .debug_loc 0000000000000000 .LLST2 +0000000000000fd0 l .text 0000000000000000 .LVL1 +0000000000000fd8 l .text 0000000000000000 .LVL2 +0000000000001f3f l .debug_str 0000000000000000 .LASF14 +0000000000001f9d l .debug_str 0000000000000000 .LASF15 +0000000000000fc2 l .text 0000000000000000 .LVL0 +00000000000026c1 l .debug_info 0000000000000000 .Ldebug_info0 +0000000000000fc2 l .text 0000000000000000 .L0 +0000000000000fc2 l .text 0000000000000000 .L0 +0000000000000fc2 l .text 0000000000000000 .L0 +0000000000000fc4 l .text 0000000000000000 .L0 +0000000000000fc6 l .text 0000000000000000 .L0 +0000000000000fc8 l .text 0000000000000000 .L0 +0000000000000fd0 l .text 0000000000000000 .L0 +0000000000000fd8 l .text 0000000000000000 .L0 +0000000000000490 l .debug_frame 0000000000000000 .L0 +0000000000000fc2 l .text 0000000000000000 .L0 +0000000000000fd8 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_errno.c +0000000000000550 l O .bss 0000000000000004 g_errno +0000000000000550 l .bss 0000000000000000 .LANCHOR0 +0000000000000fde l .text 0000000000000000 .L0 +0000000000000fec l .text 0000000000000000 .L1 +00000000000011ca l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000000212d l .debug_str 0000000000000000 .LASF85 +0000000000002462 l .debug_str 0000000000000000 .LASF86 +00000000000022a1 l .debug_str 0000000000000000 .LASF87 +0000000000000450 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +00000000000031dc l .debug_line 0000000000000000 .Ldebug_line0 +0000000000002231 l .debug_str 0000000000000000 .LASF0 +00000000000020a8 l .debug_str 0000000000000000 .LASF2 +00000000000022f7 l .debug_str 0000000000000000 .LASF1 +0000000000002305 l .debug_str 0000000000000000 .LASF3 +00000000000020b8 l .debug_str 0000000000000000 .LASF4 +0000000000002480 l .debug_str 0000000000000000 .LASF5 +00000000000023b0 l .debug_str 0000000000000000 .LASF6 +00000000000022e6 l .debug_str 0000000000000000 .LASF7 +0000000000002497 l .debug_str 0000000000000000 .LASF8 +000000000000239f l .debug_str 0000000000000000 .LASF9 +0000000000002351 l .debug_str 0000000000000000 .LASF10 +00000000000024c9 l .debug_str 0000000000000000 .LASF11 +0000000000002442 l .debug_str 0000000000000000 .LASF12 +0000000000002258 l .debug_str 0000000000000000 .LASF13 +00000000000021ec l .debug_str 0000000000000000 .LASF14 +00000000000023c3 l .debug_str 0000000000000000 .LASF15 +000000000000233f l .debug_str 0000000000000000 .LASF16 +00000000000023a8 l .debug_str 0000000000000000 .LASF17 +000000000000241d l .debug_str 0000000000000000 .LASF18 +00000000000020c2 l .debug_str 0000000000000000 .LASF19 +0000000000002115 l .debug_str 0000000000000000 .LASF20 +0000000000002417 l .debug_str 0000000000000000 .LASF21 +00000000000022c3 l .debug_str 0000000000000000 .LASF22 +0000000000002392 l .debug_str 0000000000000000 .LASF23 +000000000000224a l .debug_str 0000000000000000 .LASF24 +00000000000022da l .debug_str 0000000000000000 .LASF25 +00000000000022cf l .debug_str 0000000000000000 .LASF29 +00000000000022c9 l .debug_str 0000000000000000 .LASF26 +000000000000220a l .debug_str 0000000000000000 .LASF27 +00000000000023d9 l .debug_str 0000000000000000 .LASF28 +00000000000024ad l .debug_str 0000000000000000 .LASF30 +00000000000021e7 l .debug_str 0000000000000000 .LASF31 +000000000000230e l .debug_str 0000000000000000 .LASF32 +0000000000002457 l .debug_str 0000000000000000 .LASF33 +0000000000002210 l .debug_str 0000000000000000 .LASF34 +0000000000002313 l .debug_str 0000000000000000 .LASF35 +000000000000232e l .debug_str 0000000000000000 .LASF36 +00000000000020ec l .debug_str 0000000000000000 .LASF37 +0000000000002216 l .debug_str 0000000000000000 .LASF38 +00000000000023cb l .debug_str 0000000000000000 .LASF39 +0000000000002397 l .debug_str 0000000000000000 .LASF40 +000000000000226f l .debug_str 0000000000000000 .LASF41 +000000000000228d l .debug_str 0000000000000000 .LASF42 +0000000000002325 l .debug_str 0000000000000000 .LASF43 +0000000000002372 l .debug_str 0000000000000000 .LASF44 +0000000000002431 l .debug_str 0000000000000000 .LASF45 +00000000000024c0 l .debug_str 0000000000000000 .LASF46 +0000000000002276 l .debug_str 0000000000000000 .LASF47 +00000000000020d4 l .debug_str 0000000000000000 .LASF48 +00000000000023ee l .debug_str 0000000000000000 .LASF49 +00000000000020fd l .debug_str 0000000000000000 .LASF50 +00000000000021f4 l .debug_str 0000000000000000 .LASF51 +0000000000002245 l .debug_str 0000000000000000 .LASF52 +0000000000002096 l .debug_str 0000000000000000 .LASF53 +000000000000244a l .debug_str 0000000000000000 .LASF54 +0000000000002088 l .debug_str 0000000000000000 .LASF55 +0000000000002295 l .debug_str 0000000000000000 .LASF56 +00000000000023d1 l .debug_str 0000000000000000 .LASF57 +000000000000244f l .debug_str 0000000000000000 .LASF58 +00000000000023e4 l .debug_str 0000000000000000 .LASF59 +0000000000002427 l .debug_str 0000000000000000 .LASF60 +0000000000002474 l .debug_str 0000000000000000 .LASF61 +00000000000021dd l .debug_str 0000000000000000 .LASF62 +0000000000002227 l .debug_str 0000000000000000 .LASF63 +000000000000221c l .debug_str 0000000000000000 .LASF64 +0000000000002405 l .debug_str 0000000000000000 .LASF65 +0000000000002363 l .debug_str 0000000000000000 .LASF66 +00000000000024a4 l .debug_str 0000000000000000 .LASF67 +000000000000248a l .debug_str 0000000000000000 .LASF68 +000000000000209c l .debug_str 0000000000000000 .LASF69 +00000000000020c9 l .debug_str 0000000000000000 .LASF70 +00000000000022ef l .debug_str 0000000000000000 .LASF71 +00000000000020b1 l .debug_str 0000000000000000 .LASF72 +000000000000208e l .debug_str 0000000000000000 .LASF73 +000000000000240f l .debug_str 0000000000000000 .LASF74 +0000000000002378 l .debug_str 0000000000000000 .LASF75 +0000000000002125 l .debug_str 0000000000000000 .LASF76 +000000000000236d l .debug_str 0000000000000000 .LASF77 +0000000000002384 l .debug_str 0000000000000000 .LASF78 +0000000000002334 l .debug_str 0000000000000000 .LASF79 +00000000000020f5 l .debug_str 0000000000000000 .LASF80 +0000000000002437 l .debug_str 0000000000000000 .LASF81 +0000000000002348 l .debug_str 0000000000000000 .LASF82 +000000000000223d l .debug_str 0000000000000000 .LASF83 +00000000000024b8 l .debug_str 0000000000000000 .LASF88 +0000000000000fd8 l .text 0000000000000000 .LFB7 +0000000000000fee l .text 0000000000000000 .LFE7 +000000000000211d l .debug_str 0000000000000000 .LASF84 +0000000000000fd8 l .text 0000000000000000 .LBB4 +000000000000231c l .debug_str 0000000000000000 .LASF89 +00000000000027ea l .debug_info 0000000000000000 .Ldebug_info0 +0000000000000fd8 l .text 0000000000000000 .LBE4 +0000000000000fda l .text 0000000000000000 .LBB7 +0000000000000fdc l .text 0000000000000000 .LBE7 +0000000000000fd8 l .text 0000000000000000 .L0 +0000000000000fd8 l .text 0000000000000000 .L0 +0000000000000fd8 l .text 0000000000000000 .L0 +0000000000000fd8 l .text 0000000000000000 .L0 +0000000000000fd8 l .text 0000000000000000 .L0 +0000000000000fda l .text 0000000000000000 .L0 +0000000000000fdc l .text 0000000000000000 .L0 +0000000000000fdc l .text 0000000000000000 .L0 +0000000000000fde l .text 0000000000000000 .L0 +0000000000000fde l .text 0000000000000000 .L0 +0000000000000fe8 l .text 0000000000000000 .L0 +0000000000000fec l .text 0000000000000000 .L0 +0000000000000fee l .text 0000000000000000 .L0 +00000000000004c0 l .debug_frame 0000000000000000 .L0 +0000000000000fd8 l .text 0000000000000000 .L0 +0000000000000fee l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 task_setcancelstate.c +0000000000001006 l .text 0000000000000000 .L2 +000000000000102a l .text 0000000000000000 .L3 +0000000000001030 l .text 0000000000000000 .L4 +0000000000001044 l .text 0000000000000000 .L5 +000000000000104a l .text 0000000000000000 .L6 +000000000000134c l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000002582 l .debug_str 0000000000000000 .LASF88 +000000000000286d l .debug_str 0000000000000000 .LASF89 +00000000000026ea l .debug_str 0000000000000000 .LASF90 +00000000000004a0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +00000000000033af l .debug_line 0000000000000000 .Ldebug_line0 +0000000000002686 l .debug_str 0000000000000000 .LASF0 +00000000000024ff l .debug_str 0000000000000000 .LASF2 +0000000000002740 l .debug_str 0000000000000000 .LASF1 +000000000000274e l .debug_str 0000000000000000 .LASF3 +0000000000002515 l .debug_str 0000000000000000 .LASF4 +00000000000028fa l .debug_str 0000000000000000 .LASF5 +00000000000027f9 l .debug_str 0000000000000000 .LASF6 +000000000000272f l .debug_str 0000000000000000 .LASF7 +0000000000002911 l .debug_str 0000000000000000 .LASF8 +00000000000027e8 l .debug_str 0000000000000000 .LASF9 +000000000000279a l .debug_str 0000000000000000 .LASF10 +0000000000002943 l .debug_str 0000000000000000 .LASF11 +00000000000028ce l .debug_str 0000000000000000 .LASF12 +00000000000026a5 l .debug_str 0000000000000000 .LASF13 +0000000000002641 l .debug_str 0000000000000000 .LASF14 +000000000000280c l .debug_str 0000000000000000 .LASF15 +0000000000002788 l .debug_str 0000000000000000 .LASF16 +00000000000027f1 l .debug_str 0000000000000000 .LASF17 +000000000000288f l .debug_str 0000000000000000 .LASF18 +000000000000251f l .debug_str 0000000000000000 .LASF19 +0000000000002572 l .debug_str 0000000000000000 .LASF20 +0000000000002889 l .debug_str 0000000000000000 .LASF21 +00000000000028a3 l .debug_str 0000000000000000 .LASF22 +00000000000027db l .debug_str 0000000000000000 .LASF23 +000000000000270c l .debug_str 0000000000000000 .LASF24 +0000000000002697 l .debug_str 0000000000000000 .LASF25 +0000000000002723 l .debug_str 0000000000000000 .LASF26 +0000000000002718 l .debug_str 0000000000000000 .LASF30 +0000000000002712 l .debug_str 0000000000000000 .LASF27 +000000000000265f l .debug_str 0000000000000000 .LASF28 +0000000000002822 l .debug_str 0000000000000000 .LASF29 +0000000000002927 l .debug_str 0000000000000000 .LASF31 +000000000000263c l .debug_str 0000000000000000 .LASF32 +0000000000002783 l .debug_str 0000000000000000 .LASF33 +00000000000028e3 l .debug_str 0000000000000000 .LASF34 +0000000000002665 l .debug_str 0000000000000000 .LASF35 +0000000000002762 l .debug_str 0000000000000000 .LASF36 +000000000000277d l .debug_str 0000000000000000 .LASF37 +0000000000002549 l .debug_str 0000000000000000 .LASF38 +000000000000266b l .debug_str 0000000000000000 .LASF39 +0000000000002814 l .debug_str 0000000000000000 .LASF40 +00000000000027e0 l .debug_str 0000000000000000 .LASF41 +00000000000026bc l .debug_str 0000000000000000 .LASF42 +00000000000026da l .debug_str 0000000000000000 .LASF43 +0000000000002774 l .debug_str 0000000000000000 .LASF44 +00000000000027bb l .debug_str 0000000000000000 .LASF45 +00000000000028a9 l .debug_str 0000000000000000 .LASF46 +000000000000293a l .debug_str 0000000000000000 .LASF47 +00000000000026c3 l .debug_str 0000000000000000 .LASF48 +0000000000002531 l .debug_str 0000000000000000 .LASF49 +0000000000002843 l .debug_str 0000000000000000 .LASF50 +000000000000255a l .debug_str 0000000000000000 .LASF51 +0000000000002649 l .debug_str 0000000000000000 .LASF52 +0000000000002692 l .debug_str 0000000000000000 .LASF53 +00000000000024ed l .debug_str 0000000000000000 .LASF54 +00000000000028d6 l .debug_str 0000000000000000 .LASF55 +00000000000024d2 l .debug_str 0000000000000000 .LASF56 +0000000000002837 l .debug_str 0000000000000000 .LASF57 +000000000000281a l .debug_str 0000000000000000 .LASF58 +00000000000028db l .debug_str 0000000000000000 .LASF59 +000000000000282d l .debug_str 0000000000000000 .LASF60 +0000000000002899 l .debug_str 0000000000000000 .LASF61 +00000000000028ee l .debug_str 0000000000000000 .LASF62 +0000000000002632 l .debug_str 0000000000000000 .LASF63 +000000000000267c l .debug_str 0000000000000000 .LASF64 +0000000000002671 l .debug_str 0000000000000000 .LASF65 +000000000000285a l .debug_str 0000000000000000 .LASF66 +00000000000027ac l .debug_str 0000000000000000 .LASF67 +000000000000291e l .debug_str 0000000000000000 .LASF68 +0000000000002904 l .debug_str 0000000000000000 .LASF69 +00000000000024f3 l .debug_str 0000000000000000 .LASF70 +0000000000002526 l .debug_str 0000000000000000 .LASF71 +0000000000002738 l .debug_str 0000000000000000 .LASF72 +000000000000250e l .debug_str 0000000000000000 .LASF73 +00000000000024e5 l .debug_str 0000000000000000 .LASF74 +00000000000026e2 l .debug_str 0000000000000000 .LASF75 +00000000000027c1 l .debug_str 0000000000000000 .LASF76 +000000000000257a l .debug_str 0000000000000000 .LASF77 +00000000000027b6 l .debug_str 0000000000000000 .LASF78 +00000000000027cd l .debug_str 0000000000000000 .LASF79 +0000000000002757 l .debug_str 0000000000000000 .LASF80 +0000000000002552 l .debug_str 0000000000000000 .LASF81 +00000000000028c3 l .debug_str 0000000000000000 .LASF82 +0000000000002791 l .debug_str 0000000000000000 .LASF83 +00000000000028af l .debug_str 0000000000000000 .LASF91 +0000000000000fee l .text 0000000000000000 .LFB7 +000000000000105a l .text 0000000000000000 .LFE7 +0000000000002508 l .debug_str 0000000000000000 .LASF84 +0000000000002bfe l .debug_loc 0000000000000000 .LLST0 +0000000000002864 l .debug_str 0000000000000000 .LASF85 +0000000000002c89 l .debug_loc 0000000000000000 .LLST1 +0000000000002d14 l .debug_loc 0000000000000000 .LLST2 +0000000000002d5d l .debug_loc 0000000000000000 .LLST3 +0000000000000fee l .text 0000000000000000 .LBB4 +000000000000102a l .text 0000000000000000 .LVL4 +0000000000001052 l .text 0000000000000000 .LVL8 +000000000000276b l .debug_str 0000000000000000 .LASF92 +00000000000024d8 l .debug_str 0000000000000000 .LASF86 +0000000000002932 l .debug_str 0000000000000000 .LASF87 +0000000000000fee l .text 0000000000000000 .LVL0 +0000000000001022 l .text 0000000000000000 .LVL3 +000000000000103c l .text 0000000000000000 .LVL5 +000000000000104a l .text 0000000000000000 .LVL7 +0000000000001044 l .text 0000000000000000 .LVL6 +0000000000000ff8 l .text 0000000000000000 .LVL2 +0000000000001056 l .text 0000000000000000 .LVL9 +0000000000002dab l .debug_info 0000000000000000 .Ldebug_info0 +0000000000000fee l .text 0000000000000000 .LBE4 +0000000000000ff4 l .text 0000000000000000 .LBB7 +0000000000000ff6 l .text 0000000000000000 .LBE7 +0000000000000fee l .text 0000000000000000 .L0 +0000000000000fee l .text 0000000000000000 .L0 +0000000000000fee l .text 0000000000000000 .L0 +0000000000000fee l .text 0000000000000000 .L0 +0000000000000fee l .text 0000000000000000 .L0 +0000000000000ff0 l .text 0000000000000000 .L0 +0000000000000ff2 l .text 0000000000000000 .L0 +0000000000000ff4 l .text 0000000000000000 .L0 +0000000000000ff6 l .text 0000000000000000 .L0 +0000000000000ff6 l .text 0000000000000000 .L0 +0000000000000ff8 l .text 0000000000000000 .L0 +0000000000000ff8 l .text 0000000000000000 .L0 +0000000000000ff8 l .text 0000000000000000 .L0 +0000000000000ffa l .text 0000000000000000 .L0 +0000000000000ffa l .text 0000000000000000 .L0 +0000000000001002 l .text 0000000000000000 .L0 +0000000000001002 l .text 0000000000000000 .L0 +0000000000001006 l .text 0000000000000000 .L0 +0000000000001006 l .text 0000000000000000 .L0 +0000000000001008 l .text 0000000000000000 .L0 +0000000000001008 l .text 0000000000000000 .L0 +0000000000001014 l .text 0000000000000000 .L0 +0000000000001014 l .text 0000000000000000 .L0 +000000000000101a l .text 0000000000000000 .L0 +000000000000101a l .text 0000000000000000 .L0 +0000000000001020 l .text 0000000000000000 .L0 +000000000000102a l .text 0000000000000000 .L0 +000000000000102a l .text 0000000000000000 .L0 +0000000000001030 l .text 0000000000000000 .L0 +0000000000001030 l .text 0000000000000000 .L0 +0000000000001036 l .text 0000000000000000 .L0 +0000000000001036 l .text 0000000000000000 .L0 +000000000000103a l .text 0000000000000000 .L0 +000000000000103c l .text 0000000000000000 .L0 +0000000000001044 l .text 0000000000000000 .L0 +0000000000001044 l .text 0000000000000000 .L0 +000000000000104a l .text 0000000000000000 .L0 +000000000000104a l .text 0000000000000000 .L0 +0000000000001056 l .text 0000000000000000 .L0 +0000000000001056 l .text 0000000000000000 .L0 +0000000000001056 l .text 0000000000000000 .L0 +000000000000105a l .text 0000000000000000 .L0 +00000000000004e8 l .debug_frame 0000000000000000 .L0 +0000000000000fee l .text 0000000000000000 .L0 +000000000000105a l .text 0000000000000000 .L0 +0000000000001046 l .text 0000000000000000 .L0 +0000000000000ff4 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_fflush.c +0000000000001092 l .text 0000000000000000 .L2 +000000000000108a l .text 0000000000000000 .L4 +0000000000001074 l .text 0000000000000000 .L3 +00000000000010d8 l .text 0000000000000000 .L8 +00000000000010d0 l .text 0000000000000000 .L10 +00000000000010ba l .text 0000000000000000 .L9 +000000000000153f l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +00000000000029f9 l .debug_str 0000000000000000 .LASF80 +0000000000002c48 l .debug_str 0000000000000000 .LASF81 +0000000000002b2c l .debug_str 0000000000000000 .LASF82 +00000000000004f0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000003698 l .debug_line 0000000000000000 .Ldebug_line0 +0000000000002b08 l .debug_str 0000000000000000 .LASF0 +0000000000002974 l .debug_str 0000000000000000 .LASF2 +0000000000002bbf l .debug_str 0000000000000000 .LASF1 +0000000000002bcd l .debug_str 0000000000000000 .LASF3 +00000000000029ef l .debug_str 0000000000000000 .LASF4 +0000000000002d25 l .debug_str 0000000000000000 .LASF5 +0000000000002c35 l .debug_str 0000000000000000 .LASF6 +0000000000002bb6 l .debug_str 0000000000000000 .LASF7 +0000000000002d3c l .debug_str 0000000000000000 .LASF8 +0000000000002c73 l .debug_str 0000000000000000 .LASF9 +0000000000002c13 l .debug_str 0000000000000000 .LASF10 +0000000000002d6e l .debug_str 0000000000000000 .LASF11 +0000000000002cf9 l .debug_str 0000000000000000 .LASF12 +0000000000002bee l .debug_str 0000000000000000 .LASF13 +0000000000002ab8 l .debug_str 0000000000000000 .LASF14 +0000000000002c84 l .debug_str 0000000000000000 .LASF15 +0000000000002c0a l .debug_str 0000000000000000 .LASF16 +0000000000002c7c l .debug_str 0000000000000000 .LASF17 +0000000000002991 l .debug_str 0000000000000000 .LASF18 +00000000000029e7 l .debug_str 0000000000000000 .LASF19 +0000000000002cdd l .debug_str 0000000000000000 .LASF20 +0000000000002ced l .debug_str 0000000000000000 .LASF21 +0000000000002b4e l .debug_str 0000000000000000 .LASF22 +0000000000002b8c l .debug_str 0000000000000000 .LASF23 +0000000000002b9f l .debug_str 0000000000000000 .LASF27 +0000000000002b92 l .debug_str 0000000000000000 .LASF24 +0000000000002ae1 l .debug_str 0000000000000000 .LASF25 +0000000000002c9a l .debug_str 0000000000000000 .LASF26 +0000000000002d52 l .debug_str 0000000000000000 .LASF28 +0000000000002ab3 l .debug_str 0000000000000000 .LASF29 +0000000000002c05 l .debug_str 0000000000000000 .LASF30 +0000000000002d0e l .debug_str 0000000000000000 .LASF31 +0000000000002ae7 l .debug_str 0000000000000000 .LASF32 +0000000000002bd6 l .debug_str 0000000000000000 .LASF33 +0000000000002be8 l .debug_str 0000000000000000 .LASF34 +00000000000029c6 l .debug_str 0000000000000000 .LASF35 +0000000000002aed l .debug_str 0000000000000000 .LASF36 +0000000000002c6b l .debug_str 0000000000000000 .LASF37 +0000000000002b53 l .debug_str 0000000000000000 .LASF38 +0000000000002b71 l .debug_str 0000000000000000 .LASF39 +0000000000002bdf l .debug_str 0000000000000000 .LASF40 +0000000000002c2f l .debug_str 0000000000000000 .LASF41 +0000000000002cf3 l .debug_str 0000000000000000 .LASF42 +0000000000002d65 l .debug_str 0000000000000000 .LASF43 +0000000000002b1e l .debug_str 0000000000000000 .LASF44 +0000000000002baa l .debug_str 0000000000000000 .LASF45 +0000000000002c8c l .debug_str 0000000000000000 .LASF46 +0000000000002b5a l .debug_str 0000000000000000 .LASF47 +00000000000029ae l .debug_str 0000000000000000 .LASF48 +0000000000002caf l .debug_str 0000000000000000 .LASF49 +00000000000029cf l .debug_str 0000000000000000 .LASF50 +0000000000002acb l .debug_str 0000000000000000 .LASF51 +0000000000002b19 l .debug_str 0000000000000000 .LASF52 +0000000000002962 l .debug_str 0000000000000000 .LASF53 +0000000000002d01 l .debug_str 0000000000000000 .LASF54 +000000000000294c l .debug_str 0000000000000000 .LASF55 +0000000000002b79 l .debug_str 0000000000000000 .LASF56 +0000000000002c92 l .debug_str 0000000000000000 .LASF57 +0000000000002d06 l .debug_str 0000000000000000 .LASF58 +0000000000002ca5 l .debug_str 0000000000000000 .LASF59 +0000000000002ce3 l .debug_str 0000000000000000 .LASF60 +0000000000002d19 l .debug_str 0000000000000000 .LASF61 +0000000000002aa9 l .debug_str 0000000000000000 .LASF62 +0000000000002afe l .debug_str 0000000000000000 .LASF63 +0000000000002af3 l .debug_str 0000000000000000 .LASF64 +0000000000002cc6 l .debug_str 0000000000000000 .LASF65 +0000000000002c25 l .debug_str 0000000000000000 .LASF66 +0000000000002d49 l .debug_str 0000000000000000 .LASF67 +0000000000002d2f l .debug_str 0000000000000000 .LASF68 +0000000000002968 l .debug_str 0000000000000000 .LASF69 +0000000000002b14 l .debug_str 0000000000000000 .LASF70 +0000000000002b98 l .debug_str 0000000000000000 .LASF71 +00000000000010a0 l .text 0000000000000000 .LFB5 +00000000000010e6 l .text 0000000000000000 .LFE5 +0000000000002b85 l .debug_str 0000000000000000 .LASF73 +0000000000002dbd l .debug_loc 0000000000000000 .LLST2 +0000000000002e1f l .debug_loc 0000000000000000 .LLST3 +00000000000010b0 l .text 0000000000000000 .LVL11 +00000000000010b8 l .text 0000000000000000 .LVL12 +00000000000010c8 l .text 0000000000000000 .LVL14 +00000000000010e0 l .text 0000000000000000 .LVL18 +0000000000002952 l .debug_str 0000000000000000 .LASF72 +000000000000105a l .text 0000000000000000 .LFB4 +00000000000010a0 l .text 0000000000000000 .LFE4 +0000000000002e6b l .debug_loc 0000000000000000 .LLST0 +0000000000002ecd l .debug_loc 0000000000000000 .LLST1 +000000000000106a l .text 0000000000000000 .LVL1 +0000000000001072 l .text 0000000000000000 .LVL2 +0000000000001082 l .text 0000000000000000 .LVL4 +000000000000109a l .text 0000000000000000 .LVL8 +0000000000002c5b l .debug_str 0000000000000000 .LASF74 +0000000000002cd0 l .debug_str 0000000000000000 .LASF75 +0000000000002d5d l .debug_str 0000000000000000 .LASF76 +0000000000002ac0 l .debug_str 0000000000000000 .LASF77 +0000000000002998 l .debug_str 0000000000000000 .LASF78 +000000000000297d l .debug_str 0000000000000000 .LASF79 +00000000000010a0 l .text 0000000000000000 .LVL10 +00000000000010d8 l .text 0000000000000000 .LVL17 +00000000000010ba l .text 0000000000000000 .LVL13 +00000000000010cc l .text 0000000000000000 .LVL15 +00000000000010d0 l .text 0000000000000000 .LVL16 +00000000000010e4 l .text 0000000000000000 .LVL19 +000000000000105a l .text 0000000000000000 .LVL0 +0000000000001092 l .text 0000000000000000 .LVL7 +0000000000001074 l .text 0000000000000000 .LVL3 +0000000000001086 l .text 0000000000000000 .LVL5 +000000000000108a l .text 0000000000000000 .LVL6 +000000000000109e l .text 0000000000000000 .LVL9 +00000000000033e9 l .debug_info 0000000000000000 .Ldebug_info0 +000000000000105a l .text 0000000000000000 .L0 +00000000000010a0 l .text 0000000000000000 .L0 +000000000000105a l .text 0000000000000000 .L0 +000000000000105a l .text 0000000000000000 .L0 +000000000000105a l .text 0000000000000000 .L0 +0000000000001060 l .text 0000000000000000 .L0 +0000000000001062 l .text 0000000000000000 .L0 +0000000000001062 l .text 0000000000000000 .L0 +0000000000001074 l .text 0000000000000000 .L0 +0000000000001074 l .text 0000000000000000 .L0 +0000000000001076 l .text 0000000000000000 .L0 +000000000000107a l .text 0000000000000000 .L0 +000000000000107a l .text 0000000000000000 .L0 +0000000000001088 l .text 0000000000000000 .L0 +0000000000001088 l .text 0000000000000000 .L0 +0000000000001088 l .text 0000000000000000 .L0 +000000000000108a l .text 0000000000000000 .L0 +0000000000001092 l .text 0000000000000000 .L0 +0000000000001092 l .text 0000000000000000 .L0 +000000000000109a l .text 0000000000000000 .L0 +00000000000010a0 l .text 0000000000000000 .L0 +00000000000010a0 l .text 0000000000000000 .L0 +00000000000010a0 l .text 0000000000000000 .L0 +00000000000010a0 l .text 0000000000000000 .L0 +00000000000010a6 l .text 0000000000000000 .L0 +00000000000010a8 l .text 0000000000000000 .L0 +00000000000010a8 l .text 0000000000000000 .L0 +00000000000010ba l .text 0000000000000000 .L0 +00000000000010ba l .text 0000000000000000 .L0 +00000000000010bc l .text 0000000000000000 .L0 +00000000000010c0 l .text 0000000000000000 .L0 +00000000000010c0 l .text 0000000000000000 .L0 +00000000000010ce l .text 0000000000000000 .L0 +00000000000010ce l .text 0000000000000000 .L0 +00000000000010ce l .text 0000000000000000 .L0 +00000000000010d0 l .text 0000000000000000 .L0 +00000000000010d8 l .text 0000000000000000 .L0 +00000000000010d8 l .text 0000000000000000 .L0 +00000000000010e0 l .text 0000000000000000 .L0 +00000000000010e6 l .text 0000000000000000 .L0 +0000000000000520 l .debug_frame 0000000000000000 .L0 +000000000000105a l .text 0000000000000000 .L0 +00000000000010a0 l .text 0000000000000000 .L0 +00000000000010a0 l .text 0000000000000000 .L0 +00000000000010e6 l .text 0000000000000000 .L0 +000000000000108c l .text 0000000000000000 .L0 +0000000000001060 l .text 0000000000000000 .L0 +00000000000010d2 l .text 0000000000000000 .L0 +00000000000010a6 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_libflushall.c +0000000000001120 l .text 0000000000000000 .L2 +000000000000112c l .text 0000000000000000 .L5 +0000000000001146 l .text 0000000000000000 .L4 +000000000000111e l .text 0000000000000000 .L3 +0000000000001198 l .text 0000000000000000 .L12 +00000000000011a6 l .text 0000000000000000 .L15 +00000000000011c0 l .text 0000000000000000 .L14 +000000000000118c l .text 0000000000000000 .L13 +00000000000016b4 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000002e2e l .debug_str 0000000000000000 .LASF85 +00000000000030fe l .debug_str 0000000000000000 .LASF86 +0000000000002f55 l .debug_str 0000000000000000 .LASF87 +0000000000000520 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000003996 l .debug_line 0000000000000000 .Ldebug_line0 +000000000000300a l .debug_str 0000000000000000 .LASF0 +0000000000002d97 l .debug_str 0000000000000000 .LASF2 +0000000000002fe0 l .debug_str 0000000000000000 .LASF1 +0000000000002fee l .debug_str 0000000000000000 .LASF3 +0000000000002e24 l .debug_str 0000000000000000 .LASF4 +000000000000317a l .debug_str 0000000000000000 .LASF5 +0000000000003070 l .debug_str 0000000000000000 .LASF6 +0000000000002fcf l .debug_str 0000000000000000 .LASF7 +0000000000003191 l .debug_str 0000000000000000 .LASF8 +0000000000003090 l .debug_str 0000000000000000 .LASF9 +0000000000003041 l .debug_str 0000000000000000 .LASF10 +00000000000031c4 l .debug_str 0000000000000000 .LASF11 +000000000000314e l .debug_str 0000000000000000 .LASF12 +000000000000301c l .debug_str 0000000000000000 .LASF13 +0000000000002eed l .debug_str 0000000000000000 .LASF14 +00000000000030a6 l .debug_str 0000000000000000 .LASF15 +0000000000003038 l .debug_str 0000000000000000 .LASF16 +0000000000003099 l .debug_str 0000000000000000 .LASF17 +0000000000002dbb l .debug_str 0000000000000000 .LASF18 +0000000000002e1c l .debug_str 0000000000000000 .LASF19 +0000000000003123 l .debug_str 0000000000000000 .LASF20 +0000000000003142 l .debug_str 0000000000000000 .LASF21 +0000000000003083 l .debug_str 0000000000000000 .LASF22 +0000000000002fac l .debug_str 0000000000000000 .LASF23 +0000000000002fb8 l .debug_str 0000000000000000 .LASF27 +0000000000002fb2 l .debug_str 0000000000000000 .LASF24 +0000000000002f16 l .debug_str 0000000000000000 .LASF25 +00000000000030bc l .debug_str 0000000000000000 .LASF26 +00000000000031a7 l .debug_str 0000000000000000 .LASF28 +0000000000002ee8 l .debug_str 0000000000000000 .LASF29 +0000000000003033 l .debug_str 0000000000000000 .LASF30 +0000000000003163 l .debug_str 0000000000000000 .LASF31 +0000000000002f1c l .debug_str 0000000000000000 .LASF32 +0000000000003001 l .debug_str 0000000000000000 .LASF33 +0000000000003016 l .debug_str 0000000000000000 .LASF34 +0000000000002dfb l .debug_str 0000000000000000 .LASF35 +0000000000002f22 l .debug_str 0000000000000000 .LASF36 +0000000000003088 l .debug_str 0000000000000000 .LASF37 +0000000000002f77 l .debug_str 0000000000000000 .LASF38 +0000000000002f95 l .debug_str 0000000000000000 .LASF39 +00000000000031b2 l .debug_str 0000000000000000 .LASF40 +000000000000306a l .debug_str 0000000000000000 .LASF41 +0000000000003148 l .debug_str 0000000000000000 .LASF42 +00000000000031bb l .debug_str 0000000000000000 .LASF43 +0000000000002f47 l .debug_str 0000000000000000 .LASF44 +0000000000002fc3 l .debug_str 0000000000000000 .LASF45 +00000000000030ae l .debug_str 0000000000000000 .LASF46 +0000000000002f7e l .debug_str 0000000000000000 .LASF47 +0000000000002de3 l .debug_str 0000000000000000 .LASF48 +00000000000030dd l .debug_str 0000000000000000 .LASF49 +0000000000002e04 l .debug_str 0000000000000000 .LASF50 +0000000000002f00 l .debug_str 0000000000000000 .LASF51 +0000000000002f42 l .debug_str 0000000000000000 .LASF52 +0000000000002d85 l .debug_str 0000000000000000 .LASF53 +0000000000003156 l .debug_str 0000000000000000 .LASF54 +0000000000002d77 l .debug_str 0000000000000000 .LASF55 +00000000000030d1 l .debug_str 0000000000000000 .LASF56 +00000000000030b4 l .debug_str 0000000000000000 .LASF57 +000000000000315b l .debug_str 0000000000000000 .LASF58 +00000000000030c7 l .debug_str 0000000000000000 .LASF59 +0000000000003138 l .debug_str 0000000000000000 .LASF60 +000000000000316e l .debug_str 0000000000000000 .LASF61 +0000000000002ede l .debug_str 0000000000000000 .LASF62 +0000000000002f33 l .debug_str 0000000000000000 .LASF63 +0000000000002f28 l .debug_str 0000000000000000 .LASF64 +00000000000030f4 l .debug_str 0000000000000000 .LASF65 +0000000000003053 l .debug_str 0000000000000000 .LASF66 +000000000000319e l .debug_str 0000000000000000 .LASF67 +0000000000003184 l .debug_str 0000000000000000 .LASF68 +0000000000002d8b l .debug_str 0000000000000000 .LASF69 +0000000000002dc2 l .debug_str 0000000000000000 .LASF70 +0000000000002fd8 l .debug_str 0000000000000000 .LASF71 +0000000000002da0 l .debug_str 0000000000000000 .LASF72 +0000000000002d7d l .debug_str 0000000000000000 .LASF73 +0000000000002f9d l .debug_str 0000000000000000 .LASF74 +0000000000002f3d l .debug_str 0000000000000000 .LASF75 +0000000000003116 l .debug_str 0000000000000000 .LASF78 +000000000000114a l .text 0000000000000000 .LFB5 +00000000000011c4 l .text 0000000000000000 .LFE5 +00000000000030a1 l .debug_str 0000000000000000 .LASF80 +0000000000002f19 l .debug_loc 0000000000000000 .LLST5 +0000000000002ff7 l .debug_str 0000000000000000 .LASF76 +0000000000002f78 l .debug_loc 0000000000000000 .LLST6 +0000000000002fc2 l .debug_loc 0000000000000000 .LLST7 +0000000000002fa5 l .debug_str 0000000000000000 .LASF77 +0000000000002fe5 l .debug_loc 0000000000000000 .LLST8 +000000000000301b l .debug_loc 0000000000000000 .LLST9 +0000000000001162 l .text 0000000000000000 .LVL16 +000000000000116e l .text 0000000000000000 .LVL17 +000000000000117a l .text 0000000000000000 .LVL18 +0000000000001186 l .text 0000000000000000 .LVL19 +0000000000001198 l .text 0000000000000000 .LVL22 +00000000000011b8 l .text 0000000000000000 .LVL25 +0000000000002dcd l .debug_str 0000000000000000 .LASF79 +00000000000010e6 l .text 0000000000000000 .LFB4 +000000000000114a l .text 0000000000000000 .LFE4 +000000000000308f l .debug_loc 0000000000000000 .LLST0 +00000000000030db l .debug_loc 0000000000000000 .LLST1 +0000000000003125 l .debug_loc 0000000000000000 .LLST2 +0000000000003148 l .debug_loc 0000000000000000 .LLST3 +000000000000317e l .debug_loc 0000000000000000 .LLST4 +0000000000001100 l .text 0000000000000000 .LVL3 +000000000000110c l .text 0000000000000000 .LVL4 +0000000000001118 l .text 0000000000000000 .LVL5 +000000000000113e l .text 0000000000000000 .LVL11 +000000000000305d l .debug_str 0000000000000000 .LASF81 +0000000000002ef5 l .debug_str 0000000000000000 .LASF82 +0000000000003129 l .debug_str 0000000000000000 .LASF83 +0000000000002da7 l .debug_str 0000000000000000 .LASF84 +000000000000114a l .text 0000000000000000 .LVL15 +00000000000011a6 l .text 0000000000000000 .LVL24 +000000000000118c l .text 0000000000000000 .LVL21 +00000000000011a2 l .text 0000000000000000 .LVL23 +00000000000011ba l .text 0000000000000000 .LVL26 +00000000000011c0 l .text 0000000000000000 .LVL27 +000000000000118a l .text 0000000000000000 .LVL20 +00000000000010e6 l .text 0000000000000000 .LVL0 +00000000000010f8 l .text 0000000000000000 .LVL2 +000000000000111c l .text 0000000000000000 .LVL6 +000000000000111e l .text 0000000000000000 .LVL7 +0000000000001128 l .text 0000000000000000 .LVL9 +000000000000112c l .text 0000000000000000 .LVL10 +0000000000001140 l .text 0000000000000000 .LVL12 +0000000000001146 l .text 0000000000000000 .LVL13 +0000000000001120 l .text 0000000000000000 .LVL8 +00000000000010f4 l .text 0000000000000000 .LVL1 +00000000000039a2 l .debug_info 0000000000000000 .Ldebug_info0 +00000000000010f4 l .text 0000000000000000 .LBB2 +000000000000111c l .text 0000000000000000 .LBE2 +000000000000111e l .text 0000000000000000 .LBB3 +0000000000001120 l .text 0000000000000000 .LBE3 +000000000000112c l .text 0000000000000000 .LBB4 +000000000000114a l .text 0000000000000000 .LBE4 +000000000000115a l .text 0000000000000000 .LBB5 +000000000000118a l .text 0000000000000000 .LBE5 +000000000000118c l .text 0000000000000000 .LBB6 +0000000000001198 l .text 0000000000000000 .LBE6 +00000000000011a6 l .text 0000000000000000 .LBB7 +00000000000011c4 l .text 0000000000000000 .LBE7 +00000000000010e6 l .text 0000000000000000 .L0 +000000000000114a l .text 0000000000000000 .L0 +00000000000010e6 l .text 0000000000000000 .L0 +00000000000010e6 l .text 0000000000000000 .L0 +00000000000010e6 l .text 0000000000000000 .L0 +00000000000010e6 l .text 0000000000000000 .L0 +00000000000010ee l .text 0000000000000000 .L0 +00000000000010f0 l .text 0000000000000000 .L0 +00000000000010f4 l .text 0000000000000000 .L0 +00000000000010f4 l .text 0000000000000000 .L0 +0000000000001100 l .text 0000000000000000 .L0 +0000000000001100 l .text 0000000000000000 .L0 +0000000000001100 l .text 0000000000000000 .L0 +000000000000110c l .text 0000000000000000 .L0 +000000000000110c l .text 0000000000000000 .L0 +000000000000110c l .text 0000000000000000 .L0 +0000000000001118 l .text 0000000000000000 .L0 +0000000000001118 l .text 0000000000000000 .L0 +0000000000001118 l .text 0000000000000000 .L0 +0000000000001118 l .text 0000000000000000 .L0 +000000000000111c l .text 0000000000000000 .L0 +000000000000111e l .text 0000000000000000 .L0 +000000000000111e l .text 0000000000000000 .L0 +0000000000001120 l .text 0000000000000000 .L0 +0000000000001120 l .text 0000000000000000 .L0 +000000000000112c l .text 0000000000000000 .L0 +000000000000112c l .text 0000000000000000 .L0 +0000000000001134 l .text 0000000000000000 .L0 +0000000000001134 l .text 0000000000000000 .L0 +000000000000113e l .text 0000000000000000 .L0 +0000000000001140 l .text 0000000000000000 .L0 +0000000000001140 l .text 0000000000000000 .L0 +0000000000001146 l .text 0000000000000000 .L0 +0000000000001146 l .text 0000000000000000 .L0 +000000000000114a l .text 0000000000000000 .L0 +000000000000114a l .text 0000000000000000 .L0 +000000000000114a l .text 0000000000000000 .L0 +000000000000114a l .text 0000000000000000 .L0 +000000000000114a l .text 0000000000000000 .L0 +0000000000001154 l .text 0000000000000000 .L0 +0000000000001156 l .text 0000000000000000 .L0 +000000000000115a l .text 0000000000000000 .L0 +000000000000115a l .text 0000000000000000 .L0 +000000000000115a l .text 0000000000000000 .L0 +0000000000001162 l .text 0000000000000000 .L0 +0000000000001162 l .text 0000000000000000 .L0 +0000000000001162 l .text 0000000000000000 .L0 +000000000000116e l .text 0000000000000000 .L0 +000000000000116e l .text 0000000000000000 .L0 +000000000000116e l .text 0000000000000000 .L0 +000000000000117a l .text 0000000000000000 .L0 +000000000000117a l .text 0000000000000000 .L0 +000000000000117a l .text 0000000000000000 .L0 +0000000000001186 l .text 0000000000000000 .L0 +0000000000001186 l .text 0000000000000000 .L0 +0000000000001186 l .text 0000000000000000 .L0 +0000000000001186 l .text 0000000000000000 .L0 +000000000000118a l .text 0000000000000000 .L0 +000000000000118c l .text 0000000000000000 .L0 +000000000000118c l .text 0000000000000000 .L0 +000000000000118e l .text 0000000000000000 .L0 +0000000000001198 l .text 0000000000000000 .L0 +0000000000001198 l .text 0000000000000000 .L0 +00000000000011a6 l .text 0000000000000000 .L0 +00000000000011a6 l .text 0000000000000000 .L0 +00000000000011ae l .text 0000000000000000 .L0 +00000000000011ae l .text 0000000000000000 .L0 +00000000000011b8 l .text 0000000000000000 .L0 +00000000000011ba l .text 0000000000000000 .L0 +00000000000011ba l .text 0000000000000000 .L0 +00000000000011c0 l .text 0000000000000000 .L0 +00000000000011c0 l .text 0000000000000000 .L0 +00000000000011c4 l .text 0000000000000000 .L0 +0000000000000590 l .debug_frame 0000000000000000 .L0 +00000000000010e6 l .text 0000000000000000 .L0 +000000000000114a l .text 0000000000000000 .L0 +000000000000114a l .text 0000000000000000 .L0 +00000000000011c4 l .text 0000000000000000 .L0 +0000000000001122 l .text 0000000000000000 .L0 +00000000000010ee l .text 0000000000000000 .L0 +000000000000119a l .text 0000000000000000 .L0 +0000000000001154 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_libfflush.c +0000000000001248 l .text 0000000000000000 .L8 +000000000000121c l .text 0000000000000000 .L1 +0000000000001240 l .text 0000000000000000 .L3 +0000000000001228 l .text 0000000000000000 .L4 +0000000000001234 l .text 0000000000000000 .L6 +00000000000011fe l .text 0000000000000000 .L5 +00000000000011f2 l .text 0000000000000000 .L7 +0000000000001869 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000003263 l .debug_str 0000000000000000 .LASF78 +00000000000033f1 l .debug_str 0000000000000000 .LASF79 +0000000000003390 l .debug_str 0000000000000000 .LASF80 +00000000000005d0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000003d91 l .debug_line 0000000000000000 .Ldebug_line0 +000000000000336c l .debug_str 0000000000000000 .LASF0 +00000000000031eb l .debug_str 0000000000000000 .LASF2 +000000000000343f l .debug_str 0000000000000000 .LASF1 +000000000000344d l .debug_str 0000000000000000 .LASF3 +0000000000003259 l .debug_str 0000000000000000 .LASF4 +0000000000003582 l .debug_str 0000000000000000 .LASF5 +00000000000034b5 l .debug_str 0000000000000000 .LASF6 +000000000000342c l .debug_str 0000000000000000 .LASF7 +0000000000003599 l .debug_str 0000000000000000 .LASF8 +00000000000034d5 l .debug_str 0000000000000000 .LASF9 +0000000000003493 l .debug_str 0000000000000000 .LASF10 +00000000000035d7 l .debug_str 0000000000000000 .LASF11 +0000000000003556 l .debug_str 0000000000000000 .LASF12 +000000000000346e l .debug_str 0000000000000000 .LASF13 +0000000000003322 l .debug_str 0000000000000000 .LASF14 +00000000000034e6 l .debug_str 0000000000000000 .LASF15 +000000000000348a l .debug_str 0000000000000000 .LASF16 +00000000000034de l .debug_str 0000000000000000 .LASF17 +000000000000320f l .debug_str 0000000000000000 .LASF18 +0000000000003208 l .debug_str 0000000000000000 .LASF19 +0000000000003251 l .debug_str 0000000000000000 .LASF20 +0000000000003540 l .debug_str 0000000000000000 .LASF21 +00000000000033eb l .debug_str 0000000000000000 .LASF22 +00000000000034c8 l .debug_str 0000000000000000 .LASF23 +0000000000003415 l .debug_str 0000000000000000 .LASF27 +000000000000340f l .debug_str 0000000000000000 .LASF24 +00000000000031d3 l .debug_str 0000000000000000 .LASF25 +00000000000034fc l .debug_str 0000000000000000 .LASF26 +00000000000035bb l .debug_str 0000000000000000 .LASF28 +000000000000331d l .debug_str 0000000000000000 .LASF29 +0000000000003485 l .debug_str 0000000000000000 .LASF30 +000000000000356b l .debug_str 0000000000000000 .LASF31 +000000000000334b l .debug_str 0000000000000000 .LASF32 +0000000000003456 l .debug_str 0000000000000000 .LASF33 +0000000000003468 l .debug_str 0000000000000000 .LASF34 +0000000000003230 l .debug_str 0000000000000000 .LASF35 +0000000000003351 l .debug_str 0000000000000000 .LASF36 +00000000000034cd l .debug_str 0000000000000000 .LASF37 +00000000000033b2 l .debug_str 0000000000000000 .LASF38 +00000000000033d0 l .debug_str 0000000000000000 .LASF39 +000000000000345f l .debug_str 0000000000000000 .LASF40 +00000000000034af l .debug_str 0000000000000000 .LASF41 +0000000000003550 l .debug_str 0000000000000000 .LASF42 +00000000000035ce l .debug_str 0000000000000000 .LASF43 +0000000000003382 l .debug_str 0000000000000000 .LASF44 +0000000000003420 l .debug_str 0000000000000000 .LASF45 +00000000000034ee l .debug_str 0000000000000000 .LASF46 +00000000000033b9 l .debug_str 0000000000000000 .LASF47 +0000000000003218 l .debug_str 0000000000000000 .LASF48 +000000000000351f l .debug_str 0000000000000000 .LASF49 +0000000000003239 l .debug_str 0000000000000000 .LASF50 +0000000000003335 l .debug_str 0000000000000000 .LASF51 +000000000000337d l .debug_str 0000000000000000 .LASF52 +00000000000031d9 l .debug_str 0000000000000000 .LASF53 +000000000000355e l .debug_str 0000000000000000 .LASF54 +00000000000031cd l .debug_str 0000000000000000 .LASF55 +00000000000033d8 l .debug_str 0000000000000000 .LASF56 +00000000000034f4 l .debug_str 0000000000000000 .LASF57 +0000000000003563 l .debug_str 0000000000000000 .LASF58 +0000000000003515 l .debug_str 0000000000000000 .LASF59 +0000000000003546 l .debug_str 0000000000000000 .LASF60 +0000000000003576 l .debug_str 0000000000000000 .LASF61 +0000000000003313 l .debug_str 0000000000000000 .LASF62 +0000000000003362 l .debug_str 0000000000000000 .LASF63 +0000000000003357 l .debug_str 0000000000000000 .LASF64 +0000000000003536 l .debug_str 0000000000000000 .LASF65 +00000000000034a5 l .debug_str 0000000000000000 .LASF66 +00000000000035b2 l .debug_str 0000000000000000 .LASF67 +000000000000358c l .debug_str 0000000000000000 .LASF68 +00000000000031df l .debug_str 0000000000000000 .LASF69 +0000000000003378 l .debug_str 0000000000000000 .LASF70 +000000000000332a l .debug_str 0000000000000000 .LASF71 +000000000000124c l .text 0000000000000000 .LFB5 +0000000000001280 l .text 0000000000000000 .LFE5 +00000000000033e4 l .debug_str 0000000000000000 .LASF73 +00000000000031f2 l .debug_loc 0000000000000000 .LLST3 +000000000000323e l .debug_loc 0000000000000000 .LLST4 +000000000000125e l .text 0000000000000000 .LVL16 +0000000000001268 l .text 0000000000000000 .LVL17 +0000000000001274 l .text 0000000000000000 .LVL19 +00000000000031f4 l .debug_str 0000000000000000 .LASF72 +00000000000011c4 l .text 0000000000000000 .LFB4 +000000000000124c l .text 0000000000000000 .LFE4 +0000000000003274 l .debug_loc 0000000000000000 .LLST0 +00000000000032fc l .debug_loc 0000000000000000 .LLST1 +0000000000003507 l .debug_str 0000000000000000 .LASF74 +0000000000003396 l .debug_loc 0000000000000000 .LLST2 +0000000000003407 l .debug_str 0000000000000000 .LASF81 +00000000000011fe l .text 0000000000000000 .LVL4 +0000000000001216 l .text 0000000000000000 .LVL5 +0000000000001232 l .text 0000000000000000 .LVL9 +0000000000003435 l .debug_str 0000000000000000 .LASF75 +00000000000035a6 l .debug_str 0000000000000000 .LASF76 +00000000000035c6 l .debug_str 0000000000000000 .LASF77 +000000000000124c l .text 0000000000000000 .LVL15 +0000000000001278 l .text 0000000000000000 .LVL20 +000000000000126a l .text 0000000000000000 .LVL18 +000000000000127c l .text 0000000000000000 .LVL21 +00000000000011c4 l .text 0000000000000000 .LVL0 +00000000000011de l .text 0000000000000000 .LVL1 +0000000000001220 l .text 0000000000000000 .LVL7 +0000000000001228 l .text 0000000000000000 .LVL8 +0000000000001248 l .text 0000000000000000 .LVL13 +000000000000124a l .text 0000000000000000 .LVL14 +00000000000011f2 l .text 0000000000000000 .LVL2 +00000000000011fc l .text 0000000000000000 .LVL3 +000000000000121c l .text 0000000000000000 .LVL6 +0000000000001234 l .text 0000000000000000 .LVL10 +0000000000001238 l .text 0000000000000000 .LVL11 +0000000000001240 l .text 0000000000000000 .LVL12 +000000000000408e l .debug_info 0000000000000000 .Ldebug_info0 +00000000000011c4 l .text 0000000000000000 .L0 +000000000000124c l .text 0000000000000000 .L0 +00000000000011c4 l .text 0000000000000000 .L0 +00000000000011c4 l .text 0000000000000000 .L0 +00000000000011c4 l .text 0000000000000000 .L0 +00000000000011c4 l .text 0000000000000000 .L0 +00000000000011c4 l .text 0000000000000000 .L0 +00000000000011cc l .text 0000000000000000 .L0 +00000000000011d6 l .text 0000000000000000 .L0 +00000000000011dc l .text 0000000000000000 .L0 +00000000000011dc l .text 0000000000000000 .L0 +00000000000011de l .text 0000000000000000 .L0 +00000000000011e2 l .text 0000000000000000 .L0 +00000000000011e2 l .text 0000000000000000 .L0 +00000000000011e4 l .text 0000000000000000 .L0 +00000000000011e8 l .text 0000000000000000 .L0 +00000000000011e8 l .text 0000000000000000 .L0 +00000000000011ee l .text 0000000000000000 .L0 +00000000000011ee l .text 0000000000000000 .L0 +00000000000011f2 l .text 0000000000000000 .L0 +00000000000011f2 l .text 0000000000000000 .L0 +00000000000011f2 l .text 0000000000000000 .L0 +00000000000011f2 l .text 0000000000000000 .L0 +00000000000011f4 l .text 0000000000000000 .L0 +00000000000011fa l .text 0000000000000000 .L0 +00000000000011fc l .text 0000000000000000 .L0 +00000000000011fc l .text 0000000000000000 .L0 +00000000000011fe l .text 0000000000000000 .L0 +00000000000011fe l .text 0000000000000000 .L0 +0000000000001202 l .text 0000000000000000 .L0 +0000000000001202 l .text 0000000000000000 .L0 +000000000000120e l .text 0000000000000000 .L0 +000000000000120e l .text 0000000000000000 .L0 +000000000000121c l .text 0000000000000000 .L0 +0000000000001228 l .text 0000000000000000 .L0 +0000000000001228 l .text 0000000000000000 .L0 +0000000000001234 l .text 0000000000000000 .L0 +0000000000001234 l .text 0000000000000000 .L0 +0000000000001236 l .text 0000000000000000 .L0 +0000000000001238 l .text 0000000000000000 .L0 +0000000000001238 l .text 0000000000000000 .L0 +0000000000001238 l .text 0000000000000000 .L0 +000000000000123c l .text 0000000000000000 .L0 +000000000000123c l .text 0000000000000000 .L0 +0000000000001240 l .text 0000000000000000 .L0 +0000000000001240 l .text 0000000000000000 .L0 +0000000000001240 l .text 0000000000000000 .L0 +0000000000001240 l .text 0000000000000000 .L0 +0000000000001248 l .text 0000000000000000 .L0 +000000000000124a l .text 0000000000000000 .L0 +000000000000124c l .text 0000000000000000 .L0 +000000000000124c l .text 0000000000000000 .L0 +000000000000124c l .text 0000000000000000 .L0 +000000000000124c l .text 0000000000000000 .L0 +0000000000001254 l .text 0000000000000000 .L0 +0000000000001256 l .text 0000000000000000 .L0 +000000000000125e l .text 0000000000000000 .L0 +000000000000125e l .text 0000000000000000 .L0 +000000000000126a l .text 0000000000000000 .L0 +0000000000001274 l .text 0000000000000000 .L0 +0000000000001274 l .text 0000000000000000 .L0 +0000000000001280 l .text 0000000000000000 .L0 +0000000000000608 l .debug_frame 0000000000000000 .L0 +00000000000011c4 l .text 0000000000000000 .L0 +000000000000124c l .text 0000000000000000 .L0 +000000000000124c l .text 0000000000000000 .L0 +0000000000001280 l .text 0000000000000000 .L0 +00000000000011ce l .text 0000000000000000 .L0 +000000000000121e l .text 0000000000000000 .L0 +00000000000011d6 l .text 0000000000000000 .L0 +0000000000001248 l .text 0000000000000000 .L0 +0000000000001228 l .text 0000000000000000 .L0 +0000000000001276 l .text 0000000000000000 .L0 +0000000000001254 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_libfilelock.c +0000000000001a08 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000003659 l .debug_str 0000000000000000 .LASF75 +00000000000037db l .debug_str 0000000000000000 .LASF76 +000000000000376a l .debug_str 0000000000000000 .LASF77 +0000000000000600 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +00000000000040ff l .debug_line 0000000000000000 .Ldebug_line0 +000000000000385d l .debug_str 0000000000000000 .LASF0 +00000000000035fe l .debug_str 0000000000000000 .LASF2 +0000000000003830 l .debug_str 0000000000000000 .LASF1 +000000000000390d l .debug_str 0000000000000000 .LASF3 +0000000000003607 l .debug_str 0000000000000000 .LASF4 +0000000000003987 l .debug_str 0000000000000000 .LASF5 +00000000000038b1 l .debug_str 0000000000000000 .LASF6 +000000000000378c l .debug_str 0000000000000000 .LASF7 +000000000000399e l .debug_str 0000000000000000 .LASF8 +00000000000038d1 l .debug_str 0000000000000000 .LASF9 +000000000000388f l .debug_str 0000000000000000 .LASF10 +00000000000039dd l .debug_str 0000000000000000 .LASF11 +000000000000395b l .debug_str 0000000000000000 .LASF12 +000000000000386f l .debug_str 0000000000000000 .LASF13 +0000000000003718 l .debug_str 0000000000000000 .LASF14 +00000000000038e2 l .debug_str 0000000000000000 .LASF15 +0000000000003886 l .debug_str 0000000000000000 .LASF16 +00000000000038da l .debug_str 0000000000000000 .LASF17 +0000000000003611 l .debug_str 0000000000000000 .LASF18 +0000000000003651 l .debug_str 0000000000000000 .LASF19 +0000000000003945 l .debug_str 0000000000000000 .LASF20 +00000000000037f3 l .debug_str 0000000000000000 .LASF21 +00000000000038c4 l .debug_str 0000000000000000 .LASF22 +00000000000037ff l .debug_str 0000000000000000 .LASF26 +00000000000037f9 l .debug_str 0000000000000000 .LASF23 +00000000000035e6 l .debug_str 0000000000000000 .LASF24 +00000000000038f8 l .debug_str 0000000000000000 .LASF25 +00000000000039c0 l .debug_str 0000000000000000 .LASF27 +0000000000003713 l .debug_str 0000000000000000 .LASF28 +000000000000384f l .debug_str 0000000000000000 .LASF29 +0000000000003970 l .debug_str 0000000000000000 .LASF30 +0000000000003736 l .debug_str 0000000000000000 .LASF31 +0000000000003854 l .debug_str 0000000000000000 .LASF32 +0000000000003869 l .debug_str 0000000000000000 .LASF33 +0000000000003630 l .debug_str 0000000000000000 .LASF34 +000000000000373c l .debug_str 0000000000000000 .LASF35 +00000000000038c9 l .debug_str 0000000000000000 .LASF36 +0000000000003795 l .debug_str 0000000000000000 .LASF37 +00000000000037b3 l .debug_str 0000000000000000 .LASF38 +00000000000039cb l .debug_str 0000000000000000 .LASF39 +00000000000038ab l .debug_str 0000000000000000 .LASF40 +0000000000003955 l .debug_str 0000000000000000 .LASF41 +00000000000039d4 l .debug_str 0000000000000000 .LASF42 +000000000000375c l .debug_str 0000000000000000 .LASF43 +000000000000380a l .debug_str 0000000000000000 .LASF44 +00000000000038ea l .debug_str 0000000000000000 .LASF45 +000000000000379c l .debug_str 0000000000000000 .LASF46 +0000000000003618 l .debug_str 0000000000000000 .LASF47 +0000000000003916 l .debug_str 0000000000000000 .LASF48 +0000000000003639 l .debug_str 0000000000000000 .LASF49 +0000000000003720 l .debug_str 0000000000000000 .LASF50 +0000000000003757 l .debug_str 0000000000000000 .LASF51 +00000000000035ec l .debug_str 0000000000000000 .LASF52 +0000000000003963 l .debug_str 0000000000000000 .LASF53 +00000000000035e0 l .debug_str 0000000000000000 .LASF54 +00000000000037bb l .debug_str 0000000000000000 .LASF55 +00000000000038f0 l .debug_str 0000000000000000 .LASF56 +0000000000003968 l .debug_str 0000000000000000 .LASF57 +0000000000003903 l .debug_str 0000000000000000 .LASF58 +000000000000394b l .debug_str 0000000000000000 .LASF59 +000000000000397b l .debug_str 0000000000000000 .LASF60 +0000000000003709 l .debug_str 0000000000000000 .LASF61 +000000000000374d l .debug_str 0000000000000000 .LASF62 +0000000000003742 l .debug_str 0000000000000000 .LASF63 +000000000000392d l .debug_str 0000000000000000 .LASF64 +00000000000038a1 l .debug_str 0000000000000000 .LASF65 +00000000000039b7 l .debug_str 0000000000000000 .LASF66 +0000000000003991 l .debug_str 0000000000000000 .LASF67 +00000000000035f2 l .debug_str 0000000000000000 .LASF68 +00000000000039ab l .debug_str 0000000000000000 .LASF70 +0000000000001294 l .text 0000000000000000 .LFB6 +000000000000129e l .text 0000000000000000 .LFE6 +00000000000037c7 l .debug_str 0000000000000000 .LASF69 +00000000000033cc l .debug_loc 0000000000000000 .LLST2 +000000000000129e l .text 0000000000000000 .LVL8 +00000000000037ce l .debug_str 0000000000000000 .LASF78 +000000000000128a l .text 0000000000000000 .LFB5 +0000000000001294 l .text 0000000000000000 .LFE5 +000000000000341a l .debug_loc 0000000000000000 .LLST1 +0000000000001294 l .text 0000000000000000 .LVL5 +0000000000003826 l .debug_str 0000000000000000 .LASF71 +0000000000001280 l .text 0000000000000000 .LFB4 +000000000000128a l .text 0000000000000000 .LFE4 +0000000000003468 l .debug_loc 0000000000000000 .LLST0 +000000000000128a l .text 0000000000000000 .LVL2 +0000000000003816 l .debug_str 0000000000000000 .LASF72 +000000000000383e l .debug_str 0000000000000000 .LASF73 +0000000000003937 l .debug_str 0000000000000000 .LASF74 +0000000000001294 l .text 0000000000000000 .LVL6 +0000000000001296 l .text 0000000000000000 .LVL7 +000000000000128a l .text 0000000000000000 .LVL3 +000000000000128c l .text 0000000000000000 .LVL4 +0000000000001280 l .text 0000000000000000 .LVL0 +0000000000001282 l .text 0000000000000000 .LVL1 +000000000000464d l .debug_info 0000000000000000 .Ldebug_info0 +0000000000001280 l .text 0000000000000000 .L0 +000000000000128a l .text 0000000000000000 .L0 +0000000000001294 l .text 0000000000000000 .L0 +0000000000001280 l .text 0000000000000000 .L0 +000000000000128a l .text 0000000000000000 .L0 +000000000000128a l .text 0000000000000000 .L0 +000000000000128a l .text 0000000000000000 .L0 +0000000000001294 l .text 0000000000000000 .L0 +0000000000001294 l .text 0000000000000000 .L0 +000000000000129e l .text 0000000000000000 .L0 +0000000000000688 l .debug_frame 0000000000000000 .L0 +0000000000001280 l .text 0000000000000000 .L0 +000000000000128a l .text 0000000000000000 .L0 +000000000000128a l .text 0000000000000000 .L0 +0000000000001294 l .text 0000000000000000 .L0 +0000000000001294 l .text 0000000000000000 .L0 +000000000000129e l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_libgetstreams.c +0000000000001b5f l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000003a84 l .debug_str 0000000000000000 .LASF78 +0000000000003bbd l .debug_str 0000000000000000 .LASF79 +0000000000003b9b l .debug_str 0000000000000000 .LASF80 +0000000000000640 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +00000000000042ac l .debug_line 0000000000000000 .Ldebug_line0 +0000000000003c6a l .debug_str 0000000000000000 .LASF0 +0000000000003a0f l .debug_str 0000000000000000 .LASF2 +0000000000003c4a l .debug_str 0000000000000000 .LASF1 +0000000000003c58 l .debug_str 0000000000000000 .LASF3 +0000000000003a1f l .debug_str 0000000000000000 .LASF4 +0000000000003dc5 l .debug_str 0000000000000000 .LASF5 +0000000000003d11 l .debug_str 0000000000000000 .LASF6 +0000000000003c39 l .debug_str 0000000000000000 .LASF7 +0000000000003ddc l .debug_str 0000000000000000 .LASF8 +0000000000003d00 l .debug_str 0000000000000000 .LASF9 +0000000000003ca6 l .debug_str 0000000000000000 .LASF10 +0000000000003e0f l .debug_str 0000000000000000 .LASF11 +0000000000003d99 l .debug_str 0000000000000000 .LASF12 +0000000000003c7c l .debug_str 0000000000000000 .LASF13 +0000000000003b43 l .debug_str 0000000000000000 .LASF14 +0000000000003d24 l .debug_str 0000000000000000 .LASF15 +0000000000003cf7 l .debug_str 0000000000000000 .LASF16 +0000000000003d09 l .debug_str 0000000000000000 .LASF17 +0000000000003a29 l .debug_str 0000000000000000 .LASF18 +0000000000003a74 l .debug_str 0000000000000000 .LASF19 +0000000000003d78 l .debug_str 0000000000000000 .LASF20 +0000000000003c0e l .debug_str 0000000000000000 .LASF21 +0000000000003bd7 l .debug_str 0000000000000000 .LASF22 +0000000000003b8d l .debug_str 0000000000000000 .LASF23 +0000000000003c2d l .debug_str 0000000000000000 .LASF24 +0000000000003c22 l .debug_str 0000000000000000 .LASF28 +0000000000003c14 l .debug_str 0000000000000000 .LASF25 +0000000000003b61 l .debug_str 0000000000000000 .LASF26 +0000000000003d3a l .debug_str 0000000000000000 .LASF27 +0000000000003df2 l .debug_str 0000000000000000 .LASF29 +0000000000003b3e l .debug_str 0000000000000000 .LASF30 +0000000000003c93 l .debug_str 0000000000000000 .LASF31 +0000000000003dae l .debug_str 0000000000000000 .LASF32 +0000000000003b67 l .debug_str 0000000000000000 .LASF33 +0000000000003c61 l .debug_str 0000000000000000 .LASF34 +0000000000003c76 l .debug_str 0000000000000000 .LASF35 +0000000000003a53 l .debug_str 0000000000000000 .LASF36 +0000000000003b6d l .debug_str 0000000000000000 .LASF37 +0000000000003d2c l .debug_str 0000000000000000 .LASF38 +0000000000003c1a l .debug_str 0000000000000000 .LASF39 +0000000000003bdc l .debug_str 0000000000000000 .LASF40 +0000000000003bfa l .debug_str 0000000000000000 .LASF41 +0000000000003dfd l .debug_str 0000000000000000 .LASF42 +0000000000003cc7 l .debug_str 0000000000000000 .LASF43 +0000000000003d88 l .debug_str 0000000000000000 .LASF44 +0000000000003e06 l .debug_str 0000000000000000 .LASF45 +0000000000003be3 l .debug_str 0000000000000000 .LASF46 +0000000000003a3b l .debug_str 0000000000000000 .LASF47 +0000000000003d4f l .debug_str 0000000000000000 .LASF48 +0000000000003a5c l .debug_str 0000000000000000 .LASF49 +0000000000003b4b l .debug_str 0000000000000000 .LASF50 +0000000000003b88 l .debug_str 0000000000000000 .LASF51 +0000000000003d93 l .debug_str 0000000000000000 .LASF52 +0000000000003da1 l .debug_str 0000000000000000 .LASF53 +00000000000039e6 l .debug_str 0000000000000000 .LASF54 +0000000000003c02 l .debug_str 0000000000000000 .LASF55 +0000000000003d32 l .debug_str 0000000000000000 .LASF56 +0000000000003da6 l .debug_str 0000000000000000 .LASF57 +0000000000003d45 l .debug_str 0000000000000000 .LASF58 +0000000000003d7e l .debug_str 0000000000000000 .LASF59 +0000000000003db9 l .debug_str 0000000000000000 .LASF60 +0000000000003b34 l .debug_str 0000000000000000 .LASF61 +0000000000003b7e l .debug_str 0000000000000000 .LASF62 +0000000000003b73 l .debug_str 0000000000000000 .LASF63 +0000000000003d66 l .debug_str 0000000000000000 .LASF64 +0000000000003cb8 l .debug_str 0000000000000000 .LASF65 +0000000000003de9 l .debug_str 0000000000000000 .LASF66 +0000000000003dcf l .debug_str 0000000000000000 .LASF67 +0000000000003a03 l .debug_str 0000000000000000 .LASF68 +0000000000003a30 l .debug_str 0000000000000000 .LASF69 +0000000000003c42 l .debug_str 0000000000000000 .LASF70 +0000000000003a18 l .debug_str 0000000000000000 .LASF71 +00000000000039ec l .debug_str 0000000000000000 .LASF72 +0000000000003d70 l .debug_str 0000000000000000 .LASF73 +0000000000003ccd l .debug_str 0000000000000000 .LASF74 +0000000000003a7c l .debug_str 0000000000000000 .LASF75 +0000000000003cc2 l .debug_str 0000000000000000 .LASF76 +0000000000003cd9 l .debug_str 0000000000000000 .LASF77 +00000000000039f4 l .debug_str 0000000000000000 .LASF81 +00000000000012b4 l .text 0000000000000000 .LFB8 +00000000000012da l .text 0000000000000000 .LFE8 +00000000000034b6 l .debug_loc 0000000000000000 .LLST1 +00000000000012b4 l .text 0000000000000000 .LBB4 +00000000000012c4 l .text 0000000000000000 .LVL3 +0000000000003ce7 l .debug_str 0000000000000000 .LASF82 +0000000000003d8e l .debug_str 0000000000000000 .LASF83 +000000000000129e l .text 0000000000000000 .LFB7 +00000000000012b4 l .text 0000000000000000 .LFE7 +00000000000034ef l .debug_loc 0000000000000000 .LLST0 +00000000000012aa l .text 0000000000000000 .LVL0 +0000000000003c98 l .debug_str 0000000000000000 .LASF84 +00000000000012b4 l .text 0000000000000000 .LVL2 +00000000000012b0 l .text 0000000000000000 .LVL1 +0000000000004b9f l .debug_info 0000000000000000 .Ldebug_info0 +00000000000012b4 l .text 0000000000000000 .LBE4 +00000000000012bc l .text 0000000000000000 .LBB7 +00000000000012c4 l .text 0000000000000000 .LBE7 +000000000000129e l .text 0000000000000000 .L0 +00000000000012b4 l .text 0000000000000000 .L0 +000000000000129e l .text 0000000000000000 .L0 +000000000000129e l .text 0000000000000000 .L0 +000000000000129e l .text 0000000000000000 .L0 +00000000000012a2 l .text 0000000000000000 .L0 +00000000000012aa l .text 0000000000000000 .L0 +00000000000012aa l .text 0000000000000000 .L0 +00000000000012b4 l .text 0000000000000000 .L0 +00000000000012b4 l .text 0000000000000000 .L0 +00000000000012b4 l .text 0000000000000000 .L0 +00000000000012b4 l .text 0000000000000000 .L0 +00000000000012b4 l .text 0000000000000000 .L0 +00000000000012ba l .text 0000000000000000 .L0 +00000000000012bc l .text 0000000000000000 .L0 +00000000000012c4 l .text 0000000000000000 .L0 +00000000000012c4 l .text 0000000000000000 .L0 +00000000000012cc l .text 0000000000000000 .L0 +00000000000012ce l .text 0000000000000000 .L0 +00000000000012d0 l .text 0000000000000000 .L0 +00000000000012da l .text 0000000000000000 .L0 +00000000000006e0 l .debug_frame 0000000000000000 .L0 +000000000000129e l .text 0000000000000000 .L0 +00000000000012b4 l .text 0000000000000000 .L0 +00000000000012b4 l .text 0000000000000000 .L0 +00000000000012da l .text 0000000000000000 .L0 +00000000000012ac l .text 0000000000000000 .L0 +00000000000012a2 l .text 0000000000000000 .L0 +00000000000012ce l .text 0000000000000000 .L0 +00000000000012ba l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_abort.c +0000000000001d1e l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000003e67 l .debug_str 0000000000000000 .LASF10 +0000000000003f26 l .debug_str 0000000000000000 .LASF11 +0000000000003f68 l .debug_str 0000000000000000 .LASF12 +00000000000006a0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +00000000000044e2 l .debug_line 0000000000000000 .Ldebug_line0 +0000000000003f4c l .debug_str 0000000000000000 .LASF0 +0000000000003e54 l .debug_str 0000000000000000 .LASF1 +0000000000003f5e l .debug_str 0000000000000000 .LASF2 +0000000000003f39 l .debug_str 0000000000000000 .LASF3 +0000000000003e18 l .debug_str 0000000000000000 .LASF4 +0000000000003f17 l .debug_str 0000000000000000 .LASF5 +0000000000003e25 l .debug_str 0000000000000000 .LASF6 +0000000000003e37 l .debug_str 0000000000000000 .LASF7 +0000000000003e62 l .debug_str 0000000000000000 .LASF8 +0000000000003f20 l .debug_str 0000000000000000 .LASF9 +0000000000003f58 l .debug_str 0000000000000000 .LASF13 +00000000000012da l .text 0000000000000000 .LFB0 +00000000000012e8 l .text 0000000000000000 .LFE0 +00000000000012e8 l .text 0000000000000000 .LVL0 +0000000000003e4e l .debug_str 0000000000000000 .LASF14 +0000000000005152 l .debug_info 0000000000000000 .Ldebug_info0 +00000000000012da l .text 0000000000000000 .L0 +00000000000012da l .text 0000000000000000 .L0 +00000000000012da l .text 0000000000000000 .L0 +00000000000012dc l .text 0000000000000000 .L0 +00000000000012de l .text 0000000000000000 .L0 +00000000000012e0 l .text 0000000000000000 .L0 +00000000000012e8 l .text 0000000000000000 .L0 +0000000000000740 l .debug_frame 0000000000000000 .L0 +00000000000012da l .text 0000000000000000 .L0 +00000000000012e8 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 task_getinfo.c +0000000000001d91 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000004027 l .debug_str 0000000000000000 .LASF83 +000000000000412b l .debug_str 0000000000000000 .LASF84 +000000000000419a l .debug_str 0000000000000000 .LASF85 +00000000000006c0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000000458c l .debug_line 0000000000000000 .Ldebug_line0 +0000000000004226 l .debug_str 0000000000000000 .LASF0 +0000000000003faa l .debug_str 0000000000000000 .LASF2 +00000000000041f8 l .debug_str 0000000000000000 .LASF1 +0000000000004206 l .debug_str 0000000000000000 .LASF3 +0000000000003fba l .debug_str 0000000000000000 .LASF4 +000000000000437d l .debug_str 0000000000000000 .LASF5 +00000000000042ba l .debug_str 0000000000000000 .LASF6 +00000000000041e7 l .debug_str 0000000000000000 .LASF7 +0000000000004394 l .debug_str 0000000000000000 .LASF8 +00000000000042a9 l .debug_str 0000000000000000 .LASF9 +000000000000425a l .debug_str 0000000000000000 .LASF10 +00000000000043c7 l .debug_str 0000000000000000 .LASF11 +0000000000004351 l .debug_str 0000000000000000 .LASF12 +0000000000004151 l .debug_str 0000000000000000 .LASF13 +00000000000040e6 l .debug_str 0000000000000000 .LASF14 +00000000000042cd l .debug_str 0000000000000000 .LASF15 +00000000000042a0 l .debug_str 0000000000000000 .LASF16 +00000000000042b2 l .debug_str 0000000000000000 .LASF17 +0000000000004327 l .debug_str 0000000000000000 .LASF18 +0000000000003fc4 l .debug_str 0000000000000000 .LASF19 +0000000000004017 l .debug_str 0000000000000000 .LASF20 +0000000000004321 l .debug_str 0000000000000000 .LASF21 +00000000000041bc l .debug_str 0000000000000000 .LASF22 +000000000000429b l .debug_str 0000000000000000 .LASF23 +0000000000004143 l .debug_str 0000000000000000 .LASF24 +00000000000041db l .debug_str 0000000000000000 .LASF25 +00000000000041d0 l .debug_str 0000000000000000 .LASF29 +00000000000041c2 l .debug_str 0000000000000000 .LASF26 +0000000000004104 l .debug_str 0000000000000000 .LASF27 +00000000000042e3 l .debug_str 0000000000000000 .LASF28 +00000000000043aa l .debug_str 0000000000000000 .LASF30 +00000000000040e1 l .debug_str 0000000000000000 .LASF31 +000000000000420f l .debug_str 0000000000000000 .LASF32 +0000000000004366 l .debug_str 0000000000000000 .LASF33 +000000000000410a l .debug_str 0000000000000000 .LASF34 +0000000000004214 l .debug_str 0000000000000000 .LASF35 +0000000000004232 l .debug_str 0000000000000000 .LASF36 +0000000000003fee l .debug_str 0000000000000000 .LASF37 +0000000000004110 l .debug_str 0000000000000000 .LASF38 +00000000000042d5 l .debug_str 0000000000000000 .LASF39 +00000000000041c8 l .debug_str 0000000000000000 .LASF40 +0000000000004168 l .debug_str 0000000000000000 .LASF41 +0000000000004186 l .debug_str 0000000000000000 .LASF42 +00000000000043b5 l .debug_str 0000000000000000 .LASF43 +000000000000427b l .debug_str 0000000000000000 .LASF44 +000000000000433b l .debug_str 0000000000000000 .LASF45 +00000000000043be l .debug_str 0000000000000000 .LASF46 +000000000000416f l .debug_str 0000000000000000 .LASF47 +0000000000003fd6 l .debug_str 0000000000000000 .LASF48 +00000000000042f8 l .debug_str 0000000000000000 .LASF49 +0000000000003fff l .debug_str 0000000000000000 .LASF50 +00000000000040ee l .debug_str 0000000000000000 .LASF51 +000000000000413e l .debug_str 0000000000000000 .LASF52 +0000000000003f98 l .debug_str 0000000000000000 .LASF53 +0000000000004359 l .debug_str 0000000000000000 .LASF54 +0000000000003f8a l .debug_str 0000000000000000 .LASF55 +000000000000418e l .debug_str 0000000000000000 .LASF56 +00000000000042db l .debug_str 0000000000000000 .LASF57 +000000000000435e l .debug_str 0000000000000000 .LASF58 +00000000000042ee l .debug_str 0000000000000000 .LASF59 +0000000000004331 l .debug_str 0000000000000000 .LASF60 +0000000000004371 l .debug_str 0000000000000000 .LASF61 +00000000000040d7 l .debug_str 0000000000000000 .LASF62 +0000000000004121 l .debug_str 0000000000000000 .LASF63 +0000000000004116 l .debug_str 0000000000000000 .LASF64 +000000000000430f l .debug_str 0000000000000000 .LASF65 +000000000000426c l .debug_str 0000000000000000 .LASF66 +00000000000043a1 l .debug_str 0000000000000000 .LASF67 +0000000000004387 l .debug_str 0000000000000000 .LASF68 +0000000000003f9e l .debug_str 0000000000000000 .LASF69 +0000000000003fcb l .debug_str 0000000000000000 .LASF70 +00000000000041f0 l .debug_str 0000000000000000 .LASF71 +0000000000003fb3 l .debug_str 0000000000000000 .LASF72 +0000000000003f90 l .debug_str 0000000000000000 .LASF73 +0000000000004319 l .debug_str 0000000000000000 .LASF74 +0000000000004281 l .debug_str 0000000000000000 .LASF75 +000000000000401f l .debug_str 0000000000000000 .LASF76 +0000000000004276 l .debug_str 0000000000000000 .LASF77 +000000000000428d l .debug_str 0000000000000000 .LASF78 +0000000000004238 l .debug_str 0000000000000000 .LASF79 +0000000000003ff7 l .debug_str 0000000000000000 .LASF80 +0000000000004346 l .debug_str 0000000000000000 .LASF81 +0000000000004251 l .debug_str 0000000000000000 .LASF82 +0000000000004243 l .debug_str 0000000000000000 .LASF86 +00000000000012e8 l .text 0000000000000000 .LFB7 +00000000000012f2 l .text 0000000000000000 .LFE7 +0000000000004341 l .debug_str 0000000000000000 .LASF87 +0000000000003527 l .debug_loc 0000000000000000 .LLST0 +00000000000012e8 l .text 0000000000000000 .LBB4 +000000000000421d l .debug_str 0000000000000000 .LASF88 +00000000000012ec l .text 0000000000000000 .LVL0 +00000000000012ee l .text 0000000000000000 .LVL1 +0000000000005208 l .debug_info 0000000000000000 .Ldebug_info0 +00000000000012e8 l .text 0000000000000000 .LBE4 +00000000000012ea l .text 0000000000000000 .LBB7 +00000000000012ec l .text 0000000000000000 .LBE7 +00000000000012e8 l .text 0000000000000000 .L0 +00000000000012e8 l .text 0000000000000000 .L0 +00000000000012e8 l .text 0000000000000000 .L0 +00000000000012e8 l .text 0000000000000000 .L0 +00000000000012e8 l .text 0000000000000000 .L0 +00000000000012ea l .text 0000000000000000 .L0 +00000000000012ec l .text 0000000000000000 .L0 +00000000000012ec l .text 0000000000000000 .L0 +00000000000012ec l .text 0000000000000000 .L0 +00000000000012ee l .text 0000000000000000 .L0 +00000000000012f2 l .text 0000000000000000 .L0 +0000000000000770 l .debug_frame 0000000000000000 .L0 +00000000000012e8 l .text 0000000000000000 .L0 +00000000000012f2 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_mutex.c +000000000000131e l .text 0000000000000000 .L2 +0000000000001342 l .text 0000000000000000 .L5 +0000000000001388 l .text 0000000000000000 .L11 +0000000000001382 l .text 0000000000000000 .L10 +000000000000aab8 l .rodata 0000000000000000 .LC0 +00000000000013d4 l .text 0000000000000000 .L0 +000000000000aad0 l .rodata 0000000000000000 .LC1 +00000000000013e0 l .text 0000000000000000 .L0 +00000000000013d4 l .text 0000000000000000 .L20 +00000000000013f0 l .text 0000000000000000 .L15 +00000000000013aa l .text 0000000000000000 .L18 +00000000000013c4 l .text 0000000000000000 .L16 +000000000000140e l .text 0000000000000000 .L0 +000000000000141a l .text 0000000000000000 .L0 +000000000000142a l .text 0000000000000000 .L23 +0000000000001444 l .text 0000000000000000 .L24 +000000000000148c l .text 0000000000000000 .L29 +00000000000014b2 l .text 0000000000000000 .L28 +000000000000aae8 l .rodata 0000000000000000 .LC2 +00000000000014de l .text 0000000000000000 .L0 +00000000000014ea l .text 0000000000000000 .L0 +0000000000001524 l .text 0000000000000000 .L34 +00000000000014fa l .text 0000000000000000 .L33 +0000000000001518 l .text 0000000000000000 .L32 +0000000000001560 l .text 0000000000000000 .L38 +0000000000001556 l .text 0000000000000000 .L37 +000000000000156e l .text 0000000000000000 .L41 +0000000000001596 l .text 0000000000000000 .L44 +000000000000ab00 l .rodata 0000000000000000 .LC3 +00000000000015da l .text 0000000000000000 .L0 +00000000000015e6 l .text 0000000000000000 .L0 +00000000000015d2 l .text 0000000000000000 .L49 +00000000000015fa l .text 0000000000000000 .L50 +00000000000015f6 l .text 0000000000000000 .L51 +000000000000162e l .text 0000000000000000 .L0 +000000000000163a l .text 0000000000000000 .L0 +0000000000001626 l .text 0000000000000000 .L56 +000000000000164e l .text 0000000000000000 .L57 +000000000000164a l .text 0000000000000000 .L58 +0000000000001686 l .text 0000000000000000 .L0 +0000000000001692 l .text 0000000000000000 .L0 +000000000000167e l .text 0000000000000000 .L63 +00000000000016a6 l .text 0000000000000000 .L64 +00000000000016a2 l .text 0000000000000000 .L65 +000000000000ab20 l .rodata 0000000000000000 .LC4 +00000000000016b8 l .text 0000000000000000 .L0 +00000000000016c4 l .text 0000000000000000 .L0 +00000000000016d4 l .text 0000000000000000 .L70 +00000000000016f4 l .text 0000000000000000 .L71 +000000000000173c l .text 0000000000000000 .L76 +0000000000001732 l .text 0000000000000000 .L75 +0000000000001766 l .text 0000000000000000 .L80 +000000000000175c l .text 0000000000000000 .L79 +0000000000001f13 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000000445d l .debug_str 0000000000000000 .LASF82 +0000000000004804 l .debug_str 0000000000000000 .LASF83 +000000000000457a l .debug_str 0000000000000000 .LASF84 +0000000000000710 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000000473f l .debug_line 0000000000000000 .Ldebug_line0 +0000000000004651 l .debug_str 0000000000000000 .LASF0 +00000000000043de l .debug_str 0000000000000000 .LASF2 +0000000000004622 l .debug_str 0000000000000000 .LASF1 +0000000000004730 l .debug_str 0000000000000000 .LASF3 +0000000000004453 l .debug_str 0000000000000000 .LASF4 +00000000000046d1 l .debug_str 0000000000000000 .LASF5 +000000000000481e l .debug_str 0000000000000000 .LASF6 +000000000000483b l .debug_str 0000000000000000 .LASF7 +0000000000004703 l .debug_str 0000000000000000 .LASF8 +000000000000475b l .debug_str 0000000000000000 .LASF9 +0000000000004663 l .debug_str 0000000000000000 .LASF10 +0000000000004525 l .debug_str 0000000000000000 .LASF11 +000000000000470c l .debug_str 0000000000000000 .LASF12 +0000000000004683 l .debug_str 0000000000000000 .LASF13 +000000000000477b l .debug_str 0000000000000000 .LASF14 +0000000000004641 l .debug_str 0000000000000000 .LASF15 +00000000000046f7 l .debug_str 0000000000000000 .LASF16 +00000000000045d8 l .debug_str 0000000000000000 .LASF17 +000000000000456c l .debug_str 0000000000000000 .LASF18 +0000000000004430 l .debug_str 0000000000000000 .LASF19 +0000000000004815 l .debug_str 0000000000000000 .LASF22 +00000000000043ec l .debug_str 0000000000000000 .LASF20 +00000000000043d0 l .debug_str 0000000000000000 .LASF21 +000000000000471a l .debug_str 0000000000000000 .LASF23 +00000000000045de l .debug_str 0000000000000000 .LASF24 +00000000000043d8 l .debug_str 0000000000000000 .LASF25 +0000000000004725 l .debug_str 0000000000000000 .LASF26 +0000000000004860 l .debug_str 0000000000000000 .LASF27 +0000000000004520 l .debug_str 0000000000000000 .LASF28 +00000000000046c6 l .debug_str 0000000000000000 .LASF29 +00000000000047f9 l .debug_str 0000000000000000 .LASF30 +000000000000452d l .debug_str 0000000000000000 .LASF31 +0000000000004648 l .debug_str 0000000000000000 .LASF32 +000000000000465d l .debug_str 0000000000000000 .LASF33 +000000000000443c l .debug_str 0000000000000000 .LASF34 +0000000000004533 l .debug_str 0000000000000000 .LASF35 +0000000000004714 l .debug_str 0000000000000000 .LASF36 +0000000000004539 l .debug_str 0000000000000000 .LASF37 +00000000000045ad l .debug_str 0000000000000000 .LASF38 +00000000000045c9 l .debug_str 0000000000000000 .LASF39 +000000000000486b l .debug_str 0000000000000000 .LASF40 +00000000000046cb l .debug_str 0000000000000000 .LASF41 +00000000000047af l .debug_str 0000000000000000 .LASF42 +0000000000004874 l .debug_str 0000000000000000 .LASF43 +00000000000045b4 l .debug_str 0000000000000000 .LASF45 +0000000000001740 l .text 0000000000000000 .LFB24 +000000000000176a l .text 0000000000000000 .LFE24 +00000000000045d1 l .debug_str 0000000000000000 .LASF44 +0000000000003563 l .debug_loc 0000000000000000 .LLST43 +00000000000035d8 l .debug_loc 0000000000000000 .LLST44 +0000000000003624 l .debug_loc 0000000000000000 .LLST45 +0000000000001756 l .text 0000000000000000 .LVL108 +0000000000004828 l .debug_str 0000000000000000 .LASF46 +00000000000016fe l .text 0000000000000000 .LFB23 +0000000000001740 l .text 0000000000000000 .LFE23 +0000000000003682 l .debug_loc 0000000000000000 .LLST39 +00000000000036e1 l .debug_loc 0000000000000000 .LLST40 +0000000000003740 l .debug_loc 0000000000000000 .LLST41 +000000000000170c l .text 0000000000000000 .LBB38 +000000000000378b l .debug_loc 0000000000000000 .LLST42 +0000000000001716 l .text 0000000000000000 .LVL101 +000000000000172a l .text 0000000000000000 .LVL102 +0000000000004612 l .debug_str 0000000000000000 .LASF47 +00000000000016ae l .text 0000000000000000 .LFB22 +00000000000016fe l .text 0000000000000000 .LFE22 +00000000000037c1 l .debug_loc 0000000000000000 .LLST37 +0000000000003836 l .debug_loc 0000000000000000 .LLST38 +00000000000016d4 l .text 0000000000000000 .LVL93 +00000000000016e8 l .text 0000000000000000 .LVL95 +0000000000004559 l .debug_str 0000000000000000 .LASF48 +0000000000001656 l .text 0000000000000000 .LFB21 +00000000000016ae l .text 0000000000000000 .LFE21 +0000000000003880 l .debug_loc 0000000000000000 .LLST33 +0000000000004858 l .debug_str 0000000000000000 .LASF49 +00000000000038cc l .debug_loc 0000000000000000 .LLST34 +0000000000003905 l .debug_loc 0000000000000000 .LLST35 +0000000000001660 l .text 0000000000000000 .LBB36 +000000000000166a l .text 0000000000000000 .LBE36 +000000000000393c l .debug_loc 0000000000000000 .LLST36 +0000000000001668 l .text 0000000000000000 .LVL86 +000000000000167a l .text 0000000000000000 .LVL87 +00000000000016a2 l .text 0000000000000000 .LVL89 +0000000000004630 l .debug_str 0000000000000000 .LASF50 +0000000000001602 l .text 0000000000000000 .LFB20 +0000000000001656 l .text 0000000000000000 .LFE20 +0000000000003972 l .debug_loc 0000000000000000 .LLST30 +00000000000039be l .debug_loc 0000000000000000 .LLST31 +000000000000160a l .text 0000000000000000 .LBB34 +0000000000001616 l .text 0000000000000000 .LBE34 +00000000000039f5 l .debug_loc 0000000000000000 .LLST32 +0000000000001612 l .text 0000000000000000 .LVL79 +0000000000001622 l .text 0000000000000000 .LVL80 +000000000000164a l .text 0000000000000000 .LVL82 +000000000000476d l .debug_str 0000000000000000 .LASF51 +00000000000015ae l .text 0000000000000000 .LFB19 +0000000000001602 l .text 0000000000000000 .LFE19 +0000000000003a2b l .debug_loc 0000000000000000 .LLST27 +0000000000003a77 l .debug_loc 0000000000000000 .LLST28 +00000000000015b6 l .text 0000000000000000 .LBB32 +00000000000015c2 l .text 0000000000000000 .LBE32 +0000000000003aae l .debug_loc 0000000000000000 .LLST29 +00000000000015be l .text 0000000000000000 .LVL72 +00000000000015ce l .text 0000000000000000 .LVL73 +00000000000015f6 l .text 0000000000000000 .LVL75 +000000000000450d l .debug_str 0000000000000000 .LASF52 +00000000000015a6 l .text 0000000000000000 .LFB18 +00000000000015ae l .text 0000000000000000 .LFE18 +0000000000003ae4 l .debug_loc 0000000000000000 .LLST26 +00000000000015ae l .text 0000000000000000 .LVL69 +0000000000004739 l .debug_str 0000000000000000 .LASF58 +0000000000004781 l .debug_str 0000000000000000 .LASF53 +000000000000157e l .text 0000000000000000 .LFB16 +000000000000159e l .text 0000000000000000 .LFE16 +0000000000003b1d l .debug_loc 0000000000000000 .LLST24 +000000000000158e l .text 0000000000000000 .LVL64 +0000000000004445 l .debug_str 0000000000000000 .LASF54 +0000000000001572 l .text 0000000000000000 .LFB15 +000000000000157e l .text 0000000000000000 .LFE15 +0000000000003b69 l .debug_loc 0000000000000000 .LLST23 +000000000000157e l .text 0000000000000000 .LVL62 +00000000000047b5 l .debug_str 0000000000000000 .LASF55 +0000000000001564 l .text 0000000000000000 .LFB14 +0000000000001572 l .text 0000000000000000 .LFE14 +0000000000003ba2 l .debug_loc 0000000000000000 .LLST21 +00000000000046fc l .debug_str 0000000000000000 .LASF56 +0000000000003c04 l .debug_loc 0000000000000000 .LLST22 +000000000000156e l .text 0000000000000000 .LVL59 +00000000000047e7 l .debug_str 0000000000000000 .LASF57 +0000000000001528 l .text 0000000000000000 .LFB13 +0000000000001564 l .text 0000000000000000 .LFE13 +0000000000003c50 l .debug_loc 0000000000000000 .LLST18 +0000000000003caf l .debug_loc 0000000000000000 .LLST19 +0000000000003d0e l .debug_loc 0000000000000000 .LLST20 +0000000000001540 l .text 0000000000000000 .LVL52 +000000000000154c l .text 0000000000000000 .LVL53 +0000000000004792 l .debug_str 0000000000000000 .LASF59 +000000000000468c l .debug_str 0000000000000000 .LASF60 +0000000000001450 l .text 0000000000000000 .LFB11 +00000000000014c2 l .text 0000000000000000 .LFE11 +0000000000003d59 l .debug_loc 0000000000000000 .LLST12 +0000000000003da5 l .debug_loc 0000000000000000 .LLST13 +0000000000003dde l .debug_loc 0000000000000000 .LLST14 +0000000000004553 l .debug_str 0000000000000000 .LASF61 +00000000000043e7 l .debug_str 0000000000000000 .LASF62 +000000000000146c l .text 0000000000000000 .LVL35 +0000000000001478 l .text 0000000000000000 .LVL36 +0000000000001486 l .text 0000000000000000 .LVL37 +000000000000149a l .text 0000000000000000 .LVL38 +00000000000014b0 l .text 0000000000000000 .LVL40 +00000000000047c9 l .debug_str 0000000000000000 .LASF63 +00000000000046b9 l .debug_str 0000000000000000 .LASF64 +0000000000004541 l .debug_str 0000000000000000 .LASF65 +000000000000136a l .text 0000000000000000 .LFB8 +000000000000138c l .text 0000000000000000 .LFE8 +0000000000003e01 l .debug_loc 0000000000000000 .LLST4 +0000000000003e3a l .debug_loc 0000000000000000 .LLST5 +0000000000001378 l .text 0000000000000000 .LVL12 +00000000000043f3 l .debug_str 0000000000000000 .LASF66 +000000000000134a l .text 0000000000000000 .LFB7 +000000000000136a l .text 0000000000000000 .LFE7 +0000000000003e70 l .debug_loc 0000000000000000 .LLST3 +000000000000135a l .text 0000000000000000 .LVL10 +0000000000004415 l .debug_str 0000000000000000 .LASF67 +000000000000132a l .text 0000000000000000 .LFB6 +000000000000134a l .text 0000000000000000 .LFE6 +0000000000003ea9 l .debug_loc 0000000000000000 .LLST2 +000000000000133a l .text 0000000000000000 .LVL7 +00000000000046ac l .debug_str 0000000000000000 .LASF68 +00000000000012f2 l .text 0000000000000000 .LFB5 +000000000000132a l .text 0000000000000000 .LFE5 +0000000000003ef5 l .debug_loc 0000000000000000 .LLST0 +0000000000003f41 l .debug_loc 0000000000000000 .LLST1 +0000000000001308 l .text 0000000000000000 .LVL1 +000000000000131e l .text 0000000000000000 .LVL4 +000000000000459c l .debug_str 0000000000000000 .LASF85 +000000000000138c l .text 0000000000000000 .LFB9 +00000000000013fa l .text 0000000000000000 .LFE9 +0000000000003f64 l .debug_loc 0000000000000000 .LLST6 +0000000000003fc3 l .debug_loc 0000000000000000 .LLST7 +00000000000013d4 l .text 0000000000000000 .LBB16 +00000000000013f0 l .text 0000000000000000 .LBE16 +0000000000003ff9 l .debug_loc 0000000000000000 .LLST8 +00000000000013f0 l .text 0000000000000000 .LVL23 +00000000000013a2 l .text 0000000000000000 .LVL17 +00000000000013b4 l .text 0000000000000000 .LVL18 +00000000000013c2 l .text 0000000000000000 .LVL20 +00000000000013fa l .text 0000000000000000 .LFB10 +0000000000001450 l .text 0000000000000000 .LFE10 +000000000000401c l .debug_loc 0000000000000000 .LLST9 +0000000000004068 l .debug_loc 0000000000000000 .LLST10 +000000000000140e l .text 0000000000000000 .LBB20 +000000000000142a l .text 0000000000000000 .LBE20 +000000000000408b l .debug_loc 0000000000000000 .LLST11 +000000000000142a l .text 0000000000000000 .LVL27 +000000000000140c l .text 0000000000000000 .LVL25 +0000000000001434 l .text 0000000000000000 .LVL28 +0000000000001442 l .text 0000000000000000 .LVL30 +00000000000014c2 l .text 0000000000000000 .LFB12 +0000000000001528 l .text 0000000000000000 .LFE12 +00000000000040ae l .debug_loc 0000000000000000 .LLST15 +000000000000410d l .debug_loc 0000000000000000 .LLST16 +00000000000014c2 l .text 0000000000000000 .LBB28 +00000000000014c2 l .text 0000000000000000 .LBE28 +00000000000014de l .text 0000000000000000 .LBB30 +00000000000014fa l .text 0000000000000000 .LBE30 +0000000000004130 l .debug_loc 0000000000000000 .LLST17 +00000000000014fa l .text 0000000000000000 .LVL45 +00000000000014dc l .text 0000000000000000 .LVL43 +0000000000001508 l .text 0000000000000000 .LVL46 +0000000000001516 l .text 0000000000000000 .LVL48 +000000000000159e l .text 0000000000000000 .LFB17 +00000000000015a6 l .text 0000000000000000 .LFE17 +0000000000004153 l .debug_loc 0000000000000000 .LLST25 +00000000000015a6 l .text 0000000000000000 .LVL67 +000000000000467a l .debug_str 0000000000000000 .LASF69 +000000000000469e l .debug_str 0000000000000000 .LASF70 +000000000000474a l .debug_str 0000000000000000 .LASF71 +00000000000046e4 l .debug_str 0000000000000000 .LASF72 +0000000000004848 l .debug_str 0000000000000000 .LASF73 +000000000000440e l .debug_str 0000000000000000 .LASF74 +0000000000004602 l .debug_str 0000000000000000 .LASF75 +00000000000047d9 l .debug_str 0000000000000000 .LASF76 +0000000000004403 l .debug_str 0000000000000000 .LASF77 +00000000000045ef l .debug_str 0000000000000000 .LASF78 +0000000000004425 l .debug_str 0000000000000000 .LASF79 +00000000000047a1 l .debug_str 0000000000000000 .LASF80 +00000000000045e4 l .debug_str 0000000000000000 .LASF81 +0000000000001740 l .text 0000000000000000 .LVL107 +0000000000001762 l .text 0000000000000000 .LVL109 +0000000000001766 l .text 0000000000000000 .LVL110 +0000000000001768 l .text 0000000000000000 .LVL111 +00000000000016fe l .text 0000000000000000 .LVL99 +0000000000001736 l .text 0000000000000000 .LVL104 +000000000000173c l .text 0000000000000000 .LVL106 +0000000000001738 l .text 0000000000000000 .LVL105 +000000000000170c l .text 0000000000000000 .LVL100 +00000000000016ae l .text 0000000000000000 .LVL91 +00000000000016cc l .text 0000000000000000 .LVL92 +00000000000016e0 l .text 0000000000000000 .LVL94 +00000000000016f8 l .text 0000000000000000 .LVL98 +00000000000016ea l .text 0000000000000000 .LVL96 +00000000000016f4 l .text 0000000000000000 .LVL97 +0000000000001656 l .text 0000000000000000 .LVL84 +00000000000016aa l .text 0000000000000000 .LVL90 +000000000000167e l .text 0000000000000000 .LVL88 +0000000000001660 l .text 0000000000000000 .LVL85 +0000000000001602 l .text 0000000000000000 .LVL77 +0000000000001652 l .text 0000000000000000 .LVL83 +0000000000001626 l .text 0000000000000000 .LVL81 +000000000000160a l .text 0000000000000000 .LVL78 +00000000000015ae l .text 0000000000000000 .LVL70 +00000000000015fe l .text 0000000000000000 .LVL76 +00000000000015d2 l .text 0000000000000000 .LVL74 +00000000000015b6 l .text 0000000000000000 .LVL71 +00000000000015a6 l .text 0000000000000000 .LVL68 +000000000000157e l .text 0000000000000000 .LVL63 +000000000000159a l .text 0000000000000000 .LVL65 +0000000000001572 l .text 0000000000000000 .LVL61 +0000000000001564 l .text 0000000000000000 .LVL58 +0000000000001570 l .text 0000000000000000 .LVL60 +0000000000001528 l .text 0000000000000000 .LVL51 +000000000000155c l .text 0000000000000000 .LVL56 +0000000000001560 l .text 0000000000000000 .LVL57 +000000000000155a l .text 0000000000000000 .LVL55 +0000000000001450 l .text 0000000000000000 .LVL32 +000000000000145e l .text 0000000000000000 .LVL34 +00000000000014ba l .text 0000000000000000 .LVL41 +000000000000145c l .text 0000000000000000 .LVL33 +000000000000149c l .text 0000000000000000 .LVL39 +000000000000136a l .text 0000000000000000 .LVL11 +000000000000137e l .text 0000000000000000 .LVL13 +0000000000001388 l .text 0000000000000000 .LVL14 +000000000000138a l .text 0000000000000000 .LVL15 +000000000000134a l .text 0000000000000000 .LVL9 +000000000000132a l .text 0000000000000000 .LVL6 +0000000000001346 l .text 0000000000000000 .LVL8 +00000000000012f2 l .text 0000000000000000 .LVL0 +0000000000001326 l .text 0000000000000000 .LVL5 +000000000000130a l .text 0000000000000000 .LVL2 +0000000000001316 l .text 0000000000000000 .LVL3 +000000000000138c l .text 0000000000000000 .LVL16 +00000000000013cc l .text 0000000000000000 .LVL21 +00000000000013d4 l .text 0000000000000000 .LVL22 +00000000000013b6 l .text 0000000000000000 .LVL19 +00000000000013fa l .text 0000000000000000 .LVL24 +000000000000144c l .text 0000000000000000 .LVL31 +0000000000001436 l .text 0000000000000000 .LVL29 +000000000000140e l .text 0000000000000000 .LVL26 +00000000000014c2 l .text 0000000000000000 .LVL42 +0000000000001518 l .text 0000000000000000 .LVL49 +0000000000001524 l .text 0000000000000000 .LVL50 +000000000000150a l .text 0000000000000000 .LVL47 +00000000000014de l .text 0000000000000000 .LVL44 +000000000000159e l .text 0000000000000000 .LVL66 +00000000000057af l .debug_info 0000000000000000 .Ldebug_info0 +000000000000170c l .text 0000000000000000 .LBE38 +000000000000170e l .text 0000000000000000 .LBB41 +0000000000001716 l .text 0000000000000000 .LBE41 +00000000000012f2 l .text 0000000000000000 .L0 +000000000000132a l .text 0000000000000000 .L0 +000000000000134a l .text 0000000000000000 .L0 +000000000000136a l .text 0000000000000000 .L0 +000000000000138c l .text 0000000000000000 .L0 +00000000000013fa l .text 0000000000000000 .L0 +0000000000001450 l .text 0000000000000000 .L0 +00000000000014c2 l .text 0000000000000000 .L0 +0000000000001528 l .text 0000000000000000 .L0 +0000000000001564 l .text 0000000000000000 .L0 +0000000000001572 l .text 0000000000000000 .L0 +000000000000157e l .text 0000000000000000 .L0 +000000000000159e l .text 0000000000000000 .L0 +00000000000015a6 l .text 0000000000000000 .L0 +00000000000015ae l .text 0000000000000000 .L0 +0000000000001602 l .text 0000000000000000 .L0 +0000000000001656 l .text 0000000000000000 .L0 +00000000000016ae l .text 0000000000000000 .L0 +00000000000016fe l .text 0000000000000000 .L0 +0000000000001740 l .text 0000000000000000 .L0 +00000000000012f2 l .text 0000000000000000 .L0 +00000000000012f2 l .text 0000000000000000 .L0 +00000000000012f4 l .text 0000000000000000 .L0 +00000000000012f8 l .text 0000000000000000 .L0 +00000000000012fe l .text 0000000000000000 .L0 +0000000000001300 l .text 0000000000000000 .L0 +000000000000130a l .text 0000000000000000 .L0 +000000000000130a l .text 0000000000000000 .L0 +000000000000130e l .text 0000000000000000 .L0 +000000000000130e l .text 0000000000000000 .L0 +0000000000001312 l .text 0000000000000000 .L0 +000000000000131e l .text 0000000000000000 .L0 +000000000000131e l .text 0000000000000000 .L0 +000000000000132a l .text 0000000000000000 .L0 +000000000000132a l .text 0000000000000000 .L0 +000000000000132a l .text 0000000000000000 .L0 +0000000000001330 l .text 0000000000000000 .L0 +0000000000001332 l .text 0000000000000000 .L0 +000000000000133a l .text 0000000000000000 .L0 +000000000000133a l .text 0000000000000000 .L0 +000000000000133e l .text 0000000000000000 .L0 +000000000000133e l .text 0000000000000000 .L0 +0000000000001342 l .text 0000000000000000 .L0 +0000000000001342 l .text 0000000000000000 .L0 +000000000000134a l .text 0000000000000000 .L0 +000000000000134a l .text 0000000000000000 .L0 +000000000000134a l .text 0000000000000000 .L0 +0000000000001350 l .text 0000000000000000 .L0 +0000000000001352 l .text 0000000000000000 .L0 +000000000000135a l .text 0000000000000000 .L0 +000000000000135c l .text 0000000000000000 .L0 +0000000000001360 l .text 0000000000000000 .L0 +000000000000136a l .text 0000000000000000 .L0 +000000000000136a l .text 0000000000000000 .L0 +000000000000136a l .text 0000000000000000 .L0 +000000000000136a l .text 0000000000000000 .L0 +000000000000136a l .text 0000000000000000 .L0 +000000000000136c l .text 0000000000000000 .L0 +000000000000136e l .text 0000000000000000 .L0 +0000000000001370 l .text 0000000000000000 .L0 +0000000000001378 l .text 0000000000000000 .L0 +0000000000001378 l .text 0000000000000000 .L0 +000000000000137c l .text 0000000000000000 .L0 +0000000000001382 l .text 0000000000000000 .L0 +0000000000001388 l .text 0000000000000000 .L0 +000000000000138c l .text 0000000000000000 .L0 +000000000000138c l .text 0000000000000000 .L0 +000000000000138c l .text 0000000000000000 .L0 +000000000000138c l .text 0000000000000000 .L0 +000000000000138c l .text 0000000000000000 .L0 +0000000000001398 l .text 0000000000000000 .L0 +000000000000139a l .text 0000000000000000 .L0 +00000000000013a4 l .text 0000000000000000 .L0 +00000000000013a6 l .text 0000000000000000 .L0 +00000000000013aa l .text 0000000000000000 .L0 +00000000000013aa l .text 0000000000000000 .L0 +00000000000013aa l .text 0000000000000000 .L0 +00000000000013aa l .text 0000000000000000 .L0 +00000000000013b6 l .text 0000000000000000 .L0 +00000000000013b6 l .text 0000000000000000 .L0 +00000000000013ba l .text 0000000000000000 .L0 +00000000000013ba l .text 0000000000000000 .L0 +00000000000013c2 l .text 0000000000000000 .L0 +00000000000013c4 l .text 0000000000000000 .L0 +00000000000013c4 l .text 0000000000000000 .L0 +00000000000013c4 l .text 0000000000000000 .L0 +00000000000013d4 l .text 0000000000000000 .L0 +00000000000013f0 l .text 0000000000000000 .L0 +00000000000013f0 l .text 0000000000000000 .L0 +00000000000013f4 l .text 0000000000000000 .L0 +00000000000013fa l .text 0000000000000000 .L0 +00000000000013fa l .text 0000000000000000 .L0 +00000000000013fa l .text 0000000000000000 .L0 +00000000000013fa l .text 0000000000000000 .L0 +00000000000013fa l .text 0000000000000000 .L0 +0000000000001402 l .text 0000000000000000 .L0 +0000000000001404 l .text 0000000000000000 .L0 +000000000000140e l .text 0000000000000000 .L0 +000000000000142a l .text 0000000000000000 .L0 +000000000000142a l .text 0000000000000000 .L0 +000000000000142a l .text 0000000000000000 .L0 +0000000000001436 l .text 0000000000000000 .L0 +0000000000001436 l .text 0000000000000000 .L0 +000000000000143a l .text 0000000000000000 .L0 +000000000000143a l .text 0000000000000000 .L0 +0000000000001442 l .text 0000000000000000 .L0 +0000000000001444 l .text 0000000000000000 .L0 +0000000000001444 l .text 0000000000000000 .L0 +0000000000001450 l .text 0000000000000000 .L0 +0000000000001450 l .text 0000000000000000 .L0 +0000000000001450 l .text 0000000000000000 .L0 +0000000000001450 l .text 0000000000000000 .L0 +0000000000001450 l .text 0000000000000000 .L0 +0000000000001450 l .text 0000000000000000 .L0 +0000000000001450 l .text 0000000000000000 .L0 +000000000000145a l .text 0000000000000000 .L0 +000000000000145e l .text 0000000000000000 .L0 +0000000000001464 l .text 0000000000000000 .L0 +000000000000146c l .text 0000000000000000 .L0 +0000000000001478 l .text 0000000000000000 .L0 +0000000000001486 l .text 0000000000000000 .L0 +0000000000001488 l .text 0000000000000000 .L0 +000000000000148c l .text 0000000000000000 .L0 +000000000000148c l .text 0000000000000000 .L0 +000000000000148c l .text 0000000000000000 .L0 +000000000000149c l .text 0000000000000000 .L0 +000000000000149c l .text 0000000000000000 .L0 +00000000000014a0 l .text 0000000000000000 .L0 +00000000000014a4 l .text 0000000000000000 .L0 +00000000000014a4 l .text 0000000000000000 .L0 +00000000000014a8 l .text 0000000000000000 .L0 +00000000000014a8 l .text 0000000000000000 .L0 +00000000000014b0 l .text 0000000000000000 .L0 +00000000000014b2 l .text 0000000000000000 .L0 +00000000000014b2 l .text 0000000000000000 .L0 +00000000000014c2 l .text 0000000000000000 .L0 +00000000000014c2 l .text 0000000000000000 .L0 +00000000000014c2 l .text 0000000000000000 .L0 +00000000000014c2 l .text 0000000000000000 .L0 +00000000000014c2 l .text 0000000000000000 .L0 +00000000000014ca l .text 0000000000000000 .L0 +00000000000014d4 l .text 0000000000000000 .L0 +00000000000014d4 l .text 0000000000000000 .L0 +00000000000014de l .text 0000000000000000 .L0 +00000000000014fa l .text 0000000000000000 .L0 +00000000000014fa l .text 0000000000000000 .L0 +00000000000014fa l .text 0000000000000000 .L0 +00000000000014fe l .text 0000000000000000 .L0 +00000000000014fe l .text 0000000000000000 .L0 +000000000000150a l .text 0000000000000000 .L0 +000000000000150a l .text 0000000000000000 .L0 +000000000000150e l .text 0000000000000000 .L0 +000000000000150e l .text 0000000000000000 .L0 +0000000000001516 l .text 0000000000000000 .L0 +0000000000001518 l .text 0000000000000000 .L0 +0000000000001524 l .text 0000000000000000 .L0 +0000000000001528 l .text 0000000000000000 .L0 +0000000000001528 l .text 0000000000000000 .L0 +0000000000001528 l .text 0000000000000000 .L0 +0000000000001528 l .text 0000000000000000 .L0 +000000000000152a l .text 0000000000000000 .L0 +000000000000152e l .text 0000000000000000 .L0 +000000000000152e l .text 0000000000000000 .L0 +0000000000001534 l .text 0000000000000000 .L0 +0000000000001538 l .text 0000000000000000 .L0 +0000000000001540 l .text 0000000000000000 .L0 +0000000000001542 l .text 0000000000000000 .L0 +0000000000001542 l .text 0000000000000000 .L0 +000000000000154c l .text 0000000000000000 .L0 +000000000000154c l .text 0000000000000000 .L0 +0000000000001550 l .text 0000000000000000 .L0 +0000000000001550 l .text 0000000000000000 .L0 +0000000000001556 l .text 0000000000000000 .L0 +0000000000001556 l .text 0000000000000000 .L0 +0000000000001560 l .text 0000000000000000 .L0 +0000000000001564 l .text 0000000000000000 .L0 +0000000000001564 l .text 0000000000000000 .L0 +0000000000001564 l .text 0000000000000000 .L0 +0000000000001566 l .text 0000000000000000 .L0 +000000000000156e l .text 0000000000000000 .L0 +0000000000001572 l .text 0000000000000000 .L0 +0000000000001572 l .text 0000000000000000 .L0 +0000000000001572 l .text 0000000000000000 .L0 +0000000000001576 l .text 0000000000000000 .L0 +0000000000001576 l .text 0000000000000000 .L0 +000000000000157e l .text 0000000000000000 .L0 +000000000000157e l .text 0000000000000000 .L0 +000000000000157e l .text 0000000000000000 .L0 +0000000000001584 l .text 0000000000000000 .L0 +0000000000001586 l .text 0000000000000000 .L0 +000000000000158e l .text 0000000000000000 .L0 +000000000000158e l .text 0000000000000000 .L0 +0000000000001592 l .text 0000000000000000 .L0 +0000000000001592 l .text 0000000000000000 .L0 +0000000000001596 l .text 0000000000000000 .L0 +0000000000001596 l .text 0000000000000000 .L0 +000000000000159e l .text 0000000000000000 .L0 +000000000000159e l .text 0000000000000000 .L0 +000000000000159e l .text 0000000000000000 .L0 +00000000000015a6 l .text 0000000000000000 .L0 +00000000000015a6 l .text 0000000000000000 .L0 +00000000000015a6 l .text 0000000000000000 .L0 +00000000000015ae l .text 0000000000000000 .L0 +00000000000015ae l .text 0000000000000000 .L0 +00000000000015ae l .text 0000000000000000 .L0 +00000000000015ae l .text 0000000000000000 .L0 +00000000000015b4 l .text 0000000000000000 .L0 +00000000000015b6 l .text 0000000000000000 .L0 +00000000000015b6 l .text 0000000000000000 .L0 +00000000000015c2 l .text 0000000000000000 .L0 +00000000000015c4 l .text 0000000000000000 .L0 +00000000000015c4 l .text 0000000000000000 .L0 +00000000000015ce l .text 0000000000000000 .L0 +00000000000015ce l .text 0000000000000000 .L0 +00000000000015d2 l .text 0000000000000000 .L0 +00000000000015d2 l .text 0000000000000000 .L0 +00000000000015da l .text 0000000000000000 .L0 +00000000000015f6 l .text 0000000000000000 .L0 +00000000000015f6 l .text 0000000000000000 .L0 +00000000000015fa l .text 0000000000000000 .L0 +00000000000015fa l .text 0000000000000000 .L0 +0000000000001602 l .text 0000000000000000 .L0 +0000000000001602 l .text 0000000000000000 .L0 +0000000000001602 l .text 0000000000000000 .L0 +0000000000001602 l .text 0000000000000000 .L0 +0000000000001608 l .text 0000000000000000 .L0 +000000000000160a l .text 0000000000000000 .L0 +000000000000160a l .text 0000000000000000 .L0 +0000000000001616 l .text 0000000000000000 .L0 +0000000000001618 l .text 0000000000000000 .L0 +0000000000001618 l .text 0000000000000000 .L0 +0000000000001622 l .text 0000000000000000 .L0 +0000000000001622 l .text 0000000000000000 .L0 +0000000000001626 l .text 0000000000000000 .L0 +0000000000001626 l .text 0000000000000000 .L0 +000000000000162e l .text 0000000000000000 .L0 +000000000000164a l .text 0000000000000000 .L0 +000000000000164a l .text 0000000000000000 .L0 +000000000000164e l .text 0000000000000000 .L0 +000000000000164e l .text 0000000000000000 .L0 +0000000000001656 l .text 0000000000000000 .L0 +0000000000001656 l .text 0000000000000000 .L0 +0000000000001656 l .text 0000000000000000 .L0 +0000000000001656 l .text 0000000000000000 .L0 +000000000000165e l .text 0000000000000000 .L0 +0000000000001660 l .text 0000000000000000 .L0 +0000000000001660 l .text 0000000000000000 .L0 +000000000000166a l .text 0000000000000000 .L0 +0000000000001670 l .text 0000000000000000 .L0 +0000000000001670 l .text 0000000000000000 .L0 +000000000000167a l .text 0000000000000000 .L0 +000000000000167a l .text 0000000000000000 .L0 +000000000000167e l .text 0000000000000000 .L0 +000000000000167e l .text 0000000000000000 .L0 +0000000000001686 l .text 0000000000000000 .L0 +00000000000016a2 l .text 0000000000000000 .L0 +00000000000016a2 l .text 0000000000000000 .L0 +00000000000016a6 l .text 0000000000000000 .L0 +00000000000016a6 l .text 0000000000000000 .L0 +00000000000016ae l .text 0000000000000000 .L0 +00000000000016ae l .text 0000000000000000 .L0 +00000000000016ae l .text 0000000000000000 .L0 +00000000000016ae l .text 0000000000000000 .L0 +00000000000016ae l .text 0000000000000000 .L0 +00000000000016b4 l .text 0000000000000000 .L0 +00000000000016b8 l .text 0000000000000000 .L0 +00000000000016d4 l .text 0000000000000000 .L0 +00000000000016d8 l .text 0000000000000000 .L0 +00000000000016dc l .text 0000000000000000 .L0 +00000000000016dc l .text 0000000000000000 .L0 +00000000000016dc l .text 0000000000000000 .L0 +00000000000016de l .text 0000000000000000 .L0 +00000000000016e0 l .text 0000000000000000 .L0 +00000000000016e0 l .text 0000000000000000 .L0 +00000000000016ea l .text 0000000000000000 .L0 +00000000000016ea l .text 0000000000000000 .L0 +00000000000016ee l .text 0000000000000000 .L0 +00000000000016f4 l .text 0000000000000000 .L0 +00000000000016f4 l .text 0000000000000000 .L0 +00000000000016fe l .text 0000000000000000 .L0 +00000000000016fe l .text 0000000000000000 .L0 +00000000000016fe l .text 0000000000000000 .L0 +00000000000016fe l .text 0000000000000000 .L0 +0000000000001700 l .text 0000000000000000 .L0 +0000000000001704 l .text 0000000000000000 .L0 +0000000000001704 l .text 0000000000000000 .L0 +000000000000170a l .text 0000000000000000 .L0 +000000000000170c l .text 0000000000000000 .L0 +000000000000170c l .text 0000000000000000 .L0 +000000000000170e l .text 0000000000000000 .L0 +0000000000001716 l .text 0000000000000000 .L0 +0000000000001718 l .text 0000000000000000 .L0 +0000000000001718 l .text 0000000000000000 .L0 +000000000000171a l .text 0000000000000000 .L0 +000000000000171c l .text 0000000000000000 .L0 +000000000000171e l .text 0000000000000000 .L0 +000000000000171e l .text 0000000000000000 .L0 +0000000000001722 l .text 0000000000000000 .L0 +0000000000001722 l .text 0000000000000000 .L0 +000000000000172a l .text 0000000000000000 .L0 +000000000000172a l .text 0000000000000000 .L0 +000000000000172e l .text 0000000000000000 .L0 +000000000000172e l .text 0000000000000000 .L0 +0000000000001730 l .text 0000000000000000 .L0 +0000000000001732 l .text 0000000000000000 .L0 +0000000000001732 l .text 0000000000000000 .L0 +000000000000173c l .text 0000000000000000 .L0 +0000000000001740 l .text 0000000000000000 .L0 +0000000000001740 l .text 0000000000000000 .L0 +0000000000001740 l .text 0000000000000000 .L0 +0000000000001740 l .text 0000000000000000 .L0 +0000000000001742 l .text 0000000000000000 .L0 +000000000000174e l .text 0000000000000000 .L0 +000000000000174e l .text 0000000000000000 .L0 +0000000000001756 l .text 0000000000000000 .L0 +0000000000001756 l .text 0000000000000000 .L0 +000000000000175a l .text 0000000000000000 .L0 +000000000000175a l .text 0000000000000000 .L0 +000000000000175c l .text 0000000000000000 .L0 +000000000000175c l .text 0000000000000000 .L0 +0000000000001766 l .text 0000000000000000 .L0 +0000000000001768 l .text 0000000000000000 .L0 +0000000000001768 l .text 0000000000000000 .L0 +000000000000176a l .text 0000000000000000 .L0 +0000000000000798 l .debug_frame 0000000000000000 .L0 +00000000000012f2 l .text 0000000000000000 .L0 +000000000000132a l .text 0000000000000000 .L0 +000000000000132a l .text 0000000000000000 .L0 +000000000000134a l .text 0000000000000000 .L0 +000000000000134a l .text 0000000000000000 .L0 +000000000000136a l .text 0000000000000000 .L0 +000000000000136a l .text 0000000000000000 .L0 +000000000000138c l .text 0000000000000000 .L0 +000000000000138c l .text 0000000000000000 .L0 +00000000000013fa l .text 0000000000000000 .L0 +00000000000013fa l .text 0000000000000000 .L0 +0000000000001450 l .text 0000000000000000 .L0 +0000000000001450 l .text 0000000000000000 .L0 +00000000000014c2 l .text 0000000000000000 .L0 +00000000000014c2 l .text 0000000000000000 .L0 +0000000000001528 l .text 0000000000000000 .L0 +0000000000001528 l .text 0000000000000000 .L0 +0000000000001564 l .text 0000000000000000 .L0 +0000000000001564 l .text 0000000000000000 .L0 +0000000000001572 l .text 0000000000000000 .L0 +0000000000001572 l .text 0000000000000000 .L0 +000000000000157e l .text 0000000000000000 .L0 +000000000000157e l .text 0000000000000000 .L0 +000000000000159e l .text 0000000000000000 .L0 +000000000000159e l .text 0000000000000000 .L0 +00000000000015a6 l .text 0000000000000000 .L0 +00000000000015a6 l .text 0000000000000000 .L0 +00000000000015ae l .text 0000000000000000 .L0 +00000000000015ae l .text 0000000000000000 .L0 +0000000000001602 l .text 0000000000000000 .L0 +0000000000001602 l .text 0000000000000000 .L0 +0000000000001656 l .text 0000000000000000 .L0 +0000000000001656 l .text 0000000000000000 .L0 +00000000000016ae l .text 0000000000000000 .L0 +00000000000016ae l .text 0000000000000000 .L0 +00000000000016fe l .text 0000000000000000 .L0 +00000000000016fe l .text 0000000000000000 .L0 +0000000000001740 l .text 0000000000000000 .L0 +0000000000001740 l .text 0000000000000000 .L0 +000000000000176a l .text 0000000000000000 .L0 +0000000000001320 l .text 0000000000000000 .L0 +00000000000012fe l .text 0000000000000000 .L0 +0000000000001344 l .text 0000000000000000 .L0 +0000000000001330 l .text 0000000000000000 .L0 +000000000000135c l .text 0000000000000000 .L0 +0000000000001350 l .text 0000000000000000 .L0 +0000000000001384 l .text 0000000000000000 .L0 +0000000000001370 l .text 0000000000000000 .L0 +00000000000013c6 l .text 0000000000000000 .L0 +0000000000001398 l .text 0000000000000000 .L0 +0000000000001446 l .text 0000000000000000 .L0 +0000000000001402 l .text 0000000000000000 .L0 +00000000000014b4 l .text 0000000000000000 .L0 +0000000000001464 l .text 0000000000000000 .L0 +000000000000151a l .text 0000000000000000 .L0 +00000000000014ca l .text 0000000000000000 .L0 +0000000000001558 l .text 0000000000000000 .L0 +0000000000001534 l .text 0000000000000000 .L0 +0000000000001598 l .text 0000000000000000 .L0 +0000000000001584 l .text 0000000000000000 .L0 +00000000000015fc l .text 0000000000000000 .L0 +00000000000015b4 l .text 0000000000000000 .L0 +0000000000001650 l .text 0000000000000000 .L0 +0000000000001608 l .text 0000000000000000 .L0 +00000000000016a8 l .text 0000000000000000 .L0 +000000000000165e l .text 0000000000000000 .L0 +00000000000016f6 l .text 0000000000000000 .L0 +00000000000016b4 l .text 0000000000000000 .L0 +0000000000001734 l .text 0000000000000000 .L0 +000000000000170a l .text 0000000000000000 .L0 +0000000000001744 l .text 0000000000000000 .L0 +000000000000175e l .text 0000000000000000 .L0 +000000000000174a l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 pthread_exit.c +00000000000021e5 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000000498d l .debug_str 0000000000000000 .LASF14 +000000000000494a l .debug_str 0000000000000000 .LASF15 +000000000000496b l .debug_str 0000000000000000 .LASF16 +0000000000000890 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000005410 l .debug_line 0000000000000000 .Ldebug_line0 +0000000000004932 l .debug_str 0000000000000000 .LASF0 +00000000000048ef l .debug_str 0000000000000000 .LASF1 +0000000000004961 l .debug_str 0000000000000000 .LASF2 +000000000000491f l .debug_str 0000000000000000 .LASF3 +0000000000004888 l .debug_str 0000000000000000 .LASF4 +0000000000004902 l .debug_str 0000000000000000 .LASF5 +00000000000048a5 l .debug_str 0000000000000000 .LASF6 +00000000000048cb l .debug_str 0000000000000000 .LASF7 +00000000000048fd l .debug_str 0000000000000000 .LASF8 +0000000000004911 l .debug_str 0000000000000000 .LASF9 +000000000000493e l .debug_str 0000000000000000 .LASF10 +000000000000490b l .debug_str 0000000000000000 .LASF11 +00000000000048e2 l .debug_str 0000000000000000 .LASF17 +000000000000176a l .text 0000000000000000 .LFB7 +0000000000001788 l .text 0000000000000000 .LFE7 +000000000000487d l .debug_str 0000000000000000 .LASF18 +000000000000418c l .debug_loc 0000000000000000 .LLST0 +000000000000177e l .text 0000000000000000 .LVL2 +0000000000001788 l .text 0000000000000000 .LVL3 +00000000000048b7 l .debug_str 0000000000000000 .LASF12 +0000000000004895 l .debug_str 0000000000000000 .LASF13 +000000000000176a l .text 0000000000000000 .LVL0 +0000000000001774 l .text 0000000000000000 .LVL1 +0000000000006692 l .debug_info 0000000000000000 .Ldebug_info0 +000000000000176a l .text 0000000000000000 .L0 +000000000000176a l .text 0000000000000000 .L0 +000000000000176a l .text 0000000000000000 .L0 +000000000000176e l .text 0000000000000000 .L0 +0000000000001770 l .text 0000000000000000 .L0 +0000000000001772 l .text 0000000000000000 .L0 +0000000000001774 l .text 0000000000000000 .L0 +0000000000001776 l .text 0000000000000000 .L0 +000000000000177e l .text 0000000000000000 .L0 +0000000000001788 l .text 0000000000000000 .L0 +0000000000000ad8 l .debug_frame 0000000000000000 .L0 +000000000000176a l .text 0000000000000000 .L0 +0000000000001788 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 clock_ticks2time.c +000000000000227d l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000004b6e l .debug_str 0000000000000000 .LASF20 +0000000000004add l .debug_str 0000000000000000 .LASF21 +0000000000004b47 l .debug_str 0000000000000000 .LASF22 +00000000000008b0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000005508 l .debug_line 0000000000000000 .Ldebug_line0 +0000000000004b10 l .debug_str 0000000000000000 .LASF0 +0000000000004a9e l .debug_str 0000000000000000 .LASF1 +0000000000004b35 l .debug_str 0000000000000000 .LASF2 +0000000000004afd l .debug_str 0000000000000000 .LASF3 +0000000000004a6c l .debug_str 0000000000000000 .LASF4 +0000000000004a3d l .debug_str 0000000000000000 .LASF5 +0000000000004a47 l .debug_str 0000000000000000 .LASF6 +0000000000004abc l .debug_str 0000000000000000 .LASF7 +0000000000004acb l .debug_str 0000000000000000 .LASF8 +0000000000004a7f l .debug_str 0000000000000000 .LASF9 +0000000000004b3f l .debug_str 0000000000000000 .LASF10 +0000000000004ab3 l .debug_str 0000000000000000 .LASF11 +0000000000004aac l .debug_str 0000000000000000 .LASF12 +0000000000004b69 l .debug_str 0000000000000000 .LASF13 +0000000000004a66 l .debug_str 0000000000000000 .LASF14 +0000000000004a5d l .debug_str 0000000000000000 .LASF23 +0000000000004af6 l .debug_str 0000000000000000 .LASF15 +0000000000004b2d l .debug_str 0000000000000000 .LASF16 +0000000000004a54 l .debug_str 0000000000000000 .LASF17 +0000000000004b1c l .debug_str 0000000000000000 .LASF24 +0000000000001788 l .text 0000000000000000 .LFB0 +00000000000017ae l .text 0000000000000000 .LFE0 +0000000000004ac5 l .debug_str 0000000000000000 .LASF18 +00000000000041c2 l .debug_loc 0000000000000000 .LLST0 +0000000000004a96 l .debug_str 0000000000000000 .LASF19 +0000000000004a75 l .debug_str 0000000000000000 .LASF25 +00000000000041fb l .debug_loc 0000000000000000 .LLST1 +0000000000001788 l .text 0000000000000000 .LVL0 +000000000000179c l .text 0000000000000000 .LVL2 +000000000000179a l .text 0000000000000000 .LVL1 +00000000000017a8 l .text 0000000000000000 .LVL3 +0000000000006791 l .debug_info 0000000000000000 .Ldebug_info0 +0000000000001788 l .text 0000000000000000 .L0 +0000000000001788 l .text 0000000000000000 .L0 +0000000000001788 l .text 0000000000000000 .L0 +0000000000001788 l .text 0000000000000000 .L0 +0000000000001790 l .text 0000000000000000 .L0 +0000000000001798 l .text 0000000000000000 .L0 +000000000000179a l .text 0000000000000000 .L0 +000000000000179a l .text 0000000000000000 .L0 +000000000000179a l .text 0000000000000000 .L0 +000000000000179c l .text 0000000000000000 .L0 +00000000000017aa l .text 0000000000000000 .L0 +00000000000017aa l .text 0000000000000000 .L0 +00000000000017ae l .text 0000000000000000 .L0 +0000000000000b10 l .debug_frame 0000000000000000 .L0 +0000000000001788 l .text 0000000000000000 .L0 +00000000000017ae l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 clock_timespec_add.c +00000000000017d4 l .text 0000000000000000 .L2 +0000000000002366 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000004d20 l .debug_str 0000000000000000 .LASF15 +0000000000004c35 l .debug_str 0000000000000000 .LASF16 +0000000000004c87 l .debug_str 0000000000000000 .LASF17 +00000000000008d0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000005676 l .debug_line 0000000000000000 .Ldebug_line0 +0000000000004cfd l .debug_str 0000000000000000 .LASF0 +0000000000004ca9 l .debug_str 0000000000000000 .LASF1 +0000000000004d11 l .debug_str 0000000000000000 .LASF2 +0000000000004cea l .debug_str 0000000000000000 .LASF3 +0000000000004c1e l .debug_str 0000000000000000 .LASF8 +0000000000004c28 l .debug_str 0000000000000000 .LASF4 +0000000000004cc7 l .debug_str 0000000000000000 .LASF5 +0000000000004c5e l .debug_str 0000000000000000 .LASF6 +0000000000004c70 l .debug_str 0000000000000000 .LASF7 +0000000000004cbe l .debug_str 0000000000000000 .LASF9 +0000000000004cb7 l .debug_str 0000000000000000 .LASF10 +0000000000004d1b l .debug_str 0000000000000000 .LASF11 +0000000000004c55 l .debug_str 0000000000000000 .LASF18 +0000000000004ce3 l .debug_str 0000000000000000 .LASF12 +0000000000004d09 l .debug_str 0000000000000000 .LASF13 +0000000000004cd0 l .debug_str 0000000000000000 .LASF19 +00000000000017ae l .text 0000000000000000 .LFB0 +00000000000017dc l .text 0000000000000000 .LFE0 +0000000000004c50 l .debug_str 0000000000000000 .LASF14 +00000000000068e5 l .debug_info 0000000000000000 .Ldebug_info0 +00000000000017ae l .text 0000000000000000 .L0 +00000000000017ae l .text 0000000000000000 .L0 +00000000000017ae l .text 0000000000000000 .L0 +00000000000017b2 l .text 0000000000000000 .L0 +00000000000017b4 l .text 0000000000000000 .L0 +00000000000017b8 l .text 0000000000000000 .L0 +00000000000017b8 l .text 0000000000000000 .L0 +00000000000017bc l .text 0000000000000000 .L0 +00000000000017bc l .text 0000000000000000 .L0 +00000000000017c8 l .text 0000000000000000 .L0 +00000000000017c8 l .text 0000000000000000 .L0 +00000000000017d2 l .text 0000000000000000 .L0 +00000000000017d2 l .text 0000000000000000 .L0 +00000000000017d4 l .text 0000000000000000 .L0 +00000000000017d4 l .text 0000000000000000 .L0 +00000000000017d8 l .text 0000000000000000 .L0 +00000000000017d8 l .text 0000000000000000 .L0 +00000000000017da l .text 0000000000000000 .L0 +00000000000017dc l .text 0000000000000000 .L0 +0000000000000b38 l .debug_frame 0000000000000000 .L0 +00000000000017ae l .text 0000000000000000 .L0 +00000000000017dc l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 sem_init.c +000000000000ab38 l .rodata 0000000000000000 .LC0 +00000000000017e6 l .text 0000000000000000 .L0 +000000000000ab60 l .rodata 0000000000000000 .LC1 +00000000000017f2 l .text 0000000000000000 .L0 +00000000000017e4 l .text 0000000000000000 .L2 +0000000000001804 l .text 0000000000000000 .L3 +000000000000182e l .text 0000000000000000 .L10 +0000000000001846 l .text 0000000000000000 .L11 +000000000000183c l .text 0000000000000000 .L12 +000000000000183a l .text 0000000000000000 .L17 +0000000000002420 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000004e21 l .debug_str 0000000000000000 .LASF31 +0000000000004dd0 l .debug_str 0000000000000000 .LASF32 +0000000000004fbe l .debug_str 0000000000000000 .LASF33 +00000000000008f0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000005822 l .debug_line 0000000000000000 .Ldebug_line0 +0000000000004f1b l .debug_str 0000000000000000 .LASF0 +0000000000004df4 l .debug_str 0000000000000000 .LASF2 +0000000000004f04 l .debug_str 0000000000000000 .LASF1 +0000000000004f12 l .debug_str 0000000000000000 .LASF3 +0000000000004e08 l .debug_str 0000000000000000 .LASF4 +0000000000004f5d l .debug_str 0000000000000000 .LASF5 +0000000000004f50 l .debug_str 0000000000000000 .LASF6 +0000000000004ee4 l .debug_str 0000000000000000 .LASF7 +0000000000004f93 l .debug_str 0000000000000000 .LASF8 +0000000000004f30 l .debug_str 0000000000000000 .LASF9 +0000000000004ed6 l .debug_str 0000000000000000 .LASF10 +0000000000004f75 l .debug_str 0000000000000000 .LASF11 +0000000000004f70 l .debug_str 0000000000000000 .LASF12 +0000000000004eed l .debug_str 0000000000000000 .LASF13 +0000000000004f7d l .debug_str 0000000000000000 .LASF17 +0000000000004ef3 l .debug_str 0000000000000000 .LASF14 +0000000000004de5 l .debug_str 0000000000000000 .LASF15 +0000000000004f88 l .debug_str 0000000000000000 .LASF16 +0000000000004fad l .debug_str 0000000000000000 .LASF18 +0000000000004ed1 l .debug_str 0000000000000000 .LASF19 +0000000000004eff l .debug_str 0000000000000000 .LASF20 +0000000000004fe0 l .debug_str 0000000000000000 .LASF21 +0000000000004ede l .debug_str 0000000000000000 .LASF22 +0000000000004f27 l .debug_str 0000000000000000 .LASF23 +0000000000004ef9 l .debug_str 0000000000000000 .LASF24 +0000000000004e18 l .debug_str 0000000000000000 .LASF25 +0000000000004e12 l .debug_str 0000000000000000 .LASF26 +0000000000004deb l .debug_str 0000000000000000 .LASF34 +0000000000001820 l .text 0000000000000000 .LFB1 +0000000000001864 l .text 0000000000000000 .LFE1 +0000000000004257 l .debug_loc 0000000000000000 .LLST6 +0000000000004fa5 l .debug_str 0000000000000000 .LASF27 +00000000000042b9 l .debug_loc 0000000000000000 .LLST7 +0000000000004fb8 l .debug_str 0000000000000000 .LASF28 +000000000000431b l .debug_loc 0000000000000000 .LLST8 +000000000000437d l .debug_loc 0000000000000000 .LLST9 +0000000000001836 l .text 0000000000000000 .LVL9 +000000000000184e l .text 0000000000000000 .LVL13 +000000000000185c l .text 0000000000000000 .LVL15 +0000000000004dfd l .debug_str 0000000000000000 .LASF35 +00000000000017dc l .text 0000000000000000 .LFB0 +0000000000001820 l .text 0000000000000000 .LFE0 +00000000000043b5 l .debug_loc 0000000000000000 .LLST0 +0000000000004417 l .debug_loc 0000000000000000 .LLST1 +0000000000004463 l .debug_loc 0000000000000000 .LLST2 +00000000000017e4 l .text 0000000000000000 .LBB4 +00000000000044c5 l .debug_loc 0000000000000000 .LLST3 +00000000000044fe l .debug_loc 0000000000000000 .LLST4 +0000000000004524 l .debug_loc 0000000000000000 .LLST5 +0000000000001804 l .text 0000000000000000 .LVL5 +0000000000004feb l .debug_str 0000000000000000 .LASF29 +0000000000004f47 l .debug_str 0000000000000000 .LASF30 +0000000000001820 l .text 0000000000000000 .LVL8 +0000000000001846 l .text 0000000000000000 .LVL12 +000000000000183a l .text 0000000000000000 .LVL10 +000000000000183c l .text 0000000000000000 .LVL11 +0000000000001850 l .text 0000000000000000 .LVL14 +00000000000017dc l .text 0000000000000000 .LVL0 +00000000000017fa l .text 0000000000000000 .LVL4 +000000000000181e l .text 0000000000000000 .LVL7 +00000000000017f2 l .text 0000000000000000 .LVL3 +00000000000017ee l .text 0000000000000000 .LVL2 +0000000000001808 l .text 0000000000000000 .LVL6 +00000000000017e4 l .text 0000000000000000 .LVL1 +0000000000006a18 l .debug_info 0000000000000000 .Ldebug_info0 +00000000000017e4 l .text 0000000000000000 .LBE4 +00000000000017e6 l .text 0000000000000000 .LBB8 +00000000000017fa l .text 0000000000000000 .LBE8 +00000000000017fc l .text 0000000000000000 .LBB9 +0000000000001804 l .text 0000000000000000 .LBE9 +00000000000017dc l .text 0000000000000000 .L0 +0000000000001820 l .text 0000000000000000 .L0 +00000000000017dc l .text 0000000000000000 .L0 +00000000000017dc l .text 0000000000000000 .L0 +00000000000017dc l .text 0000000000000000 .L0 +00000000000017de l .text 0000000000000000 .L0 +00000000000017e4 l .text 0000000000000000 .L0 +00000000000017e4 l .text 0000000000000000 .L0 +00000000000017e6 l .text 0000000000000000 .L0 +00000000000017fa l .text 0000000000000000 .L0 +00000000000017fc l .text 0000000000000000 .L0 +0000000000001804 l .text 0000000000000000 .L0 +0000000000001804 l .text 0000000000000000 .L0 +0000000000001804 l .text 0000000000000000 .L0 +000000000000180c l .text 0000000000000000 .L0 +0000000000001810 l .text 0000000000000000 .L0 +0000000000001810 l .text 0000000000000000 .L0 +0000000000001814 l .text 0000000000000000 .L0 +0000000000001818 l .text 0000000000000000 .L0 +0000000000001818 l .text 0000000000000000 .L0 +0000000000001818 l .text 0000000000000000 .L0 +000000000000181c l .text 0000000000000000 .L0 +000000000000181c l .text 0000000000000000 .L0 +0000000000001820 l .text 0000000000000000 .L0 +0000000000001820 l .text 0000000000000000 .L0 +0000000000001820 l .text 0000000000000000 .L0 +0000000000001820 l .text 0000000000000000 .L0 +0000000000001826 l .text 0000000000000000 .L0 +0000000000001828 l .text 0000000000000000 .L0 +000000000000182e l .text 0000000000000000 .L0 +000000000000182e l .text 0000000000000000 .L0 +000000000000183a l .text 0000000000000000 .L0 +000000000000183a l .text 0000000000000000 .L0 +000000000000183a l .text 0000000000000000 .L0 +000000000000183a l .text 0000000000000000 .L0 +000000000000183a l .text 0000000000000000 .L0 +000000000000183c l .text 0000000000000000 .L0 +0000000000001846 l .text 0000000000000000 .L0 +0000000000001846 l .text 0000000000000000 .L0 +0000000000001850 l .text 0000000000000000 .L0 +0000000000001850 l .text 0000000000000000 .L0 +0000000000001854 l .text 0000000000000000 .L0 +0000000000001854 l .text 0000000000000000 .L0 +0000000000001864 l .text 0000000000000000 .L0 +0000000000000b60 l .debug_frame 0000000000000000 .L0 +00000000000017dc l .text 0000000000000000 .L0 +0000000000001820 l .text 0000000000000000 .L0 +0000000000001820 l .text 0000000000000000 .L0 +0000000000001864 l .text 0000000000000000 .L0 +00000000000017e6 l .text 0000000000000000 .L0 +00000000000017fc l .text 0000000000000000 .L0 +0000000000001804 l .text 0000000000000000 .L0 +000000000000183e l .text 0000000000000000 .L0 +0000000000001826 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 sem_setprotocol.c +000000000000ab78 l .rodata 0000000000000000 .LC0 +0000000000001868 l .text 0000000000000000 .L0 +000000000000ab90 l .rodata 0000000000000000 .LC1 +0000000000001874 l .text 0000000000000000 .L0 +0000000000001886 l .text 0000000000000000 .L2 +00000000000018a0 l .text 0000000000000000 .L3 +00000000000018a4 l .text 0000000000000000 .L4 +00000000000018ca l .text 0000000000000000 .L10 +00000000000025db l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000000501b l .debug_str 0000000000000000 .LASF30 +0000000000005203 l .debug_str 0000000000000000 .LASF31 +00000000000051e1 l .debug_str 0000000000000000 .LASF32 +0000000000000960 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000005adc l .debug_line 0000000000000000 .Ldebug_line0 +0000000000005141 l .debug_str 0000000000000000 .LASF0 +0000000000004ff9 l .debug_str 0000000000000000 .LASF2 +000000000000512a l .debug_str 0000000000000000 .LASF1 +0000000000005138 l .debug_str 0000000000000000 .LASF3 +0000000000005002 l .debug_str 0000000000000000 .LASF4 +0000000000005183 l .debug_str 0000000000000000 .LASF5 +0000000000005176 l .debug_str 0000000000000000 .LASF6 +00000000000050e7 l .debug_str 0000000000000000 .LASF7 +00000000000051b9 l .debug_str 0000000000000000 .LASF8 +0000000000005156 l .debug_str 0000000000000000 .LASF9 +00000000000050d0 l .debug_str 0000000000000000 .LASF10 +000000000000519b l .debug_str 0000000000000000 .LASF11 +0000000000005196 l .debug_str 0000000000000000 .LASF12 +00000000000050f0 l .debug_str 0000000000000000 .LASF13 +00000000000051a3 l .debug_str 0000000000000000 .LASF17 +00000000000050f6 l .debug_str 0000000000000000 .LASF14 +0000000000004ff3 l .debug_str 0000000000000000 .LASF15 +00000000000051ae l .debug_str 0000000000000000 .LASF16 +00000000000051cb l .debug_str 0000000000000000 .LASF18 +00000000000050cb l .debug_str 0000000000000000 .LASF19 +0000000000005115 l .debug_str 0000000000000000 .LASF20 +00000000000051d6 l .debug_str 0000000000000000 .LASF21 +00000000000050d8 l .debug_str 0000000000000000 .LASF22 +000000000000514d l .debug_str 0000000000000000 .LASF23 +00000000000050fc l .debug_str 0000000000000000 .LASF24 +0000000000005012 l .debug_str 0000000000000000 .LASF25 +000000000000500c l .debug_str 0000000000000000 .LASF26 +000000000000511a l .debug_str 0000000000000000 .LASF33 +00000000000018a6 l .text 0000000000000000 .LFB1 +00000000000018d4 l .text 0000000000000000 .LFE1 +0000000000004547 l .debug_loc 0000000000000000 .LLST4 +00000000000050de l .debug_str 0000000000000000 .LASF27 +0000000000004580 l .debug_loc 0000000000000000 .LLST5 +00000000000045b9 l .debug_loc 0000000000000000 .LLST6 +00000000000018b4 l .text 0000000000000000 .LVL10 +00000000000018c6 l .text 0000000000000000 .LVL12 +0000000000005102 l .debug_str 0000000000000000 .LASF34 +0000000000001864 l .text 0000000000000000 .LFB0 +00000000000018a6 l .text 0000000000000000 .LFE0 +0000000000004604 l .debug_loc 0000000000000000 .LLST0 +00000000000046a2 l .debug_loc 0000000000000000 .LLST1 +0000000000001866 l .text 0000000000000000 .LBB4 +00000000000046ee l .debug_loc 0000000000000000 .LLST2 +0000000000004712 l .debug_loc 0000000000000000 .LLST3 +0000000000001886 l .text 0000000000000000 .LVL4 +000000000000521f l .debug_str 0000000000000000 .LASF28 +000000000000516d l .debug_str 0000000000000000 .LASF29 +00000000000018a6 l .text 0000000000000000 .LVL9 +00000000000018b6 l .text 0000000000000000 .LVL11 +00000000000018c8 l .text 0000000000000000 .LVL13 +00000000000018ca l .text 0000000000000000 .LVL14 +00000000000018d0 l .text 0000000000000000 .LVL15 +0000000000001864 l .text 0000000000000000 .LVL0 +000000000000187c l .text 0000000000000000 .LVL3 +000000000000188c l .text 0000000000000000 .LVL5 +0000000000001894 l .text 0000000000000000 .LVL6 +00000000000018a0 l .text 0000000000000000 .LVL7 +00000000000018a4 l .text 0000000000000000 .LVL8 +0000000000001874 l .text 0000000000000000 .LVL2 +0000000000001866 l .text 0000000000000000 .LVL1 +0000000000006d09 l .debug_info 0000000000000000 .Ldebug_info0 +0000000000001866 l .text 0000000000000000 .LBE4 +0000000000001868 l .text 0000000000000000 .LBB8 +000000000000187c l .text 0000000000000000 .LBE8 +000000000000187e l .text 0000000000000000 .LBB9 +0000000000001888 l .text 0000000000000000 .LBE9 +0000000000001864 l .text 0000000000000000 .L0 +00000000000018a6 l .text 0000000000000000 .L0 +0000000000001864 l .text 0000000000000000 .L0 +0000000000001864 l .text 0000000000000000 .L0 +0000000000001866 l .text 0000000000000000 .L0 +0000000000001866 l .text 0000000000000000 .L0 +0000000000001868 l .text 0000000000000000 .L0 +000000000000187c l .text 0000000000000000 .L0 +000000000000187e l .text 0000000000000000 .L0 +0000000000001888 l .text 0000000000000000 .L0 +0000000000001888 l .text 0000000000000000 .L0 +0000000000001888 l .text 0000000000000000 .L0 +000000000000188c l .text 0000000000000000 .L0 +000000000000188e l .text 0000000000000000 .L0 +0000000000001894 l .text 0000000000000000 .L0 +0000000000001898 l .text 0000000000000000 .L0 +00000000000018a0 l .text 0000000000000000 .L0 +00000000000018a0 l .text 0000000000000000 .L0 +00000000000018a0 l .text 0000000000000000 .L0 +00000000000018a4 l .text 0000000000000000 .L0 +00000000000018a4 l .text 0000000000000000 .L0 +00000000000018a6 l .text 0000000000000000 .L0 +00000000000018a6 l .text 0000000000000000 .L0 +00000000000018a6 l .text 0000000000000000 .L0 +00000000000018a6 l .text 0000000000000000 .L0 +00000000000018ac l .text 0000000000000000 .L0 +00000000000018b6 l .text 0000000000000000 .L0 +00000000000018b6 l .text 0000000000000000 .L0 +00000000000018ba l .text 0000000000000000 .L0 +00000000000018ba l .text 0000000000000000 .L0 +00000000000018c8 l .text 0000000000000000 .L0 +00000000000018c8 l .text 0000000000000000 .L0 +00000000000018c8 l .text 0000000000000000 .L0 +00000000000018ca l .text 0000000000000000 .L0 +00000000000018ca l .text 0000000000000000 .L0 +00000000000018d4 l .text 0000000000000000 .L0 +0000000000000bc8 l .debug_frame 0000000000000000 .L0 +0000000000001864 l .text 0000000000000000 .L0 +00000000000018a6 l .text 0000000000000000 .L0 +00000000000018a6 l .text 0000000000000000 .L0 +00000000000018d4 l .text 0000000000000000 .L0 +0000000000001868 l .text 0000000000000000 .L0 +000000000000187e l .text 0000000000000000 .L0 +0000000000001886 l .text 0000000000000000 .L0 +00000000000018cc l .text 0000000000000000 .L0 +00000000000018ac l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 sem_getvalue.c +00000000000018ee l .text 0000000000000000 .L2 +0000000000001914 l .text 0000000000000000 .L6 +00000000000027a3 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000000524f l .debug_str 0000000000000000 .LASF30 +0000000000005328 l .debug_str 0000000000000000 .LASF31 +0000000000005410 l .debug_str 0000000000000000 .LASF32 +00000000000009d0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000005d43 l .debug_line 0000000000000000 .Ldebug_line0 +000000000000537f l .debug_str 0000000000000000 .LASF0 +000000000000522d l .debug_str 0000000000000000 .LASF2 +0000000000005368 l .debug_str 0000000000000000 .LASF1 +0000000000005376 l .debug_str 0000000000000000 .LASF3 +0000000000005236 l .debug_str 0000000000000000 .LASF4 +00000000000053b8 l .debug_str 0000000000000000 .LASF5 +00000000000053ab l .debug_str 0000000000000000 .LASF6 +000000000000531f l .debug_str 0000000000000000 .LASF7 +00000000000053f3 l .debug_str 0000000000000000 .LASF8 +0000000000005394 l .debug_str 0000000000000000 .LASF9 +0000000000005311 l .debug_str 0000000000000000 .LASF10 +00000000000053d5 l .debug_str 0000000000000000 .LASF11 +00000000000053cb l .debug_str 0000000000000000 .LASF12 +0000000000005341 l .debug_str 0000000000000000 .LASF13 +00000000000053dd l .debug_str 0000000000000000 .LASF17 +0000000000005347 l .debug_str 0000000000000000 .LASF14 +0000000000005227 l .debug_str 0000000000000000 .LASF15 +00000000000053e8 l .debug_str 0000000000000000 .LASF16 +0000000000005405 l .debug_str 0000000000000000 .LASF18 +000000000000530c l .debug_str 0000000000000000 .LASF19 +0000000000005363 l .debug_str 0000000000000000 .LASF20 +0000000000005432 l .debug_str 0000000000000000 .LASF21 +0000000000005319 l .debug_str 0000000000000000 .LASF22 +000000000000538b l .debug_str 0000000000000000 .LASF23 +000000000000534d l .debug_str 0000000000000000 .LASF24 +0000000000005246 l .debug_str 0000000000000000 .LASF25 +0000000000005240 l .debug_str 0000000000000000 .LASF26 +00000000000052ff l .debug_str 0000000000000000 .LASF28 +00000000000018f0 l .text 0000000000000000 .LFB1 +000000000000191e l .text 0000000000000000 .LFE1 +0000000000004735 l .debug_loc 0000000000000000 .LLST1 +00000000000053d0 l .debug_str 0000000000000000 .LASF27 +000000000000476e l .debug_loc 0000000000000000 .LLST2 +00000000000047a7 l .debug_loc 0000000000000000 .LLST3 +00000000000018fe l .text 0000000000000000 .LVL5 +0000000000001910 l .text 0000000000000000 .LVL7 +0000000000005353 l .debug_str 0000000000000000 .LASF29 +00000000000018d4 l .text 0000000000000000 .LFB0 +00000000000018f0 l .text 0000000000000000 .LFE0 +00000000000047f2 l .debug_loc 0000000000000000 .LLST0 +000000000000543d l .debug_str 0000000000000000 .LASF33 +00000000000018f0 l .text 0000000000000000 .LVL4 +0000000000001900 l .text 0000000000000000 .LVL6 +0000000000001912 l .text 0000000000000000 .LVL8 +0000000000001914 l .text 0000000000000000 .LVL9 +000000000000191a l .text 0000000000000000 .LVL10 +00000000000018d4 l .text 0000000000000000 .LVL0 +00000000000018d8 l .text 0000000000000000 .LVL1 +00000000000018e0 l .text 0000000000000000 .LVL2 +00000000000018ee l .text 0000000000000000 .LVL3 +0000000000006fcd l .debug_info 0000000000000000 .Ldebug_info0 +00000000000018d4 l .text 0000000000000000 .L0 +00000000000018f0 l .text 0000000000000000 .L0 +00000000000018d4 l .text 0000000000000000 .L0 +00000000000018d4 l .text 0000000000000000 .L0 +00000000000018d6 l .text 0000000000000000 .L0 +00000000000018d8 l .text 0000000000000000 .L0 +00000000000018da l .text 0000000000000000 .L0 +00000000000018dc l .text 0000000000000000 .L0 +00000000000018dc l .text 0000000000000000 .L0 +00000000000018e0 l .text 0000000000000000 .L0 +00000000000018e2 l .text 0000000000000000 .L0 +00000000000018ec l .text 0000000000000000 .L0 +00000000000018ec l .text 0000000000000000 .L0 +00000000000018ee l .text 0000000000000000 .L0 +00000000000018f0 l .text 0000000000000000 .L0 +00000000000018f0 l .text 0000000000000000 .L0 +00000000000018f0 l .text 0000000000000000 .L0 +00000000000018f0 l .text 0000000000000000 .L0 +00000000000018f6 l .text 0000000000000000 .L0 +0000000000001900 l .text 0000000000000000 .L0 +0000000000001900 l .text 0000000000000000 .L0 +0000000000001904 l .text 0000000000000000 .L0 +0000000000001904 l .text 0000000000000000 .L0 +0000000000001912 l .text 0000000000000000 .L0 +0000000000001912 l .text 0000000000000000 .L0 +0000000000001912 l .text 0000000000000000 .L0 +0000000000001914 l .text 0000000000000000 .L0 +0000000000001914 l .text 0000000000000000 .L0 +000000000000191e l .text 0000000000000000 .L0 +0000000000000c28 l .debug_frame 0000000000000000 .L0 +00000000000018d4 l .text 0000000000000000 .L0 +00000000000018f0 l .text 0000000000000000 .L0 +00000000000018f0 l .text 0000000000000000 .L0 +000000000000191e l .text 0000000000000000 .L0 +0000000000001916 l .text 0000000000000000 .L0 +00000000000018f6 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 PROXY__assert.c +000000000000291b l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000005c98 l .debug_str 0000000000000000 .LASF153 +000000000000562c l .debug_str 0000000000000000 .LASF154 +0000000000005adc l .debug_str 0000000000000000 .LASF155 +0000000000000a00 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000005f5e l .debug_line 0000000000000000 .Ldebug_line0 +00000000000055bf l .debug_str 0000000000000000 .LASF0 +00000000000059ef l .debug_str 0000000000000000 .LASF1 +0000000000005a2c l .debug_str 0000000000000000 .LASF2 +00000000000057b1 l .debug_str 0000000000000000 .LASF3 +000000000000574d l .debug_str 0000000000000000 .LASF4 +0000000000005504 l .debug_str 0000000000000000 .LASF5 +0000000000005775 l .debug_str 0000000000000000 .LASF6 +0000000000005860 l .debug_str 0000000000000000 .LASF8 +0000000000005526 l .debug_str 0000000000000000 .LASF7 +0000000000005498 l .debug_str 0000000000000000 .LASF9 +00000000000058d8 l .debug_str 0000000000000000 .LASF10 +0000000000005a99 l .debug_str 0000000000000000 .LASF11 +000000000000571c l .debug_str 0000000000000000 .LASF12 +000000000000598f l .debug_str 0000000000000000 .LASF13 +0000000000005df7 l .debug_str 0000000000000000 .LASF14 +0000000000005581 l .debug_str 0000000000000000 .LASF15 +0000000000005de0 l .debug_str 0000000000000000 .LASF16 +000000000000590a l .debug_str 0000000000000000 .LASF17 +0000000000005c64 l .debug_str 0000000000000000 .LASF18 +0000000000005ba6 l .debug_str 0000000000000000 .LASF19 +0000000000005b93 l .debug_str 0000000000000000 .LASF20 +0000000000005876 l .debug_str 0000000000000000 .LASF21 +0000000000005d9c l .debug_str 0000000000000000 .LASF22 +00000000000054ac l .debug_str 0000000000000000 .LASF23 +0000000000005ac2 l .debug_str 0000000000000000 .LASF24 +000000000000592d l .debug_str 0000000000000000 .LASF25 +0000000000005ab2 l .debug_str 0000000000000000 .LASF26 +0000000000005731 l .debug_str 0000000000000000 .LASF27 +00000000000057ed l .debug_str 0000000000000000 .LASF28 +00000000000059ad l .debug_str 0000000000000000 .LASF29 +0000000000005618 l .debug_str 0000000000000000 .LASF30 +0000000000005818 l .debug_str 0000000000000000 .LASF31 +00000000000058a6 l .debug_str 0000000000000000 .LASF32 +00000000000054c7 l .debug_str 0000000000000000 .LASF33 +0000000000005c78 l .debug_str 0000000000000000 .LASF34 +0000000000005a8d l .debug_str 0000000000000000 .LASF35 +0000000000005b3d l .debug_str 0000000000000000 .LASF36 +0000000000005571 l .debug_str 0000000000000000 .LASF37 +0000000000005a82 l .debug_str 0000000000000000 .LASF38 +0000000000005a18 l .debug_str 0000000000000000 .LASF39 +0000000000005462 l .debug_str 0000000000000000 .LASF40 +000000000000575a l .debug_str 0000000000000000 .LASF41 +00000000000059fd l .debug_str 0000000000000000 .LASF42 +000000000000568b l .debug_str 0000000000000000 .LASF43 +0000000000005c3a l .debug_str 0000000000000000 .LASF44 +00000000000058c9 l .debug_str 0000000000000000 .LASF45 +00000000000055e3 l .debug_str 0000000000000000 .LASF46 +0000000000005561 l .debug_str 0000000000000000 .LASF47 +0000000000005919 l .debug_str 0000000000000000 .LASF48 +0000000000005651 l .debug_str 0000000000000000 .LASF49 +0000000000005bd5 l .debug_str 0000000000000000 .LASF50 +0000000000005700 l .debug_str 0000000000000000 .LASF51 +0000000000005487 l .debug_str 0000000000000000 .LASF52 +00000000000058b8 l .debug_str 0000000000000000 .LASF53 +00000000000057ce l .debug_str 0000000000000000 .LASF54 +0000000000005d48 l .debug_str 0000000000000000 .LASF55 +0000000000005791 l .debug_str 0000000000000000 .LASF56 +0000000000005868 l .debug_str 0000000000000000 .LASF57 +00000000000056ae l .debug_str 0000000000000000 .LASF58 +000000000000582c l .debug_str 0000000000000000 .LASF59 +00000000000055f4 l .debug_str 0000000000000000 .LASF60 +0000000000005d92 l .debug_str 0000000000000000 .LASF61 +00000000000055b6 l .debug_str 0000000000000000 .LASF62 +0000000000005712 l .debug_str 0000000000000000 .LASF63 +0000000000005557 l .debug_str 0000000000000000 .LASF64 +0000000000005954 l .debug_str 0000000000000000 .LASF65 +0000000000005459 l .debug_str 0000000000000000 .LASF66 +000000000000551b l .debug_str 0000000000000000 .LASF67 +00000000000054d6 l .debug_str 0000000000000000 .LASF68 +000000000000583b l .debug_str 0000000000000000 .LASF69 +0000000000005644 l .debug_str 0000000000000000 .LASF70 +00000000000059a5 l .debug_str 0000000000000000 .LASF71 +0000000000005a36 l .debug_str 0000000000000000 .LASF72 +0000000000005787 l .debug_str 0000000000000000 .LASF73 +0000000000005d84 l .debug_str 0000000000000000 .LASF74 +00000000000055ac l .debug_str 0000000000000000 .LASF75 +00000000000056c6 l .debug_str 0000000000000000 .LASF76 +0000000000005c31 l .debug_str 0000000000000000 .LASF77 +000000000000599a l .debug_str 0000000000000000 .LASF78 +0000000000005dbe l .debug_str 0000000000000000 .LASF79 +0000000000005bcb l .debug_str 0000000000000000 .LASF80 +00000000000054a2 l .debug_str 0000000000000000 .LASF81 +0000000000005855 l .debug_str 0000000000000000 .LASF82 +0000000000005a0c l .debug_str 0000000000000000 .LASF83 +0000000000005be7 l .debug_str 0000000000000000 .LASF84 +0000000000005a3f l .debug_str 0000000000000000 .LASF85 +0000000000005727 l .debug_str 0000000000000000 .LASF86 +000000000000580e l .debug_str 0000000000000000 .LASF87 +0000000000005d79 l .debug_str 0000000000000000 .LASF88 +0000000000005984 l .debug_str 0000000000000000 .LASF89 +00000000000055d9 l .debug_str 0000000000000000 .LASF90 +00000000000059d0 l .debug_str 0000000000000000 .LASF91 +00000000000056e6 l .debug_str 0000000000000000 .LASF92 +0000000000005741 l .debug_str 0000000000000000 .LASF93 +0000000000005d6c l .debug_str 0000000000000000 .LASF94 +0000000000005aa5 l .debug_str 0000000000000000 .LASF95 +0000000000005bc0 l .debug_str 0000000000000000 .LASF96 +00000000000057e3 l .debug_str 0000000000000000 .LASF97 +00000000000056bc l .debug_str 0000000000000000 .LASF98 +00000000000057c4 l .debug_str 0000000000000000 .LASF99 +0000000000005b87 l .debug_str 0000000000000000 .LASF100 +0000000000005e01 l .debug_str 0000000000000000 .LASF101 +000000000000596b l .debug_str 0000000000000000 .LASF102 +000000000000569b l .debug_str 0000000000000000 .LASF103 +0000000000005939 l .debug_str 0000000000000000 .LASF104 +0000000000005594 l .debug_str 0000000000000000 .LASF105 +0000000000005c1b l .debug_str 0000000000000000 .LASF106 +000000000000566a l .debug_str 0000000000000000 .LASF107 +00000000000054f1 l .debug_str 0000000000000000 .LASF108 +00000000000059db l .debug_str 0000000000000000 .LASF109 +0000000000005a48 l .debug_str 0000000000000000 .LASF110 +0000000000005dad l .debug_str 0000000000000000 .LASF111 +000000000000553d l .debug_str 0000000000000000 .LASF112 +0000000000005b70 l .debug_str 0000000000000000 .LASF113 +0000000000005b21 l .debug_str 0000000000000000 .LASF114 +000000000000546d l .debug_str 0000000000000000 .LASF115 +000000000000588d l .debug_str 0000000000000000 .LASF116 +0000000000005c47 l .debug_str 0000000000000000 .LASF117 +00000000000055fe l .debug_str 0000000000000000 .LASF118 +00000000000058f1 l .debug_str 0000000000000000 .LASF119 +0000000000005bf4 l .debug_str 0000000000000000 .LASF120 +0000000000005c84 l .debug_str 0000000000000000 .LASF121 +0000000000005768 l .debug_str 0000000000000000 .LASF122 +000000000000565b l .debug_str 0000000000000000 .LASF123 +0000000000005847 l .debug_str 0000000000000000 .LASF124 +0000000000005c0f l .debug_str 0000000000000000 .LASF125 +00000000000056f1 l .debug_str 0000000000000000 .LASF126 +000000000000595f l .debug_str 0000000000000000 .LASF127 +0000000000005a73 l .debug_str 0000000000000000 .LASF128 +00000000000059bc l .debug_str 0000000000000000 .LASF129 +00000000000054e0 l .debug_str 0000000000000000 .LASF130 +00000000000057a3 l .debug_str 0000000000000000 .LASF131 +0000000000005b0d l .debug_str 0000000000000000 .LASF132 +0000000000005b63 l .debug_str 0000000000000000 .LASF133 +0000000000005dc7 l .debug_str 0000000000000000 .LASF134 +00000000000054bc l .debug_str 0000000000000000 .LASF135 +0000000000005a21 l .debug_str 0000000000000000 .LASF136 +00000000000056cf l .debug_str 0000000000000000 .LASF137 +0000000000005dd2 l .debug_str 0000000000000000 .LASF138 +00000000000055cb l .debug_str 0000000000000000 .LASF139 +0000000000005d5a l .debug_str 0000000000000000 .LASF140 +000000000000550d l .debug_str 0000000000000000 .LASF141 +00000000000058e2 l .debug_str 0000000000000000 .LASF142 +0000000000005b49 l .debug_str 0000000000000000 .LASF143 +0000000000005b52 l .debug_str 0000000000000000 .LASF144 +0000000000005a62 l .debug_str 0000000000000000 .LASF145 +0000000000005680 l .debug_str 0000000000000000 .LASF146 +00000000000057ff l .debug_str 0000000000000000 .LASF147 +0000000000005b08 l .debug_str 0000000000000000 .LASF148 +0000000000005451 l .debug_str 0000000000000000 .LASF156 +000000000000191e l .text 0000000000000000 .LFB7 +0000000000001936 l .text 0000000000000000 .LFE7 +0000000000005afc l .debug_str 0000000000000000 .LASF149 +0000000000004851 l .debug_loc 0000000000000000 .LLST0 +0000000000005b02 l .debug_str 0000000000000000 .LASF150 +0000000000004887 l .debug_loc 0000000000000000 .LLST1 +0000000000005445 l .debug_str 0000000000000000 .LASF151 +00000000000048c0 l .debug_loc 0000000000000000 .LLST2 +000000000000544b l .debug_str 0000000000000000 .LASF152 +00000000000048f6 l .debug_loc 0000000000000000 .LLST3 +0000000000001926 l .text 0000000000000000 .LBB4 +0000000000001934 l .text 0000000000000000 .LBE4 +000000000000492c l .debug_loc 0000000000000000 .LLST4 +0000000000004950 l .debug_loc 0000000000000000 .LLST5 +0000000000004986 l .debug_loc 0000000000000000 .LLST6 +00000000000049bc l .debug_loc 0000000000000000 .LLST7 +00000000000049e7 l .debug_loc 0000000000000000 .LLST8 +00000000000056dc l .debug_str 0000000000000000 .LASF157 +000000000000191e l .text 0000000000000000 .LVL0 +0000000000001928 l .text 0000000000000000 .LVL5 +000000000000192a l .text 0000000000000000 .LVL6 +000000000000192c l .text 0000000000000000 .LVL7 +000000000000192e l .text 0000000000000000 .LVL8 +0000000000001926 l .text 0000000000000000 .LVL4 +0000000000001934 l .text 0000000000000000 .LVL9 +0000000000001924 l .text 0000000000000000 .LVL3 +0000000000001922 l .text 0000000000000000 .LVL2 +0000000000001920 l .text 0000000000000000 .LVL1 +0000000000007225 l .debug_info 0000000000000000 .Ldebug_info0 +000000000000191e l .text 0000000000000000 .L0 +000000000000191e l .text 0000000000000000 .L0 +000000000000191e l .text 0000000000000000 .L0 +0000000000001926 l .text 0000000000000000 .L0 +0000000000001926 l .text 0000000000000000 .L0 +0000000000001928 l .text 0000000000000000 .L0 +0000000000001928 l .text 0000000000000000 .L0 +000000000000192a l .text 0000000000000000 .L0 +000000000000192a l .text 0000000000000000 .L0 +000000000000192c l .text 0000000000000000 .L0 +000000000000192c l .text 0000000000000000 .L0 +000000000000192e l .text 0000000000000000 .L0 +000000000000192e l .text 0000000000000000 .L0 +0000000000001932 l .text 0000000000000000 .L0 +0000000000001934 l .text 0000000000000000 .L0 +0000000000001934 l .text 0000000000000000 .L0 +0000000000001936 l .text 0000000000000000 .L0 +0000000000000c78 l .debug_frame 0000000000000000 .L0 +000000000000191e l .text 0000000000000000 .L0 +0000000000001936 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 PROXY__exit.c +0000000000001940 l .text 0000000000000000 .L2 +0000000000002a17 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000006649 l .debug_str 0000000000000000 .LASF150 +0000000000006348 l .debug_str 0000000000000000 .LASF151 +000000000000648d l .debug_str 0000000000000000 .LASF152 +0000000000000a20 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +00000000000060c7 l .debug_line 0000000000000000 .Ldebug_line0 +0000000000005f73 l .debug_str 0000000000000000 .LASF0 +00000000000063a0 l .debug_str 0000000000000000 .LASF1 +00000000000063dd l .debug_str 0000000000000000 .LASF2 +0000000000006165 l .debug_str 0000000000000000 .LASF3 +0000000000006101 l .debug_str 0000000000000000 .LASF4 +0000000000005fe0 l .debug_str 0000000000000000 .LASF5 +0000000000006129 l .debug_str 0000000000000000 .LASF6 +000000000000621c l .debug_str 0000000000000000 .LASF8 +0000000000005eda l .debug_str 0000000000000000 .LASF7 +0000000000005e4b l .debug_str 0000000000000000 .LASF9 +00000000000064b3 l .debug_str 0000000000000000 .LASF10 +0000000000006294 l .debug_str 0000000000000000 .LASF11 +000000000000644a l .debug_str 0000000000000000 .LASF12 +00000000000060d0 l .debug_str 0000000000000000 .LASF13 +0000000000006332 l .debug_str 0000000000000000 .LASF14 +00000000000067a8 l .debug_str 0000000000000000 .LASF15 +0000000000005f35 l .debug_str 0000000000000000 .LASF16 +0000000000006791 l .debug_str 0000000000000000 .LASF17 +00000000000062ad l .debug_str 0000000000000000 .LASF18 +000000000000660f l .debug_str 0000000000000000 .LASF19 +0000000000006551 l .debug_str 0000000000000000 .LASF20 +000000000000653e l .debug_str 0000000000000000 .LASF21 +0000000000006232 l .debug_str 0000000000000000 .LASF22 +000000000000674d l .debug_str 0000000000000000 .LASF23 +0000000000005e5f l .debug_str 0000000000000000 .LASF24 +0000000000006473 l .debug_str 0000000000000000 .LASF25 +00000000000062d0 l .debug_str 0000000000000000 .LASF26 +0000000000006463 l .debug_str 0000000000000000 .LASF27 +00000000000060e5 l .debug_str 0000000000000000 .LASF28 +00000000000061a9 l .debug_str 0000000000000000 .LASF29 +000000000000635e l .debug_str 0000000000000000 .LASF30 +0000000000005fcc l .debug_str 0000000000000000 .LASF31 +00000000000061d4 l .debug_str 0000000000000000 .LASF32 +0000000000006262 l .debug_str 0000000000000000 .LASF33 +0000000000005e7a l .debug_str 0000000000000000 .LASF34 +0000000000006623 l .debug_str 0000000000000000 .LASF35 +000000000000643e l .debug_str 0000000000000000 .LASF36 +00000000000064e8 l .debug_str 0000000000000000 .LASF37 +0000000000005f25 l .debug_str 0000000000000000 .LASF38 +0000000000006433 l .debug_str 0000000000000000 .LASF39 +00000000000063c9 l .debug_str 0000000000000000 .LASF40 +0000000000005e15 l .debug_str 0000000000000000 .LASF41 +000000000000610e l .debug_str 0000000000000000 .LASF42 +00000000000063ae l .debug_str 0000000000000000 .LASF43 +000000000000603f l .debug_str 0000000000000000 .LASF44 +00000000000065e5 l .debug_str 0000000000000000 .LASF45 +0000000000006285 l .debug_str 0000000000000000 .LASF46 +0000000000005f97 l .debug_str 0000000000000000 .LASF47 +0000000000005f15 l .debug_str 0000000000000000 .LASF48 +00000000000062bc l .debug_str 0000000000000000 .LASF49 +0000000000005eb7 l .debug_str 0000000000000000 .LASF50 +0000000000006580 l .debug_str 0000000000000000 .LASF51 +00000000000060b4 l .debug_str 0000000000000000 .LASF52 +0000000000005e3a l .debug_str 0000000000000000 .LASF53 +0000000000006274 l .debug_str 0000000000000000 .LASF54 +0000000000006182 l .debug_str 0000000000000000 .LASF55 +00000000000066f9 l .debug_str 0000000000000000 .LASF56 +0000000000006145 l .debug_str 0000000000000000 .LASF57 +0000000000006224 l .debug_str 0000000000000000 .LASF58 +0000000000006062 l .debug_str 0000000000000000 .LASF59 +00000000000061e8 l .debug_str 0000000000000000 .LASF60 +0000000000005fa8 l .debug_str 0000000000000000 .LASF61 +0000000000006743 l .debug_str 0000000000000000 .LASF62 +0000000000005f6a l .debug_str 0000000000000000 .LASF63 +00000000000060c6 l .debug_str 0000000000000000 .LASF64 +0000000000005f0b l .debug_str 0000000000000000 .LASF65 +00000000000062f7 l .debug_str 0000000000000000 .LASF66 +0000000000005e0c l .debug_str 0000000000000000 .LASF67 +0000000000005ecf l .debug_str 0000000000000000 .LASF68 +0000000000005e89 l .debug_str 0000000000000000 .LASF69 +00000000000061f7 l .debug_str 0000000000000000 .LASF70 +0000000000005fe9 l .debug_str 0000000000000000 .LASF71 +00000000000061a1 l .debug_str 0000000000000000 .LASF72 +00000000000063e7 l .debug_str 0000000000000000 .LASF73 +000000000000613b l .debug_str 0000000000000000 .LASF74 +0000000000006735 l .debug_str 0000000000000000 .LASF75 +0000000000005f60 l .debug_str 0000000000000000 .LASF76 +000000000000607a l .debug_str 0000000000000000 .LASF77 +00000000000065dc l .debug_str 0000000000000000 .LASF78 +000000000000633d l .debug_str 0000000000000000 .LASF79 +000000000000676f l .debug_str 0000000000000000 .LASF80 +0000000000006576 l .debug_str 0000000000000000 .LASF81 +0000000000005e55 l .debug_str 0000000000000000 .LASF82 +0000000000006211 l .debug_str 0000000000000000 .LASF83 +00000000000063bd l .debug_str 0000000000000000 .LASF84 +0000000000006592 l .debug_str 0000000000000000 .LASF85 +00000000000063f0 l .debug_str 0000000000000000 .LASF86 +00000000000060db l .debug_str 0000000000000000 .LASF87 +00000000000061ca l .debug_str 0000000000000000 .LASF88 +000000000000672a l .debug_str 0000000000000000 .LASF89 +0000000000006327 l .debug_str 0000000000000000 .LASF90 +0000000000005f8d l .debug_str 0000000000000000 .LASF91 +0000000000006381 l .debug_str 0000000000000000 .LASF92 +000000000000609a l .debug_str 0000000000000000 .LASF93 +00000000000060f5 l .debug_str 0000000000000000 .LASF94 +000000000000671d l .debug_str 0000000000000000 .LASF95 +0000000000006456 l .debug_str 0000000000000000 .LASF96 +000000000000656b l .debug_str 0000000000000000 .LASF97 +0000000000006197 l .debug_str 0000000000000000 .LASF98 +0000000000006070 l .debug_str 0000000000000000 .LASF99 +0000000000006178 l .debug_str 0000000000000000 .LASF100 +0000000000006532 l .debug_str 0000000000000000 .LASF101 +00000000000067b2 l .debug_str 0000000000000000 .LASF102 +000000000000630e l .debug_str 0000000000000000 .LASF103 +000000000000604f l .debug_str 0000000000000000 .LASF104 +00000000000062dc l .debug_str 0000000000000000 .LASF105 +0000000000005f48 l .debug_str 0000000000000000 .LASF106 +00000000000065c6 l .debug_str 0000000000000000 .LASF107 +000000000000601e l .debug_str 0000000000000000 .LASF108 +0000000000005ea4 l .debug_str 0000000000000000 .LASF109 +000000000000638c l .debug_str 0000000000000000 .LASF110 +00000000000063f9 l .debug_str 0000000000000000 .LASF111 +000000000000675e l .debug_str 0000000000000000 .LASF112 +0000000000005ef1 l .debug_str 0000000000000000 .LASF113 +000000000000651b l .debug_str 0000000000000000 .LASF114 +00000000000064cc l .debug_str 0000000000000000 .LASF115 +0000000000005e20 l .debug_str 0000000000000000 .LASF116 +0000000000006249 l .debug_str 0000000000000000 .LASF117 +00000000000065f2 l .debug_str 0000000000000000 .LASF118 +0000000000005fb2 l .debug_str 0000000000000000 .LASF119 +0000000000005ff6 l .debug_str 0000000000000000 .LASF120 +000000000000659f l .debug_str 0000000000000000 .LASF121 +000000000000662f l .debug_str 0000000000000000 .LASF122 +000000000000611c l .debug_str 0000000000000000 .LASF123 +000000000000600f l .debug_str 0000000000000000 .LASF124 +0000000000006203 l .debug_str 0000000000000000 .LASF125 +00000000000065ba l .debug_str 0000000000000000 .LASF126 +00000000000060a5 l .debug_str 0000000000000000 .LASF127 +0000000000006302 l .debug_str 0000000000000000 .LASF128 +0000000000006424 l .debug_str 0000000000000000 .LASF129 +000000000000636d l .debug_str 0000000000000000 .LASF130 +0000000000005e93 l .debug_str 0000000000000000 .LASF131 +0000000000006157 l .debug_str 0000000000000000 .LASF132 +00000000000064b8 l .debug_str 0000000000000000 .LASF133 +000000000000650e l .debug_str 0000000000000000 .LASF134 +0000000000006778 l .debug_str 0000000000000000 .LASF135 +0000000000005e6f l .debug_str 0000000000000000 .LASF136 +00000000000063d2 l .debug_str 0000000000000000 .LASF137 +0000000000006083 l .debug_str 0000000000000000 .LASF138 +0000000000006783 l .debug_str 0000000000000000 .LASF139 +0000000000005f7f l .debug_str 0000000000000000 .LASF140 +000000000000670b l .debug_str 0000000000000000 .LASF141 +0000000000005ec1 l .debug_str 0000000000000000 .LASF142 +000000000000629e l .debug_str 0000000000000000 .LASF143 +00000000000064f4 l .debug_str 0000000000000000 .LASF144 +00000000000064fd l .debug_str 0000000000000000 .LASF145 +0000000000006413 l .debug_str 0000000000000000 .LASF146 +0000000000006034 l .debug_str 0000000000000000 .LASF147 +00000000000061bb l .debug_str 0000000000000000 .LASF148 +0000000000006643 l .debug_str 0000000000000000 .LASF153 +0000000000001936 l .text 0000000000000000 .LFB7 +0000000000001942 l .text 0000000000000000 .LFE7 +00000000000064ad l .debug_str 0000000000000000 .LASF149 +0000000000004a1d l .debug_loc 0000000000000000 .LLST0 +0000000000001938 l .text 0000000000000000 .LBB4 +0000000000001940 l .text 0000000000000000 .LBE4 +0000000000004a56 l .debug_loc 0000000000000000 .LLST1 +0000000000004a7a l .debug_loc 0000000000000000 .LLST2 +0000000000006090 l .debug_str 0000000000000000 .LASF154 +0000000000001936 l .text 0000000000000000 .LVL0 +000000000000193a l .text 0000000000000000 .LVL2 +0000000000001938 l .text 0000000000000000 .LVL1 +0000000000001940 l .text 0000000000000000 .LVL3 +0000000000007759 l .debug_info 0000000000000000 .Ldebug_info0 +0000000000001936 l .text 0000000000000000 .L0 +0000000000001936 l .text 0000000000000000 .L0 +0000000000001936 l .text 0000000000000000 .L0 +0000000000001938 l .text 0000000000000000 .L0 +0000000000001938 l .text 0000000000000000 .L0 +000000000000193a l .text 0000000000000000 .L0 +000000000000193a l .text 0000000000000000 .L0 +000000000000193e l .text 0000000000000000 .L0 +0000000000001940 l .text 0000000000000000 .L0 +0000000000001940 l .text 0000000000000000 .L0 +0000000000001940 l .text 0000000000000000 .L0 +0000000000001940 l .text 0000000000000000 .L0 +0000000000001942 l .text 0000000000000000 .L0 +0000000000000ca0 l .debug_frame 0000000000000000 .L0 +0000000000001936 l .text 0000000000000000 .L0 +0000000000001942 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 PROXY_clock_gettime.c +0000000000002aff l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000007049 l .debug_str 0000000000000000 .LASF157 +00000000000068c0 l .debug_str 0000000000000000 .LASF158 +0000000000006e8d l .debug_str 0000000000000000 .LASF159 +0000000000000a40 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000000621d l .debug_line 0000000000000000 .Ldebug_line0 +000000000000693c l .debug_str 0000000000000000 .LASF0 +0000000000006d8e l .debug_str 0000000000000000 .LASF1 +0000000000006dcb l .debug_str 0000000000000000 .LASF2 +0000000000006b4c l .debug_str 0000000000000000 .LASF3 +0000000000006810 l .debug_str 0000000000000000 .LASF7 +0000000000006aca l .debug_str 0000000000000000 .LASF4 +00000000000069a9 l .debug_str 0000000000000000 .LASF5 +0000000000006af2 l .debug_str 0000000000000000 .LASF6 +0000000000006c0d l .debug_str 0000000000000000 .LASF8 +0000000000006885 l .debug_str 0000000000000000 .LASF9 +0000000000006e6a l .debug_str 0000000000000000 .LASF10 +00000000000067fc l .debug_str 0000000000000000 .LASF11 +0000000000006d32 l .debug_str 0000000000000000 .LASF12 +0000000000007168 l .debug_str 0000000000000000 .LASF13 +0000000000006eb9 l .debug_str 0000000000000000 .LASF14 +0000000000006dde l .debug_str 0000000000000000 .LASF160 +0000000000006ca6 l .debug_str 0000000000000000 .LASF15 +0000000000006c85 l .debug_str 0000000000000000 .LASF16 +0000000000006c8d l .debug_str 0000000000000000 .LASF17 +0000000000006e41 l .debug_str 0000000000000000 .LASF18 +0000000000006a99 l .debug_str 0000000000000000 .LASF19 +000000000000710b l .debug_str 0000000000000000 .LASF20 +00000000000071ab l .debug_str 0000000000000000 .LASF21 +00000000000068fe l .debug_str 0000000000000000 .LASF22 +0000000000007194 l .debug_str 0000000000000000 .LASF23 +0000000000006cad l .debug_str 0000000000000000 .LASF24 +0000000000007015 l .debug_str 0000000000000000 .LASF25 +0000000000006f57 l .debug_str 0000000000000000 .LASF26 +0000000000006f44 l .debug_str 0000000000000000 .LASF27 +0000000000006c23 l .debug_str 0000000000000000 .LASF28 +0000000000007146 l .debug_str 0000000000000000 .LASF29 +0000000000006b04 l .debug_str 0000000000000000 .LASF30 +0000000000006e73 l .debug_str 0000000000000000 .LASF31 +0000000000006cd0 l .debug_str 0000000000000000 .LASF32 +0000000000006e5a l .debug_str 0000000000000000 .LASF33 +0000000000006aae l .debug_str 0000000000000000 .LASF34 +0000000000006b9a l .debug_str 0000000000000000 .LASF35 +0000000000006d4c l .debug_str 0000000000000000 .LASF36 +0000000000006995 l .debug_str 0000000000000000 .LASF37 +0000000000006bc5 l .debug_str 0000000000000000 .LASF38 +0000000000006c53 l .debug_str 0000000000000000 .LASF39 +0000000000006825 l .debug_str 0000000000000000 .LASF40 +0000000000007029 l .debug_str 0000000000000000 .LASF41 +0000000000006e35 l .debug_str 0000000000000000 .LASF42 +0000000000006eee l .debug_str 0000000000000000 .LASF43 +00000000000068ee l .debug_str 0000000000000000 .LASF44 +0000000000006e2a l .debug_str 0000000000000000 .LASF45 +0000000000006db7 l .debug_str 0000000000000000 .LASF46 +00000000000067c6 l .debug_str 0000000000000000 .LASF47 +0000000000006ad7 l .debug_str 0000000000000000 .LASF48 +0000000000006d9c l .debug_str 0000000000000000 .LASF49 +0000000000006a08 l .debug_str 0000000000000000 .LASF50 +0000000000006feb l .debug_str 0000000000000000 .LASF51 +0000000000006c76 l .debug_str 0000000000000000 .LASF52 +0000000000006960 l .debug_str 0000000000000000 .LASF53 +00000000000068de l .debug_str 0000000000000000 .LASF54 +0000000000006cbc l .debug_str 0000000000000000 .LASF55 +0000000000006862 l .debug_str 0000000000000000 .LASF56 +0000000000006f86 l .debug_str 0000000000000000 .LASF57 +0000000000006a7d l .debug_str 0000000000000000 .LASF58 +00000000000067eb l .debug_str 0000000000000000 .LASF59 +0000000000006c65 l .debug_str 0000000000000000 .LASF60 +0000000000006b7b l .debug_str 0000000000000000 .LASF61 +00000000000070f9 l .debug_str 0000000000000000 .LASF62 +0000000000006b2c l .debug_str 0000000000000000 .LASF63 +0000000000006c15 l .debug_str 0000000000000000 .LASF64 +0000000000006a2b l .debug_str 0000000000000000 .LASF65 +0000000000006bd9 l .debug_str 0000000000000000 .LASF66 +0000000000006971 l .debug_str 0000000000000000 .LASF67 +000000000000713c l .debug_str 0000000000000000 .LASF68 +0000000000006933 l .debug_str 0000000000000000 .LASF69 +0000000000006a8f l .debug_str 0000000000000000 .LASF70 +00000000000068b6 l .debug_str 0000000000000000 .LASF71 +0000000000006cf7 l .debug_str 0000000000000000 .LASF72 +00000000000067bd l .debug_str 0000000000000000 .LASF73 +000000000000687a l .debug_str 0000000000000000 .LASF74 +0000000000006834 l .debug_str 0000000000000000 .LASF75 +0000000000006be8 l .debug_str 0000000000000000 .LASF76 +00000000000069b2 l .debug_str 0000000000000000 .LASF77 +0000000000006d44 l .debug_str 0000000000000000 .LASF78 +0000000000006dd5 l .debug_str 0000000000000000 .LASF79 +0000000000006b22 l .debug_str 0000000000000000 .LASF80 +000000000000712e l .debug_str 0000000000000000 .LASF81 +0000000000006929 l .debug_str 0000000000000000 .LASF82 +0000000000006a43 l .debug_str 0000000000000000 .LASF83 +0000000000006fe2 l .debug_str 0000000000000000 .LASF84 +0000000000006d39 l .debug_str 0000000000000000 .LASF85 +0000000000007172 l .debug_str 0000000000000000 .LASF86 +0000000000006f7c l .debug_str 0000000000000000 .LASF87 +0000000000006806 l .debug_str 0000000000000000 .LASF88 +0000000000006c02 l .debug_str 0000000000000000 .LASF89 +0000000000006dab l .debug_str 0000000000000000 .LASF90 +0000000000006f98 l .debug_str 0000000000000000 .LASF91 +0000000000006de7 l .debug_str 0000000000000000 .LASF92 +0000000000006aa4 l .debug_str 0000000000000000 .LASF93 +0000000000006bbb l .debug_str 0000000000000000 .LASF94 +0000000000007123 l .debug_str 0000000000000000 .LASF95 +0000000000006d27 l .debug_str 0000000000000000 .LASF96 +0000000000006956 l .debug_str 0000000000000000 .LASF97 +0000000000006d6f l .debug_str 0000000000000000 .LASF98 +0000000000006a63 l .debug_str 0000000000000000 .LASF99 +0000000000006abe l .debug_str 0000000000000000 .LASF100 +0000000000007116 l .debug_str 0000000000000000 .LASF101 +0000000000006e4d l .debug_str 0000000000000000 .LASF102 +0000000000006f71 l .debug_str 0000000000000000 .LASF103 +0000000000006b90 l .debug_str 0000000000000000 .LASF104 +0000000000006a39 l .debug_str 0000000000000000 .LASF105 +0000000000006b71 l .debug_str 0000000000000000 .LASF106 +0000000000006f38 l .debug_str 0000000000000000 .LASF107 +00000000000071b5 l .debug_str 0000000000000000 .LASF108 +0000000000006d0e l .debug_str 0000000000000000 .LASF109 +0000000000006a18 l .debug_str 0000000000000000 .LASF110 +0000000000006cdc l .debug_str 0000000000000000 .LASF111 +0000000000006911 l .debug_str 0000000000000000 .LASF112 +0000000000006fcc l .debug_str 0000000000000000 .LASF113 +00000000000069e7 l .debug_str 0000000000000000 .LASF114 +000000000000684f l .debug_str 0000000000000000 .LASF115 +0000000000006d7a l .debug_str 0000000000000000 .LASF116 +0000000000006df0 l .debug_str 0000000000000000 .LASF117 +0000000000007157 l .debug_str 0000000000000000 .LASF118 +000000000000689c l .debug_str 0000000000000000 .LASF119 +0000000000006f21 l .debug_str 0000000000000000 .LASF120 +0000000000006ed2 l .debug_str 0000000000000000 .LASF121 +00000000000067d1 l .debug_str 0000000000000000 .LASF122 +0000000000006c3a l .debug_str 0000000000000000 .LASF123 +0000000000006ff8 l .debug_str 0000000000000000 .LASF124 +000000000000697b l .debug_str 0000000000000000 .LASF125 +00000000000069bf l .debug_str 0000000000000000 .LASF126 +0000000000006fa5 l .debug_str 0000000000000000 .LASF127 +0000000000007035 l .debug_str 0000000000000000 .LASF128 +0000000000006ae5 l .debug_str 0000000000000000 .LASF129 +00000000000069d8 l .debug_str 0000000000000000 .LASF130 +0000000000006bf4 l .debug_str 0000000000000000 .LASF131 +0000000000006fc0 l .debug_str 0000000000000000 .LASF132 +0000000000006a6e l .debug_str 0000000000000000 .LASF133 +0000000000006d02 l .debug_str 0000000000000000 .LASF134 +0000000000006e1b l .debug_str 0000000000000000 .LASF135 +0000000000006d5b l .debug_str 0000000000000000 .LASF136 +000000000000683e l .debug_str 0000000000000000 .LASF137 +0000000000006b3e l .debug_str 0000000000000000 .LASF138 +0000000000006ebe l .debug_str 0000000000000000 .LASF139 +0000000000006f14 l .debug_str 0000000000000000 .LASF140 +000000000000717b l .debug_str 0000000000000000 .LASF141 +000000000000681a l .debug_str 0000000000000000 .LASF142 +0000000000006dc0 l .debug_str 0000000000000000 .LASF143 +0000000000006a4c l .debug_str 0000000000000000 .LASF144 +0000000000007186 l .debug_str 0000000000000000 .LASF145 +0000000000006948 l .debug_str 0000000000000000 .LASF146 +0000000000006b5f l .debug_str 0000000000000000 .LASF147 +000000000000686c l .debug_str 0000000000000000 .LASF148 +0000000000006c97 l .debug_str 0000000000000000 .LASF149 +0000000000006efa l .debug_str 0000000000000000 .LASF150 +0000000000006f03 l .debug_str 0000000000000000 .LASF151 +0000000000006e0a l .debug_str 0000000000000000 .LASF152 +00000000000069fd l .debug_str 0000000000000000 .LASF153 +0000000000006bac l .debug_str 0000000000000000 .LASF154 +0000000000006b14 l .debug_str 0000000000000000 .LASF161 +0000000000001942 l .text 0000000000000000 .LFB7 +0000000000001956 l .text 0000000000000000 .LFE7 +0000000000006ead l .debug_str 0000000000000000 .LASF155 +0000000000004aa5 l .debug_loc 0000000000000000 .LLST0 +0000000000006eb3 l .debug_str 0000000000000000 .LASF156 +0000000000004ade l .debug_loc 0000000000000000 .LLST1 +0000000000001946 l .text 0000000000000000 .LBB4 +0000000000001952 l .text 0000000000000000 .LBE4 +0000000000004b14 l .debug_loc 0000000000000000 .LLST2 +0000000000004b39 l .debug_loc 0000000000000000 .LLST3 +0000000000004b6f l .debug_loc 0000000000000000 .LLST4 +0000000000006a59 l .debug_str 0000000000000000 .LASF162 +0000000000001942 l .text 0000000000000000 .LVL0 +000000000000194a l .text 0000000000000000 .LVL3 +000000000000194c l .text 0000000000000000 .LVL4 +0000000000001946 l .text 0000000000000000 .LVL2 +0000000000001952 l .text 0000000000000000 .LVL5 +0000000000001944 l .text 0000000000000000 .LVL1 +0000000000007bd1 l .debug_info 0000000000000000 .Ldebug_info0 +0000000000001942 l .text 0000000000000000 .L0 +0000000000001942 l .text 0000000000000000 .L0 +0000000000001942 l .text 0000000000000000 .L0 +0000000000001946 l .text 0000000000000000 .L0 +0000000000001946 l .text 0000000000000000 .L0 +000000000000194a l .text 0000000000000000 .L0 +000000000000194a l .text 0000000000000000 .L0 +000000000000194c l .text 0000000000000000 .L0 +000000000000194c l .text 0000000000000000 .L0 +0000000000001950 l .text 0000000000000000 .L0 +0000000000001952 l .text 0000000000000000 .L0 +0000000000001952 l .text 0000000000000000 .L0 +0000000000001956 l .text 0000000000000000 .L0 +0000000000000cc8 l .debug_frame 0000000000000000 .L0 +0000000000001942 l .text 0000000000000000 .L0 +0000000000001956 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 PROXY_gettid.c +0000000000002c20 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +00000000000079f9 l .debug_str 0000000000000000 .LASF150 +0000000000007726 l .debug_str 0000000000000000 .LASF151 +0000000000007849 l .debug_str 0000000000000000 .LASF152 +0000000000000a60 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000000637d l .debug_line 0000000000000000 .Ldebug_line0 +000000000000732e l .debug_str 0000000000000000 .LASF0 +000000000000775c l .debug_str 0000000000000000 .LASF1 +0000000000007799 l .debug_str 0000000000000000 .LASF2 +0000000000007520 l .debug_str 0000000000000000 .LASF3 +00000000000074bc l .debug_str 0000000000000000 .LASF4 +000000000000739b l .debug_str 0000000000000000 .LASF5 +00000000000074e4 l .debug_str 0000000000000000 .LASF6 +00000000000075cf l .debug_str 0000000000000000 .LASF8 +0000000000007295 l .debug_str 0000000000000000 .LASF7 +00000000000071ff l .debug_str 0000000000000000 .LASF9 +0000000000007afd l .debug_str 0000000000000000 .LASF10 +0000000000007869 l .debug_str 0000000000000000 .LASF11 +0000000000007647 l .debug_str 0000000000000000 .LASF12 +0000000000007806 l .debug_str 0000000000000000 .LASF13 +000000000000748b l .debug_str 0000000000000000 .LASF14 +00000000000076e5 l .debug_str 0000000000000000 .LASF15 +0000000000007b5e l .debug_str 0000000000000000 .LASF16 +00000000000072f0 l .debug_str 0000000000000000 .LASF17 +0000000000007b47 l .debug_str 0000000000000000 .LASF18 +0000000000007660 l .debug_str 0000000000000000 .LASF19 +00000000000079c5 l .debug_str 0000000000000000 .LASF20 +0000000000007907 l .debug_str 0000000000000000 .LASF21 +00000000000078f4 l .debug_str 0000000000000000 .LASF22 +00000000000075e5 l .debug_str 0000000000000000 .LASF23 +0000000000007b03 l .debug_str 0000000000000000 .LASF24 +0000000000007213 l .debug_str 0000000000000000 .LASF25 +000000000000782f l .debug_str 0000000000000000 .LASF26 +0000000000007683 l .debug_str 0000000000000000 .LASF27 +000000000000781f l .debug_str 0000000000000000 .LASF28 +00000000000074a0 l .debug_str 0000000000000000 .LASF29 +000000000000755c l .debug_str 0000000000000000 .LASF30 +0000000000007703 l .debug_str 0000000000000000 .LASF31 +0000000000007387 l .debug_str 0000000000000000 .LASF32 +0000000000007587 l .debug_str 0000000000000000 .LASF33 +0000000000007615 l .debug_str 0000000000000000 .LASF34 +000000000000722e l .debug_str 0000000000000000 .LASF35 +00000000000079d9 l .debug_str 0000000000000000 .LASF36 +00000000000077fa l .debug_str 0000000000000000 .LASF37 +000000000000789e l .debug_str 0000000000000000 .LASF38 +00000000000072e0 l .debug_str 0000000000000000 .LASF39 +00000000000077ef l .debug_str 0000000000000000 .LASF40 +0000000000007785 l .debug_str 0000000000000000 .LASF41 +00000000000071c9 l .debug_str 0000000000000000 .LASF42 +00000000000074c9 l .debug_str 0000000000000000 .LASF43 +000000000000776a l .debug_str 0000000000000000 .LASF44 +00000000000073fa l .debug_str 0000000000000000 .LASF45 +000000000000799b l .debug_str 0000000000000000 .LASF46 +0000000000007638 l .debug_str 0000000000000000 .LASF47 +0000000000007352 l .debug_str 0000000000000000 .LASF48 +00000000000072d0 l .debug_str 0000000000000000 .LASF49 +000000000000766f l .debug_str 0000000000000000 .LASF50 +000000000000726b l .debug_str 0000000000000000 .LASF51 +0000000000007936 l .debug_str 0000000000000000 .LASF52 +000000000000746f l .debug_str 0000000000000000 .LASF53 +00000000000071ee l .debug_str 0000000000000000 .LASF54 +0000000000007627 l .debug_str 0000000000000000 .LASF55 +000000000000753d l .debug_str 0000000000000000 .LASF56 +0000000000007aa9 l .debug_str 0000000000000000 .LASF57 +0000000000007500 l .debug_str 0000000000000000 .LASF58 +00000000000075d7 l .debug_str 0000000000000000 .LASF59 +000000000000741d l .debug_str 0000000000000000 .LASF60 +000000000000759b l .debug_str 0000000000000000 .LASF61 +0000000000007363 l .debug_str 0000000000000000 .LASF62 +0000000000007af3 l .debug_str 0000000000000000 .LASF63 +0000000000007325 l .debug_str 0000000000000000 .LASF64 +0000000000007481 l .debug_str 0000000000000000 .LASF65 +00000000000072c6 l .debug_str 0000000000000000 .LASF66 +00000000000076aa l .debug_str 0000000000000000 .LASF67 +00000000000071c0 l .debug_str 0000000000000000 .LASF68 +000000000000728a l .debug_str 0000000000000000 .LASF69 +000000000000723d l .debug_str 0000000000000000 .LASF70 +00000000000075aa l .debug_str 0000000000000000 .LASF71 +00000000000073a4 l .debug_str 0000000000000000 .LASF72 +00000000000076fb l .debug_str 0000000000000000 .LASF73 +00000000000077a3 l .debug_str 0000000000000000 .LASF74 +00000000000074f6 l .debug_str 0000000000000000 .LASF75 +0000000000007ae5 l .debug_str 0000000000000000 .LASF76 +000000000000731b l .debug_str 0000000000000000 .LASF77 +0000000000007435 l .debug_str 0000000000000000 .LASF78 +0000000000007992 l .debug_str 0000000000000000 .LASF79 +00000000000076f0 l .debug_str 0000000000000000 .LASF80 +0000000000007b25 l .debug_str 0000000000000000 .LASF81 +000000000000792c l .debug_str 0000000000000000 .LASF82 +0000000000007209 l .debug_str 0000000000000000 .LASF83 +00000000000075c4 l .debug_str 0000000000000000 .LASF84 +0000000000007779 l .debug_str 0000000000000000 .LASF85 +0000000000007948 l .debug_str 0000000000000000 .LASF86 +00000000000077ac l .debug_str 0000000000000000 .LASF87 +0000000000007496 l .debug_str 0000000000000000 .LASF88 +000000000000757d l .debug_str 0000000000000000 .LASF89 +0000000000007ada l .debug_str 0000000000000000 .LASF90 +00000000000076da l .debug_str 0000000000000000 .LASF91 +0000000000007348 l .debug_str 0000000000000000 .LASF92 +000000000000773d l .debug_str 0000000000000000 .LASF93 +0000000000007455 l .debug_str 0000000000000000 .LASF94 +00000000000074b0 l .debug_str 0000000000000000 .LASF95 +0000000000007acd l .debug_str 0000000000000000 .LASF96 +0000000000007812 l .debug_str 0000000000000000 .LASF97 +0000000000007921 l .debug_str 0000000000000000 .LASF98 +0000000000007552 l .debug_str 0000000000000000 .LASF99 +000000000000742b l .debug_str 0000000000000000 .LASF100 +0000000000007533 l .debug_str 0000000000000000 .LASF101 +00000000000078e8 l .debug_str 0000000000000000 .LASF102 +0000000000007b68 l .debug_str 0000000000000000 .LASF103 +00000000000076c1 l .debug_str 0000000000000000 .LASF104 +000000000000740a l .debug_str 0000000000000000 .LASF105 +000000000000768f l .debug_str 0000000000000000 .LASF106 +0000000000007303 l .debug_str 0000000000000000 .LASF107 +000000000000797c l .debug_str 0000000000000000 .LASF108 +00000000000073d9 l .debug_str 0000000000000000 .LASF109 +0000000000007258 l .debug_str 0000000000000000 .LASF110 +0000000000007748 l .debug_str 0000000000000000 .LASF111 +00000000000077b5 l .debug_str 0000000000000000 .LASF112 +0000000000007b14 l .debug_str 0000000000000000 .LASF113 +00000000000072ac l .debug_str 0000000000000000 .LASF114 +00000000000078d1 l .debug_str 0000000000000000 .LASF115 +0000000000007882 l .debug_str 0000000000000000 .LASF116 +00000000000071d4 l .debug_str 0000000000000000 .LASF117 +00000000000075fc l .debug_str 0000000000000000 .LASF118 +00000000000079a8 l .debug_str 0000000000000000 .LASF119 +000000000000736d l .debug_str 0000000000000000 .LASF120 +00000000000073b1 l .debug_str 0000000000000000 .LASF121 +0000000000007955 l .debug_str 0000000000000000 .LASF122 +00000000000079e5 l .debug_str 0000000000000000 .LASF123 +00000000000074d7 l .debug_str 0000000000000000 .LASF124 +00000000000073ca l .debug_str 0000000000000000 .LASF125 +00000000000075b6 l .debug_str 0000000000000000 .LASF126 +0000000000007970 l .debug_str 0000000000000000 .LASF127 +0000000000007460 l .debug_str 0000000000000000 .LASF128 +00000000000076b5 l .debug_str 0000000000000000 .LASF129 +00000000000077e0 l .debug_str 0000000000000000 .LASF130 +0000000000007712 l .debug_str 0000000000000000 .LASF131 +0000000000007247 l .debug_str 0000000000000000 .LASF132 +0000000000007512 l .debug_str 0000000000000000 .LASF133 +000000000000786e l .debug_str 0000000000000000 .LASF134 +00000000000078c4 l .debug_str 0000000000000000 .LASF135 +0000000000007b2e l .debug_str 0000000000000000 .LASF136 +0000000000007223 l .debug_str 0000000000000000 .LASF137 +000000000000778e l .debug_str 0000000000000000 .LASF138 +000000000000743e l .debug_str 0000000000000000 .LASF139 +0000000000007b39 l .debug_str 0000000000000000 .LASF140 +000000000000733a l .debug_str 0000000000000000 .LASF141 +0000000000007abb l .debug_str 0000000000000000 .LASF142 +000000000000727c l .debug_str 0000000000000000 .LASF143 +0000000000007651 l .debug_str 0000000000000000 .LASF144 +00000000000078aa l .debug_str 0000000000000000 .LASF145 +00000000000078b3 l .debug_str 0000000000000000 .LASF146 +00000000000077cf l .debug_str 0000000000000000 .LASF147 +00000000000073ef l .debug_str 0000000000000000 .LASF148 +000000000000756e l .debug_str 0000000000000000 .LASF149 +0000000000007275 l .debug_str 0000000000000000 .LASF153 +0000000000001956 l .text 0000000000000000 .LFB7 +0000000000001962 l .text 0000000000000000 .LFE7 +0000000000001956 l .text 0000000000000000 .LBB4 +000000000000195e l .text 0000000000000000 .LBE4 +0000000000004b9a l .debug_loc 0000000000000000 .LLST0 +000000000000744b l .debug_str 0000000000000000 .LASF154 +0000000000001956 l .text 0000000000000000 .LVL0 +000000000000195e l .text 0000000000000000 .LVL1 +00000000000080e2 l .debug_info 0000000000000000 .Ldebug_info0 +0000000000001956 l .text 0000000000000000 .L0 +0000000000001956 l .text 0000000000000000 .L0 +0000000000001956 l .text 0000000000000000 .L0 +0000000000001956 l .text 0000000000000000 .L0 +0000000000001958 l .text 0000000000000000 .L0 +000000000000195c l .text 0000000000000000 .L0 +000000000000195e l .text 0000000000000000 .L0 +000000000000195e l .text 0000000000000000 .L0 +0000000000001962 l .text 0000000000000000 .L0 +0000000000000cf0 l .debug_frame 0000000000000000 .L0 +0000000000001956 l .text 0000000000000000 .L0 +0000000000001962 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 PROXY_nx_pthread_exit.c +000000000000196e l .text 0000000000000000 .L2 +0000000000002ce7 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +00000000000083f3 l .debug_str 0000000000000000 .LASF154 +0000000000008080 l .debug_str 0000000000000000 .LASF155 +000000000000822e l .debug_str 0000000000000000 .LASF156 +0000000000000a80 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +00000000000064b4 l .debug_line 0000000000000000 .Ldebug_line0 +0000000000007ce8 l .debug_str 0000000000000000 .LASF0 +0000000000008141 l .debug_str 0000000000000000 .LASF1 +000000000000817e l .debug_str 0000000000000000 .LASF2 +0000000000007eea l .debug_str 0000000000000000 .LASF3 +0000000000007e76 l .debug_str 0000000000000000 .LASF4 +0000000000007d55 l .debug_str 0000000000000000 .LASF5 +0000000000007eae l .debug_str 0000000000000000 .LASF6 +0000000000007f99 l .debug_str 0000000000000000 .LASF8 +0000000000007c41 l .debug_str 0000000000000000 .LASF7 +0000000000007bb2 l .debug_str 0000000000000000 .LASF9 +0000000000008254 l .debug_str 0000000000000000 .LASF10 +0000000000008340 l .debug_str 0000000000000000 .LASF11 +000000000000813b l .debug_str 0000000000000000 .LASF12 +0000000000007cda l .debug_str 0000000000000000 .LASF13 +000000000000801b l .debug_str 0000000000000000 .LASF14 +0000000000008011 l .debug_str 0000000000000000 .LASF15 +00000000000081eb l .debug_str 0000000000000000 .LASF16 +0000000000007e45 l .debug_str 0000000000000000 .LASF17 +00000000000080db l .debug_str 0000000000000000 .LASF18 +0000000000008552 l .debug_str 0000000000000000 .LASF19 +0000000000007c9c l .debug_str 0000000000000000 .LASF20 +000000000000853b l .debug_str 0000000000000000 .LASF21 +0000000000008036 l .debug_str 0000000000000000 .LASF22 +00000000000083bf l .debug_str 0000000000000000 .LASF23 +00000000000082f2 l .debug_str 0000000000000000 .LASF24 +00000000000082df l .debug_str 0000000000000000 .LASF25 +0000000000007faf l .debug_str 0000000000000000 .LASF26 +00000000000084f7 l .debug_str 0000000000000000 .LASF27 +0000000000007bc6 l .debug_str 0000000000000000 .LASF28 +0000000000008214 l .debug_str 0000000000000000 .LASF29 +0000000000008059 l .debug_str 0000000000000000 .LASF30 +0000000000008204 l .debug_str 0000000000000000 .LASF31 +0000000000007e5a l .debug_str 0000000000000000 .LASF32 +0000000000007f26 l .debug_str 0000000000000000 .LASF33 +00000000000080f9 l .debug_str 0000000000000000 .LASF34 +0000000000007d41 l .debug_str 0000000000000000 .LASF35 +0000000000007f51 l .debug_str 0000000000000000 .LASF36 +0000000000007fdf l .debug_str 0000000000000000 .LASF37 +0000000000007be1 l .debug_str 0000000000000000 .LASF38 +00000000000083d3 l .debug_str 0000000000000000 .LASF39 +00000000000081df l .debug_str 0000000000000000 .LASF40 +0000000000008289 l .debug_str 0000000000000000 .LASF41 +0000000000007c8c l .debug_str 0000000000000000 .LASF42 +00000000000081d4 l .debug_str 0000000000000000 .LASF43 +000000000000816a l .debug_str 0000000000000000 .LASF44 +0000000000007b7c l .debug_str 0000000000000000 .LASF45 +0000000000007e83 l .debug_str 0000000000000000 .LASF46 +000000000000814f l .debug_str 0000000000000000 .LASF47 +0000000000007db4 l .debug_str 0000000000000000 .LASF48 +0000000000008395 l .debug_str 0000000000000000 .LASF49 +0000000000008002 l .debug_str 0000000000000000 .LASF50 +0000000000007d0c l .debug_str 0000000000000000 .LASF51 +0000000000007c7c l .debug_str 0000000000000000 .LASF52 +0000000000008045 l .debug_str 0000000000000000 .LASF53 +0000000000007c1e l .debug_str 0000000000000000 .LASF54 +0000000000008321 l .debug_str 0000000000000000 .LASF55 +0000000000007e29 l .debug_str 0000000000000000 .LASF56 +0000000000007ba1 l .debug_str 0000000000000000 .LASF57 +0000000000007ff1 l .debug_str 0000000000000000 .LASF58 +0000000000007f07 l .debug_str 0000000000000000 .LASF59 +00000000000084a3 l .debug_str 0000000000000000 .LASF60 +0000000000007eca l .debug_str 0000000000000000 .LASF61 +0000000000007fa1 l .debug_str 0000000000000000 .LASF62 +0000000000007dd7 l .debug_str 0000000000000000 .LASF63 +0000000000007f65 l .debug_str 0000000000000000 .LASF64 +0000000000007d1d l .debug_str 0000000000000000 .LASF65 +00000000000084ed l .debug_str 0000000000000000 .LASF66 +0000000000007cd1 l .debug_str 0000000000000000 .LASF67 +0000000000007e3b l .debug_str 0000000000000000 .LASF68 +0000000000007c72 l .debug_str 0000000000000000 .LASF69 +00000000000080a0 l .debug_str 0000000000000000 .LASF70 +0000000000007b73 l .debug_str 0000000000000000 .LASF71 +0000000000007c36 l .debug_str 0000000000000000 .LASF72 +0000000000007bf0 l .debug_str 0000000000000000 .LASF73 +0000000000007f74 l .debug_str 0000000000000000 .LASF74 +0000000000007d5e l .debug_str 0000000000000000 .LASF75 +00000000000080f1 l .debug_str 0000000000000000 .LASF76 +0000000000008188 l .debug_str 0000000000000000 .LASF77 +0000000000007ec0 l .debug_str 0000000000000000 .LASF78 +00000000000084df l .debug_str 0000000000000000 .LASF79 +0000000000007cc7 l .debug_str 0000000000000000 .LASF80 +0000000000007def l .debug_str 0000000000000000 .LASF81 +000000000000838c l .debug_str 0000000000000000 .LASF82 +00000000000080e6 l .debug_str 0000000000000000 .LASF83 +0000000000008519 l .debug_str 0000000000000000 .LASF84 +0000000000008317 l .debug_str 0000000000000000 .LASF85 +0000000000007bbc l .debug_str 0000000000000000 .LASF86 +0000000000007f8e l .debug_str 0000000000000000 .LASF87 +000000000000815e l .debug_str 0000000000000000 .LASF88 +0000000000008333 l .debug_str 0000000000000000 .LASF89 +0000000000008191 l .debug_str 0000000000000000 .LASF90 +0000000000007e50 l .debug_str 0000000000000000 .LASF91 +0000000000007f47 l .debug_str 0000000000000000 .LASF92 +00000000000084d4 l .debug_str 0000000000000000 .LASF93 +00000000000080d0 l .debug_str 0000000000000000 .LASF94 +0000000000007d02 l .debug_str 0000000000000000 .LASF95 +000000000000811c l .debug_str 0000000000000000 .LASF96 +0000000000007e0f l .debug_str 0000000000000000 .LASF97 +0000000000007e6a l .debug_str 0000000000000000 .LASF98 +00000000000084c7 l .debug_str 0000000000000000 .LASF99 +00000000000081f7 l .debug_str 0000000000000000 .LASF100 +000000000000830c l .debug_str 0000000000000000 .LASF101 +0000000000007f1c l .debug_str 0000000000000000 .LASF102 +0000000000007de5 l .debug_str 0000000000000000 .LASF103 +0000000000007efd l .debug_str 0000000000000000 .LASF104 +00000000000082d3 l .debug_str 0000000000000000 .LASF105 +000000000000855c l .debug_str 0000000000000000 .LASF106 +00000000000080b7 l .debug_str 0000000000000000 .LASF107 +0000000000007dc4 l .debug_str 0000000000000000 .LASF108 +0000000000008065 l .debug_str 0000000000000000 .LASF109 +0000000000007caf l .debug_str 0000000000000000 .LASF110 +0000000000008376 l .debug_str 0000000000000000 .LASF111 +0000000000007d93 l .debug_str 0000000000000000 .LASF112 +0000000000007c0b l .debug_str 0000000000000000 .LASF113 +0000000000008127 l .debug_str 0000000000000000 .LASF114 +000000000000819a l .debug_str 0000000000000000 .LASF115 +0000000000008508 l .debug_str 0000000000000000 .LASF116 +0000000000007c58 l .debug_str 0000000000000000 .LASF117 +00000000000082bc l .debug_str 0000000000000000 .LASF118 +000000000000826d l .debug_str 0000000000000000 .LASF119 +0000000000007b87 l .debug_str 0000000000000000 .LASF120 +0000000000007fc6 l .debug_str 0000000000000000 .LASF121 +00000000000083a2 l .debug_str 0000000000000000 .LASF122 +0000000000007d27 l .debug_str 0000000000000000 .LASF123 +0000000000007d6b l .debug_str 0000000000000000 .LASF124 +000000000000834f l .debug_str 0000000000000000 .LASF125 +00000000000083df l .debug_str 0000000000000000 .LASF126 +0000000000007e91 l .debug_str 0000000000000000 .LASF127 +0000000000007d84 l .debug_str 0000000000000000 .LASF128 +0000000000007f80 l .debug_str 0000000000000000 .LASF129 +000000000000836a l .debug_str 0000000000000000 .LASF130 +0000000000007e1a l .debug_str 0000000000000000 .LASF131 +00000000000080ab l .debug_str 0000000000000000 .LASF132 +00000000000081c5 l .debug_str 0000000000000000 .LASF133 +0000000000008108 l .debug_str 0000000000000000 .LASF134 +0000000000007bfa l .debug_str 0000000000000000 .LASF135 +0000000000007edc l .debug_str 0000000000000000 .LASF136 +0000000000008259 l .debug_str 0000000000000000 .LASF137 +00000000000082af l .debug_str 0000000000000000 .LASF138 +0000000000008522 l .debug_str 0000000000000000 .LASF139 +0000000000007bd6 l .debug_str 0000000000000000 .LASF140 +0000000000008173 l .debug_str 0000000000000000 .LASF141 +0000000000007df8 l .debug_str 0000000000000000 .LASF142 +000000000000852d l .debug_str 0000000000000000 .LASF143 +0000000000007cf4 l .debug_str 0000000000000000 .LASF144 +00000000000084b5 l .debug_str 0000000000000000 .LASF145 +0000000000007c28 l .debug_str 0000000000000000 .LASF146 +0000000000008027 l .debug_str 0000000000000000 .LASF147 +0000000000008295 l .debug_str 0000000000000000 .LASF148 +000000000000829e l .debug_str 0000000000000000 .LASF149 +00000000000081b4 l .debug_str 0000000000000000 .LASF150 +0000000000007da9 l .debug_str 0000000000000000 .LASF151 +0000000000007f38 l .debug_str 0000000000000000 .LASF152 +0000000000007e9e l .debug_str 0000000000000000 .LASF157 +0000000000001962 l .text 0000000000000000 .LFB7 +0000000000001970 l .text 0000000000000000 .LFE7 +000000000000824e l .debug_str 0000000000000000 .LASF153 +0000000000004bbe l .debug_loc 0000000000000000 .LLST0 +0000000000001964 l .text 0000000000000000 .LBB4 +000000000000196e l .text 0000000000000000 .LBE4 +0000000000004bf4 l .debug_loc 0000000000000000 .LLST1 +0000000000004c19 l .debug_loc 0000000000000000 .LLST2 +0000000000007e05 l .debug_str 0000000000000000 .LASF158 +0000000000001962 l .text 0000000000000000 .LVL0 +0000000000001968 l .text 0000000000000000 .LVL2 +0000000000001964 l .text 0000000000000000 .LVL1 +000000000000196e l .text 0000000000000000 .LVL3 +0000000000008533 l .debug_info 0000000000000000 .Ldebug_info0 +0000000000001962 l .text 0000000000000000 .L0 +0000000000001962 l .text 0000000000000000 .L0 +0000000000001962 l .text 0000000000000000 .L0 +0000000000001964 l .text 0000000000000000 .L0 +0000000000001964 l .text 0000000000000000 .L0 +0000000000001968 l .text 0000000000000000 .L0 +0000000000001968 l .text 0000000000000000 .L0 +000000000000196c l .text 0000000000000000 .L0 +000000000000196e l .text 0000000000000000 .L0 +000000000000196e l .text 0000000000000000 .L0 +000000000000196e l .text 0000000000000000 .L0 +000000000000196e l .text 0000000000000000 .L0 +0000000000001970 l .text 0000000000000000 .L0 +0000000000000d18 l .debug_frame 0000000000000000 .L0 +0000000000001962 l .text 0000000000000000 .L0 +0000000000001970 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 PROXY_nxsem_clockwait.c +0000000000002dd6 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000008e6b l .debug_str 0000000000000000 .LASF176 +0000000000008d56 l .debug_str 0000000000000000 .LASF177 +0000000000008c99 l .debug_str 0000000000000000 .LASF178 +0000000000000aa0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000000664a l .debug_line 0000000000000000 .Ldebug_line0 +0000000000008726 l .debug_str 0000000000000000 .LASF0 +0000000000008c58 l .debug_str 0000000000000000 .LASF2 +0000000000008ba9 l .debug_str 0000000000000000 .LASF1 +0000000000008fae l .debug_str 0000000000000000 .LASF3 +0000000000008be6 l .debug_str 0000000000000000 .LASF4 +000000000000896b l .debug_str 0000000000000000 .LASF5 +0000000000008603 l .debug_str 0000000000000000 .LASF6 +00000000000088e9 l .debug_str 0000000000000000 .LASF7 +000000000000879d l .debug_str 0000000000000000 .LASF8 +0000000000008911 l .debug_str 0000000000000000 .LASF9 +0000000000008a23 l .debug_str 0000000000000000 .LASF10 +0000000000008685 l .debug_str 0000000000000000 .LASF11 +0000000000008f1b l .debug_str 0000000000000000 .LASF12 +0000000000008715 l .debug_str 0000000000000000 .LASF13 +0000000000008c76 l .debug_str 0000000000000000 .LASF14 +00000000000085d5 l .debug_str 0000000000000000 .LASF15 +0000000000008b4d l .debug_str 0000000000000000 .LASF16 +0000000000008f9b l .debug_str 0000000000000000 .LASF17 +0000000000008ccb l .debug_str 0000000000000000 .LASF18 +0000000000008bf9 l .debug_str 0000000000000000 .LASF21 +0000000000008ace l .debug_str 0000000000000000 .LASF19 +0000000000008aad l .debug_str 0000000000000000 .LASF20 +0000000000008f34 l .debug_str 0000000000000000 .LASF22 +0000000000008933 l .debug_str 0000000000000000 .LASF23 +0000000000008dfe l .debug_str 0000000000000000 .LASF24 +0000000000008f3f l .debug_str 0000000000000000 .LASF25 +0000000000008c0b l .debug_str 0000000000000000 .LASF26 +0000000000008c61 l .debug_str 0000000000000000 .LASF27 +0000000000008aa8 l .debug_str 0000000000000000 .LASF28 +0000000000008c16 l .debug_str 0000000000000000 .LASF29 +0000000000008f6d l .debug_str 0000000000000000 .LASF30 +00000000000089b9 l .debug_str 0000000000000000 .LASF31 +0000000000008f23 l .debug_str 0000000000000000 .LASF32 +00000000000087b3 l .debug_str 0000000000000000 .LASF33 +0000000000008f73 l .debug_str 0000000000000000 .LASF34 +0000000000008ab5 l .debug_str 0000000000000000 .LASF35 +0000000000008b36 l .debug_str 0000000000000000 .LASF36 +00000000000088b8 l .debug_str 0000000000000000 .LASF37 +0000000000008f29 l .debug_str 0000000000000000 .LASF38 +0000000000008fe7 l .debug_str 0000000000000000 .LASF39 +00000000000086e0 l .debug_str 0000000000000000 .LASF40 +0000000000008fd0 l .debug_str 0000000000000000 .LASF41 +0000000000008ad5 l .debug_str 0000000000000000 .LASF42 +0000000000008e37 l .debug_str 0000000000000000 .LASF43 +0000000000008d89 l .debug_str 0000000000000000 .LASF44 +0000000000008d76 l .debug_str 0000000000000000 .LASF45 +0000000000008a39 l .debug_str 0000000000000000 .LASF46 +0000000000008f79 l .debug_str 0000000000000000 .LASF47 +0000000000008923 l .debug_str 0000000000000000 .LASF48 +0000000000008c7f l .debug_str 0000000000000000 .LASF49 +0000000000008af8 l .debug_str 0000000000000000 .LASF50 +0000000000008c66 l .debug_str 0000000000000000 .LASF51 +00000000000088cd l .debug_str 0000000000000000 .LASF52 +000000000000894b l .debug_str 0000000000000000 .LASF53 +0000000000008b67 l .debug_str 0000000000000000 .LASF54 +000000000000877f l .debug_str 0000000000000000 .LASF55 +00000000000089db l .debug_str 0000000000000000 .LASF56 +0000000000008a76 l .debug_str 0000000000000000 .LASF57 +0000000000008618 l .debug_str 0000000000000000 .LASF58 +0000000000008e4b l .debug_str 0000000000000000 .LASF59 +0000000000008c4c l .debug_str 0000000000000000 .LASF60 +0000000000008d00 l .debug_str 0000000000000000 .LASF61 +00000000000086d0 l .debug_str 0000000000000000 .LASF62 +0000000000008c41 l .debug_str 0000000000000000 .LASF63 +0000000000008bd2 l .debug_str 0000000000000000 .LASF64 +0000000000008586 l .debug_str 0000000000000000 .LASF65 +00000000000088f6 l .debug_str 0000000000000000 .LASF66 +0000000000008bb7 l .debug_str 0000000000000000 .LASF67 +0000000000008805 l .debug_str 0000000000000000 .LASF68 +0000000000008e0d l .debug_str 0000000000000000 .LASF69 +0000000000008a99 l .debug_str 0000000000000000 .LASF70 +000000000000874a l .debug_str 0000000000000000 .LASF71 +00000000000086c0 l .debug_str 0000000000000000 .LASF72 +0000000000008ae4 l .debug_str 0000000000000000 .LASF73 +0000000000008662 l .debug_str 0000000000000000 .LASF74 +0000000000008db8 l .debug_str 0000000000000000 .LASF75 +000000000000889c l .debug_str 0000000000000000 .LASF76 +00000000000085ab l .debug_str 0000000000000000 .LASF77 +0000000000008a88 l .debug_str 0000000000000000 .LASF78 +000000000000899a l .debug_str 0000000000000000 .LASF79 +0000000000008866 l .debug_str 0000000000000000 .LASF80 +0000000000008939 l .debug_str 0000000000000000 .LASF81 +0000000000008a2b l .debug_str 0000000000000000 .LASF82 +0000000000008828 l .debug_str 0000000000000000 .LASF83 +00000000000089ef l .debug_str 0000000000000000 .LASF84 +000000000000875b l .debug_str 0000000000000000 .LASF85 +0000000000008f63 l .debug_str 0000000000000000 .LASF86 +000000000000871d l .debug_str 0000000000000000 .LASF87 +00000000000088ae l .debug_str 0000000000000000 .LASF88 +00000000000086b6 l .debug_str 0000000000000000 .LASF89 +0000000000008b1f l .debug_str 0000000000000000 .LASF90 +000000000000857d l .debug_str 0000000000000000 .LASF91 +000000000000867a l .debug_str 0000000000000000 .LASF92 +0000000000008627 l .debug_str 0000000000000000 .LASF93 +00000000000089fe l .debug_str 0000000000000000 .LASF94 +00000000000087a6 l .debug_str 0000000000000000 .LASF95 +0000000000008b5f l .debug_str 0000000000000000 .LASF96 +0000000000008bf0 l .debug_str 0000000000000000 .LASF97 +000000000000870b l .debug_str 0000000000000000 .LASF98 +0000000000008f55 l .debug_str 0000000000000000 .LASF99 +0000000000008793 l .debug_str 0000000000000000 .LASF100 +0000000000008840 l .debug_str 0000000000000000 .LASF101 +0000000000008e04 l .debug_str 0000000000000000 .LASF102 +0000000000008b54 l .debug_str 0000000000000000 .LASF103 +0000000000008fa5 l .debug_str 0000000000000000 .LASF104 +0000000000008dae l .debug_str 0000000000000000 .LASF105 +00000000000085df l .debug_str 0000000000000000 .LASF106 +0000000000008a18 l .debug_str 0000000000000000 .LASF107 +0000000000008bc6 l .debug_str 0000000000000000 .LASF108 +0000000000008dca l .debug_str 0000000000000000 .LASF109 +0000000000008c02 l .debug_str 0000000000000000 .LASF110 +00000000000088c3 l .debug_str 0000000000000000 .LASF111 +00000000000089d1 l .debug_str 0000000000000000 .LASF112 +0000000000008f4a l .debug_str 0000000000000000 .LASF113 +0000000000008b42 l .debug_str 0000000000000000 .LASF114 +0000000000008740 l .debug_str 0000000000000000 .LASF115 +0000000000008b8a l .debug_str 0000000000000000 .LASF116 +0000000000008882 l .debug_str 0000000000000000 .LASF117 +00000000000088dd l .debug_str 0000000000000000 .LASF118 +0000000000008a69 l .debug_str 0000000000000000 .LASF119 +0000000000008631 l .debug_str 0000000000000000 .LASF120 +0000000000008da3 l .debug_str 0000000000000000 .LASF121 +00000000000089af l .debug_str 0000000000000000 .LASF122 +0000000000008836 l .debug_str 0000000000000000 .LASF123 +0000000000008990 l .debug_str 0000000000000000 .LASF124 +0000000000008d4a l .debug_str 0000000000000000 .LASF125 +0000000000008ff1 l .debug_str 0000000000000000 .LASF126 +00000000000085bc l .debug_str 0000000000000000 .LASF127 +0000000000008815 l .debug_str 0000000000000000 .LASF128 +0000000000008b04 l .debug_str 0000000000000000 .LASF129 +00000000000086f3 l .debug_str 0000000000000000 .LASF130 +0000000000008567 l .debug_str 0000000000000000 .LASF131 +00000000000087e4 l .debug_str 0000000000000000 .LASF132 +000000000000864f l .debug_str 0000000000000000 .LASF133 +0000000000008b95 l .debug_str 0000000000000000 .LASF134 +00000000000085e9 l .debug_str 0000000000000000 .LASF135 +0000000000008f8a l .debug_str 0000000000000000 .LASF136 +000000000000869c l .debug_str 0000000000000000 .LASF137 +0000000000008d33 l .debug_str 0000000000000000 .LASF138 +0000000000008ce4 l .debug_str 0000000000000000 .LASF139 +0000000000008591 l .debug_str 0000000000000000 .LASF140 +0000000000008a50 l .debug_str 0000000000000000 .LASF141 +0000000000008e1a l .debug_str 0000000000000000 .LASF142 +0000000000008765 l .debug_str 0000000000000000 .LASF143 +00000000000087bc l .debug_str 0000000000000000 .LASF144 +0000000000008dd7 l .debug_str 0000000000000000 .LASF145 +0000000000008e57 l .debug_str 0000000000000000 .LASF146 +0000000000008904 l .debug_str 0000000000000000 .LASF147 +00000000000087d5 l .debug_str 0000000000000000 .LASF148 +0000000000008a0a l .debug_str 0000000000000000 .LASF149 +0000000000008df2 l .debug_str 0000000000000000 .LASF150 +000000000000888d l .debug_str 0000000000000000 .LASF151 +0000000000008b2a l .debug_str 0000000000000000 .LASF152 +0000000000008c32 l .debug_str 0000000000000000 .LASF153 +0000000000008b76 l .debug_str 0000000000000000 .LASF154 +000000000000863e l .debug_str 0000000000000000 .LASF155 +000000000000895d l .debug_str 0000000000000000 .LASF156 +0000000000008cd0 l .debug_str 0000000000000000 .LASF157 +0000000000008d26 l .debug_str 0000000000000000 .LASF158 +0000000000008fb7 l .debug_str 0000000000000000 .LASF159 +000000000000860d l .debug_str 0000000000000000 .LASF160 +0000000000008bdb l .debug_str 0000000000000000 .LASF161 +0000000000008859 l .debug_str 0000000000000000 .LASF162 +0000000000008fc2 l .debug_str 0000000000000000 .LASF163 +0000000000008732 l .debug_str 0000000000000000 .LASF164 +000000000000897e l .debug_str 0000000000000000 .LASF165 +000000000000866c l .debug_str 0000000000000000 .LASF166 +0000000000008abf l .debug_str 0000000000000000 .LASF167 +0000000000008d0c l .debug_str 0000000000000000 .LASF168 +0000000000008d15 l .debug_str 0000000000000000 .LASF169 +0000000000008c21 l .debug_str 0000000000000000 .LASF170 +00000000000087fa l .debug_str 0000000000000000 .LASF171 +00000000000089c2 l .debug_str 0000000000000000 .LASF172 +0000000000008849 l .debug_str 0000000000000000 .LASF179 +0000000000001970 l .text 0000000000000000 .LFB7 +0000000000001986 l .text 0000000000000000 .LFE7 +0000000000008cb9 l .debug_str 0000000000000000 .LASF173 +0000000000004c4f l .debug_loc 0000000000000000 .LLST0 +0000000000008cbf l .debug_str 0000000000000000 .LASF174 +0000000000004c85 l .debug_loc 0000000000000000 .LLST1 +0000000000008cc5 l .debug_str 0000000000000000 .LASF175 +0000000000004cbe l .debug_loc 0000000000000000 .LLST2 +0000000000001976 l .text 0000000000000000 .LBB4 +0000000000001982 l .text 0000000000000000 .LBE4 +0000000000004cf4 l .debug_loc 0000000000000000 .LLST3 +0000000000004d18 l .debug_loc 0000000000000000 .LLST4 +0000000000004d4e l .debug_loc 0000000000000000 .LLST5 +0000000000004d79 l .debug_loc 0000000000000000 .LLST6 +0000000000008878 l .debug_str 0000000000000000 .LASF180 +0000000000001970 l .text 0000000000000000 .LVL0 +0000000000001978 l .text 0000000000000000 .LVL4 +000000000000197a l .text 0000000000000000 .LVL5 +000000000000197c l .text 0000000000000000 .LVL6 +0000000000001976 l .text 0000000000000000 .LVL3 +0000000000001982 l .text 0000000000000000 .LVL7 +0000000000001974 l .text 0000000000000000 .LVL2 +0000000000001972 l .text 0000000000000000 .LVL1 +00000000000089cd l .debug_info 0000000000000000 .Ldebug_info0 +0000000000001970 l .text 0000000000000000 .L0 +0000000000001970 l .text 0000000000000000 .L0 +0000000000001970 l .text 0000000000000000 .L0 +0000000000001976 l .text 0000000000000000 .L0 +0000000000001976 l .text 0000000000000000 .L0 +0000000000001978 l .text 0000000000000000 .L0 +0000000000001978 l .text 0000000000000000 .L0 +000000000000197a l .text 0000000000000000 .L0 +000000000000197a l .text 0000000000000000 .L0 +000000000000197c l .text 0000000000000000 .L0 +000000000000197c l .text 0000000000000000 .L0 +0000000000001980 l .text 0000000000000000 .L0 +0000000000001982 l .text 0000000000000000 .L0 +0000000000001982 l .text 0000000000000000 .L0 +0000000000001986 l .text 0000000000000000 .L0 +0000000000000d40 l .debug_frame 0000000000000000 .L0 +0000000000001970 l .text 0000000000000000 .L0 +0000000000001986 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 PROXY_nxsem_destroy.c +0000000000002f27 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +00000000000098b7 l .debug_str 0000000000000000 .LASF167 +0000000000009421 l .debug_str 0000000000000000 .LASF168 +0000000000009702 l .debug_str 0000000000000000 .LASF169 +0000000000000ac0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000000680d l .debug_line 0000000000000000 .Ldebug_line0 +00000000000091c1 l .debug_str 0000000000000000 .LASF0 +00000000000096ca l .debug_str 0000000000000000 .LASF2 +0000000000009624 l .debug_str 0000000000000000 .LASF1 +00000000000099f7 l .debug_str 0000000000000000 .LASF3 +0000000000009661 l .debug_str 0000000000000000 .LASF4 +00000000000093dc l .debug_str 0000000000000000 .LASF5 +000000000000936a l .debug_str 0000000000000000 .LASF6 +0000000000009238 l .debug_str 0000000000000000 .LASF7 +0000000000009392 l .debug_str 0000000000000000 .LASF8 +000000000000949f l .debug_str 0000000000000000 .LASF9 +0000000000009120 l .debug_str 0000000000000000 .LASF10 +0000000000009967 l .debug_str 0000000000000000 .LASF11 +00000000000091b0 l .debug_str 0000000000000000 .LASF12 +000000000000906a l .debug_str 0000000000000000 .LASF13 +0000000000009728 l .debug_str 0000000000000000 .LASF14 +0000000000009987 l .debug_str 0000000000000000 .LASF18 +00000000000093a4 l .debug_str 0000000000000000 .LASF15 +000000000000984a l .debug_str 0000000000000000 .LASF16 +0000000000009992 l .debug_str 0000000000000000 .LASF17 +000000000000967d l .debug_str 0000000000000000 .LASF19 +00000000000096d3 l .debug_str 0000000000000000 .LASF20 +0000000000009524 l .debug_str 0000000000000000 .LASF21 +0000000000009688 l .debug_str 0000000000000000 .LASF22 +00000000000099c0 l .debug_str 0000000000000000 .LASF23 +0000000000009418 l .debug_str 0000000000000000 .LASF24 +000000000000996f l .debug_str 0000000000000000 .LASF25 +000000000000924e l .debug_str 0000000000000000 .LASF26 +00000000000099c6 l .debug_str 0000000000000000 .LASF27 +0000000000009529 l .debug_str 0000000000000000 .LASF28 +00000000000095ad l .debug_str 0000000000000000 .LASF29 +0000000000009339 l .debug_str 0000000000000000 .LASF30 +00000000000095c4 l .debug_str 0000000000000000 .LASF31 +0000000000009a30 l .debug_str 0000000000000000 .LASF32 +000000000000917b l .debug_str 0000000000000000 .LASF33 +0000000000009a19 l .debug_str 0000000000000000 .LASF34 +000000000000954c l .debug_str 0000000000000000 .LASF35 +0000000000009883 l .debug_str 0000000000000000 .LASF36 +00000000000097d5 l .debug_str 0000000000000000 .LASF37 +00000000000097c2 l .debug_str 0000000000000000 .LASF38 +00000000000094b5 l .debug_str 0000000000000000 .LASF39 +00000000000099cc l .debug_str 0000000000000000 .LASF40 +0000000000009098 l .debug_str 0000000000000000 .LASF41 +00000000000096e8 l .debug_str 0000000000000000 .LASF42 +000000000000956f l .debug_str 0000000000000000 .LASF43 +00000000000096d8 l .debug_str 0000000000000000 .LASF44 +000000000000934e l .debug_str 0000000000000000 .LASF45 +00000000000093bc l .debug_str 0000000000000000 .LASF46 +00000000000095e2 l .debug_str 0000000000000000 .LASF47 +000000000000921a l .debug_str 0000000000000000 .LASF48 +0000000000009457 l .debug_str 0000000000000000 .LASF49 +00000000000094f2 l .debug_str 0000000000000000 .LASF50 +00000000000090b3 l .debug_str 0000000000000000 .LASF51 +0000000000009897 l .debug_str 0000000000000000 .LASF52 +00000000000096be l .debug_str 0000000000000000 .LASF53 +000000000000976c l .debug_str 0000000000000000 .LASF54 +000000000000916b l .debug_str 0000000000000000 .LASF55 +00000000000096b3 l .debug_str 0000000000000000 .LASF56 +000000000000964d l .debug_str 0000000000000000 .LASF57 +000000000000901b l .debug_str 0000000000000000 .LASF58 +0000000000009377 l .debug_str 0000000000000000 .LASF59 +0000000000009632 l .debug_str 0000000000000000 .LASF60 +00000000000092a0 l .debug_str 0000000000000000 .LASF61 +0000000000009859 l .debug_str 0000000000000000 .LASF62 +0000000000009515 l .debug_str 0000000000000000 .LASF63 +00000000000091e5 l .debug_str 0000000000000000 .LASF64 +000000000000915b l .debug_str 0000000000000000 .LASF65 +000000000000955b l .debug_str 0000000000000000 .LASF66 +00000000000090fd l .debug_str 0000000000000000 .LASF67 +0000000000009804 l .debug_str 0000000000000000 .LASF68 +000000000000931d l .debug_str 0000000000000000 .LASF69 +0000000000009040 l .debug_str 0000000000000000 .LASF70 +0000000000009504 l .debug_str 0000000000000000 .LASF71 +00000000000093f9 l .debug_str 0000000000000000 .LASF72 +00000000000092f1 l .debug_str 0000000000000000 .LASF73 +00000000000093aa l .debug_str 0000000000000000 .LASF74 +00000000000094a7 l .debug_str 0000000000000000 .LASF75 +00000000000092c3 l .debug_str 0000000000000000 .LASF76 +000000000000946b l .debug_str 0000000000000000 .LASF77 +00000000000091f6 l .debug_str 0000000000000000 .LASF78 +00000000000099b6 l .debug_str 0000000000000000 .LASF79 +00000000000091b8 l .debug_str 0000000000000000 .LASF80 +000000000000932f l .debug_str 0000000000000000 .LASF81 +0000000000009151 l .debug_str 0000000000000000 .LASF82 +0000000000009596 l .debug_str 0000000000000000 .LASF83 +0000000000009012 l .debug_str 0000000000000000 .LASF84 +0000000000009115 l .debug_str 0000000000000000 .LASF85 +00000000000090c2 l .debug_str 0000000000000000 .LASF86 +000000000000947a l .debug_str 0000000000000000 .LASF87 +0000000000009241 l .debug_str 0000000000000000 .LASF88 +00000000000095da l .debug_str 0000000000000000 .LASF89 +000000000000966b l .debug_str 0000000000000000 .LASF90 +00000000000091a6 l .debug_str 0000000000000000 .LASF91 +00000000000099a8 l .debug_str 0000000000000000 .LASF92 +000000000000922e l .debug_str 0000000000000000 .LASF93 +00000000000092db l .debug_str 0000000000000000 .LASF94 +0000000000009850 l .debug_str 0000000000000000 .LASF95 +00000000000095cf l .debug_str 0000000000000000 .LASF96 +00000000000099ee l .debug_str 0000000000000000 .LASF97 +00000000000097fa l .debug_str 0000000000000000 .LASF98 +0000000000009074 l .debug_str 0000000000000000 .LASF99 +0000000000009494 l .debug_str 0000000000000000 .LASF100 +0000000000009641 l .debug_str 0000000000000000 .LASF101 +0000000000009816 l .debug_str 0000000000000000 .LASF102 +0000000000009674 l .debug_str 0000000000000000 .LASF103 +0000000000009344 l .debug_str 0000000000000000 .LASF104 +000000000000944d l .debug_str 0000000000000000 .LASF105 +000000000000999d l .debug_str 0000000000000000 .LASF106 +00000000000095b9 l .debug_str 0000000000000000 .LASF107 +00000000000091db l .debug_str 0000000000000000 .LASF108 +0000000000009605 l .debug_str 0000000000000000 .LASF109 +0000000000009303 l .debug_str 0000000000000000 .LASF110 +000000000000935e l .debug_str 0000000000000000 .LASF111 +00000000000094e5 l .debug_str 0000000000000000 .LASF112 +00000000000090cc l .debug_str 0000000000000000 .LASF113 +00000000000097ef l .debug_str 0000000000000000 .LASF114 +000000000000940e l .debug_str 0000000000000000 .LASF115 +00000000000092d1 l .debug_str 0000000000000000 .LASF116 +00000000000093ef l .debug_str 0000000000000000 .LASF117 +00000000000097b6 l .debug_str 0000000000000000 .LASF118 +0000000000009a3a l .debug_str 0000000000000000 .LASF119 +0000000000009051 l .debug_str 0000000000000000 .LASF120 +00000000000092b0 l .debug_str 0000000000000000 .LASF121 +000000000000957b l .debug_str 0000000000000000 .LASF122 +000000000000918e l .debug_str 0000000000000000 .LASF123 +0000000000008ffc l .debug_str 0000000000000000 .LASF124 +000000000000927f l .debug_str 0000000000000000 .LASF125 +00000000000090ea l .debug_str 0000000000000000 .LASF126 +0000000000009610 l .debug_str 0000000000000000 .LASF127 +000000000000907e l .debug_str 0000000000000000 .LASF128 +00000000000099dd l .debug_str 0000000000000000 .LASF129 +0000000000009137 l .debug_str 0000000000000000 .LASF130 +000000000000979f l .debug_str 0000000000000000 .LASF131 +0000000000009750 l .debug_str 0000000000000000 .LASF132 +0000000000009026 l .debug_str 0000000000000000 .LASF133 +00000000000094cc l .debug_str 0000000000000000 .LASF134 +0000000000009866 l .debug_str 0000000000000000 .LASF135 +0000000000009200 l .debug_str 0000000000000000 .LASF136 +0000000000009257 l .debug_str 0000000000000000 .LASF137 +0000000000009823 l .debug_str 0000000000000000 .LASF138 +00000000000098a3 l .debug_str 0000000000000000 .LASF139 +0000000000009385 l .debug_str 0000000000000000 .LASF140 +0000000000009270 l .debug_str 0000000000000000 .LASF141 +0000000000009486 l .debug_str 0000000000000000 .LASF142 +000000000000983e l .debug_str 0000000000000000 .LASF143 +000000000000930e l .debug_str 0000000000000000 .LASF144 +00000000000095a1 l .debug_str 0000000000000000 .LASF145 +00000000000096a4 l .debug_str 0000000000000000 .LASF146 +00000000000095f1 l .debug_str 0000000000000000 .LASF147 +00000000000090d9 l .debug_str 0000000000000000 .LASF148 +00000000000093ce l .debug_str 0000000000000000 .LASF149 +000000000000972d l .debug_str 0000000000000000 .LASF150 +0000000000009792 l .debug_str 0000000000000000 .LASF151 +0000000000009a00 l .debug_str 0000000000000000 .LASF152 +00000000000090a8 l .debug_str 0000000000000000 .LASF153 +0000000000009656 l .debug_str 0000000000000000 .LASF154 +00000000000092e4 l .debug_str 0000000000000000 .LASF155 +0000000000009a0b l .debug_str 0000000000000000 .LASF156 +00000000000091cd l .debug_str 0000000000000000 .LASF157 +0000000000009975 l .debug_str 0000000000000000 .LASF158 +0000000000009107 l .debug_str 0000000000000000 .LASF159 +0000000000009533 l .debug_str 0000000000000000 .LASF160 +0000000000009778 l .debug_str 0000000000000000 .LASF161 +0000000000009781 l .debug_str 0000000000000000 .LASF162 +0000000000009693 l .debug_str 0000000000000000 .LASF163 +0000000000009295 l .debug_str 0000000000000000 .LASF164 +0000000000009741 l .debug_str 0000000000000000 .LASF165 +000000000000943f l .debug_str 0000000000000000 .LASF170 +0000000000001986 l .text 0000000000000000 .LFB7 +0000000000001994 l .text 0000000000000000 .LFE7 +0000000000009722 l .debug_str 0000000000000000 .LASF166 +0000000000004daf l .debug_loc 0000000000000000 .LLST0 +0000000000001988 l .text 0000000000000000 .LBB4 +0000000000001990 l .text 0000000000000000 .LBE4 +0000000000004de5 l .debug_loc 0000000000000000 .LLST1 +0000000000004e09 l .debug_loc 0000000000000000 .LLST2 +0000000000009542 l .debug_str 0000000000000000 .LASF171 +0000000000001986 l .text 0000000000000000 .LVL0 +000000000000198a l .text 0000000000000000 .LVL2 +0000000000001988 l .text 0000000000000000 .LVL1 +0000000000001990 l .text 0000000000000000 .LVL3 +0000000000009013 l .debug_info 0000000000000000 .Ldebug_info0 +0000000000001986 l .text 0000000000000000 .L0 +0000000000001986 l .text 0000000000000000 .L0 +0000000000001986 l .text 0000000000000000 .L0 +0000000000001988 l .text 0000000000000000 .L0 +0000000000001988 l .text 0000000000000000 .L0 +000000000000198a l .text 0000000000000000 .L0 +000000000000198a l .text 0000000000000000 .L0 +000000000000198e l .text 0000000000000000 .L0 +0000000000001990 l .text 0000000000000000 .L0 +0000000000001990 l .text 0000000000000000 .L0 +0000000000001994 l .text 0000000000000000 .L0 +0000000000000d68 l .debug_frame 0000000000000000 .L0 +0000000000001986 l .text 0000000000000000 .L0 +0000000000001994 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 PROXY_nxsem_post.c +0000000000003071 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000000a2fa l .debug_str 0000000000000000 .LASF167 +000000000000a23e l .debug_str 0000000000000000 .LASF168 +000000000000a139 l .debug_str 0000000000000000 .LASF169 +0000000000000ae0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000006995 l .debug_line 0000000000000000 .Ldebug_line0 +0000000000009c0a l .debug_str 0000000000000000 .LASF0 +000000000000a101 l .debug_str 0000000000000000 .LASF2 +000000000000a05b l .debug_str 0000000000000000 .LASF1 +000000000000a43a l .debug_str 0000000000000000 .LASF3 +000000000000a098 l .debug_str 0000000000000000 .LASF4 +0000000000009e25 l .debug_str 0000000000000000 .LASF5 +0000000000009db3 l .debug_str 0000000000000000 .LASF6 +0000000000009c81 l .debug_str 0000000000000000 .LASF7 +0000000000009ddb l .debug_str 0000000000000000 .LASF8 +0000000000009ecb l .debug_str 0000000000000000 .LASF9 +0000000000009b69 l .debug_str 0000000000000000 .LASF10 +000000000000a3aa l .debug_str 0000000000000000 .LASF11 +0000000000009bf9 l .debug_str 0000000000000000 .LASF12 +0000000000009ab3 l .debug_str 0000000000000000 .LASF13 +000000000000a15f l .debug_str 0000000000000000 .LASF14 +000000000000a3ca l .debug_str 0000000000000000 .LASF18 +0000000000009ded l .debug_str 0000000000000000 .LASF15 +000000000000a28d l .debug_str 0000000000000000 .LASF16 +000000000000a3d5 l .debug_str 0000000000000000 .LASF17 +000000000000a0b4 l .debug_str 0000000000000000 .LASF19 +000000000000a10a l .debug_str 0000000000000000 .LASF20 +0000000000009f50 l .debug_str 0000000000000000 .LASF21 +000000000000a0bf l .debug_str 0000000000000000 .LASF22 +000000000000a403 l .debug_str 0000000000000000 .LASF23 +0000000000009e61 l .debug_str 0000000000000000 .LASF24 +000000000000a3b2 l .debug_str 0000000000000000 .LASF25 +0000000000009c97 l .debug_str 0000000000000000 .LASF26 +000000000000a409 l .debug_str 0000000000000000 .LASF27 +0000000000009f55 l .debug_str 0000000000000000 .LASF28 +0000000000009fd9 l .debug_str 0000000000000000 .LASF29 +0000000000009d82 l .debug_str 0000000000000000 .LASF30 +0000000000009ff0 l .debug_str 0000000000000000 .LASF31 +000000000000a473 l .debug_str 0000000000000000 .LASF32 +0000000000009bc4 l .debug_str 0000000000000000 .LASF33 +000000000000a45c l .debug_str 0000000000000000 .LASF34 +0000000000009f78 l .debug_str 0000000000000000 .LASF35 +000000000000a2c6 l .debug_str 0000000000000000 .LASF36 +000000000000a1fd l .debug_str 0000000000000000 .LASF37 +000000000000a1ea l .debug_str 0000000000000000 .LASF38 +0000000000009ee1 l .debug_str 0000000000000000 .LASF39 +000000000000a40f l .debug_str 0000000000000000 .LASF40 +0000000000009ae1 l .debug_str 0000000000000000 .LASF41 +000000000000a11f l .debug_str 0000000000000000 .LASF42 +0000000000009f9b l .debug_str 0000000000000000 .LASF43 +000000000000a10f l .debug_str 0000000000000000 .LASF44 +0000000000009d97 l .debug_str 0000000000000000 .LASF45 +0000000000009e05 l .debug_str 0000000000000000 .LASF46 +000000000000a019 l .debug_str 0000000000000000 .LASF47 +0000000000009c63 l .debug_str 0000000000000000 .LASF48 +0000000000009e83 l .debug_str 0000000000000000 .LASF49 +0000000000009f1e l .debug_str 0000000000000000 .LASF50 +0000000000009afc l .debug_str 0000000000000000 .LASF51 +000000000000a2da l .debug_str 0000000000000000 .LASF52 +000000000000a0f5 l .debug_str 0000000000000000 .LASF53 +000000000000a194 l .debug_str 0000000000000000 .LASF54 +0000000000009bb4 l .debug_str 0000000000000000 .LASF55 +000000000000a0ea l .debug_str 0000000000000000 .LASF56 +000000000000a084 l .debug_str 0000000000000000 .LASF57 +0000000000009a64 l .debug_str 0000000000000000 .LASF58 +0000000000009dc0 l .debug_str 0000000000000000 .LASF59 +000000000000a069 l .debug_str 0000000000000000 .LASF60 +0000000000009ce9 l .debug_str 0000000000000000 .LASF61 +000000000000a29c l .debug_str 0000000000000000 .LASF62 +0000000000009f41 l .debug_str 0000000000000000 .LASF63 +0000000000009c2e l .debug_str 0000000000000000 .LASF64 +0000000000009ba4 l .debug_str 0000000000000000 .LASF65 +0000000000009f87 l .debug_str 0000000000000000 .LASF66 +0000000000009b46 l .debug_str 0000000000000000 .LASF67 +000000000000a22c l .debug_str 0000000000000000 .LASF68 +0000000000009d66 l .debug_str 0000000000000000 .LASF69 +0000000000009a89 l .debug_str 0000000000000000 .LASF70 +0000000000009f30 l .debug_str 0000000000000000 .LASF71 +0000000000009e42 l .debug_str 0000000000000000 .LASF72 +0000000000009d3a l .debug_str 0000000000000000 .LASF73 +0000000000009df3 l .debug_str 0000000000000000 .LASF74 +0000000000009ed3 l .debug_str 0000000000000000 .LASF75 +0000000000009d0c l .debug_str 0000000000000000 .LASF76 +0000000000009e97 l .debug_str 0000000000000000 .LASF77 +0000000000009c3f l .debug_str 0000000000000000 .LASF78 +000000000000a3f9 l .debug_str 0000000000000000 .LASF79 +0000000000009c01 l .debug_str 0000000000000000 .LASF80 +0000000000009d78 l .debug_str 0000000000000000 .LASF81 +0000000000009b9a l .debug_str 0000000000000000 .LASF82 +0000000000009fc2 l .debug_str 0000000000000000 .LASF83 +0000000000009a5b l .debug_str 0000000000000000 .LASF84 +0000000000009b5e l .debug_str 0000000000000000 .LASF85 +0000000000009b0b l .debug_str 0000000000000000 .LASF86 +0000000000009ea6 l .debug_str 0000000000000000 .LASF87 +0000000000009c8a l .debug_str 0000000000000000 .LASF88 +000000000000a011 l .debug_str 0000000000000000 .LASF89 +000000000000a0a2 l .debug_str 0000000000000000 .LASF90 +0000000000009bef l .debug_str 0000000000000000 .LASF91 +000000000000a3eb l .debug_str 0000000000000000 .LASF92 +0000000000009c77 l .debug_str 0000000000000000 .LASF93 +0000000000009d24 l .debug_str 0000000000000000 .LASF94 +000000000000a293 l .debug_str 0000000000000000 .LASF95 +000000000000a006 l .debug_str 0000000000000000 .LASF96 +000000000000a431 l .debug_str 0000000000000000 .LASF97 +000000000000a222 l .debug_str 0000000000000000 .LASF98 +0000000000009abd l .debug_str 0000000000000000 .LASF99 +0000000000009ec0 l .debug_str 0000000000000000 .LASF100 +000000000000a078 l .debug_str 0000000000000000 .LASF101 +000000000000a259 l .debug_str 0000000000000000 .LASF102 +000000000000a0ab l .debug_str 0000000000000000 .LASF103 +0000000000009d8d l .debug_str 0000000000000000 .LASF104 +0000000000009e79 l .debug_str 0000000000000000 .LASF105 +000000000000a3e0 l .debug_str 0000000000000000 .LASF106 +0000000000009fe5 l .debug_str 0000000000000000 .LASF107 +0000000000009c24 l .debug_str 0000000000000000 .LASF108 +000000000000a03c l .debug_str 0000000000000000 .LASF109 +0000000000009d4c l .debug_str 0000000000000000 .LASF110 +0000000000009da7 l .debug_str 0000000000000000 .LASF111 +0000000000009f11 l .debug_str 0000000000000000 .LASF112 +0000000000009b15 l .debug_str 0000000000000000 .LASF113 +000000000000a217 l .debug_str 0000000000000000 .LASF114 +0000000000009e57 l .debug_str 0000000000000000 .LASF115 +0000000000009d1a l .debug_str 0000000000000000 .LASF116 +0000000000009e38 l .debug_str 0000000000000000 .LASF117 +000000000000a1de l .debug_str 0000000000000000 .LASF118 +000000000000a47d l .debug_str 0000000000000000 .LASF119 +0000000000009a9a l .debug_str 0000000000000000 .LASF120 +0000000000009cf9 l .debug_str 0000000000000000 .LASF121 +0000000000009fa7 l .debug_str 0000000000000000 .LASF122 +0000000000009bd7 l .debug_str 0000000000000000 .LASF123 +0000000000009a45 l .debug_str 0000000000000000 .LASF124 +0000000000009cc8 l .debug_str 0000000000000000 .LASF125 +0000000000009b33 l .debug_str 0000000000000000 .LASF126 +000000000000a047 l .debug_str 0000000000000000 .LASF127 +0000000000009ac7 l .debug_str 0000000000000000 .LASF128 +000000000000a420 l .debug_str 0000000000000000 .LASF129 +0000000000009b80 l .debug_str 0000000000000000 .LASF130 +000000000000a1c7 l .debug_str 0000000000000000 .LASF131 +000000000000a178 l .debug_str 0000000000000000 .LASF132 +0000000000009a6f l .debug_str 0000000000000000 .LASF133 +0000000000009ef8 l .debug_str 0000000000000000 .LASF134 +000000000000a2a9 l .debug_str 0000000000000000 .LASF135 +0000000000009c49 l .debug_str 0000000000000000 .LASF136 +0000000000009ca0 l .debug_str 0000000000000000 .LASF137 +000000000000a266 l .debug_str 0000000000000000 .LASF138 +000000000000a2e6 l .debug_str 0000000000000000 .LASF139 +0000000000009dce l .debug_str 0000000000000000 .LASF140 +0000000000009cb9 l .debug_str 0000000000000000 .LASF141 +0000000000009eb2 l .debug_str 0000000000000000 .LASF142 +000000000000a281 l .debug_str 0000000000000000 .LASF143 +0000000000009d57 l .debug_str 0000000000000000 .LASF144 +0000000000009fcd l .debug_str 0000000000000000 .LASF145 +000000000000a0db l .debug_str 0000000000000000 .LASF146 +000000000000a028 l .debug_str 0000000000000000 .LASF147 +0000000000009b22 l .debug_str 0000000000000000 .LASF148 +0000000000009e17 l .debug_str 0000000000000000 .LASF149 +000000000000a164 l .debug_str 0000000000000000 .LASF150 +000000000000a1ba l .debug_str 0000000000000000 .LASF151 +000000000000a443 l .debug_str 0000000000000000 .LASF152 +0000000000009af1 l .debug_str 0000000000000000 .LASF153 +000000000000a08d l .debug_str 0000000000000000 .LASF154 +0000000000009d2d l .debug_str 0000000000000000 .LASF155 +000000000000a44e l .debug_str 0000000000000000 .LASF156 +0000000000009c16 l .debug_str 0000000000000000 .LASF157 +000000000000a3b8 l .debug_str 0000000000000000 .LASF158 +0000000000009b50 l .debug_str 0000000000000000 .LASF159 +0000000000009f5f l .debug_str 0000000000000000 .LASF160 +000000000000a1a0 l .debug_str 0000000000000000 .LASF161 +000000000000a1a9 l .debug_str 0000000000000000 .LASF162 +000000000000a0ca l .debug_str 0000000000000000 .LASF163 +0000000000009cde l .debug_str 0000000000000000 .LASF164 +0000000000009e6a l .debug_str 0000000000000000 .LASF165 +0000000000009ffb l .debug_str 0000000000000000 .LASF170 +0000000000001994 l .text 0000000000000000 .LFB7 +00000000000019a2 l .text 0000000000000000 .LFE7 +000000000000a159 l .debug_str 0000000000000000 .LASF166 +0000000000004e3f l .debug_loc 0000000000000000 .LLST0 +0000000000001996 l .text 0000000000000000 .LBB4 +000000000000199e l .text 0000000000000000 .LBE4 +0000000000004e75 l .debug_loc 0000000000000000 .LLST1 +0000000000004e99 l .debug_loc 0000000000000000 .LLST2 +0000000000009f6e l .debug_str 0000000000000000 .LASF171 +0000000000001994 l .text 0000000000000000 .LVL0 +0000000000001998 l .text 0000000000000000 .LVL2 +0000000000001996 l .text 0000000000000000 .LVL1 +000000000000199e l .text 0000000000000000 .LVL3 +0000000000009586 l .debug_info 0000000000000000 .Ldebug_info0 +0000000000001994 l .text 0000000000000000 .L0 +0000000000001994 l .text 0000000000000000 .L0 +0000000000001994 l .text 0000000000000000 .L0 +0000000000001996 l .text 0000000000000000 .L0 +0000000000001996 l .text 0000000000000000 .L0 +0000000000001998 l .text 0000000000000000 .L0 +0000000000001998 l .text 0000000000000000 .L0 +000000000000199c l .text 0000000000000000 .L0 +000000000000199e l .text 0000000000000000 .L0 +000000000000199e l .text 0000000000000000 .L0 +00000000000019a2 l .text 0000000000000000 .L0 +0000000000000d90 l .debug_frame 0000000000000000 .L0 +0000000000001994 l .text 0000000000000000 .L0 +00000000000019a2 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 PROXY_nxsem_trywait.c +00000000000031bb l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000000ad43 l .debug_str 0000000000000000 .LASF167 +000000000000ac84 l .debug_str 0000000000000000 .LASF168 +000000000000ab7f l .debug_str 0000000000000000 .LASF169 +0000000000000b00 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000006b1a l .debug_line 0000000000000000 .Ldebug_line0 +000000000000a64d l .debug_str 0000000000000000 .LASF0 +000000000000ab47 l .debug_str 0000000000000000 .LASF2 +000000000000aaa1 l .debug_str 0000000000000000 .LASF1 +000000000000ae83 l .debug_str 0000000000000000 .LASF3 +000000000000aade l .debug_str 0000000000000000 .LASF4 +000000000000a868 l .debug_str 0000000000000000 .LASF5 +000000000000a7f6 l .debug_str 0000000000000000 .LASF6 +000000000000a6c4 l .debug_str 0000000000000000 .LASF7 +000000000000a81e l .debug_str 0000000000000000 .LASF8 +000000000000a90e l .debug_str 0000000000000000 .LASF9 +000000000000a5ac l .debug_str 0000000000000000 .LASF10 +000000000000adf3 l .debug_str 0000000000000000 .LASF11 +000000000000a63c l .debug_str 0000000000000000 .LASF12 +000000000000a4f6 l .debug_str 0000000000000000 .LASF13 +000000000000aba5 l .debug_str 0000000000000000 .LASF14 +000000000000ae13 l .debug_str 0000000000000000 .LASF18 +000000000000a830 l .debug_str 0000000000000000 .LASF15 +000000000000acd6 l .debug_str 0000000000000000 .LASF16 +000000000000ae1e l .debug_str 0000000000000000 .LASF17 +000000000000aafa l .debug_str 0000000000000000 .LASF19 +000000000000ab50 l .debug_str 0000000000000000 .LASF20 +000000000000a993 l .debug_str 0000000000000000 .LASF21 +000000000000ab05 l .debug_str 0000000000000000 .LASF22 +000000000000ae4c l .debug_str 0000000000000000 .LASF23 +000000000000a8a4 l .debug_str 0000000000000000 .LASF24 +000000000000adfb l .debug_str 0000000000000000 .LASF25 +000000000000a6da l .debug_str 0000000000000000 .LASF26 +000000000000ae52 l .debug_str 0000000000000000 .LASF27 +000000000000a998 l .debug_str 0000000000000000 .LASF28 +000000000000aa2a l .debug_str 0000000000000000 .LASF29 +000000000000a7c5 l .debug_str 0000000000000000 .LASF30 +000000000000aa41 l .debug_str 0000000000000000 .LASF31 +000000000000aebc l .debug_str 0000000000000000 .LASF32 +000000000000a607 l .debug_str 0000000000000000 .LASF33 +000000000000aea5 l .debug_str 0000000000000000 .LASF34 +000000000000a9bb l .debug_str 0000000000000000 .LASF35 +000000000000ad0f l .debug_str 0000000000000000 .LASF36 +000000000000ac43 l .debug_str 0000000000000000 .LASF37 +000000000000ac30 l .debug_str 0000000000000000 .LASF38 +000000000000a924 l .debug_str 0000000000000000 .LASF39 +000000000000ae58 l .debug_str 0000000000000000 .LASF40 +000000000000a524 l .debug_str 0000000000000000 .LASF41 +000000000000ab65 l .debug_str 0000000000000000 .LASF42 +000000000000a9ec l .debug_str 0000000000000000 .LASF43 +000000000000ab55 l .debug_str 0000000000000000 .LASF44 +000000000000a7da l .debug_str 0000000000000000 .LASF45 +000000000000a848 l .debug_str 0000000000000000 .LASF46 +000000000000aa5f l .debug_str 0000000000000000 .LASF47 +000000000000a6a6 l .debug_str 0000000000000000 .LASF48 +000000000000a8c6 l .debug_str 0000000000000000 .LASF49 +000000000000a961 l .debug_str 0000000000000000 .LASF50 +000000000000a53f l .debug_str 0000000000000000 .LASF51 +000000000000ad23 l .debug_str 0000000000000000 .LASF52 +000000000000ab3b l .debug_str 0000000000000000 .LASF53 +000000000000abda l .debug_str 0000000000000000 .LASF54 +000000000000a5f7 l .debug_str 0000000000000000 .LASF55 +000000000000ab30 l .debug_str 0000000000000000 .LASF56 +000000000000aaca l .debug_str 0000000000000000 .LASF57 +000000000000a4a7 l .debug_str 0000000000000000 .LASF58 +000000000000a803 l .debug_str 0000000000000000 .LASF59 +000000000000aaaf l .debug_str 0000000000000000 .LASF60 +000000000000a72c l .debug_str 0000000000000000 .LASF61 +000000000000ace5 l .debug_str 0000000000000000 .LASF62 +000000000000a984 l .debug_str 0000000000000000 .LASF63 +000000000000a671 l .debug_str 0000000000000000 .LASF64 +000000000000a5e7 l .debug_str 0000000000000000 .LASF65 +000000000000a9d8 l .debug_str 0000000000000000 .LASF66 +000000000000a589 l .debug_str 0000000000000000 .LASF67 +000000000000ac72 l .debug_str 0000000000000000 .LASF68 +000000000000a7a9 l .debug_str 0000000000000000 .LASF69 +000000000000a4cc l .debug_str 0000000000000000 .LASF70 +000000000000a973 l .debug_str 0000000000000000 .LASF71 +000000000000a885 l .debug_str 0000000000000000 .LASF72 +000000000000a77d l .debug_str 0000000000000000 .LASF73 +000000000000a836 l .debug_str 0000000000000000 .LASF74 +000000000000a916 l .debug_str 0000000000000000 .LASF75 +000000000000a74f l .debug_str 0000000000000000 .LASF76 +000000000000a8da l .debug_str 0000000000000000 .LASF77 +000000000000a682 l .debug_str 0000000000000000 .LASF78 +000000000000ae42 l .debug_str 0000000000000000 .LASF79 +000000000000a644 l .debug_str 0000000000000000 .LASF80 +000000000000a7bb l .debug_str 0000000000000000 .LASF81 +000000000000a5dd l .debug_str 0000000000000000 .LASF82 +000000000000aa13 l .debug_str 0000000000000000 .LASF83 +000000000000a49e l .debug_str 0000000000000000 .LASF84 +000000000000a5a1 l .debug_str 0000000000000000 .LASF85 +000000000000a54e l .debug_str 0000000000000000 .LASF86 +000000000000a8e9 l .debug_str 0000000000000000 .LASF87 +000000000000a6cd l .debug_str 0000000000000000 .LASF88 +000000000000aa57 l .debug_str 0000000000000000 .LASF89 +000000000000aae8 l .debug_str 0000000000000000 .LASF90 +000000000000a632 l .debug_str 0000000000000000 .LASF91 +000000000000ae34 l .debug_str 0000000000000000 .LASF92 +000000000000a6ba l .debug_str 0000000000000000 .LASF93 +000000000000a767 l .debug_str 0000000000000000 .LASF94 +000000000000acdc l .debug_str 0000000000000000 .LASF95 +000000000000aa4c l .debug_str 0000000000000000 .LASF96 +000000000000ae7a l .debug_str 0000000000000000 .LASF97 +000000000000ac68 l .debug_str 0000000000000000 .LASF98 +000000000000a500 l .debug_str 0000000000000000 .LASF99 +000000000000a903 l .debug_str 0000000000000000 .LASF100 +000000000000aabe l .debug_str 0000000000000000 .LASF101 +000000000000aca2 l .debug_str 0000000000000000 .LASF102 +000000000000aaf1 l .debug_str 0000000000000000 .LASF103 +000000000000a7d0 l .debug_str 0000000000000000 .LASF104 +000000000000a8bc l .debug_str 0000000000000000 .LASF105 +000000000000ae29 l .debug_str 0000000000000000 .LASF106 +000000000000aa36 l .debug_str 0000000000000000 .LASF107 +000000000000a667 l .debug_str 0000000000000000 .LASF108 +000000000000aa82 l .debug_str 0000000000000000 .LASF109 +000000000000a78f l .debug_str 0000000000000000 .LASF110 +000000000000a7ea l .debug_str 0000000000000000 .LASF111 +000000000000a954 l .debug_str 0000000000000000 .LASF112 +000000000000a558 l .debug_str 0000000000000000 .LASF113 +000000000000ac5d l .debug_str 0000000000000000 .LASF114 +000000000000a89a l .debug_str 0000000000000000 .LASF115 +000000000000a75d l .debug_str 0000000000000000 .LASF116 +000000000000a87b l .debug_str 0000000000000000 .LASF117 +000000000000ac24 l .debug_str 0000000000000000 .LASF118 +000000000000aec6 l .debug_str 0000000000000000 .LASF119 +000000000000a4dd l .debug_str 0000000000000000 .LASF120 +000000000000a73c l .debug_str 0000000000000000 .LASF121 +000000000000a9f8 l .debug_str 0000000000000000 .LASF122 +000000000000a61a l .debug_str 0000000000000000 .LASF123 +000000000000a488 l .debug_str 0000000000000000 .LASF124 +000000000000a70b l .debug_str 0000000000000000 .LASF125 +000000000000a576 l .debug_str 0000000000000000 .LASF126 +000000000000aa8d l .debug_str 0000000000000000 .LASF127 +000000000000a50a l .debug_str 0000000000000000 .LASF128 +000000000000ae69 l .debug_str 0000000000000000 .LASF129 +000000000000a5c3 l .debug_str 0000000000000000 .LASF130 +000000000000ac0d l .debug_str 0000000000000000 .LASF131 +000000000000abbe l .debug_str 0000000000000000 .LASF132 +000000000000a4b2 l .debug_str 0000000000000000 .LASF133 +000000000000a93b l .debug_str 0000000000000000 .LASF134 +000000000000acf2 l .debug_str 0000000000000000 .LASF135 +000000000000a68c l .debug_str 0000000000000000 .LASF136 +000000000000a6e3 l .debug_str 0000000000000000 .LASF137 +000000000000acaf l .debug_str 0000000000000000 .LASF138 +000000000000ad2f l .debug_str 0000000000000000 .LASF139 +000000000000a811 l .debug_str 0000000000000000 .LASF140 +000000000000a6fc l .debug_str 0000000000000000 .LASF141 +000000000000a8f5 l .debug_str 0000000000000000 .LASF142 +000000000000acca l .debug_str 0000000000000000 .LASF143 +000000000000a79a l .debug_str 0000000000000000 .LASF144 +000000000000aa1e l .debug_str 0000000000000000 .LASF145 +000000000000ab21 l .debug_str 0000000000000000 .LASF146 +000000000000aa6e l .debug_str 0000000000000000 .LASF147 +000000000000a565 l .debug_str 0000000000000000 .LASF148 +000000000000a85a l .debug_str 0000000000000000 .LASF149 +000000000000abaa l .debug_str 0000000000000000 .LASF150 +000000000000ac00 l .debug_str 0000000000000000 .LASF151 +000000000000ae8c l .debug_str 0000000000000000 .LASF152 +000000000000a534 l .debug_str 0000000000000000 .LASF153 +000000000000aad3 l .debug_str 0000000000000000 .LASF154 +000000000000a770 l .debug_str 0000000000000000 .LASF155 +000000000000ae97 l .debug_str 0000000000000000 .LASF156 +000000000000a659 l .debug_str 0000000000000000 .LASF157 +000000000000ae01 l .debug_str 0000000000000000 .LASF158 +000000000000a593 l .debug_str 0000000000000000 .LASF159 +000000000000a9a2 l .debug_str 0000000000000000 .LASF160 +000000000000abe6 l .debug_str 0000000000000000 .LASF161 +000000000000abef l .debug_str 0000000000000000 .LASF162 +000000000000ab10 l .debug_str 0000000000000000 .LASF163 +000000000000a721 l .debug_str 0000000000000000 .LASF164 +000000000000a8ad l .debug_str 0000000000000000 .LASF165 +000000000000a9ca l .debug_str 0000000000000000 .LASF170 +00000000000019a2 l .text 0000000000000000 .LFB7 +00000000000019b0 l .text 0000000000000000 .LFE7 +000000000000ab9f l .debug_str 0000000000000000 .LASF166 +0000000000004ecf l .debug_loc 0000000000000000 .LLST0 +00000000000019a4 l .text 0000000000000000 .LBB4 +00000000000019ac l .text 0000000000000000 .LBE4 +0000000000004f05 l .debug_loc 0000000000000000 .LLST1 +0000000000004f29 l .debug_loc 0000000000000000 .LLST2 +000000000000a9b1 l .debug_str 0000000000000000 .LASF171 +00000000000019a2 l .text 0000000000000000 .LVL0 +00000000000019a6 l .text 0000000000000000 .LVL2 +00000000000019a4 l .text 0000000000000000 .LVL1 +00000000000019ac l .text 0000000000000000 .LVL3 +0000000000009afa l .debug_info 0000000000000000 .Ldebug_info0 +00000000000019a2 l .text 0000000000000000 .L0 +00000000000019a2 l .text 0000000000000000 .L0 +00000000000019a2 l .text 0000000000000000 .L0 +00000000000019a4 l .text 0000000000000000 .L0 +00000000000019a4 l .text 0000000000000000 .L0 +00000000000019a6 l .text 0000000000000000 .L0 +00000000000019a6 l .text 0000000000000000 .L0 +00000000000019aa l .text 0000000000000000 .L0 +00000000000019ac l .text 0000000000000000 .L0 +00000000000019ac l .text 0000000000000000 .L0 +00000000000019b0 l .text 0000000000000000 .L0 +0000000000000db8 l .debug_frame 0000000000000000 .L0 +00000000000019a2 l .text 0000000000000000 .L0 +00000000000019b0 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 PROXY_nxsem_wait.c +0000000000003305 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000000b786 l .debug_str 0000000000000000 .LASF167 +000000000000b492 l .debug_str 0000000000000000 .LASF168 +000000000000b5e0 l .debug_str 0000000000000000 .LASF169 +0000000000000b20 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000006ca2 l .debug_line 0000000000000000 .Ldebug_line0 +000000000000b0a1 l .debug_str 0000000000000000 .LASF0 +000000000000b5a8 l .debug_str 0000000000000000 .LASF2 +000000000000b502 l .debug_str 0000000000000000 .LASF1 +000000000000b8c6 l .debug_str 0000000000000000 .LASF3 +000000000000b53f l .debug_str 0000000000000000 .LASF4 +000000000000b2bc l .debug_str 0000000000000000 .LASF5 +000000000000b24a l .debug_str 0000000000000000 .LASF6 +000000000000b118 l .debug_str 0000000000000000 .LASF7 +000000000000b272 l .debug_str 0000000000000000 .LASF8 +000000000000b362 l .debug_str 0000000000000000 .LASF9 +000000000000b000 l .debug_str 0000000000000000 .LASF10 +000000000000b836 l .debug_str 0000000000000000 .LASF11 +000000000000b090 l .debug_str 0000000000000000 .LASF12 +000000000000af4a l .debug_str 0000000000000000 .LASF13 +000000000000b606 l .debug_str 0000000000000000 .LASF14 +000000000000b856 l .debug_str 0000000000000000 .LASF18 +000000000000b284 l .debug_str 0000000000000000 .LASF15 +000000000000b719 l .debug_str 0000000000000000 .LASF16 +000000000000b861 l .debug_str 0000000000000000 .LASF17 +000000000000b55b l .debug_str 0000000000000000 .LASF19 +000000000000b5b1 l .debug_str 0000000000000000 .LASF20 +000000000000b3e7 l .debug_str 0000000000000000 .LASF21 +000000000000b566 l .debug_str 0000000000000000 .LASF22 +000000000000b88f l .debug_str 0000000000000000 .LASF23 +000000000000b2f8 l .debug_str 0000000000000000 .LASF24 +000000000000b83e l .debug_str 0000000000000000 .LASF25 +000000000000b12e l .debug_str 0000000000000000 .LASF26 +000000000000b895 l .debug_str 0000000000000000 .LASF27 +000000000000b3ec l .debug_str 0000000000000000 .LASF28 +000000000000b470 l .debug_str 0000000000000000 .LASF29 +000000000000b219 l .debug_str 0000000000000000 .LASF30 +000000000000b487 l .debug_str 0000000000000000 .LASF31 +000000000000b8ff l .debug_str 0000000000000000 .LASF32 +000000000000b05b l .debug_str 0000000000000000 .LASF33 +000000000000b8e8 l .debug_str 0000000000000000 .LASF34 +000000000000b40f l .debug_str 0000000000000000 .LASF35 +000000000000b752 l .debug_str 0000000000000000 .LASF36 +000000000000b6a4 l .debug_str 0000000000000000 .LASF37 +000000000000b691 l .debug_str 0000000000000000 .LASF38 +000000000000b378 l .debug_str 0000000000000000 .LASF39 +000000000000b89b l .debug_str 0000000000000000 .LASF40 +000000000000af78 l .debug_str 0000000000000000 .LASF41 +000000000000b5c6 l .debug_str 0000000000000000 .LASF42 +000000000000b432 l .debug_str 0000000000000000 .LASF43 +000000000000b5b6 l .debug_str 0000000000000000 .LASF44 +000000000000b22e l .debug_str 0000000000000000 .LASF45 +000000000000b29c l .debug_str 0000000000000000 .LASF46 +000000000000b4c0 l .debug_str 0000000000000000 .LASF47 +000000000000b0fa l .debug_str 0000000000000000 .LASF48 +000000000000b31a l .debug_str 0000000000000000 .LASF49 +000000000000b3b5 l .debug_str 0000000000000000 .LASF50 +000000000000af93 l .debug_str 0000000000000000 .LASF51 +000000000000b766 l .debug_str 0000000000000000 .LASF52 +000000000000b59c l .debug_str 0000000000000000 .LASF53 +000000000000b63b l .debug_str 0000000000000000 .LASF54 +000000000000b04b l .debug_str 0000000000000000 .LASF55 +000000000000b591 l .debug_str 0000000000000000 .LASF56 +000000000000b52b l .debug_str 0000000000000000 .LASF57 +000000000000aef0 l .debug_str 0000000000000000 .LASF58 +000000000000b257 l .debug_str 0000000000000000 .LASF59 +000000000000b510 l .debug_str 0000000000000000 .LASF60 +000000000000b180 l .debug_str 0000000000000000 .LASF61 +000000000000b728 l .debug_str 0000000000000000 .LASF62 +000000000000b3d8 l .debug_str 0000000000000000 .LASF63 +000000000000b0c5 l .debug_str 0000000000000000 .LASF64 +000000000000b03b l .debug_str 0000000000000000 .LASF65 +000000000000b41e l .debug_str 0000000000000000 .LASF66 +000000000000afdd l .debug_str 0000000000000000 .LASF67 +000000000000b6d3 l .debug_str 0000000000000000 .LASF68 +000000000000b1fd l .debug_str 0000000000000000 .LASF69 +000000000000af20 l .debug_str 0000000000000000 .LASF70 +000000000000b3c7 l .debug_str 0000000000000000 .LASF71 +000000000000b2d9 l .debug_str 0000000000000000 .LASF72 +000000000000b1d1 l .debug_str 0000000000000000 .LASF73 +000000000000b28a l .debug_str 0000000000000000 .LASF74 +000000000000b36a l .debug_str 0000000000000000 .LASF75 +000000000000b1a3 l .debug_str 0000000000000000 .LASF76 +000000000000b32e l .debug_str 0000000000000000 .LASF77 +000000000000b0d6 l .debug_str 0000000000000000 .LASF78 +000000000000b885 l .debug_str 0000000000000000 .LASF79 +000000000000b098 l .debug_str 0000000000000000 .LASF80 +000000000000b20f l .debug_str 0000000000000000 .LASF81 +000000000000b031 l .debug_str 0000000000000000 .LASF82 +000000000000b459 l .debug_str 0000000000000000 .LASF83 +000000000000aee7 l .debug_str 0000000000000000 .LASF84 +000000000000aff5 l .debug_str 0000000000000000 .LASF85 +000000000000afa2 l .debug_str 0000000000000000 .LASF86 +000000000000b33d l .debug_str 0000000000000000 .LASF87 +000000000000b121 l .debug_str 0000000000000000 .LASF88 +000000000000b4b8 l .debug_str 0000000000000000 .LASF89 +000000000000b549 l .debug_str 0000000000000000 .LASF90 +000000000000b086 l .debug_str 0000000000000000 .LASF91 +000000000000b877 l .debug_str 0000000000000000 .LASF92 +000000000000b10e l .debug_str 0000000000000000 .LASF93 +000000000000b1bb l .debug_str 0000000000000000 .LASF94 +000000000000b71f l .debug_str 0000000000000000 .LASF95 +000000000000b4ad l .debug_str 0000000000000000 .LASF96 +000000000000b8bd l .debug_str 0000000000000000 .LASF97 +000000000000b6c9 l .debug_str 0000000000000000 .LASF98 +000000000000af54 l .debug_str 0000000000000000 .LASF99 +000000000000b357 l .debug_str 0000000000000000 .LASF100 +000000000000b51f l .debug_str 0000000000000000 .LASF101 +000000000000b6e5 l .debug_str 0000000000000000 .LASF102 +000000000000b552 l .debug_str 0000000000000000 .LASF103 +000000000000b224 l .debug_str 0000000000000000 .LASF104 +000000000000b310 l .debug_str 0000000000000000 .LASF105 +000000000000b86c l .debug_str 0000000000000000 .LASF106 +000000000000b47c l .debug_str 0000000000000000 .LASF107 +000000000000b0bb l .debug_str 0000000000000000 .LASF108 +000000000000b4e3 l .debug_str 0000000000000000 .LASF109 +000000000000b1e3 l .debug_str 0000000000000000 .LASF110 +000000000000b23e l .debug_str 0000000000000000 .LASF111 +000000000000b3a8 l .debug_str 0000000000000000 .LASF112 +000000000000afac l .debug_str 0000000000000000 .LASF113 +000000000000b6be l .debug_str 0000000000000000 .LASF114 +000000000000b2ee l .debug_str 0000000000000000 .LASF115 +000000000000b1b1 l .debug_str 0000000000000000 .LASF116 +000000000000b2cf l .debug_str 0000000000000000 .LASF117 +000000000000b685 l .debug_str 0000000000000000 .LASF118 +000000000000b909 l .debug_str 0000000000000000 .LASF119 +000000000000af31 l .debug_str 0000000000000000 .LASF120 +000000000000b190 l .debug_str 0000000000000000 .LASF121 +000000000000b43e l .debug_str 0000000000000000 .LASF122 +000000000000b06e l .debug_str 0000000000000000 .LASF123 +000000000000aed1 l .debug_str 0000000000000000 .LASF124 +000000000000b15f l .debug_str 0000000000000000 .LASF125 +000000000000afca l .debug_str 0000000000000000 .LASF126 +000000000000b4ee l .debug_str 0000000000000000 .LASF127 +000000000000af5e l .debug_str 0000000000000000 .LASF128 +000000000000b8ac l .debug_str 0000000000000000 .LASF129 +000000000000b017 l .debug_str 0000000000000000 .LASF130 +000000000000b66e l .debug_str 0000000000000000 .LASF131 +000000000000b61f l .debug_str 0000000000000000 .LASF132 +000000000000aefb l .debug_str 0000000000000000 .LASF133 +000000000000b38f l .debug_str 0000000000000000 .LASF134 +000000000000b735 l .debug_str 0000000000000000 .LASF135 +000000000000b0e0 l .debug_str 0000000000000000 .LASF136 +000000000000b137 l .debug_str 0000000000000000 .LASF137 +000000000000b6f2 l .debug_str 0000000000000000 .LASF138 +000000000000b772 l .debug_str 0000000000000000 .LASF139 +000000000000b265 l .debug_str 0000000000000000 .LASF140 +000000000000b150 l .debug_str 0000000000000000 .LASF141 +000000000000b349 l .debug_str 0000000000000000 .LASF142 +000000000000b70d l .debug_str 0000000000000000 .LASF143 +000000000000b1ee l .debug_str 0000000000000000 .LASF144 +000000000000b464 l .debug_str 0000000000000000 .LASF145 +000000000000b582 l .debug_str 0000000000000000 .LASF146 +000000000000b4cf l .debug_str 0000000000000000 .LASF147 +000000000000afb9 l .debug_str 0000000000000000 .LASF148 +000000000000b2ae l .debug_str 0000000000000000 .LASF149 +000000000000b60b l .debug_str 0000000000000000 .LASF150 +000000000000b661 l .debug_str 0000000000000000 .LASF151 +000000000000b8cf l .debug_str 0000000000000000 .LASF152 +000000000000af88 l .debug_str 0000000000000000 .LASF153 +000000000000b534 l .debug_str 0000000000000000 .LASF154 +000000000000b1c4 l .debug_str 0000000000000000 .LASF155 +000000000000b8da l .debug_str 0000000000000000 .LASF156 +000000000000b0ad l .debug_str 0000000000000000 .LASF157 +000000000000b844 l .debug_str 0000000000000000 .LASF158 +000000000000afe7 l .debug_str 0000000000000000 .LASF159 +000000000000b3f6 l .debug_str 0000000000000000 .LASF160 +000000000000b647 l .debug_str 0000000000000000 .LASF161 +000000000000b650 l .debug_str 0000000000000000 .LASF162 +000000000000b571 l .debug_str 0000000000000000 .LASF163 +000000000000b175 l .debug_str 0000000000000000 .LASF164 +000000000000b301 l .debug_str 0000000000000000 .LASF165 +000000000000af15 l .debug_str 0000000000000000 .LASF170 +00000000000019b0 l .text 0000000000000000 .LFB7 +00000000000019be l .text 0000000000000000 .LFE7 +000000000000b600 l .debug_str 0000000000000000 .LASF166 +0000000000004f5f l .debug_loc 0000000000000000 .LLST0 +00000000000019b2 l .text 0000000000000000 .LBB4 +00000000000019ba l .text 0000000000000000 .LBE4 +0000000000004f95 l .debug_loc 0000000000000000 .LLST1 +0000000000004fb9 l .debug_loc 0000000000000000 .LLST2 +000000000000b405 l .debug_str 0000000000000000 .LASF171 +00000000000019b0 l .text 0000000000000000 .LVL0 +00000000000019b4 l .text 0000000000000000 .LVL2 +00000000000019b2 l .text 0000000000000000 .LVL1 +00000000000019ba l .text 0000000000000000 .LVL3 +000000000000a06d l .debug_info 0000000000000000 .Ldebug_info0 +00000000000019b0 l .text 0000000000000000 .L0 +00000000000019b0 l .text 0000000000000000 .L0 +00000000000019b0 l .text 0000000000000000 .L0 +00000000000019b2 l .text 0000000000000000 .L0 +00000000000019b2 l .text 0000000000000000 .L0 +00000000000019b4 l .text 0000000000000000 .L0 +00000000000019b4 l .text 0000000000000000 .L0 +00000000000019b8 l .text 0000000000000000 .L0 +00000000000019ba l .text 0000000000000000 .L0 +00000000000019ba l .text 0000000000000000 .L0 +00000000000019be l .text 0000000000000000 .L0 +0000000000000de0 l .debug_frame 0000000000000000 .L0 +00000000000019b0 l .text 0000000000000000 .L0 +00000000000019be l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 PROXY_sched_getparam.c +000000000000344f l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000000c192 l .debug_str 0000000000000000 .LASF154 +000000000000b99b l .debug_str 0000000000000000 .LASF155 +000000000000bfd6 l .debug_str 0000000000000000 .LASF156 +0000000000000b40 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000006e27 l .debug_line 0000000000000000 .Ldebug_line0 +000000000000ba97 l .debug_str 0000000000000000 .LASF0 +000000000000bee9 l .debug_str 0000000000000000 .LASF1 +000000000000bf26 l .debug_str 0000000000000000 .LASF2 +000000000000bc9a l .debug_str 0000000000000000 .LASF3 +000000000000bc36 l .debug_str 0000000000000000 .LASF4 +000000000000bb04 l .debug_str 0000000000000000 .LASF5 +000000000000bc5e l .debug_str 0000000000000000 .LASF6 +000000000000bd67 l .debug_str 0000000000000000 .LASF8 +000000000000b9f0 l .debug_str 0000000000000000 .LASF7 +000000000000b953 l .debug_str 0000000000000000 .LASF9 +000000000000c296 l .debug_str 0000000000000000 .LASF10 +000000000000c002 l .debug_str 0000000000000000 .LASF11 +000000000000ba89 l .debug_str 0000000000000000 .LASF12 +000000000000bde9 l .debug_str 0000000000000000 .LASF13 +000000000000c2be l .debug_str 0000000000000000 .LASF157 +000000000000bce8 l .debug_str 0000000000000000 .LASF158 +000000000000bddf l .debug_str 0000000000000000 .LASF14 +000000000000bf93 l .debug_str 0000000000000000 .LASF15 +000000000000bc05 l .debug_str 0000000000000000 .LASF16 +000000000000be89 l .debug_str 0000000000000000 .LASF17 +000000000000c303 l .debug_str 0000000000000000 .LASF18 +000000000000ba4b l .debug_str 0000000000000000 .LASF19 +000000000000c2ec l .debug_str 0000000000000000 .LASF20 +000000000000be04 l .debug_str 0000000000000000 .LASF21 +000000000000c15e l .debug_str 0000000000000000 .LASF22 +000000000000c0a0 l .debug_str 0000000000000000 .LASF23 +000000000000c08d l .debug_str 0000000000000000 .LASF24 +000000000000bd7d l .debug_str 0000000000000000 .LASF25 +000000000000c29c l .debug_str 0000000000000000 .LASF26 +000000000000b967 l .debug_str 0000000000000000 .LASF27 +000000000000bfbc l .debug_str 0000000000000000 .LASF28 +000000000000be27 l .debug_str 0000000000000000 .LASF29 +000000000000bfac l .debug_str 0000000000000000 .LASF30 +000000000000bc1a l .debug_str 0000000000000000 .LASF31 +000000000000bcd6 l .debug_str 0000000000000000 .LASF32 +000000000000bea7 l .debug_str 0000000000000000 .LASF33 +000000000000baf0 l .debug_str 0000000000000000 .LASF34 +000000000000bd10 l .debug_str 0000000000000000 .LASF35 +000000000000bdad l .debug_str 0000000000000000 .LASF36 +000000000000b982 l .debug_str 0000000000000000 .LASF37 +000000000000c172 l .debug_str 0000000000000000 .LASF38 +000000000000bf87 l .debug_str 0000000000000000 .LASF39 +000000000000c037 l .debug_str 0000000000000000 .LASF40 +000000000000ba3b l .debug_str 0000000000000000 .LASF41 +000000000000bf7c l .debug_str 0000000000000000 .LASF42 +000000000000bf12 l .debug_str 0000000000000000 .LASF43 +000000000000b91d l .debug_str 0000000000000000 .LASF44 +000000000000bc43 l .debug_str 0000000000000000 .LASF45 +000000000000bef7 l .debug_str 0000000000000000 .LASF46 +000000000000bb74 l .debug_str 0000000000000000 .LASF47 +000000000000c134 l .debug_str 0000000000000000 .LASF48 +000000000000bdd0 l .debug_str 0000000000000000 .LASF49 +000000000000babb l .debug_str 0000000000000000 .LASF50 +000000000000ba2b l .debug_str 0000000000000000 .LASF51 +000000000000be13 l .debug_str 0000000000000000 .LASF52 +000000000000b9cd l .debug_str 0000000000000000 .LASF53 +000000000000c0cf l .debug_str 0000000000000000 .LASF54 +000000000000bbe9 l .debug_str 0000000000000000 .LASF55 +000000000000b942 l .debug_str 0000000000000000 .LASF56 +000000000000bdbf l .debug_str 0000000000000000 .LASF57 +000000000000bcb7 l .debug_str 0000000000000000 .LASF58 +000000000000c242 l .debug_str 0000000000000000 .LASF59 +000000000000bc7a l .debug_str 0000000000000000 .LASF60 +000000000000bd6f l .debug_str 0000000000000000 .LASF61 +000000000000bb97 l .debug_str 0000000000000000 .LASF62 +000000000000bd24 l .debug_str 0000000000000000 .LASF63 +000000000000bacc l .debug_str 0000000000000000 .LASF64 +000000000000c28c l .debug_str 0000000000000000 .LASF65 +000000000000ba80 l .debug_str 0000000000000000 .LASF66 +000000000000bbfb l .debug_str 0000000000000000 .LASF67 +000000000000ba21 l .debug_str 0000000000000000 .LASF68 +000000000000be4e l .debug_str 0000000000000000 .LASF69 +000000000000b914 l .debug_str 0000000000000000 .LASF70 +000000000000b9e5 l .debug_str 0000000000000000 .LASF71 +000000000000b991 l .debug_str 0000000000000000 .LASF72 +000000000000bd33 l .debug_str 0000000000000000 .LASF73 +000000000000bb0d l .debug_str 0000000000000000 .LASF74 +000000000000be9f l .debug_str 0000000000000000 .LASF75 +000000000000bf30 l .debug_str 0000000000000000 .LASF76 +000000000000bc70 l .debug_str 0000000000000000 .LASF77 +000000000000c27e l .debug_str 0000000000000000 .LASF78 +000000000000ba76 l .debug_str 0000000000000000 .LASF79 +000000000000bbaf l .debug_str 0000000000000000 .LASF80 +000000000000c12b l .debug_str 0000000000000000 .LASF81 +000000000000be94 l .debug_str 0000000000000000 .LASF82 +000000000000c2ca l .debug_str 0000000000000000 .LASF83 +000000000000c0c5 l .debug_str 0000000000000000 .LASF84 +000000000000b95d l .debug_str 0000000000000000 .LASF85 +000000000000bd5c l .debug_str 0000000000000000 .LASF86 +000000000000bf06 l .debug_str 0000000000000000 .LASF87 +000000000000c0e1 l .debug_str 0000000000000000 .LASF88 +000000000000bf39 l .debug_str 0000000000000000 .LASF89 +000000000000bc10 l .debug_str 0000000000000000 .LASF90 +000000000000bd06 l .debug_str 0000000000000000 .LASF91 +000000000000c273 l .debug_str 0000000000000000 .LASF92 +000000000000be7e l .debug_str 0000000000000000 .LASF93 +000000000000bab1 l .debug_str 0000000000000000 .LASF94 +000000000000beca l .debug_str 0000000000000000 .LASF95 +000000000000bbcf l .debug_str 0000000000000000 .LASF96 +000000000000bc2a l .debug_str 0000000000000000 .LASF97 +000000000000c266 l .debug_str 0000000000000000 .LASF98 +000000000000bf9f l .debug_str 0000000000000000 .LASF99 +000000000000c0ba l .debug_str 0000000000000000 .LASF100 +000000000000bccc l .debug_str 0000000000000000 .LASF101 +000000000000bba5 l .debug_str 0000000000000000 .LASF102 +000000000000bcad l .debug_str 0000000000000000 .LASF103 +000000000000c081 l .debug_str 0000000000000000 .LASF104 +000000000000c30d l .debug_str 0000000000000000 .LASF105 +000000000000be65 l .debug_str 0000000000000000 .LASF106 +000000000000bb84 l .debug_str 0000000000000000 .LASF107 +000000000000be33 l .debug_str 0000000000000000 .LASF108 +000000000000ba5e l .debug_str 0000000000000000 .LASF109 +000000000000c115 l .debug_str 0000000000000000 .LASF110 +000000000000bb53 l .debug_str 0000000000000000 .LASF111 +000000000000b9ba l .debug_str 0000000000000000 .LASF112 +000000000000bed5 l .debug_str 0000000000000000 .LASF113 +000000000000bf42 l .debug_str 0000000000000000 .LASF114 +000000000000c2ad l .debug_str 0000000000000000 .LASF115 +000000000000ba07 l .debug_str 0000000000000000 .LASF116 +000000000000c06a l .debug_str 0000000000000000 .LASF117 +000000000000c01b l .debug_str 0000000000000000 .LASF118 +000000000000b928 l .debug_str 0000000000000000 .LASF119 +000000000000bd94 l .debug_str 0000000000000000 .LASF120 +000000000000c141 l .debug_str 0000000000000000 .LASF121 +000000000000bad6 l .debug_str 0000000000000000 .LASF122 +000000000000bb1a l .debug_str 0000000000000000 .LASF123 +000000000000c0ee l .debug_str 0000000000000000 .LASF124 +000000000000c17e l .debug_str 0000000000000000 .LASF125 +000000000000bc51 l .debug_str 0000000000000000 .LASF126 +000000000000bb33 l .debug_str 0000000000000000 .LASF127 +000000000000bd3f l .debug_str 0000000000000000 .LASF128 +000000000000c109 l .debug_str 0000000000000000 .LASF129 +000000000000bbda l .debug_str 0000000000000000 .LASF130 +000000000000be59 l .debug_str 0000000000000000 .LASF131 +000000000000bf6d l .debug_str 0000000000000000 .LASF132 +000000000000beb6 l .debug_str 0000000000000000 .LASF133 +000000000000bb42 l .debug_str 0000000000000000 .LASF134 +000000000000bc8c l .debug_str 0000000000000000 .LASF135 +000000000000c007 l .debug_str 0000000000000000 .LASF136 +000000000000c05d l .debug_str 0000000000000000 .LASF137 +000000000000c2d3 l .debug_str 0000000000000000 .LASF138 +000000000000b977 l .debug_str 0000000000000000 .LASF139 +000000000000bf1b l .debug_str 0000000000000000 .LASF140 +000000000000bbb8 l .debug_str 0000000000000000 .LASF141 +000000000000c2de l .debug_str 0000000000000000 .LASF142 +000000000000baa3 l .debug_str 0000000000000000 .LASF143 +000000000000c254 l .debug_str 0000000000000000 .LASF144 +000000000000b9d7 l .debug_str 0000000000000000 .LASF145 +000000000000bdf5 l .debug_str 0000000000000000 .LASF146 +000000000000c043 l .debug_str 0000000000000000 .LASF147 +000000000000c04c l .debug_str 0000000000000000 .LASF148 +000000000000bf5c l .debug_str 0000000000000000 .LASF149 +000000000000bb69 l .debug_str 0000000000000000 .LASF150 +000000000000bcf7 l .debug_str 0000000000000000 .LASF151 +000000000000bd4d l .debug_str 0000000000000000 .LASF159 +00000000000019be l .text 0000000000000000 .LFB7 +00000000000019d0 l .text 0000000000000000 .LFE7 +000000000000bff6 l .debug_str 0000000000000000 .LASF152 +0000000000004fef l .debug_loc 0000000000000000 .LLST0 +000000000000bffc l .debug_str 0000000000000000 .LASF153 +0000000000005028 l .debug_loc 0000000000000000 .LLST1 +00000000000019c2 l .text 0000000000000000 .LBB4 +00000000000019cc l .text 0000000000000000 .LBE4 +000000000000505e l .debug_loc 0000000000000000 .LLST2 +0000000000005082 l .debug_loc 0000000000000000 .LLST3 +00000000000050b8 l .debug_loc 0000000000000000 .LLST4 +000000000000bbc5 l .debug_str 0000000000000000 .LASF160 +00000000000019be l .text 0000000000000000 .LVL0 +00000000000019c4 l .text 0000000000000000 .LVL3 +00000000000019c6 l .text 0000000000000000 .LVL4 +00000000000019c2 l .text 0000000000000000 .LVL2 +00000000000019cc l .text 0000000000000000 .LVL5 +00000000000019c0 l .text 0000000000000000 .LVL1 +000000000000a5e0 l .debug_info 0000000000000000 .Ldebug_info0 +00000000000019be l .text 0000000000000000 .L0 +00000000000019be l .text 0000000000000000 .L0 +00000000000019be l .text 0000000000000000 .L0 +00000000000019c2 l .text 0000000000000000 .L0 +00000000000019c2 l .text 0000000000000000 .L0 +00000000000019c4 l .text 0000000000000000 .L0 +00000000000019c4 l .text 0000000000000000 .L0 +00000000000019c6 l .text 0000000000000000 .L0 +00000000000019c6 l .text 0000000000000000 .L0 +00000000000019ca l .text 0000000000000000 .L0 +00000000000019cc l .text 0000000000000000 .L0 +00000000000019cc l .text 0000000000000000 .L0 +00000000000019d0 l .text 0000000000000000 .L0 +0000000000000e08 l .debug_frame 0000000000000000 .L0 +00000000000019be l .text 0000000000000000 .L0 +00000000000019d0 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 PROXY_sched_setparam.c +0000000000003561 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000000cb96 l .debug_str 0000000000000000 .LASF154 +000000000000cab4 l .debug_str 0000000000000000 .LASF155 +000000000000c9c5 l .debug_str 0000000000000000 .LASF156 +0000000000000b60 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000006f89 l .debug_line 0000000000000000 .Ldebug_line0 +000000000000c48d l .debug_str 0000000000000000 .LASF0 +000000000000c8d8 l .debug_str 0000000000000000 .LASF1 +000000000000c915 l .debug_str 0000000000000000 .LASF2 +000000000000c689 l .debug_str 0000000000000000 .LASF3 +000000000000c625 l .debug_str 0000000000000000 .LASF4 +000000000000c504 l .debug_str 0000000000000000 .LASF5 +000000000000c64d l .debug_str 0000000000000000 .LASF6 +000000000000c756 l .debug_str 0000000000000000 .LASF8 +000000000000c3e6 l .debug_str 0000000000000000 .LASF7 +000000000000c357 l .debug_str 0000000000000000 .LASF9 +000000000000cc9a l .debug_str 0000000000000000 .LASF10 +000000000000c9f1 l .debug_str 0000000000000000 .LASF11 +000000000000c47f l .debug_str 0000000000000000 .LASF12 +000000000000c7d8 l .debug_str 0000000000000000 .LASF13 +000000000000ccc2 l .debug_str 0000000000000000 .LASF157 +000000000000c6e6 l .debug_str 0000000000000000 .LASF158 +000000000000c7ce l .debug_str 0000000000000000 .LASF14 +000000000000c982 l .debug_str 0000000000000000 .LASF15 +000000000000c5f4 l .debug_str 0000000000000000 .LASF16 +000000000000c878 l .debug_str 0000000000000000 .LASF17 +000000000000cd07 l .debug_str 0000000000000000 .LASF18 +000000000000c441 l .debug_str 0000000000000000 .LASF19 +000000000000ccf0 l .debug_str 0000000000000000 .LASF20 +000000000000c7f3 l .debug_str 0000000000000000 .LASF21 +000000000000cb62 l .debug_str 0000000000000000 .LASF22 +000000000000ca8f l .debug_str 0000000000000000 .LASF23 +000000000000ca7c l .debug_str 0000000000000000 .LASF24 +000000000000c76c l .debug_str 0000000000000000 .LASF25 +000000000000cca0 l .debug_str 0000000000000000 .LASF26 +000000000000c36b l .debug_str 0000000000000000 .LASF27 +000000000000c9ab l .debug_str 0000000000000000 .LASF28 +000000000000c816 l .debug_str 0000000000000000 .LASF29 +000000000000c99b l .debug_str 0000000000000000 .LASF30 +000000000000c609 l .debug_str 0000000000000000 .LASF31 +000000000000c6d4 l .debug_str 0000000000000000 .LASF32 +000000000000c896 l .debug_str 0000000000000000 .LASF33 +000000000000c4f0 l .debug_str 0000000000000000 .LASF34 +000000000000c70e l .debug_str 0000000000000000 .LASF35 +000000000000c79c l .debug_str 0000000000000000 .LASF36 +000000000000c386 l .debug_str 0000000000000000 .LASF37 +000000000000cb76 l .debug_str 0000000000000000 .LASF38 +000000000000c976 l .debug_str 0000000000000000 .LASF39 +000000000000ca26 l .debug_str 0000000000000000 .LASF40 +000000000000c431 l .debug_str 0000000000000000 .LASF41 +000000000000c96b l .debug_str 0000000000000000 .LASF42 +000000000000c901 l .debug_str 0000000000000000 .LASF43 +000000000000c321 l .debug_str 0000000000000000 .LASF44 +000000000000c632 l .debug_str 0000000000000000 .LASF45 +000000000000c8e6 l .debug_str 0000000000000000 .LASF46 +000000000000c563 l .debug_str 0000000000000000 .LASF47 +000000000000cb38 l .debug_str 0000000000000000 .LASF48 +000000000000c7bf l .debug_str 0000000000000000 .LASF49 +000000000000c4b1 l .debug_str 0000000000000000 .LASF50 +000000000000c421 l .debug_str 0000000000000000 .LASF51 +000000000000c802 l .debug_str 0000000000000000 .LASF52 +000000000000c3c3 l .debug_str 0000000000000000 .LASF53 +000000000000cad3 l .debug_str 0000000000000000 .LASF54 +000000000000c5d8 l .debug_str 0000000000000000 .LASF55 +000000000000c346 l .debug_str 0000000000000000 .LASF56 +000000000000c7ae l .debug_str 0000000000000000 .LASF57 +000000000000c6a6 l .debug_str 0000000000000000 .LASF58 +000000000000cc46 l .debug_str 0000000000000000 .LASF59 +000000000000c669 l .debug_str 0000000000000000 .LASF60 +000000000000c75e l .debug_str 0000000000000000 .LASF61 +000000000000c586 l .debug_str 0000000000000000 .LASF62 +000000000000c722 l .debug_str 0000000000000000 .LASF63 +000000000000c4cc l .debug_str 0000000000000000 .LASF64 +000000000000cc90 l .debug_str 0000000000000000 .LASF65 +000000000000c476 l .debug_str 0000000000000000 .LASF66 +000000000000c5ea l .debug_str 0000000000000000 .LASF67 +000000000000c417 l .debug_str 0000000000000000 .LASF68 +000000000000c83d l .debug_str 0000000000000000 .LASF69 +000000000000c318 l .debug_str 0000000000000000 .LASF70 +000000000000c3db l .debug_str 0000000000000000 .LASF71 +000000000000c395 l .debug_str 0000000000000000 .LASF72 +000000000000c731 l .debug_str 0000000000000000 .LASF73 +000000000000c50d l .debug_str 0000000000000000 .LASF74 +000000000000c88e l .debug_str 0000000000000000 .LASF75 +000000000000c91f l .debug_str 0000000000000000 .LASF76 +000000000000c65f l .debug_str 0000000000000000 .LASF77 +000000000000cc82 l .debug_str 0000000000000000 .LASF78 +000000000000c46c l .debug_str 0000000000000000 .LASF79 +000000000000c59e l .debug_str 0000000000000000 .LASF80 +000000000000cb2f l .debug_str 0000000000000000 .LASF81 +000000000000c883 l .debug_str 0000000000000000 .LASF82 +000000000000ccce l .debug_str 0000000000000000 .LASF83 +000000000000c4c2 l .debug_str 0000000000000000 .LASF84 +000000000000c361 l .debug_str 0000000000000000 .LASF85 +000000000000c74b l .debug_str 0000000000000000 .LASF86 +000000000000c8f5 l .debug_str 0000000000000000 .LASF87 +000000000000cae5 l .debug_str 0000000000000000 .LASF88 +000000000000c928 l .debug_str 0000000000000000 .LASF89 +000000000000c5ff l .debug_str 0000000000000000 .LASF90 +000000000000c704 l .debug_str 0000000000000000 .LASF91 +000000000000cc77 l .debug_str 0000000000000000 .LASF92 +000000000000c86d l .debug_str 0000000000000000 .LASF93 +000000000000c4a7 l .debug_str 0000000000000000 .LASF94 +000000000000c8b9 l .debug_str 0000000000000000 .LASF95 +000000000000c5be l .debug_str 0000000000000000 .LASF96 +000000000000c619 l .debug_str 0000000000000000 .LASF97 +000000000000cc6a l .debug_str 0000000000000000 .LASF98 +000000000000c98e l .debug_str 0000000000000000 .LASF99 +000000000000caa9 l .debug_str 0000000000000000 .LASF100 +000000000000c6bb l .debug_str 0000000000000000 .LASF101 +000000000000c594 l .debug_str 0000000000000000 .LASF102 +000000000000c69c l .debug_str 0000000000000000 .LASF103 +000000000000ca70 l .debug_str 0000000000000000 .LASF104 +000000000000cd11 l .debug_str 0000000000000000 .LASF105 +000000000000c854 l .debug_str 0000000000000000 .LASF106 +000000000000c573 l .debug_str 0000000000000000 .LASF107 +000000000000c822 l .debug_str 0000000000000000 .LASF108 +000000000000c454 l .debug_str 0000000000000000 .LASF109 +000000000000cb19 l .debug_str 0000000000000000 .LASF110 +000000000000c542 l .debug_str 0000000000000000 .LASF111 +000000000000c3b0 l .debug_str 0000000000000000 .LASF112 +000000000000c8c4 l .debug_str 0000000000000000 .LASF113 +000000000000c931 l .debug_str 0000000000000000 .LASF114 +000000000000ccb1 l .debug_str 0000000000000000 .LASF115 +000000000000c3fd l .debug_str 0000000000000000 .LASF116 +000000000000ca59 l .debug_str 0000000000000000 .LASF117 +000000000000ca0a l .debug_str 0000000000000000 .LASF118 +000000000000c32c l .debug_str 0000000000000000 .LASF119 +000000000000c783 l .debug_str 0000000000000000 .LASF120 +000000000000cb45 l .debug_str 0000000000000000 .LASF121 +000000000000c4d6 l .debug_str 0000000000000000 .LASF122 +000000000000c51a l .debug_str 0000000000000000 .LASF123 +000000000000caf2 l .debug_str 0000000000000000 .LASF124 +000000000000cb82 l .debug_str 0000000000000000 .LASF125 +000000000000c640 l .debug_str 0000000000000000 .LASF126 +000000000000c533 l .debug_str 0000000000000000 .LASF127 +000000000000c73d l .debug_str 0000000000000000 .LASF128 +000000000000cb0d l .debug_str 0000000000000000 .LASF129 +000000000000c5c9 l .debug_str 0000000000000000 .LASF130 +000000000000c848 l .debug_str 0000000000000000 .LASF131 +000000000000c95c l .debug_str 0000000000000000 .LASF132 +000000000000c8a5 l .debug_str 0000000000000000 .LASF133 +000000000000c39f l .debug_str 0000000000000000 .LASF134 +000000000000c67b l .debug_str 0000000000000000 .LASF135 +000000000000c9f6 l .debug_str 0000000000000000 .LASF136 +000000000000ca4c l .debug_str 0000000000000000 .LASF137 +000000000000ccd7 l .debug_str 0000000000000000 .LASF138 +000000000000c37b l .debug_str 0000000000000000 .LASF139 +000000000000c90a l .debug_str 0000000000000000 .LASF140 +000000000000c5a7 l .debug_str 0000000000000000 .LASF141 +000000000000cce2 l .debug_str 0000000000000000 .LASF142 +000000000000c499 l .debug_str 0000000000000000 .LASF143 +000000000000cc58 l .debug_str 0000000000000000 .LASF144 +000000000000c3cd l .debug_str 0000000000000000 .LASF145 +000000000000c7e4 l .debug_str 0000000000000000 .LASF146 +000000000000ca32 l .debug_str 0000000000000000 .LASF147 +000000000000ca3b l .debug_str 0000000000000000 .LASF148 +000000000000c94b l .debug_str 0000000000000000 .LASF149 +000000000000c558 l .debug_str 0000000000000000 .LASF150 +000000000000c6f5 l .debug_str 0000000000000000 .LASF151 +000000000000c6c5 l .debug_str 0000000000000000 .LASF159 +00000000000019d0 l .text 0000000000000000 .LFB7 +00000000000019e2 l .text 0000000000000000 .LFE7 +000000000000c9e5 l .debug_str 0000000000000000 .LASF152 +00000000000050e3 l .debug_loc 0000000000000000 .LLST0 +000000000000c9eb l .debug_str 0000000000000000 .LASF153 +000000000000511c l .debug_loc 0000000000000000 .LLST1 +00000000000019d4 l .text 0000000000000000 .LBB4 +00000000000019de l .text 0000000000000000 .LBE4 +0000000000005152 l .debug_loc 0000000000000000 .LLST2 +0000000000005176 l .debug_loc 0000000000000000 .LLST3 +00000000000051ac l .debug_loc 0000000000000000 .LLST4 +000000000000c5b4 l .debug_str 0000000000000000 .LASF160 +00000000000019d0 l .text 0000000000000000 .LVL0 +00000000000019d6 l .text 0000000000000000 .LVL3 +00000000000019d8 l .text 0000000000000000 .LVL4 +00000000000019d4 l .text 0000000000000000 .LVL2 +00000000000019de l .text 0000000000000000 .LVL5 +00000000000019d2 l .text 0000000000000000 .LVL1 +000000000000aacd l .debug_info 0000000000000000 .Ldebug_info0 +00000000000019d0 l .text 0000000000000000 .L0 +00000000000019d0 l .text 0000000000000000 .L0 +00000000000019d0 l .text 0000000000000000 .L0 +00000000000019d4 l .text 0000000000000000 .L0 +00000000000019d4 l .text 0000000000000000 .L0 +00000000000019d6 l .text 0000000000000000 .L0 +00000000000019d6 l .text 0000000000000000 .L0 +00000000000019d8 l .text 0000000000000000 .L0 +00000000000019d8 l .text 0000000000000000 .L0 +00000000000019dc l .text 0000000000000000 .L0 +00000000000019de l .text 0000000000000000 .L0 +00000000000019de l .text 0000000000000000 .L0 +00000000000019e2 l .text 0000000000000000 .L0 +0000000000000e30 l .debug_frame 0000000000000000 .L0 +00000000000019d0 l .text 0000000000000000 .L0 +00000000000019e2 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 PROXY_write.c +000000000000367a l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000000d586 l .debug_str 0000000000000000 .LASF155 +000000000000d0cd l .debug_str 0000000000000000 .LASF156 +000000000000d3b9 l .debug_str 0000000000000000 .LASF157 +0000000000000b80 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +00000000000070eb l .debug_line 0000000000000000 .Ldebug_line0 +000000000000ce8d l .debug_str 0000000000000000 .LASF0 +000000000000d2cc l .debug_str 0000000000000000 .LASF1 +000000000000d309 l .debug_str 0000000000000000 .LASF2 +000000000000d091 l .debug_str 0000000000000000 .LASF3 +000000000000d02d l .debug_str 0000000000000000 .LASF4 +000000000000cefa l .debug_str 0000000000000000 .LASF5 +000000000000d055 l .debug_str 0000000000000000 .LASF6 +000000000000d636 l .debug_str 0000000000000000 .LASF7 +000000000000d156 l .debug_str 0000000000000000 .LASF8 +000000000000cdf4 l .debug_str 0000000000000000 .LASF9 +000000000000cd57 l .debug_str 0000000000000000 .LASF10 +000000000000cd50 l .debug_str 0000000000000000 .LASF11 +000000000000cda5 l .debug_str 0000000000000000 .LASF12 +000000000000d3e5 l .debug_str 0000000000000000 .LASF13 +000000000000d1ce l .debug_str 0000000000000000 .LASF14 +000000000000d376 l .debug_str 0000000000000000 .LASF15 +000000000000cffc l .debug_str 0000000000000000 .LASF16 +000000000000d26c l .debug_str 0000000000000000 .LASF17 +000000000000d6dc l .debug_str 0000000000000000 .LASF18 +000000000000ce4f l .debug_str 0000000000000000 .LASF19 +000000000000d6c5 l .debug_str 0000000000000000 .LASF20 +000000000000d1e7 l .debug_str 0000000000000000 .LASF21 +000000000000d552 l .debug_str 0000000000000000 .LASF22 +000000000000d483 l .debug_str 0000000000000000 .LASF23 +000000000000d470 l .debug_str 0000000000000000 .LASF24 +000000000000d16c l .debug_str 0000000000000000 .LASF25 +000000000000d681 l .debug_str 0000000000000000 .LASF26 +000000000000cd71 l .debug_str 0000000000000000 .LASF27 +000000000000d39f l .debug_str 0000000000000000 .LASF28 +000000000000d20a l .debug_str 0000000000000000 .LASF29 +000000000000d38f l .debug_str 0000000000000000 .LASF30 +000000000000d011 l .debug_str 0000000000000000 .LASF31 +000000000000d0e3 l .debug_str 0000000000000000 .LASF32 +000000000000d28a l .debug_str 0000000000000000 .LASF33 +000000000000cee6 l .debug_str 0000000000000000 .LASF34 +000000000000d10e l .debug_str 0000000000000000 .LASF35 +000000000000d19c l .debug_str 0000000000000000 .LASF36 +000000000000cd8c l .debug_str 0000000000000000 .LASF37 +000000000000d566 l .debug_str 0000000000000000 .LASF38 +000000000000d36a l .debug_str 0000000000000000 .LASF39 +000000000000d41a l .debug_str 0000000000000000 .LASF40 +000000000000ce3f l .debug_str 0000000000000000 .LASF41 +000000000000d35f l .debug_str 0000000000000000 .LASF42 +000000000000d2f5 l .debug_str 0000000000000000 .LASF43 +000000000000cd2b l .debug_str 0000000000000000 .LASF44 +000000000000d03a l .debug_str 0000000000000000 .LASF45 +000000000000d2da l .debug_str 0000000000000000 .LASF46 +000000000000cf59 l .debug_str 0000000000000000 .LASF47 +000000000000d528 l .debug_str 0000000000000000 .LASF48 +000000000000d1bf l .debug_str 0000000000000000 .LASF49 +000000000000ceb1 l .debug_str 0000000000000000 .LASF50 +000000000000ce2f l .debug_str 0000000000000000 .LASF51 +000000000000d1f6 l .debug_str 0000000000000000 .LASF52 +000000000000cdd1 l .debug_str 0000000000000000 .LASF53 +000000000000d4b2 l .debug_str 0000000000000000 .LASF54 +000000000000cfe0 l .debug_str 0000000000000000 .LASF55 +000000000000d4f8 l .debug_str 0000000000000000 .LASF56 +000000000000d1ae l .debug_str 0000000000000000 .LASF57 +000000000000d0ae l .debug_str 0000000000000000 .LASF58 +000000000000cfaa l .debug_str 0000000000000000 .LASF59 +000000000000d071 l .debug_str 0000000000000000 .LASF60 +000000000000d15e l .debug_str 0000000000000000 .LASF61 +000000000000cf7c l .debug_str 0000000000000000 .LASF62 +000000000000d122 l .debug_str 0000000000000000 .LASF63 +000000000000cec2 l .debug_str 0000000000000000 .LASF64 +000000000000d677 l .debug_str 0000000000000000 .LASF65 +000000000000ce84 l .debug_str 0000000000000000 .LASF66 +000000000000cff2 l .debug_str 0000000000000000 .LASF67 +000000000000ce25 l .debug_str 0000000000000000 .LASF68 +000000000000d231 l .debug_str 0000000000000000 .LASF69 +000000000000cd22 l .debug_str 0000000000000000 .LASF70 +000000000000cde9 l .debug_str 0000000000000000 .LASF71 +000000000000cd9b l .debug_str 0000000000000000 .LASF72 +000000000000d131 l .debug_str 0000000000000000 .LASF73 +000000000000cf03 l .debug_str 0000000000000000 .LASF74 +000000000000d282 l .debug_str 0000000000000000 .LASF75 +000000000000d313 l .debug_str 0000000000000000 .LASF76 +000000000000d067 l .debug_str 0000000000000000 .LASF77 +000000000000d669 l .debug_str 0000000000000000 .LASF78 +000000000000ce7a l .debug_str 0000000000000000 .LASF79 +000000000000cf94 l .debug_str 0000000000000000 .LASF80 +000000000000d51f l .debug_str 0000000000000000 .LASF81 +000000000000d277 l .debug_str 0000000000000000 .LASF82 +000000000000d6a3 l .debug_str 0000000000000000 .LASF83 +000000000000d4a8 l .debug_str 0000000000000000 .LASF84 +000000000000cd61 l .debug_str 0000000000000000 .LASF85 +000000000000d14b l .debug_str 0000000000000000 .LASF86 +000000000000d2e9 l .debug_str 0000000000000000 .LASF87 +000000000000d4c4 l .debug_str 0000000000000000 .LASF88 +000000000000d31c l .debug_str 0000000000000000 .LASF89 +000000000000d007 l .debug_str 0000000000000000 .LASF90 +000000000000d104 l .debug_str 0000000000000000 .LASF91 +000000000000d65e l .debug_str 0000000000000000 .LASF92 +000000000000d261 l .debug_str 0000000000000000 .LASF93 +000000000000cea7 l .debug_str 0000000000000000 .LASF94 +000000000000d2ad l .debug_str 0000000000000000 .LASF95 +000000000000cfc6 l .debug_str 0000000000000000 .LASF96 +000000000000d021 l .debug_str 0000000000000000 .LASF97 +000000000000d651 l .debug_str 0000000000000000 .LASF98 +000000000000d382 l .debug_str 0000000000000000 .LASF99 +000000000000d49d l .debug_str 0000000000000000 .LASF100 +000000000000d0c3 l .debug_str 0000000000000000 .LASF101 +000000000000cf8a l .debug_str 0000000000000000 .LASF102 +000000000000d0a4 l .debug_str 0000000000000000 .LASF103 +000000000000d464 l .debug_str 0000000000000000 .LASF104 +000000000000d6e6 l .debug_str 0000000000000000 .LASF105 +000000000000d248 l .debug_str 0000000000000000 .LASF106 +000000000000cf69 l .debug_str 0000000000000000 .LASF107 +000000000000d216 l .debug_str 0000000000000000 .LASF108 +000000000000ce62 l .debug_str 0000000000000000 .LASF109 +000000000000d509 l .debug_str 0000000000000000 .LASF110 +000000000000cf38 l .debug_str 0000000000000000 .LASF111 +000000000000cdbe l .debug_str 0000000000000000 .LASF112 +000000000000d2b8 l .debug_str 0000000000000000 .LASF113 +000000000000d325 l .debug_str 0000000000000000 .LASF114 +000000000000d692 l .debug_str 0000000000000000 .LASF115 +000000000000ce0b l .debug_str 0000000000000000 .LASF116 +000000000000d44d l .debug_str 0000000000000000 .LASF117 +000000000000d3fe l .debug_str 0000000000000000 .LASF118 +000000000000cd36 l .debug_str 0000000000000000 .LASF119 +000000000000d183 l .debug_str 0000000000000000 .LASF120 +000000000000d535 l .debug_str 0000000000000000 .LASF121 +000000000000cecc l .debug_str 0000000000000000 .LASF122 +000000000000cf10 l .debug_str 0000000000000000 .LASF123 +000000000000d4d1 l .debug_str 0000000000000000 .LASF124 +000000000000d572 l .debug_str 0000000000000000 .LASF125 +000000000000d048 l .debug_str 0000000000000000 .LASF126 +000000000000cf29 l .debug_str 0000000000000000 .LASF127 +000000000000d13d l .debug_str 0000000000000000 .LASF128 +000000000000d4ec l .debug_str 0000000000000000 .LASF129 +000000000000cfd1 l .debug_str 0000000000000000 .LASF130 +000000000000d23c l .debug_str 0000000000000000 .LASF131 +000000000000d350 l .debug_str 0000000000000000 .LASF132 +000000000000d299 l .debug_str 0000000000000000 .LASF133 +000000000000cdad l .debug_str 0000000000000000 .LASF134 +000000000000d083 l .debug_str 0000000000000000 .LASF135 +000000000000d3ea l .debug_str 0000000000000000 .LASF136 +000000000000d440 l .debug_str 0000000000000000 .LASF137 +000000000000d6ac l .debug_str 0000000000000000 .LASF138 +000000000000cd81 l .debug_str 0000000000000000 .LASF139 +000000000000d2fe l .debug_str 0000000000000000 .LASF140 +000000000000cf9d l .debug_str 0000000000000000 .LASF141 +000000000000d6b7 l .debug_str 0000000000000000 .LASF142 +000000000000ce99 l .debug_str 0000000000000000 .LASF143 +000000000000d63f l .debug_str 0000000000000000 .LASF144 +000000000000cddb l .debug_str 0000000000000000 .LASF145 +000000000000d1d8 l .debug_str 0000000000000000 .LASF146 +000000000000d426 l .debug_str 0000000000000000 .LASF147 +000000000000d42f l .debug_str 0000000000000000 .LASF148 +000000000000d33f l .debug_str 0000000000000000 .LASF149 +000000000000cf4e l .debug_str 0000000000000000 .LASF150 +000000000000d0f5 l .debug_str 0000000000000000 .LASF151 +000000000000cd6b l .debug_str 0000000000000000 .LASF158 +00000000000019e2 l .text 0000000000000000 .LFB7 +00000000000019f8 l .text 0000000000000000 .LFE7 +000000000000d3d9 l .debug_str 0000000000000000 .LASF152 +00000000000051d7 l .debug_loc 0000000000000000 .LLST0 +000000000000d3df l .debug_str 0000000000000000 .LASF153 +0000000000005210 l .debug_loc 0000000000000000 .LLST1 +000000000000cd1c l .debug_str 0000000000000000 .LASF154 +0000000000005246 l .debug_loc 0000000000000000 .LLST2 +00000000000019e8 l .text 0000000000000000 .LBB4 +00000000000019f6 l .text 0000000000000000 .LBE4 +000000000000527c l .debug_loc 0000000000000000 .LLST3 +00000000000052a1 l .debug_loc 0000000000000000 .LLST4 +00000000000052d7 l .debug_loc 0000000000000000 .LLST5 +000000000000530d l .debug_loc 0000000000000000 .LLST6 +000000000000cfbc l .debug_str 0000000000000000 .LASF159 +00000000000019e2 l .text 0000000000000000 .LVL0 +00000000000019ec l .text 0000000000000000 .LVL4 +00000000000019ee l .text 0000000000000000 .LVL5 +00000000000019f0 l .text 0000000000000000 .LVL6 +00000000000019e8 l .text 0000000000000000 .LVL3 +00000000000019f6 l .text 0000000000000000 .LVL7 +00000000000019e6 l .text 0000000000000000 .LVL2 +00000000000019e4 l .text 0000000000000000 .LVL1 +000000000000afbf l .debug_info 0000000000000000 .Ldebug_info0 +00000000000019e2 l .text 0000000000000000 .L0 +00000000000019e2 l .text 0000000000000000 .L0 +00000000000019e2 l .text 0000000000000000 .L0 +00000000000019e8 l .text 0000000000000000 .L0 +00000000000019e8 l .text 0000000000000000 .L0 +00000000000019ec l .text 0000000000000000 .L0 +00000000000019ec l .text 0000000000000000 .L0 +00000000000019ee l .text 0000000000000000 .L0 +00000000000019ee l .text 0000000000000000 .L0 +00000000000019f0 l .text 0000000000000000 .L0 +00000000000019f0 l .text 0000000000000000 .L0 +00000000000019f4 l .text 0000000000000000 .L0 +00000000000019f6 l .text 0000000000000000 .L0 +00000000000019f6 l .text 0000000000000000 .L0 +00000000000019f8 l .text 0000000000000000 .L0 +0000000000000e58 l .debug_frame 0000000000000000 .L0 +00000000000019e2 l .text 0000000000000000 .L0 +00000000000019f8 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 nsh_consolemain.c +000000000000abb0 l .rodata 0000000000000000 .LC0 +0000000000001a12 l .text 0000000000000000 .L0 +000000000000abc8 l .rodata 0000000000000000 .LC1 +0000000000001a1e l .text 0000000000000000 .L0 +0000000000001a2e l .text 0000000000000000 .L2 +000000000000376f l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000000da22 l .debug_str 0000000000000000 .LASF85 +000000000000d973 l .debug_str 0000000000000000 .LASF86 +000000000000d80a l .debug_str 0000000000000000 .LASF87 +0000000000000ba0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000007257 l .debug_line 0000000000000000 .Ldebug_line0 +000000000000d761 l .debug_str 0000000000000000 .LASF0 +000000000000d985 l .debug_str 0000000000000000 .LASF3 +000000000000d91a l .debug_str 0000000000000000 .LASF1 +000000000000d928 l .debug_str 0000000000000000 .LASF2 +000000000000d8db l .debug_str 0000000000000000 .LASF4 +000000000000d86d l .debug_str 0000000000000000 .LASF5 +000000000000d7fd l .debug_str 0000000000000000 .LASF6 +000000000000d792 l .debug_str 0000000000000000 .LASF7 +000000000000d828 l .debug_str 0000000000000000 .LASF8 +000000000000dadc l .debug_str 0000000000000000 .LASF9 +000000000000d8a1 l .debug_str 0000000000000000 .LASF10 +000000000000d72e l .debug_str 0000000000000000 .LASF11 +000000000000d9ba l .debug_str 0000000000000000 .LASF12 +000000000000d7c5 l .debug_str 0000000000000000 .LASF13 +000000000000d6fc l .debug_str 0000000000000000 .LASF14 +000000000000d713 l .debug_str 0000000000000000 .LASF15 +000000000000d98e l .debug_str 0000000000000000 .LASF16 +000000000000d780 l .debug_str 0000000000000000 .LASF88 +000000000000d843 l .debug_str 0000000000000000 .LASF17 +000000000000d85d l .debug_str 0000000000000000 .LASF18 +000000000000d9c2 l .debug_str 0000000000000000 .LASF19 +000000000000d723 l .debug_str 0000000000000000 .LASF25 +000000000000db09 l .debug_str 0000000000000000 .LASF20 +000000000000d962 l .debug_str 0000000000000000 .LASF21 +000000000000d7d6 l .debug_str 0000000000000000 .LASF22 +000000000000d8af l .debug_str 0000000000000000 .LASF23 +000000000000d9e4 l .debug_str 0000000000000000 .LASF24 +000000000000d943 l .debug_str 0000000000000000 .LASF26 +000000000000daf1 l .debug_str 0000000000000000 .LASF27 +000000000000d8c0 l .debug_str 0000000000000000 .LASF28 +000000000000da10 l .debug_str 0000000000000000 .LASF29 +000000000000d9ed l .debug_str 0000000000000000 .LASF30 +000000000000d9d9 l .debug_str 0000000000000000 .LASF31 +000000000000d8e5 l .debug_str 0000000000000000 .LASF32 +000000000000d78c l .debug_str 0000000000000000 .LASF33 +000000000000d7e2 l .debug_str 0000000000000000 .LASF34 +000000000000d953 l .debug_str 0000000000000000 .LASF35 +000000000000d7ee l .debug_str 0000000000000000 .LASF36 +000000000000d901 l .debug_str 0000000000000000 .LASF37 +000000000000d93d l .debug_str 0000000000000000 .LASF38 +000000000000dafb l .debug_str 0000000000000000 .LASF39 +000000000000d7b3 l .debug_str 0000000000000000 .LASF40 +000000000000d7ce l .debug_str 0000000000000000 .LASF41 +000000000000d7aa l .debug_str 0000000000000000 .LASF42 +000000000000d7bc l .debug_str 0000000000000000 .LASF43 +000000000000d9a3 l .debug_str 0000000000000000 .LASF44 +000000000000da05 l .debug_str 0000000000000000 .LASF45 +000000000000d914 l .debug_str 0000000000000000 .LASF46 +000000000000daeb l .debug_str 0000000000000000 .LASF89 +000000000000d745 l .debug_str 0000000000000000 .LASF47 +000000000000d751 l .debug_str 0000000000000000 .LASF48 +000000000000d852 l .debug_str 0000000000000000 .LASF49 +000000000000d7f7 l .debug_str 0000000000000000 .LASF50 +000000000000d756 l .debug_str 0000000000000000 .LASF51 +000000000000d9f6 l .debug_str 0000000000000000 .LASF52 +000000000000d95b l .debug_str 0000000000000000 .LASF53 +000000000000d76d l .debug_str 0000000000000000 .LASF54 +000000000000d8a9 l .debug_str 0000000000000000 .LASF55 +000000000000d9d3 l .debug_str 0000000000000000 .LASF56 +000000000000d8f2 l .debug_str 0000000000000000 .LASF57 +000000000000d8b9 l .debug_str 0000000000000000 .LASF58 +000000000000d6f1 l .debug_str 0000000000000000 .LASF59 +000000000000d8f8 l .debug_str 0000000000000000 .LASF60 +000000000000d880 l .debug_str 0000000000000000 .LASF61 +000000000000d94e l .debug_str 0000000000000000 .LASF62 +000000000000da19 l .debug_str 0000000000000000 .LASF63 +000000000000d9ae l .debug_str 0000000000000000 .LASF64 +000000000000dae5 l .debug_str 0000000000000000 .LASF65 +000000000000dad2 l .debug_str 0000000000000000 .LASF66 +000000000000d9b3 l .debug_str 0000000000000000 .LASF67 +000000000000d909 l .debug_str 0000000000000000 .LASF68 +000000000000d857 l .debug_str 0000000000000000 .LASF69 +000000000000d932 l .debug_str 0000000000000000 .LASF70 +000000000000d775 l .debug_str 0000000000000000 .LASF71 +000000000000d96e l .debug_str 0000000000000000 .LASF72 +000000000000d8d6 l .debug_str 0000000000000000 .LASF73 +000000000000d891 l .debug_str 0000000000000000 .LASF74 +000000000000d889 l .debug_str 0000000000000000 .LASF75 +000000000000d83a l .debug_str 0000000000000000 .LASF76 +000000000000d99a l .debug_str 0000000000000000 .LASF77 +000000000000d71b l .debug_str 0000000000000000 .LASF78 +000000000000d703 l .debug_str 0000000000000000 .LASF90 +00000000000019f8 l .text 0000000000000000 .LFB1 +0000000000001a42 l .text 0000000000000000 .LFE1 +000000000000db04 l .debug_str 0000000000000000 .LASF79 +0000000000005338 l .debug_loc 0000000000000000 .LLST0 +000000000000db13 l .debug_str 0000000000000000 .LASF80 +0000000000005371 l .debug_loc 0000000000000000 .LLST1 +000000000000d993 l .debug_str 0000000000000000 .LASF81 +00000000000053a8 l .debug_loc 0000000000000000 .LLST2 +00000000000053f1 l .debug_loc 0000000000000000 .LLST3 +0000000000001a0c l .text 0000000000000000 .LVL2 +0000000000001a2e l .text 0000000000000000 .LVL4 +0000000000001a3a l .text 0000000000000000 .LVL5 +0000000000001a42 l .text 0000000000000000 .LVL7 +000000000000d79b l .debug_str 0000000000000000 .LASF82 +000000000000d9fc l .debug_str 0000000000000000 .LASF83 +000000000000d8ca l .debug_str 0000000000000000 .LASF84 +00000000000019f8 l .text 0000000000000000 .LVL0 +00000000000019fe l .text 0000000000000000 .LVL1 +0000000000001a26 l .text 0000000000000000 .LVL3 +0000000000001a3e l .text 0000000000000000 .LVL6 +000000000000b4d4 l .debug_info 0000000000000000 .Ldebug_info0 +00000000000019f8 l .text 0000000000000000 .L0 +00000000000019f8 l .text 0000000000000000 .L0 +00000000000019f8 l .text 0000000000000000 .L0 +00000000000019fc l .text 0000000000000000 .L0 +00000000000019fe l .text 0000000000000000 .L0 +0000000000001a02 l .text 0000000000000000 .L0 +0000000000001a04 l .text 0000000000000000 .L0 +0000000000001a0c l .text 0000000000000000 .L0 +0000000000001a0c l .text 0000000000000000 .L0 +0000000000001a0c l .text 0000000000000000 .L0 +0000000000001a12 l .text 0000000000000000 .L0 +0000000000001a2e l .text 0000000000000000 .L0 +0000000000001a32 l .text 0000000000000000 .L0 +0000000000001a32 l .text 0000000000000000 .L0 +0000000000001a32 l .text 0000000000000000 .L0 +0000000000001a32 l .text 0000000000000000 .L0 +0000000000001a3a l .text 0000000000000000 .L0 +0000000000001a3c l .text 0000000000000000 .L0 +0000000000001a3e l .text 0000000000000000 .L0 +0000000000001a42 l .text 0000000000000000 .L0 +0000000000000e80 l .debug_frame 0000000000000000 .L0 +00000000000019f8 l .text 0000000000000000 .L0 +0000000000001a42 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 nsh_init.c +0000000000003996 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000000dbf4 l .debug_str 0000000000000000 .LASF12 +000000000000db33 l .debug_str 0000000000000000 .LASF13 +000000000000db64 l .debug_str 0000000000000000 .LASF14 +0000000000000bc0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000007427 l .debug_line 0000000000000000 .Ldebug_line0 +000000000000dbc0 l .debug_str 0000000000000000 .LASF0 +000000000000db82 l .debug_str 0000000000000000 .LASF1 +000000000000dbd8 l .debug_str 0000000000000000 .LASF2 +000000000000dbad l .debug_str 0000000000000000 .LASF3 +000000000000db26 l .debug_str 0000000000000000 .LASF4 +000000000000db95 l .debug_str 0000000000000000 .LASF5 +000000000000dbe2 l .debug_str 0000000000000000 .LASF6 +000000000000db4d l .debug_str 0000000000000000 .LASF7 +000000000000db90 l .debug_str 0000000000000000 .LASF8 +000000000000db18 l .debug_str 0000000000000000 .LASF9 +000000000000dbcc l .debug_str 0000000000000000 .LASF10 +000000000000dba7 l .debug_str 0000000000000000 .LASF11 +000000000000db3e l .debug_str 0000000000000000 .LASF15 +0000000000001a42 l .text 0000000000000000 .LFB7 +0000000000001a52 l .text 0000000000000000 .LFE7 +0000000000001a52 l .text 0000000000000000 .LVL0 +000000000000db9e l .debug_str 0000000000000000 .LASF16 +000000000000bbdd l .debug_info 0000000000000000 .Ldebug_info0 +0000000000001a42 l .text 0000000000000000 .L0 +0000000000001a42 l .text 0000000000000000 .L0 +0000000000001a52 l .text 0000000000000000 .L0 +0000000000000eb0 l .debug_frame 0000000000000000 .L0 +0000000000001a42 l .text 0000000000000000 .L0 +0000000000001a52 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 nsh_session.c +000000000000abe0 l .rodata 0000000000000000 .LC0 +0000000000001a62 l .text 0000000000000000 .L0 +000000000000abe8 l .rodata 0000000000000000 .LC1 +0000000000001a6e l .text 0000000000000000 .L0 +0000000000001a86 l .text 0000000000000000 .L0 +0000000000001a9c l .text 0000000000000000 .L0 +0000000000001ab2 l .text 0000000000000000 .L0 +000000000000ac30 l .rodata 0000000000000000 .LC5 +0000000000001b02 l .text 0000000000000000 .L0 +000000000000ac40 l .rodata 0000000000000000 .LC6 +0000000000001b0a l .text 0000000000000000 .L0 +0000000000001b12 l .text 0000000000000000 .L0 +000000000000abf8 l .rodata 0000000000000000 .LC2 +0000000000001b2c l .text 0000000000000000 .L0 +000000000000ac00 l .rodata 0000000000000000 .LC3 +0000000000001b48 l .text 0000000000000000 .L0 +000000000000ac28 l .rodata 0000000000000000 .LC4 +0000000000001b66 l .text 0000000000000000 .L0 +0000000000001ba2 l .text 0000000000000000 .L0 +0000000000001bc6 l .text 0000000000000000 .L0 +0000000000001a7e l .text 0000000000000000 .L2 +0000000000001aac l .text 0000000000000000 .L3 +0000000000001b28 l .text 0000000000000000 .L15 +0000000000001bec l .text 0000000000000000 .L10 +0000000000001b54 l .text 0000000000000000 .L6 +0000000000001b66 l .text 0000000000000000 .L5 +0000000000001bb2 l .text 0000000000000000 .L7 +0000000000001b9c l .text 0000000000000000 .L8 +0000000000001bd0 l .text 0000000000000000 .L9 +0000000000001baa l .text 0000000000000000 .L17 +0000000000001ac0 l .text 0000000000000000 .L4 +0000000000003a09 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000000dd64 l .debug_str 0000000000000000 .LASF99 +000000000000dca4 l .debug_str 0000000000000000 .LASF100 +000000000000e0c0 l .debug_str 0000000000000000 .LASF101 +0000000000000be0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +00000000000074a9 l .debug_line 0000000000000000 .Ldebug_line0 +000000000000df76 l .debug_str 0000000000000000 .LASF0 +000000000000dce1 l .debug_str 0000000000000000 .LASF3 +000000000000df3c l .debug_str 0000000000000000 .LASF1 +000000000000dd5a l .debug_str 0000000000000000 .LASF2 +000000000000e0f8 l .debug_str 0000000000000000 .LASF4 +000000000000dfe1 l .debug_str 0000000000000000 .LASF5 +000000000000dfb0 l .debug_str 0000000000000000 .LASF6 +000000000000dea3 l .debug_str 0000000000000000 .LASF7 +000000000000e04f l .debug_str 0000000000000000 .LASF8 +000000000000de9a l .debug_str 0000000000000000 .LASF9 +000000000000dd39 l .debug_str 0000000000000000 .LASF10 +000000000000df88 l .debug_str 0000000000000000 .LASF11 +000000000000de34 l .debug_str 0000000000000000 .LASF12 +000000000000dfc6 l .debug_str 0000000000000000 .LASF13 +000000000000dd18 l .debug_str 0000000000000000 .LASF14 +000000000000dd52 l .debug_str 0000000000000000 .LASF15 +000000000000dff4 l .debug_str 0000000000000000 .LASF16 +000000000000dd2e l .debug_str 0000000000000000 .LASF18 +000000000000def4 l .debug_str 0000000000000000 .LASF20 +000000000000de1a l .debug_str 0000000000000000 .LASF17 +000000000000e147 l .debug_str 0000000000000000 .LASF19 +000000000000de25 l .debug_str 0000000000000000 .LASF21 +000000000000df20 l .debug_str 0000000000000000 .LASF22 +000000000000de75 l .debug_str 0000000000000000 .LASF23 +000000000000df14 l .debug_str 0000000000000000 .LASF24 +000000000000dff9 l .debug_str 0000000000000000 .LASF25 +000000000000de5d l .debug_str 0000000000000000 .LASF102 +000000000000df4a l .debug_str 0000000000000000 .LASF26 +000000000000e06b l .debug_str 0000000000000000 .LASF27 +000000000000de3c l .debug_str 0000000000000000 .LASF28 +000000000000e12f l .debug_str 0000000000000000 .LASF29 +000000000000e061 l .debug_str 0000000000000000 .LASF30 +000000000000e08d l .debug_str 0000000000000000 .LASF31 +000000000000e0a8 l .debug_str 0000000000000000 .LASF32 +000000000000de53 l .debug_str 0000000000000000 .LASF33 +000000000000e11b l .debug_str 0000000000000000 .LASF34 +000000000000df31 l .debug_str 0000000000000000 .LASF35 +000000000000e045 l .debug_str 0000000000000000 .LASF36 +000000000000e029 l .debug_str 0000000000000000 .LASF37 +000000000000deeb l .debug_str 0000000000000000 .LASF38 +000000000000de91 l .debug_str 0000000000000000 .LASF39 +000000000000deac l .debug_str 0000000000000000 .LASF40 +000000000000dd0b l .debug_str 0000000000000000 .LASF41 +000000000000de14 l .debug_str 0000000000000000 .LASF42 +000000000000e07b l .debug_str 0000000000000000 .LASF43 +000000000000e0f0 l .debug_str 0000000000000000 .LASF44 +000000000000dcf0 l .debug_str 0000000000000000 .LASF45 +000000000000dee3 l .debug_str 0000000000000000 .LASF46 +000000000000de4d l .debug_str 0000000000000000 .LASF47 +000000000000defa l .debug_str 0000000000000000 .LASF48 +000000000000dd1f l .debug_str 0000000000000000 .LASF49 +000000000000e03d l .debug_str 0000000000000000 .LASF50 +000000000000e112 l .debug_str 0000000000000000 .LASF51 +000000000000dcc9 l .debug_str 0000000000000000 .LASF52 +000000000000dd00 l .debug_str 0000000000000000 .LASF53 +000000000000e124 l .debug_str 0000000000000000 .LASF54 +000000000000df82 l .debug_str 0000000000000000 .LASF103 +000000000000df08 l .debug_str 0000000000000000 .LASF55 +000000000000e13a l .debug_str 0000000000000000 .LASF56 +000000000000e0de l .debug_str 0000000000000000 .LASF57 +000000000000e01a l .debug_str 0000000000000000 .LASF58 +000000000000e102 l .debug_str 0000000000000000 .LASF59 +000000000000e087 l .debug_str 0000000000000000 .LASF60 +000000000000e099 l .debug_str 0000000000000000 .LASF61 +000000000000dd41 l .debug_str 0000000000000000 .LASF62 +000000000000dcdb l .debug_str 0000000000000000 .LASF63 +000000000000dfcf l .debug_str 0000000000000000 .LASF64 +000000000000e0ea l .debug_str 0000000000000000 .LASF65 +000000000000e0e3 l .debug_str 0000000000000000 .LASF66 +000000000000deb7 l .debug_str 0000000000000000 .LASF67 +000000000000dcd2 l .debug_str 0000000000000000 .LASF68 +000000000000dd49 l .debug_str 0000000000000000 .LASF69 +000000000000df03 l .debug_str 0000000000000000 .LASF70 +000000000000dec2 l .debug_str 0000000000000000 .LASF71 +000000000000e015 l .debug_str 0000000000000000 .LASF72 +000000000000dcea l .debug_str 0000000000000000 .LASF73 +000000000000de2a l .debug_str 0000000000000000 .LASF74 +000000000000df5e l .debug_str 0000000000000000 .LASF75 +000000000000de83 l .debug_str 0000000000000000 .LASF76 +000000000000df25 l .debug_str 0000000000000000 .LASF77 +000000000000dcbd l .debug_str 0000000000000000 .LASF78 +000000000000df65 l .debug_str 0000000000000000 .LASF79 +000000000000e006 l .debug_str 0000000000000000 .LASF80 +000000000000ded3 l .debug_str 0000000000000000 .LASF81 +000000000000dfa8 l .debug_str 0000000000000000 .LASF82 +000000000000e020 l .debug_str 0000000000000000 .LASF83 +000000000000dfbd l .debug_str 0000000000000000 .LASF84 +000000000000decb l .debug_str 0000000000000000 .LASF85 +000000000000e0b4 l .debug_str 0000000000000000 .LASF104 +0000000000001a52 l .text 0000000000000000 .LFB5 +0000000000001bfa l .text 0000000000000000 .LFE5 +000000000000dcf9 l .debug_str 0000000000000000 .LASF86 +0000000000005414 l .debug_loc 0000000000000000 .LLST0 +000000000000dd28 l .debug_str 0000000000000000 .LASF87 +0000000000005553 l .debug_loc 0000000000000000 .LLST1 +000000000000df59 l .debug_str 0000000000000000 .LASF88 +00000000000055b5 l .debug_loc 0000000000000000 .LLST2 +000000000000dfdc l .debug_str 0000000000000000 .LASF89 +0000000000005617 l .debug_loc 0000000000000000 .LLST3 +000000000000e10d l .debug_str 0000000000000000 .LASF90 +0000000000005707 l .debug_loc 0000000000000000 .LLST4 +000000000000580a l .debug_loc 0000000000000000 .LLST5 +0000000000001a7e l .text 0000000000000000 .LVL4 +0000000000001a96 l .text 0000000000000000 .LVL7 +0000000000001aac l .text 0000000000000000 .LVL8 +0000000000001aca l .text 0000000000000000 .LVL11 +0000000000001ada l .text 0000000000000000 .LVL12 +0000000000001aee l .text 0000000000000000 .LVL13 +0000000000001b00 l .text 0000000000000000 .LVL15 +0000000000001b24 l .text 0000000000000000 .LVL16 +0000000000001b3e l .text 0000000000000000 .LVL19 +0000000000001b54 l .text 0000000000000000 .LVL20 +0000000000001b78 l .text 0000000000000000 .LVL22 +0000000000001b9c l .text 0000000000000000 .LVL25 +0000000000001bae l .text 0000000000000000 .LVL26 +0000000000001bec l .text 0000000000000000 .LVL29 +0000000000001bf8 l .text 0000000000000000 .LVL31 +000000000000df9f l .debug_str 0000000000000000 .LASF91 +000000000000dfff l .debug_str 0000000000000000 .LASF92 +000000000000de69 l .debug_str 0000000000000000 .LASF93 +000000000000e13f l .debug_str 0000000000000000 .LASF94 +000000000000e0a0 l .debug_str 0000000000000000 .LASF95 +000000000000dfd5 l .debug_str 0000000000000000 .LASF96 +000000000000e033 l .debug_str 0000000000000000 .LASF97 +000000000000dcb2 l .debug_str 0000000000000000 .LASF98 +0000000000001a52 l .text 0000000000000000 .LVL0 +0000000000001a76 l .text 0000000000000000 .LVL3 +0000000000001a86 l .text 0000000000000000 .LVL6 +0000000000001af8 l .text 0000000000000000 .LVL14 +0000000000001b26 l .text 0000000000000000 .LVL17 +0000000000001b28 l .text 0000000000000000 .LVL18 +0000000000001b66 l .text 0000000000000000 .LVL21 +0000000000001b84 l .text 0000000000000000 .LVL23 +0000000000001bd4 l .text 0000000000000000 .LVL27 +0000000000001a6e l .text 0000000000000000 .LVL2 +0000000000001a6a l .text 0000000000000000 .LVL1 +0000000000001aba l .text 0000000000000000 .LVL9 +0000000000001b8e l .text 0000000000000000 .LVL24 +0000000000001bda l .text 0000000000000000 .LVL28 +0000000000001a84 l .text 0000000000000000 .LVL5 +0000000000001ac0 l .text 0000000000000000 .LVL10 +0000000000001bf0 l .text 0000000000000000 .LVL30 +000000000000bca8 l .debug_info 0000000000000000 .Ldebug_info0 +0000000000001a52 l .text 0000000000000000 .L0 +0000000000001a52 l .text 0000000000000000 .L0 +0000000000001a52 l .text 0000000000000000 .L0 +0000000000001a52 l .text 0000000000000000 .L0 +0000000000001a52 l .text 0000000000000000 .L0 +0000000000001a52 l .text 0000000000000000 .L0 +0000000000001a60 l .text 0000000000000000 .L0 +0000000000001a62 l .text 0000000000000000 .L0 +0000000000001a84 l .text 0000000000000000 .L0 +0000000000001a84 l .text 0000000000000000 .L0 +0000000000001a84 l .text 0000000000000000 .L0 +0000000000001a84 l .text 0000000000000000 .L0 +0000000000001a86 l .text 0000000000000000 .L0 +0000000000001aac l .text 0000000000000000 .L0 +0000000000001aac l .text 0000000000000000 .L0 +0000000000001ab2 l .text 0000000000000000 .L0 +0000000000001aba l .text 0000000000000000 .L0 +0000000000001abe l .text 0000000000000000 .L0 +0000000000001ac0 l .text 0000000000000000 .L0 +0000000000001ac0 l .text 0000000000000000 .L0 +0000000000001ada l .text 0000000000000000 .L0 +0000000000001ada l .text 0000000000000000 .L0 +0000000000001aee l .text 0000000000000000 .L0 +0000000000001aee l .text 0000000000000000 .L0 +0000000000001af4 l .text 0000000000000000 .L0 +0000000000001af8 l .text 0000000000000000 .L0 +0000000000001b00 l .text 0000000000000000 .L0 +0000000000001b24 l .text 0000000000000000 .L0 +0000000000001b24 l .text 0000000000000000 .L0 +0000000000001b24 l .text 0000000000000000 .L0 +0000000000001b24 l .text 0000000000000000 .L0 +0000000000001b28 l .text 0000000000000000 .L0 +0000000000001b28 l .text 0000000000000000 .L0 +0000000000001b40 l .text 0000000000000000 .L0 +0000000000001b42 l .text 0000000000000000 .L0 +0000000000001b54 l .text 0000000000000000 .L0 +0000000000001b54 l .text 0000000000000000 .L0 +0000000000001b66 l .text 0000000000000000 .L0 +0000000000001b66 l .text 0000000000000000 .L0 +0000000000001b78 l .text 0000000000000000 .L0 +0000000000001b7a l .text 0000000000000000 .L0 +0000000000001b7a l .text 0000000000000000 .L0 +0000000000001b80 l .text 0000000000000000 .L0 +0000000000001b80 l .text 0000000000000000 .L0 +0000000000001b82 l .text 0000000000000000 .L0 +0000000000001b84 l .text 0000000000000000 .L0 +0000000000001b88 l .text 0000000000000000 .L0 +0000000000001b94 l .text 0000000000000000 .L0 +0000000000001b9c l .text 0000000000000000 .L0 +0000000000001baa l .text 0000000000000000 .L0 +0000000000001bae l .text 0000000000000000 .L0 +0000000000001bae l .text 0000000000000000 .L0 +0000000000001bb2 l .text 0000000000000000 .L0 +0000000000001bb2 l .text 0000000000000000 .L0 +0000000000001bba l .text 0000000000000000 .L0 +0000000000001bbe l .text 0000000000000000 .L0 +0000000000001bc2 l .text 0000000000000000 .L0 +0000000000001bd0 l .text 0000000000000000 .L0 +0000000000001bd0 l .text 0000000000000000 .L0 +0000000000001bd2 l .text 0000000000000000 .L0 +0000000000001bdc l .text 0000000000000000 .L0 +0000000000001bde l .text 0000000000000000 .L0 +0000000000001be0 l .text 0000000000000000 .L0 +0000000000001be2 l .text 0000000000000000 .L0 +0000000000001be4 l .text 0000000000000000 .L0 +0000000000001bec l .text 0000000000000000 .L0 +0000000000001bf8 l .text 0000000000000000 .L0 +0000000000001bf8 l .text 0000000000000000 .L0 +0000000000001bfa l .text 0000000000000000 .L0 +0000000000000ed8 l .debug_frame 0000000000000000 .L0 +0000000000001a52 l .text 0000000000000000 .L0 +0000000000001bfa l .text 0000000000000000 .L0 +0000000000001b56 l .text 0000000000000000 .L0 +0000000000001a60 l .text 0000000000000000 .L0 +0000000000001b84 l .text 0000000000000000 .L0 +0000000000001b66 l .text 0000000000000000 .L0 +0000000000001b9c l .text 0000000000000000 .L0 +0000000000001b94 l .text 0000000000000000 .L0 +0000000000001bd4 l .text 0000000000000000 .L0 +0000000000001bec l .text 0000000000000000 .L0 +0000000000001be4 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 readline_fd.c +0000000000001bfa l F .text 0000000000000064 readline_putc +0000000000001c5e l F .text 0000000000000036 readline_write +0000000000001c94 l F .text 0000000000000062 readline_getc +000000000000ac50 l .rodata 0000000000000000 .LC0 +0000000000001c08 l .text 0000000000000000 .L0 +000000000000ac58 l .rodata 0000000000000000 .LC1 +0000000000001c14 l .text 0000000000000000 .L0 +0000000000001c24 l .text 0000000000000000 .L2 +0000000000001c50 l .text 0000000000000000 .L1 +0000000000001c5a l .text 0000000000000000 .L4 +0000000000001c2e l .text 0000000000000000 .L3 +000000000000ac68 l .rodata 0000000000000000 .LC2 +0000000000001c66 l .text 0000000000000000 .L0 +0000000000001c72 l .text 0000000000000000 .L0 +0000000000001c64 l .text 0000000000000000 .L14 +0000000000001c84 l .text 0000000000000000 .L15 +0000000000001c92 l .text 0000000000000000 .L13 +0000000000001cc0 l .text 0000000000000000 .L0 +0000000000001ccc l .text 0000000000000000 .L0 +0000000000001cc0 l .text 0000000000000000 .L32 +0000000000001cdc l .text 0000000000000000 .L27 +0000000000001cf0 l .text 0000000000000000 .L29 +0000000000001ca2 l .text 0000000000000000 .L26 +0000000000001cb4 l .text 0000000000000000 .L30 +0000000000001cb6 l .text 0000000000000000 .L28 +0000000000001cf8 l .text 0000000000000000 .L0 +0000000000001d02 l .text 0000000000000000 .L0 +0000000000001d10 l .text 0000000000000000 .L0 +0000000000003c70 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000000e206 l .debug_str 0000000000000000 .LASF35 +000000000000e177 l .debug_str 0000000000000000 .LASF36 +000000000000e398 l .debug_str 0000000000000000 .LASF37 +0000000000000c00 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000000788e l .debug_line 0000000000000000 .Ldebug_line0 +000000000000e36b l .debug_str 0000000000000000 .LASF0 +000000000000e1cc l .debug_str 0000000000000000 .LASF1 +000000000000e31c l .debug_str 0000000000000000 .LASF2 +000000000000e377 l .debug_str 0000000000000000 .LASF3 +000000000000e2df l .debug_str 0000000000000000 .LASF4 +000000000000e350 l .debug_str 0000000000000000 .LASF5 +000000000000e1da l .debug_str 0000000000000000 .LASF6 +000000000000e2b6 l .debug_str 0000000000000000 .LASF7 +000000000000e2bf l .debug_str 0000000000000000 .LASF8 +000000000000e2ec l .debug_str 0000000000000000 .LASF9 +000000000000e170 l .debug_str 0000000000000000 .LASF10 +000000000000e1bb l .debug_str 0000000000000000 .LASF11 +000000000000e317 l .debug_str 0000000000000000 .LASF12 +000000000000e309 l .debug_str 0000000000000000 .LASF13 +000000000000e359 l .debug_str 0000000000000000 .LASF14 +000000000000e38a l .debug_str 0000000000000000 .LASF15 +000000000000e326 l .debug_str 0000000000000000 .LASF19 +000000000000e1ec l .debug_str 0000000000000000 .LASF16 +000000000000e339 l .debug_str 0000000000000000 .LASF17 +000000000000e195 l .debug_str 0000000000000000 .LASF18 +000000000000e185 l .debug_str 0000000000000000 .LASF20 +000000000000e19e l .debug_str 0000000000000000 .LASF21 +000000000000e2c7 l .debug_str 0000000000000000 .LASF22 +000000000000e303 l .debug_str 0000000000000000 .LASF23 +000000000000e1f4 l .debug_str 0000000000000000 .LASF38 +0000000000001cf6 l .text 0000000000000000 .LFB7 +0000000000001d30 l .text 0000000000000000 .LFE7 +0000000000005890 l .debug_loc 0000000000000000 .LLST16 +000000000000e349 l .debug_str 0000000000000000 .LASF24 +00000000000058dc l .debug_loc 0000000000000000 .LLST17 +0000000000005915 l .debug_loc 0000000000000000 .LLST18 +0000000000005962 l .debug_loc 0000000000000000 .LLST19 +0000000000001d2a l .text 0000000000000000 .LVL33 +000000000000e1ac l .debug_str 0000000000000000 .LASF39 +000000000000e332 l .debug_str 0000000000000000 .LASF25 +000000000000e190 l .debug_str 0000000000000000 .LASF26 +000000000000e152 l .debug_str 0000000000000000 .LASF40 +0000000000001bfa l .text 0000000000000000 .LFB5 +0000000000001c5e l .text 0000000000000000 .LFE5 +000000000000599b l .debug_loc 0000000000000000 .LLST0 +0000000000005a23 l .debug_loc 0000000000000000 .LLST1 +0000000000005a85 l .debug_loc 0000000000000000 .LLST2 +000000000000e1c3 l .debug_str 0000000000000000 .LASF27 +0000000000005b0d l .debug_loc 0000000000000000 .LLST3 +0000000000001c24 l .text 0000000000000000 .LVL3 +0000000000001c3e l .text 0000000000000000 .LVL6 +0000000000001c4a l .text 0000000000000000 .LVL7 +000000000000e2d1 l .debug_str 0000000000000000 .LASF41 +000000000000e365 l .debug_str 0000000000000000 .LASF28 +000000000000e390 l .debug_str 0000000000000000 .LASF29 +0000000000001ce8 l .text 0000000000000000 .LVL26 +0000000000001c5e l .text 0000000000000000 .LFB6 +0000000000001c94 l .text 0000000000000000 .LFE6 +0000000000005b43 l .debug_loc 0000000000000000 .LLST4 +0000000000005ba5 l .debug_loc 0000000000000000 .LLST5 +0000000000005c1a l .debug_loc 0000000000000000 .LLST6 +0000000000005c8f l .debug_loc 0000000000000000 .LLST7 +0000000000001c64 l .text 0000000000000000 .LBB5 +0000000000005cf1 l .debug_loc 0000000000000000 .LLST8 +0000000000005d2a l .debug_loc 0000000000000000 .LLST9 +0000000000005d63 l .debug_loc 0000000000000000 .LLST10 +0000000000001c84 l .text 0000000000000000 .LVL15 +0000000000001c92 l .text 0000000000000000 .LVL17 +0000000000001c94 l .text 0000000000000000 .LFB4 +0000000000001cf6 l .text 0000000000000000 .LFE4 +0000000000005d9c l .debug_loc 0000000000000000 .LLST11 +0000000000005e24 l .debug_loc 0000000000000000 .LLST12 +0000000000005eac l .debug_loc 0000000000000000 .LLST13 +0000000000005ef5 l .debug_loc 0000000000000000 .LLST14 +0000000000001cc0 l .text 0000000000000000 .LBB16 +0000000000001cdc l .text 0000000000000000 .LBE16 +0000000000005f19 l .debug_loc 0000000000000000 .LLST15 +0000000000001cdc l .text 0000000000000000 .LVL25 +0000000000001cb2 l .text 0000000000000000 .LVL20 +000000000000e160 l .debug_str 0000000000000000 .LASF30 +000000000000e1a3 l .debug_str 0000000000000000 .LASF31 +000000000000e200 l .debug_str 0000000000000000 .LASF32 +000000000000e341 l .debug_str 0000000000000000 .LASF33 +000000000000e2cc l .debug_str 0000000000000000 .LASF34 +0000000000001cf6 l .text 0000000000000000 .LVL29 +0000000000001d1c l .text 0000000000000000 .LVL32 +0000000000001d1a l .text 0000000000000000 .LVL31 +0000000000001d10 l .text 0000000000000000 .LVL30 +0000000000001bfa l .text 0000000000000000 .LVL0 +0000000000001c1c l .text 0000000000000000 .LVL2 +0000000000001c2c l .text 0000000000000000 .LVL4 +0000000000001c54 l .text 0000000000000000 .LVL8 +0000000000001c5a l .text 0000000000000000 .LVL9 +0000000000001c14 l .text 0000000000000000 .LVL1 +0000000000001c2e l .text 0000000000000000 .LVL5 +0000000000001c5e l .text 0000000000000000 .LVL10 +0000000000001c7a l .text 0000000000000000 .LVL14 +0000000000001c86 l .text 0000000000000000 .LVL16 +0000000000001c72 l .text 0000000000000000 .LVL13 +0000000000001c6e l .text 0000000000000000 .LVL12 +0000000000001c64 l .text 0000000000000000 .LVL11 +0000000000001c94 l .text 0000000000000000 .LVL18 +0000000000001ca2 l .text 0000000000000000 .LVL19 +0000000000001cba l .text 0000000000000000 .LVL22 +0000000000001cc0 l .text 0000000000000000 .LVL23 +0000000000001cd4 l .text 0000000000000000 .LVL24 +0000000000001cb4 l .text 0000000000000000 .LVL21 +0000000000001cf0 l .text 0000000000000000 .LVL27 +0000000000001cf4 l .text 0000000000000000 .LVL28 +000000000000c5b3 l .debug_info 0000000000000000 .Ldebug_info0 +0000000000001c64 l .text 0000000000000000 .LBE5 +0000000000001c66 l .text 0000000000000000 .LBB9 +0000000000001c7a l .text 0000000000000000 .LBE9 +0000000000001c7c l .text 0000000000000000 .LBB10 +0000000000001c84 l .text 0000000000000000 .LBE10 +0000000000001ca0 l .text 0000000000000000 .LBB15 +0000000000001ca2 l .text 0000000000000000 .LBE15 +0000000000001ce0 l .text 0000000000000000 .LBB18 +0000000000001cf0 l .text 0000000000000000 .LBE18 +0000000000001bfa l .text 0000000000000000 .L0 +0000000000001c5e l .text 0000000000000000 .L0 +0000000000001c94 l .text 0000000000000000 .L0 +0000000000001cf6 l .text 0000000000000000 .L0 +0000000000001bfa l .text 0000000000000000 .L0 +0000000000001bfa l .text 0000000000000000 .L0 +0000000000001bfa l .text 0000000000000000 .L0 +0000000000001c02 l .text 0000000000000000 .L0 +0000000000001c06 l .text 0000000000000000 .L0 +0000000000001c06 l .text 0000000000000000 .L0 +0000000000001c06 l .text 0000000000000000 .L0 +0000000000001c08 l .text 0000000000000000 .L0 +0000000000001c24 l .text 0000000000000000 .L0 +0000000000001c28 l .text 0000000000000000 .L0 +0000000000001c28 l .text 0000000000000000 .L0 +0000000000001c28 l .text 0000000000000000 .L0 +0000000000001c2c l .text 0000000000000000 .L0 +0000000000001c2e l .text 0000000000000000 .L0 +0000000000001c2e l .text 0000000000000000 .L0 +0000000000001c2e l .text 0000000000000000 .L0 +0000000000001c3e l .text 0000000000000000 .L0 +0000000000001c3e l .text 0000000000000000 .L0 +0000000000001c42 l .text 0000000000000000 .L0 +0000000000001c4a l .text 0000000000000000 .L0 +0000000000001c50 l .text 0000000000000000 .L0 +0000000000001c5a l .text 0000000000000000 .L0 +0000000000001c5a l .text 0000000000000000 .L0 +0000000000001c5e l .text 0000000000000000 .L0 +0000000000001c5e l .text 0000000000000000 .L0 +0000000000001c5e l .text 0000000000000000 .L0 +0000000000001c5e l .text 0000000000000000 .L0 +0000000000001c60 l .text 0000000000000000 .L0 +0000000000001c62 l .text 0000000000000000 .L0 +0000000000001c64 l .text 0000000000000000 .L0 +0000000000001c64 l .text 0000000000000000 .L0 +0000000000001c66 l .text 0000000000000000 .L0 +0000000000001c7a l .text 0000000000000000 .L0 +0000000000001c7c l .text 0000000000000000 .L0 +0000000000001c84 l .text 0000000000000000 .L0 +0000000000001c84 l .text 0000000000000000 .L0 +0000000000001c84 l .text 0000000000000000 .L0 +0000000000001c86 l .text 0000000000000000 .L0 +0000000000001c8a l .text 0000000000000000 .L0 +0000000000001c94 l .text 0000000000000000 .L0 +0000000000001c94 l .text 0000000000000000 .L0 +0000000000001c94 l .text 0000000000000000 .L0 +0000000000001c94 l .text 0000000000000000 .L0 +0000000000001c94 l .text 0000000000000000 .L0 +0000000000001c94 l .text 0000000000000000 .L0 +0000000000001c94 l .text 0000000000000000 .L0 +0000000000001c9c l .text 0000000000000000 .L0 +0000000000001ca0 l .text 0000000000000000 .L0 +0000000000001ca2 l .text 0000000000000000 .L0 +0000000000001ca2 l .text 0000000000000000 .L0 +0000000000001ca2 l .text 0000000000000000 .L0 +0000000000001ca2 l .text 0000000000000000 .L0 +0000000000001cb2 l .text 0000000000000000 .L0 +0000000000001cb2 l .text 0000000000000000 .L0 +0000000000001cb4 l .text 0000000000000000 .L0 +0000000000001cb6 l .text 0000000000000000 .L0 +0000000000001cc0 l .text 0000000000000000 .L0 +0000000000001cdc l .text 0000000000000000 .L0 +0000000000001cdc l .text 0000000000000000 .L0 +0000000000001ce0 l .text 0000000000000000 .L0 +0000000000001ce0 l .text 0000000000000000 .L0 +0000000000001ce8 l .text 0000000000000000 .L0 +0000000000001ce8 l .text 0000000000000000 .L0 +0000000000001cf0 l .text 0000000000000000 .L0 +0000000000001cf0 l .text 0000000000000000 .L0 +0000000000001cf0 l .text 0000000000000000 .L0 +0000000000001cf6 l .text 0000000000000000 .L0 +0000000000001cf6 l .text 0000000000000000 .L0 +0000000000001cf6 l .text 0000000000000000 .L0 +0000000000001cf6 l .text 0000000000000000 .L0 +0000000000001cf6 l .text 0000000000000000 .L0 +0000000000001cf8 l .text 0000000000000000 .L0 +0000000000001d02 l .text 0000000000000000 .L0 +0000000000001d02 l .text 0000000000000000 .L0 +0000000000001d0a l .text 0000000000000000 .L0 +0000000000001d0c l .text 0000000000000000 .L0 +0000000000001d0c l .text 0000000000000000 .L0 +0000000000001d0e l .text 0000000000000000 .L0 +0000000000001d0e l .text 0000000000000000 .L0 +0000000000001d10 l .text 0000000000000000 .L0 +0000000000001d18 l .text 0000000000000000 .L0 +0000000000001d1c l .text 0000000000000000 .L0 +0000000000001d1e l .text 0000000000000000 .L0 +0000000000001d20 l .text 0000000000000000 .L0 +0000000000001d20 l .text 0000000000000000 .L0 +0000000000001d22 l .text 0000000000000000 .L0 +0000000000001d22 l .text 0000000000000000 .L0 +0000000000001d2a l .text 0000000000000000 .L0 +0000000000001d30 l .text 0000000000000000 .L0 +0000000000000f48 l .debug_frame 0000000000000000 .L0 +0000000000001bfa l .text 0000000000000000 .L0 +0000000000001c5e l .text 0000000000000000 .L0 +0000000000001c5e l .text 0000000000000000 .L0 +0000000000001c94 l .text 0000000000000000 .L0 +0000000000001c94 l .text 0000000000000000 .L0 +0000000000001cf6 l .text 0000000000000000 .L0 +0000000000001cf6 l .text 0000000000000000 .L0 +0000000000001d30 l .text 0000000000000000 .L0 +0000000000001c52 l .text 0000000000000000 .L0 +0000000000001c02 l .text 0000000000000000 .L0 +0000000000001c66 l .text 0000000000000000 .L0 +0000000000001c7c l .text 0000000000000000 .L0 +0000000000001c84 l .text 0000000000000000 .L0 +0000000000001cb8 l .text 0000000000000000 .L0 +0000000000001c9c l .text 0000000000000000 .L0 +0000000000001d1e l .text 0000000000000000 .L0 +0000000000001cf8 l .text 0000000000000000 .L0 +0000000000001d2c l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 nsh_console.c +0000000000001d30 l F .text 0000000000000006 nsh_consolelinebuffer +0000000000001d36 l F .text 0000000000000014 nsh_consoleredirect +0000000000001d4a l F .text 000000000000004a nsh_closeifnotclosed +0000000000001d94 l F .text 000000000000002a nsh_consoleundirect +0000000000001dbe l F .text 0000000000000026 nsh_erroroutput +0000000000001de4 l F .text 0000000000000026 nsh_consoleoutput +0000000000001e0a l F .text 000000000000000c nsh_consoleioctl +0000000000001e16 l F .text 0000000000000020 nsh_consolerelease +0000000000001e36 l F .text 000000000000001a nsh_consoleexit +0000000000001e50 l F .text 0000000000000054 nsh_consolewrite +0000000000001f3a l F .text 0000000000000016 nsh_consoleclone +000000000000acb8 l O .rodata 0000000000000011 __FUNCTION__.0 +0000000000001d44 l .text 0000000000000000 .L3 +0000000000001d68 l .text 0000000000000000 .L8 +0000000000001d86 l .text 0000000000000000 .L9 +000000000000acb8 l .rodata 0000000000000000 .LANCHOR0 +0000000000001e7e l .text 0000000000000000 .L0 +000000000000ac88 l .rodata 0000000000000000 .LC0 +0000000000001e86 l .text 0000000000000000 .L0 +0000000000001e98 l .text 0000000000000000 .L22 +0000000000001eba l .text 0000000000000000 .L0 +0000000000001ec4 l .text 0000000000000000 .L0 +0000000000001ece l .text 0000000000000000 .L0 +0000000000001ed8 l .text 0000000000000000 .L0 +0000000000001ee2 l .text 0000000000000000 .L0 +0000000000001eec l .text 0000000000000000 .L0 +0000000000001ef6 l .text 0000000000000000 .L0 +0000000000001f00 l .text 0000000000000000 .L0 +0000000000001f10 l .text 0000000000000000 .L0 +0000000000001f1a l .text 0000000000000000 .L0 +0000000000001f32 l .text 0000000000000000 .L25 +0000000000003e8c l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000000e81a l .debug_str 0000000000000000 .LASF107 +000000000000e795 l .debug_str 0000000000000000 .LASF108 +000000000000e56b l .debug_str 0000000000000000 .LASF109 +0000000000000cc0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000007cd0 l .debug_line 0000000000000000 .Ldebug_line0 +000000000000e46e l .debug_str 0000000000000000 .LASF0 +000000000000e722 l .debug_str 0000000000000000 .LASF3 +000000000000e3bf l .debug_str 0000000000000000 .LASF1 +000000000000e6c9 l .debug_str 0000000000000000 .LASF2 +000000000000e625 l .debug_str 0000000000000000 .LASF4 +000000000000e7b5 l .debug_str 0000000000000000 .LASF5 +000000000000e544 l .debug_str 0000000000000000 .LASF6 +000000000000e4aa l .debug_str 0000000000000000 .LASF7 +000000000000e645 l .debug_str 0000000000000000 .LASF8 +000000000000e7e3 l .debug_str 0000000000000000 .LASF9 +000000000000e5e4 l .debug_str 0000000000000000 .LASF10 +000000000000e40a l .debug_str 0000000000000000 .LASF11 +000000000000e8d4 l .debug_str 0000000000000000 .LASF12 +000000000000e551 l .debug_str 0000000000000000 .LASF13 +000000000000e3cd l .debug_str 0000000000000000 .LASF14 +000000000000e3e7 l .debug_str 0000000000000000 .LASF15 +000000000000e737 l .debug_str 0000000000000000 .LASF16 +000000000000e60b l .debug_str 0000000000000000 .LASF17 +000000000000e4cb l .debug_str 0000000000000000 .LASF110 +000000000000e3ef l .debug_str 0000000000000000 .LASF18 +000000000000e69d l .debug_str 0000000000000000 .LASF20 +000000000000e5a2 l .debug_str 0000000000000000 .LASF22 +000000000000e6d3 l .debug_str 0000000000000000 .LASF19 +000000000000e482 l .debug_str 0000000000000000 .LASF21 +000000000000e71d l .debug_str 0000000000000000 .LASF23 +000000000000e606 l .debug_str 0000000000000000 .LASF24 +000000000000e460 l .debug_str 0000000000000000 .LASF25 +000000000000e72b l .debug_str 0000000000000000 .LASF26 +000000000000e6a8 l .debug_str 0000000000000000 .LASF27 +000000000000e3ff l .debug_str 0000000000000000 .LASF28 +000000000000e90e l .debug_str 0000000000000000 .LASF29 +000000000000e711 l .debug_str 0000000000000000 .LASF30 +000000000000e73c l .debug_str 0000000000000000 .LASF31 +000000000000e5f2 l .debug_str 0000000000000000 .LASF32 +000000000000e7a3 l .debug_str 0000000000000000 .LASF33 +000000000000e692 l .debug_str 0000000000000000 .LASF34 +000000000000e8e8 l .debug_str 0000000000000000 .LASF35 +000000000000e5fc l .debug_str 0000000000000000 .LASF36 +000000000000e808 l .debug_str 0000000000000000 .LASF37 +000000000000e7ac l .debug_str 0000000000000000 .LASF38 +000000000000e7cd l .debug_str 0000000000000000 .LASF39 +000000000000e900 l .debug_str 0000000000000000 .LASF111 +000000000000e918 l .debug_str 0000000000000000 .LASF40 +000000000000e7ec l .debug_str 0000000000000000 .LASF41 +000000000000e65d l .debug_str 0000000000000000 .LASF42 +000000000000e494 l .debug_str 0000000000000000 .LASF43 +000000000000e510 l .debug_str 0000000000000000 .LASF44 +000000000000e49a l .debug_str 0000000000000000 .LASF45 +000000000000e530 l .debug_str 0000000000000000 .LASF46 +000000000000e68a l .debug_str 0000000000000000 .LASF47 +000000000000e6e5 l .debug_str 0000000000000000 .LASF48 +000000000000e8f7 l .debug_str 0000000000000000 .LASF49 +000000000000e6eb l .debug_str 0000000000000000 .LASF50 +000000000000e4e6 l .debug_str 0000000000000000 .LASF51 +000000000000e4c2 l .debug_str 0000000000000000 .LASF52 +000000000000e4dd l .debug_str 0000000000000000 .LASF53 +000000000000e768 l .debug_str 0000000000000000 .LASF54 +000000000000e7fd l .debug_str 0000000000000000 .LASF55 +000000000000e8e2 l .debug_str 0000000000000000 .LASF112 +000000000000e421 l .debug_str 0000000000000000 .LASF56 +000000000000e440 l .debug_str 0000000000000000 .LASF57 +000000000000e59d l .debug_str 0000000000000000 .LASF58 +000000000000e53e l .debug_str 0000000000000000 .LASF59 +000000000000e445 l .debug_str 0000000000000000 .LASF60 +000000000000e5c6 l .debug_str 0000000000000000 .LASF61 +000000000000e70a l .debug_str 0000000000000000 .LASF62 +000000000000e47a l .debug_str 0000000000000000 .LASF63 +000000000000e5ec l .debug_str 0000000000000000 .LASF64 +000000000000e788 l .debug_str 0000000000000000 .LASF65 +000000000000e66a l .debug_str 0000000000000000 .LASF66 +000000000000e589 l .debug_str 0000000000000000 .LASF67 +000000000000e61a l .debug_str 0000000000000000 .LASF68 +000000000000e670 l .debug_str 0000000000000000 .LASF69 +000000000000e6ae l .debug_str 0000000000000000 .LASF70 +000000000000e6f4 l .debug_str 0000000000000000 .LASF71 +000000000000e811 l .debug_str 0000000000000000 .LASF72 +000000000000e773 l .debug_str 0000000000000000 .LASF73 +000000000000e8dc l .debug_str 0000000000000000 .LASF74 +000000000000e8ca l .debug_str 0000000000000000 .LASF75 +000000000000e778 l .debug_str 0000000000000000 .LASF76 +000000000000e5d4 l .debug_str 0000000000000000 .LASF77 +000000000000e5cc l .debug_str 0000000000000000 .LASF78 +000000000000e5a8 l .debug_str 0000000000000000 .LASF79 +000000000000e74f l .debug_str 0000000000000000 .LASF80 +000000000000e3f7 l .debug_str 0000000000000000 .LASF81 +000000000000e3da l .debug_str 0000000000000000 .LASF82 +000000000000e4b3 l .debug_str 0000000000000000 .LASF113 +0000000000001ea4 l .text 0000000000000000 .LFB16 +0000000000001f3a l .text 0000000000000000 .LFE16 +0000000000005f3d l .debug_loc 0000000000000000 .LLST29 +000000000000e748 l .debug_str 0000000000000000 .LASF86 +0000000000001eb8 l .text 0000000000000000 .LVL43 +000000000000e758 l .debug_str 0000000000000000 .LASF91 +0000000000001e36 l .text 0000000000000000 .LFB15 +0000000000001e50 l .text 0000000000000000 .LFE15 +000000000000e8f2 l .debug_str 0000000000000000 .LASF83 +0000000000005f76 l .debug_loc 0000000000000000 .LLST19 +000000000000e7d8 l .debug_str 0000000000000000 .LASF84 +0000000000005faf l .debug_loc 0000000000000000 .LLST20 +0000000000001e46 l .text 0000000000000000 .LVL29 +0000000000001e50 l .text 0000000000000000 .LVL30 +000000000000e51c l .debug_str 0000000000000000 .LASF88 +0000000000001d94 l .text 0000000000000000 .LFB14 +0000000000001dbe l .text 0000000000000000 .LFE14 +0000000000005fe8 l .debug_loc 0000000000000000 .LLST3 +000000000000e539 l .debug_str 0000000000000000 .LASF85 +0000000000006034 l .debug_loc 0000000000000000 .LLST4 +0000000000006080 l .debug_loc 0000000000000000 .LLST5 +000000000000e657 l .debug_str 0000000000000000 .LASF87 +00000000000060cc l .debug_loc 0000000000000000 .LLST6 +0000000000001da8 l .text 0000000000000000 .LVL11 +000000000000e4f5 l .debug_str 0000000000000000 .LASF89 +0000000000001d36 l .text 0000000000000000 .LFB13 +0000000000001d4a l .text 0000000000000000 .LFE13 +000000000000e42d l .debug_str 0000000000000000 .LASF90 +0000000000001e16 l .text 0000000000000000 .LFB12 +0000000000001e36 l .text 0000000000000000 .LFE12 +0000000000006118 l .debug_loc 0000000000000000 .LLST17 +0000000000006177 l .debug_loc 0000000000000000 .LLST18 +0000000000001e26 l .text 0000000000000000 .LVL25 +0000000000001e36 l .text 0000000000000000 .LVL27 +000000000000e679 l .debug_str 0000000000000000 .LASF92 +0000000000001f3a l .text 0000000000000000 .LFB11 +0000000000001f50 l .text 0000000000000000 .LFE11 +00000000000061d6 l .debug_loc 0000000000000000 .LLST30 +000000000000e509 l .debug_str 0000000000000000 .LASF93 +0000000000001f4a l .text 0000000000000000 .LVL46 +000000000000e62f l .debug_str 0000000000000000 .LASF94 +0000000000001d30 l .text 0000000000000000 .LFB10 +0000000000001d36 l .text 0000000000000000 .LFE10 +000000000000620f l .debug_loc 0000000000000000 .LLST0 +000000000000e450 l .debug_str 0000000000000000 .LASF95 +0000000000001dbe l .text 0000000000000000 .LFB9 +0000000000001de4 l .text 0000000000000000 .LFE9 +0000000000006248 l .debug_loc 0000000000000000 .LLST7 +0000000000006281 l .debug_loc 0000000000000000 .LLST8 +00000000000062ba l .debug_loc 0000000000000000 .LLST9 +0000000000001dde l .text 0000000000000000 .LVL16 +000000000000e6b7 l .debug_str 0000000000000000 .LASF96 +0000000000001de4 l .text 0000000000000000 .LFB8 +0000000000001e0a l .text 0000000000000000 .LFE8 +00000000000062f3 l .debug_loc 0000000000000000 .LLST10 +000000000000632c l .debug_loc 0000000000000000 .LLST11 +0000000000006365 l .debug_loc 0000000000000000 .LLST12 +0000000000001e04 l .text 0000000000000000 .LVL19 +000000000000e55a l .debug_str 0000000000000000 .LASF97 +0000000000001e0a l .text 0000000000000000 .LFB7 +0000000000001e16 l .text 0000000000000000 .LFE7 +000000000000639e l .debug_loc 0000000000000000 .LLST13 +00000000000063d7 l .debug_loc 0000000000000000 .LLST14 +0000000000006410 l .debug_loc 0000000000000000 .LLST15 +0000000000006449 l .debug_loc 0000000000000000 .LLST16 +0000000000001e16 l .text 0000000000000000 .LVL22 +000000000000e6f9 l .debug_str 0000000000000000 .LASF114 +000000000000e4ee l .debug_str 0000000000000000 .LASF98 +000000000000e48d l .debug_str 0000000000000000 .LASF99 +000000000000e590 l .debug_str 0000000000000000 .LASF115 +000000000000e5b1 l .debug_str 0000000000000000 .LASF100 +0000000000001d4a l .text 0000000000000000 .LFB5 +0000000000001d94 l .text 0000000000000000 .LFE5 +0000000000006482 l .debug_loc 0000000000000000 .LLST2 +0000000000001d68 l .text 0000000000000000 .LVL5 +0000000000001d86 l .text 0000000000000000 .LVL6 +0000000000001e50 l .text 0000000000000000 .LFB6 +0000000000001ea4 l .text 0000000000000000 .LFE6 +00000000000064ce l .debug_loc 0000000000000000 .LLST21 +000000000000651a l .debug_loc 0000000000000000 .LLST22 +0000000000006553 l .debug_loc 0000000000000000 .LLST23 +000000000000658c l .debug_loc 0000000000000000 .LLST24 +00000000000065d8 l .debug_loc 0000000000000000 .LLST25 +0000000000001e6c l .text 0000000000000000 .LBB4 +0000000000001e98 l .text 0000000000000000 .LBE4 +000000000000660e l .debug_loc 0000000000000000 .LLST26 +0000000000006634 l .debug_loc 0000000000000000 .LLST27 +000000000000665a l .debug_loc 0000000000000000 .LLST28 +0000000000001e7a l .text 0000000000000000 .LVL37 +0000000000001e98 l .text 0000000000000000 .LVL38 +0000000000001e66 l .text 0000000000000000 .LVL34 +000000000000e78e l .debug_str 0000000000000000 .LASF101 +000000000000e7c8 l .debug_str 0000000000000000 .LASF102 +000000000000e77f l .debug_str 0000000000000000 .LASF103 +000000000000e3d4 l .debug_str 0000000000000000 .LASF104 +000000000000e4a2 l .debug_str 0000000000000000 .LASF105 +000000000000e6de l .debug_str 0000000000000000 .LASF106 +0000000000001ea4 l .text 0000000000000000 .LVL41 +0000000000001eae l .text 0000000000000000 .LVL42 +0000000000001e36 l .text 0000000000000000 .LVL28 +0000000000001d94 l .text 0000000000000000 .LVL8 +0000000000001dba l .text 0000000000000000 .LVL13 +0000000000001db4 l .text 0000000000000000 .LVL12 +0000000000001d9e l .text 0000000000000000 .LVL9 +0000000000001da0 l .text 0000000000000000 .LVL10 +0000000000001e16 l .text 0000000000000000 .LVL23 +0000000000001e2a l .text 0000000000000000 .LVL26 +0000000000001e1e l .text 0000000000000000 .LVL24 +0000000000001f3a l .text 0000000000000000 .LVL44 +0000000000001f42 l .text 0000000000000000 .LVL45 +0000000000001d30 l .text 0000000000000000 .LVL0 +0000000000001d34 l .text 0000000000000000 .LVL1 +0000000000001dbe l .text 0000000000000000 .LVL14 +0000000000001dd2 l .text 0000000000000000 .LVL15 +0000000000001de4 l .text 0000000000000000 .LVL17 +0000000000001df8 l .text 0000000000000000 .LVL18 +0000000000001e0a l .text 0000000000000000 .LVL20 +0000000000001e0e l .text 0000000000000000 .LVL21 +0000000000001d4a l .text 0000000000000000 .LVL3 +0000000000001d56 l .text 0000000000000000 .LVL4 +0000000000001d90 l .text 0000000000000000 .LVL7 +0000000000001e50 l .text 0000000000000000 .LVL31 +0000000000001e5e l .text 0000000000000000 .LVL33 +0000000000001ea0 l .text 0000000000000000 .LVL40 +0000000000001e5a l .text 0000000000000000 .LVL32 +0000000000001e68 l .text 0000000000000000 .LVL35 +0000000000001e9e l .text 0000000000000000 .LVL39 +0000000000001e6c l .text 0000000000000000 .LVL36 +000000000000caf1 l .debug_info 0000000000000000 .Ldebug_info0 +0000000000001d30 l .text 0000000000000000 .L0 +0000000000001d36 l .text 0000000000000000 .L0 +0000000000001d4a l .text 0000000000000000 .L0 +0000000000001d94 l .text 0000000000000000 .L0 +0000000000001dbe l .text 0000000000000000 .L0 +0000000000001de4 l .text 0000000000000000 .L0 +0000000000001e0a l .text 0000000000000000 .L0 +0000000000001e16 l .text 0000000000000000 .L0 +0000000000001e36 l .text 0000000000000000 .L0 +0000000000001e50 l .text 0000000000000000 .L0 +0000000000001ea4 l .text 0000000000000000 .L0 +0000000000001f3a l .text 0000000000000000 .L0 +0000000000001d30 l .text 0000000000000000 .L0 +0000000000001d30 l .text 0000000000000000 .L0 +0000000000001d30 l .text 0000000000000000 .L0 +0000000000001d36 l .text 0000000000000000 .L0 +0000000000001d36 l .text 0000000000000000 .L0 +0000000000001d36 l .text 0000000000000000 .L0 +0000000000001d36 l .text 0000000000000000 .L0 +0000000000001d36 l .text 0000000000000000 .L0 +0000000000001d38 l .text 0000000000000000 .L0 +0000000000001d38 l .text 0000000000000000 .L0 +0000000000001d3c l .text 0000000000000000 .L0 +0000000000001d3e l .text 0000000000000000 .L0 +0000000000001d3e l .text 0000000000000000 .L0 +0000000000001d42 l .text 0000000000000000 .L0 +0000000000001d44 l .text 0000000000000000 .L0 +0000000000001d44 l .text 0000000000000000 .L0 +0000000000001d48 l .text 0000000000000000 .L0 +0000000000001d4a l .text 0000000000000000 .L0 +0000000000001d4a l .text 0000000000000000 .L0 +0000000000001d4a l .text 0000000000000000 .L0 +0000000000001d50 l .text 0000000000000000 .L0 +0000000000001d52 l .text 0000000000000000 .L0 +0000000000001d56 l .text 0000000000000000 .L0 +0000000000001d5a l .text 0000000000000000 .L0 +0000000000001d60 l .text 0000000000000000 .L0 +0000000000001d68 l .text 0000000000000000 .L0 +0000000000001d68 l .text 0000000000000000 .L0 +0000000000001d6c l .text 0000000000000000 .L0 +0000000000001d70 l .text 0000000000000000 .L0 +0000000000001d76 l .text 0000000000000000 .L0 +0000000000001d7e l .text 0000000000000000 .L0 +0000000000001d86 l .text 0000000000000000 .L0 +0000000000001d86 l .text 0000000000000000 .L0 +0000000000001d86 l .text 0000000000000000 .L0 +0000000000001d88 l .text 0000000000000000 .L0 +0000000000001d8a l .text 0000000000000000 .L0 +0000000000001d8e l .text 0000000000000000 .L0 +0000000000001d94 l .text 0000000000000000 .L0 +0000000000001d94 l .text 0000000000000000 .L0 +0000000000001d94 l .text 0000000000000000 .L0 +0000000000001d9c l .text 0000000000000000 .L0 +0000000000001d9e l .text 0000000000000000 .L0 +0000000000001d9e l .text 0000000000000000 .L0 +0000000000001da0 l .text 0000000000000000 .L0 +0000000000001da8 l .text 0000000000000000 .L0 +0000000000001da8 l .text 0000000000000000 .L0 +0000000000001daa l .text 0000000000000000 .L0 +0000000000001dac l .text 0000000000000000 .L0 +0000000000001db0 l .text 0000000000000000 .L0 +0000000000001db0 l .text 0000000000000000 .L0 +0000000000001db2 l .text 0000000000000000 .L0 +0000000000001db4 l .text 0000000000000000 .L0 +0000000000001db8 l .text 0000000000000000 .L0 +0000000000001dbe l .text 0000000000000000 .L0 +0000000000001dbe l .text 0000000000000000 .L0 +0000000000001dbe l .text 0000000000000000 .L0 +0000000000001dbe l .text 0000000000000000 .L0 +0000000000001dbe l .text 0000000000000000 .L0 +0000000000001dbe l .text 0000000000000000 .L0 +0000000000001dc2 l .text 0000000000000000 .L0 +0000000000001dce l .text 0000000000000000 .L0 +0000000000001dd2 l .text 0000000000000000 .L0 +0000000000001dd6 l .text 0000000000000000 .L0 +0000000000001dd6 l .text 0000000000000000 .L0 +0000000000001dde l .text 0000000000000000 .L0 +0000000000001dde l .text 0000000000000000 .L0 +0000000000001dde l .text 0000000000000000 .L0 +0000000000001de4 l .text 0000000000000000 .L0 +0000000000001de4 l .text 0000000000000000 .L0 +0000000000001de4 l .text 0000000000000000 .L0 +0000000000001de4 l .text 0000000000000000 .L0 +0000000000001de4 l .text 0000000000000000 .L0 +0000000000001de4 l .text 0000000000000000 .L0 +0000000000001de8 l .text 0000000000000000 .L0 +0000000000001df4 l .text 0000000000000000 .L0 +0000000000001df8 l .text 0000000000000000 .L0 +0000000000001dfc l .text 0000000000000000 .L0 +0000000000001dfc l .text 0000000000000000 .L0 +0000000000001e04 l .text 0000000000000000 .L0 +0000000000001e04 l .text 0000000000000000 .L0 +0000000000001e04 l .text 0000000000000000 .L0 +0000000000001e0a l .text 0000000000000000 .L0 +0000000000001e0a l .text 0000000000000000 .L0 +0000000000001e0a l .text 0000000000000000 .L0 +0000000000001e0a l .text 0000000000000000 .L0 +0000000000001e16 l .text 0000000000000000 .L0 +0000000000001e16 l .text 0000000000000000 .L0 +0000000000001e16 l .text 0000000000000000 .L0 +0000000000001e1c l .text 0000000000000000 .L0 +0000000000001e1e l .text 0000000000000000 .L0 +0000000000001e26 l .text 0000000000000000 .L0 +0000000000001e28 l .text 0000000000000000 .L0 +0000000000001e2e l .text 0000000000000000 .L0 +0000000000001e36 l .text 0000000000000000 .L0 +0000000000001e36 l .text 0000000000000000 .L0 +0000000000001e36 l .text 0000000000000000 .L0 +0000000000001e3c l .text 0000000000000000 .L0 +0000000000001e3e l .text 0000000000000000 .L0 +0000000000001e46 l .text 0000000000000000 .L0 +0000000000001e50 l .text 0000000000000000 .L0 +0000000000001e58 l .text 0000000000000000 .L0 +0000000000001e5a l .text 0000000000000000 .L0 +0000000000001e5a l .text 0000000000000000 .L0 +0000000000001e5a l .text 0000000000000000 .L0 +0000000000001e5a l .text 0000000000000000 .L0 +0000000000001e68 l .text 0000000000000000 .L0 +0000000000001e68 l .text 0000000000000000 .L0 +0000000000001e6c l .text 0000000000000000 .L0 +0000000000001e98 l .text 0000000000000000 .L0 +0000000000001e98 l .text 0000000000000000 .L0 +0000000000001ea4 l .text 0000000000000000 .L0 +0000000000001ea4 l .text 0000000000000000 .L0 +0000000000001ea4 l .text 0000000000000000 .L0 +0000000000001eaa l .text 0000000000000000 .L0 +0000000000001eae l .text 0000000000000000 .L0 +0000000000001eb0 l .text 0000000000000000 .L0 +0000000000001eb8 l .text 0000000000000000 .L0 +0000000000001eb8 l .text 0000000000000000 .L0 +0000000000001eba l .text 0000000000000000 .L0 +0000000000001eba l .text 0000000000000000 .L0 +0000000000001ec4 l .text 0000000000000000 .L0 +0000000000001ec4 l .text 0000000000000000 .L0 +0000000000001ece l .text 0000000000000000 .L0 +0000000000001ece l .text 0000000000000000 .L0 +0000000000001ed8 l .text 0000000000000000 .L0 +0000000000001ed8 l .text 0000000000000000 .L0 +0000000000001ee2 l .text 0000000000000000 .L0 +0000000000001ee2 l .text 0000000000000000 .L0 +0000000000001eec l .text 0000000000000000 .L0 +0000000000001eec l .text 0000000000000000 .L0 +0000000000001ef6 l .text 0000000000000000 .L0 +0000000000001ef6 l .text 0000000000000000 .L0 +0000000000001f00 l .text 0000000000000000 .L0 +0000000000001f00 l .text 0000000000000000 .L0 +0000000000001f0a l .text 0000000000000000 .L0 +0000000000001f0a l .text 0000000000000000 .L0 +0000000000001f10 l .text 0000000000000000 .L0 +0000000000001f1a l .text 0000000000000000 .L0 +0000000000001f24 l .text 0000000000000000 .L0 +0000000000001f2a l .text 0000000000000000 .L0 +0000000000001f2e l .text 0000000000000000 .L0 +0000000000001f2e l .text 0000000000000000 .L0 +0000000000001f2e l .text 0000000000000000 .L0 +0000000000001f2e l .text 0000000000000000 .L0 +0000000000001f2e l .text 0000000000000000 .L0 +0000000000001f2e l .text 0000000000000000 .L0 +0000000000001f32 l .text 0000000000000000 .L0 +0000000000001f32 l .text 0000000000000000 .L0 +0000000000001f3a l .text 0000000000000000 .L0 +0000000000001f3a l .text 0000000000000000 .L0 +0000000000001f3a l .text 0000000000000000 .L0 +0000000000001f3e l .text 0000000000000000 .L0 +0000000000001f4a l .text 0000000000000000 .L0 +0000000000001f4a l .text 0000000000000000 .L0 +0000000000001f50 l .text 0000000000000000 .L0 +0000000000001008 l .debug_frame 0000000000000000 .L0 +0000000000001d30 l .text 0000000000000000 .L0 +0000000000001d36 l .text 0000000000000000 .L0 +0000000000001d36 l .text 0000000000000000 .L0 +0000000000001d4a l .text 0000000000000000 .L0 +0000000000001d4a l .text 0000000000000000 .L0 +0000000000001d94 l .text 0000000000000000 .L0 +0000000000001d94 l .text 0000000000000000 .L0 +0000000000001dbe l .text 0000000000000000 .L0 +0000000000001dbe l .text 0000000000000000 .L0 +0000000000001de4 l .text 0000000000000000 .L0 +0000000000001de4 l .text 0000000000000000 .L0 +0000000000001e0a l .text 0000000000000000 .L0 +0000000000001e0a l .text 0000000000000000 .L0 +0000000000001e16 l .text 0000000000000000 .L0 +0000000000001e16 l .text 0000000000000000 .L0 +0000000000001e36 l .text 0000000000000000 .L0 +0000000000001e36 l .text 0000000000000000 .L0 +0000000000001e50 l .text 0000000000000000 .L0 +0000000000001e50 l .text 0000000000000000 .L0 +0000000000001ea4 l .text 0000000000000000 .L0 +0000000000001ea4 l .text 0000000000000000 .L0 +0000000000001f3a l .text 0000000000000000 .L0 +0000000000001f3a l .text 0000000000000000 .L0 +0000000000001f50 l .text 0000000000000000 .L0 +0000000000001d8a l .text 0000000000000000 .L0 +0000000000001d50 l .text 0000000000000000 .L0 +0000000000001dac l .text 0000000000000000 .L0 +0000000000001d9c l .text 0000000000000000 .L0 +0000000000001de0 l .text 0000000000000000 .L0 +0000000000001dc2 l .text 0000000000000000 .L0 +0000000000001e06 l .text 0000000000000000 .L0 +0000000000001de8 l .text 0000000000000000 .L0 +0000000000001e2a l .text 0000000000000000 .L0 +0000000000001e1c l .text 0000000000000000 .L0 +0000000000001e9a l .text 0000000000000000 .L0 +0000000000001e58 l .text 0000000000000000 .L0 +0000000000001f34 l .text 0000000000000000 .L0 +0000000000001eb0 l .text 0000000000000000 .L0 +0000000000001f4c l .text 0000000000000000 .L0 +0000000000001f3e l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 nsh_parse.c +0000000000001f50 l F .text 0000000000000026 nsh_strchr +0000000000001f76 l F .text 0000000000000032 nsh_dequote +0000000000001fa8 l F .text 0000000000000064 nsh_cmdenabled +000000000000200c l F .text 000000000000008a nsh_strcat +0000000000002096 l F .text 0000000000000056 nsh_releaseargs +00000000000020ec l F .text 000000000000006a nsh_child +0000000000002156 l F .text 0000000000000018 nsh_memlist_add +000000000000216e l F .text 00000000000003ee nsh_argument +000000000000255c l F .text 000000000000007c nsh_saveresult +00000000000025d8 l F .text 0000000000000a12 nsh_parse_command +000000000000adc8 l O .rodata 000000000000000a __FUNCTION__.0 +0000000000000000 l O .srodata.g_arg_separator 0000000000000003 g_arg_separator +0000000000000000 l O .srodata.g_exitstatus 0000000000000002 g_exitstatus +0000000000000000 l O .srodata.g_failure 0000000000000002 g_failure +0000000000000000 l O .srodata.g_line_separator 0000000000000006 g_line_separator +0000000000000008 l O .srodata.g_nullstring 0000000000000001 g_nullstring +0000000000000000 l O .srodata.g_quote_separator 0000000000000004 g_quote_separator +0000000000000000 l O .srodata.g_redirect1 0000000000000002 g_redirect1 +0000000000000000 l O .srodata.g_redirect2 0000000000000003 g_redirect2 +0000000000000000 l O .srodata.g_success 0000000000000002 g_success +0000000000000000 l O .srodata.g_token_separator 0000000000000004 g_token_separator +0000000000001f60 l .text 0000000000000000 .L2 +0000000000001f6e l .text 0000000000000000 .L7 +0000000000001f66 l .text 0000000000000000 .L4 +0000000000001f74 l .text 0000000000000000 .L1 +0000000000001f72 l .text 0000000000000000 .L8 +0000000000001f56 l .text 0000000000000000 .L6 +0000000000001f6a l .text 0000000000000000 .L3 +0000000000001f84 l .text 0000000000000000 .L16 +0000000000001fa4 l .text 0000000000000000 .L18 +0000000000001f90 l .text 0000000000000000 .L15 +0000000000001f7c l .text 0000000000000000 .L13 +0000000000001fa0 l .text 0000000000000000 .L14 +0000000000001fca l .text 0000000000000000 .L21 +0000000000001ff4 l .text 0000000000000000 .L22 +0000000000001ffa l .text 0000000000000000 .L23 +0000000000002006 l .text 0000000000000000 .L24 +0000000000002002 l .text 0000000000000000 .L25 +000000000000acd0 l .rodata 0000000000000000 .LC0 +0000000000002058 l .text 0000000000000000 .L0 +000000000000ae78 l .rodata 0000000000000000 .LANCHOR0 +0000000000002060 l .text 0000000000000000 .L0 +0000000000002034 l .text 0000000000000000 .L30 +0000000000002082 l .text 0000000000000000 .L31 +000000000000206e l .text 0000000000000000 .L29 +00000000000020b4 l .text 0000000000000000 .L37 +00000000000020da l .text 0000000000000000 .L39 +00000000000020c0 l .text 0000000000000000 .L38 +000000000000adc8 l .rodata 0000000000000000 .LANCHOR1 +00000000000020f8 l .text 0000000000000000 .L0 +000000000000acd8 l .rodata 0000000000000000 .LC1 +0000000000002104 l .text 0000000000000000 .L0 +000000000000ace8 l .rodata 0000000000000000 .LC2 +000000000000212c l .text 0000000000000000 .L0 +000000000000216c l .text 0000000000000000 .L46 +0000000000000000 l .srodata.g_token_separator 0000000000000000 .LANCHOR7 +0000000000002196 l .text 0000000000000000 .L0 +0000000000000000 l .srodata.g_redirect2 0000000000000000 .LANCHOR6 +00000000000021cc l .text 0000000000000000 .L0 +0000000000000000 l .srodata.g_redirect1 0000000000000000 .LANCHOR5 +00000000000021ee l .text 0000000000000000 .L0 +0000000000000000 l .srodata.g_quote_separator 0000000000000000 .LANCHOR8 +000000000000221c l .text 0000000000000000 .L0 +000000000000aef8 l .rodata 0000000000000000 .LANCHOR9 +0000000000002254 l .text 0000000000000000 .L0 +00000000000022c8 l .text 0000000000000000 .L0 +000000000000232e l .text 0000000000000000 .L0 +000000000000ad00 l .rodata 0000000000000000 .LC3 +000000000000235c l .text 0000000000000000 .L0 +0000000000000000 l .srodata.g_arg_separator 0000000000000000 .LANCHOR10 +000000000000239e l .text 0000000000000000 .L0 +0000000000000008 l .srodata.g_nullstring 0000000000000000 .LANCHOR4 +00000000000023ae l .text 0000000000000000 .L0 +0000000000000000 l .srodata.g_failure 0000000000000000 .LANCHOR2 +00000000000023b6 l .text 0000000000000000 .L0 +000000000000ad08 l .rodata 0000000000000000 .LC4 +0000000000002496 l .text 0000000000000000 .L0 +000000000000ad10 l .rodata 0000000000000000 .LC5 +000000000000249e l .text 0000000000000000 .L0 +00000000000024a6 l .text 0000000000000000 .L0 +00000000000024b2 l .text 0000000000000000 .L0 +0000000000000000 l .srodata.g_exitstatus 0000000000000000 .LANCHOR11 +00000000000024da l .text 0000000000000000 .L0 +0000000000000000 l .srodata.g_success 0000000000000000 .LANCHOR3 +00000000000024f6 l .text 0000000000000000 .L0 +000000000000ad18 l .rodata 0000000000000000 .LC6 +000000000000250a l .text 0000000000000000 .L0 +000000000000254e l .text 0000000000000000 .L91 +00000000000021e4 l .text 0000000000000000 .L54 +00000000000021f8 l .text 0000000000000000 .L123 +00000000000021e8 l .text 0000000000000000 .L56 +0000000000002262 l .text 0000000000000000 .L51 +000000000000219e l .text 0000000000000000 .L52 +00000000000021d4 l .text 0000000000000000 .L57 +0000000000002402 l .text 0000000000000000 .L92 +0000000000002214 l .text 0000000000000000 .L59 +00000000000022e2 l .text 0000000000000000 .L93 +00000000000022de l .text 0000000000000000 .L125 +00000000000022c8 l .text 0000000000000000 .L61 +0000000000002282 l .text 0000000000000000 .L62 +00000000000022bc l .text 0000000000000000 .L95 +00000000000022c0 l .text 0000000000000000 .L96 +00000000000023fe l .text 0000000000000000 .L97 +00000000000022a4 l .text 0000000000000000 .L64 +00000000000022c4 l .text 0000000000000000 .L98 +000000000000229a l .text 0000000000000000 .L63 +000000000000229e l .text 0000000000000000 .L65 +0000000000002552 l .text 0000000000000000 .L66 +00000000000022e4 l .text 0000000000000000 .L60 +0000000000002208 l .text 0000000000000000 .L67 +0000000000002398 l .text 0000000000000000 .L68 +000000000000232e l .text 0000000000000000 .L69 +0000000000002452 l .text 0000000000000000 .L75 +0000000000002416 l .text 0000000000000000 .L76 +00000000000024bc l .text 0000000000000000 .L78 +00000000000022b8 l .text 0000000000000000 .L126 +00000000000022e8 l .text 0000000000000000 .L58 +00000000000023be l .text 0000000000000000 .L79 +000000000000243c l .text 0000000000000000 .L72 +0000000000002422 l .text 0000000000000000 .L71 +0000000000002454 l .text 0000000000000000 .L74 +00000000000023cc l .text 0000000000000000 .L127 +00000000000023de l .text 0000000000000000 .L77 +0000000000002412 l .text 0000000000000000 .L99 +000000000000252c l .text 0000000000000000 .L80 +00000000000024c8 l .text 0000000000000000 .L81 +00000000000024da l .text 0000000000000000 .L83 +000000000000253c l .text 0000000000000000 .L84 +00000000000024fe l .text 0000000000000000 .L85 +000000000000251a l .text 0000000000000000 .L86 +00000000000024d0 l .text 0000000000000000 .L82 +00000000000022f0 l .text 0000000000000000 .L88 +000000000000258e l .text 0000000000000000 .L129 +00000000000025a4 l .text 0000000000000000 .L131 +0000000000002586 l .text 0000000000000000 .L133 +00000000000025ce l .text 0000000000000000 .L132 +000000000000258a l .text 0000000000000000 .L134 +000000000000ad28 l .rodata 0000000000000000 .LC7 +0000000000002634 l .text 0000000000000000 .L0 +000000000000ad30 l .rodata 0000000000000000 .LC8 +000000000000264a l .text 0000000000000000 .L0 +000000000000add8 l .rodata 0000000000000000 .LANCHOR12 +0000000000002680 l .text 0000000000000000 .L0 +000000000000aeb8 l .rodata 0000000000000000 .LANCHOR14 +00000000000026d6 l .text 0000000000000000 .L0 +000000000000ad50 l .rodata 0000000000000000 .LC12 +000000000000275c l .text 0000000000000000 .L0 +0000000000002792 l .text 0000000000000000 .L0 +000000000000279a l .text 0000000000000000 .L0 +000000000000ad38 l .rodata 0000000000000000 .LC9 +00000000000027a4 l .text 0000000000000000 .L0 +00000000000027e8 l .text 0000000000000000 .L0 +000000000000ae90 l .rodata 0000000000000000 .LANCHOR13 +00000000000027f0 l .text 0000000000000000 .L0 +000000000000ad40 l .rodata 0000000000000000 .LC10 +0000000000002810 l .text 0000000000000000 .L0 +000000000000283c l .text 0000000000000000 .L0 +0000000000002864 l .text 0000000000000000 .L0 +0000000000002872 l .text 0000000000000000 .L0 +000000000000aed8 l .rodata 0000000000000000 .LANCHOR15 +000000000000287a l .text 0000000000000000 .L0 +000000000000ad48 l .rodata 0000000000000000 .LC11 +00000000000028aa l .text 0000000000000000 .L0 +00000000000028b2 l .text 0000000000000000 .L0 +000000000000ae40 l .rodata 0000000000000000 .LANCHOR16 +00000000000028ba l .text 0000000000000000 .L0 +000000000000ad58 l .rodata 0000000000000000 .LC13 +000000000000291e l .text 0000000000000000 .L0 +000000000000296a l .text 0000000000000000 .L0 +0000000000002972 l .text 0000000000000000 .L0 +0000000000002982 l .text 0000000000000000 .L0 +000000000000298a l .text 0000000000000000 .L0 +000000000000ad78 l .rodata 0000000000000000 .LC17 +00000000000029ec l .text 0000000000000000 .L0 +000000000000ad80 l .rodata 0000000000000000 .LC18 +0000000000002a20 l .text 0000000000000000 .L0 +0000000000002a76 l .text 0000000000000000 .L0 +0000000000002a7e l .text 0000000000000000 .L0 +000000000000ad60 l .rodata 0000000000000000 .LC14 +0000000000002a8c l .text 0000000000000000 .L0 +0000000000002ace l .text 0000000000000000 .L0 +000000000000ad68 l .rodata 0000000000000000 .LC15 +0000000000002ae6 l .text 0000000000000000 .L0 +0000000000002b28 l .text 0000000000000000 .L0 +000000000000ad70 l .rodata 0000000000000000 .LC16 +0000000000002b3c l .text 0000000000000000 .L0 +0000000000002b68 l .text 0000000000000000 .L0 +0000000000002b88 l .text 0000000000000000 .L0 +0000000000002b96 l .text 0000000000000000 .L0 +0000000000002b9e l .text 0000000000000000 .L0 +0000000000002bf2 l .text 0000000000000000 .L0 +000000000000ad88 l .rodata 0000000000000000 .LC19 +0000000000002c88 l .text 0000000000000000 .L0 +0000000000002cb8 l .text 0000000000000000 .L0 +000000000000af70 l .rodata 0000000000000000 .LANCHOR17 +0000000000002d0a l .text 0000000000000000 .L0 +000000000000ad90 l .rodata 0000000000000000 .LC20 +0000000000002d60 l .text 0000000000000000 .L0 +0000000000002d68 l .text 0000000000000000 .L0 +0000000000002d84 l .text 0000000000000000 .L0 +000000000000ad98 l .rodata 0000000000000000 .LC21 +0000000000002e4c l .text 0000000000000000 .L0 +0000000000002e54 l .text 0000000000000000 .L0 +0000000000002ec4 l .text 0000000000000000 .L0 +000000000000ada8 l .rodata 0000000000000000 .LC22 +0000000000002ee0 l .text 0000000000000000 .L0 +0000000000002ee8 l .text 0000000000000000 .L0 +000000000000adb8 l .rodata 0000000000000000 .LC23 +0000000000002f08 l .text 0000000000000000 .L0 +0000000000002808 l .text 0000000000000000 .L136 +0000000000002660 l .text 0000000000000000 .L137 +00000000000027a4 l .text 0000000000000000 .L138 +000000000000267c l .text 0000000000000000 .L139 +000000000000268a l .text 0000000000000000 .L140 +00000000000026de l .text 0000000000000000 .L294 +00000000000026c8 l .text 0000000000000000 .L296 +00000000000026ce l .text 0000000000000000 .L143 +00000000000027f0 l .text 0000000000000000 .L295 +000000000000270a l .text 0000000000000000 .L144 +00000000000028ee l .text 0000000000000000 .L156 +0000000000002a8c l .text 0000000000000000 .L157 +0000000000002790 l .text 0000000000000000 .L162 +000000000000291e l .text 0000000000000000 .L159 +0000000000002992 l .text 0000000000000000 .L297 +0000000000002810 l .text 0000000000000000 .L147 +00000000000027fa l .text 0000000000000000 .L148 +000000000000275c l .text 0000000000000000 .L146 +0000000000002902 l .text 0000000000000000 .L149 +0000000000002846 l .text 0000000000000000 .L150 +0000000000002680 l .text 0000000000000000 .L304 +000000000000286e l .text 0000000000000000 .L151 +0000000000002884 l .text 0000000000000000 .L152 +00000000000028f4 l .text 0000000000000000 .L153 +00000000000028c6 l .text 0000000000000000 .L154 +0000000000002f8e l .text 0000000000000000 .L217 +00000000000028cc l .text 0000000000000000 .L155 +0000000000002954 l .text 0000000000000000 .L161 +000000000000297c l .text 0000000000000000 .L163 +00000000000029a8 l .text 0000000000000000 .L164 +00000000000026fa l .text 0000000000000000 .L302 +000000000000280c l .text 0000000000000000 .L174 +0000000000002be0 l .text 0000000000000000 .L175 +0000000000002a74 l .text 0000000000000000 .L176 +0000000000002bc8 l .text 0000000000000000 .L177 +0000000000002ae6 l .text 0000000000000000 .L166 +0000000000002ad8 l .text 0000000000000000 .L167 +0000000000002972 l .text 0000000000000000 .L298 +00000000000029e4 l .text 0000000000000000 .L165 +0000000000002b3c l .text 0000000000000000 .L168 +0000000000002b32 l .text 0000000000000000 .L169 +0000000000002bb0 l .text 0000000000000000 .L170 +0000000000002b72 l .text 0000000000000000 .L171 +000000000000279a l .text 0000000000000000 .L305 +0000000000002b92 l .text 0000000000000000 .L172 +0000000000002ba8 l .text 0000000000000000 .L173 +00000000000028ea l .text 0000000000000000 .L303 +0000000000002d78 l .text 0000000000000000 .L178 +0000000000002c72 l .text 0000000000000000 .L179 +0000000000002c50 l .text 0000000000000000 .L224 +0000000000002c56 l .text 0000000000000000 .L220 +0000000000002c32 l .text 0000000000000000 .L180 +0000000000002c68 l .text 0000000000000000 .L182 +0000000000002c54 l .text 0000000000000000 .L183 +0000000000002c2e l .text 0000000000000000 .L184 +0000000000002bfe l .text 0000000000000000 .L185 +0000000000002ca2 l .text 0000000000000000 .L188 +0000000000002dc0 l .text 0000000000000000 .L227 +0000000000002d84 l .text 0000000000000000 .L189 +0000000000002d16 l .text 0000000000000000 .L190 +0000000000002f16 l .text 0000000000000000 .L301 +0000000000002dc8 l .text 0000000000000000 .L193 +0000000000002c78 l .text 0000000000000000 .L186 +0000000000002cf4 l .text 0000000000000000 .L187 +0000000000002f36 l .text 0000000000000000 .L195 +0000000000002fd6 l .text 0000000000000000 .L196 +0000000000002fd0 l .text 0000000000000000 .L197 +0000000000002e02 l .text 0000000000000000 .L198 +0000000000002e2c l .text 0000000000000000 .L219 +0000000000002e6c l .text 0000000000000000 .L200 +0000000000002d74 l .text 0000000000000000 .L194 +0000000000002ea0 l .text 0000000000000000 .L202 +0000000000002e92 l .text 0000000000000000 .L203 +0000000000002e9e l .text 0000000000000000 .L205 +0000000000002e8c l .text 0000000000000000 .L299 +0000000000002ef6 l .text 0000000000000000 .L207 +0000000000002e60 l .text 0000000000000000 .L300 +0000000000002f46 l .text 0000000000000000 .L210 +0000000000002f64 l .text 0000000000000000 .L211 +0000000000002f14 l .text 0000000000000000 .L208 +0000000000002f86 l .text 0000000000000000 .L213 +0000000000002f6a l .text 0000000000000000 .L214 +0000000000002fbe l .text 0000000000000000 .L216 +0000000000002f9a l .text 0000000000000000 .L215 +0000000000000000 l .srodata.g_line_separator 0000000000000000 .LANCHOR18 +0000000000003010 l .text 0000000000000000 .L0 +00000000000030ae l .text 0000000000000000 .L0 +000000000000306c l .text 0000000000000000 .L307 +0000000000003092 l .text 0000000000000000 .L308 +00000000000030bc l .text 0000000000000000 .L309 +0000000000003024 l .text 0000000000000000 .L312 +00000000000030d4 l .text 0000000000000000 .L311 +0000000000003088 l .text 0000000000000000 .L310 +0000000000003104 l .text 0000000000000000 .L317 +0000000000004259 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000000f0fc l .debug_str 0000000000000000 .LASF244 +000000000000f01c l .debug_str 0000000000000000 .LASF245 +000000000000f061 l .debug_str 0000000000000000 .LASF246 +0000000000000d90 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000008457 l .debug_line 0000000000000000 .Ldebug_line0 +000000000000ead5 l .debug_str 0000000000000000 .LASF0 +000000000000ea05 l .debug_str 0000000000000000 .LASF3 +000000000000eb1f l .debug_str 0000000000000000 .LASF1 +000000000000f281 l .debug_str 0000000000000000 .LASF2 +000000000000f0a1 l .debug_str 0000000000000000 .LASF4 +000000000000f3c0 l .debug_str 0000000000000000 .LASF5 +000000000000eece l .debug_str 0000000000000000 .LASF6 +000000000000ea5a l .debug_str 0000000000000000 .LASF7 +000000000000ece7 l .debug_str 0000000000000000 .LASF8 +000000000000e948 l .debug_str 0000000000000000 .LASF9 +000000000000f226 l .debug_str 0000000000000000 .LASF10 +000000000000f028 l .debug_str 0000000000000000 .LASF11 +000000000000eae1 l .debug_str 0000000000000000 .LASF12 +000000000000f058 l .debug_str 0000000000000000 .LASF13 +000000000000ed4a l .debug_str 0000000000000000 .LASF14 +000000000000e95b l .debug_str 0000000000000000 .LASF15 +000000000000ea29 l .debug_str 0000000000000000 .LASF16 +000000000000ef06 l .debug_str 0000000000000000 .LASF17 +000000000000eba0 l .debug_str 0000000000000000 .LASF18 +000000000000ed74 l .debug_str 0000000000000000 .LASF19 +000000000000ee35 l .debug_str 0000000000000000 .LASF21 +000000000000ea54 l .debug_str 0000000000000000 .LASF23 +000000000000ee40 l .debug_str 0000000000000000 .LASF20 +000000000000f320 l .debug_str 0000000000000000 .LASF22 +000000000000eab3 l .debug_str 0000000000000000 .LASF24 +000000000000e98a l .debug_str 0000000000000000 .LASF25 +000000000000edfd l .debug_str 0000000000000000 .LASF26 +000000000000efc6 l .debug_str 0000000000000000 .LASF27 +000000000000ef47 l .debug_str 0000000000000000 .LASF28 +000000000000ebd2 l .debug_str 0000000000000000 .LASF29 +000000000000eb94 l .debug_str 0000000000000000 .LASF30 +000000000000f3ed l .debug_str 0000000000000000 .LASF31 +000000000000ee96 l .debug_str 0000000000000000 .LASF32 +000000000000f294 l .debug_str 0000000000000000 .LASF33 +000000000000f1fd l .debug_str 0000000000000000 .LASF34 +000000000000f08b l .debug_str 0000000000000000 .LASF35 +000000000000f29d l .debug_str 0000000000000000 .LASF36 +000000000000f22e l .debug_str 0000000000000000 .LASF37 +000000000000ef53 l .debug_str 0000000000000000 .LASF38 +000000000000eea5 l .debug_str 0000000000000000 .LASF39 +000000000000ecf9 l .debug_str 0000000000000000 .LASF40 +000000000000eda6 l .debug_str 0000000000000000 .LASF51 +000000000000ec66 l .debug_str 0000000000000000 .LASF41 +000000000000ed1c l .debug_str 0000000000000000 .LASF42 +000000000000ef7a l .debug_str 0000000000000000 .LASF43 +000000000000ec0c l .debug_str 0000000000000000 .LASF44 +000000000000edba l .debug_str 0000000000000000 .LASF45 +000000000000f408 l .debug_str 0000000000000000 .LASF46 +000000000000ed09 l .debug_str 0000000000000000 .LASF47 +000000000000ea0e l .debug_str 0000000000000000 .LASF48 +000000000000e929 l .debug_str 0000000000000000 .LASF49 +000000000000f098 l .debug_str 0000000000000000 .LASF50 +000000000000f28b l .debug_str 0000000000000000 .LASF52 +000000000000f0b7 l .debug_str 0000000000000000 .LASF53 +000000000000f008 l .debug_str 0000000000000000 .LASF54 +000000000000ea38 l .debug_str 0000000000000000 .LASF55 +000000000000ee7e l .debug_str 0000000000000000 .LASF56 +000000000000ede3 l .debug_str 0000000000000000 .LASF57 +000000000000eaf5 l .debug_str 0000000000000000 .LASF58 +000000000000ec02 l .debug_str 0000000000000000 .LASF59 +000000000000edee l .debug_str 0000000000000000 .LASF60 +000000000000eef6 l .debug_str 0000000000000000 .LASF61 +000000000000f0f1 l .debug_str 0000000000000000 .LASF62 +000000000000ecb9 l .debug_str 0000000000000000 .LASF63 +000000000000f334 l .debug_str 0000000000000000 .LASF64 +000000000000eebd l .debug_str 0000000000000000 .LASF65 +000000000000e9a8 l .debug_str 0000000000000000 .LASF66 +000000000000ee5c l .debug_str 0000000000000000 .LASF67 +000000000000eae9 l .debug_str 0000000000000000 .LASF68 +000000000000efee l .debug_str 0000000000000000 .LASF69 +000000000000ec38 l .debug_str 0000000000000000 .LASF70 +000000000000ea1a l .debug_str 0000000000000000 .LASF71 +000000000000efc0 l .debug_str 0000000000000000 .LASF72 +000000000000f272 l .debug_str 0000000000000000 .LASF73 +000000000000f32b l .debug_str 0000000000000000 .LASF74 +000000000000f2b0 l .debug_str 0000000000000000 .LASF75 +000000000000f3d3 l .debug_str 0000000000000000 .LASF76 +000000000000f2cf l .debug_str 0000000000000000 .LASF77 +000000000000f345 l .debug_str 0000000000000000 .LASF78 +000000000000f204 l .debug_str 0000000000000000 .LASF79 +000000000000ebf3 l .debug_str 0000000000000000 .LASF247 +000000000000ecc7 l .debug_str 0000000000000000 .LASF80 +000000000000f439 l .debug_str 0000000000000000 .LASF81 +000000000000f25f l .debug_str 0000000000000000 .LASF82 +000000000000eb9a l .debug_str 0000000000000000 .LASF83 +000000000000ec2d l .debug_str 0000000000000000 .LASF84 +000000000000f27b l .debug_str 0000000000000000 .LASF85 +000000000000ed7a l .debug_str 0000000000000000 .LASF86 +000000000000f3a3 l .debug_str 0000000000000000 .LASF87 +000000000000e9b5 l .debug_str 0000000000000000 .LASF88 +000000000000eab8 l .debug_str 0000000000000000 .LASF89 +000000000000eaad l .debug_str 0000000000000000 .LASF90 +000000000000ebb2 l .debug_str 0000000000000000 .LASF91 +000000000000eff6 l .debug_str 0000000000000000 .LASF92 +000000000000ebc9 l .debug_str 0000000000000000 .LASF93 +000000000000f412 l .debug_str 0000000000000000 .LASF94 +000000000000f1e2 l .debug_str 0000000000000000 .LASF95 +000000000000f2d8 l .debug_str 0000000000000000 .LASF96 +000000000000f017 l .debug_str 0000000000000000 .LASF97 +000000000000e9e2 l .debug_str 0000000000000000 .LASF98 +000000000000f423 l .debug_str 0000000000000000 .LASF99 +000000000000ed15 l .debug_str 0000000000000000 .LASF100 +000000000000f1e7 l .debug_str 0000000000000000 .LASF101 +000000000000e96f l .debug_str 0000000000000000 .LASF102 +000000000000ee8a l .debug_str 0000000000000000 .LASF103 +000000000000f238 l .debug_str 0000000000000000 .LASF104 +000000000000ec76 l .debug_str 0000000000000000 .LASF105 +000000000000f35d l .debug_str 0000000000000000 .LASF106 +000000000000ef23 l .debug_str 0000000000000000 .LASF107 +000000000000f047 l .debug_str 0000000000000000 .LASF108 +000000000000ed86 l .debug_str 0000000000000000 .LASF109 +000000000000eac4 l .debug_str 0000000000000000 .LASF110 +000000000000ed39 l .debug_str 0000000000000000 .LASF111 +000000000000ef5d l .debug_str 0000000000000000 .LASF112 +000000000000ef31 l .debug_str 0000000000000000 .LASF113 +000000000000f0dd l .debug_str 0000000000000000 .LASF114 +000000000000eb2d l .debug_str 0000000000000000 .LASF115 +000000000000ee0b l .debug_str 0000000000000000 .LASF116 +000000000000e933 l .debug_str 0000000000000000 .LASF117 +000000000000ef88 l .debug_str 0000000000000000 .LASF118 +000000000000ed81 l .debug_str 0000000000000000 .LASF119 +000000000000eda1 l .debug_str 0000000000000000 .LASF120 +000000000000eb6f l .debug_str 0000000000000000 .LASF121 +000000000000ed31 l .debug_str 0000000000000000 .LASF122 +000000000000f0ab l .debug_str 0000000000000000 .LASF123 +000000000000f07f l .debug_str 0000000000000000 .LASF124 +000000000000ef1c l .debug_str 0000000000000000 .LASF125 +000000000000ee1c l .debug_str 0000000000000000 .LASF126 +000000000000ef98 l .debug_str 0000000000000000 .LASF127 +000000000000ed54 l .debug_str 0000000000000000 .LASF128 +000000000000f1bf l .debug_str 0000000000000000 .LASF129 +000000000000eb07 l .debug_str 0000000000000000 .LASF130 +000000000000eb13 l .debug_str 0000000000000000 .LASF131 +000000000000eba5 l .debug_str 0000000000000000 .LASF132 +000000000000ec23 l .debug_str 0000000000000000 .LASF133 +000000000000f36d l .debug_str 0000000000000000 .LASF134 +000000000000ebe6 l .debug_str 0000000000000000 .LASF135 +000000000000eb8a l .debug_str 0000000000000000 .LASF136 +00000000000030da l .text 0000000000000000 .LFB32 +0000000000003108 l .text 0000000000000000 .LFE32 +000000000000667d l .debug_loc 0000000000000000 .LLST145 +00000000000066b6 l .debug_loc 0000000000000000 .LLST146 +000000000000ed92 l .debug_str 0000000000000000 .LASF137 +0000000000002fea l .text 0000000000000000 .LFB31 +00000000000030da l .text 0000000000000000 .LFE31 +00000000000066f5 l .debug_loc 0000000000000000 .LLST136 +000000000000efb8 l .debug_str 0000000000000000 .LASF138 +0000000000006790 l .debug_loc 0000000000000000 .LLST137 +0000000000006818 l .debug_loc 0000000000000000 .LLST138 +000000000000e962 l .debug_str 0000000000000000 .LASF139 +00000000000068c8 l .debug_loc 0000000000000000 .LLST139 +000000000000f2c7 l .debug_str 0000000000000000 .LASF140 +0000000000006937 l .debug_loc 0000000000000000 .LLST140 +00000000000069a6 l .debug_loc 0000000000000000 .LLST141 +0000000000006a2c l .debug_loc 0000000000000000 .LLST142 +0000000000006a4f l .debug_loc 0000000000000000 .LLST143 +0000000000006a72 l .debug_loc 0000000000000000 .LLST144 +00000000000030a0 l .text 0000000000000000 .LBB190 +00000000000030bc l .text 0000000000000000 .LBE190 +000000000000ea47 l .debug_str 0000000000000000 .LASF141 +00000000000030ba l .text 0000000000000000 .LVL463 +000000000000309e l .text 0000000000000000 .LVL461 +0000000000003038 l .text 0000000000000000 .LVL447 +000000000000306c l .text 0000000000000000 .LVL454 +0000000000003084 l .text 0000000000000000 .LVL457 +000000000000eb40 l .debug_str 0000000000000000 .LASF163 +00000000000025d8 l .text 0000000000000000 .LFB30 +0000000000002fea l .text 0000000000000000 .LFE30 +0000000000006abb l .debug_loc 0000000000000000 .LLST76 +0000000000006b1a l .debug_loc 0000000000000000 .LLST77 +000000000000ec4d l .debug_str 0000000000000000 .LASF142 +000000000000f03f l .debug_str 0000000000000000 .LASF143 +0000000000006b66 l .debug_loc 0000000000000000 .LLST78 +000000000000f382 l .debug_str 0000000000000000 .LASF144 +0000000000006d3e l .debug_loc 0000000000000000 .LLST79 +000000000000e9d5 l .debug_str 0000000000000000 .LASF145 +0000000000006dd7 l .debug_loc 0000000000000000 .LLST80 +0000000000006e73 l .debug_loc 0000000000000000 .LLST81 +0000000000006f31 l .debug_loc 0000000000000000 .LLST82 +000000000000f1d4 l .debug_str 0000000000000000 .LASF146 +0000000000006fa0 l .debug_loc 0000000000000000 .LLST83 +000000000000eaa0 l .debug_str 0000000000000000 .LASF155 +000000000000edb1 l .debug_str 0000000000000000 .LASF147 +000000000000e9a1 l .debug_str 0000000000000000 .LASF148 +0000000000007026 l .debug_loc 0000000000000000 .LLST130 +0000000000002c42 l .text 0000000000000000 .LVL347 +0000000000002c66 l .text 0000000000000000 .LVL352 +0000000000002c12 l .text 0000000000000000 .LVL344 +0000000000002630 l .text 0000000000000000 .LBB113 +0000000000007071 l .debug_loc 0000000000000000 .LLST84 +000000000000716a l .debug_loc 0000000000000000 .LLST85 +0000000000007263 l .debug_loc 0000000000000000 .LLST86 +000000000000735c l .debug_loc 0000000000000000 .LLST87 +00000000000073e4 l .debug_loc 0000000000000000 .LLST88 +0000000000007453 l .debug_loc 0000000000000000 .LLST89 +00000000000074a8 l .debug_loc 0000000000000000 .LLST90 +0000000000007550 l .debug_loc 0000000000000000 .LLST91 +0000000000007573 l .debug_loc 0000000000000000 .LLST92 +000000000000759d l .debug_loc 0000000000000000 .LLST93 +00000000000075c0 l .debug_loc 0000000000000000 .LLST94 +00000000000026de l .text 0000000000000000 .L141 +00000000000075e3 l .debug_loc 0000000000000000 .LLST95 +0000000000002672 l .text 0000000000000000 .LVL227 +0000000000002716 l .text 0000000000000000 .LVL238 +0000000000002646 l .text 0000000000000000 .LVL220 +000000000000265c l .text 0000000000000000 .LVL223 +00000000000026e2 l .text 0000000000000000 .LVL232 +00000000000027b6 l .text 0000000000000000 .LVL255 +00000000000027ca l .text 0000000000000000 .LVL259 +0000000000002822 l .text 0000000000000000 .LVL266 +0000000000002838 l .text 0000000000000000 .LVL270 +000000000000289a l .text 0000000000000000 .LVL272 +00000000000028a8 l .text 0000000000000000 .LVL274 +00000000000028c6 l .text 0000000000000000 .LVL275 +00000000000026fa l .text 0000000000000000 .LBB123 +000000000000761f l .debug_loc 0000000000000000 .LLST96 +0000000000007702 l .debug_loc 0000000000000000 .LLST97 +00000000000077e5 l .debug_loc 0000000000000000 .LLST98 +00000000000078c8 l .debug_loc 0000000000000000 .LLST99 +0000000000007938 l .debug_loc 0000000000000000 .LLST100 +0000000000007994 l .debug_loc 0000000000000000 .LLST101 +0000000000007a2b l .debug_loc 0000000000000000 .LLST102 +0000000000002a58 l .text 0000000000000000 .LVL309 +0000000000002a8a l .text 0000000000000000 .LVL310 +0000000000002bda l .text 0000000000000000 .LVL338 +0000000000002a46 l .text 0000000000000000 .LVL307 +00000000000029fe l .text 0000000000000000 .LVL298 +0000000000002a1a l .text 0000000000000000 .LVL302 +0000000000002a30 l .text 0000000000000000 .LVL303 +000000000000275c l .text 0000000000000000 .LBB137 +0000000000007a74 l .debug_loc 0000000000000000 .LLST103 +0000000000007beb l .debug_loc 0000000000000000 .LLST104 +0000000000007d62 l .debug_loc 0000000000000000 .LLST105 +0000000000007ed9 l .debug_loc 0000000000000000 .LLST106 +0000000000007f91 l .debug_loc 0000000000000000 .LLST107 +0000000000008026 l .debug_loc 0000000000000000 .LLST108 +000000000000808e l .debug_loc 0000000000000000 .LLST109 +0000000000008195 l .debug_loc 0000000000000000 .LLST110 +00000000000081bb l .debug_loc 0000000000000000 .LLST111 +0000000000002992 l .text 0000000000000000 .L160 +000000000000276e l .text 0000000000000000 .LVL246 +0000000000002784 l .text 0000000000000000 .LVL250 +000000000000292e l .text 0000000000000000 .LVL282 +0000000000002944 l .text 0000000000000000 .LVL287 +0000000000002996 l .text 0000000000000000 .LVL292 +00000000000029b4 l .text 0000000000000000 .LVL295 +0000000000002a9e l .text 0000000000000000 .LVL312 +0000000000002ab2 l .text 0000000000000000 .LVL316 +0000000000002af8 l .text 0000000000000000 .LVL320 +0000000000002b0c l .text 0000000000000000 .LVL324 +0000000000002b4e l .text 0000000000000000 .LVL328 +0000000000002b64 l .text 0000000000000000 .LVL332 +00000000000028f0 l .text 0000000000000000 .LBB149 +0000000000008290 l .debug_loc 0000000000000000 .LLST112 +00000000000082d9 l .debug_loc 0000000000000000 .LLST113 +0000000000008335 l .debug_loc 0000000000000000 .LLST114 +0000000000008418 l .debug_loc 0000000000000000 .LLST115 +0000000000008487 l .debug_loc 0000000000000000 .LLST116 +00000000000084e3 l .debug_loc 0000000000000000 .LLST117 +0000000000008554 l .debug_loc 0000000000000000 .LLST118 +0000000000002fd6 l .text 0000000000000000 .LDL1 +00000000000085d6 l .debug_loc 0000000000000000 .LLST119 +000000000000861f l .debug_loc 0000000000000000 .LLST120 +00000000000028f0 l .text 0000000000000000 .LBB152 +0000000000008656 l .debug_loc 0000000000000000 .LLST121 +00000000000086a5 l .debug_loc 0000000000000000 .LLST122 +00000000000086c8 l .debug_loc 0000000000000000 .LLST123 +00000000000086eb l .debug_loc 0000000000000000 .LLST124 +000000000000870e l .debug_loc 0000000000000000 .LLST125 +0000000000008744 l .debug_loc 0000000000000000 .LLST126 +0000000000002de8 l .text 0000000000000000 .LVL385 +0000000000002e12 l .text 0000000000000000 .LVL391 +0000000000002e72 l .text 0000000000000000 .LBB157 +0000000000002ea0 l .text 0000000000000000 .LBE157 +000000000000877b l .debug_loc 0000000000000000 .LLST127 +00000000000087b1 l .debug_loc 0000000000000000 .LLST128 +0000000000002e88 l .text 0000000000000000 .LVL404 +0000000000002e92 l .text 0000000000000000 .LBB160 +0000000000002e9e l .text 0000000000000000 .LBE160 +00000000000087d4 l .debug_loc 0000000000000000 .LLST129 +0000000000002e9a l .text 0000000000000000 .LVL406 +0000000000002dd6 l .text 0000000000000000 .LVL382 +0000000000002e2c l .text 0000000000000000 .LVL393 +0000000000002e38 l .text 0000000000000000 .LVL394 +0000000000002e48 l .text 0000000000000000 .LVL396 +0000000000002e60 l .text 0000000000000000 .LVL397 +0000000000002e6a l .text 0000000000000000 .LVL398 +0000000000002eaa l .text 0000000000000000 .LVL409 +0000000000002eb6 l .text 0000000000000000 .LVL410 +0000000000002ec2 l .text 0000000000000000 .LVL411 +0000000000002ed8 l .text 0000000000000000 .LVL412 +0000000000002ef4 l .text 0000000000000000 .LVL415 +0000000000002f00 l .text 0000000000000000 .LVL418 +0000000000002f14 l .text 0000000000000000 .LVL419 +0000000000002fd6 l .text 0000000000000000 .LVL443 +0000000000002f36 l .text 0000000000000000 .LBB163 +0000000000002f6a l .text 0000000000000000 .LBE163 +0000000000002f46 l .text 0000000000000000 .LVL425 +0000000000002f54 l .text 0000000000000000 .LVL427 +0000000000002f64 l .text 0000000000000000 .LVL429 +0000000000002d28 l .text 0000000000000000 .LVL367 +0000000000002d48 l .text 0000000000000000 .LVL369 +0000000000002d5c l .text 0000000000000000 .LVL371 +0000000000002d74 l .text 0000000000000000 .LVL372 +0000000000002f20 l .text 0000000000000000 .LVL421 +0000000000002fe8 l .text 0000000000000000 .LVL444 +0000000000002f6a l .text 0000000000000000 .LBB182 +0000000000002f9a l .text 0000000000000000 .LBE182 +00000000000087f7 l .debug_loc 0000000000000000 .LLST131 +0000000000008846 l .debug_loc 0000000000000000 .LLST132 +0000000000002f6a l .text 0000000000000000 .LBB183 +0000000000002f9a l .text 0000000000000000 .LBE183 +0000000000008892 l .debug_loc 0000000000000000 .LLST133 +00000000000088b5 l .debug_loc 0000000000000000 .LLST134 +0000000000002f86 l .text 0000000000000000 .LVL432 +0000000000002f9a l .text 0000000000000000 .LBB184 +00000000000088eb l .debug_loc 0000000000000000 .LLST135 +0000000000002fca l .text 0000000000000000 .LVL441 +0000000000002604 l .text 0000000000000000 .LVL216 +0000000000002614 l .text 0000000000000000 .LVL217 +0000000000002630 l .text 0000000000000000 .LVL218 +0000000000002706 l .text 0000000000000000 .LVL234 +0000000000002bea l .text 0000000000000000 .LVL341 +0000000000002c98 l .text 0000000000000000 .LVL355 +0000000000002cca l .text 0000000000000000 .LVL358 +0000000000002cee l .text 0000000000000000 .LVL362 +0000000000002d16 l .text 0000000000000000 .LVL365 +0000000000002d96 l .text 0000000000000000 .LVL374 +0000000000002dba l .text 0000000000000000 .LVL378 +0000000000002f30 l .text 0000000000000000 .LVL423 +000000000000eeb4 l .debug_str 0000000000000000 .LASF151 +000000000000ec86 l .debug_str 0000000000000000 .LASF149 +000000000000ea31 l .debug_str 0000000000000000 .LASF150 +000000000000ebf9 l .debug_str 0000000000000000 .LASF152 +000000000000f3ab l .debug_str 0000000000000000 .LASF153 +000000000000ed28 l .debug_str 0000000000000000 .LASF154 +000000000000ecad l .debug_str 0000000000000000 .LASF156 +000000000000ea63 l .debug_str 0000000000000000 .LASF157 +000000000000ef40 l .debug_str 0000000000000000 .LASF158 +000000000000f43e l .debug_str 0000000000000000 .LASF159 +000000000000f1b4 l .debug_str 0000000000000000 .LASF160 +000000000000ee2e l .debug_str 0000000000000000 .LASF161 +000000000000e9dc l .debug_str 0000000000000000 .LASF162 +000000000000f249 l .debug_str 0000000000000000 .LASF164 +0000000000001fa8 l .text 0000000000000000 .LFB26 +000000000000200c l .text 0000000000000000 .LFE26 +0000000000008921 l .debug_loc 0000000000000000 .LLST9 +0000000000001fa8 l .text 0000000000000000 .LBB9 +0000000000001fc2 l .text 0000000000000000 .LBE9 +000000000000895a l .debug_loc 0000000000000000 .LLST10 +000000000000897d l .debug_loc 0000000000000000 .LLST11 +0000000000001fca l .text 0000000000000000 .LBB11 +00000000000089bc l .debug_loc 0000000000000000 .LLST12 +0000000000008a21 l .debug_loc 0000000000000000 .LLST13 +0000000000008a79 l .debug_loc 0000000000000000 .LLST14 +000000000000ee4b l .debug_str 0000000000000000 .LASF165 +000000000000ec55 l .debug_str 0000000000000000 .LASF166 +000000000000f350 l .debug_str 0000000000000000 .LASF167 +000000000000216e l .text 0000000000000000 .LFB23 +000000000000255c l .text 0000000000000000 .LFE23 +0000000000008b7d l .debug_loc 0000000000000000 .LLST30 +0000000000008bdc l .debug_loc 0000000000000000 .LLST31 +0000000000008cb6 l .debug_loc 0000000000000000 .LLST32 +0000000000008d15 l .debug_loc 0000000000000000 .LLST33 +0000000000008def l .debug_loc 0000000000000000 .LLST34 +0000000000008e71 l .debug_loc 0000000000000000 .LLST35 +000000000000efdf l .debug_str 0000000000000000 .LASF168 +0000000000008f6f l .debug_loc 0000000000000000 .LLST36 +000000000000f377 l .debug_str 0000000000000000 .LASF169 +00000000000090a6 l .debug_loc 0000000000000000 .LLST37 +000000000000f3dc l .debug_str 0000000000000000 .LASF170 +00000000000091b3 l .debug_loc 0000000000000000 .LLST38 +000000000000f45b l .debug_str 0000000000000000 .LASF171 +0000000000009256 l .debug_loc 0000000000000000 .LLST39 +000000000000f3e5 l .debug_str 0000000000000000 .LASF172 +000000000000929f l .debug_loc 0000000000000000 .LLST40 +000000000000f3fc l .debug_str 0000000000000000 .LASF173 +0000000000009325 l .debug_loc 0000000000000000 .LLST41 +000000000000eeff l .debug_str 0000000000000000 .LASF174 +00000000000093ba l .debug_loc 0000000000000000 .LLST42 +000000000000ea6c l .debug_str 0000000000000000 .LASF175 +0000000000009432 l .debug_loc 0000000000000000 .LLST43 +0000000000002244 l .text 0000000000000000 .LBB43 +0000000000002262 l .text 0000000000000000 .LBE43 +0000000000002260 l .text 0000000000000000 .LVL92 +000000000000229a l .text 0000000000000000 .LBB44 +00000000000094a3 l .debug_loc 0000000000000000 .LLST44 +0000000000009501 l .debug_loc 0000000000000000 .LLST45 +000000000000954a l .debug_loc 0000000000000000 .LLST46 +0000000000002240 l .text 0000000000000000 .LVL89 +00000000000022fa l .text 0000000000000000 .LBB51 +0000000000009580 l .debug_loc 0000000000000000 .LLST47 +00000000000095b9 l .debug_loc 0000000000000000 .LLST48 +00000000000095dc l .debug_loc 0000000000000000 .LLST49 +00000000000095ff l .debug_loc 0000000000000000 .LLST50 +0000000000009635 l .debug_loc 0000000000000000 .LLST51 +0000000000009658 l .debug_loc 0000000000000000 .LLST52 +000000000000968e l .debug_loc 0000000000000000 .LLST53 +0000000000009755 l .debug_loc 0000000000000000 .LLST54 +000000000000230a l .text 0000000000000000 .LBB54 +000000000000978b l .debug_loc 0000000000000000 .LLST55 +00000000000097ae l .debug_loc 0000000000000000 .LLST56 +00000000000097d1 l .debug_loc 0000000000000000 .LLST57 +0000000000002340 l .text 0000000000000000 .LVL125 +0000000000002358 l .text 0000000000000000 .LVL128 +000000000000236e l .text 0000000000000000 .LVL131 +000000000000237e l .text 0000000000000000 .LVL134 +000000000000238e l .text 0000000000000000 .LVL137 +0000000000002306 l .text 0000000000000000 .LVL119 +000000000000239c l .text 0000000000000000 .LBB61 +0000000000009809 l .debug_loc 0000000000000000 .LLST58 +0000000000009865 l .debug_loc 0000000000000000 .LLST59 +00000000000099ae l .debug_loc 0000000000000000 .LLST60 +0000000000009a43 l .debug_loc 0000000000000000 .LLST61 +0000000000009b0d l .debug_loc 0000000000000000 .LLST62 +0000000000009b69 l .debug_loc 0000000000000000 .LLST63 +0000000000009ba1 l .debug_loc 0000000000000000 .LLST64 +0000000000009be2 l .debug_loc 0000000000000000 .LLST65 +000000000000244c l .text 0000000000000000 .LVL165 +0000000000009c19 l .debug_loc 0000000000000000 .LLST66 +0000000000009c51 l .debug_loc 0000000000000000 .LLST67 +00000000000023ae l .text 0000000000000000 .LBB65 +0000000000009c87 l .debug_loc 0000000000000000 .LLST68 +0000000000009cbd l .debug_loc 0000000000000000 .LLST69 +0000000000009cf3 l .debug_loc 0000000000000000 .LLST70 +0000000000002546 l .text 0000000000000000 .LVL196 +00000000000024ec l .text 0000000000000000 .LVL184 +0000000000002470 l .text 0000000000000000 .LVL170 +0000000000002492 l .text 0000000000000000 .LVL174 +00000000000024b2 l .text 0000000000000000 .LVL176 +0000000000002518 l .text 0000000000000000 .LVL187 +0000000000002528 l .text 0000000000000000 .LVL189 +0000000000002536 l .text 0000000000000000 .LVL193 +00000000000023ca l .text 0000000000000000 .LVL144 +00000000000023f0 l .text 0000000000000000 .LVL149 +00000000000023fc l .text 0000000000000000 .LVL151 +00000000000024c6 l .text 0000000000000000 .LVL180 +00000000000021b2 l .text 0000000000000000 .LVL71 +00000000000021e0 l .text 0000000000000000 .LVL75 +000000000000222e l .text 0000000000000000 .LVL86 +00000000000022d8 l .text 0000000000000000 .LVL112 +000000000000e9bb l .debug_str 0000000000000000 .LASF176 +000000000000ec1a l .debug_str 0000000000000000 .LASF177 +000000000000e968 l .debug_str 0000000000000000 .LASF178 +000000000000f26b l .debug_str 0000000000000000 .LASF179 +000000000000ecb4 l .debug_str 0000000000000000 .LASF180 +000000000000efd2 l .debug_str 0000000000000000 .LASF181 +000000000000f001 l .debug_str 0000000000000000 .LASF182 +000000000000ec41 l .debug_str 0000000000000000 .LASF207 +0000000000001f76 l .text 0000000000000000 .LFB20 +0000000000001fa8 l .text 0000000000000000 .LFE20 +0000000000009d16 l .debug_loc 0000000000000000 .LLST3 +0000000000009d4f l .debug_loc 0000000000000000 .LLST4 +0000000000009d85 l .debug_loc 0000000000000000 .LLST5 +000000000000f1cf l .debug_str 0000000000000000 .LASF183 +0000000000009dcf l .debug_loc 0000000000000000 .LLST6 +0000000000009df2 l .debug_loc 0000000000000000 .LLST7 +0000000000009e2c l .debug_loc 0000000000000000 .LLST8 +000000000000f312 l .debug_str 0000000000000000 .LASF184 +000000000000f1ac l .debug_str 0000000000000000 .LASF185 +000000000000ef6a l .debug_str 0000000000000000 .LASF186 +000000000000edf7 l .debug_str 0000000000000000 .LASF187 +000000000000f300 l .debug_str 0000000000000000 .LASF188 +0000000000001f50 l .text 0000000000000000 .LFB17 +0000000000001f76 l .text 0000000000000000 .LFE17 +0000000000009e4f l .debug_loc 0000000000000000 .LLST0 +0000000000009e88 l .debug_loc 0000000000000000 .LLST1 +0000000000009eab l .debug_loc 0000000000000000 .LLST2 +000000000000ef8d l .debug_str 0000000000000000 .LASF189 +000000000000200c l .text 0000000000000000 .LFB16 +0000000000002096 l .text 0000000000000000 .LFE16 +0000000000009ef5 l .debug_loc 0000000000000000 .LLST15 +0000000000009f54 l .debug_loc 0000000000000000 .LLST16 +0000000000009fb3 l .debug_loc 0000000000000000 .LLST17 +000000000000a012 l .debug_loc 0000000000000000 .LLST18 +000000000000f2a9 l .debug_str 0000000000000000 .LASF190 +000000000000a081 l .debug_loc 0000000000000000 .LLST19 +000000000000e951 l .debug_str 0000000000000000 .LASF191 +000000000000a0cb l .debug_loc 0000000000000000 .LLST20 +0000000000002030 l .text 0000000000000000 .LVL28 +000000000000203e l .text 0000000000000000 .LVL30 +0000000000002050 l .text 0000000000000000 .LVL32 +000000000000206c l .text 0000000000000000 .LVL34 +0000000000002094 l .text 0000000000000000 .LVL42 +000000000000e93c l .debug_str 0000000000000000 .LASF192 +000000000000eb52 l .debug_str 0000000000000000 .LASF193 +000000000000ed03 l .debug_str 0000000000000000 .LASF194 +000000000000f1f5 l .debug_str 0000000000000000 .LASF195 +000000000000ed9c l .debug_str 0000000000000000 .LASF196 +000000000000ebe1 l .debug_str 0000000000000000 .LASF197 +000000000000f258 l .debug_str 0000000000000000 .LASF198 +000000000000eedb l .debug_str 0000000000000000 .LASF199 +000000000000edd6 l .debug_str 0000000000000000 .LASF200 +000000000000f403 l .debug_str 0000000000000000 .LASF201 +000000000000f2b8 l .debug_str 0000000000000000 .LASF202 +000000000000ea4d l .debug_str 0000000000000000 .LASF203 +000000000000f2e1 l .debug_str 0000000000000000 .LASF204 +000000000000efe4 l .debug_str 0000000000000000 .LASF205 +00000000000020ec l .text 0000000000000000 .LFB12 +0000000000002156 l .text 0000000000000000 .LFE12 +000000000000a0f5 l .debug_loc 0000000000000000 .LLST24 +000000000000ecd3 l .debug_str 0000000000000000 .LASF206 +000000000000a141 l .debug_loc 0000000000000000 .LLST25 +000000000000a18d l .debug_loc 0000000000000000 .LLST26 +000000000000eb7d l .debug_str 0000000000000000 .LASF248 +0000000000002116 l .text 0000000000000000 .LVL56 +0000000000002126 l .text 0000000000000000 .LVL57 +000000000000213e l .text 0000000000000000 .LVL59 +0000000000002148 l .text 0000000000000000 .LVL60 +000000000000ebb9 l .debug_str 0000000000000000 .LASF208 +0000000000002096 l .text 0000000000000000 .LFB11 +00000000000020ec l .text 0000000000000000 .LFE11 +000000000000a1b0 l .debug_loc 0000000000000000 .LLST21 +000000000000a222 l .debug_loc 0000000000000000 .LLST22 +000000000000a245 l .debug_loc 0000000000000000 .LLST23 +00000000000020b4 l .text 0000000000000000 .LVL46 +00000000000020be l .text 0000000000000000 .LVL47 +00000000000020da l .text 0000000000000000 .LVL51 +00000000000020ea l .text 0000000000000000 .LVL53 +000000000000e97b l .debug_str 0000000000000000 .LASF210 +000000000000eca7 l .debug_str 0000000000000000 .LASF209 +000000000000efaa l .debug_str 0000000000000000 .LASF211 +000000000000edc5 l .debug_str 0000000000000000 .LASF212 +000000000000ef0c l .debug_str 0000000000000000 .LASF213 +0000000000002156 l .text 0000000000000000 .LFB7 +000000000000216e l .text 0000000000000000 .LFE7 +0000000000002158 l .text 0000000000000000 .LBB23 +000000000000216c l .text 0000000000000000 .LBE23 +000000000000a28f l .debug_loc 0000000000000000 .LLST27 +000000000000a2b2 l .debug_loc 0000000000000000 .LLST28 +0000000000002158 l .text 0000000000000000 .LBB24 +000000000000216c l .text 0000000000000000 .LBE24 +000000000000a2d5 l .debug_loc 0000000000000000 .LLST29 +000000000000255c l .text 0000000000000000 .LFB14 +00000000000025d8 l .text 0000000000000000 .LFE14 +000000000000a30d l .debug_loc 0000000000000000 .LLST71 +000000000000a3c1 l .debug_loc 0000000000000000 .LLST72 +000000000000a45f l .debug_loc 0000000000000000 .LLST73 +00000000000025a4 l .text 0000000000000000 .LBB85 +00000000000025d6 l .text 0000000000000000 .LBE85 +000000000000a52b l .debug_loc 0000000000000000 .LLST74 +000000000000a577 l .debug_loc 0000000000000000 .LLST75 +000000000000ecdf l .debug_str 0000000000000000 .LASF214 +000000000000ea71 l .debug_str 0000000000000000 .LASF215 +000000000000ea22 l .debug_str 0000000000000000 .LASF216 +000000000000eabe l .debug_str 0000000000000000 .LASF217 +000000000000eaff l .debug_str 0000000000000000 .LASF218 +000000000000f264 l .debug_str 0000000000000000 .LASF219 +000000000000e9c9 l .debug_str 0000000000000000 .LASF220 +000000000000f20f l .debug_str 0000000000000000 .LASF221 +000000000000f38c l .debug_str 0000000000000000 .LASF222 +000000000000ea89 l .debug_str 0000000000000000 .LASF223 +000000000000ed65 l .debug_str 0000000000000000 .LASF224 +000000000000e98f l .debug_str 0000000000000000 .LASF225 +000000000000ee62 l .debug_str 0000000000000000 .LASF226 +000000000000ec8c l .debug_str 0000000000000000 .LASF227 +000000000000e9e8 l .debug_str 0000000000000000 .LASF228 +000000000000f0c7 l .debug_str 0000000000000000 .LASF229 +000000000000f449 l .debug_str 0000000000000000 .LASF230 +000000000000f42d l .debug_str 0000000000000000 .LASF231 +000000000000e9d0 l .debug_str 0000000000000000 .LASF232 +000000000000f455 l .debug_str 0000000000000000 .LASF233 +000000000000e9f7 l .debug_str 0000000000000000 .LASF234 +000000000000f3b4 l .debug_str 0000000000000000 .LASF235 +000000000000f0d6 l .debug_str 0000000000000000 .LASF249 +000000000000ea78 l .debug_str 0000000000000000 .LASF250 +000000000000f216 l .debug_str 0000000000000000 .LASF236 +000000000000f2ef l .debug_str 0000000000000000 .LASF237 +000000000000eee8 l .debug_str 0000000000000000 .LASF238 +000000000000ecd8 l .debug_str 0000000000000000 .LASF239 +000000000000f30b l .debug_str 0000000000000000 .LASF240 +000000000000eb67 l .debug_str 0000000000000000 .LASF241 +000000000000f41b l .debug_str 0000000000000000 .LASF242 +000000000000f3b9 l .debug_str 0000000000000000 .LASF243 +00000000000030da l .text 0000000000000000 .LVL470 +0000000000003106 l .text 0000000000000000 .LVL471 +0000000000002fea l .text 0000000000000000 .LVL445 +0000000000003024 l .text 0000000000000000 .LVL446 +0000000000003062 l .text 0000000000000000 .LVL453 +00000000000030c2 l .text 0000000000000000 .LVL465 +00000000000030d4 l .text 0000000000000000 .LVL468 +0000000000003050 l .text 0000000000000000 .LVL450 +00000000000030c4 l .text 0000000000000000 .LVL466 +0000000000003060 l .text 0000000000000000 .LVL452 +00000000000030d0 l .text 0000000000000000 .LVL467 +000000000000304c l .text 0000000000000000 .LVL449 +0000000000003070 l .text 0000000000000000 .LVL455 +0000000000003088 l .text 0000000000000000 .LVL458 +0000000000003092 l .text 0000000000000000 .LVL459 +00000000000030d8 l .text 0000000000000000 .LVL469 +000000000000303a l .text 0000000000000000 .LVL448 +000000000000305e l .text 0000000000000000 .LVL451 +0000000000003074 l .text 0000000000000000 .LVL456 +0000000000003096 l .text 0000000000000000 .LVL460 +00000000000030bc l .text 0000000000000000 .LVL464 +00000000000030b8 l .text 0000000000000000 .LVL462 +00000000000025d8 l .text 0000000000000000 .LVL213 +00000000000025ea l .text 0000000000000000 .LVL215 +0000000000002f98 l .text 0000000000000000 .LVL435 +0000000000002fd0 l .text 0000000000000000 .LVL442 +00000000000025e8 l .text 0000000000000000 .LVL214 +000000000000263e l .text 0000000000000000 .LVL219 +0000000000002674 l .text 0000000000000000 .LVL228 +00000000000026c8 l .text 0000000000000000 .LVL229 +00000000000026ce l .text 0000000000000000 .LVL230 +00000000000026de l .text 0000000000000000 .LVL231 +00000000000026fa l .text 0000000000000000 .LVL233 +000000000000270a l .text 0000000000000000 .LVL236 +000000000000270c l .text 0000000000000000 .LVL237 +000000000000275c l .text 0000000000000000 .LVL245 +0000000000002786 l .text 0000000000000000 .LVL251 +0000000000002790 l .text 0000000000000000 .LVL252 +000000000000279a l .text 0000000000000000 .LVL253 +00000000000027a4 l .text 0000000000000000 .LVL254 +00000000000027f0 l .text 0000000000000000 .LVL260 +00000000000027fa l .text 0000000000000000 .LVL261 +0000000000002808 l .text 0000000000000000 .LVL263 +0000000000002810 l .text 0000000000000000 .LVL265 +0000000000002890 l .text 0000000000000000 .LVL271 +00000000000028f4 l .text 0000000000000000 .LVL279 +0000000000002902 l .text 0000000000000000 .LVL280 +0000000000002954 l .text 0000000000000000 .LVL288 +0000000000002972 l .text 0000000000000000 .LVL289 +000000000000297c l .text 0000000000000000 .LVL290 +0000000000002992 l .text 0000000000000000 .LVL291 +00000000000029a8 l .text 0000000000000000 .LVL294 +00000000000029e4 l .text 0000000000000000 .LVL297 +0000000000002aba l .text 0000000000000000 .LVL317 +0000000000002ae6 l .text 0000000000000000 .LVL319 +0000000000002b14 l .text 0000000000000000 .LVL325 +0000000000002b3c l .text 0000000000000000 .LVL327 +0000000000002bb0 l .text 0000000000000000 .LVL333 +0000000000002bdc l .text 0000000000000000 .LVL339 +0000000000002be0 l .text 0000000000000000 .LVL340 +00000000000028ee l .text 0000000000000000 .LVL277 +0000000000002cf0 l .text 0000000000000000 .LVL363 +0000000000002cf4 l .text 0000000000000000 .LVL364 +0000000000002d78 l .text 0000000000000000 .LVL373 +0000000000002dbc l .text 0000000000000000 .LVL379 +0000000000002dc0 l .text 0000000000000000 .LVL380 +0000000000002dc8 l .text 0000000000000000 .LVL381 +0000000000002cda l .text 0000000000000000 .LVL361 +0000000000002da6 l .text 0000000000000000 .LVL377 +0000000000002bf0 l .text 0000000000000000 .LVL342 +0000000000002bfe l .text 0000000000000000 .LVL343 +0000000000002c4e l .text 0000000000000000 .LVL348 +0000000000002c50 l .text 0000000000000000 .LVL349 +0000000000002c54 l .text 0000000000000000 .LVL350 +0000000000002c72 l .text 0000000000000000 .LVL353 +0000000000002c74 l .text 0000000000000000 .LVL354 +0000000000002ca0 l .text 0000000000000000 .LVL356 +0000000000002ca2 l .text 0000000000000000 .LVL357 +0000000000002cd0 l .text 0000000000000000 .LVL359 +0000000000002d9c l .text 0000000000000000 .LVL375 +0000000000002708 l .text 0000000000000000 .LVL235 +0000000000002f22 l .text 0000000000000000 .LVL422 +0000000000002f36 l .text 0000000000000000 .LVL424 +0000000000002f6a l .text 0000000000000000 .LVL430 +0000000000002fba l .text 0000000000000000 .LVL438 +0000000000002fbe l .text 0000000000000000 .LVL439 +0000000000002cd4 l .text 0000000000000000 .LVL360 +0000000000002da0 l .text 0000000000000000 .LVL376 +0000000000002c32 l .text 0000000000000000 .LVL346 +0000000000002664 l .text 0000000000000000 .LVL224 +000000000000275a l .text 0000000000000000 .LVL244 +00000000000027bc l .text 0000000000000000 .LVL256 +0000000000002806 l .text 0000000000000000 .LVL262 +000000000000282a l .text 0000000000000000 .LVL267 +00000000000028ea l .text 0000000000000000 .LVL276 +000000000000291e l .text 0000000000000000 .LVL281 +0000000000002666 l .text 0000000000000000 .LVL225 +00000000000027be l .text 0000000000000000 .LVL257 +000000000000282c l .text 0000000000000000 .LVL268 +0000000000002668 l .text 0000000000000000 .LVL226 +00000000000027c0 l .text 0000000000000000 .LVL258 +000000000000282e l .text 0000000000000000 .LVL269 +000000000000d798 l .debug_info 0000000000000000 .Ldebug_info0 +0000000000002722 l .text 0000000000000000 .LVL239 +00000000000028a0 l .text 0000000000000000 .LVL273 +0000000000002752 l .text 0000000000000000 .LVL243 +0000000000002648 l .text 0000000000000000 .LVL221 +0000000000002654 l .text 0000000000000000 .LVL222 +0000000000002724 l .text 0000000000000000 .LVL240 +000000000000273a l .text 0000000000000000 .LVL242 +0000000000002734 l .text 0000000000000000 .LVL241 +000000000000280c l .text 0000000000000000 .LVL264 +0000000000002a0c l .text 0000000000000000 .LVL299 +0000000000002a38 l .text 0000000000000000 .LVL304 +0000000000002a8c l .text 0000000000000000 .LVL311 +0000000000002bc8 l .text 0000000000000000 .LVL334 +0000000000002bcc l .text 0000000000000000 .LVL335 +0000000000002a0e l .text 0000000000000000 .LVL300 +0000000000002a3a l .text 0000000000000000 .LVL305 +0000000000002bce l .text 0000000000000000 .LVL336 +0000000000002a10 l .text 0000000000000000 .LVL301 +0000000000002a3c l .text 0000000000000000 .LVL306 +0000000000002bd0 l .text 0000000000000000 .LVL337 +0000000000002a48 l .text 0000000000000000 .LVL308 +0000000000002776 l .text 0000000000000000 .LVL247 +0000000000002936 l .text 0000000000000000 .LVL284 +00000000000029a6 l .text 0000000000000000 .LVL293 +0000000000002aa4 l .text 0000000000000000 .LVL313 +0000000000002ae4 l .text 0000000000000000 .LVL318 +0000000000002afe l .text 0000000000000000 .LVL321 +0000000000002b3a l .text 0000000000000000 .LVL326 +0000000000002b56 l .text 0000000000000000 .LVL329 +0000000000002778 l .text 0000000000000000 .LVL248 +0000000000002938 l .text 0000000000000000 .LVL285 +0000000000002aa6 l .text 0000000000000000 .LVL314 +0000000000002b00 l .text 0000000000000000 .LVL322 +0000000000002b58 l .text 0000000000000000 .LVL330 +000000000000277a l .text 0000000000000000 .LVL249 +000000000000293a l .text 0000000000000000 .LVL286 +0000000000002aa8 l .text 0000000000000000 .LVL315 +0000000000002b02 l .text 0000000000000000 .LVL323 +0000000000002b5a l .text 0000000000000000 .LVL331 +0000000000002932 l .text 0000000000000000 .LVL283 +00000000000029d2 l .text 0000000000000000 .LVL296 +0000000000002dea l .text 0000000000000000 .LVL386 +0000000000002d1e l .text 0000000000000000 .LVL366 +0000000000002dfc l .text 0000000000000000 .LVL388 +0000000000002e02 l .text 0000000000000000 .LVL389 +0000000000002f48 l .text 0000000000000000 .LVL426 +0000000000002e6c l .text 0000000000000000 .LVL399 +0000000000002e7a l .text 0000000000000000 .LVL402 +0000000000002d4a l .text 0000000000000000 .LVL370 +0000000000002f16 l .text 0000000000000000 .LVL420 +0000000000002d40 l .text 0000000000000000 .LVL368 +0000000000002e76 l .text 0000000000000000 .LVL401 +0000000000002eda l .text 0000000000000000 .LVL413 +0000000000002ef2 l .text 0000000000000000 .LVL414 +0000000000002ef6 l .text 0000000000000000 .LVL416 +0000000000002ef8 l .text 0000000000000000 .LVL417 +0000000000002f5a l .text 0000000000000000 .LVL428 +0000000000002dd8 l .text 0000000000000000 .LVL383 +0000000000002e3e l .text 0000000000000000 .LVL395 +0000000000002e74 l .text 0000000000000000 .LVL400 +0000000000002e1c l .text 0000000000000000 .LVL392 +0000000000002ddc l .text 0000000000000000 .LVL384 +0000000000002df8 l .text 0000000000000000 .LVL387 +0000000000002e08 l .text 0000000000000000 .LVL390 +0000000000002e7c l .text 0000000000000000 .LVL403 +0000000000002e9e l .text 0000000000000000 .LVL407 +0000000000002ea0 l .text 0000000000000000 .LVL408 +0000000000002e8c l .text 0000000000000000 .LVL405 +00000000000028f0 l .text 0000000000000000 .LVL278 +0000000000002f9a l .text 0000000000000000 .LVL436 +0000000000002f6c l .text 0000000000000000 .LVL431 +0000000000002f8c l .text 0000000000000000 .LVL433 +0000000000002f8e l .text 0000000000000000 .LVL434 +0000000000002fa8 l .text 0000000000000000 .LVL437 +0000000000002fc2 l .text 0000000000000000 .LVL440 +0000000000001fa8 l .text 0000000000000000 .LVL15 +0000000000001fd0 l .text 0000000000000000 .LVL19 +0000000000001fc2 l .text 0000000000000000 .LVL16 +0000000000001fca l .text 0000000000000000 .LVL17 +0000000000001ff4 l .text 0000000000000000 .LVL21 +0000000000001ffa l .text 0000000000000000 .LVL22 +0000000000002002 l .text 0000000000000000 .LVL23 +0000000000002006 l .text 0000000000000000 .LVL24 +0000000000001fce l .text 0000000000000000 .LVL18 +0000000000001fd6 l .text 0000000000000000 .LVL20 +000000000000200a l .text 0000000000000000 .LVL25 +000000000000216e l .text 0000000000000000 .LVL68 +000000000000219e l .text 0000000000000000 .LVL70 +0000000000002268 l .text 0000000000000000 .LVL94 +0000000000002282 l .text 0000000000000000 .LVL97 +00000000000021d4 l .text 0000000000000000 .LVL74 +00000000000021e4 l .text 0000000000000000 .LVL76 +0000000000002262 l .text 0000000000000000 .LVL93 +000000000000239e l .text 0000000000000000 .LVL140 +00000000000023fe l .text 0000000000000000 .LVL152 +0000000000002412 l .text 0000000000000000 .LVL155 +000000000000254e l .text 0000000000000000 .LVL198 +0000000000002272 l .text 0000000000000000 .LVL96 +000000000000234a l .text 0000000000000000 .LVL126 +0000000000002270 l .text 0000000000000000 .LVL95 +000000000000229a l .text 0000000000000000 .LVL99 +00000000000022bc l .text 0000000000000000 .LVL105 +00000000000022c2 l .text 0000000000000000 .LVL108 +00000000000022c8 l .text 0000000000000000 .LVL110 +00000000000022de l .text 0000000000000000 .LVL113 +00000000000022e2 l .text 0000000000000000 .LVL114 +000000000000218c l .text 0000000000000000 .LVL69 +00000000000021c8 l .text 0000000000000000 .LVL72 +00000000000021ea l .text 0000000000000000 .LVL78 +00000000000021f6 l .text 0000000000000000 .LVL80 +00000000000021f8 l .text 0000000000000000 .LVL81 +0000000000002206 l .text 0000000000000000 .LVL82 +0000000000002208 l .text 0000000000000000 .LVL83 +0000000000002310 l .text 0000000000000000 .LVL121 +0000000000002398 l .text 0000000000000000 .LVL139 +00000000000023f2 l .text 0000000000000000 .LVL150 +00000000000024ba l .text 0000000000000000 .LVL177 +00000000000024bc l .text 0000000000000000 .LVL178 +000000000000229e l .text 0000000000000000 .LVL100 +00000000000022c4 l .text 0000000000000000 .LVL109 +00000000000022e4 l .text 0000000000000000 .LVL115 +00000000000022e8 l .text 0000000000000000 .LVL116 +00000000000023ae l .text 0000000000000000 .LVL142 +0000000000002400 l .text 0000000000000000 .LVL153 +0000000000002402 l .text 0000000000000000 .LVL154 +0000000000002552 l .text 0000000000000000 .LVL200 +000000000000255a l .text 0000000000000000 .LVL201 +00000000000023be l .text 0000000000000000 .LVL143 +0000000000002478 l .text 0000000000000000 .LVL171 +000000000000248a l .text 0000000000000000 .LVL173 +00000000000024c8 l .text 0000000000000000 .LVL181 +000000000000252a l .text 0000000000000000 .LVL190 +000000000000252e l .text 0000000000000000 .LVL192 +0000000000002550 l .text 0000000000000000 .LVL199 +00000000000021cc l .text 0000000000000000 .LVL73 +00000000000021ee l .text 0000000000000000 .LVL79 +000000000000220e l .text 0000000000000000 .LVL84 +00000000000022f0 l .text 0000000000000000 .LVL117 +0000000000002214 l .text 0000000000000000 .LVL85 +0000000000002292 l .text 0000000000000000 .LVL98 +00000000000022be l .text 0000000000000000 .LVL106 +00000000000022c0 l .text 0000000000000000 .LVL107 +00000000000023a6 l .text 0000000000000000 .LVL141 +0000000000002234 l .text 0000000000000000 .LVL87 +0000000000002238 l .text 0000000000000000 .LVL88 +00000000000022d0 l .text 0000000000000000 .LVL111 +0000000000002242 l .text 0000000000000000 .LVL90 +000000000000225e l .text 0000000000000000 .LVL91 +00000000000022aa l .text 0000000000000000 .LVL102 +00000000000022ae l .text 0000000000000000 .LVL103 +00000000000022b8 l .text 0000000000000000 .LVL104 +00000000000022fa l .text 0000000000000000 .LVL118 +0000000000002380 l .text 0000000000000000 .LVL135 +0000000000002308 l .text 0000000000000000 .LVL120 +0000000000002338 l .text 0000000000000000 .LVL124 +0000000000002350 l .text 0000000000000000 .LVL127 +000000000000235a l .text 0000000000000000 .LVL129 +0000000000002366 l .text 0000000000000000 .LVL130 +0000000000002374 l .text 0000000000000000 .LVL132 +0000000000002376 l .text 0000000000000000 .LVL133 +0000000000002390 l .text 0000000000000000 .LVL138 +0000000000002384 l .text 0000000000000000 .LVL136 +000000000000232e l .text 0000000000000000 .LVL123 +000000000000232a l .text 0000000000000000 .LVL122 +0000000000002414 l .text 0000000000000000 .LVL156 +0000000000002416 l .text 0000000000000000 .LVL157 +000000000000252c l .text 0000000000000000 .LVL191 +00000000000023d8 l .text 0000000000000000 .LVL147 +00000000000023e8 l .text 0000000000000000 .LVL148 +0000000000002444 l .text 0000000000000000 .LVL164 +0000000000002450 l .text 0000000000000000 .LVL166 +0000000000002452 l .text 0000000000000000 .LVL167 +0000000000002462 l .text 0000000000000000 .LVL168 +00000000000024be l .text 0000000000000000 .LVL179 +0000000000002516 l .text 0000000000000000 .LVL186 +00000000000023d0 l .text 0000000000000000 .LVL146 +0000000000002466 l .text 0000000000000000 .LVL169 +00000000000023cc l .text 0000000000000000 .LVL145 +000000000000241c l .text 0000000000000000 .LVL158 +0000000000002438 l .text 0000000000000000 .LVL161 +000000000000243c l .text 0000000000000000 .LVL162 +0000000000002422 l .text 0000000000000000 .LVL159 +0000000000002436 l .text 0000000000000000 .LVL160 +0000000000002440 l .text 0000000000000000 .LVL163 +00000000000024fe l .text 0000000000000000 .LVL185 +000000000000251a l .text 0000000000000000 .LVL188 +00000000000024b0 l .text 0000000000000000 .LVL175 +00000000000024d0 l .text 0000000000000000 .LVL182 +00000000000024da l .text 0000000000000000 .LVL183 +000000000000253c l .text 0000000000000000 .LVL195 +0000000000002548 l .text 0000000000000000 .LVL197 +0000000000001f76 l .text 0000000000000000 .LVL7 +0000000000001f7c l .text 0000000000000000 .LVL8 +0000000000001fa0 l .text 0000000000000000 .LVL12 +0000000000001fa4 l .text 0000000000000000 .LVL13 +0000000000001f90 l .text 0000000000000000 .LVL9 +0000000000001fa6 l .text 0000000000000000 .LVL14 +0000000000001f96 l .text 0000000000000000 .LVL11 +0000000000001f94 l .text 0000000000000000 .LVL10 +0000000000001f50 l .text 0000000000000000 .LVL0 +0000000000001f56 l .text 0000000000000000 .LVL1 +0000000000001f74 l .text 0000000000000000 .LVL6 +0000000000001f70 l .text 0000000000000000 .LVL4 +0000000000001f72 l .text 0000000000000000 .LVL5 +000000000000200c l .text 0000000000000000 .LVL26 +0000000000002028 l .text 0000000000000000 .LVL27 +000000000000207a l .text 0000000000000000 .LVL38 +0000000000002082 l .text 0000000000000000 .LVL40 +0000000000002076 l .text 0000000000000000 .LVL36 +0000000000002078 l .text 0000000000000000 .LVL37 +0000000000002052 l .text 0000000000000000 .LVL33 +000000000000206e l .text 0000000000000000 .LVL35 +000000000000207e l .text 0000000000000000 .LVL39 +0000000000002034 l .text 0000000000000000 .LVL29 +0000000000002084 l .text 0000000000000000 .LVL41 +0000000000002048 l .text 0000000000000000 .LVL31 +00000000000020ec l .text 0000000000000000 .LVL54 +000000000000210e l .text 0000000000000000 .LVL55 +000000000000214c l .text 0000000000000000 .LVL61 +000000000000212a l .text 0000000000000000 .LVL58 +0000000000002152 l .text 0000000000000000 .LVL62 +0000000000002096 l .text 0000000000000000 .LVL43 +00000000000020ac l .text 0000000000000000 .LVL45 +00000000000020ca l .text 0000000000000000 .LVL49 +00000000000020a2 l .text 0000000000000000 .LVL44 +00000000000020c0 l .text 0000000000000000 .LVL48 +00000000000020ce l .text 0000000000000000 .LVL50 +00000000000020e0 l .text 0000000000000000 .LVL52 +0000000000002158 l .text 0000000000000000 .LVL64 +000000000000216c l .text 0000000000000000 .LVL67 +000000000000215a l .text 0000000000000000 .LVL65 +000000000000216a l .text 0000000000000000 .LVL66 +000000000000255c l .text 0000000000000000 .LVL202 +0000000000002586 l .text 0000000000000000 .LVL204 +000000000000258e l .text 0000000000000000 .LVL205 +000000000000259c l .text 0000000000000000 .LVL206 +00000000000025a4 l .text 0000000000000000 .LVL208 +00000000000025c0 l .text 0000000000000000 .LVL209 +00000000000025ce l .text 0000000000000000 .LVL211 +00000000000025d6 l .text 0000000000000000 .LVL212 +0000000000002580 l .text 0000000000000000 .LVL203 +000000000000259e l .text 0000000000000000 .LVL207 +00000000000025c2 l .text 0000000000000000 .LVL210 +0000000000001f84 l .text 0000000000000000 .LBB3 +0000000000001f88 l .text 0000000000000000 .LBE3 +0000000000001f90 l .text 0000000000000000 .LBB4 +0000000000001fa4 l .text 0000000000000000 .LBE4 +0000000000001fd4 l .text 0000000000000000 .LBE11 +0000000000001fd6 l .text 0000000000000000 .LBB16 +0000000000001ff4 l .text 0000000000000000 .LBE16 +0000000000001ffa l .text 0000000000000000 .LBB17 +0000000000002002 l .text 0000000000000000 .LBE17 +0000000000002006 l .text 0000000000000000 .LBB18 +000000000000200c l .text 0000000000000000 .LBE18 +0000000000002230 l .text 0000000000000000 .LBB42 +0000000000002234 l .text 0000000000000000 .LBE42 +0000000000002236 l .text 0000000000000000 .LBB48 +0000000000002262 l .text 0000000000000000 .LBE48 +0000000000002282 l .text 0000000000000000 .LBB49 +00000000000022b8 l .text 0000000000000000 .LBE49 +00000000000022bc l .text 0000000000000000 .LBB50 +00000000000022c8 l .text 0000000000000000 .LBE50 +00000000000023fe l .text 0000000000000000 .LBB80 +0000000000002402 l .text 0000000000000000 .LBE80 +0000000000002558 l .text 0000000000000000 .LBB82 +000000000000255c l .text 0000000000000000 .LBE82 +00000000000022b8 l .text 0000000000000000 .LBE44 +00000000000022c4 l .text 0000000000000000 .LBB47 +00000000000022c8 l .text 0000000000000000 .LBE47 +0000000000002310 l .text 0000000000000000 .LBE51 +0000000000002310 l .text 0000000000000000 .LBB60 +0000000000002398 l .text 0000000000000000 .LBE60 +000000000000230a l .text 0000000000000000 .LBB53 +0000000000002310 l .text 0000000000000000 .LBE53 +0000000000002310 l .text 0000000000000000 .LBB58 +0000000000002398 l .text 0000000000000000 .LBE58 +000000000000230e l .text 0000000000000000 .LBE54 +0000000000002310 l .text 0000000000000000 .LBB57 +000000000000232e l .text 0000000000000000 .LBE57 +00000000000023fe l .text 0000000000000000 .LBE61 +0000000000002412 l .text 0000000000000000 .LBB81 +000000000000254e l .text 0000000000000000 .LBE81 +00000000000023a6 l .text 0000000000000000 .LBB63 +00000000000023aa l .text 0000000000000000 .LBE63 +00000000000023cc l .text 0000000000000000 .LBB73 +00000000000023d0 l .text 0000000000000000 .LBE73 +00000000000023d4 l .text 0000000000000000 .LBB74 +00000000000023d8 l .text 0000000000000000 .LBE74 +0000000000002416 l .text 0000000000000000 .LBB75 +0000000000002452 l .text 0000000000000000 .LBE75 +00000000000023ae l .text 0000000000000000 .LBB64 +00000000000023be l .text 0000000000000000 .LBE64 +0000000000002458 l .text 0000000000000000 .LBB76 +00000000000024bc l .text 0000000000000000 .LBE76 +00000000000024c8 l .text 0000000000000000 .LBB77 +000000000000252a l .text 0000000000000000 .LBE77 +000000000000252c l .text 0000000000000000 .LBB78 +000000000000254e l .text 0000000000000000 .LBE78 +00000000000023be l .text 0000000000000000 .LBE65 +00000000000024da l .text 0000000000000000 .LBB71 +00000000000024fe l .text 0000000000000000 .LBE71 +000000000000253c l .text 0000000000000000 .LBB72 +000000000000254e l .text 0000000000000000 .LBE72 +00000000000023ae l .text 0000000000000000 .LBB67 +00000000000023b6 l .text 0000000000000000 .LBE67 +000000000000253c l .text 0000000000000000 .LBB68 +000000000000254e l .text 0000000000000000 .LBE68 +00000000000026fa l .text 0000000000000000 .LBE113 +000000000000270a l .text 0000000000000000 .LBB136 +000000000000275c l .text 0000000000000000 .LBE136 +00000000000027a4 l .text 0000000000000000 .LBB143 +0000000000002806 l .text 0000000000000000 .LBE143 +0000000000002810 l .text 0000000000000000 .LBB146 +00000000000028ea l .text 0000000000000000 .LBE146 +00000000000028f4 l .text 0000000000000000 .LBB169 +000000000000291e l .text 0000000000000000 .LBE169 +0000000000002660 l .text 0000000000000000 .LBB115 +0000000000002680 l .text 0000000000000000 .LBE115 +000000000000268a l .text 0000000000000000 .LBB116 +00000000000026c8 l .text 0000000000000000 .LBE116 +00000000000026ce l .text 0000000000000000 .LBB117 +00000000000026de l .text 0000000000000000 .LBE117 +000000000000270a l .text 0000000000000000 .LBB118 +000000000000275c l .text 0000000000000000 .LBE118 +00000000000026fa l .text 0000000000000000 .LBE123 +0000000000002808 l .text 0000000000000000 .LBB145 +000000000000280c l .text 0000000000000000 .LBE145 +00000000000028ea l .text 0000000000000000 .LBB147 +00000000000028ea l .text 0000000000000000 .LBE147 +00000000000028ea l .text 0000000000000000 .LBB148 +00000000000028ee l .text 0000000000000000 .LBE148 +00000000000029e4 l .text 0000000000000000 .LBB172 +0000000000002a8c l .text 0000000000000000 .LBE172 +0000000000002bc8 l .text 0000000000000000 .LBB174 +0000000000002bdc l .text 0000000000000000 .LBE174 +00000000000026fa l .text 0000000000000000 .LBB125 +00000000000026fa l .text 0000000000000000 .LBE125 +0000000000002a34 l .text 0000000000000000 .LBB129 +0000000000002a8c l .text 0000000000000000 .LBE129 +0000000000002bc8 l .text 0000000000000000 .LBB130 +0000000000002bdc l .text 0000000000000000 .LBE130 +00000000000026fa l .text 0000000000000000 .LBB126 +00000000000026fa l .text 0000000000000000 .LBE126 +0000000000002a4c l .text 0000000000000000 .LBB127 +0000000000002a8c l .text 0000000000000000 .LBE127 +0000000000002bc8 l .text 0000000000000000 .LBB128 +0000000000002bdc l .text 0000000000000000 .LBE128 +00000000000027a4 l .text 0000000000000000 .LBE137 +0000000000002806 l .text 0000000000000000 .LBB144 +0000000000002808 l .text 0000000000000000 .LBE144 +000000000000291e l .text 0000000000000000 .LBB170 +00000000000029a6 l .text 0000000000000000 .LBE170 +00000000000029a8 l .text 0000000000000000 .LBB171 +00000000000029e4 l .text 0000000000000000 .LBE171 +0000000000002a8c l .text 0000000000000000 .LBB173 +0000000000002bc8 l .text 0000000000000000 .LBE173 +00000000000028f4 l .text 0000000000000000 .LBE149 +0000000000002d16 l .text 0000000000000000 .LBB179 +0000000000002d78 l .text 0000000000000000 .LBE179 +0000000000002dc8 l .text 0000000000000000 .LBB180 +0000000000002f22 l .text 0000000000000000 .LBE180 +0000000000002f36 l .text 0000000000000000 .LBB181 +0000000000002f6a l .text 0000000000000000 .LBE181 +0000000000002fd0 l .text 0000000000000000 .LBB188 +0000000000002fea l .text 0000000000000000 .LBE188 +00000000000028f0 l .text 0000000000000000 .LBB151 +00000000000028f4 l .text 0000000000000000 .LBE151 +0000000000002dd0 l .text 0000000000000000 .LBB162 +0000000000002f14 l .text 0000000000000000 .LBE162 +0000000000002fd0 l .text 0000000000000000 .LBB164 +0000000000002fd6 l .text 0000000000000000 .LBE164 +00000000000028f4 l .text 0000000000000000 .LBE152 +0000000000002ddc l .text 0000000000000000 .LBB156 +0000000000002e1c l .text 0000000000000000 .LBE156 +0000000000002fd0 l .text 0000000000000000 .LBB161 +0000000000002fd0 l .text 0000000000000000 .LBE161 +0000000000002e74 l .text 0000000000000000 .LBB158 +0000000000002e76 l .text 0000000000000000 .LBE158 +0000000000002e80 l .text 0000000000000000 .LBB159 +0000000000002e92 l .text 0000000000000000 .LBE159 +0000000000002bf2 l .text 0000000000000000 .LBB175 +0000000000002bfc l .text 0000000000000000 .LBE175 +0000000000002bfe l .text 0000000000000000 .LBB178 +0000000000002c72 l .text 0000000000000000 .LBE178 +0000000000002bf2 l .text 0000000000000000 .LBB176 +0000000000002bfa l .text 0000000000000000 .LBE176 +0000000000002c2e l .text 0000000000000000 .LBB177 +0000000000002c6c l .text 0000000000000000 .LBE177 +0000000000002fa2 l .text 0000000000000000 .LBE184 +0000000000002fbe l .text 0000000000000000 .LBB187 +0000000000002fd0 l .text 0000000000000000 .LBE187 +0000000000003092 l .text 0000000000000000 .LBB189 +00000000000030bc l .text 0000000000000000 .LBE189 +00000000000030d4 l .text 0000000000000000 .LBB191 +00000000000030da l .text 0000000000000000 .LBE191 +0000000000001f50 l .text 0000000000000000 .L0 +0000000000001f76 l .text 0000000000000000 .L0 +0000000000001fa8 l .text 0000000000000000 .L0 +000000000000200c l .text 0000000000000000 .L0 +0000000000002096 l .text 0000000000000000 .L0 +00000000000020ec l .text 0000000000000000 .L0 +0000000000002156 l .text 0000000000000000 .L0 +000000000000216e l .text 0000000000000000 .L0 +000000000000255c l .text 0000000000000000 .L0 +00000000000025d8 l .text 0000000000000000 .L0 +0000000000002fea l .text 0000000000000000 .L0 +00000000000030da l .text 0000000000000000 .L0 +0000000000001f50 l .text 0000000000000000 .L0 +0000000000001f50 l .text 0000000000000000 .L0 +0000000000001f50 l .text 0000000000000000 .L0 +0000000000001f50 l .text 0000000000000000 .L0 +0000000000001f52 l .text 0000000000000000 .L0 +0000000000001f56 l .text 0000000000000000 .L0 +0000000000001f56 l .text 0000000000000000 .L0 +0000000000001f5a l .text 0000000000000000 .L0 +0000000000001f5e l .text 0000000000000000 .L0 +0000000000001f60 l .text 0000000000000000 .L0 +0000000000001f60 l .text 0000000000000000 .L0 +0000000000001f64 l .text 0000000000000000 .L0 +0000000000001f66 l .text 0000000000000000 .L0 +0000000000001f66 l .text 0000000000000000 .L0 +0000000000001f68 l .text 0000000000000000 .L0 +0000000000001f6a l .text 0000000000000000 .L0 +0000000000001f6a l .text 0000000000000000 .L0 +0000000000001f6c l .text 0000000000000000 .L0 +0000000000001f6c l .text 0000000000000000 .L0 +0000000000001f6e l .text 0000000000000000 .L0 +0000000000001f72 l .text 0000000000000000 .L0 +0000000000001f74 l .text 0000000000000000 .L0 +0000000000001f76 l .text 0000000000000000 .L0 +0000000000001f76 l .text 0000000000000000 .L0 +0000000000001f76 l .text 0000000000000000 .L0 +0000000000001f76 l .text 0000000000000000 .L0 +0000000000001f76 l .text 0000000000000000 .L0 +0000000000001f76 l .text 0000000000000000 .L0 +0000000000001f78 l .text 0000000000000000 .L0 +0000000000001f7c l .text 0000000000000000 .L0 +0000000000001f80 l .text 0000000000000000 .L0 +0000000000001f82 l .text 0000000000000000 .L0 +0000000000001f84 l .text 0000000000000000 .L0 +0000000000001f84 l .text 0000000000000000 .L0 +0000000000001f88 l .text 0000000000000000 .L0 +0000000000001f8c l .text 0000000000000000 .L0 +0000000000001f90 l .text 0000000000000000 .L0 +0000000000001f90 l .text 0000000000000000 .L0 +0000000000001f90 l .text 0000000000000000 .L0 +0000000000001f90 l .text 0000000000000000 .L0 +0000000000001f94 l .text 0000000000000000 .L0 +0000000000001f94 l .text 0000000000000000 .L0 +0000000000001f96 l .text 0000000000000000 .L0 +0000000000001f9a l .text 0000000000000000 .L0 +0000000000001f9a l .text 0000000000000000 .L0 +0000000000001f9e l .text 0000000000000000 .L0 +0000000000001fa0 l .text 0000000000000000 .L0 +0000000000001fa4 l .text 0000000000000000 .L0 +0000000000001fa8 l .text 0000000000000000 .L0 +0000000000001fa8 l .text 0000000000000000 .L0 +0000000000001fa8 l .text 0000000000000000 .L0 +0000000000001fa8 l .text 0000000000000000 .L0 +0000000000001fa8 l .text 0000000000000000 .L0 +0000000000001fac l .text 0000000000000000 .L0 +0000000000001fae l .text 0000000000000000 .L0 +0000000000001fbc l .text 0000000000000000 .L0 +0000000000001fc2 l .text 0000000000000000 .L0 +0000000000001fc2 l .text 0000000000000000 .L0 +0000000000001fca l .text 0000000000000000 .L0 +0000000000001fca l .text 0000000000000000 .L0 +0000000000001fca l .text 0000000000000000 .L0 +0000000000001fce l .text 0000000000000000 .L0 +0000000000001fce l .text 0000000000000000 .L0 +0000000000001fd4 l .text 0000000000000000 .L0 +0000000000001fd6 l .text 0000000000000000 .L0 +0000000000001fda l .text 0000000000000000 .L0 +0000000000001fde l .text 0000000000000000 .L0 +0000000000001fde l .text 0000000000000000 .L0 +0000000000001fe6 l .text 0000000000000000 .L0 +0000000000001ff4 l .text 0000000000000000 .L0 +0000000000001ffa l .text 0000000000000000 .L0 +0000000000001ffa l .text 0000000000000000 .L0 +0000000000001ffe l .text 0000000000000000 .L0 +0000000000002002 l .text 0000000000000000 .L0 +0000000000002002 l .text 0000000000000000 .L0 +0000000000002002 l .text 0000000000000000 .L0 +0000000000002006 l .text 0000000000000000 .L0 +0000000000002006 l .text 0000000000000000 .L0 +000000000000200a l .text 0000000000000000 .L0 +000000000000200c l .text 0000000000000000 .L0 +000000000000200c l .text 0000000000000000 .L0 +000000000000200c l .text 0000000000000000 .L0 +000000000000200c l .text 0000000000000000 .L0 +000000000000200c l .text 0000000000000000 .L0 +000000000000200c l .text 0000000000000000 .L0 +000000000000201c l .text 0000000000000000 .L0 +0000000000002024 l .text 0000000000000000 .L0 +0000000000002026 l .text 0000000000000000 .L0 +0000000000002026 l .text 0000000000000000 .L0 +0000000000002030 l .text 0000000000000000 .L0 +0000000000002034 l .text 0000000000000000 .L0 +0000000000002034 l .text 0000000000000000 .L0 +000000000000203e l .text 0000000000000000 .L0 +000000000000203e l .text 0000000000000000 .L0 +0000000000002042 l .text 0000000000000000 .L0 +0000000000002052 l .text 0000000000000000 .L0 +0000000000002052 l .text 0000000000000000 .L0 +0000000000002054 l .text 0000000000000000 .L0 +000000000000206c l .text 0000000000000000 .L0 +000000000000206e l .text 0000000000000000 .L0 +0000000000002082 l .text 0000000000000000 .L0 +0000000000002082 l .text 0000000000000000 .L0 +0000000000002088 l .text 0000000000000000 .L0 +0000000000002094 l .text 0000000000000000 .L0 +0000000000002094 l .text 0000000000000000 .L0 +0000000000002096 l .text 0000000000000000 .L0 +0000000000002096 l .text 0000000000000000 .L0 +0000000000002096 l .text 0000000000000000 .L0 +00000000000020a0 l .text 0000000000000000 .L0 +00000000000020a2 l .text 0000000000000000 .L0 +00000000000020a2 l .text 0000000000000000 .L0 +00000000000020a2 l .text 0000000000000000 .L0 +00000000000020a4 l .text 0000000000000000 .L0 +00000000000020aa l .text 0000000000000000 .L0 +00000000000020b4 l .text 0000000000000000 .L0 +00000000000020be l .text 0000000000000000 .L0 +00000000000020be l .text 0000000000000000 .L0 +00000000000020c0 l .text 0000000000000000 .L0 +00000000000020c0 l .text 0000000000000000 .L0 +00000000000020c6 l .text 0000000000000000 .L0 +00000000000020c8 l .text 0000000000000000 .L0 +00000000000020d2 l .text 0000000000000000 .L0 +00000000000020da l .text 0000000000000000 .L0 +00000000000020de l .text 0000000000000000 .L0 +00000000000020e2 l .text 0000000000000000 .L0 +00000000000020ea l .text 0000000000000000 .L0 +00000000000020ec l .text 0000000000000000 .L0 +00000000000020ec l .text 0000000000000000 .L0 +00000000000020ec l .text 0000000000000000 .L0 +00000000000020ec l .text 0000000000000000 .L0 +00000000000020ec l .text 0000000000000000 .L0 +00000000000020f6 l .text 0000000000000000 .L0 +0000000000002100 l .text 0000000000000000 .L0 +0000000000002102 l .text 0000000000000000 .L0 +0000000000002116 l .text 0000000000000000 .L0 +0000000000002116 l .text 0000000000000000 .L0 +0000000000002126 l .text 0000000000000000 .L0 +0000000000002128 l .text 0000000000000000 .L0 +000000000000212a l .text 0000000000000000 .L0 +000000000000213e l .text 0000000000000000 .L0 +0000000000002148 l .text 0000000000000000 .L0 +0000000000002148 l .text 0000000000000000 .L0 +0000000000002156 l .text 0000000000000000 .L0 +0000000000002156 l .text 0000000000000000 .L0 +0000000000002156 l .text 0000000000000000 .L0 +0000000000002158 l .text 0000000000000000 .L0 +0000000000002158 l .text 0000000000000000 .L0 +000000000000215a l .text 0000000000000000 .L0 +000000000000215a l .text 0000000000000000 .L0 +0000000000002160 l .text 0000000000000000 .L0 +0000000000002160 l .text 0000000000000000 .L0 +0000000000002168 l .text 0000000000000000 .L0 +0000000000002168 l .text 0000000000000000 .L0 +000000000000216a l .text 0000000000000000 .L0 +000000000000216c l .text 0000000000000000 .L0 +000000000000216e l .text 0000000000000000 .L0 +000000000000216e l .text 0000000000000000 .L0 +000000000000216e l .text 0000000000000000 .L0 +000000000000218a l .text 0000000000000000 .L0 +000000000000218c l .text 0000000000000000 .L0 +000000000000218c l .text 0000000000000000 .L0 +000000000000218c l .text 0000000000000000 .L0 +000000000000218c l .text 0000000000000000 .L0 +000000000000218c l .text 0000000000000000 .L0 +000000000000218c l .text 0000000000000000 .L0 +000000000000218c l .text 0000000000000000 .L0 +000000000000218c l .text 0000000000000000 .L0 +000000000000218c l .text 0000000000000000 .L0 +0000000000002196 l .text 0000000000000000 .L0 +000000000000219e l .text 0000000000000000 .L0 +00000000000021a2 l .text 0000000000000000 .L0 +00000000000021a6 l .text 0000000000000000 .L0 +00000000000021b4 l .text 0000000000000000 .L0 +00000000000021b6 l .text 0000000000000000 .L0 +00000000000021b6 l .text 0000000000000000 .L0 +00000000000021b6 l .text 0000000000000000 .L0 +00000000000021be l .text 0000000000000000 .L0 +00000000000021be l .text 0000000000000000 .L0 +00000000000021c6 l .text 0000000000000000 .L0 +00000000000021c6 l .text 0000000000000000 .L0 +00000000000021c8 l .text 0000000000000000 .L0 +00000000000021cc l .text 0000000000000000 .L0 +00000000000021cc l .text 0000000000000000 .L0 +00000000000021d4 l .text 0000000000000000 .L0 +00000000000021e0 l .text 0000000000000000 .L0 +00000000000021e0 l .text 0000000000000000 .L0 +00000000000021e4 l .text 0000000000000000 .L0 +00000000000021e4 l .text 0000000000000000 .L0 +00000000000021e4 l .text 0000000000000000 .L0 +00000000000021e8 l .text 0000000000000000 .L0 +00000000000021e8 l .text 0000000000000000 .L0 +00000000000021ea l .text 0000000000000000 .L0 +00000000000021ee l .text 0000000000000000 .L0 +00000000000021ee l .text 0000000000000000 .L0 +00000000000021f8 l .text 0000000000000000 .L0 +00000000000021f8 l .text 0000000000000000 .L0 +0000000000002200 l .text 0000000000000000 .L0 +0000000000002200 l .text 0000000000000000 .L0 +0000000000002204 l .text 0000000000000000 .L0 +0000000000002204 l .text 0000000000000000 .L0 +0000000000002208 l .text 0000000000000000 .L0 +0000000000002208 l .text 0000000000000000 .L0 +000000000000220a l .text 0000000000000000 .L0 +0000000000002212 l .text 0000000000000000 .L0 +0000000000002214 l .text 0000000000000000 .L0 +0000000000002214 l .text 0000000000000000 .L0 +0000000000002214 l .text 0000000000000000 .L0 +0000000000002218 l .text 0000000000000000 .L0 +000000000000222e l .text 0000000000000000 .L0 +0000000000002230 l .text 0000000000000000 .L0 +0000000000002234 l .text 0000000000000000 .L0 +0000000000002234 l .text 0000000000000000 .L0 +0000000000002236 l .text 0000000000000000 .L0 +0000000000002236 l .text 0000000000000000 .L0 +0000000000002242 l .text 0000000000000000 .L0 +0000000000002242 l .text 0000000000000000 .L0 +0000000000002244 l .text 0000000000000000 .L0 +000000000000224a l .text 0000000000000000 .L0 +000000000000224a l .text 0000000000000000 .L0 +000000000000224a l .text 0000000000000000 .L0 +000000000000224e l .text 0000000000000000 .L0 +000000000000224e l .text 0000000000000000 .L0 +0000000000002252 l .text 0000000000000000 .L0 +0000000000002260 l .text 0000000000000000 .L0 +0000000000002262 l .text 0000000000000000 .L0 +0000000000002282 l .text 0000000000000000 .L0 +0000000000002282 l .text 0000000000000000 .L0 +000000000000228a l .text 0000000000000000 .L0 +000000000000228a l .text 0000000000000000 .L0 +0000000000002292 l .text 0000000000000000 .L0 +0000000000002292 l .text 0000000000000000 .L0 +000000000000229a l .text 0000000000000000 .L0 +000000000000229e l .text 0000000000000000 .L0 +000000000000229e l .text 0000000000000000 .L0 +000000000000229e l .text 0000000000000000 .L0 +00000000000022a2 l .text 0000000000000000 .L0 +00000000000022a4 l .text 0000000000000000 .L0 +00000000000022a4 l .text 0000000000000000 .L0 +00000000000022a8 l .text 0000000000000000 .L0 +00000000000022aa l .text 0000000000000000 .L0 +00000000000022ae l .text 0000000000000000 .L0 +00000000000022ae l .text 0000000000000000 .L0 +00000000000022b2 l .text 0000000000000000 .L0 +00000000000022b2 l .text 0000000000000000 .L0 +00000000000022b4 l .text 0000000000000000 .L0 +00000000000022b4 l .text 0000000000000000 .L0 +00000000000022b8 l .text 0000000000000000 .L0 +00000000000022bc l .text 0000000000000000 .L0 +00000000000022c0 l .text 0000000000000000 .L0 +00000000000022c4 l .text 0000000000000000 .L0 +00000000000022c8 l .text 0000000000000000 .L0 +00000000000022c8 l .text 0000000000000000 .L0 +00000000000022d8 l .text 0000000000000000 .L0 +00000000000022dc l .text 0000000000000000 .L0 +00000000000022de l .text 0000000000000000 .L0 +00000000000022e2 l .text 0000000000000000 .L0 +00000000000022e4 l .text 0000000000000000 .L0 +00000000000022e4 l .text 0000000000000000 .L0 +00000000000022e6 l .text 0000000000000000 .L0 +00000000000022e8 l .text 0000000000000000 .L0 +00000000000022ec l .text 0000000000000000 .L0 +00000000000022f0 l .text 0000000000000000 .L0 +00000000000022f0 l .text 0000000000000000 .L0 +00000000000022f4 l .text 0000000000000000 .L0 +00000000000022f4 l .text 0000000000000000 .L0 +00000000000022f8 l .text 0000000000000000 .L0 +00000000000022fa l .text 0000000000000000 .L0 +00000000000022fa l .text 0000000000000000 .L0 +00000000000022fa l .text 0000000000000000 .L0 +00000000000022fa l .text 0000000000000000 .L0 +0000000000002308 l .text 0000000000000000 .L0 +0000000000002308 l .text 0000000000000000 .L0 +000000000000230a l .text 0000000000000000 .L0 +000000000000230a l .text 0000000000000000 .L0 +000000000000230a l .text 0000000000000000 .L0 +000000000000230a l .text 0000000000000000 .L0 +000000000000230e l .text 0000000000000000 .L0 +0000000000002310 l .text 0000000000000000 .L0 +0000000000002310 l .text 0000000000000000 .L0 +0000000000002310 l .text 0000000000000000 .L0 +0000000000002310 l .text 0000000000000000 .L0 +0000000000002310 l .text 0000000000000000 .L0 +0000000000002314 l .text 0000000000000000 .L0 +0000000000002314 l .text 0000000000000000 .L0 +0000000000002320 l .text 0000000000000000 .L0 +0000000000002320 l .text 0000000000000000 .L0 +0000000000002328 l .text 0000000000000000 .L0 +0000000000002328 l .text 0000000000000000 .L0 +000000000000232a l .text 0000000000000000 .L0 +000000000000232e l .text 0000000000000000 .L0 +000000000000232e l .text 0000000000000000 .L0 +0000000000002340 l .text 0000000000000000 .L0 +0000000000002344 l .text 0000000000000000 .L0 +0000000000002348 l .text 0000000000000000 .L0 +000000000000234a l .text 0000000000000000 .L0 +000000000000234a l .text 0000000000000000 .L0 +000000000000234a l .text 0000000000000000 .L0 +000000000000234c l .text 0000000000000000 .L0 +000000000000234c l .text 0000000000000000 .L0 +000000000000235a l .text 0000000000000000 .L0 +000000000000235c l .text 0000000000000000 .L0 +000000000000235c l .text 0000000000000000 .L0 +000000000000236e l .text 0000000000000000 .L0 +0000000000002372 l .text 0000000000000000 .L0 +0000000000002374 l .text 0000000000000000 .L0 +0000000000002374 l .text 0000000000000000 .L0 +0000000000002380 l .text 0000000000000000 .L0 +0000000000002382 l .text 0000000000000000 .L0 +0000000000002384 l .text 0000000000000000 .L0 +000000000000238e l .text 0000000000000000 .L0 +000000000000238e l .text 0000000000000000 .L0 +000000000000238e l .text 0000000000000000 .L0 +000000000000238e l .text 0000000000000000 .L0 +0000000000002390 l .text 0000000000000000 .L0 +0000000000002394 l .text 0000000000000000 .L0 +0000000000002394 l .text 0000000000000000 .L0 +0000000000002398 l .text 0000000000000000 .L0 +0000000000002398 l .text 0000000000000000 .L0 +000000000000239c l .text 0000000000000000 .L0 +000000000000239e l .text 0000000000000000 .L0 +00000000000023a6 l .text 0000000000000000 .L0 +00000000000023aa l .text 0000000000000000 .L0 +00000000000023ae l .text 0000000000000000 .L0 +00000000000023b6 l .text 0000000000000000 .L0 +00000000000023be l .text 0000000000000000 .L0 +00000000000023be l .text 0000000000000000 .L0 +00000000000023be l .text 0000000000000000 .L0 +00000000000023be l .text 0000000000000000 .L0 +00000000000023be l .text 0000000000000000 .L0 +00000000000023cc l .text 0000000000000000 .L0 +00000000000023cc l .text 0000000000000000 .L0 +00000000000023cc l .text 0000000000000000 .L0 +00000000000023d0 l .text 0000000000000000 .L0 +00000000000023d0 l .text 0000000000000000 .L0 +00000000000023d4 l .text 0000000000000000 .L0 +00000000000023d8 l .text 0000000000000000 .L0 +00000000000023dc l .text 0000000000000000 .L0 +00000000000023de l .text 0000000000000000 .L0 +00000000000023de l .text 0000000000000000 .L0 +00000000000023e2 l .text 0000000000000000 .L0 +00000000000023e2 l .text 0000000000000000 .L0 +00000000000023f2 l .text 0000000000000000 .L0 +00000000000023f2 l .text 0000000000000000 .L0 +00000000000023f2 l .text 0000000000000000 .L0 +00000000000023f4 l .text 0000000000000000 .L0 +00000000000023fc l .text 0000000000000000 .L0 +00000000000023fc l .text 0000000000000000 .L0 +0000000000002402 l .text 0000000000000000 .L0 +0000000000002406 l .text 0000000000000000 .L0 +0000000000002408 l .text 0000000000000000 .L0 +000000000000240a l .text 0000000000000000 .L0 +000000000000240c l .text 0000000000000000 .L0 +0000000000002416 l .text 0000000000000000 .L0 +0000000000002416 l .text 0000000000000000 .L0 +000000000000241a l .text 0000000000000000 .L0 +000000000000241c l .text 0000000000000000 .L0 +000000000000241c l .text 0000000000000000 .L0 +000000000000241c l .text 0000000000000000 .L0 +000000000000241c l .text 0000000000000000 .L0 +000000000000241c l .text 0000000000000000 .L0 +0000000000002422 l .text 0000000000000000 .L0 +000000000000242a l .text 0000000000000000 .L0 +000000000000242e l .text 0000000000000000 .L0 +0000000000002432 l .text 0000000000000000 .L0 +0000000000002436 l .text 0000000000000000 .L0 +0000000000002436 l .text 0000000000000000 .L0 +0000000000002436 l .text 0000000000000000 .L0 +0000000000002438 l .text 0000000000000000 .L0 +000000000000243c l .text 0000000000000000 .L0 +000000000000243c l .text 0000000000000000 .L0 +000000000000243e l .text 0000000000000000 .L0 +000000000000243e l .text 0000000000000000 .L0 +000000000000244c l .text 0000000000000000 .L0 +0000000000002452 l .text 0000000000000000 .L0 +0000000000002452 l .text 0000000000000000 .L0 +0000000000002454 l .text 0000000000000000 .L0 +0000000000002454 l .text 0000000000000000 .L0 +0000000000002458 l .text 0000000000000000 .L0 +0000000000002458 l .text 0000000000000000 .L0 +0000000000002458 l .text 0000000000000000 .L0 +0000000000002458 l .text 0000000000000000 .L0 +000000000000245c l .text 0000000000000000 .L0 +0000000000002462 l .text 0000000000000000 .L0 +0000000000002466 l .text 0000000000000000 .L0 +0000000000002468 l .text 0000000000000000 .L0 +0000000000002468 l .text 0000000000000000 .L0 +0000000000002470 l .text 0000000000000000 .L0 +0000000000002476 l .text 0000000000000000 .L0 +0000000000002478 l .text 0000000000000000 .L0 +0000000000002478 l .text 0000000000000000 .L0 +0000000000002478 l .text 0000000000000000 .L0 +0000000000002480 l .text 0000000000000000 .L0 +0000000000002480 l .text 0000000000000000 .L0 +0000000000002484 l .text 0000000000000000 .L0 +0000000000002484 l .text 0000000000000000 .L0 +0000000000002492 l .text 0000000000000000 .L0 +0000000000002492 l .text 0000000000000000 .L0 +0000000000002494 l .text 0000000000000000 .L0 +00000000000024b2 l .text 0000000000000000 .L0 +00000000000024b2 l .text 0000000000000000 .L0 +00000000000024bc l .text 0000000000000000 .L0 +00000000000024c6 l .text 0000000000000000 .L0 +00000000000024c6 l .text 0000000000000000 .L0 +00000000000024c8 l .text 0000000000000000 .L0 +00000000000024c8 l .text 0000000000000000 .L0 +00000000000024cc l .text 0000000000000000 .L0 +00000000000024cc l .text 0000000000000000 .L0 +00000000000024d0 l .text 0000000000000000 .L0 +00000000000024d0 l .text 0000000000000000 .L0 +00000000000024d4 l .text 0000000000000000 .L0 +00000000000024d4 l .text 0000000000000000 .L0 +00000000000024da l .text 0000000000000000 .L0 +00000000000024da l .text 0000000000000000 .L0 +00000000000024da l .text 0000000000000000 .L0 +00000000000024ec l .text 0000000000000000 .L0 +00000000000024ee l .text 0000000000000000 .L0 +00000000000024ee l .text 0000000000000000 .L0 +00000000000024f2 l .text 0000000000000000 .L0 +00000000000024f4 l .text 0000000000000000 .L0 +00000000000024f6 l .text 0000000000000000 .L0 +00000000000024fe l .text 0000000000000000 .L0 +00000000000024fe l .text 0000000000000000 .L0 +0000000000002506 l .text 0000000000000000 .L0 +000000000000251a l .text 0000000000000000 .L0 +000000000000251a l .text 0000000000000000 .L0 +000000000000252a l .text 0000000000000000 .L0 +000000000000252c l .text 0000000000000000 .L0 +000000000000252c l .text 0000000000000000 .L0 +0000000000002536 l .text 0000000000000000 .L0 +000000000000253c l .text 0000000000000000 .L0 +000000000000253c l .text 0000000000000000 .L0 +000000000000253c l .text 0000000000000000 .L0 +0000000000002548 l .text 0000000000000000 .L0 +0000000000002548 l .text 0000000000000000 .L0 +000000000000254a l .text 0000000000000000 .L0 +000000000000254e l .text 0000000000000000 .L0 +0000000000002552 l .text 0000000000000000 .L0 +0000000000002552 l .text 0000000000000000 .L0 +0000000000002552 l .text 0000000000000000 .L0 +0000000000002556 l .text 0000000000000000 .L0 +0000000000002558 l .text 0000000000000000 .L0 +000000000000255c l .text 0000000000000000 .L0 +000000000000255c l .text 0000000000000000 .L0 +000000000000255c l .text 0000000000000000 .L0 +000000000000255c l .text 0000000000000000 .L0 +0000000000002560 l .text 0000000000000000 .L0 +0000000000002562 l .text 0000000000000000 .L0 +0000000000002570 l .text 0000000000000000 .L0 +0000000000002574 l .text 0000000000000000 .L0 +0000000000002574 l .text 0000000000000000 .L0 +0000000000002578 l .text 0000000000000000 .L0 +0000000000002578 l .text 0000000000000000 .L0 +000000000000257c l .text 0000000000000000 .L0 +0000000000002580 l .text 0000000000000000 .L0 +0000000000002586 l .text 0000000000000000 .L0 +000000000000258a l .text 0000000000000000 .L0 +000000000000258a l .text 0000000000000000 .L0 +000000000000258e l .text 0000000000000000 .L0 +000000000000258e l .text 0000000000000000 .L0 +0000000000002594 l .text 0000000000000000 .L0 +0000000000002594 l .text 0000000000000000 .L0 +0000000000002598 l .text 0000000000000000 .L0 +0000000000002598 l .text 0000000000000000 .L0 +00000000000025a4 l .text 0000000000000000 .L0 +00000000000025a4 l .text 0000000000000000 .L0 +00000000000025a8 l .text 0000000000000000 .L0 +00000000000025ae l .text 0000000000000000 .L0 +00000000000025b4 l .text 0000000000000000 .L0 +00000000000025b4 l .text 0000000000000000 .L0 +00000000000025b8 l .text 0000000000000000 .L0 +00000000000025b8 l .text 0000000000000000 .L0 +00000000000025c0 l .text 0000000000000000 .L0 +00000000000025cc l .text 0000000000000000 .L0 +00000000000025ce l .text 0000000000000000 .L0 +00000000000025ce l .text 0000000000000000 .L0 +00000000000025d2 l .text 0000000000000000 .L0 +00000000000025d2 l .text 0000000000000000 .L0 +00000000000025d6 l .text 0000000000000000 .L0 +00000000000025d8 l .text 0000000000000000 .L0 +00000000000025d8 l .text 0000000000000000 .L0 +00000000000025d8 l .text 0000000000000000 .L0 +00000000000025d8 l .text 0000000000000000 .L0 +00000000000025d8 l .text 0000000000000000 .L0 +00000000000025d8 l .text 0000000000000000 .L0 +00000000000025d8 l .text 0000000000000000 .L0 +00000000000025d8 l .text 0000000000000000 .L0 +00000000000025d8 l .text 0000000000000000 .L0 +00000000000025d8 l .text 0000000000000000 .L0 +00000000000025d8 l .text 0000000000000000 .L0 +00000000000025d8 l .text 0000000000000000 .L0 +00000000000025d8 l .text 0000000000000000 .L0 +00000000000025e2 l .text 0000000000000000 .L0 +00000000000025ea l .text 0000000000000000 .L0 +00000000000025fc l .text 0000000000000000 .L0 +0000000000002604 l .text 0000000000000000 .L0 +0000000000002614 l .text 0000000000000000 .L0 +0000000000002614 l .text 0000000000000000 .L0 +0000000000002614 l .text 0000000000000000 .L0 +0000000000002616 l .text 0000000000000000 .L0 +000000000000261a l .text 0000000000000000 .L0 +0000000000002622 l .text 0000000000000000 .L0 +0000000000002626 l .text 0000000000000000 .L0 +0000000000002626 l .text 0000000000000000 .L0 +0000000000002626 l .text 0000000000000000 .L0 +0000000000002626 l .text 0000000000000000 .L0 +0000000000002628 l .text 0000000000000000 .L0 +0000000000002628 l .text 0000000000000000 .L0 +0000000000002630 l .text 0000000000000000 .L0 +0000000000002630 l .text 0000000000000000 .L0 +0000000000002630 l .text 0000000000000000 .L0 +0000000000002630 l .text 0000000000000000 .L0 +0000000000002630 l .text 0000000000000000 .L0 +0000000000002630 l .text 0000000000000000 .L0 +0000000000002630 l .text 0000000000000000 .L0 +0000000000002630 l .text 0000000000000000 .L0 +0000000000002630 l .text 0000000000000000 .L0 +0000000000002630 l .text 0000000000000000 .L0 +0000000000002634 l .text 0000000000000000 .L0 +000000000000263e l .text 0000000000000000 .L0 +000000000000263e l .text 0000000000000000 .L0 +0000000000002648 l .text 0000000000000000 .L0 +0000000000002648 l .text 0000000000000000 .L0 +0000000000002648 l .text 0000000000000000 .L0 +000000000000264a l .text 0000000000000000 .L0 +000000000000265c l .text 0000000000000000 .L0 +0000000000002660 l .text 0000000000000000 .L0 +0000000000002660 l .text 0000000000000000 .L0 +0000000000002660 l .text 0000000000000000 .L0 +0000000000002674 l .text 0000000000000000 .L0 +0000000000002674 l .text 0000000000000000 .L0 +0000000000002676 l .text 0000000000000000 .L0 +000000000000267c l .text 0000000000000000 .L0 +0000000000002680 l .text 0000000000000000 .L0 +000000000000268a l .text 0000000000000000 .L0 +000000000000268a l .text 0000000000000000 .L0 +000000000000268e l .text 0000000000000000 .L0 +0000000000002690 l .text 0000000000000000 .L0 +0000000000002698 l .text 0000000000000000 .L0 +000000000000269e l .text 0000000000000000 .L0 +00000000000026a2 l .text 0000000000000000 .L0 +00000000000026b0 l .text 0000000000000000 .L0 +00000000000026b8 l .text 0000000000000000 .L0 +00000000000026c0 l .text 0000000000000000 .L0 +00000000000026c4 l .text 0000000000000000 .L0 +00000000000026c8 l .text 0000000000000000 .L0 +00000000000026ce l .text 0000000000000000 .L0 +00000000000026ce l .text 0000000000000000 .L0 +00000000000026d2 l .text 0000000000000000 .L0 +00000000000026de l .text 0000000000000000 .L0 +00000000000026e2 l .text 0000000000000000 .L0 +00000000000026e2 l .text 0000000000000000 .L0 +00000000000026e2 l .text 0000000000000000 .L0 +00000000000026e2 l .text 0000000000000000 .L0 +00000000000026e6 l .text 0000000000000000 .L0 +00000000000026ea l .text 0000000000000000 .L0 +00000000000026ea l .text 0000000000000000 .L0 +00000000000026ea l .text 0000000000000000 .L0 +00000000000026ee l .text 0000000000000000 .L0 +00000000000026fa l .text 0000000000000000 .L0 +00000000000026fa l .text 0000000000000000 .L0 +00000000000026fa l .text 0000000000000000 .L0 +00000000000026fa l .text 0000000000000000 .L0 +00000000000026fa l .text 0000000000000000 .L0 +00000000000026fa l .text 0000000000000000 .L0 +0000000000002708 l .text 0000000000000000 .L0 +000000000000270a l .text 0000000000000000 .L0 +000000000000270a l .text 0000000000000000 .L0 +000000000000270c l .text 0000000000000000 .L0 +000000000000270e l .text 0000000000000000 .L0 +0000000000002716 l .text 0000000000000000 .L0 +000000000000271e l .text 0000000000000000 .L0 +0000000000002724 l .text 0000000000000000 .L0 +0000000000002724 l .text 0000000000000000 .L0 +0000000000002726 l .text 0000000000000000 .L0 +000000000000272a l .text 0000000000000000 .L0 +0000000000002730 l .text 0000000000000000 .L0 +000000000000273a l .text 0000000000000000 .L0 +000000000000273e l .text 0000000000000000 .L0 +0000000000002750 l .text 0000000000000000 .L0 +0000000000002752 l .text 0000000000000000 .L0 +0000000000002752 l .text 0000000000000000 .L0 +0000000000002752 l .text 0000000000000000 .L0 +0000000000002752 l .text 0000000000000000 .L0 +0000000000002752 l .text 0000000000000000 .L0 +0000000000002752 l .text 0000000000000000 .L0 +0000000000002756 l .text 0000000000000000 .L0 +0000000000002756 l .text 0000000000000000 .L0 +000000000000275c l .text 0000000000000000 .L0 +000000000000275c l .text 0000000000000000 .L0 +000000000000276e l .text 0000000000000000 .L0 +0000000000002772 l .text 0000000000000000 .L0 +0000000000002772 l .text 0000000000000000 .L0 +0000000000002786 l .text 0000000000000000 .L0 +0000000000002786 l .text 0000000000000000 .L0 +0000000000002788 l .text 0000000000000000 .L0 +0000000000002790 l .text 0000000000000000 .L0 +000000000000279a l .text 0000000000000000 .L0 +00000000000027a4 l .text 0000000000000000 .L0 +00000000000027a4 l .text 0000000000000000 .L0 +00000000000027b6 l .text 0000000000000000 .L0 +00000000000027b8 l .text 0000000000000000 .L0 +00000000000027b8 l .text 0000000000000000 .L0 +00000000000027ca l .text 0000000000000000 .L0 +00000000000027ce l .text 0000000000000000 .L0 +00000000000027d0 l .text 0000000000000000 .L0 +00000000000027d2 l .text 0000000000000000 .L0 +00000000000027d2 l .text 0000000000000000 .L0 +00000000000027de l .text 0000000000000000 .L0 +00000000000027e0 l .text 0000000000000000 .L0 +00000000000027e6 l .text 0000000000000000 .L0 +00000000000027f0 l .text 0000000000000000 .L0 +00000000000027fa l .text 0000000000000000 .L0 +00000000000027fa l .text 0000000000000000 .L0 +0000000000002806 l .text 0000000000000000 .L0 +0000000000002806 l .text 0000000000000000 .L0 +0000000000002806 l .text 0000000000000000 .L0 +0000000000002806 l .text 0000000000000000 .L0 +0000000000002806 l .text 0000000000000000 .L0 +0000000000002806 l .text 0000000000000000 .L0 +0000000000002806 l .text 0000000000000000 .L0 +0000000000002808 l .text 0000000000000000 .L0 +0000000000002808 l .text 0000000000000000 .L0 +0000000000002808 l .text 0000000000000000 .L0 +0000000000002808 l .text 0000000000000000 .L0 +000000000000280c l .text 0000000000000000 .L0 +000000000000280c l .text 0000000000000000 .L0 +0000000000002810 l .text 0000000000000000 .L0 +0000000000002810 l .text 0000000000000000 .L0 +0000000000002824 l .text 0000000000000000 .L0 +0000000000002826 l .text 0000000000000000 .L0 +0000000000002826 l .text 0000000000000000 .L0 +0000000000002838 l .text 0000000000000000 .L0 +0000000000002838 l .text 0000000000000000 .L0 +000000000000283a l .text 0000000000000000 .L0 +0000000000002846 l .text 0000000000000000 .L0 +0000000000002846 l .text 0000000000000000 .L0 +000000000000284a l .text 0000000000000000 .L0 +000000000000284c l .text 0000000000000000 .L0 +000000000000285c l .text 0000000000000000 .L0 +0000000000002862 l .text 0000000000000000 .L0 +000000000000286e l .text 0000000000000000 .L0 +000000000000286e l .text 0000000000000000 .L0 +0000000000002870 l .text 0000000000000000 .L0 +0000000000002884 l .text 0000000000000000 .L0 +0000000000002884 l .text 0000000000000000 .L0 +0000000000002888 l .text 0000000000000000 .L0 +0000000000002888 l .text 0000000000000000 .L0 +000000000000289a l .text 0000000000000000 .L0 +000000000000289a l .text 0000000000000000 .L0 +000000000000289e l .text 0000000000000000 .L0 +00000000000028c6 l .text 0000000000000000 .L0 +00000000000028c6 l .text 0000000000000000 .L0 +00000000000028cc l .text 0000000000000000 .L0 +00000000000028cc l .text 0000000000000000 .L0 +00000000000028d0 l .text 0000000000000000 .L0 +00000000000028dc l .text 0000000000000000 .L0 +00000000000028de l .text 0000000000000000 .L0 +00000000000028e6 l .text 0000000000000000 .L0 +00000000000028e6 l .text 0000000000000000 .L0 +00000000000028ea l .text 0000000000000000 .L0 +00000000000028ea l .text 0000000000000000 .L0 +00000000000028ea l .text 0000000000000000 .L0 +00000000000028ea l .text 0000000000000000 .L0 +00000000000028ea l .text 0000000000000000 .L0 +00000000000028ea l .text 0000000000000000 .L0 +00000000000028ea l .text 0000000000000000 .L0 +00000000000028ee l .text 0000000000000000 .L0 +00000000000028ee l .text 0000000000000000 .L0 +00000000000028ee l .text 0000000000000000 .L0 +00000000000028f0 l .text 0000000000000000 .L0 +00000000000028f4 l .text 0000000000000000 .L0 +00000000000028f4 l .text 0000000000000000 .L0 +0000000000002902 l .text 0000000000000000 .L0 +0000000000002902 l .text 0000000000000000 .L0 +0000000000002906 l .text 0000000000000000 .L0 +0000000000002908 l .text 0000000000000000 .L0 +0000000000002914 l .text 0000000000000000 .L0 +0000000000002916 l .text 0000000000000000 .L0 +000000000000291e l .text 0000000000000000 .L0 +000000000000291e l .text 0000000000000000 .L0 +000000000000292e l .text 0000000000000000 .L0 +0000000000002930 l .text 0000000000000000 .L0 +0000000000002932 l .text 0000000000000000 .L0 +0000000000002932 l .text 0000000000000000 .L0 +0000000000002932 l .text 0000000000000000 .L0 +0000000000002946 l .text 0000000000000000 .L0 +0000000000002946 l .text 0000000000000000 .L0 +000000000000294a l .text 0000000000000000 .L0 +000000000000294e l .text 0000000000000000 .L0 +0000000000002950 l .text 0000000000000000 .L0 +0000000000002954 l .text 0000000000000000 .L0 +0000000000002954 l .text 0000000000000000 .L0 +0000000000002958 l .text 0000000000000000 .L0 +000000000000295a l .text 0000000000000000 .L0 +0000000000002962 l .text 0000000000000000 .L0 +0000000000002968 l .text 0000000000000000 .L0 +0000000000002972 l .text 0000000000000000 .L0 +000000000000297c l .text 0000000000000000 .L0 +000000000000297c l .text 0000000000000000 .L0 +0000000000002980 l .text 0000000000000000 .L0 +0000000000002992 l .text 0000000000000000 .L0 +0000000000002996 l .text 0000000000000000 .L0 +0000000000002996 l .text 0000000000000000 .L0 +0000000000002996 l .text 0000000000000000 .L0 +0000000000002996 l .text 0000000000000000 .L0 +0000000000002996 l .text 0000000000000000 .L0 +0000000000002996 l .text 0000000000000000 .L0 +0000000000002996 l .text 0000000000000000 .L0 +00000000000029a6 l .text 0000000000000000 .L0 +00000000000029a6 l .text 0000000000000000 .L0 +00000000000029a8 l .text 0000000000000000 .L0 +00000000000029a8 l .text 0000000000000000 .L0 +00000000000029aa l .text 0000000000000000 .L0 +00000000000029ac l .text 0000000000000000 .L0 +00000000000029b4 l .text 0000000000000000 .L0 +00000000000029b4 l .text 0000000000000000 .L0 +00000000000029bc l .text 0000000000000000 .L0 +00000000000029bc l .text 0000000000000000 .L0 +00000000000029bc l .text 0000000000000000 .L0 +00000000000029bc l .text 0000000000000000 .L0 +00000000000029bc l .text 0000000000000000 .L0 +00000000000029c2 l .text 0000000000000000 .L0 +00000000000029e4 l .text 0000000000000000 .L0 +00000000000029e4 l .text 0000000000000000 .L0 +00000000000029e4 l .text 0000000000000000 .L0 +00000000000029e4 l .text 0000000000000000 .L0 +00000000000029e8 l .text 0000000000000000 .L0 +00000000000029e8 l .text 0000000000000000 .L0 +00000000000029ec l .text 0000000000000000 .L0 +00000000000029ec l .text 0000000000000000 .L0 +00000000000029fe l .text 0000000000000000 .L0 +0000000000002a02 l .text 0000000000000000 .L0 +0000000000002a02 l .text 0000000000000000 .L0 +0000000000002a08 l .text 0000000000000000 .L0 +0000000000002a08 l .text 0000000000000000 .L0 +0000000000002a1c l .text 0000000000000000 .L0 +0000000000002a1c l .text 0000000000000000 .L0 +0000000000002a20 l .text 0000000000000000 .L0 +0000000000002a30 l .text 0000000000000000 .L0 +0000000000002a34 l .text 0000000000000000 .L0 +0000000000002a34 l .text 0000000000000000 .L0 +0000000000002a48 l .text 0000000000000000 .L0 +0000000000002a48 l .text 0000000000000000 .L0 +0000000000002a4c l .text 0000000000000000 .L0 +0000000000002a4c l .text 0000000000000000 .L0 +0000000000002a4c l .text 0000000000000000 .L0 +0000000000002a58 l .text 0000000000000000 .L0 +0000000000002a5c l .text 0000000000000000 .L0 +0000000000002a5c l .text 0000000000000000 .L0 +0000000000002a66 l .text 0000000000000000 .L0 +0000000000002a68 l .text 0000000000000000 .L0 +0000000000002a6c l .text 0000000000000000 .L0 +0000000000002a74 l .text 0000000000000000 .L0 +0000000000002a8c l .text 0000000000000000 .L0 +0000000000002a8c l .text 0000000000000000 .L0 +0000000000002a9e l .text 0000000000000000 .L0 +0000000000002aa0 l .text 0000000000000000 .L0 +0000000000002aa0 l .text 0000000000000000 .L0 +0000000000002ab2 l .text 0000000000000000 .L0 +0000000000002ab6 l .text 0000000000000000 .L0 +0000000000002ab8 l .text 0000000000000000 .L0 +0000000000002aba l .text 0000000000000000 .L0 +0000000000002aba l .text 0000000000000000 .L0 +0000000000002ac4 l .text 0000000000000000 .L0 +0000000000002acc l .text 0000000000000000 .L0 +0000000000002ad8 l .text 0000000000000000 .L0 +0000000000002ad8 l .text 0000000000000000 .L0 +0000000000002ae6 l .text 0000000000000000 .L0 +0000000000002ae6 l .text 0000000000000000 .L0 +0000000000002af8 l .text 0000000000000000 .L0 +0000000000002afa l .text 0000000000000000 .L0 +0000000000002afa l .text 0000000000000000 .L0 +0000000000002b0c l .text 0000000000000000 .L0 +0000000000002b10 l .text 0000000000000000 .L0 +0000000000002b12 l .text 0000000000000000 .L0 +0000000000002b14 l .text 0000000000000000 .L0 +0000000000002b14 l .text 0000000000000000 .L0 +0000000000002b1e l .text 0000000000000000 .L0 +0000000000002b26 l .text 0000000000000000 .L0 +0000000000002b32 l .text 0000000000000000 .L0 +0000000000002b32 l .text 0000000000000000 .L0 +0000000000002b3c l .text 0000000000000000 .L0 +0000000000002b3c l .text 0000000000000000 .L0 +0000000000002b50 l .text 0000000000000000 .L0 +0000000000002b52 l .text 0000000000000000 .L0 +0000000000002b52 l .text 0000000000000000 .L0 +0000000000002b64 l .text 0000000000000000 .L0 +0000000000002b64 l .text 0000000000000000 .L0 +0000000000002b66 l .text 0000000000000000 .L0 +0000000000002b72 l .text 0000000000000000 .L0 +0000000000002b72 l .text 0000000000000000 .L0 +0000000000002b76 l .text 0000000000000000 .L0 +0000000000002b78 l .text 0000000000000000 .L0 +0000000000002b80 l .text 0000000000000000 .L0 +0000000000002b86 l .text 0000000000000000 .L0 +0000000000002b92 l .text 0000000000000000 .L0 +0000000000002b92 l .text 0000000000000000 .L0 +0000000000002b94 l .text 0000000000000000 .L0 +0000000000002ba8 l .text 0000000000000000 .L0 +0000000000002ba8 l .text 0000000000000000 .L0 +0000000000002bb0 l .text 0000000000000000 .L0 +0000000000002bb0 l .text 0000000000000000 .L0 +0000000000002bb4 l .text 0000000000000000 .L0 +0000000000002bb6 l .text 0000000000000000 .L0 +0000000000002bbc l .text 0000000000000000 .L0 +0000000000002bc2 l .text 0000000000000000 .L0 +0000000000002bc8 l .text 0000000000000000 .L0 +0000000000002bc8 l .text 0000000000000000 .L0 +0000000000002bdc l .text 0000000000000000 .L0 +0000000000002bdc l .text 0000000000000000 .L0 +0000000000002be0 l .text 0000000000000000 .L0 +0000000000002bea l .text 0000000000000000 .L0 +0000000000002bee l .text 0000000000000000 .L0 +0000000000002bee l .text 0000000000000000 .L0 +0000000000002bf0 l .text 0000000000000000 .L0 +0000000000002bf0 l .text 0000000000000000 .L0 +0000000000002bf0 l .text 0000000000000000 .L0 +0000000000002bf2 l .text 0000000000000000 .L0 +0000000000002bfa l .text 0000000000000000 .L0 +0000000000002bfc l .text 0000000000000000 .L0 +0000000000002bfe l .text 0000000000000000 .L0 +0000000000002bfe l .text 0000000000000000 .L0 +0000000000002c08 l .text 0000000000000000 .L0 +0000000000002c0a l .text 0000000000000000 .L0 +0000000000002c0a l .text 0000000000000000 .L0 +0000000000002c12 l .text 0000000000000000 .L0 +0000000000002c1e l .text 0000000000000000 .L0 +0000000000002c1e l .text 0000000000000000 .L0 +0000000000002c20 l .text 0000000000000000 .L0 +0000000000002c24 l .text 0000000000000000 .L0 +0000000000002c24 l .text 0000000000000000 .L0 +0000000000002c2e l .text 0000000000000000 .L0 +0000000000002c2e l .text 0000000000000000 .L0 +0000000000002c32 l .text 0000000000000000 .L0 +0000000000002c32 l .text 0000000000000000 .L0 +0000000000002c36 l .text 0000000000000000 .L0 +0000000000002c38 l .text 0000000000000000 .L0 +0000000000002c42 l .text 0000000000000000 .L0 +0000000000002c46 l .text 0000000000000000 .L0 +0000000000002c48 l .text 0000000000000000 .L0 +0000000000002c48 l .text 0000000000000000 .L0 +0000000000002c48 l .text 0000000000000000 .L0 +0000000000002c4c l .text 0000000000000000 .L0 +0000000000002c4c l .text 0000000000000000 .L0 +0000000000002c4e l .text 0000000000000000 .L0 +0000000000002c4e l .text 0000000000000000 .L0 +0000000000002c50 l .text 0000000000000000 .L0 +0000000000002c54 l .text 0000000000000000 .L0 +0000000000002c54 l .text 0000000000000000 .L0 +0000000000002c54 l .text 0000000000000000 .L0 +0000000000002c56 l .text 0000000000000000 .L0 +0000000000002c5a l .text 0000000000000000 .L0 +0000000000002c5c l .text 0000000000000000 .L0 +0000000000002c66 l .text 0000000000000000 .L0 +0000000000002c68 l .text 0000000000000000 .L0 +0000000000002c68 l .text 0000000000000000 .L0 +0000000000002c6c l .text 0000000000000000 .L0 +0000000000002c72 l .text 0000000000000000 .L0 +0000000000002c72 l .text 0000000000000000 .L0 +0000000000002c74 l .text 0000000000000000 .L0 +0000000000002c74 l .text 0000000000000000 .L0 +0000000000002c78 l .text 0000000000000000 .L0 +0000000000002c7c l .text 0000000000000000 .L0 +0000000000002c84 l .text 0000000000000000 .L0 +0000000000002c98 l .text 0000000000000000 .L0 +0000000000002c9a l .text 0000000000000000 .L0 +0000000000002c9a l .text 0000000000000000 .L0 +0000000000002ca0 l .text 0000000000000000 .L0 +0000000000002ca0 l .text 0000000000000000 .L0 +0000000000002ca2 l .text 0000000000000000 .L0 +0000000000002ca2 l .text 0000000000000000 .L0 +0000000000002ca8 l .text 0000000000000000 .L0 +0000000000002ca8 l .text 0000000000000000 .L0 +0000000000002cac l .text 0000000000000000 .L0 +0000000000002cb8 l .text 0000000000000000 .L0 +0000000000002cca l .text 0000000000000000 .L0 +0000000000002ccc l .text 0000000000000000 .L0 +0000000000002ccc l .text 0000000000000000 .L0 +0000000000002cce l .text 0000000000000000 .L0 +0000000000002cd0 l .text 0000000000000000 .L0 +0000000000002cd4 l .text 0000000000000000 .L0 +0000000000002cd4 l .text 0000000000000000 .L0 +0000000000002cd6 l .text 0000000000000000 .L0 +0000000000002cda l .text 0000000000000000 .L0 +0000000000002cda l .text 0000000000000000 .L0 +0000000000002cda l .text 0000000000000000 .L0 +0000000000002cde l .text 0000000000000000 .L0 +0000000000002ce4 l .text 0000000000000000 .L0 +0000000000002ce6 l .text 0000000000000000 .L0 +0000000000002cf0 l .text 0000000000000000 .L0 +0000000000002cf0 l .text 0000000000000000 .L0 +0000000000002cf4 l .text 0000000000000000 .L0 +0000000000002cf4 l .text 0000000000000000 .L0 +0000000000002d00 l .text 0000000000000000 .L0 +0000000000002d00 l .text 0000000000000000 .L0 +0000000000002d06 l .text 0000000000000000 .L0 +0000000000002d16 l .text 0000000000000000 .L0 +0000000000002d16 l .text 0000000000000000 .L0 +0000000000002d16 l .text 0000000000000000 .L0 +0000000000002d16 l .text 0000000000000000 .L0 +0000000000002d16 l .text 0000000000000000 .L0 +0000000000002d28 l .text 0000000000000000 .L0 +0000000000002d28 l .text 0000000000000000 .L0 +0000000000002d2c l .text 0000000000000000 .L0 +0000000000002d30 l .text 0000000000000000 .L0 +0000000000002d30 l .text 0000000000000000 .L0 +0000000000002d34 l .text 0000000000000000 .L0 +0000000000002d36 l .text 0000000000000000 .L0 +0000000000002d38 l .text 0000000000000000 .L0 +0000000000002d38 l .text 0000000000000000 .L0 +0000000000002d4a l .text 0000000000000000 .L0 +0000000000002d4a l .text 0000000000000000 .L0 +0000000000002d4e l .text 0000000000000000 .L0 +0000000000002d74 l .text 0000000000000000 .L0 +0000000000002d74 l .text 0000000000000000 .L0 +0000000000002d74 l .text 0000000000000000 .L0 +0000000000002d78 l .text 0000000000000000 .L0 +0000000000002d78 l .text 0000000000000000 .L0 +0000000000002d7e l .text 0000000000000000 .L0 +0000000000002d80 l .text 0000000000000000 .L0 +0000000000002d84 l .text 0000000000000000 .L0 +0000000000002d84 l .text 0000000000000000 .L0 +0000000000002d96 l .text 0000000000000000 .L0 +0000000000002d98 l .text 0000000000000000 .L0 +0000000000002d98 l .text 0000000000000000 .L0 +0000000000002d9a l .text 0000000000000000 .L0 +0000000000002d9c l .text 0000000000000000 .L0 +0000000000002da0 l .text 0000000000000000 .L0 +0000000000002da0 l .text 0000000000000000 .L0 +0000000000002da2 l .text 0000000000000000 .L0 +0000000000002da6 l .text 0000000000000000 .L0 +0000000000002da6 l .text 0000000000000000 .L0 +0000000000002da6 l .text 0000000000000000 .L0 +0000000000002daa l .text 0000000000000000 .L0 +0000000000002db0 l .text 0000000000000000 .L0 +0000000000002db2 l .text 0000000000000000 .L0 +0000000000002dbc l .text 0000000000000000 .L0 +0000000000002dbc l .text 0000000000000000 .L0 +0000000000002dc0 l .text 0000000000000000 .L0 +0000000000002dc2 l .text 0000000000000000 .L0 +0000000000002dc4 l .text 0000000000000000 .L0 +0000000000002dc8 l .text 0000000000000000 .L0 +0000000000002dc8 l .text 0000000000000000 .L0 +0000000000002dd0 l .text 0000000000000000 .L0 +0000000000002dd0 l .text 0000000000000000 .L0 +0000000000002dd0 l .text 0000000000000000 .L0 +0000000000002dd0 l .text 0000000000000000 .L0 +0000000000002dd0 l .text 0000000000000000 .L0 +0000000000002dd0 l .text 0000000000000000 .L0 +0000000000002dd0 l .text 0000000000000000 .L0 +0000000000002dd8 l .text 0000000000000000 .L0 +0000000000002dd8 l .text 0000000000000000 .L0 +0000000000002ddc l .text 0000000000000000 .L0 +0000000000002ddc l .text 0000000000000000 .L0 +0000000000002ddc l .text 0000000000000000 .L0 +0000000000002dea l .text 0000000000000000 .L0 +0000000000002dea l .text 0000000000000000 .L0 +0000000000002dea l .text 0000000000000000 .L0 +0000000000002dee l .text 0000000000000000 .L0 +0000000000002dee l .text 0000000000000000 .L0 +0000000000002df0 l .text 0000000000000000 .L0 +0000000000002df0 l .text 0000000000000000 .L0 +0000000000002df4 l .text 0000000000000000 .L0 +0000000000002df4 l .text 0000000000000000 .L0 +0000000000002df8 l .text 0000000000000000 .L0 +0000000000002df8 l .text 0000000000000000 .L0 +0000000000002e00 l .text 0000000000000000 .L0 +0000000000002e02 l .text 0000000000000000 .L0 +0000000000002e02 l .text 0000000000000000 .L0 +0000000000002e06 l .text 0000000000000000 .L0 +0000000000002e08 l .text 0000000000000000 .L0 +0000000000002e0a l .text 0000000000000000 .L0 +0000000000002e12 l .text 0000000000000000 .L0 +0000000000002e16 l .text 0000000000000000 .L0 +0000000000002e16 l .text 0000000000000000 .L0 +0000000000002e16 l .text 0000000000000000 .L0 +0000000000002e1c l .text 0000000000000000 .L0 +0000000000002e1c l .text 0000000000000000 .L0 +0000000000002e1c l .text 0000000000000000 .L0 +0000000000002e1c l .text 0000000000000000 .L0 +0000000000002e22 l .text 0000000000000000 .L0 +0000000000002e2c l .text 0000000000000000 .L0 +0000000000002e2c l .text 0000000000000000 .L0 +0000000000002e38 l .text 0000000000000000 .L0 +0000000000002e38 l .text 0000000000000000 .L0 +0000000000002e3a l .text 0000000000000000 .L0 +0000000000002e60 l .text 0000000000000000 .L0 +0000000000002e60 l .text 0000000000000000 .L0 +0000000000002e6a l .text 0000000000000000 .L0 +0000000000002e6c l .text 0000000000000000 .L0 +0000000000002e6c l .text 0000000000000000 .L0 +0000000000002e70 l .text 0000000000000000 .L0 +0000000000002e72 l .text 0000000000000000 .L0 +0000000000002e72 l .text 0000000000000000 .L0 +0000000000002e74 l .text 0000000000000000 .L0 +0000000000002e76 l .text 0000000000000000 .L0 +0000000000002e7c l .text 0000000000000000 .L0 +0000000000002e7c l .text 0000000000000000 .L0 +0000000000002e80 l .text 0000000000000000 .L0 +0000000000002e80 l .text 0000000000000000 .L0 +0000000000002e88 l .text 0000000000000000 .L0 +0000000000002e92 l .text 0000000000000000 .L0 +0000000000002e92 l .text 0000000000000000 .L0 +0000000000002e9a l .text 0000000000000000 .L0 +0000000000002e9e l .text 0000000000000000 .L0 +0000000000002e9e l .text 0000000000000000 .L0 +0000000000002ea0 l .text 0000000000000000 .L0 +0000000000002eaa l .text 0000000000000000 .L0 +0000000000002eb6 l .text 0000000000000000 .L0 +0000000000002ec2 l .text 0000000000000000 .L0 +0000000000002ec2 l .text 0000000000000000 .L0 +0000000000002eda l .text 0000000000000000 .L0 +0000000000002eda l .text 0000000000000000 .L0 +0000000000002edc l .text 0000000000000000 .L0 +0000000000002ef6 l .text 0000000000000000 .L0 +0000000000002f00 l .text 0000000000000000 .L0 +0000000000002f14 l .text 0000000000000000 .L0 +0000000000002f14 l .text 0000000000000000 .L0 +0000000000002f16 l .text 0000000000000000 .L0 +0000000000002f22 l .text 0000000000000000 .L0 +0000000000002f22 l .text 0000000000000000 .L0 +0000000000002f26 l .text 0000000000000000 .L0 +0000000000002f30 l .text 0000000000000000 .L0 +0000000000002f30 l .text 0000000000000000 .L0 +0000000000002f36 l .text 0000000000000000 .L0 +0000000000002f36 l .text 0000000000000000 .L0 +0000000000002f36 l .text 0000000000000000 .L0 +0000000000002f3c l .text 0000000000000000 .L0 +0000000000002f46 l .text 0000000000000000 .L0 +0000000000002f46 l .text 0000000000000000 .L0 +0000000000002f54 l .text 0000000000000000 .L0 +0000000000002f58 l .text 0000000000000000 .L0 +0000000000002f5a l .text 0000000000000000 .L0 +0000000000002f5a l .text 0000000000000000 .L0 +0000000000002f5c l .text 0000000000000000 .L0 +0000000000002f64 l .text 0000000000000000 .L0 +0000000000002f64 l .text 0000000000000000 .L0 +0000000000002f6a l .text 0000000000000000 .L0 +0000000000002f6a l .text 0000000000000000 .L0 +0000000000002f6c l .text 0000000000000000 .L0 +0000000000002f6c l .text 0000000000000000 .L0 +0000000000002f78 l .text 0000000000000000 .L0 +0000000000002f78 l .text 0000000000000000 .L0 +0000000000002f7c l .text 0000000000000000 .L0 +0000000000002f86 l .text 0000000000000000 .L0 +0000000000002f86 l .text 0000000000000000 .L0 +0000000000002f8a l .text 0000000000000000 .L0 +0000000000002f8a l .text 0000000000000000 .L0 +0000000000002f8e l .text 0000000000000000 .L0 +0000000000002f8e l .text 0000000000000000 .L0 +0000000000002f94 l .text 0000000000000000 .L0 +0000000000002f94 l .text 0000000000000000 .L0 +0000000000002f9a l .text 0000000000000000 .L0 +0000000000002f9a l .text 0000000000000000 .L0 +0000000000002fa2 l .text 0000000000000000 .L0 +0000000000002fbe l .text 0000000000000000 .L0 +0000000000002fc0 l .text 0000000000000000 .L0 +0000000000002fc2 l .text 0000000000000000 .L0 +0000000000002fca l .text 0000000000000000 .L0 +0000000000002fca l .text 0000000000000000 .L0 +0000000000002fce l .text 0000000000000000 .L0 +0000000000002fd0 l .text 0000000000000000 .L0 +0000000000002fd0 l .text 0000000000000000 .L0 +0000000000002fd0 l .text 0000000000000000 .L0 +0000000000002fd6 l .text 0000000000000000 .L0 +0000000000002fd6 l .text 0000000000000000 .L0 +0000000000002fd6 l .text 0000000000000000 .L0 +0000000000002fde l .text 0000000000000000 .L0 +0000000000002fea l .text 0000000000000000 .L0 +0000000000002fea l .text 0000000000000000 .L0 +0000000000002fea l .text 0000000000000000 .L0 +0000000000002fea l .text 0000000000000000 .L0 +0000000000002fea l .text 0000000000000000 .L0 +0000000000002fea l .text 0000000000000000 .L0 +0000000000002fea l .text 0000000000000000 .L0 +0000000000002fea l .text 0000000000000000 .L0 +0000000000002fea l .text 0000000000000000 .L0 +0000000000002fee l .text 0000000000000000 .L0 +0000000000002ff0 l .text 0000000000000000 .L0 +0000000000003002 l .text 0000000000000000 .L0 +0000000000003004 l .text 0000000000000000 .L0 +0000000000003008 l .text 0000000000000000 .L0 +000000000000300c l .text 0000000000000000 .L0 +000000000000300c l .text 0000000000000000 .L0 +000000000000300e l .text 0000000000000000 .L0 +0000000000003010 l .text 0000000000000000 .L0 +0000000000003018 l .text 0000000000000000 .L0 +0000000000003020 l .text 0000000000000000 .L0 +0000000000003024 l .text 0000000000000000 .L0 +0000000000003024 l .text 0000000000000000 .L0 +0000000000003028 l .text 0000000000000000 .L0 +000000000000302c l .text 0000000000000000 .L0 +000000000000302c l .text 0000000000000000 .L0 +0000000000003038 l .text 0000000000000000 .L0 +0000000000003038 l .text 0000000000000000 .L0 +000000000000303a l .text 0000000000000000 .L0 +000000000000303a l .text 0000000000000000 .L0 +000000000000303e l .text 0000000000000000 .L0 +000000000000304a l .text 0000000000000000 .L0 +000000000000304a l .text 0000000000000000 .L0 +000000000000305a l .text 0000000000000000 .L0 +000000000000305e l .text 0000000000000000 .L0 +0000000000003064 l .text 0000000000000000 .L0 +000000000000306c l .text 0000000000000000 .L0 +000000000000306c l .text 0000000000000000 .L0 +0000000000003070 l .text 0000000000000000 .L0 +0000000000003074 l .text 0000000000000000 .L0 +0000000000003074 l .text 0000000000000000 .L0 +0000000000003078 l .text 0000000000000000 .L0 +0000000000003078 l .text 0000000000000000 .L0 +0000000000003084 l .text 0000000000000000 .L0 +0000000000003084 l .text 0000000000000000 .L0 +0000000000003086 l .text 0000000000000000 .L0 +0000000000003088 l .text 0000000000000000 .L0 +0000000000003088 l .text 0000000000000000 .L0 +000000000000308e l .text 0000000000000000 .L0 +0000000000003092 l .text 0000000000000000 .L0 +0000000000003092 l .text 0000000000000000 .L0 +000000000000309e l .text 0000000000000000 .L0 +000000000000309e l .text 0000000000000000 .L0 +00000000000030a0 l .text 0000000000000000 .L0 +00000000000030a0 l .text 0000000000000000 .L0 +00000000000030a0 l .text 0000000000000000 .L0 +00000000000030a4 l .text 0000000000000000 .L0 +00000000000030a8 l .text 0000000000000000 .L0 +00000000000030a8 l .text 0000000000000000 .L0 +00000000000030ac l .text 0000000000000000 .L0 +00000000000030ba l .text 0000000000000000 .L0 +00000000000030ba l .text 0000000000000000 .L0 +00000000000030bc l .text 0000000000000000 .L0 +00000000000030d4 l .text 0000000000000000 .L0 +00000000000030d4 l .text 0000000000000000 .L0 +00000000000030da l .text 0000000000000000 .L0 +00000000000030da l .text 0000000000000000 .L0 +00000000000030da l .text 0000000000000000 .L0 +00000000000030da l .text 0000000000000000 .L0 +00000000000030da l .text 0000000000000000 .L0 +00000000000030da l .text 0000000000000000 .L0 +00000000000030de l .text 0000000000000000 .L0 +00000000000030e0 l .text 0000000000000000 .L0 +00000000000030ec l .text 0000000000000000 .L0 +00000000000030f2 l .text 0000000000000000 .L0 +00000000000030f2 l .text 0000000000000000 .L0 +00000000000030fa l .text 0000000000000000 .L0 +00000000000030fa l .text 0000000000000000 .L0 +0000000000003104 l .text 0000000000000000 .L0 +0000000000003104 l .text 0000000000000000 .L0 +0000000000003108 l .text 0000000000000000 .L0 +00000000000011d8 l .debug_frame 0000000000000000 .L0 +0000000000001f50 l .text 0000000000000000 .L0 +0000000000001f76 l .text 0000000000000000 .L0 +0000000000001f76 l .text 0000000000000000 .L0 +0000000000001fa8 l .text 0000000000000000 .L0 +0000000000001fa8 l .text 0000000000000000 .L0 +000000000000200c l .text 0000000000000000 .L0 +000000000000200c l .text 0000000000000000 .L0 +0000000000002096 l .text 0000000000000000 .L0 +0000000000002096 l .text 0000000000000000 .L0 +00000000000020ec l .text 0000000000000000 .L0 +00000000000020ec l .text 0000000000000000 .L0 +0000000000002156 l .text 0000000000000000 .L0 +0000000000002156 l .text 0000000000000000 .L0 +000000000000216e l .text 0000000000000000 .L0 +000000000000216e l .text 0000000000000000 .L0 +000000000000255c l .text 0000000000000000 .L0 +000000000000255c l .text 0000000000000000 .L0 +00000000000025d8 l .text 0000000000000000 .L0 +00000000000025d8 l .text 0000000000000000 .L0 +0000000000002fea l .text 0000000000000000 .L0 +0000000000002fea l .text 0000000000000000 .L0 +00000000000030da l .text 0000000000000000 .L0 +00000000000030da l .text 0000000000000000 .L0 +0000000000003108 l .text 0000000000000000 .L0 +0000000000002070 l .text 0000000000000000 .L0 +000000000000201c l .text 0000000000000000 .L0 +00000000000020ca l .text 0000000000000000 .L0 +00000000000020a0 l .text 0000000000000000 .L0 +00000000000020da l .text 0000000000000000 .L0 +00000000000020d2 l .text 0000000000000000 .L0 +000000000000214a l .text 0000000000000000 .L0 +00000000000020f6 l .text 0000000000000000 .L0 +0000000000002264 l .text 0000000000000000 .L0 +000000000000218a l .text 0000000000000000 .L0 +0000000000002fa4 l .text 0000000000000000 .L0 +00000000000025fc l .text 0000000000000000 .L0 +000000000000304c l .text 0000000000000000 .L0 +0000000000003002 l .text 0000000000000000 .L0 +000000000000306c l .text 0000000000000000 .L0 +0000000000003064 l .text 0000000000000000 .L0 +00000000000030be l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 nsh_script.c +000000000000afc0 l .rodata 0000000000000000 .LC1 +0000000000003158 l .text 0000000000000000 .L0 +000000000000afc8 l .rodata 0000000000000000 .LC2 +0000000000003160 l .text 0000000000000000 .L0 +0000000000003168 l .text 0000000000000000 .L0 +000000000000afd0 l .rodata 0000000000000000 .LC3 +0000000000003170 l .text 0000000000000000 .L0 +000000000000afb8 l .rodata 0000000000000000 .LC0 +0000000000003204 l .text 0000000000000000 .L0 +000000000000320e l .text 0000000000000000 .L0 +0000000000003228 l .text 0000000000000000 .L11 +0000000000003270 l .text 0000000000000000 .L12 +00000000000031f2 l .text 0000000000000000 .L20 +00000000000031ae l .text 0000000000000000 .L6 +000000000000323a l .text 0000000000000000 .L7 +00000000000031dc l .text 0000000000000000 .L8 +000000000000322c l .text 0000000000000000 .L9 +0000000000003178 l .text 0000000000000000 .L4 +000000000000321a l .text 0000000000000000 .L5 +0000000000003254 l .text 0000000000000000 .L2 +000000000000324a l .text 0000000000000000 .L3 +000000000000473a l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000000f502 l .debug_str 0000000000000000 .LASF89 +000000000000f4da l .debug_str 0000000000000000 .LASF90 +000000000000f817 l .debug_str 0000000000000000 .LASF91 +0000000000001520 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000000accc l .debug_line 0000000000000000 .Ldebug_line0 +000000000000f6dc l .debug_str 0000000000000000 .LASF0 +000000000000f492 l .debug_str 0000000000000000 .LASF3 +000000000000f6c7 l .debug_str 0000000000000000 .LASF1 +000000000000f4f8 l .debug_str 0000000000000000 .LASF2 +000000000000f854 l .debug_str 0000000000000000 .LASF4 +000000000000f737 l .debug_str 0000000000000000 .LASF5 +000000000000f710 l .debug_str 0000000000000000 .LASF6 +000000000000f63e l .debug_str 0000000000000000 .LASF7 +000000000000f7ba l .debug_str 0000000000000000 .LASF8 +000000000000f635 l .debug_str 0000000000000000 .LASF9 +000000000000f4d2 l .debug_str 0000000000000000 .LASF10 +000000000000f6ee l .debug_str 0000000000000000 .LASF11 +000000000000f5d2 l .debug_str 0000000000000000 .LASF12 +000000000000f71d l .debug_str 0000000000000000 .LASF13 +000000000000f4b7 l .debug_str 0000000000000000 .LASF14 +000000000000f4f0 l .debug_str 0000000000000000 .LASF15 +000000000000f74a l .debug_str 0000000000000000 .LASF16 +000000000000f66c l .debug_str 0000000000000000 .LASF17 +000000000000f61e l .debug_str 0000000000000000 .LASF18 +000000000000f6a3 l .debug_str 0000000000000000 .LASF19 +000000000000f88b l .debug_str 0000000000000000 .LASF25 +000000000000f7cc l .debug_str 0000000000000000 .LASF20 +000000000000f7e8 l .debug_str 0000000000000000 .LASF21 +000000000000f806 l .debug_str 0000000000000000 .LASF22 +000000000000f5e6 l .debug_str 0000000000000000 .LASF23 +000000000000f877 l .debug_str 0000000000000000 .LASF24 +000000000000f6bc l .debug_str 0000000000000000 .LASF26 +000000000000f79b l .debug_str 0000000000000000 .LASF27 +000000000000f76f l .debug_str 0000000000000000 .LASF28 +000000000000f67a l .debug_str 0000000000000000 .LASF29 +000000000000f62c l .debug_str 0000000000000000 .LASF30 +000000000000f647 l .debug_str 0000000000000000 .LASF31 +000000000000f7ac l .debug_str 0000000000000000 .LASF92 +000000000000f726 l .debug_str 0000000000000000 .LASF32 +000000000000f60d l .debug_str 0000000000000000 .LASF33 +000000000000f4aa l .debug_str 0000000000000000 .LASF34 +000000000000f5b2 l .debug_str 0000000000000000 .LASF35 +000000000000f7d6 l .debug_str 0000000000000000 .LASF36 +000000000000f84c l .debug_str 0000000000000000 .LASF37 +000000000000f4a1 l .debug_str 0000000000000000 .LASF38 +000000000000f672 l .debug_str 0000000000000000 .LASF39 +000000000000f5e0 l .debug_str 0000000000000000 .LASF40 +000000000000f689 l .debug_str 0000000000000000 .LASF41 +000000000000f4be l .debug_str 0000000000000000 .LASF42 +000000000000f793 l .debug_str 0000000000000000 .LASF43 +000000000000f86e l .debug_str 0000000000000000 .LASF44 +000000000000f47a l .debug_str 0000000000000000 .LASF45 +000000000000f705 l .debug_str 0000000000000000 .LASF46 +000000000000f880 l .debug_str 0000000000000000 .LASF47 +000000000000f74f l .debug_str 0000000000000000 .LASF48 +000000000000f6e8 l .debug_str 0000000000000000 .LASF93 +000000000000f697 l .debug_str 0000000000000000 .LASF49 +000000000000f896 l .debug_str 0000000000000000 .LASF50 +000000000000f835 l .debug_str 0000000000000000 .LASF51 +000000000000f769 l .debug_str 0000000000000000 .LASF52 +000000000000f85e l .debug_str 0000000000000000 .LASF53 +000000000000f7e2 l .debug_str 0000000000000000 .LASF54 +000000000000f7f4 l .debug_str 0000000000000000 .LASF55 +000000000000f6b4 l .debug_str 0000000000000000 .LASF56 +000000000000f48c l .debug_str 0000000000000000 .LASF57 +000000000000f5da l .debug_str 0000000000000000 .LASF58 +000000000000f846 l .debug_str 0000000000000000 .LASF59 +000000000000f83f l .debug_str 0000000000000000 .LASF60 +000000000000f652 l .debug_str 0000000000000000 .LASF61 +000000000000f483 l .debug_str 0000000000000000 .LASF62 +000000000000f4e7 l .debug_str 0000000000000000 .LASF63 +000000000000f692 l .debug_str 0000000000000000 .LASF64 +000000000000f65d l .debug_str 0000000000000000 .LASF65 +000000000000f764 l .debug_str 0000000000000000 .LASF66 +000000000000f49b l .debug_str 0000000000000000 .LASF67 +000000000000f5c8 l .debug_str 0000000000000000 .LASF68 +000000000000f6d5 l .debug_str 0000000000000000 .LASF69 +000000000000f755 l .debug_str 0000000000000000 .LASF94 +000000000000f4c7 l .debug_str 0000000000000000 .LASF70 +000000000000f683 l .debug_str 0000000000000000 .LASF71 +000000000000f5b8 l .debug_str 0000000000000000 .LASF72 +000000000000f8a3 l .debug_str 0000000000000000 .LASF73 +000000000000f5c3 l .debug_str 0000000000000000 .LASF74 +000000000000f6af l .debug_str 0000000000000000 .LASF75 +000000000000f466 l .debug_str 0000000000000000 .LASF95 +0000000000003108 l .text 0000000000000000 .LFB5 +0000000000003274 l .text 0000000000000000 .LFE5 +000000000000f869 l .debug_str 0000000000000000 .LASF76 +000000000000a5c3 l .debug_loc 0000000000000000 .LLST0 +000000000000a622 l .debug_loc 0000000000000000 .LLST1 +000000000000f812 l .debug_str 0000000000000000 .LASF77 +000000000000a6c0 l .debug_loc 0000000000000000 .LLST2 +000000000000a6f9 l .debug_loc 0000000000000000 .LLST3 +000000000000f471 l .debug_str 0000000000000000 .LASF78 +000000000000a732 l .debug_loc 0000000000000000 .LLST4 +000000000000f7fb l .debug_str 0000000000000000 .LASF79 +000000000000a78e l .debug_loc 0000000000000000 .LLST5 +000000000000f7a5 l .debug_str 0000000000000000 .LASF80 +000000000000a7c4 l .debug_loc 0000000000000000 .LLST6 +000000000000a859 l .debug_loc 0000000000000000 .LLST7 +0000000000003130 l .text 0000000000000000 .LVL2 +000000000000313a l .text 0000000000000000 .LVL4 +0000000000003150 l .text 0000000000000000 .LVL8 +0000000000003188 l .text 0000000000000000 .LVL10 +00000000000031a2 l .text 0000000000000000 .LVL11 +00000000000031ae l .text 0000000000000000 .LVL12 +00000000000031c2 l .text 0000000000000000 .LVL13 +00000000000031dc l .text 0000000000000000 .LVL15 +00000000000031f0 l .text 0000000000000000 .LVL17 +0000000000003202 l .text 0000000000000000 .LVL20 +000000000000321a l .text 0000000000000000 .LVL21 +0000000000003224 l .text 0000000000000000 .LVL22 +0000000000003234 l .text 0000000000000000 .LVL26 +0000000000003246 l .text 0000000000000000 .LVL28 +0000000000003254 l .text 0000000000000000 .LVL30 +000000000000f783 l .debug_str 0000000000000000 .LASF81 +000000000000f83a l .debug_str 0000000000000000 .LASF82 +000000000000f666 l .debug_str 0000000000000000 .LASF83 +000000000000f89b l .debug_str 0000000000000000 .LASF84 +000000000000f601 l .debug_str 0000000000000000 .LASF85 +000000000000f779 l .debug_str 0000000000000000 .LASF86 +000000000000f5f0 l .debug_str 0000000000000000 .LASF87 +000000000000f460 l .debug_str 0000000000000000 .LASF88 +0000000000003108 l .text 0000000000000000 .LVL0 +0000000000003258 l .text 0000000000000000 .LVL31 +0000000000003270 l .text 0000000000000000 .LVL32 +0000000000003110 l .text 0000000000000000 .LVL1 +0000000000003178 l .text 0000000000000000 .LVL9 +00000000000031f2 l .text 0000000000000000 .LVL18 +000000000000322a l .text 0000000000000000 .LVL24 +0000000000003272 l .text 0000000000000000 .LVL33 +0000000000003138 l .text 0000000000000000 .LVL3 +0000000000003228 l .text 0000000000000000 .LVL23 +000000000000322c l .text 0000000000000000 .LVL25 +0000000000003148 l .text 0000000000000000 .LVL7 +000000000000324a l .text 0000000000000000 .LVL29 +000000000000313c l .text 0000000000000000 .LVL5 +0000000000003144 l .text 0000000000000000 .LVL6 +00000000000031e8 l .text 0000000000000000 .LVL16 +00000000000031fa l .text 0000000000000000 .LVL19 +00000000000031c6 l .text 0000000000000000 .LVL14 +0000000000003236 l .text 0000000000000000 .LVL27 +00000000000107e7 l .debug_info 0000000000000000 .Ldebug_info0 +0000000000003108 l .text 0000000000000000 .L0 +0000000000003108 l .text 0000000000000000 .L0 +0000000000003108 l .text 0000000000000000 .L0 +0000000000003108 l .text 0000000000000000 .L0 +0000000000003108 l .text 0000000000000000 .L0 +0000000000003108 l .text 0000000000000000 .L0 +0000000000003108 l .text 0000000000000000 .L0 +000000000000310e l .text 0000000000000000 .L0 +0000000000003110 l .text 0000000000000000 .L0 +0000000000003124 l .text 0000000000000000 .L0 +0000000000003128 l .text 0000000000000000 .L0 +0000000000003130 l .text 0000000000000000 .L0 +0000000000003130 l .text 0000000000000000 .L0 +0000000000003132 l .text 0000000000000000 .L0 +0000000000003136 l .text 0000000000000000 .L0 +0000000000003136 l .text 0000000000000000 .L0 +000000000000313c l .text 0000000000000000 .L0 +000000000000313c l .text 0000000000000000 .L0 +0000000000003140 l .text 0000000000000000 .L0 +0000000000003140 l .text 0000000000000000 .L0 +0000000000003144 l .text 0000000000000000 .L0 +0000000000003148 l .text 0000000000000000 .L0 +0000000000003148 l .text 0000000000000000 .L0 +0000000000003150 l .text 0000000000000000 .L0 +0000000000003154 l .text 0000000000000000 .L0 +0000000000003154 l .text 0000000000000000 .L0 +0000000000003158 l .text 0000000000000000 .L0 +0000000000003170 l .text 0000000000000000 .L0 +0000000000003178 l .text 0000000000000000 .L0 +0000000000003178 l .text 0000000000000000 .L0 +0000000000003178 l .text 0000000000000000 .L0 +0000000000003188 l .text 0000000000000000 .L0 +000000000000318c l .text 0000000000000000 .L0 +000000000000318c l .text 0000000000000000 .L0 +0000000000003190 l .text 0000000000000000 .L0 +0000000000003190 l .text 0000000000000000 .L0 +0000000000003194 l .text 0000000000000000 .L0 +0000000000003198 l .text 0000000000000000 .L0 +00000000000031ae l .text 0000000000000000 .L0 +00000000000031ae l .text 0000000000000000 .L0 +00000000000031c2 l .text 0000000000000000 .L0 +00000000000031c6 l .text 0000000000000000 .L0 +00000000000031c6 l .text 0000000000000000 .L0 +00000000000031ca l .text 0000000000000000 .L0 +00000000000031ca l .text 0000000000000000 .L0 +00000000000031d2 l .text 0000000000000000 .L0 +00000000000031dc l .text 0000000000000000 .L0 +00000000000031dc l .text 0000000000000000 .L0 +00000000000031e0 l .text 0000000000000000 .L0 +00000000000031e4 l .text 0000000000000000 .L0 +00000000000031e8 l .text 0000000000000000 .L0 +00000000000031f0 l .text 0000000000000000 .L0 +00000000000031f2 l .text 0000000000000000 .L0 +00000000000031f2 l .text 0000000000000000 .L0 +00000000000031f6 l .text 0000000000000000 .L0 +000000000000321a l .text 0000000000000000 .L0 +0000000000003224 l .text 0000000000000000 .L0 +0000000000003224 l .text 0000000000000000 .L0 +0000000000003228 l .text 0000000000000000 .L0 +0000000000003228 l .text 0000000000000000 .L0 +000000000000322c l .text 0000000000000000 .L0 +000000000000322c l .text 0000000000000000 .L0 +0000000000003236 l .text 0000000000000000 .L0 +0000000000003236 l .text 0000000000000000 .L0 +000000000000323a l .text 0000000000000000 .L0 +0000000000003246 l .text 0000000000000000 .L0 +0000000000003246 l .text 0000000000000000 .L0 +000000000000324a l .text 0000000000000000 .L0 +0000000000003254 l .text 0000000000000000 .L0 +0000000000003254 l .text 0000000000000000 .L0 +0000000000003270 l .text 0000000000000000 .L0 +0000000000003274 l .text 0000000000000000 .L0 +0000000000001438 l .debug_frame 0000000000000000 .L0 +0000000000003108 l .text 0000000000000000 .L0 +0000000000003274 l .text 0000000000000000 .L0 +0000000000003256 l .text 0000000000000000 .L0 +0000000000003124 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 readline_common.c +0000000000000008 l O .bss 000000000000050c g_cmdhist +0000000000000000 l O .srodata.g_erasetoeol 0000000000000003 g_erasetoeol +000000000000afd8 l .rodata 0000000000000000 .LC0 +0000000000003298 l .text 0000000000000000 .L0 +000000000000aff0 l .rodata 0000000000000000 .LC1 +00000000000032a4 l .text 0000000000000000 .L0 +0000000000000000 l .srodata.g_erasetoeol 0000000000000000 .LANCHOR0 +00000000000032e4 l .text 0000000000000000 .L0 +00000000000032f6 l .text 0000000000000000 .L0 +0000000000000008 l .bss 0000000000000000 .LANCHOR1 +0000000000003306 l .text 0000000000000000 .L0 +0000000000003440 l .text 0000000000000000 .L0 +0000000000003298 l .text 0000000000000000 .L2 +00000000000032b4 l .text 0000000000000000 .L3 +00000000000032e0 l .text 0000000000000000 .L4 +0000000000003338 l .text 0000000000000000 .L7 +00000000000032c2 l .text 0000000000000000 .L1 +000000000000330e l .text 0000000000000000 .L6 +000000000000340e l .text 0000000000000000 .L8 +000000000000334a l .text 0000000000000000 .L9 +000000000000332c l .text 0000000000000000 .L34 +0000000000003374 l .text 0000000000000000 .L11 +000000000000338c l .text 0000000000000000 .L49 +0000000000003390 l .text 0000000000000000 .L13 +000000000000336e l .text 0000000000000000 .L15 +00000000000033a6 l .text 0000000000000000 .L17 +00000000000033c0 l .text 0000000000000000 .L18 +0000000000003392 l .text 0000000000000000 .L16 +00000000000033ee l .text 0000000000000000 .L19 +00000000000033f8 l .text 0000000000000000 .L22 +00000000000033cc l .text 0000000000000000 .L20 +00000000000033da l .text 0000000000000000 .L21 +0000000000003416 l .text 0000000000000000 .L23 +0000000000003432 l .text 0000000000000000 .L24 +00000000000033a0 l .text 0000000000000000 .L25 +0000000000003330 l .text 0000000000000000 .L36 +00000000000034ca l .text 0000000000000000 .L26 +00000000000034b8 l .text 0000000000000000 .L27 +00000000000034b2 l .text 0000000000000000 .L29 +0000000000003492 l .text 0000000000000000 .L30 +000000000000347c l .text 0000000000000000 .L31 +0000000000003334 l .text 0000000000000000 .L37 +00000000000049d5 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000000f913 l .debug_str 0000000000000000 .LASF31 +000000000000fa66 l .debug_str 0000000000000000 .LASF32 +000000000000fab9 l .debug_str 0000000000000000 .LASF33 +0000000000001540 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000000b0a7 l .debug_line 0000000000000000 .Ldebug_line0 +000000000000fa94 l .debug_str 0000000000000000 .LASF0 +000000000000f8eb l .debug_str 0000000000000000 .LASF1 +000000000000fa48 l .debug_str 0000000000000000 .LASF2 +000000000000faa0 l .debug_str 0000000000000000 .LASF3 +000000000000f9e2 l .debug_str 0000000000000000 .LASF4 +000000000000fa7f l .debug_str 0000000000000000 .LASF5 +000000000000f8f9 l .debug_str 0000000000000000 .LASF6 +000000000000fa10 l .debug_str 0000000000000000 .LASF7 +000000000000f9cb l .debug_str 0000000000000000 .LASF8 +000000000000f9ef l .debug_str 0000000000000000 .LASF9 +000000000000f8be l .debug_str 0000000000000000 .LASF10 +000000000000f8e3 l .debug_str 0000000000000000 .LASF11 +000000000000fa34 l .debug_str 0000000000000000 .LASF12 +000000000000fa19 l .debug_str 0000000000000000 .LASF13 +000000000000fa88 l .debug_str 0000000000000000 .LASF14 +000000000000fab3 l .debug_str 0000000000000000 .LASF15 +000000000000fa52 l .debug_str 0000000000000000 .LASF19 +000000000000f90b l .debug_str 0000000000000000 .LASF16 +000000000000fa5e l .debug_str 0000000000000000 .LASF17 +000000000000f8cc l .debug_str 0000000000000000 .LASF18 +000000000000f9d8 l .debug_str 0000000000000000 .LASF20 +000000000000f9d3 l .debug_str 0000000000000000 .LASF21 +000000000000fa41 l .debug_str 0000000000000000 .LASF22 +000000000000fa27 l .debug_str 0000000000000000 .LASF23 +000000000000fa06 l .debug_str 0000000000000000 .LASF24 +000000000000f8ae l .debug_str 0000000000000000 .LASF34 +0000000000003274 l .text 0000000000000000 .LFB4 +00000000000034f4 l .text 0000000000000000 .LFE4 +000000000000f8d5 l .debug_str 0000000000000000 .LASF25 +000000000000a8ce l .debug_loc 0000000000000000 .LLST0 +000000000000a97f l .debug_loc 0000000000000000 .LLST1 +000000000000fa78 l .debug_str 0000000000000000 .LASF26 +000000000000aa6f l .debug_loc 0000000000000000 .LLST2 +000000000000f8c5 l .debug_str 0000000000000000 .LASF27 +000000000000aafa l .debug_loc 0000000000000000 .LLST3 +000000000000ab7d l .debug_loc 0000000000000000 .LLST4 +000000000000acb6 l .debug_loc 0000000000000000 .LLST5 +000000000000ad41 l .debug_loc 0000000000000000 .LLST6 +00000000000033c0 l .text 0000000000000000 .LBB3 +000000000000340e l .text 0000000000000000 .LBE3 +000000000000adc3 l .debug_loc 0000000000000000 .LLST7 +0000000000003406 l .text 0000000000000000 .LVL38 +0000000000003316 l .text 0000000000000000 .LVL11 +00000000000033b0 l .text 0000000000000000 .LVL25 +00000000000033be l .text 0000000000000000 .LVL27 +0000000000003422 l .text 0000000000000000 .LVL41 +0000000000003430 l .text 0000000000000000 .LVL43 +0000000000003462 l .text 0000000000000000 .LVL47 +00000000000034d6 l .text 0000000000000000 .LVL56 +00000000000032b4 l .text 0000000000000000 .LVL4 +00000000000032f2 l .text 0000000000000000 .LVL9 +000000000000fa39 l .debug_str 0000000000000000 .LASF28 +000000000000f9c3 l .debug_str 0000000000000000 .LASF29 +000000000000f8da l .debug_str 0000000000000000 .LASF30 +0000000000003274 l .text 0000000000000000 .LVL0 +00000000000032ac l .text 0000000000000000 .LVL3 +00000000000032c2 l .text 0000000000000000 .LVL6 +00000000000032e0 l .text 0000000000000000 .LVL7 +000000000000343e l .text 0000000000000000 .LVL45 +00000000000034ca l .text 0000000000000000 .LVL54 +00000000000032a4 l .text 0000000000000000 .LVL2 +00000000000032bc l .text 0000000000000000 .LVL5 +0000000000003324 l .text 0000000000000000 .LVL14 +000000000000332c l .text 0000000000000000 .LVL15 +00000000000034c2 l .text 0000000000000000 .LVL53 +00000000000034ee l .text 0000000000000000 .LVL59 +00000000000032a0 l .text 0000000000000000 .LVL1 +00000000000032e4 l .text 0000000000000000 .LVL8 +000000000000330e l .text 0000000000000000 .LVL10 +000000000000332e l .text 0000000000000000 .LVL16 +0000000000003330 l .text 0000000000000000 .LVL17 +0000000000003332 l .text 0000000000000000 .LVL18 +0000000000003334 l .text 0000000000000000 .LVL19 +0000000000003350 l .text 0000000000000000 .LVL21 +000000000000340e l .text 0000000000000000 .LVL39 +000000000000347c l .text 0000000000000000 .LVL49 +0000000000003338 l .text 0000000000000000 .LVL20 +0000000000003392 l .text 0000000000000000 .LVL22 +00000000000033a0 l .text 0000000000000000 .LVL23 +00000000000033a6 l .text 0000000000000000 .LVL24 +00000000000033bc l .text 0000000000000000 .LVL26 +00000000000033c0 l .text 0000000000000000 .LVL28 +00000000000033da l .text 0000000000000000 .LVL32 +00000000000033e2 l .text 0000000000000000 .LVL33 +00000000000033ee l .text 0000000000000000 .LVL34 +00000000000033f8 l .text 0000000000000000 .LVL36 +0000000000003404 l .text 0000000000000000 .LVL37 +000000000000342e l .text 0000000000000000 .LVL42 +0000000000003432 l .text 0000000000000000 .LVL44 +00000000000034b8 l .text 0000000000000000 .LVL51 +00000000000034ba l .text 0000000000000000 .LVL52 +00000000000034e2 l .text 0000000000000000 .LVL57 +00000000000034e8 l .text 0000000000000000 .LVL58 +00000000000033cc l .text 0000000000000000 .LVL30 +000000000000347a l .text 0000000000000000 .LVL48 +0000000000003482 l .text 0000000000000000 .LVL50 +000000000000331a l .text 0000000000000000 .LVL12 +0000000000003320 l .text 0000000000000000 .LVL13 +000000000000341e l .text 0000000000000000 .LVL40 +0000000000003458 l .text 0000000000000000 .LVL46 +00000000000034ce l .text 0000000000000000 .LVL55 +00000000000033c6 l .text 0000000000000000 .LVL29 +00000000000033d4 l .text 0000000000000000 .LVL31 +00000000000033f6 l .text 0000000000000000 .LVL35 +000000000001105a l .debug_info 0000000000000000 .Ldebug_info0 +00000000000032f4 l .text 0000000000000000 .LBB2 +000000000000330e l .text 0000000000000000 .LBE2 +000000000000330e l .text 0000000000000000 .LBB4 +0000000000003390 l .text 0000000000000000 .LBE4 +0000000000003392 l .text 0000000000000000 .LBB5 +00000000000033a0 l .text 0000000000000000 .LBE5 +00000000000033a2 l .text 0000000000000000 .LBB6 +00000000000034f4 l .text 0000000000000000 .LBE6 +0000000000003274 l .text 0000000000000000 .L0 +0000000000003274 l .text 0000000000000000 .L0 +0000000000003274 l .text 0000000000000000 .L0 +0000000000003274 l .text 0000000000000000 .L0 +0000000000003274 l .text 0000000000000000 .L0 +0000000000003274 l .text 0000000000000000 .L0 +0000000000003274 l .text 0000000000000000 .L0 +0000000000003290 l .text 0000000000000000 .L0 +0000000000003294 l .text 0000000000000000 .L0 +0000000000003298 l .text 0000000000000000 .L0 +00000000000032b4 l .text 0000000000000000 .L0 +00000000000032b8 l .text 0000000000000000 .L0 +00000000000032b8 l .text 0000000000000000 .L0 +00000000000032b8 l .text 0000000000000000 .L0 +00000000000032bc l .text 0000000000000000 .L0 +00000000000032bc l .text 0000000000000000 .L0 +00000000000032c0 l .text 0000000000000000 .L0 +00000000000032c0 l .text 0000000000000000 .L0 +00000000000032c2 l .text 0000000000000000 .L0 +00000000000032e0 l .text 0000000000000000 .L0 +00000000000032ee l .text 0000000000000000 .L0 +00000000000032ee l .text 0000000000000000 .L0 +00000000000032f0 l .text 0000000000000000 .L0 +00000000000032f2 l .text 0000000000000000 .L0 +00000000000032f2 l .text 0000000000000000 .L0 +00000000000032f2 l .text 0000000000000000 .L0 +00000000000032f4 l .text 0000000000000000 .L0 +00000000000032f6 l .text 0000000000000000 .L0 +00000000000032fe l .text 0000000000000000 .L0 +0000000000003302 l .text 0000000000000000 .L0 +0000000000003304 l .text 0000000000000000 .L0 +0000000000003306 l .text 0000000000000000 .L0 +000000000000330e l .text 0000000000000000 .L0 +000000000000330e l .text 0000000000000000 .L0 +000000000000330e l .text 0000000000000000 .L0 +0000000000003316 l .text 0000000000000000 .L0 +0000000000003318 l .text 0000000000000000 .L0 +000000000000331a l .text 0000000000000000 .L0 +000000000000331a l .text 0000000000000000 .L0 +000000000000331e l .text 0000000000000000 .L0 +000000000000331e l .text 0000000000000000 .L0 +0000000000003320 l .text 0000000000000000 .L0 +0000000000003322 l .text 0000000000000000 .L0 +0000000000003322 l .text 0000000000000000 .L0 +0000000000003328 l .text 0000000000000000 .L0 +0000000000003328 l .text 0000000000000000 .L0 +000000000000332c l .text 0000000000000000 .L0 +0000000000003330 l .text 0000000000000000 .L0 +0000000000003334 l .text 0000000000000000 .L0 +0000000000003338 l .text 0000000000000000 .L0 +0000000000003338 l .text 0000000000000000 .L0 +000000000000333c l .text 0000000000000000 .L0 +000000000000333c l .text 0000000000000000 .L0 +0000000000003344 l .text 0000000000000000 .L0 +000000000000334a l .text 0000000000000000 .L0 +000000000000334a l .text 0000000000000000 .L0 +000000000000334e l .text 0000000000000000 .L0 +0000000000003350 l .text 0000000000000000 .L0 +0000000000003354 l .text 0000000000000000 .L0 +0000000000003354 l .text 0000000000000000 .L0 +000000000000335c l .text 0000000000000000 .L0 +000000000000335c l .text 0000000000000000 .L0 +0000000000003360 l .text 0000000000000000 .L0 +0000000000003360 l .text 0000000000000000 .L0 +0000000000003362 l .text 0000000000000000 .L0 +0000000000003366 l .text 0000000000000000 .L0 +0000000000003368 l .text 0000000000000000 .L0 +000000000000336a l .text 0000000000000000 .L0 +000000000000336e l .text 0000000000000000 .L0 +000000000000336e l .text 0000000000000000 .L0 +0000000000003374 l .text 0000000000000000 .L0 +0000000000003374 l .text 0000000000000000 .L0 +000000000000337c l .text 0000000000000000 .L0 +000000000000337c l .text 0000000000000000 .L0 +0000000000003380 l .text 0000000000000000 .L0 +0000000000003382 l .text 0000000000000000 .L0 +0000000000003388 l .text 0000000000000000 .L0 +0000000000003388 l .text 0000000000000000 .L0 +000000000000338c l .text 0000000000000000 .L0 +0000000000003390 l .text 0000000000000000 .L0 +0000000000003392 l .text 0000000000000000 .L0 +0000000000003396 l .text 0000000000000000 .L0 +0000000000003396 l .text 0000000000000000 .L0 +000000000000339a l .text 0000000000000000 .L0 +00000000000033a0 l .text 0000000000000000 .L0 +00000000000033a2 l .text 0000000000000000 .L0 +00000000000033a6 l .text 0000000000000000 .L0 +00000000000033a6 l .text 0000000000000000 .L0 +00000000000033b0 l .text 0000000000000000 .L0 +00000000000033ba l .text 0000000000000000 .L0 +00000000000033bc l .text 0000000000000000 .L0 +00000000000033bc l .text 0000000000000000 .L0 +00000000000033c0 l .text 0000000000000000 .L0 +00000000000033c0 l .text 0000000000000000 .L0 +00000000000033c6 l .text 0000000000000000 .L0 +00000000000033c6 l .text 0000000000000000 .L0 +00000000000033ca l .text 0000000000000000 .L0 +00000000000033ca l .text 0000000000000000 .L0 +00000000000033cc l .text 0000000000000000 .L0 +00000000000033da l .text 0000000000000000 .L0 +00000000000033e2 l .text 0000000000000000 .L0 +00000000000033e6 l .text 0000000000000000 .L0 +00000000000033e8 l .text 0000000000000000 .L0 +00000000000033e8 l .text 0000000000000000 .L0 +00000000000033ee l .text 0000000000000000 .L0 +00000000000033ee l .text 0000000000000000 .L0 +00000000000033f4 l .text 0000000000000000 .L0 +00000000000033f4 l .text 0000000000000000 .L0 +00000000000033f8 l .text 0000000000000000 .L0 +00000000000033fc l .text 0000000000000000 .L0 +0000000000003404 l .text 0000000000000000 .L0 +0000000000003404 l .text 0000000000000000 .L0 +0000000000003406 l .text 0000000000000000 .L0 +000000000000340e l .text 0000000000000000 .L0 +000000000000340e l .text 0000000000000000 .L0 +0000000000003412 l .text 0000000000000000 .L0 +0000000000003416 l .text 0000000000000000 .L0 +0000000000003416 l .text 0000000000000000 .L0 +0000000000003418 l .text 0000000000000000 .L0 +0000000000003418 l .text 0000000000000000 .L0 +0000000000003422 l .text 0000000000000000 .L0 +000000000000342c l .text 0000000000000000 .L0 +000000000000342e l .text 0000000000000000 .L0 +000000000000342e l .text 0000000000000000 .L0 +0000000000003432 l .text 0000000000000000 .L0 +0000000000003432 l .text 0000000000000000 .L0 +0000000000003436 l .text 0000000000000000 .L0 +0000000000003436 l .text 0000000000000000 .L0 +000000000000343a l .text 0000000000000000 .L0 +000000000000343a l .text 0000000000000000 .L0 +000000000000343e l .text 0000000000000000 .L0 +0000000000003440 l .text 0000000000000000 .L0 +0000000000003440 l .text 0000000000000000 .L0 +000000000000344c l .text 0000000000000000 .L0 +0000000000003450 l .text 0000000000000000 .L0 +0000000000003452 l .text 0000000000000000 .L0 +0000000000003456 l .text 0000000000000000 .L0 +0000000000003462 l .text 0000000000000000 .L0 +0000000000003464 l .text 0000000000000000 .L0 +0000000000003464 l .text 0000000000000000 .L0 +0000000000003466 l .text 0000000000000000 .L0 +000000000000346e l .text 0000000000000000 .L0 +0000000000003476 l .text 0000000000000000 .L0 +000000000000347a l .text 0000000000000000 .L0 +000000000000347a l .text 0000000000000000 .L0 +000000000000347c l .text 0000000000000000 .L0 +000000000000347c l .text 0000000000000000 .L0 +0000000000003480 l .text 0000000000000000 .L0 +0000000000003482 l .text 0000000000000000 .L0 +0000000000003486 l .text 0000000000000000 .L0 +0000000000003486 l .text 0000000000000000 .L0 +0000000000003486 l .text 0000000000000000 .L0 +000000000000348a l .text 0000000000000000 .L0 +0000000000003492 l .text 0000000000000000 .L0 +0000000000003492 l .text 0000000000000000 .L0 +000000000000349a l .text 0000000000000000 .L0 +000000000000349c l .text 0000000000000000 .L0 +00000000000034a0 l .text 0000000000000000 .L0 +00000000000034a4 l .text 0000000000000000 .L0 +00000000000034a8 l .text 0000000000000000 .L0 +00000000000034a8 l .text 0000000000000000 .L0 +00000000000034ac l .text 0000000000000000 .L0 +00000000000034ac l .text 0000000000000000 .L0 +00000000000034b2 l .text 0000000000000000 .L0 +00000000000034b2 l .text 0000000000000000 .L0 +00000000000034b8 l .text 0000000000000000 .L0 +00000000000034b8 l .text 0000000000000000 .L0 +00000000000034c0 l .text 0000000000000000 .L0 +00000000000034c0 l .text 0000000000000000 .L0 +00000000000034c6 l .text 0000000000000000 .L0 +00000000000034c6 l .text 0000000000000000 .L0 +00000000000034ca l .text 0000000000000000 .L0 +00000000000034ca l .text 0000000000000000 .L0 +00000000000034d6 l .text 0000000000000000 .L0 +00000000000034da l .text 0000000000000000 .L0 +00000000000034da l .text 0000000000000000 .L0 +00000000000034de l .text 0000000000000000 .L0 +00000000000034e2 l .text 0000000000000000 .L0 +00000000000034e6 l .text 0000000000000000 .L0 +00000000000034e6 l .text 0000000000000000 .L0 +00000000000034ec l .text 0000000000000000 .L0 +00000000000034ec l .text 0000000000000000 .L0 +00000000000034f2 l .text 0000000000000000 .L0 +00000000000034f2 l .text 0000000000000000 .L0 +00000000000034f4 l .text 0000000000000000 .L0 +00000000000014a0 l .debug_frame 0000000000000000 .L0 +0000000000003274 l .text 0000000000000000 .L0 +00000000000034f4 l .text 0000000000000000 .L0 +00000000000032c4 l .text 0000000000000000 .L0 +0000000000003290 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 nsh_alias.c +00000000000034f4 l F .text 00000000000000aa alias_delete +000000000000359e l F .text 000000000000002c alias_find.isra.0 +000000000000b050 l O .rodata 000000000000000f g_aliasfmt +000000000000359c l .text 0000000000000000 .L24 +0000000000003524 l .text 0000000000000000 .L3 +0000000000003532 l .text 0000000000000000 .L4 +000000000000353e l .text 0000000000000000 .L5 +000000000000356c l .text 0000000000000000 .L7 +000000000000357e l .text 0000000000000000 .L8 +0000000000003578 l .text 0000000000000000 .L11 +0000000000003516 l .text 0000000000000000 .L1 +0000000000003592 l .text 0000000000000000 .L10 +00000000000035b8 l .text 0000000000000000 .L30 +00000000000035ac l .text 0000000000000000 .L27 +00000000000035aa l .text 0000000000000000 .L28 +00000000000035ea l .text 0000000000000000 .L35 +0000000000003620 l .text 0000000000000000 .L38 +000000000000361e l .text 0000000000000000 .L40 +000000000000b050 l .rodata 0000000000000000 .LANCHOR0 +0000000000003662 l .text 0000000000000000 .L0 +000000000000b020 l .rodata 0000000000000000 .LC1 +000000000000369e l .text 0000000000000000 .L0 +000000000000b028 l .rodata 0000000000000000 .LC2 +00000000000036a6 l .text 0000000000000000 .L0 +00000000000036ae l .text 0000000000000000 .L0 +000000000000b008 l .rodata 0000000000000000 .LC0 +00000000000036b6 l .text 0000000000000000 .L0 +000000000000369a l .text 0000000000000000 .L50 +000000000000368a l .text 0000000000000000 .L52 +000000000000366a l .text 0000000000000000 .L51 +000000000000366e l .text 0000000000000000 .L74 +0000000000003786 l .text 0000000000000000 .L55 +0000000000003782 l .text 0000000000000000 .L66 +0000000000003740 l .text 0000000000000000 .L57 +0000000000003720 l .text 0000000000000000 .L59 +000000000000373c l .text 0000000000000000 .L61 +00000000000036c2 l .text 0000000000000000 .L54 +000000000000377a l .text 0000000000000000 .L60 +0000000000003716 l .text 0000000000000000 .L58 +0000000000003774 l .text 0000000000000000 .L78 +000000000000372e l .text 0000000000000000 .L56 +00000000000037a0 l .text 0000000000000000 .L62 +0000000000003738 l .text 0000000000000000 .L77 +000000000000b040 l .rodata 0000000000000000 .LC3 +00000000000037d6 l .text 0000000000000000 .L0 +000000000000b048 l .rodata 0000000000000000 .LC4 +00000000000037f2 l .text 0000000000000000 .L0 +00000000000037fa l .text 0000000000000000 .L0 +0000000000003862 l .text 0000000000000000 .L88 +000000000000382a l .text 0000000000000000 .L90 +0000000000003832 l .text 0000000000000000 .L80 +0000000000003854 l .text 0000000000000000 .L85 +0000000000003802 l .text 0000000000000000 .L84 +0000000000003844 l .text 0000000000000000 .L83 +000000000000382e l .text 0000000000000000 .L82 +0000000000003826 l .text 0000000000000000 .L86 +0000000000004b83 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000000fe52 l .debug_str 0000000000000000 .LASF98 +000000000000fd13 l .debug_str 0000000000000000 .LASF99 +000000000000fc30 l .debug_str 0000000000000000 .LASF100 +00000000000015b0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000000b80e l .debug_line 0000000000000000 .Ldebug_line0 +000000000000fb59 l .debug_str 0000000000000000 .LASF0 +000000000000fdc0 l .debug_str 0000000000000000 .LASF3 +000000000000fd30 l .debug_str 0000000000000000 .LASF1 +000000000000fd47 l .debug_str 0000000000000000 .LASF2 +000000000000fcd3 l .debug_str 0000000000000000 .LASF4 +000000000000fc7d l .debug_str 0000000000000000 .LASF5 +000000000000fc1a l .debug_str 0000000000000000 .LASF6 +000000000000fb95 l .debug_str 0000000000000000 .LASF7 +000000000000fc4e l .debug_str 0000000000000000 .LASF8 +000000000000ff0c l .debug_str 0000000000000000 .LASF9 +000000000000fc99 l .debug_str 0000000000000000 .LASF10 +000000000000fb18 l .debug_str 0000000000000000 .LASF11 +000000000000fdf4 l .debug_str 0000000000000000 .LASF12 +000000000000fbb9 l .debug_str 0000000000000000 .LASF13 +000000000000faf2 l .debug_str 0000000000000000 .LASF14 +000000000000faf9 l .debug_str 0000000000000000 .LASF15 +000000000000fdc9 l .debug_str 0000000000000000 .LASF16 +000000000000fcc7 l .debug_str 0000000000000000 .LASF17 +000000000000fb4b l .debug_str 0000000000000000 .LASF18 +000000000000fbe8 l .debug_str 0000000000000000 .LASF19 +000000000000fd1f l .debug_str 0000000000000000 .LASF21 +000000000000fc6c l .debug_str 0000000000000000 .LASF23 +000000000000fd51 l .debug_str 0000000000000000 .LASF20 +000000000000fb6d l .debug_str 0000000000000000 .LASF22 +000000000000fdbb l .debug_str 0000000000000000 .LASF24 +000000000000fcc2 l .debug_str 0000000000000000 .LASF25 +000000000000fb0d l .debug_str 0000000000000000 .LASF26 +000000000000ff3e l .debug_str 0000000000000000 .LASF27 +000000000000fdaf l .debug_str 0000000000000000 .LASF28 +000000000000fbdc l .debug_str 0000000000000000 .LASF29 +000000000000fca7 l .debug_str 0000000000000000 .LASF30 +000000000000fe18 l .debug_str 0000000000000000 .LASF31 +000000000000fd82 l .debug_str 0000000000000000 .LASF32 +000000000000ff21 l .debug_str 0000000000000000 .LASF33 +000000000000fcb8 l .debug_str 0000000000000000 .LASF34 +000000000000fe40 l .debug_str 0000000000000000 .LASF35 +000000000000fe21 l .debug_str 0000000000000000 .LASF36 +000000000000fe02 l .debug_str 0000000000000000 .LASF37 +000000000000fce9 l .debug_str 0000000000000000 .LASF38 +000000000000fb88 l .debug_str 0000000000000000 .LASF39 +000000000000fbf4 l .debug_str 0000000000000000 .LASF40 +000000000000fd92 l .debug_str 0000000000000000 .LASF41 +000000000000fc00 l .debug_str 0000000000000000 .LASF42 +000000000000fd0b l .debug_str 0000000000000000 .LASF43 +000000000000fd7c l .debug_str 0000000000000000 .LASF44 +000000000000ff30 l .debug_str 0000000000000000 .LASF45 +000000000000fba7 l .debug_str 0000000000000000 .LASF46 +000000000000fbc2 l .debug_str 0000000000000000 .LASF47 +000000000000fb9e l .debug_str 0000000000000000 .LASF48 +000000000000fbb0 l .debug_str 0000000000000000 .LASF49 +000000000000fdce l .debug_str 0000000000000000 .LASF50 +000000000000fe35 l .debug_str 0000000000000000 .LASF51 +000000000000fd2a l .debug_str 0000000000000000 .LASF52 +000000000000ff1b l .debug_str 0000000000000000 .LASF101 +000000000000fb2f l .debug_str 0000000000000000 .LASF53 +000000000000fb3b l .debug_str 0000000000000000 .LASF54 +000000000000fc67 l .debug_str 0000000000000000 .LASF55 +000000000000fc14 l .debug_str 0000000000000000 .LASF56 +000000000000fb40 l .debug_str 0000000000000000 .LASF57 +000000000000fe2f l .debug_str 0000000000000000 .LASF58 +000000000000fd9a l .debug_str 0000000000000000 .LASF59 +000000000000fb65 l .debug_str 0000000000000000 .LASF60 +000000000000fca1 l .debug_str 0000000000000000 .LASF61 +000000000000fdfc l .debug_str 0000000000000000 .LASF62 +000000000000fcf6 l .debug_str 0000000000000000 .LASF63 +000000000000fcb1 l .debug_str 0000000000000000 .LASF64 +000000000000fae0 l .debug_str 0000000000000000 .LASF65 +000000000000fd02 l .debug_str 0000000000000000 .LASF66 +000000000000fc90 l .debug_str 0000000000000000 .LASF67 +000000000000fd8d l .debug_str 0000000000000000 .LASF68 +000000000000fe49 l .debug_str 0000000000000000 .LASF69 +000000000000fdd9 l .debug_str 0000000000000000 .LASF70 +000000000000ff15 l .debug_str 0000000000000000 .LASF71 +000000000000ff02 l .debug_str 0000000000000000 .LASF72 +000000000000fded l .debug_str 0000000000000000 .LASF73 +000000000000fe0d l .debug_str 0000000000000000 .LASF77 +000000000000fb01 l .debug_str 0000000000000000 .LASF80 +00000000000037b0 l .text 0000000000000000 .LFB10 +0000000000003866 l .text 0000000000000000 .LFE10 +000000000000ff2b l .debug_str 0000000000000000 .LASF74 +000000000000adf9 l .debug_loc 0000000000000000 .LLST31 +000000000000ff39 l .debug_str 0000000000000000 .LASF75 +000000000000ae58 l .debug_loc 0000000000000000 .LLST32 +000000000000ff60 l .debug_str 0000000000000000 .LASF76 +000000000000ae91 l .debug_loc 0000000000000000 .LLST33 +000000000000fccd l .debug_str 0000000000000000 .LASF78 +000000000000af05 l .debug_loc 0000000000000000 .LLST34 +000000000000af4e l .debug_loc 0000000000000000 .LLST35 +000000000000fd5c l .debug_str 0000000000000000 .LASF79 +000000000000afb4 l .debug_loc 0000000000000000 .LLST36 +000000000000afea l .debug_loc 0000000000000000 .LLST37 +000000000000382a l .text 0000000000000000 .LBB47 +000000000000b085 l .debug_loc 0000000000000000 .LLST38 +000000000000b0bb l .debug_loc 0000000000000000 .LLST39 +000000000000b104 l .debug_loc 0000000000000000 .LLST40 +0000000000003850 l .text 0000000000000000 .LVL91 +00000000000037cc l .text 0000000000000000 .LVL76 +00000000000037e6 l .text 0000000000000000 .LVL77 +0000000000003816 l .text 0000000000000000 .LVL80 +0000000000003826 l .text 0000000000000000 .LVL83 +000000000000385e l .text 0000000000000000 .LVL94 +000000000000ff48 l .debug_str 0000000000000000 .LASF81 +0000000000003632 l .text 0000000000000000 .LFB9 +00000000000037b0 l .text 0000000000000000 .LFE9 +000000000000b127 l .debug_loc 0000000000000000 .LLST17 +000000000000b186 l .debug_loc 0000000000000000 .LLST18 +000000000000b1bf l .debug_loc 0000000000000000 .LLST19 +000000000000b249 l .debug_loc 0000000000000000 .LLST20 +000000000000b26c l .debug_loc 0000000000000000 .LLST21 +000000000000b2c8 l .debug_loc 0000000000000000 .LLST22 +000000000000365e l .text 0000000000000000 .LBB32 +000000000000b363 l .debug_loc 0000000000000000 .LLST23 +000000000000b399 l .debug_loc 0000000000000000 .LLST24 +0000000000003696 l .text 0000000000000000 .LVL43 +00000000000036be l .text 0000000000000000 .LBB36 +000000000000b3cf l .debug_loc 0000000000000000 .LLST25 +000000000000b405 l .debug_loc 0000000000000000 .LLST26 +000000000000b44f l .debug_loc 0000000000000000 .LLST27 +000000000000b485 l .debug_loc 0000000000000000 .LLST28 +000000000000b4bb l .debug_loc 0000000000000000 .LLST29 +0000000000003766 l .text 0000000000000000 .LBB38 +0000000000003782 l .text 0000000000000000 .LBE38 +000000000000b4f3 l .debug_loc 0000000000000000 .LLST30 +00000000000036fc l .text 0000000000000000 .LVL51 +000000000000370a l .text 0000000000000000 .LVL53 +0000000000003714 l .text 0000000000000000 .LVL54 +000000000000372c l .text 0000000000000000 .LVL57 +000000000000374a l .text 0000000000000000 .LVL63 +0000000000003758 l .text 0000000000000000 .LVL65 +0000000000003764 l .text 0000000000000000 .LVL66 +0000000000003658 l .text 0000000000000000 .LVL36 +00000000000036d6 l .text 0000000000000000 .LVL48 +000000000000373c l .text 0000000000000000 .LVL60 +0000000000003794 l .text 0000000000000000 .LVL72 +00000000000037ac l .text 0000000000000000 .LVL74 +000000000000ff52 l .debug_str 0000000000000000 .LASF102 +000000000000362a l .text 0000000000000000 .LFB8 +0000000000003632 l .text 0000000000000000 .LFE8 +000000000000b516 l .debug_loc 0000000000000000 .LLST15 +000000000000b54f l .debug_loc 0000000000000000 .LLST16 +0000000000003632 l .text 0000000000000000 .LVL34 +000000000000fda1 l .debug_str 0000000000000000 .LASF82 +00000000000035ec l .text 0000000000000000 .LFB7 +000000000000362a l .text 0000000000000000 .LFE7 +000000000000b588 l .debug_loc 0000000000000000 .LLST12 +000000000000fcfc l .debug_str 0000000000000000 .LASF83 +000000000000b5d4 l .debug_loc 0000000000000000 .LLST13 +000000000000b61f l .debug_loc 0000000000000000 .LLST14 +00000000000035fe l .text 0000000000000000 .LVL27 +000000000000360e l .text 0000000000000000 .LVL28 +000000000000fb78 l .debug_str 0000000000000000 .LASF84 +000000000000fdde l .debug_str 0000000000000000 .LASF85 +000000000000fc09 l .debug_str 0000000000000000 .LASF89 +000000000000fc27 l .debug_str 0000000000000000 .LASF86 +000000000000fd63 l .debug_str 0000000000000000 .LASF87 +000000000000fd3e l .debug_str 0000000000000000 .LASF88 +000000000000fbca l .debug_str 0000000000000000 .LASF90 +000000000000fc72 l .debug_str 0000000000000000 .LASF103 +00000000000034f4 l .text 0000000000000000 .LFB3 +000000000000359e l .text 0000000000000000 .LFE3 +000000000000b642 l .debug_loc 0000000000000000 .LLST0 +000000000000b6b4 l .debug_loc 0000000000000000 .LLST1 +0000000000003526 l .text 0000000000000000 .LBB11 +000000000000b726 l .debug_loc 0000000000000000 .LLST2 +000000000000b75c l .debug_loc 0000000000000000 .LLST3 +000000000000b792 l .debug_loc 0000000000000000 .LLST4 +000000000000b7c8 l .debug_loc 0000000000000000 .LLST5 +0000000000003592 l .text 0000000000000000 .LVL12 +000000000000356c l .text 0000000000000000 .LBB16 +000000000000357c l .text 0000000000000000 .LBE16 +000000000000b7eb l .debug_loc 0000000000000000 .LLST6 +0000000000003532 l .text 0000000000000000 .LVL6 +000000000000353e l .text 0000000000000000 .LVL7 +000000000000359e l .text 0000000000000000 .LFB13 +00000000000035ca l .text 0000000000000000 .LFE13 +000000000000b80e l .debug_loc 0000000000000000 .LLST7 +000000000000b86d l .debug_loc 0000000000000000 .LLST8 +00000000000035c4 l .text 0000000000000000 .LVL20 +00000000000035ca l .text 0000000000000000 .LFB1 +00000000000035ec l .text 0000000000000000 .LFE1 +00000000000035d6 l .text 0000000000000000 .LBB23 +00000000000035ea l .text 0000000000000000 .LBE23 +000000000000b8c9 l .debug_loc 0000000000000000 .LLST9 +000000000000b8ec l .debug_loc 0000000000000000 .LLST10 +000000000000b910 l .debug_loc 0000000000000000 .LLST11 +000000000000fb8e l .debug_str 0000000000000000 .LASF91 +000000000000fe2a l .debug_str 0000000000000000 .LASF92 +000000000000fbd5 l .debug_str 0000000000000000 .LASF93 +000000000000fd70 l .debug_str 0000000000000000 .LASF94 +000000000000fc60 l .debug_str 0000000000000000 .LASF95 +000000000000fcdd l .debug_str 0000000000000000 .LASF96 +000000000000faeb l .debug_str 0000000000000000 .LASF97 +00000000000037b0 l .text 0000000000000000 .LVL75 +0000000000003838 l .text 0000000000000000 .LVL88 +0000000000003844 l .text 0000000000000000 .LVL89 +00000000000037ec l .text 0000000000000000 .LVL78 +0000000000003802 l .text 0000000000000000 .LVL79 +0000000000003862 l .text 0000000000000000 .LVL95 +000000000000381a l .text 0000000000000000 .LVL81 +000000000000381e l .text 0000000000000000 .LVL82 +0000000000003854 l .text 0000000000000000 .LVL92 +000000000000385c l .text 0000000000000000 .LVL93 +000000000000382e l .text 0000000000000000 .LVL86 +0000000000003832 l .text 0000000000000000 .LVL87 +000000000000382a l .text 0000000000000000 .LVL85 +0000000000003846 l .text 0000000000000000 .LVL90 +0000000000003632 l .text 0000000000000000 .LVL35 +0000000000003672 l .text 0000000000000000 .LVL41 +000000000000368a l .text 0000000000000000 .LVL42 +000000000000366a l .text 0000000000000000 .LVL39 +000000000000369a l .text 0000000000000000 .LVL45 +000000000000369c l .text 0000000000000000 .LVL46 +00000000000036c2 l .text 0000000000000000 .LVL47 +00000000000037aa l .text 0000000000000000 .LVL73 +00000000000036e4 l .text 0000000000000000 .LVL50 +0000000000003738 l .text 0000000000000000 .LVL59 +0000000000003740 l .text 0000000000000000 .LVL62 +0000000000003786 l .text 0000000000000000 .LVL70 +000000000000378a l .text 0000000000000000 .LVL71 +000000000000366e l .text 0000000000000000 .LVL40 +00000000000036e0 l .text 0000000000000000 .LVL49 +000000000000372e l .text 0000000000000000 .LVL58 +000000000000365e l .text 0000000000000000 .LVL37 +0000000000003662 l .text 0000000000000000 .LVL38 +000000000000371e l .text 0000000000000000 .LVL55 +0000000000003784 l .text 0000000000000000 .LVL69 +00000000000036fe l .text 0000000000000000 .LVL52 +0000000000003720 l .text 0000000000000000 .LVL56 +0000000000003782 l .text 0000000000000000 .LVL68 +0000000000003766 l .text 0000000000000000 .LVL67 +000000000000362a l .text 0000000000000000 .LVL33 +00000000000035ec l .text 0000000000000000 .LVL26 +0000000000003624 l .text 0000000000000000 .LVL31 +0000000000003628 l .text 0000000000000000 .LVL32 +0000000000003610 l .text 0000000000000000 .LVL29 +0000000000003620 l .text 0000000000000000 .LVL30 +00000000000034f4 l .text 0000000000000000 .LVL0 +0000000000003516 l .text 0000000000000000 .LVL1 +0000000000003524 l .text 0000000000000000 .LVL3 +0000000000003528 l .text 0000000000000000 .LVL5 +000000000000359c l .text 0000000000000000 .LVL14 +000000000000351a l .text 0000000000000000 .LVL2 +0000000000003526 l .text 0000000000000000 .LVL4 +000000000000357c l .text 0000000000000000 .LVL10 +000000000000357e l .text 0000000000000000 .LVL11 +000000000000354a l .text 0000000000000000 .LVL8 +000000000000356c l .text 0000000000000000 .LVL9 +000000000000359e l .text 0000000000000000 .LVL15 +00000000000035aa l .text 0000000000000000 .LVL16 +00000000000035b4 l .text 0000000000000000 .LVL18 +00000000000035b8 l .text 0000000000000000 .LVL19 +00000000000035b2 l .text 0000000000000000 .LVL17 +00000000000035d6 l .text 0000000000000000 .LVL23 +00000000000035ea l .text 0000000000000000 .LVL25 +00000000000035de l .text 0000000000000000 .LVL24 +000000000001144d l .debug_info 0000000000000000 .Ldebug_info0 +000000000000357c l .text 0000000000000000 .LBE11 +000000000000357e l .text 0000000000000000 .LBB19 +000000000000359e l .text 0000000000000000 .LBE19 +000000000000354a l .text 0000000000000000 .LBB13 +000000000000356c l .text 0000000000000000 .LBE13 +000000000000357e l .text 0000000000000000 .LBB17 +000000000000359e l .text 0000000000000000 .LBE17 +0000000000003552 l .text 0000000000000000 .LBB14 +0000000000003556 l .text 0000000000000000 .LBE14 +000000000000357e l .text 0000000000000000 .LBB15 +000000000000359e l .text 0000000000000000 .LBE15 +00000000000035d6 l .text 0000000000000000 .LBB25 +00000000000035da l .text 0000000000000000 .LBE25 +00000000000035de l .text 0000000000000000 .LBB26 +00000000000035ea l .text 0000000000000000 .LBE26 +000000000000366c l .text 0000000000000000 .LBE32 +000000000000368a l .text 0000000000000000 .LBB35 +000000000000369a l .text 0000000000000000 .LBE35 +00000000000036c2 l .text 0000000000000000 .LBE36 +00000000000036e4 l .text 0000000000000000 .LBB42 +000000000000372c l .text 0000000000000000 .LBE42 +000000000000372c l .text 0000000000000000 .LBB43 +000000000000372e l .text 0000000000000000 .LBE43 +0000000000003740 l .text 0000000000000000 .LBB44 +0000000000003786 l .text 0000000000000000 .LBE44 +0000000000003830 l .text 0000000000000000 .LBE47 +0000000000003844 l .text 0000000000000000 .LBB50 +0000000000003854 l .text 0000000000000000 .LBE50 +00000000000034f4 l .text 0000000000000000 .L0 +000000000000359e l .text 0000000000000000 .L0 +00000000000035ca l .text 0000000000000000 .L0 +00000000000035ec l .text 0000000000000000 .L0 +000000000000362a l .text 0000000000000000 .L0 +0000000000003632 l .text 0000000000000000 .L0 +00000000000037b0 l .text 0000000000000000 .L0 +00000000000034f4 l .text 0000000000000000 .L0 +00000000000034f4 l .text 0000000000000000 .L0 +00000000000034f6 l .text 0000000000000000 .L0 +0000000000003502 l .text 0000000000000000 .L0 +0000000000003508 l .text 0000000000000000 .L0 +0000000000003508 l .text 0000000000000000 .L0 +000000000000350e l .text 0000000000000000 .L0 +000000000000350e l .text 0000000000000000 .L0 +0000000000003516 l .text 0000000000000000 .L0 +0000000000003516 l .text 0000000000000000 .L0 +0000000000003526 l .text 0000000000000000 .L0 +0000000000003526 l .text 0000000000000000 .L0 +0000000000003528 l .text 0000000000000000 .L0 +000000000000352a l .text 0000000000000000 .L0 +0000000000003532 l .text 0000000000000000 .L0 +0000000000003532 l .text 0000000000000000 .L0 +0000000000003534 l .text 0000000000000000 .L0 +0000000000003536 l .text 0000000000000000 .L0 +000000000000353e l .text 0000000000000000 .L0 +000000000000353e l .text 0000000000000000 .L0 +0000000000003542 l .text 0000000000000000 .L0 +0000000000003542 l .text 0000000000000000 .L0 +0000000000003546 l .text 0000000000000000 .L0 +0000000000003546 l .text 0000000000000000 .L0 +000000000000354a l .text 0000000000000000 .L0 +000000000000354a l .text 0000000000000000 .L0 +000000000000354a l .text 0000000000000000 .L0 +0000000000003552 l .text 0000000000000000 .L0 +000000000000355c l .text 0000000000000000 .L0 +0000000000003560 l .text 0000000000000000 .L0 +0000000000003568 l .text 0000000000000000 .L0 +000000000000356c l .text 0000000000000000 .L0 +000000000000356c l .text 0000000000000000 .L0 +000000000000356c l .text 0000000000000000 .L0 +000000000000356c l .text 0000000000000000 .L0 +0000000000003572 l .text 0000000000000000 .L0 +0000000000003574 l .text 0000000000000000 .L0 +0000000000003578 l .text 0000000000000000 .L0 +000000000000357c l .text 0000000000000000 .L0 +000000000000357c l .text 0000000000000000 .L0 +000000000000357e l .text 0000000000000000 .L0 +0000000000003586 l .text 0000000000000000 .L0 +0000000000003592 l .text 0000000000000000 .L0 +0000000000003596 l .text 0000000000000000 .L0 +000000000000359e l .text 0000000000000000 .L0 +000000000000359e l .text 0000000000000000 .L0 +000000000000359e l .text 0000000000000000 .L0 +000000000000359e l .text 0000000000000000 .L0 +00000000000035a6 l .text 0000000000000000 .L0 +00000000000035a8 l .text 0000000000000000 .L0 +00000000000035aa l .text 0000000000000000 .L0 +00000000000035aa l .text 0000000000000000 .L0 +00000000000035ac l .text 0000000000000000 .L0 +00000000000035b8 l .text 0000000000000000 .L0 +00000000000035b8 l .text 0000000000000000 .L0 +00000000000035c4 l .text 0000000000000000 .L0 +00000000000035c6 l .text 0000000000000000 .L0 +00000000000035c6 l .text 0000000000000000 .L0 +00000000000035ca l .text 0000000000000000 .L0 +00000000000035ca l .text 0000000000000000 .L0 +00000000000035ca l .text 0000000000000000 .L0 +00000000000035ca l .text 0000000000000000 .L0 +00000000000035d0 l .text 0000000000000000 .L0 +00000000000035d6 l .text 0000000000000000 .L0 +00000000000035d6 l .text 0000000000000000 .L0 +00000000000035d6 l .text 0000000000000000 .L0 +00000000000035d6 l .text 0000000000000000 .L0 +00000000000035da l .text 0000000000000000 .L0 +00000000000035de l .text 0000000000000000 .L0 +00000000000035de l .text 0000000000000000 .L0 +00000000000035de l .text 0000000000000000 .L0 +00000000000035de l .text 0000000000000000 .L0 +00000000000035de l .text 0000000000000000 .L0 +00000000000035de l .text 0000000000000000 .L0 +00000000000035de l .text 0000000000000000 .L0 +00000000000035de l .text 0000000000000000 .L0 +00000000000035de l .text 0000000000000000 .L0 +00000000000035de l .text 0000000000000000 .L0 +00000000000035e2 l .text 0000000000000000 .L0 +00000000000035e2 l .text 0000000000000000 .L0 +00000000000035e6 l .text 0000000000000000 .L0 +00000000000035ea l .text 0000000000000000 .L0 +00000000000035ea l .text 0000000000000000 .L0 +00000000000035ec l .text 0000000000000000 .L0 +00000000000035ec l .text 0000000000000000 .L0 +00000000000035ec l .text 0000000000000000 .L0 +00000000000035ec l .text 0000000000000000 .L0 +00000000000035f4 l .text 0000000000000000 .L0 +00000000000035f6 l .text 0000000000000000 .L0 +00000000000035fe l .text 0000000000000000 .L0 +00000000000035fe l .text 0000000000000000 .L0 +0000000000003602 l .text 0000000000000000 .L0 +0000000000003602 l .text 0000000000000000 .L0 +0000000000003610 l .text 0000000000000000 .L0 +0000000000003610 l .text 0000000000000000 .L0 +0000000000003612 l .text 0000000000000000 .L0 +0000000000003616 l .text 0000000000000000 .L0 +000000000000361a l .text 0000000000000000 .L0 +000000000000361c l .text 0000000000000000 .L0 +000000000000361e l .text 0000000000000000 .L0 +0000000000003620 l .text 0000000000000000 .L0 +000000000000362a l .text 0000000000000000 .L0 +000000000000362a l .text 0000000000000000 .L0 +0000000000003632 l .text 0000000000000000 .L0 +0000000000003632 l .text 0000000000000000 .L0 +0000000000003632 l .text 0000000000000000 .L0 +0000000000003632 l .text 0000000000000000 .L0 +0000000000003632 l .text 0000000000000000 .L0 +0000000000003632 l .text 0000000000000000 .L0 +0000000000003632 l .text 0000000000000000 .L0 +000000000000364a l .text 0000000000000000 .L0 +0000000000003650 l .text 0000000000000000 .L0 +0000000000003658 l .text 0000000000000000 .L0 +0000000000003658 l .text 0000000000000000 .L0 +000000000000365e l .text 0000000000000000 .L0 +000000000000365e l .text 0000000000000000 .L0 +000000000000365e l .text 0000000000000000 .L0 +000000000000365e l .text 0000000000000000 .L0 +0000000000003662 l .text 0000000000000000 .L0 +000000000000366a l .text 0000000000000000 .L0 +000000000000366a l .text 0000000000000000 .L0 +000000000000366c l .text 0000000000000000 .L0 +000000000000366e l .text 0000000000000000 .L0 +000000000000368a l .text 0000000000000000 .L0 +0000000000003696 l .text 0000000000000000 .L0 +0000000000003696 l .text 0000000000000000 .L0 +000000000000369a l .text 0000000000000000 .L0 +000000000000369a l .text 0000000000000000 .L0 +000000000000369c l .text 0000000000000000 .L0 +000000000000369e l .text 0000000000000000 .L0 +00000000000036ae l .text 0000000000000000 .L0 +00000000000036b6 l .text 0000000000000000 .L0 +00000000000036be l .text 0000000000000000 .L0 +00000000000036c2 l .text 0000000000000000 .L0 +00000000000036c6 l .text 0000000000000000 .L0 +00000000000036c8 l .text 0000000000000000 .L0 +00000000000036c8 l .text 0000000000000000 .L0 +00000000000036d6 l .text 0000000000000000 .L0 +00000000000036d8 l .text 0000000000000000 .L0 +00000000000036d8 l .text 0000000000000000 .L0 +00000000000036dc l .text 0000000000000000 .L0 +00000000000036e0 l .text 0000000000000000 .L0 +00000000000036e4 l .text 0000000000000000 .L0 +00000000000036e4 l .text 0000000000000000 .L0 +00000000000036e4 l .text 0000000000000000 .L0 +00000000000036e4 l .text 0000000000000000 .L0 +00000000000036e4 l .text 0000000000000000 .L0 +00000000000036e8 l .text 0000000000000000 .L0 +00000000000036ee l .text 0000000000000000 .L0 +00000000000036ee l .text 0000000000000000 .L0 +00000000000036fe l .text 0000000000000000 .L0 +0000000000003700 l .text 0000000000000000 .L0 +000000000000370a l .text 0000000000000000 .L0 +000000000000370a l .text 0000000000000000 .L0 +0000000000003714 l .text 0000000000000000 .L0 +0000000000003716 l .text 0000000000000000 .L0 +0000000000003716 l .text 0000000000000000 .L0 +0000000000003716 l .text 0000000000000000 .L0 +000000000000371a l .text 0000000000000000 .L0 +000000000000371c l .text 0000000000000000 .L0 +000000000000371e l .text 0000000000000000 .L0 +0000000000003720 l .text 0000000000000000 .L0 +000000000000372c l .text 0000000000000000 .L0 +000000000000372c l .text 0000000000000000 .L0 +000000000000372c l .text 0000000000000000 .L0 +000000000000372e l .text 0000000000000000 .L0 +0000000000003738 l .text 0000000000000000 .L0 +000000000000373c l .text 0000000000000000 .L0 +000000000000373c l .text 0000000000000000 .L0 +0000000000003740 l .text 0000000000000000 .L0 +0000000000003740 l .text 0000000000000000 .L0 +000000000000374c l .text 0000000000000000 .L0 +000000000000374e l .text 0000000000000000 .L0 +000000000000374e l .text 0000000000000000 .L0 +0000000000003758 l .text 0000000000000000 .L0 +000000000000375a l .text 0000000000000000 .L0 +000000000000375a l .text 0000000000000000 .L0 +0000000000003764 l .text 0000000000000000 .L0 +0000000000003766 l .text 0000000000000000 .L0 +0000000000003766 l .text 0000000000000000 .L0 +0000000000003766 l .text 0000000000000000 .L0 +000000000000376a l .text 0000000000000000 .L0 +0000000000003770 l .text 0000000000000000 .L0 +0000000000003774 l .text 0000000000000000 .L0 +0000000000003774 l .text 0000000000000000 .L0 +000000000000377a l .text 0000000000000000 .L0 +0000000000003782 l .text 0000000000000000 .L0 +0000000000003786 l .text 0000000000000000 .L0 +0000000000003786 l .text 0000000000000000 .L0 +0000000000003794 l .text 0000000000000000 .L0 +0000000000003796 l .text 0000000000000000 .L0 +00000000000037a0 l .text 0000000000000000 .L0 +00000000000037ac l .text 0000000000000000 .L0 +00000000000037ac l .text 0000000000000000 .L0 +00000000000037b0 l .text 0000000000000000 .L0 +00000000000037b0 l .text 0000000000000000 .L0 +00000000000037b0 l .text 0000000000000000 .L0 +00000000000037b0 l .text 0000000000000000 .L0 +00000000000037b0 l .text 0000000000000000 .L0 +00000000000037b0 l .text 0000000000000000 .L0 +00000000000037b0 l .text 0000000000000000 .L0 +00000000000037be l .text 0000000000000000 .L0 +00000000000037c4 l .text 0000000000000000 .L0 +00000000000037cc l .text 0000000000000000 .L0 +00000000000037cc l .text 0000000000000000 .L0 +00000000000037d2 l .text 0000000000000000 .L0 +00000000000037d2 l .text 0000000000000000 .L0 +00000000000037e6 l .text 0000000000000000 .L0 +00000000000037ea l .text 0000000000000000 .L0 +00000000000037ec l .text 0000000000000000 .L0 +00000000000037ee l .text 0000000000000000 .L0 +00000000000037f2 l .text 0000000000000000 .L0 +0000000000003802 l .text 0000000000000000 .L0 +0000000000003804 l .text 0000000000000000 .L0 +0000000000003806 l .text 0000000000000000 .L0 +0000000000003806 l .text 0000000000000000 .L0 +0000000000003816 l .text 0000000000000000 .L0 +0000000000003818 l .text 0000000000000000 .L0 +000000000000381a l .text 0000000000000000 .L0 +000000000000381c l .text 0000000000000000 .L0 +0000000000003826 l .text 0000000000000000 .L0 +0000000000003826 l .text 0000000000000000 .L0 +000000000000382a l .text 0000000000000000 .L0 +000000000000382a l .text 0000000000000000 .L0 +000000000000382a l .text 0000000000000000 .L0 +000000000000382a l .text 0000000000000000 .L0 +000000000000382a l .text 0000000000000000 .L0 +000000000000382e l .text 0000000000000000 .L0 +000000000000382e l .text 0000000000000000 .L0 +0000000000003830 l .text 0000000000000000 .L0 +0000000000003832 l .text 0000000000000000 .L0 +0000000000003844 l .text 0000000000000000 .L0 +0000000000003844 l .text 0000000000000000 .L0 +0000000000003846 l .text 0000000000000000 .L0 +0000000000003850 l .text 0000000000000000 .L0 +0000000000003850 l .text 0000000000000000 .L0 +0000000000003854 l .text 0000000000000000 .L0 +000000000000385e l .text 0000000000000000 .L0 +000000000000385e l .text 0000000000000000 .L0 +0000000000003862 l .text 0000000000000000 .L0 +0000000000003866 l .text 0000000000000000 .L0 +0000000000001508 l .debug_frame 0000000000000000 .L0 +00000000000034f4 l .text 0000000000000000 .L0 +000000000000359e l .text 0000000000000000 .L0 +000000000000359e l .text 0000000000000000 .L0 +00000000000035ca l .text 0000000000000000 .L0 +00000000000035ca l .text 0000000000000000 .L0 +00000000000035ec l .text 0000000000000000 .L0 +00000000000035ec l .text 0000000000000000 .L0 +000000000000362a l .text 0000000000000000 .L0 +000000000000362a l .text 0000000000000000 .L0 +0000000000003632 l .text 0000000000000000 .L0 +0000000000003632 l .text 0000000000000000 .L0 +00000000000037b0 l .text 0000000000000000 .L0 +00000000000037b0 l .text 0000000000000000 .L0 +0000000000003866 l .text 0000000000000000 .L0 +00000000000034f8 l .text 0000000000000000 .L0 +0000000000003518 l .text 0000000000000000 .L0 +0000000000003502 l .text 0000000000000000 .L0 +000000000000359c l .text 0000000000000000 .L0 +0000000000003524 l .text 0000000000000000 .L0 +00000000000035ae l .text 0000000000000000 .L0 +00000000000035a6 l .text 0000000000000000 .L0 +0000000000003622 l .text 0000000000000000 .L0 +00000000000035f4 l .text 0000000000000000 .L0 +0000000000003670 l .text 0000000000000000 .L0 +000000000000364a l .text 0000000000000000 .L0 +0000000000003834 l .text 0000000000000000 .L0 +00000000000037be l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 nsh_command.c +0000000000003866 l F .text 000000000000001a cmd_unrecognized +0000000000003880 l F .text 0000000000000004 cmd_true +0000000000003884 l F .text 0000000000000004 cmd_false +0000000000003888 l F .text 000000000000000a cmd_exit +0000000000003892 l F .text 00000000000000e8 cmd_expr +000000000000397a l F .text 000000000000001c help_showcmd +0000000000003996 l F .text 0000000000000066 help_cmd.isra.0 +00000000000039fc l F .text 00000000000002e0 cmd_help +000000000000b7b8 l O .rodata 0000000000000660 g_cmdmap +000000000000386e l .text 0000000000000000 .L0 +000000000000b060 l .rodata 0000000000000000 .LC0 +00000000000038aa l .text 0000000000000000 .L0 +000000000000b090 l .rodata 0000000000000000 .LC1 +00000000000038e0 l .text 0000000000000000 .L0 +000000000000b0a8 l .rodata 0000000000000000 .LC2 +000000000000390c l .text 0000000000000000 .L0 +000000000000b0dc l .rodata 0000000000000000 .L14 +0000000000003930 l .text 0000000000000000 .L0 +000000000000b0d8 l .rodata 0000000000000000 .LC4 +0000000000003944 l .text 0000000000000000 .L0 +000000000000b0c0 l .rodata 0000000000000000 .LC3 +0000000000003970 l .text 0000000000000000 .L0 +00000000000038c2 l .text 0000000000000000 .L8 +00000000000038ee l .text 0000000000000000 .L10 +00000000000038b4 l .text 0000000000000000 .L23 +000000000000391a l .text 0000000000000000 .L11 +0000000000003970 l .text 0000000000000000 .L12 +00000000000038b6 l .text 0000000000000000 .L9 +0000000000003944 l .text 0000000000000000 .L19 +000000000000390c l .text 0000000000000000 .L25 +0000000000003914 l .text 0000000000000000 .L24 +0000000000003968 l .text 0000000000000000 .L18 +000000000000395a l .text 0000000000000000 .L17 +0000000000003942 l .text 0000000000000000 .L16 +0000000000003954 l .text 0000000000000000 .L15 +0000000000003960 l .text 0000000000000000 .L13 +000000000000b108 l .rodata 0000000000000000 .LC5 +0000000000003982 l .text 0000000000000000 .L0 +000000000000b118 l .rodata 0000000000000000 .LC6 +000000000000398c l .text 0000000000000000 .L0 +000000000000398c l .text 0000000000000000 .L27 +000000000000b7b8 l .rodata 0000000000000000 .LANCHOR0 +00000000000039a2 l .text 0000000000000000 .L0 +00000000000039b8 l .text 0000000000000000 .L0 +000000000000b120 l .rodata 0000000000000000 .LC7 +00000000000039d6 l .text 0000000000000000 .L0 +00000000000039c4 l .text 0000000000000000 .L31 +00000000000039f6 l .text 0000000000000000 .L30 +00000000000039aa l .text 0000000000000000 .L29 +000000000000b130 l .rodata 0000000000000000 .LC8 +0000000000003a24 l .text 0000000000000000 .L0 +000000000000b138 l .rodata 0000000000000000 .LC9 +0000000000003a4a l .text 0000000000000000 .L0 +000000000000b150 l .rodata 0000000000000000 .LC10 +0000000000003a58 l .text 0000000000000000 .L0 +000000000000b190 l .rodata 0000000000000000 .LC11 +0000000000003a66 l .text 0000000000000000 .L0 +000000000000b198 l .rodata 0000000000000000 .LC12 +0000000000003a74 l .text 0000000000000000 .L0 +000000000000b1a8 l .rodata 0000000000000000 .LC13 +0000000000003a82 l .text 0000000000000000 .L0 +000000000000b1b0 l .rodata 0000000000000000 .LC14 +0000000000003a90 l .text 0000000000000000 .L0 +000000000000b1d0 l .rodata 0000000000000000 .LC15 +0000000000003a9e l .text 0000000000000000 .L0 +0000000000003aac l .text 0000000000000000 .L0 +000000000000b1d8 l .rodata 0000000000000000 .LC16 +0000000000003aba l .text 0000000000000000 .L0 +0000000000003ac8 l .text 0000000000000000 .L0 +000000000000b1e0 l .rodata 0000000000000000 .LC17 +0000000000003ad6 l .text 0000000000000000 .L0 +000000000000b1f0 l .rodata 0000000000000000 .LC18 +0000000000003ae4 l .text 0000000000000000 .L0 +0000000000003af2 l .text 0000000000000000 .L0 +000000000000b1f8 l .rodata 0000000000000000 .LC19 +0000000000003b00 l .text 0000000000000000 .L0 +0000000000003b0e l .text 0000000000000000 .L0 +000000000000b208 l .rodata 0000000000000000 .LC20 +0000000000003b1c l .text 0000000000000000 .L0 +0000000000003b2a l .text 0000000000000000 .L0 +0000000000003b38 l .text 0000000000000000 .L0 +0000000000003b46 l .text 0000000000000000 .L0 +000000000000b218 l .rodata 0000000000000000 .LC21 +0000000000003b88 l .text 0000000000000000 .L0 +0000000000003b94 l .text 0000000000000000 .L0 +000000000000b230 l .rodata 0000000000000000 .LC22 +0000000000003bc6 l .text 0000000000000000 .L0 +000000000000b238 l .rodata 0000000000000000 .LC23 +0000000000003bda l .text 0000000000000000 .L0 +0000000000003be4 l .text 0000000000000000 .L0 +0000000000003bee l .text 0000000000000000 .L0 +0000000000003bc6 l .text 0000000000000000 .L34 +0000000000003cd2 l .text 0000000000000000 .L35 +0000000000003bc4 l .text 0000000000000000 .L36 +0000000000003b86 l .text 0000000000000000 .L37 +0000000000003a3e l .text 0000000000000000 .L51 +0000000000003b9c l .text 0000000000000000 .L39 +0000000000003b60 l .text 0000000000000000 .L57 +0000000000003c9c l .text 0000000000000000 .L45 +0000000000003b54 l .text 0000000000000000 .L50 +0000000000003c10 l .text 0000000000000000 .L40 +0000000000003bfa l .text 0000000000000000 .L41 +0000000000003c32 l .text 0000000000000000 .L42 +0000000000003cae l .text 0000000000000000 .L47 +0000000000003bb2 l .text 0000000000000000 .L46 +0000000000003c5c l .text 0000000000000000 .L44 +0000000000003c48 l .text 0000000000000000 .L43 +0000000000003b80 l .text 0000000000000000 .L54 +0000000000003a48 l .text 0000000000000000 .L52 +0000000000003cf0 l .text 0000000000000000 .L0 +0000000000003cfc l .text 0000000000000000 .L0 +0000000000003d20 l .text 0000000000000000 .L0 +0000000000003d46 l .text 0000000000000000 .L0 +0000000000003d06 l .text 0000000000000000 .L66 +0000000000003d52 l .text 0000000000000000 .L65 +0000000000003d66 l .text 0000000000000000 .L61 +0000000000003d3c l .text 0000000000000000 .L62 +0000000000003d50 l .text 0000000000000000 .L64 +0000000000003d28 l .text 0000000000000000 .L68 +0000000000003cf8 l .text 0000000000000000 .L60 +000000000000b240 l .rodata 0000000000000000 .LC24 +000000000000b248 l .rodata 0000000000000000 .LC25 +000000000000b258 l .rodata 0000000000000000 .LC26 +000000000000b260 l .rodata 0000000000000000 .LC27 +000000000000b270 l .rodata 0000000000000000 .LC28 +000000000000b278 l .rodata 0000000000000000 .LC29 +000000000000b280 l .rodata 0000000000000000 .LC30 +000000000000b298 l .rodata 0000000000000000 .LC31 +000000000000b2a0 l .rodata 0000000000000000 .LC32 +000000000000b2b8 l .rodata 0000000000000000 .LC33 +000000000000b2c8 l .rodata 0000000000000000 .LC34 +000000000000b2e0 l .rodata 0000000000000000 .LC35 +000000000000b2e8 l .rodata 0000000000000000 .LC36 +000000000000b2f0 l .rodata 0000000000000000 .LC37 +000000000000b310 l .rodata 0000000000000000 .LC38 +000000000000b318 l .rodata 0000000000000000 .LC39 +000000000000b330 l .rodata 0000000000000000 .LC40 +000000000000b338 l .rodata 0000000000000000 .LC41 +000000000000b358 l .rodata 0000000000000000 .LC42 +000000000000b360 l .rodata 0000000000000000 .LC43 +000000000000b370 l .rodata 0000000000000000 .LC44 +000000000000b378 l .rodata 0000000000000000 .LC45 +000000000000b380 l .rodata 0000000000000000 .LC46 +000000000000b388 l .rodata 0000000000000000 .LC47 +000000000000b3e0 l .rodata 0000000000000000 .LC48 +000000000000b3e8 l .rodata 0000000000000000 .LC49 +000000000000b3f0 l .rodata 0000000000000000 .LC50 +000000000000b3f8 l .rodata 0000000000000000 .LC51 +000000000000b418 l .rodata 0000000000000000 .LC52 +000000000000b420 l .rodata 0000000000000000 .LC53 +000000000000b450 l .rodata 0000000000000000 .LC54 +000000000000b458 l .rodata 0000000000000000 .LC55 +000000000000b460 l .rodata 0000000000000000 .LC56 +000000000000b470 l .rodata 0000000000000000 .LC57 +000000000000b478 l .rodata 0000000000000000 .LC58 +000000000000b480 l .rodata 0000000000000000 .LC59 +000000000000b4a8 l .rodata 0000000000000000 .LC60 +000000000000b4b0 l .rodata 0000000000000000 .LC61 +000000000000b4b8 l .rodata 0000000000000000 .LC62 +000000000000b4c0 l .rodata 0000000000000000 .LC63 +000000000000b4c8 l .rodata 0000000000000000 .LC64 +000000000000b4d8 l .rodata 0000000000000000 .LC65 +000000000000b4e0 l .rodata 0000000000000000 .LC66 +000000000000b510 l .rodata 0000000000000000 .LC67 +000000000000b518 l .rodata 0000000000000000 .LC68 +000000000000b530 l .rodata 0000000000000000 .LC69 +000000000000b538 l .rodata 0000000000000000 .LC70 +000000000000b550 l .rodata 0000000000000000 .LC71 +000000000000b558 l .rodata 0000000000000000 .LC72 +000000000000b568 l .rodata 0000000000000000 .LC73 +000000000000b570 l .rodata 0000000000000000 .LC74 +000000000000b5a0 l .rodata 0000000000000000 .LC75 +000000000000b5a8 l .rodata 0000000000000000 .LC76 +000000000000b5e8 l .rodata 0000000000000000 .LC77 +000000000000b5f0 l .rodata 0000000000000000 .LC78 +000000000000b608 l .rodata 0000000000000000 .LC79 +000000000000b610 l .rodata 0000000000000000 .LC80 +000000000000b618 l .rodata 0000000000000000 .LC81 +000000000000b620 l .rodata 0000000000000000 .LC82 +000000000000b658 l .rodata 0000000000000000 .LC83 +000000000000b660 l .rodata 0000000000000000 .LC84 +000000000000b668 l .rodata 0000000000000000 .LC85 +000000000000b670 l .rodata 0000000000000000 .LC86 +000000000000b688 l .rodata 0000000000000000 .LC87 +000000000000b690 l .rodata 0000000000000000 .LC88 +000000000000b6a0 l .rodata 0000000000000000 .LC89 +000000000000b6a8 l .rodata 0000000000000000 .LC90 +000000000000b6d0 l .rodata 0000000000000000 .LC91 +000000000000b6d8 l .rodata 0000000000000000 .LC92 +000000000000b6e0 l .rodata 0000000000000000 .LC93 +000000000000b6e8 l .rodata 0000000000000000 .LC94 +000000000000b6f0 l .rodata 0000000000000000 .LC95 +000000000000b700 l .rodata 0000000000000000 .LC96 +000000000000b708 l .rodata 0000000000000000 .LC97 +000000000000b718 l .rodata 0000000000000000 .LC98 +000000000000b720 l .rodata 0000000000000000 .LC99 +000000000000b730 l .rodata 0000000000000000 .LC100 +000000000000b748 l .rodata 0000000000000000 .LC101 +000000000000b750 l .rodata 0000000000000000 .LC102 +000000000000b760 l .rodata 0000000000000000 .LC103 +000000000000b768 l .rodata 0000000000000000 .LC104 +000000000000b770 l .rodata 0000000000000000 .LC105 +000000000000b778 l .rodata 0000000000000000 .LC106 +000000000000b780 l .rodata 0000000000000000 .LC107 +000000000000b788 l .rodata 0000000000000000 .LC108 +000000000000b790 l .rodata 0000000000000000 .LC109 +000000000000b798 l .rodata 0000000000000000 .LC110 +0000000000004f78 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000001001b l .debug_str 0000000000000000 .LASF114 +0000000000010235 l .debug_str 0000000000000000 .LASF115 +000000000001027a l .debug_str 0000000000000000 .LASF116 +00000000000017a0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000000c162 l .debug_line 0000000000000000 .Ldebug_line0 +0000000000010402 l .debug_str 0000000000000000 .LASF0 +000000000001040e l .debug_str 0000000000000000 .LASF3 +000000000001038c l .debug_str 0000000000000000 .LASF1 +0000000000010313 l .debug_str 0000000000000000 .LASF2 +000000000001022b l .debug_str 0000000000000000 .LASF4 +0000000000010417 l .debug_str 0000000000000000 .LASF5 +000000000000ffc0 l .debug_str 0000000000000000 .LASF6 +000000000001032c l .debug_str 0000000000000000 .LASF7 +0000000000010360 l .debug_str 0000000000000000 .LASF8 +00000000000103f9 l .debug_str 0000000000000000 .LASF9 +0000000000010164 l .debug_str 0000000000000000 .LASF10 +0000000000010135 l .debug_str 0000000000000000 .LASF11 +0000000000010223 l .debug_str 0000000000000000 .LASF12 +00000000000102ea l .debug_str 0000000000000000 .LASF13 +000000000001019a l .debug_str 0000000000000000 .LASF14 +0000000000010209 l .debug_str 0000000000000000 .LASF15 +00000000000101ed l .debug_str 0000000000000000 .LASF16 +000000000000ff6a l .debug_str 0000000000000000 .LASF17 +0000000000010243 l .debug_str 0000000000000000 .LASF18 +00000000000102de l .debug_str 0000000000000000 .LASF19 +000000000001045e l .debug_str 0000000000000000 .LASF21 +0000000000010326 l .debug_str 0000000000000000 .LASF23 +0000000000010469 l .debug_str 0000000000000000 .LASF20 +000000000000ff88 l .debug_str 0000000000000000 .LASF22 +000000000000ffed l .debug_str 0000000000000000 .LASF24 +00000000000103b1 l .debug_str 0000000000000000 .LASF25 +00000000000101ba l .debug_str 0000000000000000 .LASF26 +0000000000010159 l .debug_str 0000000000000000 .LASF27 +00000000000101a8 l .debug_str 0000000000000000 .LASF28 +00000000000102b6 l .debug_str 0000000000000000 .LASF29 +000000000000fffa l .debug_str 0000000000000000 .LASF30 +0000000000010102 l .debug_str 0000000000000000 .LASF31 +000000000001021a l .debug_str 0000000000000000 .LASF32 +00000000000102ab l .debug_str 0000000000000000 .LASF33 +0000000000010298 l .debug_str 0000000000000000 .LASF34 +000000000001043b l .debug_str 0000000000000000 .LASF35 +000000000001031d l .debug_str 0000000000000000 .LASF36 +00000000000102f3 l .debug_str 0000000000000000 .LASF37 +0000000000010308 l .debug_str 0000000000000000 .LASF38 +000000000001014c l .debug_str 0000000000000000 .LASF39 +0000000000010203 l .debug_str 0000000000000000 .LASF40 +00000000000102fc l .debug_str 0000000000000000 .LASF41 +000000000001037d l .debug_str 0000000000000000 .LASF42 +0000000000010257 l .debug_str 0000000000000000 .LASF43 +0000000000010115 l .debug_str 0000000000000000 .LASF44 +000000000001033e l .debug_str 0000000000000000 .LASF45 +00000000000100f9 l .debug_str 0000000000000000 .LASF46 +000000000000ffb7 l .debug_str 0000000000000000 .LASF47 +00000000000101b2 l .debug_str 0000000000000000 .LASF48 +0000000000010335 l .debug_str 0000000000000000 .LASF49 +00000000000101e4 l .debug_str 0000000000000000 .LASF50 +0000000000010344 l .debug_str 0000000000000000 .LASF51 +000000000000ff7d l .debug_str 0000000000000000 .LASF52 +000000000000ffb1 l .debug_str 0000000000000000 .LASF117 +00000000000100cb l .debug_str 0000000000000000 .LASF53 +000000000000ffcd l .debug_str 0000000000000000 .LASF54 +0000000000010355 l .debug_str 0000000000000000 .LASF55 +000000000001016c l .debug_str 0000000000000000 .LASF56 +0000000000010172 l .debug_str 0000000000000000 .LASF57 +0000000000010372 l .debug_str 0000000000000000 .LASF58 +0000000000010006 l .debug_str 0000000000000000 .LASF59 +000000000000ffaa l .debug_str 0000000000000000 .LASF60 +000000000001042a l .debug_str 0000000000000000 .LASF61 +0000000000010251 l .debug_str 0000000000000000 .LASF62 +00000000000101de l .debug_str 0000000000000000 .LASF63 +00000000000100d7 l .debug_str 0000000000000000 .LASF64 +000000000000ff93 l .debug_str 0000000000000000 .LASF65 +000000000001039a l .debug_str 0000000000000000 .LASF66 +0000000000010271 l .debug_str 0000000000000000 .LASF67 +00000000000102d0 l .debug_str 0000000000000000 .LASF68 +00000000000101fe l .debug_str 0000000000000000 .LASF69 +000000000000ffa1 l .debug_str 0000000000000000 .LASF70 +000000000000ff65 l .debug_str 0000000000000000 .LASF71 +000000000001035a l .debug_str 0000000000000000 .LASF72 +000000000000ffd2 l .debug_str 0000000000000000 .LASF73 +0000000000010385 l .debug_str 0000000000000000 .LASF74 +0000000000010189 l .debug_str 0000000000000000 .LASF75 +00000000000101c0 l .debug_str 0000000000000000 .LASF76 +00000000000103e8 l .debug_str 0000000000000000 .LASF77 +0000000000010268 l .debug_str 0000000000000000 .LASF78 +0000000000010013 l .debug_str 0000000000000000 .LASF79 +0000000000010260 l .debug_str 0000000000000000 .LASF80 +0000000000010126 l .debug_str 0000000000000000 .LASF81 +000000000001034f l .debug_str 0000000000000000 .LASF82 +00000000000100f0 l .debug_str 0000000000000000 .LASF86 +00000000000101f2 l .debug_str 0000000000000000 .LASF118 +0000000000003cdc l .text 0000000000000000 .LFB17 +0000000000003d6c l .text 0000000000000000 .LFE17 +000000000000ffdc l .debug_str 0000000000000000 .LASF83 +000000000000b933 l .debug_loc 0000000000000000 .LLST36 +00000000000102cb l .debug_str 0000000000000000 .LASF84 +000000000000b9ce l .debug_loc 0000000000000000 .LLST37 +00000000000102d9 l .debug_str 0000000000000000 .LASF85 +000000000000ba07 l .debug_loc 0000000000000000 .LLST38 +00000000000103aa l .debug_str 0000000000000000 .LASF87 +000000000000baa2 l .debug_loc 0000000000000000 .LLST39 +000000000000bb07 l .debug_loc 0000000000000000 .LLST40 +000000000000bb9f l .debug_loc 0000000000000000 .LLST41 +0000000000003d12 l .text 0000000000000000 .LVL128 +0000000000003d2c l .text 0000000000000000 .LVL130 +0000000000003d66 l .text 0000000000000000 .LVL141 +000000000001047b l .debug_str 0000000000000000 .LASF92 +0000000000003892 l .text 0000000000000000 .LFB16 +000000000000397a l .text 0000000000000000 .LFE16 +000000000000bbc2 l .debug_loc 0000000000000000 .LLST8 +000000000000bc21 l .debug_loc 0000000000000000 .LLST9 +000000000000bc83 l .debug_loc 0000000000000000 .LLST10 +00000000000103bd l .debug_str 0000000000000000 .LASF88 +00000000000103c6 l .debug_str 0000000000000000 .LASF89 +000000000000bcf5 l .debug_loc 0000000000000000 .LLST11 +000000000001012e l .debug_str 0000000000000000 .LASF90 +000000000000bde9 l .debug_loc 0000000000000000 .LLST12 +000000000001000c l .debug_str 0000000000000000 .LASF91 +00000000000038b4 l .text 0000000000000000 .LVL14 +00000000000038d2 l .text 0000000000000000 .LVL20 +00000000000038ec l .text 0000000000000000 .LVL22 +00000000000038fe l .text 0000000000000000 .LVL23 +0000000000003918 l .text 0000000000000000 .LVL25 +0000000000003950 l .text 0000000000000000 .LVL29 +00000000000102a2 l .debug_str 0000000000000000 .LASF93 +0000000000003888 l .text 0000000000000000 .LFB15 +0000000000003892 l .text 0000000000000000 .LFE15 +000000000000be70 l .debug_loc 0000000000000000 .LLST5 +000000000000bea9 l .debug_loc 0000000000000000 .LLST6 +000000000000bee2 l .debug_loc 0000000000000000 .LLST7 +0000000000003892 l .text 0000000000000000 .LVL10 +00000000000100dd l .debug_str 0000000000000000 .LASF94 +0000000000003884 l .text 0000000000000000 .LFB14 +0000000000003888 l .text 0000000000000000 .LFE14 +000000000000bf1b l .debug_loc 0000000000000000 .LLST4 +00000000000102c2 l .debug_str 0000000000000000 .LASF95 +0000000000003880 l .text 0000000000000000 .LFB13 +0000000000003884 l .text 0000000000000000 .LFE13 +000000000000bf54 l .debug_loc 0000000000000000 .LLST3 +00000000000103cf l .debug_str 0000000000000000 .LASF96 +0000000000003866 l .text 0000000000000000 .LFB12 +0000000000003880 l .text 0000000000000000 .LFE12 +000000000000bf8d l .debug_loc 0000000000000000 .LLST0 +000000000000bfc6 l .debug_loc 0000000000000000 .LLST1 +000000000000bfff l .debug_loc 0000000000000000 .LLST2 +0000000000003878 l .text 0000000000000000 .LVL3 +0000000000010432 l .debug_str 0000000000000000 .LASF97 +00000000000039fc l .text 0000000000000000 .LFB11 +0000000000003cdc l .text 0000000000000000 .LFE11 +000000000000c038 l .debug_loc 0000000000000000 .LLST18 +000000000000c097 l .debug_loc 0000000000000000 .LLST19 +000000000000c0d0 l .debug_loc 0000000000000000 .LLST20 +000000000000c16e l .debug_loc 0000000000000000 .LLST21 +00000000000103e0 l .debug_str 0000000000000000 .LASF98 +000000000000c1f3 l .debug_loc 0000000000000000 .LLST22 +000000000000c252 l .debug_loc 0000000000000000 .LLST23 +0000000000003a48 l .text 0000000000000000 .LBB14 +0000000000003b52 l .text 0000000000000000 .LBE14 +000000000000c2b1 l .debug_loc 0000000000000000 .LLST24 +0000000000003a56 l .text 0000000000000000 .LVL66 +0000000000003a64 l .text 0000000000000000 .LVL67 +0000000000003a72 l .text 0000000000000000 .LVL68 +0000000000003a80 l .text 0000000000000000 .LVL69 +0000000000003a8e l .text 0000000000000000 .LVL70 +0000000000003a9c l .text 0000000000000000 .LVL71 +0000000000003aaa l .text 0000000000000000 .LVL72 +0000000000003ab8 l .text 0000000000000000 .LVL73 +0000000000003ac6 l .text 0000000000000000 .LVL74 +0000000000003ad4 l .text 0000000000000000 .LVL75 +0000000000003ae2 l .text 0000000000000000 .LVL76 +0000000000003af0 l .text 0000000000000000 .LVL77 +0000000000003afe l .text 0000000000000000 .LVL78 +0000000000003b0c l .text 0000000000000000 .LVL79 +0000000000003b1a l .text 0000000000000000 .LVL80 +0000000000003b28 l .text 0000000000000000 .LVL81 +0000000000003b36 l .text 0000000000000000 .LVL82 +0000000000003b44 l .text 0000000000000000 .LVL83 +0000000000003b52 l .text 0000000000000000 .LVL84 +0000000000003b94 l .text 0000000000000000 .LBB16 +0000000000003bb2 l .text 0000000000000000 .LBE16 +000000000000c2d4 l .debug_loc 0000000000000000 .LLST25 +000000000000c2f7 l .debug_loc 0000000000000000 .LLST26 +0000000000003ba8 l .text 0000000000000000 .LVL91 +0000000000003bb2 l .text 0000000000000000 .LBB18 +000000000000c336 l .debug_loc 0000000000000000 .LLST27 +000000000000c36c l .debug_loc 0000000000000000 .LLST28 +000000000000c3dc l .debug_loc 0000000000000000 .LLST29 +000000000000c438 l .debug_loc 0000000000000000 .LLST30 +000000000000c46e l .debug_loc 0000000000000000 .LLST31 +000000000000c4a4 l .debug_loc 0000000000000000 .LLST32 +000000000000c4da l .debug_loc 0000000000000000 .LLST33 +000000000000c524 l .debug_loc 0000000000000000 .LLST34 +000000000000c5c3 l .debug_loc 0000000000000000 .LLST35 +0000000000003c06 l .text 0000000000000000 .LVL100 +0000000000003c86 l .text 0000000000000000 .LVL111 +0000000000003c92 l .text 0000000000000000 .LVL113 +0000000000003cce l .text 0000000000000000 .LVL121 +0000000000003a36 l .text 0000000000000000 .LVL60 +0000000000003b60 l .text 0000000000000000 .LVL85 +0000000000003b94 l .text 0000000000000000 .LVL89 +0000000000003bd8 l .text 0000000000000000 .LVL97 +0000000000003bee l .text 0000000000000000 .LVL98 +0000000000010450 l .debug_str 0000000000000000 .LASF99 +000000000001017c l .debug_str 0000000000000000 .LASF100 +000000000001011d l .debug_str 0000000000000000 .LASF119 +000000000000ff70 l .debug_str 0000000000000000 .LASF101 +0000000000010445 l .debug_str 0000000000000000 .LASF102 +00000000000101d1 l .debug_str 0000000000000000 .LASF103 +000000000001010c l .debug_str 0000000000000000 .LASF104 +00000000000100e7 l .debug_str 0000000000000000 .LASF105 +000000000000ffe1 l .debug_str 0000000000000000 .LASF106 +0000000000010211 l .debug_str 0000000000000000 .LASF107 +00000000000101a1 l .debug_str 0000000000000000 .LASF108 +00000000000103a5 l .debug_str 0000000000000000 .LASF109 +000000000000397a l .text 0000000000000000 .LFB7 +0000000000003996 l .text 0000000000000000 .LFE7 +000000000000c65f l .debug_loc 0000000000000000 .LLST13 +000000000000c6c1 l .debug_loc 0000000000000000 .LLST14 +000000000000398c l .text 0000000000000000 .LBB6 +0000000000003996 l .text 0000000000000000 .LBE6 +0000000000003996 l .text 0000000000000000 .LVL43 +000000000000398c l .text 0000000000000000 .LVL41 +0000000000003996 l .text 0000000000000000 .LFB19 +00000000000039fc l .text 0000000000000000 .LFE19 +000000000000c723 l .debug_loc 0000000000000000 .LLST15 +000000000000c7d1 l .debug_loc 0000000000000000 .LLST16 +000000000000c892 l .debug_loc 0000000000000000 .LLST17 +00000000000039c4 l .text 0000000000000000 .LVL48 +00000000000039d0 l .text 0000000000000000 .LVL49 +00000000000039e2 l .text 0000000000000000 .LVL51 +00000000000039f6 l .text 0000000000000000 .LVL55 +0000000000010474 l .debug_str 0000000000000000 .LASF110 +00000000000103b6 l .debug_str 0000000000000000 .LASF111 +000000000000ff9a l .debug_str 0000000000000000 .LASF112 +000000000000fff2 l .debug_str 0000000000000000 .LASF113 +0000000000003cdc l .text 0000000000000000 .LVL125 +0000000000003cf8 l .text 0000000000000000 .LVL127 +0000000000003d30 l .text 0000000000000000 .LVL131 +0000000000003d3c l .text 0000000000000000 .LVL135 +0000000000003d56 l .text 0000000000000000 .LVL137 +0000000000003cec l .text 0000000000000000 .LVL126 +0000000000003d36 l .text 0000000000000000 .LVL133 +0000000000003d60 l .text 0000000000000000 .LVL140 +0000000000003d32 l .text 0000000000000000 .LVL132 +0000000000003d5a l .text 0000000000000000 .LVL138 +0000000000003d16 l .text 0000000000000000 .LVL129 +0000000000003d3a l .text 0000000000000000 .LVL134 +0000000000003d5c l .text 0000000000000000 .LVL139 +0000000000003d52 l .text 0000000000000000 .LVL136 +0000000000003892 l .text 0000000000000000 .LVL11 +00000000000038bc l .text 0000000000000000 .LVL15 +00000000000038c2 l .text 0000000000000000 .LVL17 +00000000000038b2 l .text 0000000000000000 .LVL13 +00000000000038ca l .text 0000000000000000 .LVL19 +00000000000038aa l .text 0000000000000000 .LVL12 +00000000000038be l .text 0000000000000000 .LVL16 +00000000000038c8 l .text 0000000000000000 .LVL18 +0000000000003906 l .text 0000000000000000 .LVL24 +000000000000391a l .text 0000000000000000 .LVL26 +0000000000003944 l .text 0000000000000000 .LVL27 +000000000000394e l .text 0000000000000000 .LVL28 +0000000000003954 l .text 0000000000000000 .LVL30 +0000000000003958 l .text 0000000000000000 .LVL31 +000000000000395a l .text 0000000000000000 .LVL32 +000000000000395e l .text 0000000000000000 .LVL33 +0000000000003960 l .text 0000000000000000 .LVL34 +0000000000003966 l .text 0000000000000000 .LVL35 +0000000000003968 l .text 0000000000000000 .LVL36 +000000000000396e l .text 0000000000000000 .LVL37 +0000000000003970 l .text 0000000000000000 .LVL38 +0000000000003888 l .text 0000000000000000 .LVL8 +0000000000003890 l .text 0000000000000000 .LVL9 +0000000000003884 l .text 0000000000000000 .LVL6 +0000000000003886 l .text 0000000000000000 .LVL7 +0000000000003880 l .text 0000000000000000 .LVL4 +0000000000003882 l .text 0000000000000000 .LVL5 +0000000000003866 l .text 0000000000000000 .LVL0 +0000000000003876 l .text 0000000000000000 .LVL2 +000000000000386e l .text 0000000000000000 .LVL1 +00000000000039fc l .text 0000000000000000 .LVL57 +0000000000003a22 l .text 0000000000000000 .LVL58 +0000000000003b64 l .text 0000000000000000 .LVL86 +0000000000003b80 l .text 0000000000000000 .LVL87 +0000000000003a2c l .text 0000000000000000 .LVL59 +0000000000003a42 l .text 0000000000000000 .LVL63 +0000000000003b86 l .text 0000000000000000 .LVL88 +0000000000003cd2 l .text 0000000000000000 .LVL123 +0000000000003cda l .text 0000000000000000 .LVL124 +0000000000003a44 l .text 0000000000000000 .LVL64 +0000000000003b9c l .text 0000000000000000 .LVL90 +0000000000003bc4 l .text 0000000000000000 .LVL95 +0000000000003bc6 l .text 0000000000000000 .LVL96 +0000000000003a3e l .text 0000000000000000 .LVL61 +0000000000003a40 l .text 0000000000000000 .LVL62 +0000000000003a48 l .text 0000000000000000 .LVL65 +0000000000003bb2 l .text 0000000000000000 .LVL93 +0000000000003bfa l .text 0000000000000000 .LVL99 +0000000000003c18 l .text 0000000000000000 .LVL104 +0000000000003c20 l .text 0000000000000000 .LVL105 +0000000000003c0a l .text 0000000000000000 .LVL101 +0000000000003c10 l .text 0000000000000000 .LVL102 +0000000000003c48 l .text 0000000000000000 .LVL107 +0000000000003c94 l .text 0000000000000000 .LVL114 +0000000000003c32 l .text 0000000000000000 .LVL106 +0000000000003cd0 l .text 0000000000000000 .LVL122 +0000000000003c4e l .text 0000000000000000 .LVL109 +0000000000003c5c l .text 0000000000000000 .LVL110 +0000000000003ca6 l .text 0000000000000000 .LVL116 +0000000000003c14 l .text 0000000000000000 .LVL103 +0000000000003caa l .text 0000000000000000 .LVL117 +0000000000003bc2 l .text 0000000000000000 .LVL94 +0000000000003c4c l .text 0000000000000000 .LVL108 +0000000000003c88 l .text 0000000000000000 .LVL112 +0000000000003c9c l .text 0000000000000000 .LVL115 +0000000000003cae l .text 0000000000000000 .LVL118 +0000000000003cc2 l .text 0000000000000000 .LVL119 +0000000000003cc6 l .text 0000000000000000 .LVL120 +000000000000397a l .text 0000000000000000 .LVL39 +000000000000398a l .text 0000000000000000 .LVL40 +0000000000003994 l .text 0000000000000000 .LVL42 +0000000000003996 l .text 0000000000000000 .LVL44 +00000000000039aa l .text 0000000000000000 .LVL45 +00000000000039b4 l .text 0000000000000000 .LVL46 +00000000000039e6 l .text 0000000000000000 .LVL52 +00000000000039d4 l .text 0000000000000000 .LVL50 +00000000000039ee l .text 0000000000000000 .LVL54 +00000000000039b8 l .text 0000000000000000 .LVL47 +00000000000039ec l .text 0000000000000000 .LVL53 +000000000001226c l .debug_info 0000000000000000 .Ldebug_info0 +0000000000003bc4 l .text 0000000000000000 .LBE18 +0000000000003bee l .text 0000000000000000 .LBB21 +0000000000003cd2 l .text 0000000000000000 .LBE21 +0000000000003866 l .text 0000000000000000 .L0 +0000000000003880 l .text 0000000000000000 .L0 +0000000000003884 l .text 0000000000000000 .L0 +0000000000003888 l .text 0000000000000000 .L0 +0000000000003892 l .text 0000000000000000 .L0 +000000000000397a l .text 0000000000000000 .L0 +0000000000003996 l .text 0000000000000000 .L0 +00000000000039fc l .text 0000000000000000 .L0 +0000000000003cdc l .text 0000000000000000 .L0 +0000000000003866 l .text 0000000000000000 .L0 +0000000000003866 l .text 0000000000000000 .L0 +0000000000003866 l .text 0000000000000000 .L0 +000000000000386a l .text 0000000000000000 .L0 +0000000000003878 l .text 0000000000000000 .L0 +0000000000003878 l .text 0000000000000000 .L0 +0000000000003880 l .text 0000000000000000 .L0 +0000000000003880 l .text 0000000000000000 .L0 +0000000000003880 l .text 0000000000000000 .L0 +0000000000003880 l .text 0000000000000000 .L0 +0000000000003880 l .text 0000000000000000 .L0 +0000000000003880 l .text 0000000000000000 .L0 +0000000000003884 l .text 0000000000000000 .L0 +0000000000003884 l .text 0000000000000000 .L0 +0000000000003884 l .text 0000000000000000 .L0 +0000000000003884 l .text 0000000000000000 .L0 +0000000000003884 l .text 0000000000000000 .L0 +0000000000003884 l .text 0000000000000000 .L0 +0000000000003888 l .text 0000000000000000 .L0 +0000000000003888 l .text 0000000000000000 .L0 +0000000000003888 l .text 0000000000000000 .L0 +0000000000003888 l .text 0000000000000000 .L0 +0000000000003888 l .text 0000000000000000 .L0 +000000000000388c l .text 0000000000000000 .L0 +0000000000003892 l .text 0000000000000000 .L0 +0000000000003892 l .text 0000000000000000 .L0 +0000000000003892 l .text 0000000000000000 .L0 +0000000000003892 l .text 0000000000000000 .L0 +0000000000003892 l .text 0000000000000000 .L0 +0000000000003892 l .text 0000000000000000 .L0 +0000000000003892 l .text 0000000000000000 .L0 +000000000000389c l .text 0000000000000000 .L0 +000000000000389e l .text 0000000000000000 .L0 +00000000000038a2 l .text 0000000000000000 .L0 +00000000000038a6 l .text 0000000000000000 .L0 +00000000000038b4 l .text 0000000000000000 .L0 +00000000000038b4 l .text 0000000000000000 .L0 +00000000000038b4 l .text 0000000000000000 .L0 +00000000000038b6 l .text 0000000000000000 .L0 +00000000000038c2 l .text 0000000000000000 .L0 +00000000000038c2 l .text 0000000000000000 .L0 +00000000000038d2 l .text 0000000000000000 .L0 +00000000000038d4 l .text 0000000000000000 .L0 +00000000000038d8 l .text 0000000000000000 .L0 +00000000000038d8 l .text 0000000000000000 .L0 +00000000000038de l .text 0000000000000000 .L0 +00000000000038ee l .text 0000000000000000 .L0 +00000000000038ee l .text 0000000000000000 .L0 +00000000000038fe l .text 0000000000000000 .L0 +0000000000003902 l .text 0000000000000000 .L0 +0000000000003906 l .text 0000000000000000 .L0 +0000000000003906 l .text 0000000000000000 .L0 +000000000000390c l .text 0000000000000000 .L0 +0000000000003914 l .text 0000000000000000 .L0 +0000000000003918 l .text 0000000000000000 .L0 +000000000000391a l .text 0000000000000000 .L0 +000000000000391a l .text 0000000000000000 .L0 +0000000000003942 l .text 0000000000000000 .L0 +0000000000003942 l .text 0000000000000000 .L0 +0000000000003944 l .text 0000000000000000 .L0 +0000000000003944 l .text 0000000000000000 .L0 +0000000000003950 l .text 0000000000000000 .L0 +0000000000003950 l .text 0000000000000000 .L0 +0000000000003954 l .text 0000000000000000 .L0 +0000000000003954 l .text 0000000000000000 .L0 +0000000000003958 l .text 0000000000000000 .L0 +000000000000395a l .text 0000000000000000 .L0 +000000000000395a l .text 0000000000000000 .L0 +000000000000395e l .text 0000000000000000 .L0 +0000000000003960 l .text 0000000000000000 .L0 +0000000000003960 l .text 0000000000000000 .L0 +0000000000003962 l .text 0000000000000000 .L0 +0000000000003962 l .text 0000000000000000 .L0 +0000000000003966 l .text 0000000000000000 .L0 +0000000000003968 l .text 0000000000000000 .L0 +0000000000003968 l .text 0000000000000000 .L0 +000000000000396a l .text 0000000000000000 .L0 +000000000000396a l .text 0000000000000000 .L0 +000000000000396e l .text 0000000000000000 .L0 +0000000000003970 l .text 0000000000000000 .L0 +000000000000397a l .text 0000000000000000 .L0 +000000000000397a l .text 0000000000000000 .L0 +000000000000397a l .text 0000000000000000 .L0 +000000000000397c l .text 0000000000000000 .L0 +0000000000003980 l .text 0000000000000000 .L0 +0000000000003982 l .text 0000000000000000 .L0 +000000000000398c l .text 0000000000000000 .L0 +0000000000003996 l .text 0000000000000000 .L0 +000000000000399e l .text 0000000000000000 .L0 +00000000000039a2 l .text 0000000000000000 .L0 +00000000000039aa l .text 0000000000000000 .L0 +00000000000039aa l .text 0000000000000000 .L0 +00000000000039ac l .text 0000000000000000 .L0 +00000000000039ae l .text 0000000000000000 .L0 +00000000000039b2 l .text 0000000000000000 .L0 +00000000000039b8 l .text 0000000000000000 .L0 +00000000000039c0 l .text 0000000000000000 .L0 +00000000000039c2 l .text 0000000000000000 .L0 +00000000000039c4 l .text 0000000000000000 .L0 +00000000000039c4 l .text 0000000000000000 .L0 +00000000000039d0 l .text 0000000000000000 .L0 +00000000000039d4 l .text 0000000000000000 .L0 +00000000000039e2 l .text 0000000000000000 .L0 +00000000000039e4 l .text 0000000000000000 .L0 +00000000000039e8 l .text 0000000000000000 .L0 +00000000000039ea l .text 0000000000000000 .L0 +00000000000039ee l .text 0000000000000000 .L0 +00000000000039f6 l .text 0000000000000000 .L0 +00000000000039f6 l .text 0000000000000000 .L0 +00000000000039fc l .text 0000000000000000 .L0 +00000000000039fc l .text 0000000000000000 .L0 +00000000000039fc l .text 0000000000000000 .L0 +00000000000039fc l .text 0000000000000000 .L0 +00000000000039fc l .text 0000000000000000 .L0 +00000000000039fc l .text 0000000000000000 .L0 +00000000000039fc l .text 0000000000000000 .L0 +0000000000003a18 l .text 0000000000000000 .L0 +0000000000003a1a l .text 0000000000000000 .L0 +0000000000003a1c l .text 0000000000000000 .L0 +0000000000003a20 l .text 0000000000000000 .L0 +0000000000003a2e l .text 0000000000000000 .L0 +0000000000003a2e l .text 0000000000000000 .L0 +0000000000003a36 l .text 0000000000000000 .L0 +0000000000003a3a l .text 0000000000000000 .L0 +0000000000003a3c l .text 0000000000000000 .L0 +0000000000003a3e l .text 0000000000000000 .L0 +0000000000003a3e l .text 0000000000000000 .L0 +0000000000003a44 l .text 0000000000000000 .L0 +0000000000003a44 l .text 0000000000000000 .L0 +0000000000003a48 l .text 0000000000000000 .L0 +0000000000003a48 l .text 0000000000000000 .L0 +0000000000003a56 l .text 0000000000000000 .L0 +0000000000003a64 l .text 0000000000000000 .L0 +0000000000003a72 l .text 0000000000000000 .L0 +0000000000003a80 l .text 0000000000000000 .L0 +0000000000003a8e l .text 0000000000000000 .L0 +0000000000003a9c l .text 0000000000000000 .L0 +0000000000003aaa l .text 0000000000000000 .L0 +0000000000003ab8 l .text 0000000000000000 .L0 +0000000000003ac6 l .text 0000000000000000 .L0 +0000000000003ad4 l .text 0000000000000000 .L0 +0000000000003ae2 l .text 0000000000000000 .L0 +0000000000003af0 l .text 0000000000000000 .L0 +0000000000003afe l .text 0000000000000000 .L0 +0000000000003b0c l .text 0000000000000000 .L0 +0000000000003b1a l .text 0000000000000000 .L0 +0000000000003b28 l .text 0000000000000000 .L0 +0000000000003b36 l .text 0000000000000000 .L0 +0000000000003b44 l .text 0000000000000000 .L0 +0000000000003b52 l .text 0000000000000000 .L0 +0000000000003b52 l .text 0000000000000000 .L0 +0000000000003b54 l .text 0000000000000000 .L0 +0000000000003b60 l .text 0000000000000000 .L0 +0000000000003b80 l .text 0000000000000000 .L0 +0000000000003b82 l .text 0000000000000000 .L0 +0000000000003b86 l .text 0000000000000000 .L0 +0000000000003b94 l .text 0000000000000000 .L0 +0000000000003b94 l .text 0000000000000000 .L0 +0000000000003b94 l .text 0000000000000000 .L0 +0000000000003b94 l .text 0000000000000000 .L0 +0000000000003b94 l .text 0000000000000000 .L0 +0000000000003b9c l .text 0000000000000000 .L0 +0000000000003ba8 l .text 0000000000000000 .L0 +0000000000003ba8 l .text 0000000000000000 .L0 +0000000000003baa l .text 0000000000000000 .L0 +0000000000003bae l .text 0000000000000000 .L0 +0000000000003bae l .text 0000000000000000 .L0 +0000000000003bb2 l .text 0000000000000000 .L0 +0000000000003bb2 l .text 0000000000000000 .L0 +0000000000003bc0 l .text 0000000000000000 .L0 +0000000000003bc0 l .text 0000000000000000 .L0 +0000000000003bc4 l .text 0000000000000000 .L0 +0000000000003bc4 l .text 0000000000000000 .L0 +0000000000003bc6 l .text 0000000000000000 .L0 +0000000000003bd8 l .text 0000000000000000 .L0 +0000000000003bee l .text 0000000000000000 .L0 +0000000000003bee l .text 0000000000000000 .L0 +0000000000003bee l .text 0000000000000000 .L0 +0000000000003bee l .text 0000000000000000 .L0 +0000000000003bee l .text 0000000000000000 .L0 +0000000000003bee l .text 0000000000000000 .L0 +0000000000003bee l .text 0000000000000000 .L0 +0000000000003bee l .text 0000000000000000 .L0 +0000000000003bee l .text 0000000000000000 .L0 +0000000000003bee l .text 0000000000000000 .L0 +0000000000003bee l .text 0000000000000000 .L0 +0000000000003bee l .text 0000000000000000 .L0 +0000000000003bf6 l .text 0000000000000000 .L0 +0000000000003bfa l .text 0000000000000000 .L0 +0000000000003bfa l .text 0000000000000000 .L0 +0000000000003c06 l .text 0000000000000000 .L0 +0000000000003c10 l .text 0000000000000000 .L0 +0000000000003c18 l .text 0000000000000000 .L0 +0000000000003c18 l .text 0000000000000000 .L0 +0000000000003c18 l .text 0000000000000000 .L0 +0000000000003c1c l .text 0000000000000000 .L0 +0000000000003c1c l .text 0000000000000000 .L0 +0000000000003c20 l .text 0000000000000000 .L0 +0000000000003c20 l .text 0000000000000000 .L0 +0000000000003c24 l .text 0000000000000000 .L0 +0000000000003c26 l .text 0000000000000000 .L0 +0000000000003c2a l .text 0000000000000000 .L0 +0000000000003c2a l .text 0000000000000000 .L0 +0000000000003c32 l .text 0000000000000000 .L0 +0000000000003c32 l .text 0000000000000000 .L0 +0000000000003c36 l .text 0000000000000000 .L0 +0000000000003c3a l .text 0000000000000000 .L0 +0000000000003c3c l .text 0000000000000000 .L0 +0000000000003c40 l .text 0000000000000000 .L0 +0000000000003c44 l .text 0000000000000000 .L0 +0000000000003c48 l .text 0000000000000000 .L0 +0000000000003c48 l .text 0000000000000000 .L0 +0000000000003c48 l .text 0000000000000000 .L0 +0000000000003c4c l .text 0000000000000000 .L0 +0000000000003c4c l .text 0000000000000000 .L0 +0000000000003c4e l .text 0000000000000000 .L0 +0000000000003c4e l .text 0000000000000000 .L0 +0000000000003c4e l .text 0000000000000000 .L0 +0000000000003c50 l .text 0000000000000000 .L0 +0000000000003c52 l .text 0000000000000000 .L0 +0000000000003c54 l .text 0000000000000000 .L0 +0000000000003c58 l .text 0000000000000000 .L0 +0000000000003c5c l .text 0000000000000000 .L0 +0000000000003c60 l .text 0000000000000000 .L0 +0000000000003c60 l .text 0000000000000000 .L0 +0000000000003c86 l .text 0000000000000000 .L0 +0000000000003c88 l .text 0000000000000000 .L0 +0000000000003c88 l .text 0000000000000000 .L0 +0000000000003c94 l .text 0000000000000000 .L0 +0000000000003c9c l .text 0000000000000000 .L0 +0000000000003c9c l .text 0000000000000000 .L0 +0000000000003ca4 l .text 0000000000000000 .L0 +0000000000003ca4 l .text 0000000000000000 .L0 +0000000000003ca6 l .text 0000000000000000 .L0 +0000000000003caa l .text 0000000000000000 .L0 +0000000000003caa l .text 0000000000000000 .L0 +0000000000003cae l .text 0000000000000000 .L0 +0000000000003cae l .text 0000000000000000 .L0 +0000000000003cbe l .text 0000000000000000 .L0 +0000000000003cbe l .text 0000000000000000 .L0 +0000000000003cc2 l .text 0000000000000000 .L0 +0000000000003cce l .text 0000000000000000 .L0 +0000000000003cce l .text 0000000000000000 .L0 +0000000000003cd2 l .text 0000000000000000 .L0 +0000000000003cd2 l .text 0000000000000000 .L0 +0000000000003cd2 l .text 0000000000000000 .L0 +0000000000003cd2 l .text 0000000000000000 .L0 +0000000000003cd8 l .text 0000000000000000 .L0 +0000000000003cdc l .text 0000000000000000 .L0 +0000000000003cdc l .text 0000000000000000 .L0 +0000000000003cdc l .text 0000000000000000 .L0 +0000000000003cdc l .text 0000000000000000 .L0 +0000000000003cdc l .text 0000000000000000 .L0 +0000000000003cdc l .text 0000000000000000 .L0 +0000000000003cdc l .text 0000000000000000 .L0 +0000000000003ce8 l .text 0000000000000000 .L0 +0000000000003cea l .text 0000000000000000 .L0 +0000000000003cec l .text 0000000000000000 .L0 +0000000000003cec l .text 0000000000000000 .L0 +0000000000003cf0 l .text 0000000000000000 .L0 +0000000000003cf8 l .text 0000000000000000 .L0 +0000000000003cf8 l .text 0000000000000000 .L0 +0000000000003cfa l .text 0000000000000000 .L0 +0000000000003cfc l .text 0000000000000000 .L0 +0000000000003d06 l .text 0000000000000000 .L0 +0000000000003d06 l .text 0000000000000000 .L0 +0000000000003d12 l .text 0000000000000000 .L0 +0000000000003d16 l .text 0000000000000000 .L0 +0000000000003d16 l .text 0000000000000000 .L0 +0000000000003d1e l .text 0000000000000000 .L0 +0000000000003d28 l .text 0000000000000000 .L0 +0000000000003d2c l .text 0000000000000000 .L0 +0000000000003d2c l .text 0000000000000000 .L0 +0000000000003d3c l .text 0000000000000000 .L0 +0000000000003d3c l .text 0000000000000000 .L0 +0000000000003d44 l .text 0000000000000000 .L0 +0000000000003d50 l .text 0000000000000000 .L0 +0000000000003d50 l .text 0000000000000000 .L0 +0000000000003d52 l .text 0000000000000000 .L0 +0000000000003d52 l .text 0000000000000000 .L0 +0000000000003d52 l .text 0000000000000000 .L0 +0000000000003d54 l .text 0000000000000000 .L0 +0000000000003d5a l .text 0000000000000000 .L0 +0000000000003d5e l .text 0000000000000000 .L0 +0000000000003d64 l .text 0000000000000000 .L0 +0000000000003d66 l .text 0000000000000000 .L0 +0000000000003d66 l .text 0000000000000000 .L0 +0000000000003d6c l .text 0000000000000000 .L0 +0000000000001670 l .debug_frame 0000000000000000 .L0 +0000000000003866 l .text 0000000000000000 .L0 +0000000000003880 l .text 0000000000000000 .L0 +0000000000003880 l .text 0000000000000000 .L0 +0000000000003884 l .text 0000000000000000 .L0 +0000000000003884 l .text 0000000000000000 .L0 +0000000000003888 l .text 0000000000000000 .L0 +0000000000003888 l .text 0000000000000000 .L0 +0000000000003892 l .text 0000000000000000 .L0 +0000000000003892 l .text 0000000000000000 .L0 +000000000000397a l .text 0000000000000000 .L0 +000000000000397a l .text 0000000000000000 .L0 +0000000000003996 l .text 0000000000000000 .L0 +0000000000003996 l .text 0000000000000000 .L0 +00000000000039fc l .text 0000000000000000 .L0 +00000000000039fc l .text 0000000000000000 .L0 +0000000000003cdc l .text 0000000000000000 .L0 +0000000000003cdc l .text 0000000000000000 .L0 +0000000000003d6c l .text 0000000000000000 .L0 +000000000000387a l .text 0000000000000000 .L0 +000000000000386a l .text 0000000000000000 .L0 +00000000000038b8 l .text 0000000000000000 .L0 +000000000000389c l .text 0000000000000000 .L0 +00000000000039b4 l .text 0000000000000000 .L0 +000000000000399e l .text 0000000000000000 .L0 +00000000000039c2 l .text 0000000000000000 .L0 +00000000000039b8 l .text 0000000000000000 .L0 +00000000000039e6 l .text 0000000000000000 .L0 +00000000000039c4 l .text 0000000000000000 .L0 +00000000000039f6 l .text 0000000000000000 .L0 +00000000000039ee l .text 0000000000000000 .L0 +0000000000003b62 l .text 0000000000000000 .L0 +0000000000003a18 l .text 0000000000000000 .L0 +0000000000003d2e l .text 0000000000000000 .L0 +0000000000003ce8 l .text 0000000000000000 .L0 +0000000000003d56 l .text 0000000000000000 .L0 +0000000000003d3c l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 nsh_dbgcmds.c +000000000000be18 l .rodata 0000000000000000 .LC0 +0000000000003d8e l .text 0000000000000000 .L0 +000000000000be28 l .rodata 0000000000000000 .LC2 +0000000000003d9e l .text 0000000000000000 .L0 +000000000000be38 l .rodata 0000000000000000 .LC4 +0000000000003daa l .text 0000000000000000 .L0 +000000000000be20 l .rodata 0000000000000000 .LC1 +0000000000003dd8 l .text 0000000000000000 .L0 +000000000000be40 l .rodata 0000000000000000 .LC5 +0000000000003e88 l .text 0000000000000000 .L0 +000000000000be30 l .rodata 0000000000000000 .LC3 +0000000000003e9c l .text 0000000000000000 .L0 +0000000000003dd8 l .text 0000000000000000 .L9 +0000000000003e98 l .text 0000000000000000 .L3 +0000000000003e02 l .text 0000000000000000 .L5 +0000000000003e7a l .text 0000000000000000 .L6 +0000000000003e5e l .text 0000000000000000 .L7 +0000000000003e3e l .text 0000000000000000 .L8 +0000000000003db2 l .text 0000000000000000 .L2 +0000000000003e22 l .text 0000000000000000 .L4 +000000000000be48 l .rodata 0000000000000000 .LC6 +0000000000003f16 l .text 0000000000000000 .L0 +0000000000003ee2 l .text 0000000000000000 .L15 +0000000000003ed4 l .text 0000000000000000 .L17 +0000000000003ed6 l .text 0000000000000000 .L16 +000000000000be58 l .rodata 0000000000000000 .LC7 +0000000000003f68 l .text 0000000000000000 .L0 +000000000000be60 l .rodata 0000000000000000 .LC8 +0000000000003f70 l .text 0000000000000000 .L0 +0000000000003f78 l .text 0000000000000000 .L0 +000000000000be68 l .rodata 0000000000000000 .LC9 +0000000000003fce l .text 0000000000000000 .L0 +000000000000be88 l .rodata 0000000000000000 .LC13 +000000000000400c l .text 0000000000000000 .L0 +000000000000be80 l .rodata 0000000000000000 .LC12 +0000000000004038 l .text 0000000000000000 .L0 +0000000000004040 l .text 0000000000000000 .L0 +0000000000004048 l .text 0000000000000000 .L0 +000000000000be70 l .rodata 0000000000000000 .LC10 +0000000000004096 l .text 0000000000000000 .L0 +000000000000be78 l .rodata 0000000000000000 .LC11 +000000000000409e l .text 0000000000000000 .L0 +0000000000003fa6 l .text 0000000000000000 .L23 +000000000000408c l .text 0000000000000000 .L37 +0000000000003f70 l .text 0000000000000000 .L42 +000000000000406c l .text 0000000000000000 .L26 +0000000000003fd8 l .text 0000000000000000 .L28 +00000000000040a8 l .text 0000000000000000 .L30 +0000000000003f86 l .text 0000000000000000 .L24 +0000000000004000 l .text 0000000000000000 .L27 +0000000000004002 l .text 0000000000000000 .L25 +0000000000004140 l .text 0000000000000000 .L32 +0000000000004100 l .text 0000000000000000 .L33 +0000000000004014 l .text 0000000000000000 .L29 +00000000000040c6 l .text 0000000000000000 .L35 +0000000000004108 l .text 0000000000000000 .L36 +0000000000004056 l .text 0000000000000000 .L31 +000000000000532a l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000010530 l .debug_str 0000000000000000 .LASF110 +00000000000107c0 l .debug_str 0000000000000000 .LASF111 +0000000000010736 l .debug_str 0000000000000000 .LASF112 +0000000000001870 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000000cc2d l .debug_line 0000000000000000 .Ldebug_line0 +00000000000108c5 l .debug_str 0000000000000000 .LASF0 +00000000000108d1 l .debug_str 0000000000000000 .LASF3 +000000000001088d l .debug_str 0000000000000000 .LASF1 +00000000000107e5 l .debug_str 0000000000000000 .LASF2 +0000000000010706 l .debug_str 0000000000000000 .LASF4 +00000000000108e0 l .debug_str 0000000000000000 .LASF5 +000000000001066b l .debug_str 0000000000000000 .LASF6 +00000000000104e9 l .debug_str 0000000000000000 .LASF7 +00000000000107fe l .debug_str 0000000000000000 .LASF8 +0000000000010765 l .debug_str 0000000000000000 .LASF9 +0000000000010852 l .debug_str 0000000000000000 .LASF10 +000000000001090a l .debug_str 0000000000000000 .LASF11 +00000000000108bc l .debug_str 0000000000000000 .LASF12 +000000000001067f l .debug_str 0000000000000000 .LASF13 +0000000000010642 l .debug_str 0000000000000000 .LASF14 +00000000000106fe l .debug_str 0000000000000000 .LASF15 +00000000000107ae l .debug_str 0000000000000000 .LASF16 +0000000000010876 l .debug_str 0000000000000000 .LASF17 +0000000000010840 l .debug_str 0000000000000000 .LASF18 +0000000000010638 l .debug_str 0000000000000000 .LASF19 +000000000001068d l .debug_str 0000000000000000 .LASF20 +00000000000106ed l .debug_str 0000000000000000 .LASF21 +00000000000108da l .debug_str 0000000000000000 .LASF22 +00000000000106cc l .debug_str 0000000000000000 .LASF23 +0000000000010489 l .debug_str 0000000000000000 .LASF24 +0000000000010915 l .debug_str 0000000000000000 .LASF26 +00000000000107f8 l .debug_str 0000000000000000 .LASF28 +0000000000010920 l .debug_str 0000000000000000 .LASF25 +000000000001049a l .debug_str 0000000000000000 .LASF27 +000000000001050a l .debug_str 0000000000000000 .LASF29 +00000000000108ab l .debug_str 0000000000000000 .LASF30 +0000000000010710 l .debug_str 0000000000000000 .LASF31 +00000000000107a2 l .debug_str 0000000000000000 .LASF32 +00000000000106a6 l .debug_str 0000000000000000 .LASF33 +0000000000010674 l .debug_str 0000000000000000 .LASF34 +0000000000010694 l .debug_str 0000000000000000 .LASF35 +0000000000010783 l .debug_str 0000000000000000 .LASF36 +0000000000010517 l .debug_str 0000000000000000 .LASF37 +000000000001060a l .debug_str 0000000000000000 .LASF38 +00000000000106f5 l .debug_str 0000000000000000 .LASF39 +0000000000010778 l .debug_str 0000000000000000 .LASF40 +0000000000010754 l .debug_str 0000000000000000 .LASF41 +0000000000010900 l .debug_str 0000000000000000 .LASF42 +00000000000107ef l .debug_str 0000000000000000 .LASF43 +00000000000107b7 l .debug_str 0000000000000000 .LASF44 +00000000000107da l .debug_str 0000000000000000 .LASF45 +000000000001065e l .debug_str 0000000000000000 .LASF46 +00000000000106e7 l .debug_str 0000000000000000 .LASF47 +00000000000107ce l .debug_str 0000000000000000 .LASF48 +000000000001087e l .debug_str 0000000000000000 .LASF49 +0000000000010724 l .debug_str 0000000000000000 .LASF50 +0000000000010619 l .debug_str 0000000000000000 .LASF51 +0000000000010810 l .debug_str 0000000000000000 .LASF52 +0000000000010601 l .debug_str 0000000000000000 .LASF53 +00000000000104e0 l .debug_str 0000000000000000 .LASF54 +000000000001069e l .debug_str 0000000000000000 .LASF55 +0000000000010807 l .debug_str 0000000000000000 .LASF56 +00000000000106b7 l .debug_str 0000000000000000 .LASF57 +0000000000010816 l .debug_str 0000000000000000 .LASF58 +000000000001048f l .debug_str 0000000000000000 .LASF59 +00000000000104d3 l .debug_str 0000000000000000 .LASF113 +00000000000105e0 l .debug_str 0000000000000000 .LASF60 +00000000000104f6 l .debug_str 0000000000000000 .LASF61 +0000000000010830 l .debug_str 0000000000000000 .LASF62 +0000000000010687 l .debug_str 0000000000000000 .LASF63 +000000000001086b l .debug_str 0000000000000000 .LASF64 +0000000000010523 l .debug_str 0000000000000000 .LASF65 +00000000000104c4 l .debug_str 0000000000000000 .LASF66 +00000000000108f3 l .debug_str 0000000000000000 .LASF67 +000000000001071e l .debug_str 0000000000000000 .LASF68 +00000000000106b1 l .debug_str 0000000000000000 .LASF69 +00000000000105ec l .debug_str 0000000000000000 .LASF70 +00000000000104a5 l .debug_str 0000000000000000 .LASF71 +000000000001089b l .debug_str 0000000000000000 .LASF72 +000000000001072d l .debug_str 0000000000000000 .LASF73 +0000000000010794 l .debug_str 0000000000000000 .LASF74 +00000000000106e2 l .debug_str 0000000000000000 .LASF75 +00000000000104b3 l .debug_str 0000000000000000 .LASF76 +0000000000010484 l .debug_str 0000000000000000 .LASF77 +0000000000010835 l .debug_str 0000000000000000 .LASF78 +00000000000104fb l .debug_str 0000000000000000 .LASF79 +0000000000010886 l .debug_str 0000000000000000 .LASF80 +0000000000010821 l .debug_str 0000000000000000 .LASF114 +00000000000106c0 l .debug_str 0000000000000000 .LASF90 +0000000000003f2a l .text 0000000000000000 .LFB7 +0000000000004144 l .text 0000000000000000 .LFE7 +0000000000010505 l .debug_str 0000000000000000 .LASF81 +000000000000c8ee l .debug_loc 0000000000000000 .LLST13 +000000000001078f l .debug_str 0000000000000000 .LASF82 +000000000000c94d l .debug_loc 0000000000000000 .LLST14 +000000000001079d l .debug_str 0000000000000000 .LASF83 +000000000000c986 l .debug_loc 0000000000000000 .LLST15 +00000000000104d9 l .debug_str 0000000000000000 .LASF84 +000000000000c9e5 l .debug_loc 0000000000000000 .LLST16 +0000000000010930 l .debug_str 0000000000000000 .LASF85 +000000000000ca41 l .debug_loc 0000000000000000 .LLST17 +000000000000ca77 l .debug_loc 0000000000000000 .LLST18 +000000000000caad l .debug_loc 0000000000000000 .LLST19 +0000000000010659 l .debug_str 0000000000000000 .LASF86 +000000000000cb21 l .debug_loc 0000000000000000 .LLST20 +0000000000010628 l .debug_str 0000000000000000 .LASF87 +000000000000cb93 l .debug_loc 0000000000000000 .LLST21 +000000000001062e l .debug_str 0000000000000000 .LASF88 +000000000000cc4a l .debug_loc 0000000000000000 .LLST22 +000000000000cc93 l .debug_loc 0000000000000000 .LLST23 +00000000000106d1 l .debug_str 0000000000000000 .LASF89 +000000000000ccf1 l .debug_loc 0000000000000000 .LLST24 +0000000000004024 l .text 0000000000000000 .LVL65 +0000000000004036 l .text 0000000000000000 .LVL68 +0000000000004054 l .text 0000000000000000 .LVL69 +00000000000040dc l .text 0000000000000000 .LVL81 +00000000000040f6 l .text 0000000000000000 .LVL84 +000000000000411e l .text 0000000000000000 .LVL87 +0000000000004132 l .text 0000000000000000 .LVL89 +0000000000003f58 l .text 0000000000000000 .LVL46 +0000000000003f66 l .text 0000000000000000 .LVL47 +0000000000003f84 l .text 0000000000000000 .LVL48 +0000000000003fb4 l .text 0000000000000000 .LVL54 +0000000000003fc2 l .text 0000000000000000 .LVL57 +0000000000003fcc l .text 0000000000000000 .LVL58 +0000000000003ff0 l .text 0000000000000000 .LVL60 +0000000000003ffe l .text 0000000000000000 .LVL61 +0000000000004060 l .text 0000000000000000 .LVL71 +000000000000406a l .text 0000000000000000 .LVL72 +000000000000407a l .text 0000000000000000 .LVL74 +0000000000004088 l .text 0000000000000000 .LVL75 +0000000000010864 l .debug_str 0000000000000000 .LASF91 +0000000000003eb0 l .text 0000000000000000 .LFB6 +0000000000003f2a l .text 0000000000000000 .LFE6 +000000000000cd4d l .debug_loc 0000000000000000 .LLST8 +000000000000cdac l .debug_loc 0000000000000000 .LLST9 +000000000000cde5 l .debug_loc 0000000000000000 .LLST10 +00000000000108b7 l .debug_str 0000000000000000 .LASF92 +000000000000ce44 l .debug_loc 0000000000000000 .LLST11 +0000000000010529 l .debug_str 0000000000000000 .LASF93 +000000000001075e l .debug_str 0000000000000000 .LASF94 +000000000000ce8d l .debug_loc 0000000000000000 .LLST12 +0000000000003ecc l .text 0000000000000000 .LVL34 +0000000000003efa l .text 0000000000000000 .LVL40 +0000000000003f26 l .text 0000000000000000 .LVL42 +00000000000105f2 l .debug_str 0000000000000000 .LASF115 +0000000000003d6c l .text 0000000000000000 .LFB5 +0000000000003eb0 l .text 0000000000000000 .LFE5 +000000000000ceb0 l .debug_loc 0000000000000000 .LLST0 +000000000000cf0f l .debug_loc 0000000000000000 .LLST1 +000000000000cf5b l .debug_loc 0000000000000000 .LLST2 +000000000000cfba l .debug_loc 0000000000000000 .LLST3 +00000000000108a6 l .debug_str 0000000000000000 .LASF95 +0000000000010614 l .debug_str 0000000000000000 .LASF96 +000000000000d019 l .debug_loc 0000000000000000 .LLST4 +000000000000d04f l .debug_loc 0000000000000000 .LLST5 +000000000000d094 l .debug_loc 0000000000000000 .LLST6 +000000000000d106 l .debug_loc 0000000000000000 .LLST7 +0000000000003d9e l .text 0000000000000000 .LVL3 +0000000000003dee l .text 0000000000000000 .LVL10 +0000000000003df8 l .text 0000000000000000 .LVL11 +0000000000003e22 l .text 0000000000000000 .LVL14 +0000000000003e2c l .text 0000000000000000 .LVL15 +0000000000003e6a l .text 0000000000000000 .LVL21 +0000000000003e74 l .text 0000000000000000 .LVL22 +0000000000003e94 l .text 0000000000000000 .LVL26 +0000000000003eae l .text 0000000000000000 .LVL29 +000000000001092b l .debug_str 0000000000000000 .LASF97 +00000000000104cb l .debug_str 0000000000000000 .LASF98 +000000000001076f l .debug_str 0000000000000000 .LASF99 +000000000001083b l .debug_str 0000000000000000 .LASF100 +0000000000010621 l .debug_str 0000000000000000 .LASF101 +00000000000106dc l .debug_str 0000000000000000 .LASF102 +00000000000104bc l .debug_str 0000000000000000 .LASF103 +00000000000108fb l .debug_str 0000000000000000 .LASF104 +00000000000106ac l .debug_str 0000000000000000 .LASF105 +000000000001084a l .debug_str 0000000000000000 .LASF106 +00000000000108b0 l .debug_str 0000000000000000 .LASF107 +00000000000104ac l .debug_str 0000000000000000 .LASF108 +000000000001050f l .debug_str 0000000000000000 .LASF109 +0000000000003f2a l .text 0000000000000000 .LVL43 +0000000000003f4a l .text 0000000000000000 .LVL44 +0000000000003f8e l .text 0000000000000000 .LVL50 +0000000000003fa6 l .text 0000000000000000 .LVL52 +0000000000003f4e l .text 0000000000000000 .LVL45 +0000000000003f9a l .text 0000000000000000 .LVL51 +0000000000003fb6 l .text 0000000000000000 .LVL55 +0000000000003fba l .text 0000000000000000 .LVL56 +000000000000408c l .text 0000000000000000 .LVL77 +00000000000040a8 l .text 0000000000000000 .LVL78 +0000000000004014 l .text 0000000000000000 .LVL64 +0000000000004056 l .text 0000000000000000 .LVL70 +0000000000004136 l .text 0000000000000000 .LVL90 +0000000000003fac l .text 0000000000000000 .LVL53 +0000000000003f86 l .text 0000000000000000 .LVL49 +000000000000406c l .text 0000000000000000 .LVL73 +0000000000003fd8 l .text 0000000000000000 .LVL59 +000000000000402e l .text 0000000000000000 .LVL67 +00000000000040fe l .text 0000000000000000 .LVL85 +0000000000004100 l .text 0000000000000000 .LVL86 +000000000000413e l .text 0000000000000000 .LVL91 +0000000000004140 l .text 0000000000000000 .LVL92 +0000000000004142 l .text 0000000000000000 .LVL93 +00000000000040be l .text 0000000000000000 .LVL80 +00000000000040e0 l .text 0000000000000000 .LVL82 +0000000000004000 l .text 0000000000000000 .LVL62 +0000000000004002 l .text 0000000000000000 .LVL63 +0000000000004028 l .text 0000000000000000 .LVL66 +00000000000040e4 l .text 0000000000000000 .LVL83 +0000000000004122 l .text 0000000000000000 .LVL88 +0000000000003eb0 l .text 0000000000000000 .LVL30 +0000000000003ebc l .text 0000000000000000 .LVL31 +0000000000003edc l .text 0000000000000000 .LVL37 +0000000000003ee2 l .text 0000000000000000 .LVL38 +0000000000003ec0 l .text 0000000000000000 .LVL33 +0000000000003ebe l .text 0000000000000000 .LVL32 +0000000000003eda l .text 0000000000000000 .LVL36 +0000000000003ed4 l .text 0000000000000000 .LVL35 +0000000000003eee l .text 0000000000000000 .LVL39 +0000000000003f00 l .text 0000000000000000 .LVL41 +0000000000003d6c l .text 0000000000000000 .LVL0 +0000000000003dc4 l .text 0000000000000000 .LVL7 +0000000000003dd8 l .text 0000000000000000 .LVL9 +0000000000003d96 l .text 0000000000000000 .LVL2 +0000000000003d8e l .text 0000000000000000 .LVL1 +0000000000003dc6 l .text 0000000000000000 .LVL8 +0000000000003dc2 l .text 0000000000000000 .LVL6 +0000000000003dfa l .text 0000000000000000 .LVL12 +0000000000003e76 l .text 0000000000000000 .LVL23 +0000000000003e7a l .text 0000000000000000 .LVL24 +0000000000003e4a l .text 0000000000000000 .LVL19 +0000000000003e5e l .text 0000000000000000 .LVL20 +0000000000003db2 l .text 0000000000000000 .LVL4 +0000000000003db6 l .text 0000000000000000 .LVL5 +0000000000003e96 l .text 0000000000000000 .LVL27 +0000000000003e98 l .text 0000000000000000 .LVL28 +0000000000003e02 l .text 0000000000000000 .LVL13 +0000000000003e30 l .text 0000000000000000 .LVL16 +0000000000003e32 l .text 0000000000000000 .LVL17 +0000000000003e3e l .text 0000000000000000 .LVL18 +0000000000003e7e l .text 0000000000000000 .LVL25 +000000000001345a l .debug_info 0000000000000000 .Ldebug_info0 +000000000000400c l .text 0000000000000000 .LBB2 +0000000000004014 l .text 0000000000000000 .LBE2 +0000000000004014 l .text 0000000000000000 .LBB3 +0000000000004056 l .text 0000000000000000 .LBE3 +00000000000040a8 l .text 0000000000000000 .LBB4 +0000000000004140 l .text 0000000000000000 .LBE4 +0000000000003d6c l .text 0000000000000000 .L0 +0000000000003eb0 l .text 0000000000000000 .L0 +0000000000003f2a l .text 0000000000000000 .L0 +0000000000003d6c l .text 0000000000000000 .L0 +0000000000003d6c l .text 0000000000000000 .L0 +0000000000003d6c l .text 0000000000000000 .L0 +0000000000003d6c l .text 0000000000000000 .L0 +0000000000003d6c l .text 0000000000000000 .L0 +0000000000003d6c l .text 0000000000000000 .L0 +0000000000003d6c l .text 0000000000000000 .L0 +0000000000003d88 l .text 0000000000000000 .L0 +0000000000003d8a l .text 0000000000000000 .L0 +0000000000003d8c l .text 0000000000000000 .L0 +0000000000003d96 l .text 0000000000000000 .L0 +0000000000003d9a l .text 0000000000000000 .L0 +0000000000003d9c l .text 0000000000000000 .L0 +0000000000003d9e l .text 0000000000000000 .L0 +0000000000003d9e l .text 0000000000000000 .L0 +0000000000003da6 l .text 0000000000000000 .L0 +0000000000003db6 l .text 0000000000000000 .L0 +0000000000003db6 l .text 0000000000000000 .L0 +0000000000003dba l .text 0000000000000000 .L0 +0000000000003dd8 l .text 0000000000000000 .L0 +0000000000003dee l .text 0000000000000000 .L0 +0000000000003dee l .text 0000000000000000 .L0 +0000000000003dfa l .text 0000000000000000 .L0 +0000000000003dfa l .text 0000000000000000 .L0 +0000000000003dfa l .text 0000000000000000 .L0 +0000000000003dfe l .text 0000000000000000 .L0 +0000000000003e02 l .text 0000000000000000 .L0 +0000000000003e02 l .text 0000000000000000 .L0 +0000000000003e06 l .text 0000000000000000 .L0 +0000000000003e0a l .text 0000000000000000 .L0 +0000000000003e0a l .text 0000000000000000 .L0 +0000000000003e0e l .text 0000000000000000 .L0 +0000000000003e22 l .text 0000000000000000 .L0 +0000000000003e22 l .text 0000000000000000 .L0 +0000000000003e2c l .text 0000000000000000 .L0 +0000000000003e2e l .text 0000000000000000 .L0 +0000000000003e30 l .text 0000000000000000 .L0 +0000000000003e30 l .text 0000000000000000 .L0 +0000000000003e30 l .text 0000000000000000 .L0 +0000000000003e3a l .text 0000000000000000 .L0 +0000000000003e3e l .text 0000000000000000 .L0 +0000000000003e3e l .text 0000000000000000 .L0 +0000000000003e42 l .text 0000000000000000 .L0 +0000000000003e42 l .text 0000000000000000 .L0 +0000000000003e4a l .text 0000000000000000 .L0 +0000000000003e5e l .text 0000000000000000 .L0 +0000000000003e6a l .text 0000000000000000 .L0 +0000000000003e6a l .text 0000000000000000 .L0 +0000000000003e74 l .text 0000000000000000 .L0 +0000000000003e7a l .text 0000000000000000 .L0 +0000000000003e7a l .text 0000000000000000 .L0 +0000000000003e7a l .text 0000000000000000 .L0 +0000000000003e82 l .text 0000000000000000 .L0 +0000000000003e94 l .text 0000000000000000 .L0 +0000000000003e98 l .text 0000000000000000 .L0 +0000000000003eb0 l .text 0000000000000000 .L0 +0000000000003eb0 l .text 0000000000000000 .L0 +0000000000003eb0 l .text 0000000000000000 .L0 +0000000000003eb0 l .text 0000000000000000 .L0 +0000000000003eb0 l .text 0000000000000000 .L0 +0000000000003eb0 l .text 0000000000000000 .L0 +0000000000003eb0 l .text 0000000000000000 .L0 +0000000000003eba l .text 0000000000000000 .L0 +0000000000003ec0 l .text 0000000000000000 .L0 +0000000000003ec4 l .text 0000000000000000 .L0 +0000000000003ecc l .text 0000000000000000 .L0 +0000000000003ecc l .text 0000000000000000 .L0 +0000000000003ece l .text 0000000000000000 .L0 +0000000000003ed4 l .text 0000000000000000 .L0 +0000000000003ed6 l .text 0000000000000000 .L0 +0000000000003ee2 l .text 0000000000000000 .L0 +0000000000003eec l .text 0000000000000000 .L0 +0000000000003eec l .text 0000000000000000 .L0 +0000000000003efa l .text 0000000000000000 .L0 +0000000000003efc l .text 0000000000000000 .L0 +0000000000003f00 l .text 0000000000000000 .L0 +0000000000003f00 l .text 0000000000000000 .L0 +0000000000003f06 l .text 0000000000000000 .L0 +0000000000003f0e l .text 0000000000000000 .L0 +0000000000003f12 l .text 0000000000000000 .L0 +0000000000003f26 l .text 0000000000000000 .L0 +0000000000003f26 l .text 0000000000000000 .L0 +0000000000003f2a l .text 0000000000000000 .L0 +0000000000003f2a l .text 0000000000000000 .L0 +0000000000003f2a l .text 0000000000000000 .L0 +0000000000003f2a l .text 0000000000000000 .L0 +0000000000003f2a l .text 0000000000000000 .L0 +0000000000003f2a l .text 0000000000000000 .L0 +0000000000003f2a l .text 0000000000000000 .L0 +0000000000003f2a l .text 0000000000000000 .L0 +0000000000003f2a l .text 0000000000000000 .L0 +0000000000003f2a l .text 0000000000000000 .L0 +0000000000003f2a l .text 0000000000000000 .L0 +0000000000003f2a l .text 0000000000000000 .L0 +0000000000003f46 l .text 0000000000000000 .L0 +0000000000003f48 l .text 0000000000000000 .L0 +0000000000003f4a l .text 0000000000000000 .L0 +0000000000003f4c l .text 0000000000000000 .L0 +0000000000003f4e l .text 0000000000000000 .L0 +0000000000003f50 l .text 0000000000000000 .L0 +0000000000003f58 l .text 0000000000000000 .L0 +0000000000003f58 l .text 0000000000000000 .L0 +0000000000003f5c l .text 0000000000000000 .L0 +0000000000003f70 l .text 0000000000000000 .L0 +0000000000003f84 l .text 0000000000000000 .L0 +0000000000003f84 l .text 0000000000000000 .L0 +0000000000003f86 l .text 0000000000000000 .L0 +0000000000003fa8 l .text 0000000000000000 .L0 +0000000000003fa8 l .text 0000000000000000 .L0 +0000000000003fb6 l .text 0000000000000000 .L0 +0000000000003fb6 l .text 0000000000000000 .L0 +0000000000003fb8 l .text 0000000000000000 .L0 +0000000000003fc2 l .text 0000000000000000 .L0 +0000000000003fd8 l .text 0000000000000000 .L0 +0000000000003fd8 l .text 0000000000000000 .L0 +0000000000003ff0 l .text 0000000000000000 .L0 +0000000000003ff2 l .text 0000000000000000 .L0 +0000000000003ff2 l .text 0000000000000000 .L0 +0000000000004000 l .text 0000000000000000 .L0 +0000000000004002 l .text 0000000000000000 .L0 +0000000000004002 l .text 0000000000000000 .L0 +000000000000400a l .text 0000000000000000 .L0 +000000000000400c l .text 0000000000000000 .L0 +0000000000004014 l .text 0000000000000000 .L0 +0000000000004014 l .text 0000000000000000 .L0 +0000000000004014 l .text 0000000000000000 .L0 +0000000000004024 l .text 0000000000000000 .L0 +0000000000004028 l .text 0000000000000000 .L0 +0000000000004028 l .text 0000000000000000 .L0 +000000000000402c l .text 0000000000000000 .L0 +0000000000004054 l .text 0000000000000000 .L0 +0000000000004054 l .text 0000000000000000 .L0 +0000000000004054 l .text 0000000000000000 .L0 +0000000000004056 l .text 0000000000000000 .L0 +0000000000004060 l .text 0000000000000000 .L0 +000000000000406a l .text 0000000000000000 .L0 +000000000000406a l .text 0000000000000000 .L0 +000000000000406c l .text 0000000000000000 .L0 +000000000000406c l .text 0000000000000000 .L0 +000000000000407a l .text 0000000000000000 .L0 +000000000000407c l .text 0000000000000000 .L0 +000000000000407c l .text 0000000000000000 .L0 +000000000000408c l .text 0000000000000000 .L0 +0000000000004094 l .text 0000000000000000 .L0 +0000000000004096 l .text 0000000000000000 .L0 +000000000000409e l .text 0000000000000000 .L0 +00000000000040a8 l .text 0000000000000000 .L0 +00000000000040a8 l .text 0000000000000000 .L0 +00000000000040ac l .text 0000000000000000 .L0 +00000000000040ac l .text 0000000000000000 .L0 +00000000000040b0 l .text 0000000000000000 .L0 +00000000000040b0 l .text 0000000000000000 .L0 +00000000000040b4 l .text 0000000000000000 .L0 +00000000000040b4 l .text 0000000000000000 .L0 +00000000000040b8 l .text 0000000000000000 .L0 +00000000000040b8 l .text 0000000000000000 .L0 +00000000000040be l .text 0000000000000000 .L0 +00000000000040c6 l .text 0000000000000000 .L0 +00000000000040e0 l .text 0000000000000000 .L0 +00000000000040e0 l .text 0000000000000000 .L0 +00000000000040e0 l .text 0000000000000000 .L0 +00000000000040e4 l .text 0000000000000000 .L0 +00000000000040f6 l .text 0000000000000000 .L0 +00000000000040f6 l .text 0000000000000000 .L0 +00000000000040fa l .text 0000000000000000 .L0 +00000000000040fa l .text 0000000000000000 .L0 +0000000000004100 l .text 0000000000000000 .L0 +0000000000004108 l .text 0000000000000000 .L0 +0000000000004122 l .text 0000000000000000 .L0 +0000000000004122 l .text 0000000000000000 .L0 +0000000000004132 l .text 0000000000000000 .L0 +0000000000004132 l .text 0000000000000000 .L0 +0000000000004136 l .text 0000000000000000 .L0 +0000000000004136 l .text 0000000000000000 .L0 +000000000000413a l .text 0000000000000000 .L0 +000000000000413a l .text 0000000000000000 .L0 +0000000000004140 l .text 0000000000000000 .L0 +0000000000004144 l .text 0000000000000000 .L0 +0000000000001830 l .debug_frame 0000000000000000 .L0 +0000000000003d6c l .text 0000000000000000 .L0 +0000000000003eb0 l .text 0000000000000000 .L0 +0000000000003eb0 l .text 0000000000000000 .L0 +0000000000003f2a l .text 0000000000000000 .L0 +0000000000003f2a l .text 0000000000000000 .L0 +0000000000004144 l .text 0000000000000000 .L0 +0000000000003dbc l .text 0000000000000000 .L0 +0000000000003d88 l .text 0000000000000000 .L0 +0000000000003ed8 l .text 0000000000000000 .L0 +0000000000003ec4 l .text 0000000000000000 .L0 +0000000000003f88 l .text 0000000000000000 .L0 +0000000000003f46 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 nsh_ddcmd.c +0000000000004144 l F .text 000000000000007e dd_read +000000000000be98 l .rodata 0000000000000000 .LC0 +0000000000004178 l .text 0000000000000000 .L0 +000000000000bea0 l .rodata 0000000000000000 .LC1 +0000000000004180 l .text 0000000000000000 .L0 +0000000000004188 l .text 0000000000000000 .L0 +00000000000041a0 l .text 0000000000000000 .L2 +00000000000041b0 l .text 0000000000000000 .L4 +0000000000004154 l .text 0000000000000000 .L5 +0000000000004196 l .text 0000000000000000 .L3 +000000000000beb0 l .rodata 0000000000000000 .LC3 +0000000000004208 l .text 0000000000000000 .L0 +000000000000beb8 l .rodata 0000000000000000 .LC4 +0000000000004210 l .text 0000000000000000 .L0 +000000000000bec0 l .rodata 0000000000000000 .LC5 +0000000000004218 l .text 0000000000000000 .L0 +000000000000bec8 l .rodata 0000000000000000 .LC6 +0000000000004220 l .text 0000000000000000 .L0 +000000000000bed0 l .rodata 0000000000000000 .LC7 +0000000000004228 l .text 0000000000000000 .L0 +0000000000004244 l .text 0000000000000000 .L0 +000000000000424c l .text 0000000000000000 .L0 +000000000000bea8 l .rodata 0000000000000000 .LC2 +000000000000428e l .text 0000000000000000 .L0 +0000000000004380 l .text 0000000000000000 .L0 +0000000000004388 l .text 0000000000000000 .L0 +000000000000bed8 l .rodata 0000000000000000 .LC8 +00000000000043e2 l .text 0000000000000000 .L0 +00000000000043ec l .text 0000000000000000 .L0 +00000000000043f4 l .text 0000000000000000 .L0 +000000000000441c l .text 0000000000000000 .L0 +0000000000004426 l .text 0000000000000000 .L0 +000000000000442e l .text 0000000000000000 .L0 +000000000000bee0 l .rodata 0000000000000000 .LC9 +000000000000448e l .text 0000000000000000 .L0 +0000000000004496 l .text 0000000000000000 .L0 +000000000000449e l .text 0000000000000000 .L0 +00000000000044dc l .text 0000000000000000 .L0 +00000000000044e4 l .text 0000000000000000 .L0 +00000000000044ec l .text 0000000000000000 .L0 +000000000000bee8 l .rodata 0000000000000000 .LC10 +000000000000453a l .text 0000000000000000 .L0 +00000000000045bc l .text 0000000000000000 .L0 +00000000000045c4 l .text 0000000000000000 .L0 +00000000000045cc l .text 0000000000000000 .L0 +000000000000bef0 l .rodata 0000000000000000 .LC11 +00000000000045fa l .text 0000000000000000 .L0 +000000000000bf08 l .rodata 0000000000000000 .LC12 +0000000000004622 l .text 0000000000000000 .L0 +000000000000bf20 l .rodata 0000000000000000 .LC13 +000000000000464c l .text 0000000000000000 .L0 +000000000000bf28 l .rodata 0000000000000000 .LC14 +0000000000004660 l .text 0000000000000000 .L0 +0000000000004668 l .text 0000000000000000 .L0 +0000000000004670 l .text 0000000000000000 .L0 +0000000000004288 l .text 0000000000000000 .L18 +0000000000004240 l .text 0000000000000000 .L19 +000000000000436e l .text 0000000000000000 .L20 +0000000000004394 l .text 0000000000000000 .L21 +0000000000004268 l .text 0000000000000000 .L49 +00000000000042c8 l .text 0000000000000000 .L10 +00000000000042b0 l .text 0000000000000000 .L11 +0000000000004232 l .text 0000000000000000 .L9 +00000000000042f8 l .text 0000000000000000 .L13 +00000000000042e4 l .text 0000000000000000 .L14 +00000000000042c2 l .text 0000000000000000 .L12 +0000000000004318 l .text 0000000000000000 .L15 +0000000000004338 l .text 0000000000000000 .L16 +0000000000004358 l .text 0000000000000000 .L17 +00000000000043a0 l .text 0000000000000000 .L23 +000000000000425c l .text 0000000000000000 .L22 +000000000000440c l .text 0000000000000000 .L24 +0000000000004446 l .text 0000000000000000 .L28 +000000000000443a l .text 0000000000000000 .L27 +00000000000044b6 l .text 0000000000000000 .L30 +0000000000004458 l .text 0000000000000000 .L37 +00000000000044fc l .text 0000000000000000 .L38 +00000000000044aa l .text 0000000000000000 .L33 +0000000000004470 l .text 0000000000000000 .L39 +0000000000004552 l .text 0000000000000000 .L40 +0000000000004400 l .text 0000000000000000 .L29 +000000000000444a l .text 0000000000000000 .L32 +000000000000444c l .text 0000000000000000 .L34 +0000000000004544 l .text 0000000000000000 .L35 +00000000000044e4 l .text 0000000000000000 .L74 +0000000000004516 l .text 0000000000000000 .L36 +0000000000004480 l .text 0000000000000000 .L73 +00000000000044f8 l .text 0000000000000000 .L54 +00000000000045d8 l .text 0000000000000000 .L45 +000000000000465a l .text 0000000000000000 .L43 +00000000000045e8 l .text 0000000000000000 .L44 +000000000000467e l .text 0000000000000000 .L46 +00000000000045dc l .text 0000000000000000 .L48 +000000000000457a l .text 0000000000000000 .L42 +00000000000055ee l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +00000000000109f2 l .debug_str 0000000000000000 .LASF117 +0000000000010dc2 l .debug_str 0000000000000000 .LASF118 +0000000000010c50 l .debug_str 0000000000000000 .LASF119 +00000000000018f0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000000d3b8 l .debug_line 0000000000000000 .Ldebug_line0 +0000000000010deb l .debug_str 0000000000000000 .LASF0 +0000000000010df7 l .debug_str 0000000000000000 .LASF3 +0000000000010da4 l .debug_str 0000000000000000 .LASF1 +0000000000010cfc l .debug_str 0000000000000000 .LASF2 +0000000000010c0f l .debug_str 0000000000000000 .LASF4 +0000000000010e00 l .debug_str 0000000000000000 .LASF5 +000000000001096a l .debug_str 0000000000000000 .LASF6 +00000000000109b1 l .debug_str 0000000000000000 .LASF7 +0000000000010d15 l .debug_str 0000000000000000 .LASF8 +0000000000010d78 l .debug_str 0000000000000000 .LASF9 +0000000000010de2 l .debug_str 0000000000000000 .LASF10 +0000000000010b22 l .debug_str 0000000000000000 .LASF11 +0000000000010aee l .debug_str 0000000000000000 .LASF12 +0000000000010c07 l .debug_str 0000000000000000 .LASF13 +0000000000010cca l .debug_str 0000000000000000 .LASF14 +0000000000010ad6 l .debug_str 0000000000000000 .LASF15 +0000000000010b68 l .debug_str 0000000000000000 .LASF16 +0000000000010bf0 l .debug_str 0000000000000000 .LASF17 +0000000000010ba8 l .debug_str 0000000000000000 .LASF18 +000000000001093e l .debug_str 0000000000000000 .LASF19 +0000000000010e69 l .debug_str 0000000000000000 .LASF21 +0000000000010d0f l .debug_str 0000000000000000 .LASF23 +0000000000010e74 l .debug_str 0000000000000000 .LASF20 +000000000001094f l .debug_str 0000000000000000 .LASF22 +00000000000109db l .debug_str 0000000000000000 .LASF24 +0000000000010dbd l .debug_str 0000000000000000 .LASF25 +0000000000010c20 l .debug_str 0000000000000000 .LASF26 +0000000000010cbe l .debug_str 0000000000000000 .LASF27 +0000000000010b81 l .debug_str 0000000000000000 .LASF28 +0000000000010b17 l .debug_str 0000000000000000 .LASF29 +0000000000010b6f l .debug_str 0000000000000000 .LASF30 +0000000000010c9f l .debug_str 0000000000000000 .LASF31 +00000000000109e0 l .debug_str 0000000000000000 .LASF32 +0000000000010acc l .debug_str 0000000000000000 .LASF33 +0000000000010bfe l .debug_str 0000000000000000 .LASF34 +0000000000010c8f l .debug_str 0000000000000000 .LASF35 +0000000000010c6e l .debug_str 0000000000000000 .LASF36 +0000000000010e28 l .debug_str 0000000000000000 .LASF37 +0000000000010d06 l .debug_str 0000000000000000 .LASF38 +0000000000010cd3 l .debug_str 0000000000000000 .LASF39 +0000000000010cf1 l .debug_str 0000000000000000 .LASF40 +0000000000010b0a l .debug_str 0000000000000000 .LASF41 +0000000000010bc0 l .debug_str 0000000000000000 .LASF42 +0000000000010ce5 l .debug_str 0000000000000000 .LASF43 +0000000000010d95 l .debug_str 0000000000000000 .LASF44 +0000000000010c34 l .debug_str 0000000000000000 .LASF45 +0000000000010adf l .debug_str 0000000000000000 .LASF46 +0000000000010d27 l .debug_str 0000000000000000 .LASF47 +0000000000010ac3 l .debug_str 0000000000000000 .LASF48 +00000000000109a8 l .debug_str 0000000000000000 .LASF49 +0000000000010b79 l .debug_str 0000000000000000 .LASF50 +0000000000010d1e l .debug_str 0000000000000000 .LASF51 +0000000000010b98 l .debug_str 0000000000000000 .LASF52 +0000000000010d2d l .debug_str 0000000000000000 .LASF53 +0000000000010944 l .debug_str 0000000000000000 .LASF54 +000000000001099b l .debug_str 0000000000000000 .LASF120 +0000000000010aa2 l .debug_str 0000000000000000 .LASF55 +00000000000109be l .debug_str 0000000000000000 .LASF56 +0000000000010d4e l .debug_str 0000000000000000 .LASF57 +0000000000010b4c l .debug_str 0000000000000000 .LASF58 +0000000000010d8a l .debug_str 0000000000000000 .LASF59 +00000000000109ec l .debug_str 0000000000000000 .LASF60 +000000000001098c l .debug_str 0000000000000000 .LASF61 +0000000000010e13 l .debug_str 0000000000000000 .LASF62 +0000000000010c2e l .debug_str 0000000000000000 .LASF63 +0000000000010b92 l .debug_str 0000000000000000 .LASF64 +0000000000010aae l .debug_str 0000000000000000 .LASF65 +0000000000010974 l .debug_str 0000000000000000 .LASF66 +0000000000010db2 l .debug_str 0000000000000000 .LASF67 +0000000000010c47 l .debug_str 0000000000000000 .LASF68 +0000000000010cb0 l .debug_str 0000000000000000 .LASF69 +0000000000010bbb l .debug_str 0000000000000000 .LASF70 +000000000001097b l .debug_str 0000000000000000 .LASF71 +0000000000010939 l .debug_str 0000000000000000 .LASF72 +0000000000010d5c l .debug_str 0000000000000000 .LASF73 +00000000000109c3 l .debug_str 0000000000000000 .LASF74 +0000000000010d9d l .debug_str 0000000000000000 .LASF75 +0000000000010b57 l .debug_str 0000000000000000 .LASF76 +0000000000010d38 l .debug_str 0000000000000000 .LASF77 +0000000000010dce l .debug_str 0000000000000000 .LASF78 +0000000000010b52 l .debug_str 0000000000000000 .LASF79 +00000000000109d6 l .debug_str 0000000000000000 .LASF80 +0000000000010c9a l .debug_str 0000000000000000 .LASF81 +0000000000010b8c l .debug_str 0000000000000000 .LASF82 +0000000000010d53 l .debug_str 0000000000000000 .LASF83 +0000000000010b05 l .debug_str 0000000000000000 .LASF84 +0000000000010e51 l .debug_str 0000000000000000 .LASF85 +00000000000109cd l .debug_str 0000000000000000 .LASF86 +0000000000010c7f l .debug_str 0000000000000000 .LASF87 +00000000000109a1 l .debug_str 0000000000000000 .LASF88 +0000000000010c19 l .debug_str 0000000000000000 .LASF121 +00000000000041c2 l .text 0000000000000000 .LFB10 +0000000000004682 l .text 0000000000000000 .LFE10 +000000000000d1a6 l .debug_loc 0000000000000000 .LLST4 +0000000000010cab l .debug_str 0000000000000000 .LASF89 +000000000000d2bf l .debug_loc 0000000000000000 .LLST5 +0000000000010cb9 l .debug_str 0000000000000000 .LASF90 +000000000000d2f8 l .debug_loc 0000000000000000 .LLST6 +0000000000010ba1 l .debug_str 0000000000000000 .LASF91 +000000000000d359 l .debug_loc 0000000000000000 .LLST7 +0000000000010bad l .debug_str 0000000000000000 .LASF92 +000000000000d3a3 l .debug_loc 0000000000000000 .LLST8 +0000000000010bd7 l .debug_str 0000000000000000 .LASF93 +000000000000d3ed l .debug_loc 0000000000000000 .LLST9 +000000000000d4ae l .debug_loc 0000000000000000 .LLST10 +000000000000d5fd l .debug_loc 0000000000000000 .LLST11 +0000000000010bde l .debug_str 0000000000000000 .LASF94 +0000000000004256 l .text 0000000000000000 .LDL1 +0000000000010b3a l .debug_str 0000000000000000 .LASF95 +0000000000010b2a l .debug_str 0000000000000000 .LASF96 +0000000000010e58 l .debug_str 0000000000000000 .LASF97 +00000000000043a0 l .text 0000000000000000 .LBB16 +000000000000d6a6 l .debug_loc 0000000000000000 .LLST12 +000000000000d6e2 l .debug_loc 0000000000000000 .LLST13 +000000000000d718 l .debug_loc 0000000000000000 .LLST14 +000000000000441a l .text 0000000000000000 .LVL60 +0000000000004438 l .text 0000000000000000 .LVL61 +00000000000043ac l .text 0000000000000000 .LVL50 +00000000000043b2 l .text 0000000000000000 .LBB22 +000000000000d73b l .debug_loc 0000000000000000 .LLST15 +000000000000d761 l .debug_loc 0000000000000000 .LLST16 +000000000000d784 l .debug_loc 0000000000000000 .LLST17 +00000000000043e0 l .text 0000000000000000 .LVL54 +00000000000043fe l .text 0000000000000000 .LVL55 +00000000000043cc l .text 0000000000000000 .LVL52 +000000000000444a l .text 0000000000000000 .LBB30 +000000000000d7a7 l .debug_loc 0000000000000000 .LLST18 +000000000000d7cd l .debug_loc 0000000000000000 .LLST19 +000000000000d7f0 l .debug_loc 0000000000000000 .LLST20 +000000000000d83a l .debug_loc 0000000000000000 .LLST21 +000000000000d870 l .debug_loc 0000000000000000 .LLST22 +00000000000044f8 l .text 0000000000000000 .LVL79 +0000000000004538 l .text 0000000000000000 .LVL89 +0000000000004526 l .text 0000000000000000 .LVL86 +0000000000004460 l .text 0000000000000000 .LBB36 +000000000000d893 l .debug_loc 0000000000000000 .LLST23 +000000000000d8c9 l .debug_loc 0000000000000000 .LLST24 +000000000000d8ff l .debug_loc 0000000000000000 .LLST25 +000000000000d964 l .debug_loc 0000000000000000 .LLST26 +000000000000d99a l .debug_loc 0000000000000000 .LLST27 +000000000000d9d0 l .debug_loc 0000000000000000 .LLST28 +000000000000da41 l .debug_loc 0000000000000000 .LLST29 +0000000000004610 l .text 0000000000000000 .LVL116 +0000000000004620 l .text 0000000000000000 .LVL117 +0000000000004638 l .text 0000000000000000 .LVL118 +0000000000004648 l .text 0000000000000000 .LVL119 +0000000000004658 l .text 0000000000000000 .LVL120 +000000000000447a l .text 0000000000000000 .LVL70 +000000000000448c l .text 0000000000000000 .LVL72 +00000000000044aa l .text 0000000000000000 .LVL73 +0000000000004564 l .text 0000000000000000 .LVL97 +0000000000004576 l .text 0000000000000000 .LVL100 +0000000000004590 l .text 0000000000000000 .LVL104 +00000000000045a4 l .text 0000000000000000 .LVL107 +00000000000045ba l .text 0000000000000000 .LVL110 +00000000000045d8 l .text 0000000000000000 .LVL111 +00000000000045e6 l .text 0000000000000000 .LVL113 +00000000000045f6 l .text 0000000000000000 .LVL115 +000000000000467c l .text 0000000000000000 .LVL122 +00000000000041f4 l .text 0000000000000000 .LVL17 +0000000000004256 l .text 0000000000000000 .LVL21 +0000000000004268 l .text 0000000000000000 .LVL24 +00000000000042a0 l .text 0000000000000000 .LVL28 +00000000000042b0 l .text 0000000000000000 .LVL29 +00000000000042c0 l .text 0000000000000000 .LVL30 +00000000000042d6 l .text 0000000000000000 .LVL34 +00000000000042e4 l .text 0000000000000000 .LVL35 +00000000000042f4 l .text 0000000000000000 .LVL36 +0000000000004306 l .text 0000000000000000 .LVL38 +0000000000004314 l .text 0000000000000000 .LVL39 +0000000000004326 l .text 0000000000000000 .LVL40 +0000000000004334 l .text 0000000000000000 .LVL41 +0000000000004346 l .text 0000000000000000 .LVL42 +0000000000004354 l .text 0000000000000000 .LVL43 +0000000000004366 l .text 0000000000000000 .LVL44 +0000000000004378 l .text 0000000000000000 .LVL45 +0000000000004392 l .text 0000000000000000 .LVL46 +000000000000439e l .text 0000000000000000 .LVL48 +000000000000440a l .text 0000000000000000 .LVL57 +0000000000004444 l .text 0000000000000000 .LVL63 +00000000000044b4 l .text 0000000000000000 .LVL74 +00000000000044c8 l .text 0000000000000000 .LVL76 +00000000000044da l .text 0000000000000000 .LVL77 +0000000000004506 l .text 0000000000000000 .LVL81 +0000000000010c3d l .debug_str 0000000000000000 .LASF98 +0000000000010e45 l .debug_str 0000000000000000 .LASF99 +0000000000010e3a l .debug_str 0000000000000000 .LASF100 +0000000000010e1b l .debug_str 0000000000000000 .LASF122 +0000000000004144 l .text 0000000000000000 .LFB6 +00000000000041c2 l .text 0000000000000000 .LFE6 +000000000000db12 l .debug_loc 0000000000000000 .LLST0 +000000000000db71 l .debug_loc 0000000000000000 .LLST1 +000000000000dbba l .debug_loc 0000000000000000 .LLST2 +000000000000416a l .text 0000000000000000 .LBB3 +0000000000004196 l .text 0000000000000000 .LBE3 +000000000000dbf0 l .debug_loc 0000000000000000 .LLST3 +0000000000004176 l .text 0000000000000000 .LVL6 +0000000000004194 l .text 0000000000000000 .LVL7 +0000000000004166 l .text 0000000000000000 .LVL3 +0000000000010cdc l .debug_str 0000000000000000 .LASF101 +0000000000010e32 l .debug_str 0000000000000000 .LASF102 +0000000000010993 l .debug_str 0000000000000000 .LASF103 +0000000000010d62 l .debug_str 0000000000000000 .LASF104 +0000000000010c86 l .debug_str 0000000000000000 .LASF105 +0000000000010ab4 l .debug_str 0000000000000000 .LASF106 +0000000000010bf8 l .debug_str 0000000000000000 .LASF107 +0000000000010ae7 l .debug_str 0000000000000000 .LASF108 +0000000000010e7f l .debug_str 0000000000000000 .LASF109 +0000000000010b87 l .debug_str 0000000000000000 .LASF110 +0000000000010d47 l .debug_str 0000000000000000 .LASF111 +0000000000010c78 l .debug_str 0000000000000000 .LASF123 +0000000000010d67 l .debug_str 0000000000000000 .LASF124 +0000000000010bc6 l .debug_str 0000000000000000 .LASF112 +0000000000010984 l .debug_str 0000000000000000 .LASF113 +000000000001095a l .debug_str 0000000000000000 .LASF114 +0000000000010e23 l .debug_str 0000000000000000 .LASF115 +0000000000010bb5 l .debug_str 0000000000000000 .LASF116 +00000000000041c2 l .text 0000000000000000 .LVL13 +00000000000041d6 l .text 0000000000000000 .LVL16 +0000000000004258 l .text 0000000000000000 .LVL22 +0000000000004288 l .text 0000000000000000 .LVL27 +0000000000004394 l .text 0000000000000000 .LVL47 +00000000000043a0 l .text 0000000000000000 .LVL49 +00000000000043d4 l .text 0000000000000000 .LVL53 +000000000000440c l .text 0000000000000000 .LVL58 +000000000000440e l .text 0000000000000000 .LVL59 +0000000000004446 l .text 0000000000000000 .LVL64 +000000000000444c l .text 0000000000000000 .LVL66 +00000000000044b6 l .text 0000000000000000 .LVL75 +00000000000044e4 l .text 0000000000000000 .LVL78 +00000000000041d0 l .text 0000000000000000 .LVL14 +00000000000041d4 l .text 0000000000000000 .LVL15 +0000000000004202 l .text 0000000000000000 .LVL19 +0000000000004232 l .text 0000000000000000 .LVL20 +0000000000004272 l .text 0000000000000000 .LVL26 +0000000000004270 l .text 0000000000000000 .LVL25 +000000000000425c l .text 0000000000000000 .LVL23 +0000000000004400 l .text 0000000000000000 .LVL56 +000000000000443a l .text 0000000000000000 .LVL62 +0000000000004464 l .text 0000000000000000 .LVL69 +00000000000044fc l .text 0000000000000000 .LVL80 +0000000000004530 l .text 0000000000000000 .LVL88 +0000000000004544 l .text 0000000000000000 .LVL90 +0000000000004550 l .text 0000000000000000 .LVL94 +00000000000043b2 l .text 0000000000000000 .LVL51 +000000000000444a l .text 0000000000000000 .LVL65 +0000000000004458 l .text 0000000000000000 .LVL67 +0000000000004508 l .text 0000000000000000 .LVL82 +0000000000004516 l .text 0000000000000000 .LVL85 +000000000000454e l .text 0000000000000000 .LVL93 +0000000000004200 l .text 0000000000000000 .LVL18 +00000000000042c4 l .text 0000000000000000 .LVL32 +00000000000042c8 l .text 0000000000000000 .LVL33 +0000000000004512 l .text 0000000000000000 .LVL83 +0000000000004514 l .text 0000000000000000 .LVL84 +000000000000452c l .text 0000000000000000 .LVL87 +0000000000004460 l .text 0000000000000000 .LVL68 +0000000000004552 l .text 0000000000000000 .LVL95 +0000000000004588 l .text 0000000000000000 .LVL103 +0000000000004578 l .text 0000000000000000 .LVL101 +000000000000457a l .text 0000000000000000 .LVL102 +00000000000045b2 l .text 0000000000000000 .LVL109 +00000000000045e8 l .text 0000000000000000 .LVL114 +000000000000465a l .text 0000000000000000 .LVL121 +000000000000467e l .text 0000000000000000 .LVL123 +0000000000004680 l .text 0000000000000000 .LVL124 +000000000000447c l .text 0000000000000000 .LVL71 +0000000000004554 l .text 0000000000000000 .LVL96 +0000000000004566 l .text 0000000000000000 .LVL98 +000000000000456c l .text 0000000000000000 .LVL99 +0000000000004592 l .text 0000000000000000 .LVL105 +000000000000459a l .text 0000000000000000 .LVL106 +00000000000045aa l .text 0000000000000000 .LVL108 +00000000000045dc l .text 0000000000000000 .LVL112 +0000000000004144 l .text 0000000000000000 .LVL0 +0000000000004154 l .text 0000000000000000 .LVL2 +000000000000416c l .text 0000000000000000 .LVL4 +00000000000041a0 l .text 0000000000000000 .LVL9 +000000000000414e l .text 0000000000000000 .LVL1 +000000000000416e l .text 0000000000000000 .LVL5 +00000000000041a6 l .text 0000000000000000 .LVL10 +00000000000041aa l .text 0000000000000000 .LVL11 +00000000000041ba l .text 0000000000000000 .LVL12 +0000000000004196 l .text 0000000000000000 .LVL8 +000000000001414d l .debug_info 0000000000000000 .Ldebug_info0 +00000000000043b2 l .text 0000000000000000 .LBE16 +000000000000440c l .text 0000000000000000 .LBB28 +0000000000004438 l .text 0000000000000000 .LBE28 +0000000000004438 l .text 0000000000000000 .LBB29 +000000000000443a l .text 0000000000000000 .LBE29 +000000000000440c l .text 0000000000000000 .LBB18 +0000000000004438 l .text 0000000000000000 .LBE18 +0000000000004438 l .text 0000000000000000 .LBB19 +000000000000443a l .text 0000000000000000 .LBE19 +00000000000043fe l .text 0000000000000000 .LBE22 +00000000000043fe l .text 0000000000000000 .LBB27 +0000000000004400 l .text 0000000000000000 .LBE27 +00000000000043d2 l .text 0000000000000000 .LBB24 +00000000000043fe l .text 0000000000000000 .LBE24 +00000000000043fe l .text 0000000000000000 .LBB25 +0000000000004400 l .text 0000000000000000 .LBE25 +000000000000444c l .text 0000000000000000 .LBE30 +00000000000044e4 l .text 0000000000000000 .LBB42 +00000000000044f8 l .text 0000000000000000 .LBE42 +0000000000004512 l .text 0000000000000000 .LBB44 +000000000000454e l .text 0000000000000000 .LBE44 +00000000000044e4 l .text 0000000000000000 .LBB32 +00000000000044f8 l .text 0000000000000000 .LBE32 +000000000000452a l .text 0000000000000000 .LBB33 +0000000000004544 l .text 0000000000000000 .LBE33 +00000000000044aa l .text 0000000000000000 .LBE36 +00000000000044f8 l .text 0000000000000000 .LBB43 +00000000000044fc l .text 0000000000000000 .LBE43 +0000000000004552 l .text 0000000000000000 .LBB45 +0000000000004682 l .text 0000000000000000 .LBE45 +00000000000045f8 l .text 0000000000000000 .LBB38 +0000000000004658 l .text 0000000000000000 .LBE38 +0000000000004658 l .text 0000000000000000 .LBB39 +000000000000465a l .text 0000000000000000 .LBE39 +0000000000004144 l .text 0000000000000000 .L0 +00000000000041c2 l .text 0000000000000000 .L0 +0000000000004144 l .text 0000000000000000 .L0 +0000000000004144 l .text 0000000000000000 .L0 +000000000000414c l .text 0000000000000000 .L0 +000000000000414e l .text 0000000000000000 .L0 +000000000000414e l .text 0000000000000000 .L0 +000000000000414e l .text 0000000000000000 .L0 +0000000000004150 l .text 0000000000000000 .L0 +0000000000004154 l .text 0000000000000000 .L0 +0000000000004154 l .text 0000000000000000 .L0 +0000000000004154 l .text 0000000000000000 .L0 +0000000000004166 l .text 0000000000000000 .L0 +0000000000004166 l .text 0000000000000000 .L0 +000000000000416a l .text 0000000000000000 .L0 +000000000000416a l .text 0000000000000000 .L0 +000000000000416c l .text 0000000000000000 .L0 +0000000000004194 l .text 0000000000000000 .L0 +0000000000004194 l .text 0000000000000000 .L0 +0000000000004196 l .text 0000000000000000 .L0 +00000000000041a0 l .text 0000000000000000 .L0 +00000000000041a0 l .text 0000000000000000 .L0 +00000000000041a2 l .text 0000000000000000 .L0 +00000000000041a4 l .text 0000000000000000 .L0 +00000000000041a6 l .text 0000000000000000 .L0 +00000000000041aa l .text 0000000000000000 .L0 +00000000000041aa l .text 0000000000000000 .L0 +00000000000041aa l .text 0000000000000000 .L0 +00000000000041ae l .text 0000000000000000 .L0 +00000000000041b0 l .text 0000000000000000 .L0 +00000000000041b0 l .text 0000000000000000 .L0 +00000000000041b4 l .text 0000000000000000 .L0 +00000000000041b8 l .text 0000000000000000 .L0 +00000000000041ba l .text 0000000000000000 .L0 +00000000000041c0 l .text 0000000000000000 .L0 +00000000000041c0 l .text 0000000000000000 .L0 +00000000000041c2 l .text 0000000000000000 .L0 +00000000000041c2 l .text 0000000000000000 .L0 +00000000000041c2 l .text 0000000000000000 .L0 +00000000000041c2 l .text 0000000000000000 .L0 +00000000000041c2 l .text 0000000000000000 .L0 +00000000000041c2 l .text 0000000000000000 .L0 +00000000000041c2 l .text 0000000000000000 .L0 +00000000000041c2 l .text 0000000000000000 .L0 +00000000000041c2 l .text 0000000000000000 .L0 +00000000000041ce l .text 0000000000000000 .L0 +00000000000041d6 l .text 0000000000000000 .L0 +00000000000041ec l .text 0000000000000000 .L0 +00000000000041f4 l .text 0000000000000000 .L0 +00000000000041f4 l .text 0000000000000000 .L0 +00000000000041fa l .text 0000000000000000 .L0 +00000000000041fc l .text 0000000000000000 .L0 +00000000000041fe l .text 0000000000000000 .L0 +00000000000041fe l .text 0000000000000000 .L0 +00000000000041fe l .text 0000000000000000 .L0 +0000000000004200 l .text 0000000000000000 .L0 +0000000000004202 l .text 0000000000000000 .L0 +0000000000004204 l .text 0000000000000000 .L0 +0000000000004206 l .text 0000000000000000 .L0 +0000000000004208 l .text 0000000000000000 .L0 +0000000000004210 l .text 0000000000000000 .L0 +0000000000004218 l .text 0000000000000000 .L0 +0000000000004220 l .text 0000000000000000 .L0 +0000000000004228 l .text 0000000000000000 .L0 +0000000000004230 l .text 0000000000000000 .L0 +0000000000004232 l .text 0000000000000000 .L0 +0000000000004232 l .text 0000000000000000 .L0 +0000000000004238 l .text 0000000000000000 .L0 +0000000000004238 l .text 0000000000000000 .L0 +000000000000423c l .text 0000000000000000 .L0 +0000000000004240 l .text 0000000000000000 .L0 +0000000000004256 l .text 0000000000000000 .L0 +0000000000004256 l .text 0000000000000000 .L0 +0000000000004256 l .text 0000000000000000 .L0 +0000000000004258 l .text 0000000000000000 .L0 +000000000000425c l .text 0000000000000000 .L0 +000000000000425c l .text 0000000000000000 .L0 +000000000000425e l .text 0000000000000000 .L0 +0000000000004268 l .text 0000000000000000 .L0 +0000000000004268 l .text 0000000000000000 .L0 +0000000000004288 l .text 0000000000000000 .L0 +0000000000004288 l .text 0000000000000000 .L0 +00000000000042a0 l .text 0000000000000000 .L0 +00000000000042a2 l .text 0000000000000000 .L0 +00000000000042a2 l .text 0000000000000000 .L0 +00000000000042a6 l .text 0000000000000000 .L0 +00000000000042b0 l .text 0000000000000000 .L0 +00000000000042b0 l .text 0000000000000000 .L0 +00000000000042b4 l .text 0000000000000000 .L0 +00000000000042c2 l .text 0000000000000000 .L0 +00000000000042c2 l .text 0000000000000000 .L0 +00000000000042c8 l .text 0000000000000000 .L0 +00000000000042c8 l .text 0000000000000000 .L0 +00000000000042d6 l .text 0000000000000000 .L0 +00000000000042d8 l .text 0000000000000000 .L0 +00000000000042d8 l .text 0000000000000000 .L0 +00000000000042da l .text 0000000000000000 .L0 +00000000000042e4 l .text 0000000000000000 .L0 +00000000000042e4 l .text 0000000000000000 .L0 +00000000000042e8 l .text 0000000000000000 .L0 +00000000000042f8 l .text 0000000000000000 .L0 +00000000000042f8 l .text 0000000000000000 .L0 +0000000000004306 l .text 0000000000000000 .L0 +0000000000004308 l .text 0000000000000000 .L0 +0000000000004308 l .text 0000000000000000 .L0 +0000000000004318 l .text 0000000000000000 .L0 +0000000000004318 l .text 0000000000000000 .L0 +0000000000004326 l .text 0000000000000000 .L0 +0000000000004328 l .text 0000000000000000 .L0 +0000000000004328 l .text 0000000000000000 .L0 +0000000000004334 l .text 0000000000000000 .L0 +0000000000004338 l .text 0000000000000000 .L0 +0000000000004338 l .text 0000000000000000 .L0 +0000000000004346 l .text 0000000000000000 .L0 +0000000000004348 l .text 0000000000000000 .L0 +0000000000004348 l .text 0000000000000000 .L0 +0000000000004354 l .text 0000000000000000 .L0 +0000000000004358 l .text 0000000000000000 .L0 +0000000000004358 l .text 0000000000000000 .L0 +0000000000004366 l .text 0000000000000000 .L0 +0000000000004368 l .text 0000000000000000 .L0 +0000000000004368 l .text 0000000000000000 .L0 +000000000000436e l .text 0000000000000000 .L0 +000000000000436e l .text 0000000000000000 .L0 +0000000000004378 l .text 0000000000000000 .L0 +000000000000437a l .text 0000000000000000 .L0 +000000000000437a l .text 0000000000000000 .L0 +000000000000437c l .text 0000000000000000 .L0 +0000000000004392 l .text 0000000000000000 .L0 +0000000000004392 l .text 0000000000000000 .L0 +0000000000004394 l .text 0000000000000000 .L0 +00000000000043a0 l .text 0000000000000000 .L0 +00000000000043a0 l .text 0000000000000000 .L0 +00000000000043a0 l .text 0000000000000000 .L0 +00000000000043ac l .text 0000000000000000 .L0 +00000000000043ae l .text 0000000000000000 .L0 +00000000000043ae l .text 0000000000000000 .L0 +00000000000043b2 l .text 0000000000000000 .L0 +00000000000043b2 l .text 0000000000000000 .L0 +00000000000043b2 l .text 0000000000000000 .L0 +00000000000043b2 l .text 0000000000000000 .L0 +00000000000043cc l .text 0000000000000000 .L0 +00000000000043ce l .text 0000000000000000 .L0 +00000000000043ce l .text 0000000000000000 .L0 +00000000000043d2 l .text 0000000000000000 .L0 +00000000000043d2 l .text 0000000000000000 .L0 +00000000000043d4 l .text 0000000000000000 .L0 +00000000000043fe l .text 0000000000000000 .L0 +00000000000043fe l .text 0000000000000000 .L0 +00000000000043fe l .text 0000000000000000 .L0 +0000000000004400 l .text 0000000000000000 .L0 +000000000000440c l .text 0000000000000000 .L0 +000000000000440c l .text 0000000000000000 .L0 +000000000000440e l .text 0000000000000000 .L0 +0000000000004438 l .text 0000000000000000 .L0 +0000000000004438 l .text 0000000000000000 .L0 +0000000000004438 l .text 0000000000000000 .L0 +000000000000443a l .text 0000000000000000 .L0 +0000000000004446 l .text 0000000000000000 .L0 +0000000000004446 l .text 0000000000000000 .L0 +0000000000004446 l .text 0000000000000000 .L0 +0000000000004448 l .text 0000000000000000 .L0 +000000000000444a l .text 0000000000000000 .L0 +000000000000444c l .text 0000000000000000 .L0 +0000000000004452 l .text 0000000000000000 .L0 +0000000000004458 l .text 0000000000000000 .L0 +0000000000004458 l .text 0000000000000000 .L0 +0000000000004458 l .text 0000000000000000 .L0 +000000000000445c l .text 0000000000000000 .L0 +000000000000445e l .text 0000000000000000 .L0 +0000000000004460 l .text 0000000000000000 .L0 +0000000000004460 l .text 0000000000000000 .L0 +0000000000004460 l .text 0000000000000000 .L0 +0000000000004462 l .text 0000000000000000 .L0 +0000000000004464 l .text 0000000000000000 .L0 +0000000000004464 l .text 0000000000000000 .L0 +0000000000004464 l .text 0000000000000000 .L0 +0000000000004464 l .text 0000000000000000 .L0 +0000000000004464 l .text 0000000000000000 .L0 +0000000000004464 l .text 0000000000000000 .L0 +0000000000004464 l .text 0000000000000000 .L0 +000000000000447c l .text 0000000000000000 .L0 +000000000000447c l .text 0000000000000000 .L0 +0000000000004480 l .text 0000000000000000 .L0 +00000000000044aa l .text 0000000000000000 .L0 +00000000000044aa l .text 0000000000000000 .L0 +00000000000044b6 l .text 0000000000000000 .L0 +00000000000044b6 l .text 0000000000000000 .L0 +00000000000044c8 l .text 0000000000000000 .L0 +00000000000044c8 l .text 0000000000000000 .L0 +00000000000044ce l .text 0000000000000000 .L0 +00000000000044e4 l .text 0000000000000000 .L0 +00000000000044f8 l .text 0000000000000000 .L0 +00000000000044f8 l .text 0000000000000000 .L0 +00000000000044f8 l .text 0000000000000000 .L0 +00000000000044fc l .text 0000000000000000 .L0 +00000000000044fc l .text 0000000000000000 .L0 +0000000000004508 l .text 0000000000000000 .L0 +0000000000004508 l .text 0000000000000000 .L0 +000000000000450c l .text 0000000000000000 .L0 +000000000000450c l .text 0000000000000000 .L0 +0000000000004512 l .text 0000000000000000 .L0 +0000000000004512 l .text 0000000000000000 .L0 +0000000000004512 l .text 0000000000000000 .L0 +0000000000004514 l .text 0000000000000000 .L0 +0000000000004514 l .text 0000000000000000 .L0 +0000000000004514 l .text 0000000000000000 .L0 +0000000000004514 l .text 0000000000000000 .L0 +0000000000004516 l .text 0000000000000000 .L0 +0000000000004516 l .text 0000000000000000 .L0 +0000000000004516 l .text 0000000000000000 .L0 +0000000000004526 l .text 0000000000000000 .L0 +0000000000004526 l .text 0000000000000000 .L0 +000000000000452a l .text 0000000000000000 .L0 +000000000000452a l .text 0000000000000000 .L0 +000000000000452c l .text 0000000000000000 .L0 +0000000000004544 l .text 0000000000000000 .L0 +0000000000004544 l .text 0000000000000000 .L0 +0000000000004546 l .text 0000000000000000 .L0 +0000000000004548 l .text 0000000000000000 .L0 +0000000000004548 l .text 0000000000000000 .L0 +000000000000454a l .text 0000000000000000 .L0 +000000000000454a l .text 0000000000000000 .L0 +000000000000454e l .text 0000000000000000 .L0 +000000000000454e l .text 0000000000000000 .L0 +000000000000454e l .text 0000000000000000 .L0 +0000000000004552 l .text 0000000000000000 .L0 +0000000000004552 l .text 0000000000000000 .L0 +0000000000004558 l .text 0000000000000000 .L0 +000000000000455c l .text 0000000000000000 .L0 +000000000000455c l .text 0000000000000000 .L0 +0000000000004566 l .text 0000000000000000 .L0 +0000000000004566 l .text 0000000000000000 .L0 +000000000000456a l .text 0000000000000000 .L0 +000000000000456a l .text 0000000000000000 .L0 +000000000000456c l .text 0000000000000000 .L0 +000000000000456e l .text 0000000000000000 .L0 +0000000000004578 l .text 0000000000000000 .L0 +0000000000004578 l .text 0000000000000000 .L0 +000000000000457a l .text 0000000000000000 .L0 +0000000000004580 l .text 0000000000000000 .L0 +0000000000004586 l .text 0000000000000000 .L0 +0000000000004586 l .text 0000000000000000 .L0 +0000000000004592 l .text 0000000000000000 .L0 +0000000000004592 l .text 0000000000000000 .L0 +0000000000004596 l .text 0000000000000000 .L0 +0000000000004596 l .text 0000000000000000 .L0 +00000000000045a4 l .text 0000000000000000 .L0 +00000000000045a6 l .text 0000000000000000 .L0 +00000000000045aa l .text 0000000000000000 .L0 +00000000000045aa l .text 0000000000000000 .L0 +00000000000045ae l .text 0000000000000000 .L0 +00000000000045d8 l .text 0000000000000000 .L0 +00000000000045d8 l .text 0000000000000000 .L0 +00000000000045d8 l .text 0000000000000000 .L0 +00000000000045dc l .text 0000000000000000 .L0 +00000000000045e6 l .text 0000000000000000 .L0 +00000000000045e6 l .text 0000000000000000 .L0 +00000000000045e8 l .text 0000000000000000 .L0 +00000000000045e8 l .text 0000000000000000 .L0 +00000000000045f6 l .text 0000000000000000 .L0 +00000000000045f8 l .text 0000000000000000 .L0 +00000000000045f8 l .text 0000000000000000 .L0 +0000000000004610 l .text 0000000000000000 .L0 +0000000000004620 l .text 0000000000000000 .L0 +0000000000004638 l .text 0000000000000000 .L0 +0000000000004648 l .text 0000000000000000 .L0 +0000000000004658 l .text 0000000000000000 .L0 +0000000000004658 l .text 0000000000000000 .L0 +0000000000004658 l .text 0000000000000000 .L0 +0000000000004658 l .text 0000000000000000 .L0 +000000000000465a l .text 0000000000000000 .L0 +000000000000467e l .text 0000000000000000 .L0 +000000000000467e l .text 0000000000000000 .L0 +0000000000004682 l .text 0000000000000000 .L0 +0000000000001928 l .debug_frame 0000000000000000 .L0 +0000000000004144 l .text 0000000000000000 .L0 +00000000000041c2 l .text 0000000000000000 .L0 +00000000000041c2 l .text 0000000000000000 .L0 +0000000000004682 l .text 0000000000000000 .L0 +0000000000004198 l .text 0000000000000000 .L0 +000000000000414c l .text 0000000000000000 .L0 +000000000000426a l .text 0000000000000000 .L0 +00000000000041ec l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 nsh_envcmds.c +0000000000000000 l O .srodata.g_home 0000000000000002 g_home +0000000000000000 l O .srodata.g_oldpwd 0000000000000007 g_oldpwd +0000000000000000 l O .srodata.g_pwd 0000000000000004 g_pwd +0000000000000000 l .srodata.g_pwd 0000000000000000 .LANCHOR1 +0000000000004684 l .text 0000000000000000 .L0 +0000000000000000 l .srodata.g_home 0000000000000000 .LANCHOR0 +0000000000004698 l .text 0000000000000000 .L0 +00000000000046a0 l .text 0000000000000000 .L1 +00000000000046ba l .text 0000000000000000 .L0 +000000000000bf38 l .rodata 0000000000000000 .LC0 +00000000000046ec l .text 0000000000000000 .L0 +000000000000471c l .text 0000000000000000 .L0 +000000000000471c l .text 0000000000000000 .L13 +00000000000046d4 l .text 0000000000000000 .L6 +00000000000046e0 l .text 0000000000000000 .L7 +00000000000046c2 l .text 0000000000000000 .L16 +0000000000004704 l .text 0000000000000000 .L8 +00000000000046cc l .text 0000000000000000 .L17 +0000000000004730 l .text 0000000000000000 .L18 +000000000000bf40 l .rodata 0000000000000000 .LC1 +000000000000474c l .text 0000000000000000 .L0 +000000000000bf48 l .rodata 0000000000000000 .LC2 +0000000000004760 l .text 0000000000000000 .L0 +0000000000000000 l .srodata.g_oldpwd 0000000000000000 .LANCHOR2 +0000000000004774 l .text 0000000000000000 .L0 +0000000000004786 l .text 0000000000000000 .L0 +000000000000bf58 l .rodata 0000000000000000 .LC4 +00000000000047bc l .text 0000000000000000 .L0 +00000000000047c4 l .text 0000000000000000 .L0 +000000000000bf50 l .rodata 0000000000000000 .LC3 +00000000000047fc l .text 0000000000000000 .L0 +0000000000004842 l .text 0000000000000000 .L0 +000000000000483e l .text 0000000000000000 .L29 +00000000000047fc l .text 0000000000000000 .L22 +000000000000478e l .text 0000000000000000 .L23 +00000000000047d2 l .text 0000000000000000 .L25 +00000000000047de l .text 0000000000000000 .L26 +00000000000047ea l .text 0000000000000000 .L27 +000000000000482c l .text 0000000000000000 .L24 +0000000000004798 l .text 0000000000000000 .L40 +000000000000479a l .text 0000000000000000 .L21 +000000000000bf74 l .rodata 0000000000000000 .L58 +00000000000048bc l .text 0000000000000000 .L0 +000000000000bf60 l .rodata 0000000000000000 .LC5 +0000000000004a04 l .text 0000000000000000 .L0 +000000000000bf68 l .rodata 0000000000000000 .LC6 +0000000000004a1a l .text 0000000000000000 .L0 +000000000000bf70 l .rodata 0000000000000000 .LC7 +0000000000004a56 l .text 0000000000000000 .L0 +0000000000004a4e l .text 0000000000000000 .L49 +00000000000048b6 l .text 0000000000000000 .L44 +00000000000048dc l .text 0000000000000000 .L45 +0000000000004904 l .text 0000000000000000 .L46 +00000000000049fc l .text 0000000000000000 .L51 +0000000000004918 l .text 0000000000000000 .L76 +00000000000048aa l .text 0000000000000000 .L43 +0000000000004910 l .text 0000000000000000 .L79 +0000000000004914 l .text 0000000000000000 .L80 +00000000000048f4 l .text 0000000000000000 .L48 +0000000000004894 l .text 0000000000000000 .L42 +0000000000004926 l .text 0000000000000000 .L53 +000000000000496a l .text 0000000000000000 .L54 +000000000000493c l .text 0000000000000000 .L55 +0000000000004a48 l .text 0000000000000000 .L65 +00000000000049b6 l .text 0000000000000000 .L68 +000000000000497a l .text 0000000000000000 .L69 +00000000000048d0 l .text 0000000000000000 .L52 +0000000000004996 l .text 0000000000000000 .L81 +0000000000004970 l .text 0000000000000000 .L71 +0000000000004922 l .text 0000000000000000 .L100 +000000000000498e l .text 0000000000000000 .L70 +00000000000049dc l .text 0000000000000000 .L72 +00000000000049d6 l .text 0000000000000000 .L74 +000000000000499a l .text 0000000000000000 .L75 +00000000000049b0 l .text 0000000000000000 .L73 +00000000000048c4 l .text 0000000000000000 .L98 +0000000000004a2a l .text 0000000000000000 .L101 +0000000000004a62 l .text 0000000000000000 .L78 +00000000000049f4 l .text 0000000000000000 .L64 +000000000000495c l .text 0000000000000000 .L56 +0000000000004a28 l .text 0000000000000000 .L63 +0000000000004a30 l .text 0000000000000000 .L62 +0000000000004a3a l .text 0000000000000000 .L61 +0000000000004a44 l .text 0000000000000000 .L60 +0000000000004a36 l .text 0000000000000000 .L59 +0000000000004a3e l .text 0000000000000000 .L57 +000000000000bfb0 l .rodata 0000000000000000 .LC8 +0000000000004a86 l .text 0000000000000000 .L0 +000000000000bfc8 l .rodata 0000000000000000 .LC9 +0000000000004aac l .text 0000000000000000 .L0 +000000000000bfd0 l .rodata 0000000000000000 .LC10 +0000000000004b1e l .text 0000000000000000 .L0 +0000000000004b26 l .text 0000000000000000 .L0 +000000000000bfd8 l .rodata 0000000000000000 .LC11 +0000000000004bb8 l .text 0000000000000000 .L0 +0000000000004bc0 l .text 0000000000000000 .L0 +0000000000004bf0 l .text 0000000000000000 .L0 +0000000000004bf8 l .text 0000000000000000 .L0 +0000000000004b74 l .text 0000000000000000 .L106 +0000000000004b4c l .text 0000000000000000 .L107 +0000000000004bdc l .text 0000000000000000 .L121 +0000000000004bce l .text 0000000000000000 .L114 +0000000000004b34 l .text 0000000000000000 .L108 +0000000000004c02 l .text 0000000000000000 .L111 +0000000000004b2e l .text 0000000000000000 .L122 +0000000000004c26 l .text 0000000000000000 .L112 +0000000000004b68 l .text 0000000000000000 .L110 +0000000000004c1c l .text 0000000000000000 .L120 +000000000000bfe0 l .rodata 0000000000000000 .LC12 +0000000000004c5e l .text 0000000000000000 .L0 +0000000000004c66 l .text 0000000000000000 .L0 +0000000000004c80 l .text 0000000000000000 .L125 +0000000000004c74 l .text 0000000000000000 .L124 +00000000000059a1 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +00000000000112a4 l .debug_str 0000000000000000 .LASF116 +0000000000010f77 l .debug_str 0000000000000000 .LASF117 +0000000000011039 l .debug_str 0000000000000000 .LASF118 +0000000000001ad0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000000de50 l .debug_line 0000000000000000 .Ldebug_line0 +0000000000010f50 l .debug_str 0000000000000000 .LASF0 +00000000000111e0 l .debug_str 0000000000000000 .LASF3 +0000000000011178 l .debug_str 0000000000000000 .LASF1 +0000000000011186 l .debug_str 0000000000000000 .LASF2 +0000000000011117 l .debug_str 0000000000000000 .LASF4 +000000000001107b l .debug_str 0000000000000000 .LASF5 +000000000001101f l .debug_str 0000000000000000 .LASF6 +0000000000010f9e l .debug_str 0000000000000000 .LASF7 +0000000000011057 l .debug_str 0000000000000000 .LASF8 +000000000001135e l .debug_str 0000000000000000 .LASF9 +00000000000110ce l .debug_str 0000000000000000 .LASF10 +0000000000010ee3 l .debug_str 0000000000000000 .LASF11 +0000000000011214 l .debug_str 0000000000000000 .LASF12 +0000000000010fc2 l .debug_str 0000000000000000 .LASF13 +0000000000010ea0 l .debug_str 0000000000000000 .LASF14 +0000000000010eb3 l .debug_str 0000000000000000 .LASF15 +00000000000111e9 l .debug_str 0000000000000000 .LASF16 +0000000000011101 l .debug_str 0000000000000000 .LASF17 +0000000000010f42 l .debug_str 0000000000000000 .LASF18 +0000000000010ff8 l .debug_str 0000000000000000 .LASF19 +0000000000010ed8 l .debug_str 0000000000000000 .LASF25 +0000000000011397 l .debug_str 0000000000000000 .LASF20 +00000000000111cf l .debug_str 0000000000000000 .LASF21 +0000000000010fda l .debug_str 0000000000000000 .LASF22 +00000000000110dc l .debug_str 0000000000000000 .LASF23 +0000000000011242 l .debug_str 0000000000000000 .LASF24 +00000000000111b0 l .debug_str 0000000000000000 .LASF26 +0000000000011373 l .debug_str 0000000000000000 .LASF27 +00000000000110ed l .debug_str 0000000000000000 .LASF28 +0000000000011292 l .debug_str 0000000000000000 .LASF29 +000000000001124b l .debug_str 0000000000000000 .LASF30 +0000000000011228 l .debug_str 0000000000000000 .LASF31 +000000000001113b l .debug_str 0000000000000000 .LASF32 +0000000000010f85 l .debug_str 0000000000000000 .LASF33 +0000000000011004 l .debug_str 0000000000000000 .LASF34 +00000000000111c0 l .debug_str 0000000000000000 .LASF35 +0000000000011010 l .debug_str 0000000000000000 .LASF36 +000000000001115f l .debug_str 0000000000000000 .LASF37 +00000000000111aa l .debug_str 0000000000000000 .LASF38 +0000000000011389 l .debug_str 0000000000000000 .LASF39 +0000000000010fb0 l .debug_str 0000000000000000 .LASF40 +0000000000010fcb l .debug_str 0000000000000000 .LASF41 +0000000000010fa7 l .debug_str 0000000000000000 .LASF42 +0000000000010fb9 l .debug_str 0000000000000000 .LASF43 +00000000000111fd l .debug_str 0000000000000000 .LASF44 +0000000000011280 l .debug_str 0000000000000000 .LASF45 +0000000000011172 l .debug_str 0000000000000000 .LASF46 +000000000001136d l .debug_str 0000000000000000 .LASF119 +0000000000010f13 l .debug_str 0000000000000000 .LASF47 +0000000000010f1f l .debug_str 0000000000000000 .LASF48 +0000000000011070 l .debug_str 0000000000000000 .LASF49 +0000000000011019 l .debug_str 0000000000000000 .LASF50 +0000000000010f24 l .debug_str 0000000000000000 .LASF51 +0000000000011259 l .debug_str 0000000000000000 .LASF52 +00000000000111c8 l .debug_str 0000000000000000 .LASF53 +0000000000010f5c l .debug_str 0000000000000000 .LASF54 +00000000000110d6 l .debug_str 0000000000000000 .LASF55 +0000000000011222 l .debug_str 0000000000000000 .LASF56 +0000000000011148 l .debug_str 0000000000000000 .LASF57 +00000000000110e6 l .debug_str 0000000000000000 .LASF58 +0000000000010e84 l .debug_str 0000000000000000 .LASF59 +0000000000011156 l .debug_str 0000000000000000 .LASF60 +0000000000011097 l .debug_str 0000000000000000 .LASF61 +00000000000111bb l .debug_str 0000000000000000 .LASF62 +000000000001129b l .debug_str 0000000000000000 .LASF63 +0000000000011208 l .debug_str 0000000000000000 .LASF64 +0000000000011367 l .debug_str 0000000000000000 .LASF65 +0000000000011354 l .debug_str 0000000000000000 .LASF66 +000000000001120d l .debug_str 0000000000000000 .LASF67 +000000000001126f l .debug_str 0000000000000000 .LASF68 +0000000000010efa l .debug_str 0000000000000000 .LASF69 +00000000000111ee l .debug_str 0000000000000000 .LASF70 +0000000000011167 l .debug_str 0000000000000000 .LASF71 +0000000000011075 l .debug_str 0000000000000000 .LASF72 +0000000000011190 l .debug_str 0000000000000000 .LASF73 +0000000000010f6c l .debug_str 0000000000000000 .LASF74 +00000000000111db l .debug_str 0000000000000000 .LASF75 +00000000000110fc l .debug_str 0000000000000000 .LASF76 +000000000001102c l .debug_str 0000000000000000 .LASF77 +000000000001125f l .debug_str 0000000000000000 .LASF78 +0000000000010eac l .debug_str 0000000000000000 .LASF79 +0000000000010e96 l .debug_str 0000000000000000 .LASF84 +0000000000004c2e l .text 0000000000000000 .LFB11 +0000000000004c84 l .text 0000000000000000 .LFE11 +000000000001137d l .debug_str 0000000000000000 .LASF80 +000000000000dc13 l .debug_loc 0000000000000000 .LLST42 +0000000000011392 l .debug_str 0000000000000000 .LASF81 +000000000000dc72 l .debug_loc 0000000000000000 .LLST43 +00000000000113a1 l .debug_str 0000000000000000 .LASF82 +000000000000dcab l .debug_loc 0000000000000000 .LLST44 +00000000000110a8 l .debug_str 0000000000000000 .LASF83 +000000000000dd0a l .debug_loc 0000000000000000 .LLST45 +000000000000dd40 l .debug_loc 0000000000000000 .LLST46 +0000000000004c46 l .text 0000000000000000 .LVL158 +0000000000004c5a l .text 0000000000000000 .LVL159 +0000000000004c72 l .text 0000000000000000 .LVL160 +0000000000010f64 l .debug_str 0000000000000000 .LASF85 +0000000000004ac4 l .text 0000000000000000 .LFB10 +0000000000004c2e l .text 0000000000000000 .LFE10 +000000000000dda0 l .debug_loc 0000000000000000 .LLST34 +000000000000ddff l .debug_loc 0000000000000000 .LLST35 +000000000000de38 l .debug_loc 0000000000000000 .LLST36 +000000000000de97 l .debug_loc 0000000000000000 .LLST37 +000000000000df06 l .debug_loc 0000000000000000 .LLST38 +000000000000dfa2 l .debug_loc 0000000000000000 .LLST39 +0000000000010ea7 l .debug_str 0000000000000000 .LASF86 +000000000000dfee l .debug_loc 0000000000000000 .LLST40 +00000000000110f7 l .debug_str 0000000000000000 .LASF87 +000000000000e024 l .debug_loc 0000000000000000 .LLST41 +0000000000004b06 l .text 0000000000000000 .LVL130 +0000000000004b1a l .text 0000000000000000 .LVL132 +0000000000004b32 l .text 0000000000000000 .LVL134 +0000000000004b8e l .text 0000000000000000 .LVL143 +0000000000004b9e l .text 0000000000000000 .LVL146 +0000000000004bb4 l .text 0000000000000000 .LVL148 +0000000000004bcc l .text 0000000000000000 .LVL149 +0000000000004bda l .text 0000000000000000 .LVL152 +0000000000004bec l .text 0000000000000000 .LVL154 +000000000001114e l .debug_str 0000000000000000 .LASF88 +0000000000004a96 l .text 0000000000000000 .LFB9 +0000000000004ac4 l .text 0000000000000000 .LFE9 +000000000000e064 l .debug_loc 0000000000000000 .LLST31 +000000000000e0b0 l .debug_loc 0000000000000000 .LLST32 +000000000000e0e9 l .debug_loc 0000000000000000 .LLST33 +0000000000004aaa l .text 0000000000000000 .LVL125 +0000000000004ab8 l .text 0000000000000000 .LVL126 +00000000000113a6 l .debug_str 0000000000000000 .LASF89 +0000000000004a82 l .text 0000000000000000 .LFB8 +0000000000004a96 l .text 0000000000000000 .LFE8 +000000000000e122 l .debug_loc 0000000000000000 .LLST28 +000000000000e15b l .debug_loc 0000000000000000 .LLST29 +000000000000e194 l .debug_loc 0000000000000000 .LLST30 +0000000000004a96 l .text 0000000000000000 .LVL123 +0000000000011121 l .debug_str 0000000000000000 .LASF90 +000000000000484c l .text 0000000000000000 .LFB7 +0000000000004a82 l .text 0000000000000000 .LFE7 +000000000000e1e0 l .debug_loc 0000000000000000 .LLST17 +000000000000e22c l .debug_loc 0000000000000000 .LLST18 +000000000000e29d l .debug_loc 0000000000000000 .LLST19 +0000000000010f3a l .debug_str 0000000000000000 .LASF91 +000000000000e2d3 l .debug_loc 0000000000000000 .LLST20 +0000000000011268 l .debug_str 0000000000000000 .LASF92 +000000000000e31d l .debug_loc 0000000000000000 .LLST21 +0000000000010ff0 l .debug_str 0000000000000000 .LASF120 +0000000000010f99 l .debug_str 0000000000000000 .LASF93 +000000000000e37a l .debug_loc 0000000000000000 .LLST22 +000000000000e3b0 l .debug_loc 0000000000000000 .LLST23 +00000000000048b6 l .text 0000000000000000 .LBB27 +000000000000e3fa l .debug_loc 0000000000000000 .LLST24 +000000000000e539 l .debug_loc 0000000000000000 .LLST25 +000000000000e670 l .debug_loc 0000000000000000 .LLST26 +000000000000e6b4 l .debug_loc 0000000000000000 .LLST27 +00000000000049ce l .text 0000000000000000 .LVL95 +00000000000049e8 l .text 0000000000000000 .LVL98 +0000000000004a12 l .text 0000000000000000 .LVL104 +0000000000004a26 l .text 0000000000000000 .LVL106 +0000000000004a62 l .text 0000000000000000 .LVL116 +0000000000010ed1 l .debug_str 0000000000000000 .LASF94 +0000000000004732 l .text 0000000000000000 .LFB6 +000000000000484c l .text 0000000000000000 .LFE6 +000000000000e757 l .debug_loc 0000000000000000 .LLST8 +000000000000e7b6 l .debug_loc 0000000000000000 .LLST9 +000000000000e7ef l .debug_loc 0000000000000000 .LLST10 +0000000000010ec4 l .debug_str 0000000000000000 .LASF95 +000000000000e84e l .debug_loc 0000000000000000 .LLST11 +000000000001121c l .debug_str 0000000000000000 .LASF96 +000000000000e898 l .debug_loc 0000000000000000 .LLST12 +0000000000010f0a l .debug_str 0000000000000000 .LASF97 +000000000000e91d l .debug_loc 0000000000000000 .LLST13 +000000000000e98f l .debug_loc 0000000000000000 .LLST14 +0000000000004774 l .text 0000000000000000 .LBB20 +000000000000478e l .text 0000000000000000 .LBE20 +000000000000ea02 l .debug_loc 0000000000000000 .LLST15 +000000000000ea2a l .debug_loc 0000000000000000 .LLST16 +0000000000004784 l .text 0000000000000000 .LVL27 +000000000000475e l .text 0000000000000000 .LVL24 +0000000000004772 l .text 0000000000000000 .LVL25 +0000000000004796 l .text 0000000000000000 .LVL29 +00000000000047a2 l .text 0000000000000000 .LVL32 +00000000000047b8 l .text 0000000000000000 .LVL34 +00000000000047d0 l .text 0000000000000000 .LVL35 +00000000000047de l .text 0000000000000000 .LVL37 +00000000000047ea l .text 0000000000000000 .LVL38 +000000000000480e l .text 0000000000000000 .LVL45 +0000000000004818 l .text 0000000000000000 .LVL46 +0000000000004820 l .text 0000000000000000 .LVL47 +000000000000482a l .text 0000000000000000 .LVL49 +0000000000004838 l .text 0000000000000000 .LVL51 +000000000001112a l .debug_str 0000000000000000 .LASF121 +0000000000004726 l .text 0000000000000000 .LFB5 +0000000000004732 l .text 0000000000000000 .LFE5 +000000000000ea4d l .debug_loc 0000000000000000 .LLST7 +0000000000004730 l .text 0000000000000000 .LVL19 +0000000000011107 l .debug_str 0000000000000000 .LASF122 +0000000000010ec9 l .debug_str 0000000000000000 .LASF98 +0000000000010f2f l .debug_str 0000000000000000 .LASF99 +0000000000004682 l .text 0000000000000000 .LFB3 +00000000000046a6 l .text 0000000000000000 .LFE3 +0000000000004682 l .text 0000000000000000 .LBB4 +000000000000ea99 l .debug_loc 0000000000000000 .LLST0 +000000000000eac1 l .debug_loc 0000000000000000 .LLST1 +0000000000004696 l .text 0000000000000000 .LVL1 +0000000000010fe6 l .debug_str 0000000000000000 .LASF123 +00000000000110c3 l .debug_str 0000000000000000 .LASF124 +00000000000046a6 l .text 0000000000000000 .LFB4 +0000000000004726 l .text 0000000000000000 .LFE4 +000000000000eae4 l .debug_loc 0000000000000000 .LLST2 +000000000000ebbe l .debug_loc 0000000000000000 .LLST3 +00000000000046e2 l .text 0000000000000000 .LBB12 +000000000000ec59 l .debug_loc 0000000000000000 .LLST4 +000000000000eca5 l .debug_loc 0000000000000000 .LLST5 +000000000000ecf1 l .debug_loc 0000000000000000 .LLST6 +00000000000046ea l .text 0000000000000000 .LVL10 +00000000000046fe l .text 0000000000000000 .LVL12 +000000000000471c l .text 0000000000000000 .LVL16 +00000000000046d4 l .text 0000000000000000 .LVL6 +000000000001108e l .debug_str 0000000000000000 .LASF100 +0000000000010f91 l .debug_str 0000000000000000 .LASF101 +0000000000011032 l .debug_str 0000000000000000 .LASF102 +0000000000011233 l .debug_str 0000000000000000 .LASF103 +000000000001128b l .debug_str 0000000000000000 .LASF104 +0000000000011069 l .debug_str 0000000000000000 .LASF105 +00000000000110b7 l .debug_str 0000000000000000 .LASF106 +0000000000010ebb l .debug_str 0000000000000000 .LASF107 +00000000000110a0 l .debug_str 0000000000000000 .LASF108 +0000000000011382 l .debug_str 0000000000000000 .LASF109 +0000000000010e8f l .debug_str 0000000000000000 .LASF110 +0000000000010fd3 l .debug_str 0000000000000000 .LASF111 +0000000000010f8b l .debug_str 0000000000000000 .LASF112 +0000000000011254 l .debug_str 0000000000000000 .LASF113 +00000000000110af l .debug_str 0000000000000000 .LASF114 +000000000001119b l .debug_str 0000000000000000 .LASF115 +0000000000004c2e l .text 0000000000000000 .LVL156 +0000000000004c3c l .text 0000000000000000 .LVL157 +0000000000004c78 l .text 0000000000000000 .LVL162 +0000000000004c80 l .text 0000000000000000 .LVL164 +0000000000004c7a l .text 0000000000000000 .LVL163 +0000000000004c82 l .text 0000000000000000 .LVL165 +0000000000004c74 l .text 0000000000000000 .LVL161 +0000000000004ac4 l .text 0000000000000000 .LVL128 +0000000000004afe l .text 0000000000000000 .LVL129 +0000000000004b38 l .text 0000000000000000 .LVL136 +0000000000004b4c l .text 0000000000000000 .LVL139 +0000000000004b3e l .text 0000000000000000 .LVL137 +0000000000004b68 l .text 0000000000000000 .LVL141 +0000000000004b74 l .text 0000000000000000 .LVL142 +0000000000004b90 l .text 0000000000000000 .LVL144 +0000000000004b94 l .text 0000000000000000 .LVL145 +0000000000004bce l .text 0000000000000000 .LVL150 +0000000000004bdc l .text 0000000000000000 .LVL153 +0000000000004c02 l .text 0000000000000000 .LVL155 +0000000000004b0a l .text 0000000000000000 .LVL131 +0000000000004b2e l .text 0000000000000000 .LVL133 +0000000000004b34 l .text 0000000000000000 .LVL135 +0000000000004b48 l .text 0000000000000000 .LVL138 +0000000000004ba0 l .text 0000000000000000 .LVL147 +0000000000004b50 l .text 0000000000000000 .LVL140 +0000000000004a96 l .text 0000000000000000 .LVL124 +0000000000004abc l .text 0000000000000000 .LVL127 +0000000000004a82 l .text 0000000000000000 .LVL120 +0000000000004a86 l .text 0000000000000000 .LVL121 +0000000000004a8e l .text 0000000000000000 .LVL122 +000000000000484c l .text 0000000000000000 .LVL53 +0000000000004894 l .text 0000000000000000 .LVL56 +0000000000004a74 l .text 0000000000000000 .LVL119 +0000000000004874 l .text 0000000000000000 .LVL54 +000000000000490c l .text 0000000000000000 .LVL66 +0000000000004910 l .text 0000000000000000 .LVL68 +0000000000004a10 l .text 0000000000000000 .LVL103 +0000000000004a28 l .text 0000000000000000 .LVL107 +0000000000004a4e l .text 0000000000000000 .LVL115 +0000000000004878 l .text 0000000000000000 .LVL55 +0000000000004916 l .text 0000000000000000 .LVL71 +0000000000004918 l .text 0000000000000000 .LVL72 +0000000000004a6c l .text 0000000000000000 .LVL118 +0000000000004912 l .text 0000000000000000 .LVL69 +0000000000004914 l .text 0000000000000000 .LVL70 +0000000000004a6a l .text 0000000000000000 .LVL117 +00000000000048a8 l .text 0000000000000000 .LVL57 +00000000000048b6 l .text 0000000000000000 .LVL59 +00000000000048dc l .text 0000000000000000 .LVL62 +00000000000048aa l .text 0000000000000000 .LVL58 +00000000000048d0 l .text 0000000000000000 .LVL61 +000000000000491c l .text 0000000000000000 .LVL73 +0000000000004922 l .text 0000000000000000 .LVL74 +0000000000004926 l .text 0000000000000000 .LVL75 +000000000000495c l .text 0000000000000000 .LVL77 +0000000000004960 l .text 0000000000000000 .LVL78 +0000000000004966 l .text 0000000000000000 .LVL80 +000000000000498e l .text 0000000000000000 .LVL88 +0000000000004996 l .text 0000000000000000 .LVL89 +00000000000049d6 l .text 0000000000000000 .LVL96 +00000000000049dc l .text 0000000000000000 .LVL97 +00000000000049f4 l .text 0000000000000000 .LVL100 +00000000000049f8 l .text 0000000000000000 .LVL101 +00000000000049fc l .text 0000000000000000 .LVL102 +0000000000004a2a l .text 0000000000000000 .LVL108 +0000000000004a30 l .text 0000000000000000 .LVL109 +000000000000492e l .text 0000000000000000 .LVL76 +0000000000004964 l .text 0000000000000000 .LVL79 +000000000000496e l .text 0000000000000000 .LVL82 +0000000000004970 l .text 0000000000000000 .LVL83 +0000000000004976 l .text 0000000000000000 .LVL85 +000000000000497a l .text 0000000000000000 .LVL86 +0000000000004982 l .text 0000000000000000 .LVL87 +000000000000499a l .text 0000000000000000 .LVL90 +00000000000049b6 l .text 0000000000000000 .LVL93 +00000000000049bc l .text 0000000000000000 .LVL94 +0000000000004974 l .text 0000000000000000 .LVL84 +00000000000049b0 l .text 0000000000000000 .LVL91 +00000000000049f2 l .text 0000000000000000 .LVL99 +0000000000004732 l .text 0000000000000000 .LVL20 +0000000000004756 l .text 0000000000000000 .LVL23 +00000000000047f2 l .text 0000000000000000 .LVL41 +00000000000047fc l .text 0000000000000000 .LVL44 +0000000000004754 l .text 0000000000000000 .LVL22 +00000000000047f4 l .text 0000000000000000 .LVL42 +0000000000004736 l .text 0000000000000000 .LVL21 +000000000000483e l .text 0000000000000000 .LVL52 +0000000000004798 l .text 0000000000000000 .LVL30 +00000000000047ee l .text 0000000000000000 .LVL39 +0000000000004822 l .text 0000000000000000 .LVL48 +000000000000482c l .text 0000000000000000 .LVL50 +000000000000479a l .text 0000000000000000 .LVL31 +00000000000047f0 l .text 0000000000000000 .LVL40 +00000000000047a4 l .text 0000000000000000 .LVL33 +00000000000047d2 l .text 0000000000000000 .LVL36 +00000000000047f8 l .text 0000000000000000 .LVL43 +0000000000004774 l .text 0000000000000000 .LVL26 +000000000000478e l .text 0000000000000000 .LVL28 +000000000001528e l .debug_info 0000000000000000 .Ldebug_info0 +0000000000004726 l .text 0000000000000000 .LVL18 +0000000000004682 l .text 0000000000000000 .LVL0 +00000000000046a0 l .text 0000000000000000 .LVL2 +00000000000046a6 l .text 0000000000000000 .LVL3 +00000000000046c2 l .text 0000000000000000 .LVL4 +00000000000046de l .text 0000000000000000 .LVL7 +00000000000046e0 l .text 0000000000000000 .LVL8 +0000000000004712 l .text 0000000000000000 .LVL15 +0000000000004724 l .text 0000000000000000 .LVL17 +00000000000046c4 l .text 0000000000000000 .LVL5 +0000000000004708 l .text 0000000000000000 .LVL13 +00000000000046e2 l .text 0000000000000000 .LVL9 +00000000000046ec l .text 0000000000000000 .LVL11 +0000000000004710 l .text 0000000000000000 .LVL14 +0000000000004682 l .text 0000000000000000 .LBE4 +0000000000004684 l .text 0000000000000000 .LBB8 +000000000000468c l .text 0000000000000000 .LBE8 +000000000000468e l .text 0000000000000000 .LBB9 +00000000000046a0 l .text 0000000000000000 .LBE9 +0000000000004706 l .text 0000000000000000 .LBE12 +000000000000470a l .text 0000000000000000 .LBB16 +000000000000470e l .text 0000000000000000 .LBE16 +0000000000004714 l .text 0000000000000000 .LBB17 +000000000000471c l .text 0000000000000000 .LBE17 +0000000000004888 l .text 0000000000000000 .LBB25 +0000000000004894 l .text 0000000000000000 .LBE25 +00000000000048a4 l .text 0000000000000000 .LBB26 +00000000000048b6 l .text 0000000000000000 .LBE26 +00000000000048dc l .text 0000000000000000 .LBB35 +0000000000004918 l .text 0000000000000000 .LBE35 +00000000000048c4 l .text 0000000000000000 .LBE27 +00000000000048cc l .text 0000000000000000 .LBB33 +00000000000048ce l .text 0000000000000000 .LBE33 +00000000000048d0 l .text 0000000000000000 .LBB34 +00000000000048dc l .text 0000000000000000 .LBE34 +0000000000004918 l .text 0000000000000000 .LBB36 +00000000000049fc l .text 0000000000000000 .LBE36 +0000000000004a28 l .text 0000000000000000 .LBB37 +0000000000004a4e l .text 0000000000000000 .LBE37 +0000000000004682 l .text 0000000000000000 .L0 +00000000000046a6 l .text 0000000000000000 .L0 +0000000000004726 l .text 0000000000000000 .L0 +0000000000004732 l .text 0000000000000000 .L0 +000000000000484c l .text 0000000000000000 .L0 +0000000000004a82 l .text 0000000000000000 .L0 +0000000000004a96 l .text 0000000000000000 .L0 +0000000000004ac4 l .text 0000000000000000 .L0 +0000000000004c2e l .text 0000000000000000 .L0 +0000000000004682 l .text 0000000000000000 .L0 +0000000000004682 l .text 0000000000000000 .L0 +0000000000004682 l .text 0000000000000000 .L0 +0000000000004682 l .text 0000000000000000 .L0 +0000000000004684 l .text 0000000000000000 .L0 +000000000000468c l .text 0000000000000000 .L0 +000000000000468e l .text 0000000000000000 .L0 +0000000000004696 l .text 0000000000000000 .L0 +0000000000004696 l .text 0000000000000000 .L0 +0000000000004698 l .text 0000000000000000 .L0 +00000000000046a0 l .text 0000000000000000 .L0 +00000000000046a0 l .text 0000000000000000 .L0 +00000000000046a6 l .text 0000000000000000 .L0 +00000000000046a6 l .text 0000000000000000 .L0 +00000000000046a6 l .text 0000000000000000 .L0 +00000000000046a6 l .text 0000000000000000 .L0 +00000000000046a8 l .text 0000000000000000 .L0 +00000000000046b2 l .text 0000000000000000 .L0 +00000000000046b8 l .text 0000000000000000 .L0 +00000000000046ba l .text 0000000000000000 .L0 +00000000000046ba l .text 0000000000000000 .L0 +00000000000046c2 l .text 0000000000000000 .L0 +00000000000046cc l .text 0000000000000000 .L0 +00000000000046d4 l .text 0000000000000000 .L0 +00000000000046d4 l .text 0000000000000000 .L0 +00000000000046dc l .text 0000000000000000 .L0 +00000000000046dc l .text 0000000000000000 .L0 +00000000000046e2 l .text 0000000000000000 .L0 +00000000000046e2 l .text 0000000000000000 .L0 +00000000000046ec l .text 0000000000000000 .L0 +00000000000046ec l .text 0000000000000000 .L0 +00000000000046fe l .text 0000000000000000 .L0 +0000000000004700 l .text 0000000000000000 .L0 +0000000000004700 l .text 0000000000000000 .L0 +0000000000004704 l .text 0000000000000000 .L0 +0000000000004704 l .text 0000000000000000 .L0 +0000000000004706 l .text 0000000000000000 .L0 +000000000000470a l .text 0000000000000000 .L0 +000000000000470e l .text 0000000000000000 .L0 +0000000000004714 l .text 0000000000000000 .L0 +000000000000471c l .text 0000000000000000 .L0 +000000000000471c l .text 0000000000000000 .L0 +0000000000004726 l .text 0000000000000000 .L0 +0000000000004726 l .text 0000000000000000 .L0 +0000000000004726 l .text 0000000000000000 .L0 +0000000000004728 l .text 0000000000000000 .L0 +0000000000004730 l .text 0000000000000000 .L0 +0000000000004732 l .text 0000000000000000 .L0 +0000000000004732 l .text 0000000000000000 .L0 +0000000000004732 l .text 0000000000000000 .L0 +0000000000004732 l .text 0000000000000000 .L0 +0000000000004732 l .text 0000000000000000 .L0 +0000000000004732 l .text 0000000000000000 .L0 +0000000000004732 l .text 0000000000000000 .L0 +0000000000004740 l .text 0000000000000000 .L0 +0000000000004742 l .text 0000000000000000 .L0 +0000000000004746 l .text 0000000000000000 .L0 +000000000000474a l .text 0000000000000000 .L0 +000000000000474c l .text 0000000000000000 .L0 +000000000000475e l .text 0000000000000000 .L0 +0000000000004760 l .text 0000000000000000 .L0 +0000000000004760 l .text 0000000000000000 .L0 +0000000000004772 l .text 0000000000000000 .L0 +0000000000004774 l .text 0000000000000000 .L0 +0000000000004774 l .text 0000000000000000 .L0 +0000000000004774 l .text 0000000000000000 .L0 +0000000000004774 l .text 0000000000000000 .L0 +0000000000004784 l .text 0000000000000000 .L0 +0000000000004784 l .text 0000000000000000 .L0 +0000000000004786 l .text 0000000000000000 .L0 +000000000000478e l .text 0000000000000000 .L0 +000000000000478e l .text 0000000000000000 .L0 +0000000000004796 l .text 0000000000000000 .L0 +0000000000004796 l .text 0000000000000000 .L0 +0000000000004798 l .text 0000000000000000 .L0 +000000000000479a l .text 0000000000000000 .L0 +000000000000479a l .text 0000000000000000 .L0 +00000000000047a4 l .text 0000000000000000 .L0 +00000000000047a4 l .text 0000000000000000 .L0 +00000000000047a6 l .text 0000000000000000 .L0 +00000000000047d0 l .text 0000000000000000 .L0 +00000000000047d0 l .text 0000000000000000 .L0 +00000000000047d2 l .text 0000000000000000 .L0 +00000000000047d2 l .text 0000000000000000 .L0 +00000000000047d4 l .text 0000000000000000 .L0 +00000000000047de l .text 0000000000000000 .L0 +00000000000047de l .text 0000000000000000 .L0 +00000000000047e0 l .text 0000000000000000 .L0 +00000000000047ea l .text 0000000000000000 .L0 +00000000000047ea l .text 0000000000000000 .L0 +00000000000047fc l .text 0000000000000000 .L0 +00000000000047fc l .text 0000000000000000 .L0 +000000000000480e l .text 0000000000000000 .L0 +0000000000004810 l .text 0000000000000000 .L0 +0000000000004810 l .text 0000000000000000 .L0 +0000000000004822 l .text 0000000000000000 .L0 +0000000000004822 l .text 0000000000000000 .L0 +000000000000482c l .text 0000000000000000 .L0 +000000000000482c l .text 0000000000000000 .L0 +0000000000004838 l .text 0000000000000000 .L0 +0000000000004838 l .text 0000000000000000 .L0 +000000000000483a l .text 0000000000000000 .L0 +000000000000483e l .text 0000000000000000 .L0 +0000000000004840 l .text 0000000000000000 .L0 +0000000000004842 l .text 0000000000000000 .L0 +000000000000484c l .text 0000000000000000 .L0 +000000000000484c l .text 0000000000000000 .L0 +000000000000484c l .text 0000000000000000 .L0 +000000000000484c l .text 0000000000000000 .L0 +0000000000004850 l .text 0000000000000000 .L0 +000000000000486e l .text 0000000000000000 .L0 +0000000000004870 l .text 0000000000000000 .L0 +0000000000004874 l .text 0000000000000000 .L0 +0000000000004878 l .text 0000000000000000 .L0 +0000000000004878 l .text 0000000000000000 .L0 +000000000000487a l .text 0000000000000000 .L0 +000000000000487c l .text 0000000000000000 .L0 +0000000000004888 l .text 0000000000000000 .L0 +0000000000004894 l .text 0000000000000000 .L0 +0000000000004898 l .text 0000000000000000 .L0 +000000000000489c l .text 0000000000000000 .L0 +00000000000048a4 l .text 0000000000000000 .L0 +00000000000048a4 l .text 0000000000000000 .L0 +00000000000048a8 l .text 0000000000000000 .L0 +00000000000048a8 l .text 0000000000000000 .L0 +00000000000048a8 l .text 0000000000000000 .L0 +00000000000048aa l .text 0000000000000000 .L0 +00000000000048aa l .text 0000000000000000 .L0 +00000000000048b2 l .text 0000000000000000 .L0 +00000000000048b4 l .text 0000000000000000 .L0 +00000000000048b4 l .text 0000000000000000 .L0 +00000000000048b6 l .text 0000000000000000 .L0 +00000000000048ba l .text 0000000000000000 .L0 +00000000000048c4 l .text 0000000000000000 .L0 +00000000000048c4 l .text 0000000000000000 .L0 +00000000000048c8 l .text 0000000000000000 .L0 +00000000000048cc l .text 0000000000000000 .L0 +00000000000048ce l .text 0000000000000000 .L0 +00000000000048d0 l .text 0000000000000000 .L0 +00000000000048d4 l .text 0000000000000000 .L0 +00000000000048d6 l .text 0000000000000000 .L0 +00000000000048d6 l .text 0000000000000000 .L0 +00000000000048dc l .text 0000000000000000 .L0 +00000000000048f0 l .text 0000000000000000 .L0 +00000000000048f0 l .text 0000000000000000 .L0 +00000000000048f0 l .text 0000000000000000 .L0 +00000000000048f4 l .text 0000000000000000 .L0 +00000000000048f4 l .text 0000000000000000 .L0 +00000000000048f6 l .text 0000000000000000 .L0 +0000000000004902 l .text 0000000000000000 .L0 +0000000000004904 l .text 0000000000000000 .L0 +0000000000004904 l .text 0000000000000000 .L0 +0000000000004908 l .text 0000000000000000 .L0 +000000000000490a l .text 0000000000000000 .L0 +000000000000490c l .text 0000000000000000 .L0 +0000000000004910 l .text 0000000000000000 .L0 +0000000000004914 l .text 0000000000000000 .L0 +0000000000004918 l .text 0000000000000000 .L0 +0000000000004918 l .text 0000000000000000 .L0 +000000000000491c l .text 0000000000000000 .L0 +000000000000491c l .text 0000000000000000 .L0 +0000000000004920 l .text 0000000000000000 .L0 +0000000000004922 l .text 0000000000000000 .L0 +0000000000004926 l .text 0000000000000000 .L0 +000000000000492a l .text 0000000000000000 .L0 +000000000000492e l .text 0000000000000000 .L0 +0000000000004948 l .text 0000000000000000 .L0 +000000000000494a l .text 0000000000000000 .L0 +0000000000004956 l .text 0000000000000000 .L0 +0000000000004958 l .text 0000000000000000 .L0 +000000000000495c l .text 0000000000000000 .L0 +000000000000495c l .text 0000000000000000 .L0 +0000000000004960 l .text 0000000000000000 .L0 +0000000000004960 l .text 0000000000000000 .L0 +0000000000004964 l .text 0000000000000000 .L0 +0000000000004966 l .text 0000000000000000 .L0 +000000000000496a l .text 0000000000000000 .L0 +000000000000496a l .text 0000000000000000 .L0 +000000000000496a l .text 0000000000000000 .L0 +0000000000004970 l .text 0000000000000000 .L0 +0000000000004970 l .text 0000000000000000 .L0 +0000000000004974 l .text 0000000000000000 .L0 +0000000000004976 l .text 0000000000000000 .L0 +0000000000004976 l .text 0000000000000000 .L0 +0000000000004976 l .text 0000000000000000 .L0 +000000000000497a l .text 0000000000000000 .L0 +0000000000004980 l .text 0000000000000000 .L0 +0000000000004982 l .text 0000000000000000 .L0 +000000000000498e l .text 0000000000000000 .L0 +000000000000498e l .text 0000000000000000 .L0 +0000000000004992 l .text 0000000000000000 .L0 +000000000000499a l .text 0000000000000000 .L0 +000000000000499a l .text 0000000000000000 .L0 +00000000000049a0 l .text 0000000000000000 .L0 +00000000000049a4 l .text 0000000000000000 .L0 +00000000000049a8 l .text 0000000000000000 .L0 +00000000000049a8 l .text 0000000000000000 .L0 +00000000000049ac l .text 0000000000000000 .L0 +00000000000049b0 l .text 0000000000000000 .L0 +00000000000049b0 l .text 0000000000000000 .L0 +00000000000049b2 l .text 0000000000000000 .L0 +00000000000049b2 l .text 0000000000000000 .L0 +00000000000049b6 l .text 0000000000000000 .L0 +00000000000049bc l .text 0000000000000000 .L0 +00000000000049ce l .text 0000000000000000 .L0 +00000000000049d6 l .text 0000000000000000 .L0 +00000000000049d6 l .text 0000000000000000 .L0 +00000000000049da l .text 0000000000000000 .L0 +00000000000049dc l .text 0000000000000000 .L0 +00000000000049e0 l .text 0000000000000000 .L0 +00000000000049e0 l .text 0000000000000000 .L0 +00000000000049e8 l .text 0000000000000000 .L0 +00000000000049ea l .text 0000000000000000 .L0 +00000000000049ee l .text 0000000000000000 .L0 +00000000000049f4 l .text 0000000000000000 .L0 +00000000000049f4 l .text 0000000000000000 .L0 +00000000000049f8 l .text 0000000000000000 .L0 +00000000000049f8 l .text 0000000000000000 .L0 +00000000000049fc l .text 0000000000000000 .L0 +00000000000049fc l .text 0000000000000000 .L0 +0000000000004a0e l .text 0000000000000000 .L0 +0000000000004a10 l .text 0000000000000000 .L0 +0000000000004a12 l .text 0000000000000000 .L0 +0000000000004a12 l .text 0000000000000000 .L0 +0000000000004a14 l .text 0000000000000000 .L0 +0000000000004a14 l .text 0000000000000000 .L0 +0000000000004a16 l .text 0000000000000000 .L0 +0000000000004a26 l .text 0000000000000000 .L0 +0000000000004a28 l .text 0000000000000000 .L0 +0000000000004a2a l .text 0000000000000000 .L0 +0000000000004a2e l .text 0000000000000000 .L0 +0000000000004a30 l .text 0000000000000000 .L0 +0000000000004a34 l .text 0000000000000000 .L0 +0000000000004a36 l .text 0000000000000000 .L0 +0000000000004a3a l .text 0000000000000000 .L0 +0000000000004a3e l .text 0000000000000000 .L0 +0000000000004a42 l .text 0000000000000000 .L0 +0000000000004a44 l .text 0000000000000000 .L0 +0000000000004a48 l .text 0000000000000000 .L0 +0000000000004a4e l .text 0000000000000000 .L0 +0000000000004a4e l .text 0000000000000000 .L0 +0000000000004a52 l .text 0000000000000000 .L0 +0000000000004a62 l .text 0000000000000000 .L0 +0000000000004a62 l .text 0000000000000000 .L0 +0000000000004a82 l .text 0000000000000000 .L0 +0000000000004a82 l .text 0000000000000000 .L0 +0000000000004a82 l .text 0000000000000000 .L0 +0000000000004a82 l .text 0000000000000000 .L0 +0000000000004a84 l .text 0000000000000000 .L0 +0000000000004a96 l .text 0000000000000000 .L0 +0000000000004a96 l .text 0000000000000000 .L0 +0000000000004a96 l .text 0000000000000000 .L0 +0000000000004a96 l .text 0000000000000000 .L0 +0000000000004a96 l .text 0000000000000000 .L0 +0000000000004a9e l .text 0000000000000000 .L0 +0000000000004aa0 l .text 0000000000000000 .L0 +0000000000004aa2 l .text 0000000000000000 .L0 +0000000000004ab8 l .text 0000000000000000 .L0 +0000000000004ab8 l .text 0000000000000000 .L0 +0000000000004ac4 l .text 0000000000000000 .L0 +0000000000004ac4 l .text 0000000000000000 .L0 +0000000000004ac4 l .text 0000000000000000 .L0 +0000000000004ac4 l .text 0000000000000000 .L0 +0000000000004ac4 l .text 0000000000000000 .L0 +0000000000004ac4 l .text 0000000000000000 .L0 +0000000000004ac4 l .text 0000000000000000 .L0 +0000000000004ac6 l .text 0000000000000000 .L0 +0000000000004ac8 l .text 0000000000000000 .L0 +0000000000004ad0 l .text 0000000000000000 .L0 +0000000000004ad6 l .text 0000000000000000 .L0 +0000000000004ae8 l .text 0000000000000000 .L0 +0000000000004aec l .text 0000000000000000 .L0 +0000000000004aec l .text 0000000000000000 .L0 +0000000000004aec l .text 0000000000000000 .L0 +0000000000004aee l .text 0000000000000000 .L0 +0000000000004af2 l .text 0000000000000000 .L0 +0000000000004af4 l .text 0000000000000000 .L0 +0000000000004af6 l .text 0000000000000000 .L0 +0000000000004af8 l .text 0000000000000000 .L0 +0000000000004af8 l .text 0000000000000000 .L0 +0000000000004b06 l .text 0000000000000000 .L0 +0000000000004b0a l .text 0000000000000000 .L0 +0000000000004b0a l .text 0000000000000000 .L0 +0000000000004b2e l .text 0000000000000000 .L0 +0000000000004b32 l .text 0000000000000000 .L0 +0000000000004b32 l .text 0000000000000000 .L0 +0000000000004b32 l .text 0000000000000000 .L0 +0000000000004b32 l .text 0000000000000000 .L0 +0000000000004b32 l .text 0000000000000000 .L0 +0000000000004b34 l .text 0000000000000000 .L0 +0000000000004b34 l .text 0000000000000000 .L0 +0000000000004b4c l .text 0000000000000000 .L0 +0000000000004b4c l .text 0000000000000000 .L0 +0000000000004b50 l .text 0000000000000000 .L0 +0000000000004b50 l .text 0000000000000000 .L0 +0000000000004b54 l .text 0000000000000000 .L0 +0000000000004b5e l .text 0000000000000000 .L0 +0000000000004b62 l .text 0000000000000000 .L0 +0000000000004b64 l .text 0000000000000000 .L0 +0000000000004b68 l .text 0000000000000000 .L0 +0000000000004b68 l .text 0000000000000000 .L0 +0000000000004b6c l .text 0000000000000000 .L0 +0000000000004b74 l .text 0000000000000000 .L0 +0000000000004b7e l .text 0000000000000000 .L0 +0000000000004b7e l .text 0000000000000000 .L0 +0000000000004b82 l .text 0000000000000000 .L0 +0000000000004b90 l .text 0000000000000000 .L0 +0000000000004b90 l .text 0000000000000000 .L0 +0000000000004ba0 l .text 0000000000000000 .L0 +0000000000004ba0 l .text 0000000000000000 .L0 +0000000000004ba4 l .text 0000000000000000 .L0 +0000000000004bce l .text 0000000000000000 .L0 +0000000000004bce l .text 0000000000000000 .L0 +0000000000004bd0 l .text 0000000000000000 .L0 +0000000000004bd2 l .text 0000000000000000 .L0 +0000000000004bda l .text 0000000000000000 .L0 +0000000000004bda l .text 0000000000000000 .L0 +0000000000004bdc l .text 0000000000000000 .L0 +0000000000004c02 l .text 0000000000000000 .L0 +0000000000004c02 l .text 0000000000000000 .L0 +0000000000004c06 l .text 0000000000000000 .L0 +0000000000004c0a l .text 0000000000000000 .L0 +0000000000004c16 l .text 0000000000000000 .L0 +0000000000004c1a l .text 0000000000000000 .L0 +0000000000004c1a l .text 0000000000000000 .L0 +0000000000004c1c l .text 0000000000000000 .L0 +0000000000004c26 l .text 0000000000000000 .L0 +0000000000004c26 l .text 0000000000000000 .L0 +0000000000004c2e l .text 0000000000000000 .L0 +0000000000004c2e l .text 0000000000000000 .L0 +0000000000004c2e l .text 0000000000000000 .L0 +0000000000004c2e l .text 0000000000000000 .L0 +0000000000004c2e l .text 0000000000000000 .L0 +0000000000004c2e l .text 0000000000000000 .L0 +0000000000004c38 l .text 0000000000000000 .L0 +0000000000004c3a l .text 0000000000000000 .L0 +0000000000004c3c l .text 0000000000000000 .L0 +0000000000004c3e l .text 0000000000000000 .L0 +0000000000004c46 l .text 0000000000000000 .L0 +0000000000004c46 l .text 0000000000000000 .L0 +0000000000004c4a l .text 0000000000000000 .L0 +0000000000004c72 l .text 0000000000000000 .L0 +0000000000004c72 l .text 0000000000000000 .L0 +0000000000004c74 l .text 0000000000000000 .L0 +0000000000004c74 l .text 0000000000000000 .L0 +0000000000004c80 l .text 0000000000000000 .L0 +0000000000004c84 l .text 0000000000000000 .L0 +00000000000019c8 l .debug_frame 0000000000000000 .L0 +0000000000004682 l .text 0000000000000000 .L0 +00000000000046a6 l .text 0000000000000000 .L0 +00000000000046a6 l .text 0000000000000000 .L0 +0000000000004726 l .text 0000000000000000 .L0 +0000000000004726 l .text 0000000000000000 .L0 +0000000000004732 l .text 0000000000000000 .L0 +0000000000004732 l .text 0000000000000000 .L0 +000000000000484c l .text 0000000000000000 .L0 +000000000000484c l .text 0000000000000000 .L0 +0000000000004a82 l .text 0000000000000000 .L0 +0000000000004a82 l .text 0000000000000000 .L0 +0000000000004a96 l .text 0000000000000000 .L0 +0000000000004a96 l .text 0000000000000000 .L0 +0000000000004ac4 l .text 0000000000000000 .L0 +0000000000004ac4 l .text 0000000000000000 .L0 +0000000000004c2e l .text 0000000000000000 .L0 +0000000000004c2e l .text 0000000000000000 .L0 +0000000000004c84 l .text 0000000000000000 .L0 +000000000000468e l .text 0000000000000000 .L0 +0000000000004684 l .text 0000000000000000 .L0 +00000000000046a2 l .text 0000000000000000 .L0 +00000000000046aa l .text 0000000000000000 .L0 +00000000000046c4 l .text 0000000000000000 .L0 +00000000000046b2 l .text 0000000000000000 .L0 +00000000000046d4 l .text 0000000000000000 .L0 +00000000000046cc l .text 0000000000000000 .L0 +0000000000004708 l .text 0000000000000000 .L0 +00000000000047ec l .text 0000000000000000 .L0 +0000000000004740 l .text 0000000000000000 .L0 +0000000000004a64 l .text 0000000000000000 .L0 +000000000000486e l .text 0000000000000000 .L0 +0000000000004aba l .text 0000000000000000 .L0 +0000000000004a9e l .text 0000000000000000 .L0 +0000000000004b36 l .text 0000000000000000 .L0 +0000000000004ae8 l .text 0000000000000000 .L0 +0000000000004c76 l .text 0000000000000000 .L0 +0000000000004c38 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 nsh_fileapps.c +000000000000bff0 l .rodata 0000000000000000 .LC0 +0000000000004cb2 l .text 0000000000000000 .L0 +0000000000004cbc l .text 0000000000000000 .L0 +000000000000c010 l .rodata 0000000000000000 .LC1 +0000000000004cfc l .text 0000000000000000 .L0 +0000000000004d06 l .text 0000000000000000 .L0 +000000000000c028 l .rodata 0000000000000000 .LC2 +0000000000004d48 l .text 0000000000000000 .L0 +0000000000004d52 l .text 0000000000000000 .L0 +000000000000c050 l .rodata 0000000000000000 .LC3 +0000000000004dda l .text 0000000000000000 .L0 +0000000000004de4 l .text 0000000000000000 .L0 +000000000000c058 l .rodata 0000000000000000 .LC4 +0000000000004e1c l .text 0000000000000000 .L0 +0000000000004ce0 l .text 0000000000000000 .L2 +0000000000004d6c l .text 0000000000000000 .L3 +0000000000004d1e l .text 0000000000000000 .L5 +0000000000004d5e l .text 0000000000000000 .L8 +0000000000004d78 l .text 0000000000000000 .L7 +0000000000004e2a l .text 0000000000000000 .L14 +0000000000004ccc l .text 0000000000000000 .L28 +0000000000004d12 l .text 0000000000000000 .L6 +0000000000004e0a l .text 0000000000000000 .L9 +0000000000004db4 l .text 0000000000000000 .L10 +0000000000004df2 l .text 0000000000000000 .L12 +0000000000004cce l .text 0000000000000000 .L4 +0000000000005dd2 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000011814 l .debug_str 0000000000000000 .LASF111 +0000000000011697 l .debug_str 0000000000000000 .LASF112 +000000000001153f l .debug_str 0000000000000000 .LASF113 +0000000000001c90 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000000eba5 l .debug_line 0000000000000000 .Ldebug_line0 +000000000001147b l .debug_str 0000000000000000 .LASF0 +0000000000011742 l .debug_str 0000000000000000 .LASF3 +00000000000116c8 l .debug_str 0000000000000000 .LASF1 +00000000000116e2 l .debug_str 0000000000000000 .LASF2 +0000000000011650 l .debug_str 0000000000000000 .LASF4 +0000000000011581 l .debug_str 0000000000000000 .LASF5 +00000000000113e4 l .debug_str 0000000000000000 .LASF6 +0000000000011532 l .debug_str 0000000000000000 .LASF7 +00000000000114a8 l .debug_str 0000000000000000 .LASF8 +000000000001155d l .debug_str 0000000000000000 .LASF9 +00000000000118ce l .debug_str 0000000000000000 .LASF10 +00000000000115e5 l .debug_str 0000000000000000 .LASF11 +0000000000011409 l .debug_str 0000000000000000 .LASF12 +0000000000011797 l .debug_str 0000000000000000 .LASF13 +00000000000114d6 l .debug_str 0000000000000000 .LASF14 +000000000001172d l .debug_str 0000000000000000 .LASF15 +00000000000113dd l .debug_str 0000000000000000 .LASF16 +00000000000113f6 l .debug_str 0000000000000000 .LASF17 +00000000000118fb l .debug_str 0000000000000000 .LASF18 +000000000001176c l .debug_str 0000000000000000 .LASF19 +0000000000011632 l .debug_str 0000000000000000 .LASF20 +0000000000011638 l .debug_str 0000000000000000 .LASF24 +00000000000113b9 l .debug_str 0000000000000000 .LASF26 +0000000000011641 l .debug_str 0000000000000000 .LASF21 +000000000001146d l .debug_str 0000000000000000 .LASF22 +00000000000114f1 l .debug_str 0000000000000000 .LASF23 +0000000000011926 l .debug_str 0000000000000000 .LASF25 +00000000000115bf l .debug_str 0000000000000000 .LASF27 +00000000000117e7 l .debug_str 0000000000000000 .LASF28 +00000000000118dd l .debug_str 0000000000000000 .LASF29 +00000000000115aa l .debug_str 0000000000000000 .LASF30 +000000000001160e l .debug_str 0000000000000000 .LASF31 +00000000000115d6 l .debug_str 0000000000000000 .LASF32 +00000000000114e7 l .debug_str 0000000000000000 .LASF33 +00000000000117f9 l .debug_str 0000000000000000 .LASF34 +0000000000011901 l .debug_str 0000000000000000 .LASF35 +00000000000113fe l .debug_str 0000000000000000 .LASF36 +000000000001191c l .debug_str 0000000000000000 .LASF37 +000000000001171c l .debug_str 0000000000000000 .LASF38 +0000000000011736 l .debug_str 0000000000000000 .LASF39 +00000000000115f3 l .debug_str 0000000000000000 .LASF40 +00000000000117b0 l .debug_str 0000000000000000 .LASF41 +00000000000116fd l .debug_str 0000000000000000 .LASF42 +00000000000118e3 l .debug_str 0000000000000000 .LASF43 +0000000000011604 l .debug_str 0000000000000000 .LASF44 +000000000001167b l .debug_str 0000000000000000 .LASF45 +00000000000117b9 l .debug_str 0000000000000000 .LASF46 +00000000000117a5 l .debug_str 0000000000000000 .LASF47 +0000000000011684 l .debug_str 0000000000000000 .LASF48 +000000000001149a l .debug_str 0000000000000000 .LASF49 +00000000000114fd l .debug_str 0000000000000000 .LASF50 +000000000001170d l .debug_str 0000000000000000 .LASF51 +000000000001151e l .debug_str 0000000000000000 .LASF52 +00000000000116af l .debug_str 0000000000000000 .LASF53 +00000000000116f7 l .debug_str 0000000000000000 .LASF54 +00000000000118f2 l .debug_str 0000000000000000 .LASF55 +00000000000114c4 l .debug_str 0000000000000000 .LASF56 +00000000000114df l .debug_str 0000000000000000 .LASF57 +00000000000114b1 l .debug_str 0000000000000000 .LASF58 +00000000000114cd l .debug_str 0000000000000000 .LASF59 +0000000000011780 l .debug_str 0000000000000000 .LASF60 +00000000000117dc l .debug_str 0000000000000000 .LASF61 +00000000000116c2 l .debug_str 0000000000000000 .LASF62 +0000000000011420 l .debug_str 0000000000000000 .LASF63 +000000000001144b l .debug_str 0000000000000000 .LASF64 +0000000000011576 l .debug_str 0000000000000000 .LASF65 +0000000000011527 l .debug_str 0000000000000000 .LASF66 +0000000000011450 l .debug_str 0000000000000000 .LASF67 +00000000000117c2 l .debug_str 0000000000000000 .LASF68 +0000000000011715 l .debug_str 0000000000000000 .LASF69 +0000000000011487 l .debug_str 0000000000000000 .LASF70 +00000000000115ed l .debug_str 0000000000000000 .LASF71 +000000000001179f l .debug_str 0000000000000000 .LASF72 +0000000000011691 l .debug_str 0000000000000000 .LASF73 +00000000000115fd l .debug_str 0000000000000000 .LASF74 +00000000000113ae l .debug_str 0000000000000000 .LASF75 +00000000000116a6 l .debug_str 0000000000000000 .LASF76 +00000000000115a1 l .debug_str 0000000000000000 .LASF77 +0000000000011708 l .debug_str 0000000000000000 .LASF78 +000000000001180b l .debug_str 0000000000000000 .LASF79 +000000000001178b l .debug_str 0000000000000000 .LASF80 +00000000000118d7 l .debug_str 0000000000000000 .LASF81 +00000000000118c4 l .debug_str 0000000000000000 .LASF82 +0000000000011790 l .debug_str 0000000000000000 .LASF83 +0000000000011771 l .debug_str 0000000000000000 .LASF114 +00000000000116b7 l .debug_str 0000000000000000 .LASF84 +000000000001157b l .debug_str 0000000000000000 .LASF85 +00000000000116ec l .debug_str 0000000000000000 .LASF86 +000000000001148f l .debug_str 0000000000000000 .LASF87 +0000000000011728 l .debug_str 0000000000000000 .LASF88 +0000000000011615 l .debug_str 0000000000000000 .LASF89 +00000000000115b3 l .debug_str 0000000000000000 .LASF115 +0000000000004c84 l .text 0000000000000000 .LFB1 +0000000000004e36 l .text 0000000000000000 .LFE1 +00000000000118ed l .debug_str 0000000000000000 .LASF90 +000000000000ed27 l .debug_loc 0000000000000000 .LLST0 +000000000000ed86 l .debug_loc 0000000000000000 .LLST1 +0000000000011932 l .debug_str 0000000000000000 .LASF91 +000000000000ede5 l .debug_loc 0000000000000000 .LLST2 +00000000000114ba l .debug_str 0000000000000000 .LASF92 +000000000000eed5 l .debug_loc 0000000000000000 .LLST3 +000000000001156f l .debug_str 0000000000000000 .LASF93 +000000000000efc5 l .debug_loc 0000000000000000 .LLST4 +0000000000011594 l .debug_str 0000000000000000 .LASF94 +000000000001152d l .debug_str 0000000000000000 .LASF95 +000000000000effe l .debug_loc 0000000000000000 .LLST5 +00000000000115de l .debug_str 0000000000000000 .LASF96 +0000000000004d68 l .text 0000000000000000 .LDL1 +00000000000117c8 l .debug_str 0000000000000000 .LASF97 +000000000001145b l .debug_str 0000000000000000 .LASF98 +0000000000004d9e l .text 0000000000000000 .LBB2 +0000000000004e0a l .text 0000000000000000 .LBE2 +000000000000f141 l .debug_loc 0000000000000000 .LLST6 +0000000000004dc8 l .text 0000000000000000 .LBB3 +0000000000004df2 l .text 0000000000000000 .LBE3 +00000000000115ce l .debug_str 0000000000000000 .LASF99 +000000000000f178 l .debug_loc 0000000000000000 .LLST7 +0000000000004dd0 l .text 0000000000000000 .LVL37 +0000000000004df0 l .text 0000000000000000 .LVL39 +0000000000004db2 l .text 0000000000000000 .LVL33 +0000000000004dc2 l .text 0000000000000000 .LVL35 +0000000000004e08 l .text 0000000000000000 .LVL41 +0000000000004e0a l .text 0000000000000000 .LBB4 +0000000000004e2a l .text 0000000000000000 .LBE4 +000000000001164a l .debug_str 0000000000000000 .LASF100 +0000000000004e14 l .text 0000000000000000 .LVL43 +0000000000004e28 l .text 0000000000000000 .LVL44 +0000000000004caa l .text 0000000000000000 .LVL2 +0000000000004cc8 l .text 0000000000000000 .LVL4 +0000000000004cea l .text 0000000000000000 .LVL11 +0000000000004cfa l .text 0000000000000000 .LVL14 +0000000000004d12 l .text 0000000000000000 .LVL15 +0000000000004d1c l .text 0000000000000000 .LVL16 +0000000000004d36 l .text 0000000000000000 .LVL19 +0000000000004d46 l .text 0000000000000000 .LVL22 +0000000000004d5e l .text 0000000000000000 .LVL23 +0000000000004d68 l .text 0000000000000000 .LVL24 +0000000000004d74 l .text 0000000000000000 .LVL25 +0000000000004d80 l .text 0000000000000000 .LVL27 +0000000000004d94 l .text 0000000000000000 .LVL28 +00000000000114a0 l .debug_str 0000000000000000 .LASF101 +00000000000113ee l .debug_str 0000000000000000 .LASF102 +000000000001143c l .debug_str 0000000000000000 .LASF103 +00000000000113bf l .debug_str 0000000000000000 .LASF104 +0000000000011509 l .debug_str 0000000000000000 .LASF105 +000000000001165a l .debug_str 0000000000000000 .LASF106 +000000000001174b l .debug_str 0000000000000000 .LASF107 +000000000001161a l .debug_str 0000000000000000 .LASF108 +000000000001142c l .debug_str 0000000000000000 .LASF109 +00000000000116d6 l .debug_str 0000000000000000 .LASF110 +0000000000004c84 l .text 0000000000000000 .LVL0 +0000000000004c8c l .text 0000000000000000 .LVL1 +0000000000004cd4 l .text 0000000000000000 .LVL7 +0000000000004ce0 l .text 0000000000000000 .LVL9 +0000000000004cd6 l .text 0000000000000000 .LVL8 +0000000000004ccc l .text 0000000000000000 .LVL5 +0000000000004d1e l .text 0000000000000000 .LVL17 +0000000000004d78 l .text 0000000000000000 .LVL26 +0000000000004dc4 l .text 0000000000000000 .LVL36 +0000000000004e0a l .text 0000000000000000 .LVL42 +0000000000004e2a l .text 0000000000000000 .LVL45 +0000000000004cf2 l .text 0000000000000000 .LVL13 +0000000000004d3e l .text 0000000000000000 .LVL21 +0000000000004da4 l .text 0000000000000000 .LVL31 +0000000000004cc6 l .text 0000000000000000 .LVL3 +0000000000004cce l .text 0000000000000000 .LVL6 +0000000000004ce2 l .text 0000000000000000 .LVL10 +0000000000004cec l .text 0000000000000000 .LVL12 +0000000000004d2e l .text 0000000000000000 .LVL18 +0000000000004d38 l .text 0000000000000000 .LVL20 +0000000000004d96 l .text 0000000000000000 .LVL29 +0000000000004db0 l .text 0000000000000000 .LVL32 +0000000000004df2 l .text 0000000000000000 .LVL40 +0000000000004d9e l .text 0000000000000000 .LVL30 +0000000000004db4 l .text 0000000000000000 .LVL34 +0000000000004dd2 l .text 0000000000000000 .LVL38 +00000000000162bb l .debug_info 0000000000000000 .Ldebug_info0 +0000000000004c84 l .text 0000000000000000 .L0 +0000000000004c84 l .text 0000000000000000 .L0 +0000000000004c84 l .text 0000000000000000 .L0 +0000000000004c84 l .text 0000000000000000 .L0 +0000000000004c84 l .text 0000000000000000 .L0 +0000000000004c84 l .text 0000000000000000 .L0 +0000000000004c8a l .text 0000000000000000 .L0 +0000000000004c8c l .text 0000000000000000 .L0 +0000000000004c98 l .text 0000000000000000 .L0 +0000000000004ca0 l .text 0000000000000000 .L0 +0000000000004ca2 l .text 0000000000000000 .L0 +0000000000004ca2 l .text 0000000000000000 .L0 +0000000000004ca2 l .text 0000000000000000 .L0 +0000000000004caa l .text 0000000000000000 .L0 +0000000000004caa l .text 0000000000000000 .L0 +0000000000004cac l .text 0000000000000000 .L0 +0000000000004cb0 l .text 0000000000000000 .L0 +0000000000004cc8 l .text 0000000000000000 .L0 +0000000000004cc8 l .text 0000000000000000 .L0 +0000000000004cc8 l .text 0000000000000000 .L0 +0000000000004ccc l .text 0000000000000000 .L0 +0000000000004ccc l .text 0000000000000000 .L0 +0000000000004cce l .text 0000000000000000 .L0 +0000000000004cce l .text 0000000000000000 .L0 +0000000000004ce0 l .text 0000000000000000 .L0 +0000000000004ce0 l .text 0000000000000000 .L0 +0000000000004cec l .text 0000000000000000 .L0 +0000000000004cec l .text 0000000000000000 .L0 +0000000000004cee l .text 0000000000000000 .L0 +0000000000004d12 l .text 0000000000000000 .L0 +0000000000004d12 l .text 0000000000000000 .L0 +0000000000004d1e l .text 0000000000000000 .L0 +0000000000004d1e l .text 0000000000000000 .L0 +0000000000004d22 l .text 0000000000000000 .L0 +0000000000004d22 l .text 0000000000000000 .L0 +0000000000004d38 l .text 0000000000000000 .L0 +0000000000004d38 l .text 0000000000000000 .L0 +0000000000004d3a l .text 0000000000000000 .L0 +0000000000004d5e l .text 0000000000000000 .L0 +0000000000004d5e l .text 0000000000000000 .L0 +0000000000004d68 l .text 0000000000000000 .L0 +0000000000004d68 l .text 0000000000000000 .L0 +0000000000004d6c l .text 0000000000000000 .L0 +0000000000004d74 l .text 0000000000000000 .L0 +0000000000004d78 l .text 0000000000000000 .L0 +0000000000004d78 l .text 0000000000000000 .L0 +0000000000004d82 l .text 0000000000000000 .L0 +0000000000004d96 l .text 0000000000000000 .L0 +0000000000004d96 l .text 0000000000000000 .L0 +0000000000004d98 l .text 0000000000000000 .L0 +0000000000004d98 l .text 0000000000000000 .L0 +0000000000004d9e l .text 0000000000000000 .L0 +0000000000004d9e l .text 0000000000000000 .L0 +0000000000004d9e l .text 0000000000000000 .L0 +0000000000004da2 l .text 0000000000000000 .L0 +0000000000004da4 l .text 0000000000000000 .L0 +0000000000004da6 l .text 0000000000000000 .L0 +0000000000004da6 l .text 0000000000000000 .L0 +0000000000004db4 l .text 0000000000000000 .L0 +0000000000004db4 l .text 0000000000000000 .L0 +0000000000004dc4 l .text 0000000000000000 .L0 +0000000000004dc4 l .text 0000000000000000 .L0 +0000000000004dc8 l .text 0000000000000000 .L0 +0000000000004dc8 l .text 0000000000000000 .L0 +0000000000004dd0 l .text 0000000000000000 .L0 +0000000000004dd2 l .text 0000000000000000 .L0 +0000000000004dd2 l .text 0000000000000000 .L0 +0000000000004dd8 l .text 0000000000000000 .L0 +0000000000004df2 l .text 0000000000000000 .L0 +0000000000004df2 l .text 0000000000000000 .L0 +0000000000004df8 l .text 0000000000000000 .L0 +0000000000004dfc l .text 0000000000000000 .L0 +0000000000004e0a l .text 0000000000000000 .L0 +0000000000004e0a l .text 0000000000000000 .L0 +0000000000004e14 l .text 0000000000000000 .L0 +0000000000004e28 l .text 0000000000000000 .L0 +0000000000004e2a l .text 0000000000000000 .L0 +0000000000004e2a l .text 0000000000000000 .L0 +0000000000004e2e l .text 0000000000000000 .L0 +0000000000004e2e l .text 0000000000000000 .L0 +0000000000004e30 l .text 0000000000000000 .L0 +0000000000004e36 l .text 0000000000000000 .L0 +0000000000001bc0 l .debug_frame 0000000000000000 .L0 +0000000000004c84 l .text 0000000000000000 .L0 +0000000000004e36 l .text 0000000000000000 .L0 +0000000000004cd0 l .text 0000000000000000 .L0 +0000000000004c98 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 nsh_fscmds.c +0000000000004e36 l F .text 000000000000012e unlink_recursive +0000000000004f64 l F .text 000000000000003c ls_specialdir +0000000000004fa0 l F .text 00000000000002da ls_handler +000000000000527a l F .text 00000000000000ac ls_recursive +0000000000005326 l F .text 00000000000000e2 fdinfo_callback +000000000000c068 l .rodata 0000000000000000 .LC0 +0000000000004eb2 l .text 0000000000000000 .L0 +000000000000c070 l .rodata 0000000000000000 .LC1 +0000000000004eba l .text 0000000000000000 .L0 +000000000000c078 l .rodata 0000000000000000 .LC2 +0000000000004eca l .text 0000000000000000 .L0 +0000000000004f4a l .text 0000000000000000 .L2 +0000000000004e78 l .text 0000000000000000 .L3 +0000000000004eae l .text 0000000000000000 .L4 +0000000000004f00 l .text 0000000000000000 .L7 +0000000000004e74 l .text 0000000000000000 .L19 +0000000000004ed2 l .text 0000000000000000 .L6 +0000000000004f66 l .text 0000000000000000 .L0 +0000000000004f7e l .text 0000000000000000 .L0 +0000000000004f9c l .text 0000000000000000 .L22 +0000000000004f94 l .text 0000000000000000 .L21 +000000000000c080 l .rodata 0000000000000000 .LC3 +000000000000500a l .text 0000000000000000 .L0 +000000000000c088 l .rodata 0000000000000000 .LC4 +0000000000005012 l .text 0000000000000000 .L0 +000000000000501a l .text 0000000000000000 .L0 +000000000000c0d0 l .rodata 0000000000000000 .LC5 +0000000000005054 l .text 0000000000000000 .L0 +000000000000c090 l .rodata 0000000000000000 .LC6 +000000000000510a l .text 0000000000000000 .L0 +0000000000000000 l .srodata.cst4 0000000000000000 .LC7 +0000000000005140 l .text 0000000000000000 .L0 +000000000000c098 l .rodata 0000000000000000 .LC8 +000000000000514c l .text 0000000000000000 .L0 +000000000000516c l .text 0000000000000000 .L0 +000000000000c0b8 l .rodata 0000000000000000 .LC14 +0000000000005194 l .text 0000000000000000 .L0 +0000000000000004 l .srodata.cst4 0000000000000000 .LC9 +0000000000005210 l .text 0000000000000000 .L0 +000000000000c0a0 l .rodata 0000000000000000 .LC10 +000000000000521c l .text 0000000000000000 .L0 +0000000000000008 l .srodata.cst4 0000000000000000 .LC11 +000000000000522e l .text 0000000000000000 .L0 +000000000000c0a8 l .rodata 0000000000000000 .LC12 +000000000000523a l .text 0000000000000000 .L0 +000000000000c0b0 l .rodata 0000000000000000 .LC13 +000000000000524c l .text 0000000000000000 .L0 +000000000000c0c0 l .rodata 0000000000000000 .LC15 +000000000000525a l .text 0000000000000000 .L0 +000000000000c0c8 l .rodata 0000000000000000 .LC16 +000000000000526c l .text 0000000000000000 .L0 +0000000000005160 l .text 0000000000000000 .L25 +000000000000503c l .text 0000000000000000 .L26 +000000000000504c l .text 0000000000000000 .L28 +0000000000004ffa l .text 0000000000000000 .L27 +0000000000005116 l .text 0000000000000000 .L30 +00000000000051a2 l .text 0000000000000000 .L31 +0000000000005088 l .text 0000000000000000 .L36 +0000000000005096 l .text 0000000000000000 .L37 +00000000000051d2 l .text 0000000000000000 .L38 +00000000000050bc l .text 0000000000000000 .L41 +00000000000050ca l .text 0000000000000000 .L42 +00000000000051ee l .text 0000000000000000 .L43 +00000000000050ec l .text 0000000000000000 .L46 +00000000000050fa l .text 0000000000000000 .L47 +0000000000005106 l .text 0000000000000000 .L48 +000000000000524c l .text 0000000000000000 .L50 +0000000000005208 l .text 0000000000000000 .L51 +000000000000526a l .text 0000000000000000 .L53 +000000000000525a l .text 0000000000000000 .L54 +0000000000005028 l .text 0000000000000000 .L29 +00000000000051ae l .text 0000000000000000 .L33 +0000000000005076 l .text 0000000000000000 .L95 +00000000000051ba l .text 0000000000000000 .L34 +00000000000051c6 l .text 0000000000000000 .L35 +000000000000507a l .text 0000000000000000 .L32 +00000000000051e0 l .text 0000000000000000 .L40 +00000000000050aa l .text 0000000000000000 .L96 +00000000000050ae l .text 0000000000000000 .L39 +00000000000051fa l .text 0000000000000000 .L45 +00000000000050da l .text 0000000000000000 .L97 +00000000000050de l .text 0000000000000000 .L44 +000000000000522e l .text 0000000000000000 .L52 +000000000000515c l .text 0000000000000000 .L98 +0000000000005266 l .text 0000000000000000 .L99 +000000000000c0e0 l .rodata 0000000000000000 .LC17 +00000000000052be l .text 0000000000000000 .L0 +00000000000052cc l .text 0000000000000000 .L0 +00000000000052d6 l .text 0000000000000000 .L0 +00000000000052ee l .text 0000000000000000 .L0 +00000000000052f8 l .text 0000000000000000 .L0 +0000000000005316 l .text 0000000000000000 .L101 +000000000000530c l .text 0000000000000000 .L102 +000000000000c0e8 l .rodata 0000000000000000 .LC18 +000000000000534e l .text 0000000000000000 .L0 +000000000000c0f8 l .rodata 0000000000000000 .LC19 +0000000000005372 l .text 0000000000000000 .L0 +000000000000c108 l .rodata 0000000000000000 .LC20 +000000000000537a l .text 0000000000000000 .L0 +0000000000005382 l .text 0000000000000000 .L0 +000000000000c110 l .rodata 0000000000000000 .LC21 +0000000000005392 l .text 0000000000000000 .L0 +00000000000053a0 l .text 0000000000000000 .L0 +000000000000c118 l .rodata 0000000000000000 .LC22 +00000000000053c6 l .text 0000000000000000 .L0 +00000000000053ce l .text 0000000000000000 .L0 +00000000000053d6 l .text 0000000000000000 .L0 +0000000000005404 l .text 0000000000000000 .L113 +00000000000053fa l .text 0000000000000000 .L109 +000000000000538e l .text 0000000000000000 .L110 +00000000000053e2 l .text 0000000000000000 .L111 +0000000000005344 l .text 0000000000000000 .L108 +00000000000053ec l .text 0000000000000000 .L107 +000000000000c128 l .rodata 0000000000000000 .LC23 +0000000000005466 l .text 0000000000000000 .L0 +0000000000005460 l .text 0000000000000000 .L116 +0000000000005496 l .text 0000000000000000 .L0 +00000000000054c8 l .text 0000000000000000 .L0 +00000000000054da l .text 0000000000000000 .L127 +00000000000054f0 l .text 0000000000000000 .L125 +000000000000551a l .text 0000000000000000 .L122 +00000000000054d0 l .text 0000000000000000 .L121 +0000000000005516 l .text 0000000000000000 .L123 +000000000000c130 l .rodata 0000000000000000 .LC24 +000000000000554e l .text 0000000000000000 .L0 +000000000000c138 l .rodata 0000000000000000 .LC25 +000000000000557c l .text 0000000000000000 .L0 +0000000000005590 l .text 0000000000000000 .L0 +000000000000c148 l .rodata 0000000000000000 .LC26 +00000000000055bc l .text 0000000000000000 .L0 +00000000000055c4 l .text 0000000000000000 .L0 +000000000000c150 l .rodata 0000000000000000 .LC27 +000000000000560c l .text 0000000000000000 .L0 +0000000000005614 l .text 0000000000000000 .L0 +0000000000005640 l .text 0000000000000000 .L0 +000000000000562e l .text 0000000000000000 .L130 +000000000000558e l .text 0000000000000000 .L131 +00000000000055d0 l .text 0000000000000000 .L132 +00000000000055e2 l .text 0000000000000000 .L133 +0000000000005620 l .text 0000000000000000 .L134 +000000000000567e l .text 0000000000000000 .L0 +00000000000056d0 l .text 0000000000000000 .L0 +00000000000056d8 l .text 0000000000000000 .L0 +0000000000005704 l .text 0000000000000000 .L0 +0000000000005762 l .text 0000000000000000 .L0 +000000000000579c l .text 0000000000000000 .L0 +00000000000057f2 l .text 0000000000000000 .L0 +00000000000057fa l .text 0000000000000000 .L0 +000000000000c158 l .rodata 0000000000000000 .LC28 +0000000000005814 l .text 0000000000000000 .L0 +000000000000581e l .text 0000000000000000 .L0 +000000000000587e l .text 0000000000000000 .L0 +000000000000c160 l .rodata 0000000000000000 .LC29 +00000000000058b6 l .text 0000000000000000 .L0 +00000000000056a8 l .text 0000000000000000 .L138 +00000000000056f0 l .text 0000000000000000 .L140 +000000000000568c l .text 0000000000000000 .L165 +000000000000571e l .text 0000000000000000 .L142 +00000000000056e4 l .text 0000000000000000 .L141 +00000000000057c0 l .text 0000000000000000 .L157 +00000000000057b8 l .text 0000000000000000 .L145 +000000000000577a l .text 0000000000000000 .L146 +0000000000005712 l .text 0000000000000000 .L143 +00000000000057c8 l .text 0000000000000000 .L148 +000000000000576e l .text 0000000000000000 .L147 +00000000000057c4 l .text 0000000000000000 .L167 +000000000000578a l .text 0000000000000000 .L144 +000000000000584a l .text 0000000000000000 .L150 +00000000000057a8 l .text 0000000000000000 .L149 +000000000000588a l .text 0000000000000000 .L151 +0000000000005896 l .text 0000000000000000 .L154 +000000000000582c l .text 0000000000000000 .L152 +00000000000058c0 l .text 0000000000000000 .L158 +0000000000005808 l .text 0000000000000000 .L153 +000000000000587e l .text 0000000000000000 .L168 +000000000000581c l .text 0000000000000000 .L169 +000000000000c168 l .rodata 0000000000000000 .LC30 +00000000000058ea l .text 0000000000000000 .L0 +00000000000058f8 l .text 0000000000000000 .L0 +000000000000593c l .text 0000000000000000 .L0 +00000000000059d0 l .text 0000000000000000 .L0 +0000000000005a34 l .text 0000000000000000 .L0 +0000000000005a3c l .text 0000000000000000 .L0 +0000000000005a88 l .text 0000000000000000 .L0 +0000000000005a96 l .text 0000000000000000 .L0 +0000000000005aa0 l .text 0000000000000000 .L0 +0000000000005ac0 l .text 0000000000000000 .L0 +0000000000005aca l .text 0000000000000000 .L0 +0000000000005968 l .text 0000000000000000 .L179 +0000000000005948 l .text 0000000000000000 .L180 +00000000000059a4 l .text 0000000000000000 .L181 +0000000000005992 l .text 0000000000000000 .L172 +0000000000005988 l .text 0000000000000000 .L173 +0000000000005998 l .text 0000000000000000 .L174 +000000000000599e l .text 0000000000000000 .L175 +000000000000590c l .text 0000000000000000 .L171 +0000000000005978 l .text 0000000000000000 .L176 +00000000000059da l .text 0000000000000000 .L182 +00000000000059ec l .text 0000000000000000 .L184 +0000000000005944 l .text 0000000000000000 .L196 +00000000000059bc l .text 0000000000000000 .L183 +0000000000005a0e l .text 0000000000000000 .L186 +0000000000005a54 l .text 0000000000000000 .L187 +0000000000005a5c l .text 0000000000000000 .L188 +00000000000059fa l .text 0000000000000000 .L185 +0000000000005a84 l .text 0000000000000000 .L190 +0000000000005a48 l .text 0000000000000000 .L189 +0000000000005a80 l .text 0000000000000000 .L195 +000000000000c178 l .rodata 0000000000000000 .LC32 +0000000000005afa l .text 0000000000000000 .L0 +000000000000c170 l .rodata 0000000000000000 .LC31 +0000000000005b4e l .text 0000000000000000 .L0 +000000000000c180 l .rodata 0000000000000000 .LC33 +0000000000005ba0 l .text 0000000000000000 .L0 +0000000000005baa l .text 0000000000000000 .L0 +0000000000005bd8 l .text 0000000000000000 .L200 +0000000000005bc0 l .text 0000000000000000 .L202 +0000000000005b56 l .text 0000000000000000 .L204 +0000000000005b6c l .text 0000000000000000 .L205 +0000000000005be0 l .text 0000000000000000 .L206 +0000000000005b92 l .text 0000000000000000 .L207 +0000000000005b08 l .text 0000000000000000 .L198 +0000000000005bb6 l .text 0000000000000000 .L208 +0000000000005b58 l .text 0000000000000000 .L209 +0000000000005c22 l .text 0000000000000000 .L0 +000000000000c188 l .rodata 0000000000000000 .LC34 +0000000000005c30 l .text 0000000000000000 .L0 +0000000000005cd0 l .text 0000000000000000 .L0 +0000000000005cdc l .text 0000000000000000 .L0 +0000000000005d38 l .text 0000000000000000 .L0 +0000000000005d44 l .text 0000000000000000 .L0 +000000000000c190 l .rodata 0000000000000000 .LC35 +0000000000005d5e l .text 0000000000000000 .L0 +0000000000005d66 l .text 0000000000000000 .L0 +0000000000005cc0 l .text 0000000000000000 .L228 +0000000000005ca0 l .text 0000000000000000 .L229 +0000000000005d2e l .text 0000000000000000 .L230 +0000000000005d56 l .text 0000000000000000 .L231 +0000000000005ce6 l .text 0000000000000000 .L223 +0000000000005d10 l .text 0000000000000000 .L224 +0000000000005d08 l .text 0000000000000000 .L236 +0000000000005c30 l .text 0000000000000000 .L222 +0000000000005d02 l .text 0000000000000000 .L237 +0000000000005d4c l .text 0000000000000000 .L232 +0000000000005d98 l .text 0000000000000000 .L0 +0000000000005dd0 l .text 0000000000000000 .L0 +000000000000c1a8 l .rodata 0000000000000000 .LC36 +0000000000005e10 l .text 0000000000000000 .L0 +0000000000005e18 l .text 0000000000000000 .L0 +0000000000005dba l .text 0000000000000000 .L239 +0000000000005dea l .text 0000000000000000 .L241 +0000000000005da6 l .text 0000000000000000 .L240 +0000000000005e24 l .text 0000000000000000 .L243 +0000000000005dde l .text 0000000000000000 .L242 +000000000000c1b0 l .rodata 0000000000000000 .LC37 +0000000000005e46 l .text 0000000000000000 .L0 +0000000000005e68 l .text 0000000000000000 .L0 +000000000000c1b8 l .rodata 0000000000000000 .LC38 +0000000000005ed8 l .text 0000000000000000 .L0 +0000000000005ee0 l .text 0000000000000000 .L0 +0000000000005e8c l .text 0000000000000000 .L246 +0000000000005e88 l .text 0000000000000000 .L247 +0000000000005e76 l .text 0000000000000000 .L248 +0000000000005ef8 l .text 0000000000000000 .L249 +0000000000005eec l .text 0000000000000000 .L251 +0000000000005ebc l .text 0000000000000000 .L254 +000000000000c1c0 l .rodata 0000000000000000 .LC39 +0000000000005f48 l .text 0000000000000000 .L0 +0000000000005f50 l .text 0000000000000000 .L0 +0000000000005f66 l .text 0000000000000000 .L256 +0000000000005f5c l .text 0000000000000000 .L257 +0000000000005fb6 l .text 0000000000000000 .L0 +0000000000005ffa l .text 0000000000000000 .L0 +000000000000603c l .text 0000000000000000 .L0 +0000000000006044 l .text 0000000000000000 .L0 +0000000000006088 l .text 0000000000000000 .L0 +0000000000006090 l .text 0000000000000000 .L0 +00000000000060e4 l .text 0000000000000000 .L0 +00000000000060ec l .text 0000000000000000 .L0 +000000000000c1c8 l .rodata 0000000000000000 .LC40 +000000000000610e l .text 0000000000000000 .L0 +0000000000005fe0 l .text 0000000000000000 .L262 +0000000000006014 l .text 0000000000000000 .L264 +0000000000005fc4 l .text 0000000000000000 .L263 +000000000000605c l .text 0000000000000000 .L266 +0000000000006008 l .text 0000000000000000 .L265 +00000000000060a8 l .text 0000000000000000 .L268 +0000000000006050 l .text 0000000000000000 .L267 +00000000000060fc l .text 0000000000000000 .L270 +0000000000006132 l .text 0000000000000000 .L277 +00000000000060d0 l .text 0000000000000000 .L281 +000000000000611c l .text 0000000000000000 .L273 +000000000000610c l .text 0000000000000000 .L274 +00000000000060f8 l .text 0000000000000000 .L271 +0000000000006104 l .text 0000000000000000 .L275 +000000000000609c l .text 0000000000000000 .L269 +000000000000c1e0 l .rodata 0000000000000000 .LC41 +0000000000006152 l .text 0000000000000000 .L0 +000000000000616c l .text 0000000000000000 .L0 +00000000000061c2 l .text 0000000000000000 .L0 +0000000000006216 l .text 0000000000000000 .L0 +000000000000621e l .text 0000000000000000 .L0 +000000000000c1e8 l .rodata 0000000000000000 .LC42 +000000000000625a l .text 0000000000000000 .L0 +0000000000006262 l .text 0000000000000000 .L0 +000000000000628a l .text 0000000000000000 .L0 +0000000000006292 l .text 0000000000000000 .L0 +00000000000062b2 l .text 0000000000000000 .L0 +000000000000c1f8 l .rodata 0000000000000000 .LC43 +00000000000062ea l .text 0000000000000000 .L0 +00000000000062f2 l .text 0000000000000000 .L0 +000000000000618e l .text 0000000000000000 .L283 +0000000000006166 l .text 0000000000000000 .L298 +00000000000061cc l .text 0000000000000000 .L286 +0000000000006174 l .text 0000000000000000 .L299 +00000000000062a0 l .text 0000000000000000 .L287 +0000000000006284 l .text 0000000000000000 .L288 +000000000000622e l .text 0000000000000000 .L289 +0000000000006278 l .text 0000000000000000 .L290 +000000000000626e l .text 0000000000000000 .L291 +000000000000617a l .text 0000000000000000 .L284 +000000000000622a l .text 0000000000000000 .L297 +00000000000062c0 l .text 0000000000000000 .L292 +000000000000c208 l .rodata 0000000000000000 .LC44 +000000000000632c l .text 0000000000000000 .L0 +0000000000006334 l .text 0000000000000000 .L0 +000000000000633c l .text 0000000000000000 .L0 +000000000000635a l .text 0000000000000000 .L0 +000000000000c218 l .rodata 0000000000000000 .LC45 +0000000000006362 l .text 0000000000000000 .L0 +000000000000639a l .text 0000000000000000 .L0 +00000000000063a2 l .text 0000000000000000 .L0 +00000000000063aa l .text 0000000000000000 .L0 +0000000000006398 l .text 0000000000000000 .L301 +0000000000006358 l .text 0000000000000000 .L302 +000000000000634a l .text 0000000000000000 .L304 +00000000000060bd l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000001203c l .debug_str 0000000000000000 .LASF240 +0000000000012001 l .debug_str 0000000000000000 .LASF241 +0000000000011fb0 l .debug_str 0000000000000000 .LASF242 +0000000000001cb0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000000efb7 l .debug_line 0000000000000000 .Ldebug_line0 +0000000000011b4e l .debug_str 0000000000000000 .LASF0 +0000000000011a4f l .debug_str 0000000000000000 .LASF2 +0000000000011ba0 l .debug_str 0000000000000000 .LASF1 +0000000000011ff8 l .debug_str 0000000000000000 .LASF3 +0000000000012165 l .debug_str 0000000000000000 .LASF4 +0000000000011fe7 l .debug_str 0000000000000000 .LASF5 +0000000000012249 l .debug_str 0000000000000000 .LASF6 +0000000000012280 l .debug_str 0000000000000000 .LASF7 +000000000001223a l .debug_str 0000000000000000 .LASF8 +0000000000011e21 l .debug_str 0000000000000000 .LASF9 +0000000000011ab4 l .debug_str 0000000000000000 .LASF10 +0000000000011cca l .debug_str 0000000000000000 .LASF11 +0000000000011963 l .debug_str 0000000000000000 .LASF12 +000000000001212f l .debug_str 0000000000000000 .LASF13 +0000000000011f89 l .debug_str 0000000000000000 .LASF14 +0000000000011b5a l .debug_str 0000000000000000 .LASF15 +0000000000012177 l .debug_str 0000000000000000 .LASF16 +0000000000011fa7 l .debug_str 0000000000000000 .LASF17 +00000000000119a7 l .debug_str 0000000000000000 .LASF18 +0000000000012229 l .debug_str 0000000000000000 .LASF19 +0000000000011d26 l .debug_str 0000000000000000 .LASF20 +0000000000011ef8 l .debug_str 0000000000000000 .LASF21 +000000000001196c l .debug_str 0000000000000000 .LASF22 +0000000000011a76 l .debug_str 0000000000000000 .LASF23 +0000000000011a90 l .debug_str 0000000000000000 .LASF24 +00000000000122d6 l .debug_str 0000000000000000 .LASF25 +00000000000119c9 l .debug_str 0000000000000000 .LASF26 +0000000000011cc4 l .debug_str 0000000000000000 .LASF27 +00000000000119cf l .debug_str 0000000000000000 .LASF28 +0000000000011e2e l .debug_str 0000000000000000 .LASF29 +0000000000011ef2 l .debug_str 0000000000000000 .LASF30 +00000000000121ed l .debug_str 0000000000000000 .LASF31 +00000000000119f4 l .debug_str 0000000000000000 .LASF32 +0000000000011bde l .debug_str 0000000000000000 .LASF33 +0000000000011d39 l .debug_str 0000000000000000 .LASF34 +0000000000011d8a l .debug_str 0000000000000000 .LASF35 +0000000000011f13 l .debug_str 0000000000000000 .LASF36 +0000000000011f4d l .debug_str 0000000000000000 .LASF39 +00000000000122e7 l .debug_str 0000000000000000 .LASF37 +000000000001216f l .debug_str 0000000000000000 .LASF38 +0000000000011a42 l .debug_str 0000000000000000 .LASF40 +0000000000011f3b l .debug_str 0000000000000000 .LASF41 +00000000000122a2 l .debug_str 0000000000000000 .LASF42 +00000000000121e5 l .debug_str 0000000000000000 .LASF43 +0000000000011ee9 l .debug_str 0000000000000000 .LASF44 +0000000000011b74 l .debug_str 0000000000000000 .LASF45 +0000000000011c9e l .debug_str 0000000000000000 .LASF46 +0000000000011bae l .debug_str 0000000000000000 .LASF47 +0000000000011ce4 l .debug_str 0000000000000000 .LASF48 +00000000000122ee l .debug_str 0000000000000000 .LASF49 +00000000000119e5 l .debug_str 0000000000000000 .LASF50 +0000000000011952 l .debug_str 0000000000000000 .LASF51 +000000000001197a l .debug_str 0000000000000000 .LASF52 +0000000000011985 l .debug_str 0000000000000000 .LASF53 +0000000000011ed1 l .debug_str 0000000000000000 .LASF54 +0000000000011bc4 l .debug_str 0000000000000000 .LASF55 +0000000000011bfc l .debug_str 0000000000000000 .LASF56 +0000000000011f42 l .debug_str 0000000000000000 .LASF57 +0000000000011dc5 l .debug_str 0000000000000000 .LASF58 +0000000000011aa0 l .debug_str 0000000000000000 .LASF59 +0000000000011dd0 l .debug_str 0000000000000000 .LASF60 +00000000000121c0 l .debug_str 0000000000000000 .LASF61 +0000000000011b32 l .debug_str 0000000000000000 .LASF62 +0000000000011996 l .debug_str 0000000000000000 .LASF63 +0000000000011bbe l .debug_str 0000000000000000 .LASF64 +0000000000011d64 l .debug_str 0000000000000000 .LASF65 +0000000000012298 l .debug_str 0000000000000000 .LASF66 +0000000000011cec l .debug_str 0000000000000000 .LASF67 +0000000000011a62 l .debug_str 0000000000000000 .LASF68 +000000000001193d l .debug_str 0000000000000000 .LASF69 +0000000000011fde l .debug_str 0000000000000000 .LASF70 +0000000000011d76 l .debug_str 0000000000000000 .LASF71 +0000000000011b8e l .debug_str 0000000000000000 .LASF72 +00000000000122b2 l .debug_str 0000000000000000 .LASF73 +0000000000011d81 l .debug_str 0000000000000000 .LASF74 +0000000000011e71 l .debug_str 0000000000000000 .LASF75 +0000000000012031 l .debug_str 0000000000000000 .LASF76 +00000000000119bc l .debug_str 0000000000000000 .LASF77 +0000000000011ddb l .debug_str 0000000000000000 .LASF78 +0000000000011b82 l .debug_str 0000000000000000 .LASF79 +0000000000011f1f l .debug_str 0000000000000000 .LASF80 +0000000000011c32 l .debug_str 0000000000000000 .LASF81 +0000000000011a6e l .debug_str 0000000000000000 .LASF82 +0000000000011f0d l .debug_str 0000000000000000 .LASF83 +0000000000012156 l .debug_str 0000000000000000 .LASF84 +00000000000121dc l .debug_str 0000000000000000 .LASF85 +0000000000012193 l .debug_str 0000000000000000 .LASF86 +0000000000012289 l .debug_str 0000000000000000 .LASF87 +000000000001219b l .debug_str 0000000000000000 .LASF88 +0000000000011a85 l .debug_str 0000000000000000 .LASF89 +0000000000012104 l .debug_str 0000000000000000 .LASF90 +0000000000011c1e l .debug_str 0000000000000000 .LASF243 +0000000000011cb8 l .debug_str 0000000000000000 .LASF91 +00000000000122d1 l .debug_str 0000000000000000 .LASF92 +0000000000012151 l .debug_str 0000000000000000 .LASF93 +0000000000011bcb l .debug_str 0000000000000000 .LASF94 +0000000000011d50 l .debug_str 0000000000000000 .LASF95 +000000000001215f l .debug_str 0000000000000000 .LASF96 +0000000000011d3f l .debug_str 0000000000000000 .LASF97 +0000000000012232 l .debug_str 0000000000000000 .LASF98 +00000000000119d7 l .debug_str 0000000000000000 .LASF99 +0000000000011b37 l .debug_str 0000000000000000 .LASF100 +0000000000011b2c l .debug_str 0000000000000000 .LASF101 +0000000000011be3 l .debug_str 0000000000000000 .LASF102 +0000000000011f30 l .debug_str 0000000000000000 .LASF103 +0000000000011bea l .debug_str 0000000000000000 .LASF104 +00000000000122a9 l .debug_str 0000000000000000 .LASF105 +00000000000120f8 l .debug_str 0000000000000000 .LASF106 +00000000000121a4 l .debug_str 0000000000000000 .LASF107 +0000000000011f48 l .debug_str 0000000000000000 .LASF108 +0000000000011a2b l .debug_str 0000000000000000 .LASF109 +00000000000122bc l .debug_str 0000000000000000 .LASF110 +0000000000011cf8 l .debug_str 0000000000000000 .LASF111 +0000000000011df7 l .debug_str 0000000000000000 .LASF112 +0000000000012140 l .debug_str 0000000000000000 .LASF113 +00000000000121f7 l .debug_str 0000000000000000 .LASF114 +0000000000011e9e l .debug_str 0000000000000000 .LASF115 +0000000000011b3d l .debug_str 0000000000000000 .LASF116 +0000000000011eb3 l .debug_str 0000000000000000 .LASF117 +000000000001201d l .debug_str 0000000000000000 .LASF118 +0000000000011dac l .debug_str 0000000000000000 .LASF119 +000000000001210f l .debug_str 0000000000000000 .LASF120 +0000000000011e98 l .debug_str 0000000000000000 .LASF121 +0000000000011da3 l .debug_str 0000000000000000 .LASF122 +0000000000011f27 l .debug_str 0000000000000000 .LASF123 +00000000000119dd l .debug_str 0000000000000000 .LASF124 +0000000000011a20 l .debug_str 0000000000000000 .LASF129 +0000000000006300 l .text 0000000000000000 .LFB24 +00000000000063ba l .text 0000000000000000 .LFE24 +0000000000011f08 l .debug_str 0000000000000000 .LASF125 +000000000000f19b l .debug_loc 0000000000000000 .LLST136 +0000000000011d46 l .debug_str 0000000000000000 .LASF126 +000000000000f223 l .debug_loc 0000000000000000 .LLST137 +0000000000011d4b l .debug_str 0000000000000000 .LASF127 +000000000000f2ae l .debug_loc 0000000000000000 .LLST138 +0000000000011c24 l .debug_str 0000000000000000 .LASF128 +000000000000f336 l .debug_loc 0000000000000000 .LLST139 +000000000000632a l .text 0000000000000000 .LVL493 +0000000000006348 l .text 0000000000000000 .LVL494 +0000000000006374 l .text 0000000000000000 .LVL499 +000000000000638a l .text 0000000000000000 .LVL502 +0000000000006396 l .text 0000000000000000 .LVL504 +00000000000063ba l .text 0000000000000000 .LVL508 +0000000000011c56 l .debug_str 0000000000000000 .LASF130 +000000000000613e l .text 0000000000000000 .LFB23 +0000000000006300 l .text 0000000000000000 .LFE23 +000000000000f36c l .debug_loc 0000000000000000 .LLST128 +000000000000f3cb l .debug_loc 0000000000000000 .LLST129 +000000000000f404 l .debug_loc 0000000000000000 .LLST130 +0000000000011bf3 l .debug_str 0000000000000000 .LASF131 +000000000000f463 l .debug_loc 0000000000000000 .LLST131 +0000000000011a7e l .debug_str 0000000000000000 .LASF132 +0000000000011fa0 l .debug_str 0000000000000000 .LASF133 +000000000000f499 l .debug_loc 0000000000000000 .LLST132 +000000000000f4e2 l .debug_loc 0000000000000000 .LLST133 +0000000000011aad l .debug_str 0000000000000000 .LASF134 +000000000000f5a2 l .debug_loc 0000000000000000 .LLST134 +000000000000f5d8 l .debug_loc 0000000000000000 .LLST135 +00000000000061fc l .text 0000000000000000 .LVL468 +0000000000006212 l .text 0000000000000000 .LVL470 +000000000000622a l .text 0000000000000000 .LVL471 +000000000000623e l .text 0000000000000000 .LVL473 +0000000000006256 l .text 0000000000000000 .LVL476 +000000000000626e l .text 0000000000000000 .LVL477 +0000000000006278 l .text 0000000000000000 .LVL478 +00000000000061e2 l .text 0000000000000000 .LVL466 +000000000000629e l .text 0000000000000000 .LVL481 +0000000000006164 l .text 0000000000000000 .LVL455 +0000000000006178 l .text 0000000000000000 .LVL456 +00000000000061a0 l .text 0000000000000000 .LVL460 +00000000000061b8 l .text 0000000000000000 .LVL463 +00000000000061d6 l .text 0000000000000000 .LVL465 +0000000000006282 l .text 0000000000000000 .LVL479 +00000000000062be l .text 0000000000000000 .LVL484 +00000000000062ce l .text 0000000000000000 .LVL487 +00000000000062e6 l .text 0000000000000000 .LVL490 +00000000000062fe l .text 0000000000000000 .LVL491 +000000000001218b l .debug_str 0000000000000000 .LASF135 +0000000000005f88 l .text 0000000000000000 .LFB22 +000000000000613e l .text 0000000000000000 .LFE22 +000000000000f60e l .debug_loc 0000000000000000 .LLST118 +000000000000f66d l .debug_loc 0000000000000000 .LLST119 +000000000000f6a6 l .debug_loc 0000000000000000 .LLST120 +000000000001199b l .debug_str 0000000000000000 .LASF136 +000000000000f705 l .debug_loc 0000000000000000 .LLST121 +00000000000119a1 l .debug_str 0000000000000000 .LASF137 +000000000000f762 l .debug_loc 0000000000000000 .LLST122 +000000000000f7e6 l .debug_loc 0000000000000000 .LLST123 +000000000000f85b l .debug_loc 0000000000000000 .LLST124 +000000000000f8d2 l .debug_loc 0000000000000000 .LLST125 +0000000000011ca5 l .debug_str 0000000000000000 .LASF138 +000000000001225c l .debug_str 0000000000000000 .LASF139 +000000000001226e l .debug_str 0000000000000000 .LASF140 +0000000000011c63 l .debug_str 0000000000000000 .LASF141 +0000000000011c73 l .debug_str 0000000000000000 .LASF142 +0000000000011de1 l .debug_str 0000000000000000 .LASF143 +0000000000011de6 l .debug_str 0000000000000000 .LASF144 +0000000000011b14 l .debug_str 0000000000000000 .LASF145 +000000000000f9aa l .debug_loc 0000000000000000 .LLST126 +0000000000011b20 l .debug_str 0000000000000000 .LASF146 +000000000000f9e0 l .debug_loc 0000000000000000 .LLST127 +00000000000060b8 l .text 0000000000000000 .LVL437 +00000000000060ca l .text 0000000000000000 .LVL439 +00000000000060e0 l .text 0000000000000000 .LVL442 +00000000000060f8 l .text 0000000000000000 .LVL443 +000000000000611a l .text 0000000000000000 .LVL446 +000000000000612a l .text 0000000000000000 .LVL449 +0000000000005fae l .text 0000000000000000 .LVL407 +0000000000005fc2 l .text 0000000000000000 .LVL409 +0000000000005ff0 l .text 0000000000000000 .LVL416 +0000000000006006 l .text 0000000000000000 .LVL419 +0000000000006012 l .text 0000000000000000 .LVL421 +0000000000006020 l .text 0000000000000000 .LVL424 +0000000000006038 l .text 0000000000000000 .LVL426 +0000000000006050 l .text 0000000000000000 .LVL427 +000000000000605a l .text 0000000000000000 .LVL428 +0000000000006068 l .text 0000000000000000 .LVL431 +0000000000006084 l .text 0000000000000000 .LVL433 +000000000000609c l .text 0000000000000000 .LVL434 +00000000000060a6 l .text 0000000000000000 .LVL435 +000000000000613c l .text 0000000000000000 .LVL451 +0000000000011d13 l .debug_str 0000000000000000 .LASF147 +0000000000005f78 l .text 0000000000000000 .LFB21 +0000000000005f88 l .text 0000000000000000 .LFE21 +000000000000fa62 l .debug_loc 0000000000000000 .LLST115 +000000000000fa9b l .debug_loc 0000000000000000 .LLST116 +000000000000fad4 l .debug_loc 0000000000000000 .LLST117 +0000000000005f88 l .text 0000000000000000 .LVL404 +0000000000011c14 l .debug_str 0000000000000000 .LASF148 +0000000000005f02 l .text 0000000000000000 .LFB20 +0000000000005f78 l .text 0000000000000000 .LFE20 +000000000000fb20 l .debug_loc 0000000000000000 .LLST110 +000000000000fb6c l .debug_loc 0000000000000000 .LLST111 +000000000000fba5 l .debug_loc 0000000000000000 .LLST112 +000000000000fbf1 l .debug_loc 0000000000000000 .LLST113 +000000000000fc27 l .debug_loc 0000000000000000 .LLST114 +0000000000005f1e l .text 0000000000000000 .LVL392 +0000000000005f2c l .text 0000000000000000 .LVL393 +0000000000005f44 l .text 0000000000000000 .LVL395 +0000000000005f5c l .text 0000000000000000 .LVL396 +0000000000005f66 l .text 0000000000000000 .LVL397 +0000000000011b7b l .debug_str 0000000000000000 .LASF149 +0000000000005e30 l .text 0000000000000000 .LFB19 +0000000000005f02 l .text 0000000000000000 .LFE19 +000000000000fc72 l .debug_loc 0000000000000000 .LLST104 +000000000000fcd1 l .debug_loc 0000000000000000 .LLST105 +000000000000fd0a l .debug_loc 0000000000000000 .LLST106 +0000000000011a58 l .debug_str 0000000000000000 .LASF150 +000000000000fd69 l .debug_loc 0000000000000000 .LLST107 +000000000000fdad l .debug_loc 0000000000000000 .LLST108 +000000000000fe1c l .debug_loc 0000000000000000 .LLST109 +0000000000005e58 l .text 0000000000000000 .LVL370 +0000000000005e74 l .text 0000000000000000 .LVL373 +0000000000005e98 l .text 0000000000000000 .LVL379 +0000000000005eb2 l .text 0000000000000000 .LVL382 +0000000000005ebc l .text 0000000000000000 .LVL383 +0000000000005ed4 l .text 0000000000000000 .LVL385 +0000000000005eec l .text 0000000000000000 .LVL386 +0000000000005ef6 l .text 0000000000000000 .LVL387 +0000000000005f00 l .text 0000000000000000 .LVL389 +0000000000011a31 l .debug_str 0000000000000000 .LASF194 +0000000000004e36 l .text 0000000000000000 .LFB18 +0000000000004f64 l .text 0000000000000000 .LFE18 +00000000000119af l .debug_str 0000000000000000 .LASF151 +000000000000fe7e l .debug_loc 0000000000000000 .LLST0 +000000000000feca l .debug_loc 0000000000000000 .LLST1 +000000000000ff15 l .debug_loc 0000000000000000 .LLST2 +000000000000ff71 l .debug_loc 0000000000000000 .LLST3 +000000000000ffcd l .debug_loc 0000000000000000 .LLST4 +0000000000004e58 l .text 0000000000000000 .LVL1 +0000000000004e74 l .text 0000000000000000 .LVL4 +0000000000004e80 l .text 0000000000000000 .LVL7 +0000000000004e90 l .text 0000000000000000 .LVL10 +0000000000004edc l .text 0000000000000000 .LVL14 +0000000000004ee8 l .text 0000000000000000 .LVL16 +0000000000004efe l .text 0000000000000000 .LVL20 +0000000000004f10 l .text 0000000000000000 .LVL23 +0000000000004f1e l .text 0000000000000000 .LVL24 +0000000000004f30 l .text 0000000000000000 .LVL25 +0000000000004f3a l .text 0000000000000000 .LVL26 +0000000000004f4a l .text 0000000000000000 .LVL29 +00000000000119ed l .debug_str 0000000000000000 .LASF152 +0000000000005d74 l .text 0000000000000000 .LFB17 +0000000000005e30 l .text 0000000000000000 .LFE17 +0000000000010003 l .debug_loc 0000000000000000 .LLST98 +0000000000010062 l .debug_loc 0000000000000000 .LLST99 +000000000001009b l .debug_loc 0000000000000000 .LLST100 +0000000000011e14 l .debug_str 0000000000000000 .LASF153 +00000000000100fa l .debug_loc 0000000000000000 .LLST101 +0000000000011ec2 l .debug_str 0000000000000000 .LASF154 +0000000000010143 l .debug_loc 0000000000000000 .LLST102 +000000000001019f l .debug_loc 0000000000000000 .LLST103 +0000000000011e37 l .debug_str 0000000000000000 .LASF155 +0000000000005d92 l .text 0000000000000000 .LVL347 +0000000000005da4 l .text 0000000000000000 .LVL349 +0000000000005dc8 l .text 0000000000000000 .LVL354 +0000000000005ddc l .text 0000000000000000 .LVL357 +0000000000005de8 l .text 0000000000000000 .LVL359 +0000000000005df6 l .text 0000000000000000 .LVL362 +0000000000005e0c l .text 0000000000000000 .LVL364 +0000000000005e24 l .text 0000000000000000 .LVL365 +0000000000005e2e l .text 0000000000000000 .LVL366 +0000000000011b62 l .debug_str 0000000000000000 .LASF156 +0000000000005bf0 l .text 0000000000000000 .LFB16 +0000000000005d74 l .text 0000000000000000 .LFE16 +00000000000101ea l .debug_loc 0000000000000000 .LLST88 +0000000000010249 l .debug_loc 0000000000000000 .LLST89 +0000000000010282 l .debug_loc 0000000000000000 .LLST90 +00000000000102e1 l .debug_loc 0000000000000000 .LLST91 +00000000000120ec l .debug_str 0000000000000000 .LASF157 +0000000000010304 l .debug_loc 0000000000000000 .LLST92 +00000000000121ad l .debug_str 0000000000000000 .LASF158 +000000000001033c l .debug_loc 0000000000000000 .LLST93 +00000000000103ad l .debug_loc 0000000000000000 .LLST94 +00000000000103f9 l .debug_loc 0000000000000000 .LLST95 +0000000000010469 l .debug_loc 0000000000000000 .LLST96 +0000000000011cff l .debug_str 0000000000000000 .LASF159 +000000000001049f l .debug_loc 0000000000000000 .LLST97 +0000000000011fce l .debug_str 0000000000000000 .LASF160 +0000000000005c44 l .text 0000000000000000 .LVL316 +0000000000005c58 l .text 0000000000000000 .LVL318 +0000000000005c6a l .text 0000000000000000 .LVL319 +0000000000005c7a l .text 0000000000000000 .LVL320 +0000000000005c9a l .text 0000000000000000 .LVL322 +0000000000005cee l .text 0000000000000000 .LVL330 +0000000000005cf8 l .text 0000000000000000 .LVL331 +0000000000005d0c l .text 0000000000000000 .LVL334 +0000000000005d18 l .text 0000000000000000 .LVL336 +0000000000005d22 l .text 0000000000000000 .LVL337 +0000000000005d36 l .text 0000000000000000 .LVL339 +0000000000005d54 l .text 0000000000000000 .LVL341 +0000000000005d72 l .text 0000000000000000 .LVL344 +00000000000119fb l .debug_str 0000000000000000 .LASF161 +0000000000005ade l .text 0000000000000000 .LFB15 +0000000000005bf0 l .text 0000000000000000 .LFE15 +00000000000104e8 l .debug_loc 0000000000000000 .LLST80 +0000000000010547 l .debug_loc 0000000000000000 .LLST81 +0000000000010580 l .debug_loc 0000000000000000 .LLST82 +00000000000105f5 l .debug_loc 0000000000000000 .LLST83 +0000000000011df0 l .debug_str 0000000000000000 .LASF162 +0000000000010653 l .debug_loc 0000000000000000 .LLST84 +00000000000106b0 l .debug_loc 0000000000000000 .LLST85 +0000000000010710 l .debug_loc 0000000000000000 .LLST86 +0000000000011937 l .debug_str 0000000000000000 .LASF163 +0000000000010746 l .debug_loc 0000000000000000 .LLST87 +0000000000005b64 l .text 0000000000000000 .LVL298 +0000000000005b7a l .text 0000000000000000 .LVL301 +0000000000005b88 l .text 0000000000000000 .LVL303 +0000000000005b9e l .text 0000000000000000 .LVL304 +0000000000005bb6 l .text 0000000000000000 .LVL305 +0000000000005bc0 l .text 0000000000000000 .LVL306 +0000000000005b16 l .text 0000000000000000 .LVL290 +0000000000005b26 l .text 0000000000000000 .LVL292 +0000000000005b34 l .text 0000000000000000 .LVL293 +0000000000005b46 l .text 0000000000000000 .LVL295 +000000000001198f l .debug_str 0000000000000000 .LASF164 +00000000000058c4 l .text 0000000000000000 .LFB14 +0000000000005ade l .text 0000000000000000 .LFE14 +000000000001078f l .debug_loc 0000000000000000 .LLST70 +00000000000107ee l .debug_loc 0000000000000000 .LLST71 +0000000000010827 l .debug_loc 0000000000000000 .LLST72 +0000000000011dbd l .debug_str 0000000000000000 .LASF165 +00000000000108c5 l .debug_loc 0000000000000000 .LLST73 +0000000000011ed8 l .debug_str 0000000000000000 .LASF166 +00000000000108fb l .debug_loc 0000000000000000 .LLST74 +000000000001096b l .debug_loc 0000000000000000 .LLST75 +00000000000109b4 l .debug_loc 0000000000000000 .LLST76 +0000000000010a40 l .debug_loc 0000000000000000 .LLST77 +0000000000010aa0 l .debug_loc 0000000000000000 .LLST78 +0000000000010ae9 l .debug_loc 0000000000000000 .LLST79 +000000000000591c l .text 0000000000000000 .LVL242 +000000000000592e l .text 0000000000000000 .LVL244 +0000000000005948 l .text 0000000000000000 .LVL245 +0000000000005984 l .text 0000000000000000 .LVL249 +00000000000059ac l .text 0000000000000000 .LVL256 +00000000000059ba l .text 0000000000000000 .LVL257 +00000000000059c6 l .text 0000000000000000 .LVL259 +00000000000059e2 l .text 0000000000000000 .LVL262 +00000000000059f4 l .text 0000000000000000 .LVL265 +0000000000005a1a l .text 0000000000000000 .LVL269 +0000000000005a30 l .text 0000000000000000 .LVL272 +0000000000005a48 l .text 0000000000000000 .LVL273 +0000000000005a52 l .text 0000000000000000 .LVL274 +0000000000005a80 l .text 0000000000000000 .LVL279 +0000000000005a94 l .text 0000000000000000 .LVL282 +0000000000005ab2 l .text 0000000000000000 .LVL283 +0000000000005adc l .text 0000000000000000 .LVL287 +0000000000011ff1 l .debug_str 0000000000000000 .LASF167 +0000000000005652 l .text 0000000000000000 .LFB13 +00000000000058c4 l .text 0000000000000000 .LFE13 +0000000000010b32 l .debug_loc 0000000000000000 .LLST57 +0000000000010b91 l .debug_loc 0000000000000000 .LLST58 +0000000000010bca l .debug_loc 0000000000000000 .LLST59 +0000000000011bb6 l .debug_str 0000000000000000 .LASF168 +0000000000010d48 l .debug_loc 0000000000000000 .LLST60 +0000000000011ee0 l .debug_str 0000000000000000 .LASF169 +0000000000010da5 l .debug_loc 0000000000000000 .LLST61 +0000000000011f6f l .debug_str 0000000000000000 .LASF170 +0000000000010e63 l .debug_loc 0000000000000000 .LLST62 +0000000000011a0a l .debug_str 0000000000000000 .LASF171 +0000000000010f37 l .debug_loc 0000000000000000 .LLST63 +0000000000011deb l .debug_str 0000000000000000 .LASF172 +0000000000010feb l .debug_loc 0000000000000000 .LLST64 +00000000000121b4 l .debug_str 0000000000000000 .LASF173 +0000000000011021 l .debug_loc 0000000000000000 .LLST65 +0000000000011044 l .debug_loc 0000000000000000 .LLST66 +00000000000056e4 l .text 0000000000000000 .L139 +0000000000011e84 l .debug_str 0000000000000000 .LASF174 +00000000000121cb l .debug_str 0000000000000000 .LASF175 +0000000000011e5c l .debug_str 0000000000000000 .LASF244 +0000000000011ad5 l .debug_str 0000000000000000 .LASF176 +0000000000011e4b l .debug_str 0000000000000000 .LASF177 +0000000000011c43 l .debug_str 0000000000000000 .LASF178 +000000000001112d l .debug_loc 0000000000000000 .LLST67 +0000000000011f61 l .debug_str 0000000000000000 .LASF179 +0000000000011163 l .debug_loc 0000000000000000 .LLST68 +0000000000011199 l .debug_loc 0000000000000000 .LLST69 +0000000000005812 l .text 0000000000000000 .LVL219 +000000000000582a l .text 0000000000000000 .LVL220 +000000000000583a l .text 0000000000000000 .LVL222 +000000000000585e l .text 0000000000000000 .LVL228 +0000000000005872 l .text 0000000000000000 .LVL230 +000000000000588a l .text 0000000000000000 .LVL232 +000000000000589e l .text 0000000000000000 .LVL235 +00000000000058b4 l .text 0000000000000000 .LVL237 +0000000000005678 l .text 0000000000000000 .LVL174 +000000000000568a l .text 0000000000000000 .LVL176 +00000000000056b4 l .text 0000000000000000 .LVL180 +00000000000056cc l .text 0000000000000000 .LVL182 +00000000000056e4 l .text 0000000000000000 .LVL183 +00000000000056ee l .text 0000000000000000 .LVL184 +00000000000056fc l .text 0000000000000000 .LVL187 +0000000000005710 l .text 0000000000000000 .LVL190 +000000000000571c l .text 0000000000000000 .LVL192 +0000000000005728 l .text 0000000000000000 .LVL194 +0000000000005742 l .text 0000000000000000 .LVL197 +000000000000574c l .text 0000000000000000 .LVL198 +000000000000575a l .text 0000000000000000 .LVL199 +000000000000576e l .text 0000000000000000 .LVL202 +0000000000005778 l .text 0000000000000000 .LVL203 +0000000000005784 l .text 0000000000000000 .LVL206 +0000000000005796 l .text 0000000000000000 .LVL208 +00000000000057a8 l .text 0000000000000000 .LVL209 +00000000000057b6 l .text 0000000000000000 .LVL210 +00000000000057d8 l .text 0000000000000000 .LVL213 +00000000000057ee l .text 0000000000000000 .LVL216 +0000000000005806 l .text 0000000000000000 .LVL217 +0000000000005894 l .text 0000000000000000 .LVL233 +00000000000122f6 l .debug_str 0000000000000000 .LASF180 +0000000000005534 l .text 0000000000000000 .LFB12 +0000000000005652 l .text 0000000000000000 .LFE12 +00000000000111cf l .debug_loc 0000000000000000 .LLST51 +0000000000011257 l .debug_loc 0000000000000000 .LLST52 +0000000000011290 l .debug_loc 0000000000000000 .LLST53 +0000000000011305 l .debug_loc 0000000000000000 .LLST54 +0000000000011352 l .debug_loc 0000000000000000 .LLST55 +0000000000011388 l .debug_loc 0000000000000000 .LLST56 +0000000000005560 l .text 0000000000000000 .LVL153 +000000000000558e l .text 0000000000000000 .LVL155 +00000000000055a0 l .text 0000000000000000 .LVL156 +00000000000055b8 l .text 0000000000000000 .LVL158 +00000000000055d0 l .text 0000000000000000 .LVL159 +00000000000055f0 l .text 0000000000000000 .LVL163 +0000000000005608 l .text 0000000000000000 .LVL165 +0000000000005620 l .text 0000000000000000 .LVL166 +000000000000562a l .text 0000000000000000 .LVL167 +0000000000005652 l .text 0000000000000000 .LVL171 +0000000000011d1e l .debug_str 0000000000000000 .LASF181 +00000000000054ac l .text 0000000000000000 .LFB11 +0000000000005534 l .text 0000000000000000 .LFE11 +00000000000113ab l .debug_loc 0000000000000000 .LLST45 +000000000001140a l .debug_loc 0000000000000000 .LLST46 +0000000000011443 l .debug_loc 0000000000000000 .LLST47 +00000000000114a2 l .debug_loc 0000000000000000 .LLST48 +00000000000114fe l .debug_loc 0000000000000000 .LLST49 +0000000000011583 l .debug_loc 0000000000000000 .LLST50 +0000000000005502 l .text 0000000000000000 .LVL138 +0000000000005514 l .text 0000000000000000 .LVL141 +0000000000005526 l .text 0000000000000000 .LVL146 +0000000000005532 l .text 0000000000000000 .LVL148 +000000000001217f l .debug_str 0000000000000000 .LASF182 +0000000000005480 l .text 0000000000000000 .LFB10 +00000000000054ac l .text 0000000000000000 .LFE10 +00000000000115f5 l .debug_loc 0000000000000000 .LLST41 +0000000000011641 l .debug_loc 0000000000000000 .LLST42 +000000000001167a l .debug_loc 0000000000000000 .LLST43 +0000000000011b6b l .debug_str 0000000000000000 .LASF183 +00000000000116b3 l .debug_loc 0000000000000000 .LLST44 +0000000000005492 l .text 0000000000000000 .LVL126 +00000000000054a2 l .text 0000000000000000 .LVL129 +0000000000011bd1 l .debug_str 0000000000000000 .LASF184 +0000000000005408 l .text 0000000000000000 .LFB9 +0000000000005480 l .text 0000000000000000 .LFE9 +00000000000116e9 l .debug_loc 0000000000000000 .LLST34 +0000000000011735 l .debug_loc 0000000000000000 .LLST35 +000000000001176e l .debug_loc 0000000000000000 .LLST36 +00000000000117ba l .debug_loc 0000000000000000 .LLST37 +000000000000542c l .text 0000000000000000 .LBB25 +0000000000005460 l .text 0000000000000000 .LBE25 +0000000000011eca l .debug_str 0000000000000000 .LASF185 +00000000000117f0 l .debug_loc 0000000000000000 .LLST38 +0000000000011a9b l .debug_str 0000000000000000 .LASF186 +0000000000011813 l .debug_loc 0000000000000000 .LLST39 +00000000000122e2 l .debug_str 0000000000000000 .LASF187 +0000000000011836 l .debug_loc 0000000000000000 .LLST40 +0000000000005438 l .text 0000000000000000 .LVL114 +0000000000005446 l .text 0000000000000000 .LVL116 +000000000000545a l .text 0000000000000000 .LVL119 +0000000000005424 l .text 0000000000000000 .LVL111 +0000000000005470 l .text 0000000000000000 .LVL121 +0000000000011f79 l .debug_str 0000000000000000 .LASF192 +0000000000011c3b l .debug_str 0000000000000000 .LASF188 +00000000000120f1 l .debug_str 0000000000000000 .LASF189 +0000000000011b00 l .debug_str 0000000000000000 .LASF190 +0000000000011d30 l .debug_str 0000000000000000 .LASF191 +0000000000011d06 l .debug_str 0000000000000000 .LASF193 +0000000000011d98 l .debug_str 0000000000000000 .LASF195 +0000000000004fa0 l .text 0000000000000000 .LFB6 +000000000000527a l .text 0000000000000000 .LFE6 +0000000000011859 l .debug_loc 0000000000000000 .LLST7 +00000000000118b8 l .debug_loc 0000000000000000 .LLST8 +0000000000011969 l .debug_loc 0000000000000000 .LLST9 +0000000000011a2e l .debug_loc 0000000000000000 .LLST10 +0000000000011a67 l .debug_loc 0000000000000000 .LLST11 +0000000000011af2 l .debug_loc 0000000000000000 .LLST12 +0000000000004fd2 l .text 0000000000000000 .LBB8 +0000000000004ffa l .text 0000000000000000 .LBE8 +0000000000011b3b l .debug_loc 0000000000000000 .LLST13 +0000000000004fe2 l .text 0000000000000000 .LVL45 +0000000000004fee l .text 0000000000000000 .LVL47 +0000000000004ffa l .text 0000000000000000 .LVL49 +00000000000119b4 l .debug_str 0000000000000000 .LASF196 +0000000000005066 l .text 0000000000000000 .LVL58 +0000000000005116 l .text 0000000000000000 .LVL59 +0000000000004fd0 l .text 0000000000000000 .LVL44 +0000000000005008 l .text 0000000000000000 .LVL51 +0000000000005026 l .text 0000000000000000 .LVL52 +0000000000005048 l .text 0000000000000000 .LVL56 +0000000000005160 l .text 0000000000000000 .LVL61 +0000000000005258 l .text 0000000000000000 .LVL69 +0000000000005178 l .text 0000000000000000 .LVL62 +0000000000005190 l .text 0000000000000000 .LVL64 +00000000000051a0 l .text 0000000000000000 .LVL66 +0000000000005266 l .text 0000000000000000 .LVL71 +0000000000005278 l .text 0000000000000000 .LVL73 +0000000000011b06 l .debug_str 0000000000000000 .LASF197 +0000000000004f64 l .text 0000000000000000 .LFB5 +0000000000004fa0 l .text 0000000000000000 .LFE5 +0000000000011b71 l .debug_loc 0000000000000000 .LLST5 +0000000000004f7e l .text 0000000000000000 .LBB5 +0000000000004f90 l .text 0000000000000000 .LBE5 +0000000000011bd0 l .debug_loc 0000000000000000 .LLST6 +0000000000004f90 l .text 0000000000000000 .LVL34 +0000000000004f7c l .text 0000000000000000 .LVL32 +000000000000527a l .text 0000000000000000 .LFB7 +0000000000005326 l .text 0000000000000000 .LFE7 +0000000000011bf3 l .debug_loc 0000000000000000 .LLST14 +0000000000011c3f l .debug_loc 0000000000000000 .LLST15 +0000000000011c8c l .debug_loc 0000000000000000 .LLST16 +0000000000011cf2 l .debug_loc 0000000000000000 .LLST17 +0000000000011d3e l .debug_loc 0000000000000000 .LLST18 +0000000000005292 l .text 0000000000000000 .LBB16 +0000000000011d75 l .debug_loc 0000000000000000 .LLST19 +0000000000011dab l .debug_loc 0000000000000000 .LLST20 +0000000000011de2 l .debug_loc 0000000000000000 .LLST21 +0000000000011e05 l .debug_loc 0000000000000000 .LLST22 +00000000000052ae l .text 0000000000000000 .LBB18 +0000000000005316 l .text 0000000000000000 .LBE18 +0000000000011e3b l .debug_loc 0000000000000000 .LLST23 +00000000000052b8 l .text 0000000000000000 .LVL80 +00000000000052ca l .text 0000000000000000 .LVL83 +00000000000052e8 l .text 0000000000000000 .LVL84 +000000000000530a l .text 0000000000000000 .LVL87 +0000000000005316 l .text 0000000000000000 .LVL89 +00000000000052a6 l .text 0000000000000000 .LVL79 +0000000000005326 l .text 0000000000000000 .LFB8 +0000000000005408 l .text 0000000000000000 .LFE8 +0000000000011e84 l .debug_loc 0000000000000000 .LLST24 +0000000000011ef6 l .debug_loc 0000000000000000 .LLST25 +0000000000011f55 l .debug_loc 0000000000000000 .LLST26 +0000000000011fb6 l .debug_loc 0000000000000000 .LLST27 +0000000000011fef l .debug_loc 0000000000000000 .LLST28 +000000000000534a l .text 0000000000000000 .LBB23 +00000000000053ec l .text 0000000000000000 .LBE23 +0000000000012047 l .debug_loc 0000000000000000 .LLST29 +000000000001206d l .debug_loc 0000000000000000 .LLST30 +00000000000120bb l .debug_loc 0000000000000000 .LLST31 +0000000000012107 l .debug_loc 0000000000000000 .LLST32 +000000000001213d l .debug_loc 0000000000000000 .LLST33 +0000000000005360 l .text 0000000000000000 .LVL97 +0000000000005370 l .text 0000000000000000 .LVL98 +000000000000538e l .text 0000000000000000 .LVL99 +000000000000539e l .text 0000000000000000 .LVL100 +00000000000053b2 l .text 0000000000000000 .LVL101 +00000000000053c4 l .text 0000000000000000 .LVL103 +00000000000053e2 l .text 0000000000000000 .LVL104 +00000000000053ec l .text 0000000000000000 .LVL105 +0000000000011b98 l .debug_str 0000000000000000 .LASF198 +0000000000011eff l .debug_str 0000000000000000 .LASF199 +0000000000011cac l .debug_str 0000000000000000 .LASF200 +0000000000012244 l .debug_str 0000000000000000 .LASF201 +0000000000011aeb l .debug_str 0000000000000000 .LASF202 +0000000000011a05 l .debug_str 0000000000000000 .LASF203 +0000000000011e7a l .debug_str 0000000000000000 .LASF204 +00000000000122dc l .debug_str 0000000000000000 .LASF205 +0000000000011c2b l .debug_str 0000000000000000 .LASF206 +0000000000011c4e l .debug_str 0000000000000000 .LASF207 +000000000001211f l .debug_str 0000000000000000 .LASF208 +0000000000012207 l .debug_str 0000000000000000 .LASF209 +000000000001195a l .debug_str 0000000000000000 .LASF210 +0000000000011e1c l .debug_str 0000000000000000 .LASF211 +00000000000120fd l .debug_str 0000000000000000 .LASF212 +00000000000122c6 l .debug_str 0000000000000000 .LASF213 +0000000000012292 l .debug_str 0000000000000000 .LASF214 +000000000001200e l .debug_str 0000000000000000 .LASF215 +0000000000011973 l .debug_str 0000000000000000 .LASF216 +0000000000011e03 l .debug_str 0000000000000000 .LASF217 +0000000000011cdc l .debug_str 0000000000000000 .LASF218 +00000000000121b9 l .debug_str 0000000000000000 .LASF219 +0000000000012218 l .debug_str 0000000000000000 .LASF220 +0000000000011c89 l .debug_str 0000000000000000 .LASF221 +0000000000011d5b l .debug_str 0000000000000000 .LASF222 +0000000000011eac l .debug_str 0000000000000000 .LASF223 +0000000000011d6f l .debug_str 0000000000000000 .LASF224 +0000000000011e09 l .debug_str 0000000000000000 .LASF225 +0000000000011a96 l .debug_str 0000000000000000 .LASF226 +0000000000012137 l .debug_str 0000000000000000 .LASF227 +0000000000011f56 l .debug_str 0000000000000000 .LASF228 +0000000000011abd l .debug_str 0000000000000000 .LASF229 +0000000000011c83 l .debug_str 0000000000000000 .LASF230 +0000000000011947 l .debug_str 0000000000000000 .LASF231 +0000000000011c92 l .debug_str 0000000000000000 .LASF232 +0000000000012220 l .debug_str 0000000000000000 .LASF233 +0000000000011a11 l .debug_str 0000000000000000 .LASF234 +0000000000011a47 l .debug_str 0000000000000000 .LASF235 +0000000000011aa6 l .debug_str 0000000000000000 .LASF236 +0000000000011c03 l .debug_str 0000000000000000 .LASF238 +0000000000012016 l .debug_str 0000000000000000 .LASF237 +0000000000011ac4 l .debug_str 0000000000000000 .LASF239 +0000000000006300 l .text 0000000000000000 .LVL492 +0000000000006352 l .text 0000000000000000 .LVL495 +0000000000006358 l .text 0000000000000000 .LVL496 +0000000000006398 l .text 0000000000000000 .LVL505 +0000000000006362 l .text 0000000000000000 .LVL497 +00000000000063b2 l .text 0000000000000000 .LVL507 +000000000000636a l .text 0000000000000000 .LVL498 +00000000000063aa l .text 0000000000000000 .LVL506 +0000000000006376 l .text 0000000000000000 .LVL500 +0000000000006382 l .text 0000000000000000 .LVL501 +000000000000638c l .text 0000000000000000 .LVL503 +000000000000613e l .text 0000000000000000 .LVL452 +0000000000006152 l .text 0000000000000000 .LVL453 +000000000000617e l .text 0000000000000000 .LVL457 +000000000000618e l .text 0000000000000000 .LVL459 +000000000000615a l .text 0000000000000000 .LVL454 +0000000000006186 l .text 0000000000000000 .LVL458 +00000000000061ba l .text 0000000000000000 .LVL464 +00000000000061a4 l .text 0000000000000000 .LVL461 +00000000000061b0 l .text 0000000000000000 .LVL462 +000000000000624c l .text 0000000000000000 .LVL475 +0000000000006284 l .text 0000000000000000 .LVL480 +00000000000062dc l .text 0000000000000000 .LVL489 +000000000000622e l .text 0000000000000000 .LVL472 +0000000000006240 l .text 0000000000000000 .LVL474 +00000000000062a0 l .text 0000000000000000 .LVL482 +00000000000062bc l .text 0000000000000000 .LVL483 +00000000000062c0 l .text 0000000000000000 .LVL485 +00000000000062c6 l .text 0000000000000000 .LVL486 +00000000000062d0 l .text 0000000000000000 .LVL488 +00000000000061e4 l .text 0000000000000000 .LVL467 +00000000000061fe l .text 0000000000000000 .LVL469 +0000000000005f88 l .text 0000000000000000 .LVL405 +0000000000005fc8 l .text 0000000000000000 .LVL411 +0000000000005fe0 l .text 0000000000000000 .LVL414 +0000000000005fa2 l .text 0000000000000000 .LVL406 +0000000000005fcc l .text 0000000000000000 .LVL412 +0000000000005fc0 l .text 0000000000000000 .LVL408 +0000000000005fe8 l .text 0000000000000000 .LVL415 +0000000000005fc4 l .text 0000000000000000 .LVL410 +0000000000005ff2 l .text 0000000000000000 .LVL417 +0000000000006004 l .text 0000000000000000 .LVL418 +0000000000006014 l .text 0000000000000000 .LVL422 +0000000000006018 l .text 0000000000000000 .LVL423 +0000000000006008 l .text 0000000000000000 .LVL420 +0000000000006022 l .text 0000000000000000 .LVL425 +000000000000605c l .text 0000000000000000 .LVL429 +0000000000006060 l .text 0000000000000000 .LVL430 +000000000000606a l .text 0000000000000000 .LVL432 +0000000000005fdc l .text 0000000000000000 .LVL413 +00000000000060a8 l .text 0000000000000000 .LVL436 +0000000000006132 l .text 0000000000000000 .LVL450 +00000000000060ba l .text 0000000000000000 .LVL438 +00000000000060d6 l .text 0000000000000000 .LVL441 +00000000000060fc l .text 0000000000000000 .LVL444 +00000000000060cc l .text 0000000000000000 .LVL440 +0000000000006104 l .text 0000000000000000 .LVL445 +000000000000611c l .text 0000000000000000 .LVL447 +0000000000006122 l .text 0000000000000000 .LVL448 +0000000000005f78 l .text 0000000000000000 .LVL401 +0000000000005f7c l .text 0000000000000000 .LVL402 +0000000000005f7e l .text 0000000000000000 .LVL403 +0000000000005f02 l .text 0000000000000000 .LVL390 +0000000000005f70 l .text 0000000000000000 .LVL399 +0000000000005f12 l .text 0000000000000000 .LVL391 +0000000000005f72 l .text 0000000000000000 .LVL400 +0000000000005f2e l .text 0000000000000000 .LVL394 +0000000000005f6c l .text 0000000000000000 .LVL398 +0000000000005e30 l .text 0000000000000000 .LVL367 +0000000000005e46 l .text 0000000000000000 .LVL368 +0000000000005e7e l .text 0000000000000000 .LVL375 +0000000000005e88 l .text 0000000000000000 .LVL377 +0000000000005e4e l .text 0000000000000000 .LVL369 +0000000000005e80 l .text 0000000000000000 .LVL376 +0000000000005e5a l .text 0000000000000000 .LVL371 +0000000000005e72 l .text 0000000000000000 .LVL372 +0000000000005e90 l .text 0000000000000000 .LVL378 +0000000000005e9a l .text 0000000000000000 .LVL380 +0000000000005eaa l .text 0000000000000000 .LVL381 +0000000000005ef8 l .text 0000000000000000 .LVL388 +0000000000005e76 l .text 0000000000000000 .LVL374 +0000000000005ebe l .text 0000000000000000 .LVL384 +0000000000004e36 l .text 0000000000000000 .LVL0 +0000000000004f52 l .text 0000000000000000 .LVL30 +0000000000004ee0 l .text 0000000000000000 .LVL15 +0000000000004f00 l .text 0000000000000000 .LVL21 +0000000000004f08 l .text 0000000000000000 .LVL22 +0000000000004f3c l .text 0000000000000000 .LVL27 +0000000000004e92 l .text 0000000000000000 .LVL11 +0000000000004ea8 l .text 0000000000000000 .LVL12 +0000000000004eae l .text 0000000000000000 .LVL13 +0000000000004ef0 l .text 0000000000000000 .LVL18 +0000000000004e5a l .text 0000000000000000 .LVL2 +0000000000004e64 l .text 0000000000000000 .LVL3 +0000000000004e76 l .text 0000000000000000 .LVL5 +0000000000004e78 l .text 0000000000000000 .LVL6 +0000000000004eea l .text 0000000000000000 .LVL17 +0000000000004ef6 l .text 0000000000000000 .LVL19 +0000000000004f42 l .text 0000000000000000 .LVL28 +0000000000004e82 l .text 0000000000000000 .LVL8 +0000000000004e88 l .text 0000000000000000 .LVL9 +0000000000005d74 l .text 0000000000000000 .LVL345 +0000000000005daa l .text 0000000000000000 .LVL350 +0000000000005dba l .text 0000000000000000 .LVL352 +0000000000005d86 l .text 0000000000000000 .LVL346 +0000000000005dac l .text 0000000000000000 .LVL351 +0000000000005da2 l .text 0000000000000000 .LVL348 +0000000000005dc0 l .text 0000000000000000 .LVL353 +0000000000005dca l .text 0000000000000000 .LVL355 +0000000000005dda l .text 0000000000000000 .LVL356 +0000000000005dea l .text 0000000000000000 .LVL360 +0000000000005dee l .text 0000000000000000 .LVL361 +0000000000005dde l .text 0000000000000000 .LVL358 +0000000000005df8 l .text 0000000000000000 .LVL363 +0000000000005bf0 l .text 0000000000000000 .LVL314 +0000000000005c30 l .text 0000000000000000 .LVL315 +0000000000005ca4 l .text 0000000000000000 .LVL324 +0000000000005cc0 l .text 0000000000000000 .LVL329 +0000000000005ca6 l .text 0000000000000000 .LVL325 +0000000000005d4c l .text 0000000000000000 .LVL340 +0000000000005c7e l .text 0000000000000000 .LVL321 +0000000000005cb0 l .text 0000000000000000 .LVL328 +0000000000005d10 l .text 0000000000000000 .LVL335 +0000000000005cac l .text 0000000000000000 .LVL327 +0000000000005ca8 l .text 0000000000000000 .LVL326 +0000000000005cfe l .text 0000000000000000 .LVL332 +0000000000005d02 l .text 0000000000000000 .LVL333 +0000000000005ca0 l .text 0000000000000000 .LVL323 +0000000000005d56 l .text 0000000000000000 .LVL342 +0000000000005d70 l .text 0000000000000000 .LVL343 +0000000000005c48 l .text 0000000000000000 .LVL317 +0000000000005ade l .text 0000000000000000 .LVL288 +0000000000005b08 l .text 0000000000000000 .LVL289 +0000000000005bc8 l .text 0000000000000000 .LVL307 +0000000000005bd8 l .text 0000000000000000 .LVL310 +0000000000005b3c l .text 0000000000000000 .LVL294 +0000000000005be0 l .text 0000000000000000 .LVL312 +0000000000005b48 l .text 0000000000000000 .LVL296 +0000000000005bca l .text 0000000000000000 .LVL308 +0000000000005bde l .text 0000000000000000 .LVL311 +0000000000005b58 l .text 0000000000000000 .LVL297 +0000000000005b7c l .text 0000000000000000 .LVL302 +0000000000005bd4 l .text 0000000000000000 .LVL309 +0000000000005b1a l .text 0000000000000000 .LVL291 +0000000000005b66 l .text 0000000000000000 .LVL299 +0000000000005b6c l .text 0000000000000000 .LVL300 +0000000000005bea l .text 0000000000000000 .LVL313 +00000000000058c4 l .text 0000000000000000 .LVL239 +000000000000590c l .text 0000000000000000 .LVL240 +0000000000005950 l .text 0000000000000000 .LVL246 +0000000000005968 l .text 0000000000000000 .LVL247 +0000000000005a54 l .text 0000000000000000 .LVL275 +0000000000005a64 l .text 0000000000000000 .LVL278 +00000000000059bc l .text 0000000000000000 .LVL258 +00000000000059ea l .text 0000000000000000 .LVL263 +00000000000059ec l .text 0000000000000000 .LVL264 +0000000000005914 l .text 0000000000000000 .LVL241 +0000000000005a26 l .text 0000000000000000 .LVL270 +0000000000005a84 l .text 0000000000000000 .LVL281 +0000000000005aba l .text 0000000000000000 .LVL285 +00000000000059c8 l .text 0000000000000000 .LVL260 +00000000000059da l .text 0000000000000000 .LVL261 +0000000000005988 l .text 0000000000000000 .LVL250 +0000000000005a28 l .text 0000000000000000 .LVL271 +00000000000059f6 l .text 0000000000000000 .LVL266 +00000000000059fa l .text 0000000000000000 .LVL267 +0000000000005a12 l .text 0000000000000000 .LVL268 +0000000000005a58 l .text 0000000000000000 .LVL276 +0000000000005a5a l .text 0000000000000000 .LVL277 +0000000000005a82 l .text 0000000000000000 .LVL280 +0000000000005ab4 l .text 0000000000000000 .LVL284 +0000000000005ad4 l .text 0000000000000000 .LVL286 +0000000000005920 l .text 0000000000000000 .LVL243 +0000000000005982 l .text 0000000000000000 .LVL248 +00000000000059a4 l .text 0000000000000000 .LVL255 +0000000000005652 l .text 0000000000000000 .LVL172 +0000000000005690 l .text 0000000000000000 .LVL178 +00000000000056a8 l .text 0000000000000000 .LVL179 +000000000000566c l .text 0000000000000000 .LVL173 +000000000000568c l .text 0000000000000000 .LVL177 +00000000000056f0 l .text 0000000000000000 .LVL185 +0000000000005712 l .text 0000000000000000 .LVL191 +000000000000571e l .text 0000000000000000 .LVL193 +000000000000577a l .text 0000000000000000 .LVL204 +00000000000057b8 l .text 0000000000000000 .LVL211 +0000000000005808 l .text 0000000000000000 .LVL218 +000000000000582c l .text 0000000000000000 .LVL221 +000000000000587a l .text 0000000000000000 .LVL231 +0000000000005896 l .text 0000000000000000 .LVL234 +00000000000058a6 l .text 0000000000000000 .LVL236 +00000000000058c0 l .text 0000000000000000 .LVL238 +0000000000005688 l .text 0000000000000000 .LVL175 +00000000000056fe l .text 0000000000000000 .LVL188 +000000000000570e l .text 0000000000000000 .LVL189 +000000000000578a l .text 0000000000000000 .LVL207 +000000000000575c l .text 0000000000000000 .LVL200 +000000000000576c l .text 0000000000000000 .LVL201 +000000000000577c l .text 0000000000000000 .LVL205 +00000000000057c8 l .text 0000000000000000 .LVL212 +00000000000057e4 l .text 0000000000000000 .LVL215 +00000000000056b6 l .text 0000000000000000 .LVL181 +00000000000056f4 l .text 0000000000000000 .LVL186 +00000000000057da l .text 0000000000000000 .LVL214 +000000000000572a l .text 0000000000000000 .LVL195 +000000000000573a l .text 0000000000000000 .LVL196 +0000000000005844 l .text 0000000000000000 .LVL224 +0000000000005862 l .text 0000000000000000 .LVL229 +000000000000583c l .text 0000000000000000 .LVL223 +000000000000584a l .text 0000000000000000 .LVL226 +000000000000584e l .text 0000000000000000 .LVL227 +0000000000005534 l .text 0000000000000000 .LVL149 +000000000000554e l .text 0000000000000000 .LVL150 +00000000000055d4 l .text 0000000000000000 .LVL160 +00000000000055e2 l .text 0000000000000000 .LVL162 +0000000000005632 l .text 0000000000000000 .LVL169 +0000000000005558 l .text 0000000000000000 .LVL152 +0000000000005556 l .text 0000000000000000 .LVL151 +00000000000055d6 l .text 0000000000000000 .LVL161 +000000000000563c l .text 0000000000000000 .LVL170 +00000000000055f2 l .text 0000000000000000 .LVL164 +000000000000562e l .text 0000000000000000 .LVL168 +00000000000055a2 l .text 0000000000000000 .LVL157 +0000000000005586 l .text 0000000000000000 .LVL154 +00000000000054ac l .text 0000000000000000 .LVL131 +00000000000054d0 l .text 0000000000000000 .LVL132 +00000000000054e2 l .text 0000000000000000 .LVL134 +00000000000054f0 l .text 0000000000000000 .LVL137 +00000000000054e8 l .text 0000000000000000 .LVL136 +0000000000005508 l .text 0000000000000000 .LVL139 +0000000000005510 l .text 0000000000000000 .LVL140 +000000000000551a l .text 0000000000000000 .LVL144 +000000000000551e l .text 0000000000000000 .LVL145 +00000000000054e6 l .text 0000000000000000 .LVL135 +0000000000005516 l .text 0000000000000000 .LVL142 +0000000000005518 l .text 0000000000000000 .LVL143 +00000000000054e0 l .text 0000000000000000 .LVL133 +0000000000005480 l .text 0000000000000000 .LVL124 +000000000000548a l .text 0000000000000000 .LVL125 +00000000000054a6 l .text 0000000000000000 .LVL130 +0000000000005496 l .text 0000000000000000 .LVL127 +00000000000054a0 l .text 0000000000000000 .LVL128 +0000000000005408 l .text 0000000000000000 .LVL109 +0000000000005418 l .text 0000000000000000 .LVL110 +0000000000005476 l .text 0000000000000000 .LVL122 +000000000000543c l .text 0000000000000000 .LVL115 +0000000000005428 l .text 0000000000000000 .LVL112 +0000000000005478 l .text 0000000000000000 .LVL123 +0000000000005430 l .text 0000000000000000 .LVL113 +0000000000005460 l .text 0000000000000000 .LVL120 +0000000000005448 l .text 0000000000000000 .LVL117 +0000000000005452 l .text 0000000000000000 .LVL118 +0000000000004fa0 l .text 0000000000000000 .LVL38 +0000000000004fc8 l .text 0000000000000000 .LVL43 +000000000000502c l .text 0000000000000000 .LVL54 +000000000000503c l .text 0000000000000000 .LVL55 +0000000000004fc6 l .text 0000000000000000 .LVL42 +0000000000005028 l .text 0000000000000000 .LVL53 +0000000000005182 l .text 0000000000000000 .LVL63 +00000000000051a2 l .text 0000000000000000 .LVL67 +000000000000525a l .text 0000000000000000 .LVL70 +000000000000526a l .text 0000000000000000 .LVL72 +0000000000004fc4 l .text 0000000000000000 .LVL41 +0000000000005000 l .text 0000000000000000 .LVL50 +0000000000005192 l .text 0000000000000000 .LVL65 +0000000000004fb6 l .text 0000000000000000 .LVL40 +0000000000004fb0 l .text 0000000000000000 .LVL39 +0000000000005120 l .text 0000000000000000 .LVL60 +0000000000005208 l .text 0000000000000000 .LVL68 +0000000000004ff0 l .text 0000000000000000 .LVL48 +000000000000504a l .text 0000000000000000 .LVL57 +0000000000004fe6 l .text 0000000000000000 .LVL46 +0000000000004f64 l .text 0000000000000000 .LVL31 +0000000000004f98 l .text 0000000000000000 .LVL36 +0000000000004f9c l .text 0000000000000000 .LVL37 +0000000000004f7e l .text 0000000000000000 .LVL33 +0000000000004f94 l .text 0000000000000000 .LVL35 +000000000000527a l .text 0000000000000000 .LVL74 +0000000000005298 l .text 0000000000000000 .LVL76 +0000000000005294 l .text 0000000000000000 .LVL75 +000000000000531c l .text 0000000000000000 .LVL90 +000000000000529e l .text 0000000000000000 .LVL78 +000000000000529a l .text 0000000000000000 .LVL77 +00000000000052ea l .text 0000000000000000 .LVL85 +0000000000005302 l .text 0000000000000000 .LVL86 +000000000000530c l .text 0000000000000000 .LVL88 +00000000000052be l .text 0000000000000000 .LVL81 +00000000000052c8 l .text 0000000000000000 .LVL82 +0000000000005326 l .text 0000000000000000 .LVL91 +0000000000005358 l .text 0000000000000000 .LVL96 +00000000000053fa l .text 0000000000000000 .LVL106 +0000000000005404 l .text 0000000000000000 .LVL108 +0000000000005356 l .text 0000000000000000 .LVL95 +000000000000534c l .text 0000000000000000 .LVL94 +00000000000053b4 l .text 0000000000000000 .LVL102 +0000000000005344 l .text 0000000000000000 .LVL92 +0000000000005400 l .text 0000000000000000 .LVL107 +000000000000534a l .text 0000000000000000 .LVL93 +0000000000016d8a l .debug_info 0000000000000000 .Ldebug_info0 +0000000000004fc0 l .text 0000000000000000 .LBB7 +0000000000005028 l .text 0000000000000000 .LBE7 +000000000000503c l .text 0000000000000000 .LBB11 +0000000000005160 l .text 0000000000000000 .LBE11 +00000000000051a2 l .text 0000000000000000 .LBB12 +000000000000525a l .text 0000000000000000 .LBE12 +0000000000005052 l .text 0000000000000000 .LBB9 +0000000000005116 l .text 0000000000000000 .LBE9 +00000000000051a2 l .text 0000000000000000 .LBB10 +0000000000005208 l .text 0000000000000000 .LBE10 +00000000000052aa l .text 0000000000000000 .LBE16 +00000000000052ac l .text 0000000000000000 .LBB20 +0000000000005316 l .text 0000000000000000 .LBE20 +000000000000580a l .text 0000000000000000 .LBB26 +000000000000584a l .text 0000000000000000 .LBE26 +000000000000584a l .text 0000000000000000 .LBB27 +000000000000588a l .text 0000000000000000 .LBE27 +0000000000005896 l .text 0000000000000000 .LBB28 +00000000000058c4 l .text 0000000000000000 .LBE28 +0000000000005b4a l .text 0000000000000000 .LBB29 +0000000000005bc0 l .text 0000000000000000 .LBE29 +0000000000005be0 l .text 0000000000000000 .LBB30 +0000000000005bf0 l .text 0000000000000000 .LBE30 +000000000000606a l .text 0000000000000000 .LBB31 +000000000000606e l .text 0000000000000000 .LBE31 +00000000000060a8 l .text 0000000000000000 .LBB32 +00000000000060f8 l .text 0000000000000000 .LBE32 +00000000000060fc l .text 0000000000000000 .LBB33 +0000000000006132 l .text 0000000000000000 .LBE33 +00000000000061da l .text 0000000000000000 .LBB34 +000000000000622a l .text 0000000000000000 .LBE34 +000000000000622e l .text 0000000000000000 .LBB37 +0000000000006278 l .text 0000000000000000 .LBE37 +0000000000006284 l .text 0000000000000000 .LBB38 +00000000000062a0 l .text 0000000000000000 .LBE38 +00000000000061ea l .text 0000000000000000 .LBB35 +000000000000622a l .text 0000000000000000 .LBE35 +000000000000622e l .text 0000000000000000 .LBB36 +0000000000006278 l .text 0000000000000000 .LBE36 +000000000000630e l .text 0000000000000000 .LBB39 +000000000000634a l .text 0000000000000000 .LBE39 +000000000000635a l .text 0000000000000000 .LBB40 +0000000000006398 l .text 0000000000000000 .LBE40 +0000000000004e36 l .text 0000000000000000 .L0 +0000000000004f64 l .text 0000000000000000 .L0 +0000000000004fa0 l .text 0000000000000000 .L0 +000000000000527a l .text 0000000000000000 .L0 +0000000000005326 l .text 0000000000000000 .L0 +0000000000005408 l .text 0000000000000000 .L0 +0000000000005480 l .text 0000000000000000 .L0 +00000000000054ac l .text 0000000000000000 .L0 +0000000000005534 l .text 0000000000000000 .L0 +0000000000005652 l .text 0000000000000000 .L0 +00000000000058c4 l .text 0000000000000000 .L0 +0000000000005ade l .text 0000000000000000 .L0 +0000000000005bf0 l .text 0000000000000000 .L0 +0000000000005d74 l .text 0000000000000000 .L0 +0000000000005e30 l .text 0000000000000000 .L0 +0000000000005f02 l .text 0000000000000000 .L0 +0000000000005f78 l .text 0000000000000000 .L0 +0000000000005f88 l .text 0000000000000000 .L0 +000000000000613e l .text 0000000000000000 .L0 +0000000000006300 l .text 0000000000000000 .L0 +0000000000004e36 l .text 0000000000000000 .L0 +0000000000004e36 l .text 0000000000000000 .L0 +0000000000004e36 l .text 0000000000000000 .L0 +0000000000004e36 l .text 0000000000000000 .L0 +0000000000004e36 l .text 0000000000000000 .L0 +0000000000004e36 l .text 0000000000000000 .L0 +0000000000004e36 l .text 0000000000000000 .L0 +0000000000004e38 l .text 0000000000000000 .L0 +0000000000004e3a l .text 0000000000000000 .L0 +0000000000004e4e l .text 0000000000000000 .L0 +0000000000004e50 l .text 0000000000000000 .L0 +0000000000004e5a l .text 0000000000000000 .L0 +0000000000004e5a l .text 0000000000000000 .L0 +0000000000004e5e l .text 0000000000000000 .L0 +0000000000004e5e l .text 0000000000000000 .L0 +0000000000004e62 l .text 0000000000000000 .L0 +0000000000004e64 l .text 0000000000000000 .L0 +0000000000004e6c l .text 0000000000000000 .L0 +0000000000004e6c l .text 0000000000000000 .L0 +0000000000004e74 l .text 0000000000000000 .L0 +0000000000004e78 l .text 0000000000000000 .L0 +0000000000004e78 l .text 0000000000000000 .L0 +0000000000004e82 l .text 0000000000000000 .L0 +0000000000004e82 l .text 0000000000000000 .L0 +0000000000004e84 l .text 0000000000000000 .L0 +0000000000004e86 l .text 0000000000000000 .L0 +0000000000004e86 l .text 0000000000000000 .L0 +0000000000004e92 l .text 0000000000000000 .L0 +0000000000004e92 l .text 0000000000000000 .L0 +0000000000004e94 l .text 0000000000000000 .L0 +0000000000004e9c l .text 0000000000000000 .L0 +0000000000004ea8 l .text 0000000000000000 .L0 +0000000000004ea8 l .text 0000000000000000 .L0 +0000000000004eae l .text 0000000000000000 .L0 +0000000000004eb2 l .text 0000000000000000 .L0 +0000000000004eba l .text 0000000000000000 .L0 +0000000000004ec2 l .text 0000000000000000 .L0 +0000000000004ed2 l .text 0000000000000000 .L0 +0000000000004ed2 l .text 0000000000000000 .L0 +0000000000004edc l .text 0000000000000000 .L0 +0000000000004ede l .text 0000000000000000 .L0 +0000000000004ede l .text 0000000000000000 .L0 +0000000000004eea l .text 0000000000000000 .L0 +0000000000004eea l .text 0000000000000000 .L0 +0000000000004eee l .text 0000000000000000 .L0 +0000000000004eee l .text 0000000000000000 .L0 +0000000000004ef4 l .text 0000000000000000 .L0 +0000000000004ef4 l .text 0000000000000000 .L0 +0000000000004f00 l .text 0000000000000000 .L0 +0000000000004f00 l .text 0000000000000000 .L0 +0000000000004f04 l .text 0000000000000000 .L0 +0000000000004f10 l .text 0000000000000000 .L0 +0000000000004f12 l .text 0000000000000000 .L0 +0000000000004f1e l .text 0000000000000000 .L0 +0000000000004f20 l .text 0000000000000000 .L0 +0000000000004f30 l .text 0000000000000000 .L0 +0000000000004f30 l .text 0000000000000000 .L0 +0000000000004f3c l .text 0000000000000000 .L0 +0000000000004f3c l .text 0000000000000000 .L0 +0000000000004f40 l .text 0000000000000000 .L0 +0000000000004f4a l .text 0000000000000000 .L0 +0000000000004f4a l .text 0000000000000000 .L0 +0000000000004f64 l .text 0000000000000000 .L0 +0000000000004f64 l .text 0000000000000000 .L0 +0000000000004f64 l .text 0000000000000000 .L0 +0000000000004f66 l .text 0000000000000000 .L0 +0000000000004f6e l .text 0000000000000000 .L0 +0000000000004f72 l .text 0000000000000000 .L0 +0000000000004f74 l .text 0000000000000000 .L0 +0000000000004f7c l .text 0000000000000000 .L0 +0000000000004f7e l .text 0000000000000000 .L0 +0000000000004f90 l .text 0000000000000000 .L0 +0000000000004f94 l .text 0000000000000000 .L0 +0000000000004f9c l .text 0000000000000000 .L0 +0000000000004fa0 l .text 0000000000000000 .L0 +0000000000004fa0 l .text 0000000000000000 .L0 +0000000000004fa0 l .text 0000000000000000 .L0 +0000000000004fac l .text 0000000000000000 .L0 +0000000000004fb0 l .text 0000000000000000 .L0 +0000000000004fb0 l .text 0000000000000000 .L0 +0000000000004fb0 l .text 0000000000000000 .L0 +0000000000004fb4 l .text 0000000000000000 .L0 +0000000000004fb6 l .text 0000000000000000 .L0 +0000000000004fbc l .text 0000000000000000 .L0 +0000000000004fc0 l .text 0000000000000000 .L0 +0000000000004fc0 l .text 0000000000000000 .L0 +0000000000004fd0 l .text 0000000000000000 .L0 +0000000000004fd0 l .text 0000000000000000 .L0 +0000000000004fd2 l .text 0000000000000000 .L0 +0000000000004fd2 l .text 0000000000000000 .L0 +0000000000004fe2 l .text 0000000000000000 .L0 +0000000000004fe4 l .text 0000000000000000 .L0 +0000000000004fe6 l .text 0000000000000000 .L0 +0000000000004fe6 l .text 0000000000000000 .L0 +0000000000004ff0 l .text 0000000000000000 .L0 +0000000000004ffa l .text 0000000000000000 .L0 +0000000000004ffa l .text 0000000000000000 .L0 +0000000000004ffe l .text 0000000000000000 .L0 +0000000000005026 l .text 0000000000000000 .L0 +0000000000005026 l .text 0000000000000000 .L0 +0000000000005028 l .text 0000000000000000 .L0 +000000000000503c l .text 0000000000000000 .L0 +000000000000503c l .text 0000000000000000 .L0 +000000000000504c l .text 0000000000000000 .L0 +000000000000504c l .text 0000000000000000 .L0 +0000000000005052 l .text 0000000000000000 .L0 +0000000000005052 l .text 0000000000000000 .L0 +0000000000005066 l .text 0000000000000000 .L0 +0000000000005066 l .text 0000000000000000 .L0 +000000000000506a l .text 0000000000000000 .L0 +000000000000506c l .text 0000000000000000 .L0 +000000000000506e l .text 0000000000000000 .L0 +0000000000005072 l .text 0000000000000000 .L0 +0000000000005072 l .text 0000000000000000 .L0 +0000000000005076 l .text 0000000000000000 .L0 +000000000000507a l .text 0000000000000000 .L0 +000000000000507a l .text 0000000000000000 .L0 +0000000000005080 l .text 0000000000000000 .L0 +0000000000005080 l .text 0000000000000000 .L0 +0000000000005088 l .text 0000000000000000 .L0 +0000000000005088 l .text 0000000000000000 .L0 +000000000000508e l .text 0000000000000000 .L0 +000000000000508e l .text 0000000000000000 .L0 +0000000000005096 l .text 0000000000000000 .L0 +0000000000005096 l .text 0000000000000000 .L0 +00000000000050a2 l .text 0000000000000000 .L0 +00000000000050a6 l .text 0000000000000000 .L0 +00000000000050a6 l .text 0000000000000000 .L0 +00000000000050aa l .text 0000000000000000 .L0 +00000000000050ae l .text 0000000000000000 .L0 +00000000000050ae l .text 0000000000000000 .L0 +00000000000050b4 l .text 0000000000000000 .L0 +00000000000050b4 l .text 0000000000000000 .L0 +00000000000050bc l .text 0000000000000000 .L0 +00000000000050bc l .text 0000000000000000 .L0 +00000000000050c2 l .text 0000000000000000 .L0 +00000000000050c2 l .text 0000000000000000 .L0 +00000000000050ca l .text 0000000000000000 .L0 +00000000000050ca l .text 0000000000000000 .L0 +00000000000050ce l .text 0000000000000000 .L0 +00000000000050d6 l .text 0000000000000000 .L0 +00000000000050d6 l .text 0000000000000000 .L0 +00000000000050da l .text 0000000000000000 .L0 +00000000000050de l .text 0000000000000000 .L0 +00000000000050de l .text 0000000000000000 .L0 +00000000000050e4 l .text 0000000000000000 .L0 +00000000000050e4 l .text 0000000000000000 .L0 +00000000000050ec l .text 0000000000000000 .L0 +00000000000050ec l .text 0000000000000000 .L0 +00000000000050f2 l .text 0000000000000000 .L0 +00000000000050f2 l .text 0000000000000000 .L0 +00000000000050fa l .text 0000000000000000 .L0 +00000000000050fa l .text 0000000000000000 .L0 +00000000000050fe l .text 0000000000000000 .L0 +00000000000050fe l .text 0000000000000000 .L0 +0000000000005106 l .text 0000000000000000 .L0 +0000000000005116 l .text 0000000000000000 .L0 +0000000000005116 l .text 0000000000000000 .L0 +000000000000511c l .text 0000000000000000 .L0 +0000000000005120 l .text 0000000000000000 .L0 +0000000000005122 l .text 0000000000000000 .L0 +0000000000005122 l .text 0000000000000000 .L0 +0000000000005124 l .text 0000000000000000 .L0 +0000000000005128 l .text 0000000000000000 .L0 +000000000000512c l .text 0000000000000000 .L0 +0000000000005130 l .text 0000000000000000 .L0 +0000000000005134 l .text 0000000000000000 .L0 +0000000000005134 l .text 0000000000000000 .L0 +0000000000005138 l .text 0000000000000000 .L0 +000000000000513c l .text 0000000000000000 .L0 +0000000000005140 l .text 0000000000000000 .L0 +000000000000515c l .text 0000000000000000 .L0 +0000000000005160 l .text 0000000000000000 .L0 +0000000000005160 l .text 0000000000000000 .L0 +0000000000005162 l .text 0000000000000000 .L0 +0000000000005166 l .text 0000000000000000 .L0 +0000000000005178 l .text 0000000000000000 .L0 +0000000000005178 l .text 0000000000000000 .L0 +0000000000005186 l .text 0000000000000000 .L0 +0000000000005192 l .text 0000000000000000 .L0 +0000000000005194 l .text 0000000000000000 .L0 +00000000000051a2 l .text 0000000000000000 .L0 +00000000000051a2 l .text 0000000000000000 .L0 +00000000000051a8 l .text 0000000000000000 .L0 +00000000000051a8 l .text 0000000000000000 .L0 +00000000000051ae l .text 0000000000000000 .L0 +00000000000051ae l .text 0000000000000000 .L0 +00000000000051b4 l .text 0000000000000000 .L0 +00000000000051b4 l .text 0000000000000000 .L0 +00000000000051ba l .text 0000000000000000 .L0 +00000000000051ba l .text 0000000000000000 .L0 +00000000000051c0 l .text 0000000000000000 .L0 +00000000000051c0 l .text 0000000000000000 .L0 +00000000000051c6 l .text 0000000000000000 .L0 +00000000000051c6 l .text 0000000000000000 .L0 +00000000000051cc l .text 0000000000000000 .L0 +00000000000051cc l .text 0000000000000000 .L0 +00000000000051d2 l .text 0000000000000000 .L0 +00000000000051d2 l .text 0000000000000000 .L0 +00000000000051d6 l .text 0000000000000000 .L0 +00000000000051da l .text 0000000000000000 .L0 +00000000000051da l .text 0000000000000000 .L0 +00000000000051e0 l .text 0000000000000000 .L0 +00000000000051e0 l .text 0000000000000000 .L0 +00000000000051e8 l .text 0000000000000000 .L0 +00000000000051e8 l .text 0000000000000000 .L0 +00000000000051ee l .text 0000000000000000 .L0 +00000000000051ee l .text 0000000000000000 .L0 +00000000000051f4 l .text 0000000000000000 .L0 +00000000000051f4 l .text 0000000000000000 .L0 +00000000000051fa l .text 0000000000000000 .L0 +00000000000051fa l .text 0000000000000000 .L0 +0000000000005202 l .text 0000000000000000 .L0 +0000000000005202 l .text 0000000000000000 .L0 +0000000000005208 l .text 0000000000000000 .L0 +0000000000005208 l .text 0000000000000000 .L0 +0000000000005210 l .text 0000000000000000 .L0 +000000000000522e l .text 0000000000000000 .L0 +000000000000524c l .text 0000000000000000 .L0 +000000000000525a l .text 0000000000000000 .L0 +0000000000005266 l .text 0000000000000000 .L0 +000000000000526a l .text 0000000000000000 .L0 +000000000000527a l .text 0000000000000000 .L0 +000000000000527a l .text 0000000000000000 .L0 +000000000000527a l .text 0000000000000000 .L0 +000000000000527a l .text 0000000000000000 .L0 +0000000000005286 l .text 0000000000000000 .L0 +000000000000528c l .text 0000000000000000 .L0 +000000000000528e l .text 0000000000000000 .L0 +0000000000005292 l .text 0000000000000000 .L0 +0000000000005296 l .text 0000000000000000 .L0 +00000000000052a6 l .text 0000000000000000 .L0 +00000000000052aa l .text 0000000000000000 .L0 +00000000000052ac l .text 0000000000000000 .L0 +00000000000052ae l .text 0000000000000000 .L0 +00000000000052ae l .text 0000000000000000 .L0 +00000000000052ae l .text 0000000000000000 .L0 +00000000000052b8 l .text 0000000000000000 .L0 +00000000000052bc l .text 0000000000000000 .L0 +00000000000052be l .text 0000000000000000 .L0 +00000000000052ca l .text 0000000000000000 .L0 +00000000000052ca l .text 0000000000000000 .L0 +00000000000052ea l .text 0000000000000000 .L0 +00000000000052ea l .text 0000000000000000 .L0 +00000000000052ec l .text 0000000000000000 .L0 +00000000000052ec l .text 0000000000000000 .L0 +000000000000530c l .text 0000000000000000 .L0 +0000000000005316 l .text 0000000000000000 .L0 +0000000000005316 l .text 0000000000000000 .L0 +0000000000005326 l .text 0000000000000000 .L0 +0000000000005326 l .text 0000000000000000 .L0 +0000000000005326 l .text 0000000000000000 .L0 +0000000000005326 l .text 0000000000000000 .L0 +0000000000005326 l .text 0000000000000000 .L0 +0000000000005326 l .text 0000000000000000 .L0 +0000000000005326 l .text 0000000000000000 .L0 +0000000000005330 l .text 0000000000000000 .L0 +0000000000005342 l .text 0000000000000000 .L0 +0000000000005344 l .text 0000000000000000 .L0 +0000000000005344 l .text 0000000000000000 .L0 +0000000000005348 l .text 0000000000000000 .L0 +000000000000534a l .text 0000000000000000 .L0 +000000000000534a l .text 0000000000000000 .L0 +0000000000005360 l .text 0000000000000000 .L0 +0000000000005360 l .text 0000000000000000 .L0 +0000000000005364 l .text 0000000000000000 .L0 +000000000000538e l .text 0000000000000000 .L0 +000000000000539e l .text 0000000000000000 .L0 +000000000000539e l .text 0000000000000000 .L0 +00000000000053b4 l .text 0000000000000000 .L0 +00000000000053b4 l .text 0000000000000000 .L0 +00000000000053b8 l .text 0000000000000000 .L0 +00000000000053e2 l .text 0000000000000000 .L0 +00000000000053ec l .text 0000000000000000 .L0 +00000000000053ec l .text 0000000000000000 .L0 +00000000000053fa l .text 0000000000000000 .L0 +00000000000053fa l .text 0000000000000000 .L0 +0000000000005404 l .text 0000000000000000 .L0 +0000000000005408 l .text 0000000000000000 .L0 +0000000000005408 l .text 0000000000000000 .L0 +0000000000005408 l .text 0000000000000000 .L0 +0000000000005408 l .text 0000000000000000 .L0 +0000000000005414 l .text 0000000000000000 .L0 +0000000000005416 l .text 0000000000000000 .L0 +0000000000005418 l .text 0000000000000000 .L0 +000000000000541c l .text 0000000000000000 .L0 +0000000000005424 l .text 0000000000000000 .L0 +0000000000005426 l .text 0000000000000000 .L0 +0000000000005428 l .text 0000000000000000 .L0 +0000000000005428 l .text 0000000000000000 .L0 +000000000000542c l .text 0000000000000000 .L0 +000000000000542c l .text 0000000000000000 .L0 +0000000000005430 l .text 0000000000000000 .L0 +0000000000005430 l .text 0000000000000000 .L0 +0000000000005430 l .text 0000000000000000 .L0 +0000000000005430 l .text 0000000000000000 .L0 +0000000000005438 l .text 0000000000000000 .L0 +000000000000543c l .text 0000000000000000 .L0 +000000000000543c l .text 0000000000000000 .L0 +0000000000005446 l .text 0000000000000000 .L0 +0000000000005446 l .text 0000000000000000 .L0 +0000000000005448 l .text 0000000000000000 .L0 +0000000000005448 l .text 0000000000000000 .L0 +000000000000544c l .text 0000000000000000 .L0 +000000000000544e l .text 0000000000000000 .L0 +000000000000545a l .text 0000000000000000 .L0 +000000000000545c l .text 0000000000000000 .L0 +000000000000545c l .text 0000000000000000 .L0 +0000000000005460 l .text 0000000000000000 .L0 +0000000000005470 l .text 0000000000000000 .L0 +0000000000005470 l .text 0000000000000000 .L0 +0000000000005480 l .text 0000000000000000 .L0 +0000000000005480 l .text 0000000000000000 .L0 +0000000000005480 l .text 0000000000000000 .L0 +0000000000005480 l .text 0000000000000000 .L0 +0000000000005480 l .text 0000000000000000 .L0 +0000000000005486 l .text 0000000000000000 .L0 +0000000000005488 l .text 0000000000000000 .L0 +0000000000005492 l .text 0000000000000000 .L0 +0000000000005494 l .text 0000000000000000 .L0 +0000000000005496 l .text 0000000000000000 .L0 +00000000000054a2 l .text 0000000000000000 .L0 +00000000000054a2 l .text 0000000000000000 .L0 +00000000000054ac l .text 0000000000000000 .L0 +00000000000054ac l .text 0000000000000000 .L0 +00000000000054ac l .text 0000000000000000 .L0 +00000000000054ac l .text 0000000000000000 .L0 +00000000000054ac l .text 0000000000000000 .L0 +00000000000054ac l .text 0000000000000000 .L0 +00000000000054be l .text 0000000000000000 .L0 +00000000000054c4 l .text 0000000000000000 .L0 +00000000000054c6 l .text 0000000000000000 .L0 +00000000000054c8 l .text 0000000000000000 .L0 +00000000000054d0 l .text 0000000000000000 .L0 +00000000000054d0 l .text 0000000000000000 .L0 +00000000000054d8 l .text 0000000000000000 .L0 +00000000000054da l .text 0000000000000000 .L0 +00000000000054f0 l .text 0000000000000000 .L0 +00000000000054f0 l .text 0000000000000000 .L0 +0000000000005508 l .text 0000000000000000 .L0 +0000000000005508 l .text 0000000000000000 .L0 +000000000000550a l .text 0000000000000000 .L0 +0000000000005514 l .text 0000000000000000 .L0 +0000000000005514 l .text 0000000000000000 .L0 +0000000000005516 l .text 0000000000000000 .L0 +000000000000551a l .text 0000000000000000 .L0 +000000000000551a l .text 0000000000000000 .L0 +0000000000005528 l .text 0000000000000000 .L0 +0000000000005534 l .text 0000000000000000 .L0 +0000000000005534 l .text 0000000000000000 .L0 +0000000000005534 l .text 0000000000000000 .L0 +0000000000005534 l .text 0000000000000000 .L0 +0000000000005534 l .text 0000000000000000 .L0 +0000000000005534 l .text 0000000000000000 .L0 +0000000000005542 l .text 0000000000000000 .L0 +0000000000005544 l .text 0000000000000000 .L0 +0000000000005548 l .text 0000000000000000 .L0 +000000000000554e l .text 0000000000000000 .L0 +0000000000005560 l .text 0000000000000000 .L0 +0000000000005566 l .text 0000000000000000 .L0 +0000000000005578 l .text 0000000000000000 .L0 +0000000000005578 l .text 0000000000000000 .L0 +000000000000558e l .text 0000000000000000 .L0 +000000000000558e l .text 0000000000000000 .L0 +00000000000055a2 l .text 0000000000000000 .L0 +00000000000055a2 l .text 0000000000000000 .L0 +00000000000055a6 l .text 0000000000000000 .L0 +00000000000055d0 l .text 0000000000000000 .L0 +00000000000055d0 l .text 0000000000000000 .L0 +00000000000055e2 l .text 0000000000000000 .L0 +00000000000055e2 l .text 0000000000000000 .L0 +00000000000055f2 l .text 0000000000000000 .L0 +00000000000055f2 l .text 0000000000000000 .L0 +00000000000055f6 l .text 0000000000000000 .L0 +0000000000005620 l .text 0000000000000000 .L0 +000000000000562a l .text 0000000000000000 .L0 +000000000000562a l .text 0000000000000000 .L0 +000000000000562c l .text 0000000000000000 .L0 +000000000000562e l .text 0000000000000000 .L0 +000000000000562e l .text 0000000000000000 .L0 +0000000000005630 l .text 0000000000000000 .L0 +0000000000005632 l .text 0000000000000000 .L0 +0000000000005636 l .text 0000000000000000 .L0 +0000000000005640 l .text 0000000000000000 .L0 +0000000000005648 l .text 0000000000000000 .L0 +000000000000564a l .text 0000000000000000 .L0 +0000000000005652 l .text 0000000000000000 .L0 +0000000000005652 l .text 0000000000000000 .L0 +0000000000005652 l .text 0000000000000000 .L0 +0000000000005652 l .text 0000000000000000 .L0 +0000000000005652 l .text 0000000000000000 .L0 +0000000000005652 l .text 0000000000000000 .L0 +0000000000005652 l .text 0000000000000000 .L0 +0000000000005652 l .text 0000000000000000 .L0 +0000000000005652 l .text 0000000000000000 .L0 +0000000000005652 l .text 0000000000000000 .L0 +0000000000005652 l .text 0000000000000000 .L0 +0000000000005652 l .text 0000000000000000 .L0 +000000000000566a l .text 0000000000000000 .L0 +000000000000566c l .text 0000000000000000 .L0 +0000000000005670 l .text 0000000000000000 .L0 +0000000000005678 l .text 0000000000000000 .L0 +0000000000005678 l .text 0000000000000000 .L0 +000000000000567a l .text 0000000000000000 .L0 +000000000000568a l .text 0000000000000000 .L0 +000000000000568a l .text 0000000000000000 .L0 +000000000000568c l .text 0000000000000000 .L0 +00000000000056a8 l .text 0000000000000000 .L0 +00000000000056ac l .text 0000000000000000 .L0 +00000000000056ac l .text 0000000000000000 .L0 +00000000000056b6 l .text 0000000000000000 .L0 +00000000000056b6 l .text 0000000000000000 .L0 +00000000000056ba l .text 0000000000000000 .L0 +00000000000056c0 l .text 0000000000000000 .L0 +00000000000056c2 l .text 0000000000000000 .L0 +00000000000056e4 l .text 0000000000000000 .L0 +00000000000056e4 l .text 0000000000000000 .L0 +00000000000056e4 l .text 0000000000000000 .L0 +00000000000056ee l .text 0000000000000000 .L0 +00000000000056ee l .text 0000000000000000 .L0 +00000000000056f0 l .text 0000000000000000 .L0 +00000000000056f0 l .text 0000000000000000 .L0 +00000000000056fe l .text 0000000000000000 .L0 +00000000000056fe l .text 0000000000000000 .L0 +0000000000005700 l .text 0000000000000000 .L0 +0000000000005710 l .text 0000000000000000 .L0 +0000000000005710 l .text 0000000000000000 .L0 +0000000000005712 l .text 0000000000000000 .L0 +000000000000571e l .text 0000000000000000 .L0 +000000000000571e l .text 0000000000000000 .L0 +000000000000572a l .text 0000000000000000 .L0 +000000000000572a l .text 0000000000000000 .L0 +000000000000572c l .text 0000000000000000 .L0 +000000000000572c l .text 0000000000000000 .L0 +0000000000005732 l .text 0000000000000000 .L0 +0000000000005738 l .text 0000000000000000 .L0 +0000000000005742 l .text 0000000000000000 .L0 +0000000000005742 l .text 0000000000000000 .L0 +000000000000574e l .text 0000000000000000 .L0 +000000000000575c l .text 0000000000000000 .L0 +000000000000575c l .text 0000000000000000 .L0 +000000000000575e l .text 0000000000000000 .L0 +000000000000576e l .text 0000000000000000 .L0 +000000000000576e l .text 0000000000000000 .L0 +000000000000576e l .text 0000000000000000 .L0 +000000000000577a l .text 0000000000000000 .L0 +0000000000005784 l .text 0000000000000000 .L0 +0000000000005786 l .text 0000000000000000 .L0 +000000000000578a l .text 0000000000000000 .L0 +000000000000578a l .text 0000000000000000 .L0 +0000000000005796 l .text 0000000000000000 .L0 +0000000000005798 l .text 0000000000000000 .L0 +00000000000057a8 l .text 0000000000000000 .L0 +00000000000057a8 l .text 0000000000000000 .L0 +00000000000057a8 l .text 0000000000000000 .L0 +00000000000057ac l .text 0000000000000000 .L0 +00000000000057b6 l .text 0000000000000000 .L0 +00000000000057b8 l .text 0000000000000000 .L0 +00000000000057b8 l .text 0000000000000000 .L0 +00000000000057ba l .text 0000000000000000 .L0 +00000000000057bc l .text 0000000000000000 .L0 +00000000000057c0 l .text 0000000000000000 .L0 +00000000000057c4 l .text 0000000000000000 .L0 +00000000000057c8 l .text 0000000000000000 .L0 +00000000000057c8 l .text 0000000000000000 .L0 +00000000000057da l .text 0000000000000000 .L0 +00000000000057da l .text 0000000000000000 .L0 +00000000000057de l .text 0000000000000000 .L0 +0000000000005806 l .text 0000000000000000 .L0 +000000000000580a l .text 0000000000000000 .L0 +000000000000581c l .text 0000000000000000 .L0 +000000000000582c l .text 0000000000000000 .L0 +000000000000582c l .text 0000000000000000 .L0 +000000000000582c l .text 0000000000000000 .L0 +000000000000583a l .text 0000000000000000 .L0 +000000000000583c l .text 0000000000000000 .L0 +000000000000583c l .text 0000000000000000 .L0 +0000000000005840 l .text 0000000000000000 .L0 +0000000000005840 l .text 0000000000000000 .L0 +0000000000005844 l .text 0000000000000000 .L0 +0000000000005844 l .text 0000000000000000 .L0 +0000000000005846 l .text 0000000000000000 .L0 +0000000000005846 l .text 0000000000000000 .L0 +000000000000584a l .text 0000000000000000 .L0 +000000000000584a l .text 0000000000000000 .L0 +000000000000584a l .text 0000000000000000 .L0 +000000000000584a l .text 0000000000000000 .L0 +000000000000584a l .text 0000000000000000 .L0 +000000000000584e l .text 0000000000000000 .L0 +000000000000584e l .text 0000000000000000 .L0 +000000000000584e l .text 0000000000000000 .L0 +000000000000585e l .text 0000000000000000 .L0 +0000000000005862 l .text 0000000000000000 .L0 +0000000000005862 l .text 0000000000000000 .L0 +0000000000005866 l .text 0000000000000000 .L0 +0000000000005866 l .text 0000000000000000 .L0 +000000000000586a l .text 0000000000000000 .L0 +000000000000586a l .text 0000000000000000 .L0 +0000000000005872 l .text 0000000000000000 .L0 +000000000000587e l .text 0000000000000000 .L0 +000000000000588a l .text 0000000000000000 .L0 +0000000000005896 l .text 0000000000000000 .L0 +0000000000005896 l .text 0000000000000000 .L0 +000000000000589e l .text 0000000000000000 .L0 +00000000000058ac l .text 0000000000000000 .L0 +00000000000058c0 l .text 0000000000000000 .L0 +00000000000058c4 l .text 0000000000000000 .L0 +00000000000058c4 l .text 0000000000000000 .L0 +00000000000058c4 l .text 0000000000000000 .L0 +00000000000058c4 l .text 0000000000000000 .L0 +00000000000058c4 l .text 0000000000000000 .L0 +00000000000058c4 l .text 0000000000000000 .L0 +00000000000058c4 l .text 0000000000000000 .L0 +00000000000058c4 l .text 0000000000000000 .L0 +00000000000058c4 l .text 0000000000000000 .L0 +00000000000058c4 l .text 0000000000000000 .L0 +00000000000058c4 l .text 0000000000000000 .L0 +00000000000058e0 l .text 0000000000000000 .L0 +00000000000058e6 l .text 0000000000000000 .L0 +00000000000058e8 l .text 0000000000000000 .L0 +00000000000058ea l .text 0000000000000000 .L0 +00000000000058f2 l .text 0000000000000000 .L0 +00000000000058f4 l .text 0000000000000000 .L0 +00000000000058f8 l .text 0000000000000000 .L0 +0000000000005900 l .text 0000000000000000 .L0 +000000000000590c l .text 0000000000000000 .L0 +0000000000005914 l .text 0000000000000000 .L0 +0000000000005914 l .text 0000000000000000 .L0 +000000000000591c l .text 0000000000000000 .L0 +000000000000591e l .text 0000000000000000 .L0 +0000000000005920 l .text 0000000000000000 .L0 +0000000000005924 l .text 0000000000000000 .L0 +0000000000005924 l .text 0000000000000000 .L0 +0000000000005926 l .text 0000000000000000 .L0 +0000000000005926 l .text 0000000000000000 .L0 +000000000000592e l .text 0000000000000000 .L0 +0000000000005930 l .text 0000000000000000 .L0 +0000000000005936 l .text 0000000000000000 .L0 +0000000000005944 l .text 0000000000000000 .L0 +0000000000005948 l .text 0000000000000000 .L0 +0000000000005948 l .text 0000000000000000 .L0 +0000000000005968 l .text 0000000000000000 .L0 +0000000000005978 l .text 0000000000000000 .L0 +0000000000005984 l .text 0000000000000000 .L0 +0000000000005984 l .text 0000000000000000 .L0 +0000000000005984 l .text 0000000000000000 .L0 +0000000000005986 l .text 0000000000000000 .L0 +0000000000005988 l .text 0000000000000000 .L0 +000000000000598c l .text 0000000000000000 .L0 +000000000000598c l .text 0000000000000000 .L0 +0000000000005990 l .text 0000000000000000 .L0 +0000000000005992 l .text 0000000000000000 .L0 +0000000000005992 l .text 0000000000000000 .L0 +0000000000005996 l .text 0000000000000000 .L0 +0000000000005998 l .text 0000000000000000 .L0 +0000000000005998 l .text 0000000000000000 .L0 +000000000000599c l .text 0000000000000000 .L0 +000000000000599e l .text 0000000000000000 .L0 +000000000000599e l .text 0000000000000000 .L0 +00000000000059a2 l .text 0000000000000000 .L0 +00000000000059a4 l .text 0000000000000000 .L0 +00000000000059a4 l .text 0000000000000000 .L0 +00000000000059ac l .text 0000000000000000 .L0 +00000000000059b2 l .text 0000000000000000 .L0 +00000000000059b2 l .text 0000000000000000 .L0 +00000000000059bc l .text 0000000000000000 .L0 +00000000000059bc l .text 0000000000000000 .L0 +00000000000059c8 l .text 0000000000000000 .L0 +00000000000059c8 l .text 0000000000000000 .L0 +00000000000059ca l .text 0000000000000000 .L0 +00000000000059da l .text 0000000000000000 .L0 +00000000000059da l .text 0000000000000000 .L0 +00000000000059e4 l .text 0000000000000000 .L0 +00000000000059ec l .text 0000000000000000 .L0 +00000000000059ec l .text 0000000000000000 .L0 +00000000000059f4 l .text 0000000000000000 .L0 +00000000000059f6 l .text 0000000000000000 .L0 +00000000000059fa l .text 0000000000000000 .L0 +0000000000005a06 l .text 0000000000000000 .L0 +0000000000005a0e l .text 0000000000000000 .L0 +0000000000005a0e l .text 0000000000000000 .L0 +0000000000005a1a l .text 0000000000000000 .L0 +0000000000005a1e l .text 0000000000000000 .L0 +0000000000005a48 l .text 0000000000000000 .L0 +0000000000005a48 l .text 0000000000000000 .L0 +0000000000005a52 l .text 0000000000000000 .L0 +0000000000005a52 l .text 0000000000000000 .L0 +0000000000005a54 l .text 0000000000000000 .L0 +0000000000005a54 l .text 0000000000000000 .L0 +0000000000005a58 l .text 0000000000000000 .L0 +0000000000005a5c l .text 0000000000000000 .L0 +0000000000005a5c l .text 0000000000000000 .L0 +0000000000005a60 l .text 0000000000000000 .L0 +0000000000005a64 l .text 0000000000000000 .L0 +0000000000005a68 l .text 0000000000000000 .L0 +0000000000005a6c l .text 0000000000000000 .L0 +0000000000005a70 l .text 0000000000000000 .L0 +0000000000005a70 l .text 0000000000000000 .L0 +0000000000005a80 l .text 0000000000000000 .L0 +0000000000005a84 l .text 0000000000000000 .L0 +0000000000005a94 l .text 0000000000000000 .L0 +0000000000005a94 l .text 0000000000000000 .L0 +0000000000005ab4 l .text 0000000000000000 .L0 +0000000000005ab4 l .text 0000000000000000 .L0 +0000000000005ab6 l .text 0000000000000000 .L0 +0000000000005abe l .text 0000000000000000 .L0 +0000000000005abe l .text 0000000000000000 .L0 +0000000000005ade l .text 0000000000000000 .L0 +0000000000005ade l .text 0000000000000000 .L0 +0000000000005ade l .text 0000000000000000 .L0 +0000000000005ade l .text 0000000000000000 .L0 +0000000000005ade l .text 0000000000000000 .L0 +0000000000005ade l .text 0000000000000000 .L0 +0000000000005ade l .text 0000000000000000 .L0 +0000000000005af2 l .text 0000000000000000 .L0 +0000000000005af8 l .text 0000000000000000 .L0 +0000000000005afa l .text 0000000000000000 .L0 +0000000000005b02 l .text 0000000000000000 .L0 +0000000000005b04 l .text 0000000000000000 .L0 +0000000000005b08 l .text 0000000000000000 .L0 +0000000000005b08 l .text 0000000000000000 .L0 +0000000000005b1a l .text 0000000000000000 .L0 +0000000000005b1e l .text 0000000000000000 .L0 +0000000000005b1e l .text 0000000000000000 .L0 +0000000000005b26 l .text 0000000000000000 .L0 +0000000000005b2c l .text 0000000000000000 .L0 +0000000000005b2c l .text 0000000000000000 .L0 +0000000000005b36 l .text 0000000000000000 .L0 +0000000000005b48 l .text 0000000000000000 .L0 +0000000000005b48 l .text 0000000000000000 .L0 +0000000000005b4a l .text 0000000000000000 .L0 +0000000000005b4a l .text 0000000000000000 .L0 +0000000000005b56 l .text 0000000000000000 .L0 +0000000000005b58 l .text 0000000000000000 .L0 +0000000000005b58 l .text 0000000000000000 .L0 +0000000000005b58 l .text 0000000000000000 .L0 +0000000000005b66 l .text 0000000000000000 .L0 +0000000000005b66 l .text 0000000000000000 .L0 +0000000000005b68 l .text 0000000000000000 .L0 +0000000000005b68 l .text 0000000000000000 .L0 +0000000000005b6c l .text 0000000000000000 .L0 +0000000000005b6c l .text 0000000000000000 .L0 +0000000000005b7c l .text 0000000000000000 .L0 +0000000000005b7c l .text 0000000000000000 .L0 +0000000000005b80 l .text 0000000000000000 .L0 +0000000000005b88 l .text 0000000000000000 .L0 +0000000000005b8e l .text 0000000000000000 .L0 +0000000000005b92 l .text 0000000000000000 .L0 +0000000000005bb6 l .text 0000000000000000 .L0 +0000000000005bb6 l .text 0000000000000000 .L0 +0000000000005bc0 l .text 0000000000000000 .L0 +0000000000005bc0 l .text 0000000000000000 .L0 +0000000000005bd8 l .text 0000000000000000 .L0 +0000000000005bdc l .text 0000000000000000 .L0 +0000000000005be0 l .text 0000000000000000 .L0 +0000000000005be0 l .text 0000000000000000 .L0 +0000000000005be2 l .text 0000000000000000 .L0 +0000000000005be2 l .text 0000000000000000 .L0 +0000000000005be6 l .text 0000000000000000 .L0 +0000000000005bea l .text 0000000000000000 .L0 +0000000000005bee l .text 0000000000000000 .L0 +0000000000005bee l .text 0000000000000000 .L0 +0000000000005bf0 l .text 0000000000000000 .L0 +0000000000005bf0 l .text 0000000000000000 .L0 +0000000000005bf0 l .text 0000000000000000 .L0 +0000000000005bf0 l .text 0000000000000000 .L0 +0000000000005bf0 l .text 0000000000000000 .L0 +0000000000005bf0 l .text 0000000000000000 .L0 +0000000000005bf0 l .text 0000000000000000 .L0 +0000000000005bf0 l .text 0000000000000000 .L0 +0000000000005bf0 l .text 0000000000000000 .L0 +0000000000005bf0 l .text 0000000000000000 .L0 +0000000000005bf0 l .text 0000000000000000 .L0 +0000000000005c0c l .text 0000000000000000 .L0 +0000000000005c12 l .text 0000000000000000 .L0 +0000000000005c14 l .text 0000000000000000 .L0 +0000000000005c18 l .text 0000000000000000 .L0 +0000000000005c1a l .text 0000000000000000 .L0 +0000000000005c1e l .text 0000000000000000 .L0 +0000000000005c22 l .text 0000000000000000 .L0 +0000000000005c2a l .text 0000000000000000 .L0 +0000000000005c2e l .text 0000000000000000 .L0 +0000000000005c30 l .text 0000000000000000 .L0 +0000000000005c30 l .text 0000000000000000 .L0 +0000000000005c44 l .text 0000000000000000 .L0 +0000000000005c46 l .text 0000000000000000 .L0 +0000000000005c48 l .text 0000000000000000 .L0 +0000000000005c4c l .text 0000000000000000 .L0 +0000000000005c4c l .text 0000000000000000 .L0 +0000000000005c50 l .text 0000000000000000 .L0 +0000000000005c50 l .text 0000000000000000 .L0 +0000000000005c58 l .text 0000000000000000 .L0 +0000000000005c62 l .text 0000000000000000 .L0 +0000000000005c62 l .text 0000000000000000 .L0 +0000000000005c6c l .text 0000000000000000 .L0 +0000000000005c7a l .text 0000000000000000 .L0 +0000000000005c7a l .text 0000000000000000 .L0 +0000000000005c7c l .text 0000000000000000 .L0 +0000000000005c7e l .text 0000000000000000 .L0 +0000000000005c80 l .text 0000000000000000 .L0 +0000000000005c86 l .text 0000000000000000 .L0 +0000000000005c8a l .text 0000000000000000 .L0 +0000000000005c8a l .text 0000000000000000 .L0 +0000000000005c8a l .text 0000000000000000 .L0 +0000000000005c8e l .text 0000000000000000 .L0 +0000000000005c8e l .text 0000000000000000 .L0 +0000000000005c92 l .text 0000000000000000 .L0 +0000000000005c92 l .text 0000000000000000 .L0 +0000000000005c9a l .text 0000000000000000 .L0 +0000000000005c9a l .text 0000000000000000 .L0 +0000000000005ca0 l .text 0000000000000000 .L0 +0000000000005cc0 l .text 0000000000000000 .L0 +0000000000005cd0 l .text 0000000000000000 .L0 +0000000000005cd8 l .text 0000000000000000 .L0 +0000000000005cdc l .text 0000000000000000 .L0 +0000000000005ce6 l .text 0000000000000000 .L0 +0000000000005ce6 l .text 0000000000000000 .L0 +0000000000005cee l .text 0000000000000000 .L0 +0000000000005cf8 l .text 0000000000000000 .L0 +0000000000005cfc l .text 0000000000000000 .L0 +0000000000005cfe l .text 0000000000000000 .L0 +0000000000005cfe l .text 0000000000000000 .L0 +0000000000005d02 l .text 0000000000000000 .L0 +0000000000005d08 l .text 0000000000000000 .L0 +0000000000005d0c l .text 0000000000000000 .L0 +0000000000005d0c l .text 0000000000000000 .L0 +0000000000005d0c l .text 0000000000000000 .L0 +0000000000005d0e l .text 0000000000000000 .L0 +0000000000005d10 l .text 0000000000000000 .L0 +0000000000005d10 l .text 0000000000000000 .L0 +0000000000005d18 l .text 0000000000000000 .L0 +0000000000005d22 l .text 0000000000000000 .L0 +0000000000005d26 l .text 0000000000000000 .L0 +0000000000005d28 l .text 0000000000000000 .L0 +0000000000005d28 l .text 0000000000000000 .L0 +0000000000005d2e l .text 0000000000000000 .L0 +0000000000005d2e l .text 0000000000000000 .L0 +0000000000005d36 l .text 0000000000000000 .L0 +0000000000005d38 l .text 0000000000000000 .L0 +0000000000005d40 l .text 0000000000000000 .L0 +0000000000005d44 l .text 0000000000000000 .L0 +0000000000005d4c l .text 0000000000000000 .L0 +0000000000005d54 l .text 0000000000000000 .L0 +0000000000005d54 l .text 0000000000000000 .L0 +0000000000005d56 l .text 0000000000000000 .L0 +0000000000005d72 l .text 0000000000000000 .L0 +0000000000005d72 l .text 0000000000000000 .L0 +0000000000005d74 l .text 0000000000000000 .L0 +0000000000005d74 l .text 0000000000000000 .L0 +0000000000005d74 l .text 0000000000000000 .L0 +0000000000005d74 l .text 0000000000000000 .L0 +0000000000005d74 l .text 0000000000000000 .L0 +0000000000005d74 l .text 0000000000000000 .L0 +0000000000005d74 l .text 0000000000000000 .L0 +0000000000005d84 l .text 0000000000000000 .L0 +0000000000005d86 l .text 0000000000000000 .L0 +0000000000005d8a l .text 0000000000000000 .L0 +0000000000005d92 l .text 0000000000000000 .L0 +0000000000005d92 l .text 0000000000000000 .L0 +0000000000005d94 l .text 0000000000000000 .L0 +0000000000005da4 l .text 0000000000000000 .L0 +0000000000005da4 l .text 0000000000000000 .L0 +0000000000005da6 l .text 0000000000000000 .L0 +0000000000005dba l .text 0000000000000000 .L0 +0000000000005dbe l .text 0000000000000000 .L0 +0000000000005dbe l .text 0000000000000000 .L0 +0000000000005dca l .text 0000000000000000 .L0 +0000000000005dca l .text 0000000000000000 .L0 +0000000000005dcc l .text 0000000000000000 .L0 +0000000000005ddc l .text 0000000000000000 .L0 +0000000000005ddc l .text 0000000000000000 .L0 +0000000000005ddc l .text 0000000000000000 .L0 +0000000000005dde l .text 0000000000000000 .L0 +0000000000005de8 l .text 0000000000000000 .L0 +0000000000005de8 l .text 0000000000000000 .L0 +0000000000005dea l .text 0000000000000000 .L0 +0000000000005dea l .text 0000000000000000 .L0 +0000000000005df8 l .text 0000000000000000 .L0 +0000000000005df8 l .text 0000000000000000 .L0 +0000000000005dfc l .text 0000000000000000 .L0 +0000000000005e24 l .text 0000000000000000 .L0 +0000000000005e30 l .text 0000000000000000 .L0 +0000000000005e30 l .text 0000000000000000 .L0 +0000000000005e30 l .text 0000000000000000 .L0 +0000000000005e3e l .text 0000000000000000 .L0 +0000000000005e40 l .text 0000000000000000 .L0 +0000000000005e44 l .text 0000000000000000 .L0 +0000000000005e4e l .text 0000000000000000 .L0 +0000000000005e50 l .text 0000000000000000 .L0 +0000000000005e5a l .text 0000000000000000 .L0 +0000000000005e5a l .text 0000000000000000 .L0 +0000000000005e5a l .text 0000000000000000 .L0 +0000000000005e5a l .text 0000000000000000 .L0 +0000000000005e5a l .text 0000000000000000 .L0 +0000000000005e5c l .text 0000000000000000 .L0 +0000000000005e62 l .text 0000000000000000 .L0 +0000000000005e74 l .text 0000000000000000 .L0 +0000000000005e74 l .text 0000000000000000 .L0 +0000000000005e76 l .text 0000000000000000 .L0 +0000000000005e88 l .text 0000000000000000 .L0 +0000000000005e88 l .text 0000000000000000 .L0 +0000000000005e8c l .text 0000000000000000 .L0 +0000000000005e9a l .text 0000000000000000 .L0 +0000000000005e9a l .text 0000000000000000 .L0 +0000000000005e9c l .text 0000000000000000 .L0 +0000000000005e9e l .text 0000000000000000 .L0 +0000000000005e9e l .text 0000000000000000 .L0 +0000000000005ea2 l .text 0000000000000000 .L0 +0000000000005eb2 l .text 0000000000000000 .L0 +0000000000005eb2 l .text 0000000000000000 .L0 +0000000000005ebc l .text 0000000000000000 .L0 +0000000000005ebe l .text 0000000000000000 .L0 +0000000000005ebe l .text 0000000000000000 .L0 +0000000000005ec2 l .text 0000000000000000 .L0 +0000000000005eec l .text 0000000000000000 .L0 +0000000000005ef8 l .text 0000000000000000 .L0 +0000000000005ef8 l .text 0000000000000000 .L0 +0000000000005f02 l .text 0000000000000000 .L0 +0000000000005f02 l .text 0000000000000000 .L0 +0000000000005f02 l .text 0000000000000000 .L0 +0000000000005f02 l .text 0000000000000000 .L0 +0000000000005f10 l .text 0000000000000000 .L0 +0000000000005f12 l .text 0000000000000000 .L0 +0000000000005f16 l .text 0000000000000000 .L0 +0000000000005f1e l .text 0000000000000000 .L0 +0000000000005f1e l .text 0000000000000000 .L0 +0000000000005f1e l .text 0000000000000000 .L0 +0000000000005f20 l .text 0000000000000000 .L0 +0000000000005f24 l .text 0000000000000000 .L0 +0000000000005f24 l .text 0000000000000000 .L0 +0000000000005f2e l .text 0000000000000000 .L0 +0000000000005f2e l .text 0000000000000000 .L0 +0000000000005f32 l .text 0000000000000000 .L0 +0000000000005f5c l .text 0000000000000000 .L0 +0000000000005f66 l .text 0000000000000000 .L0 +0000000000005f66 l .text 0000000000000000 .L0 +0000000000005f78 l .text 0000000000000000 .L0 +0000000000005f78 l .text 0000000000000000 .L0 +0000000000005f78 l .text 0000000000000000 .L0 +0000000000005f78 l .text 0000000000000000 .L0 +0000000000005f7a l .text 0000000000000000 .L0 +0000000000005f88 l .text 0000000000000000 .L0 +0000000000005f88 l .text 0000000000000000 .L0 +0000000000005f88 l .text 0000000000000000 .L0 +0000000000005f88 l .text 0000000000000000 .L0 +0000000000005f88 l .text 0000000000000000 .L0 +0000000000005f88 l .text 0000000000000000 .L0 +0000000000005f88 l .text 0000000000000000 .L0 +0000000000005f88 l .text 0000000000000000 .L0 +0000000000005f88 l .text 0000000000000000 .L0 +0000000000005fa0 l .text 0000000000000000 .L0 +0000000000005fa2 l .text 0000000000000000 .L0 +0000000000005fa6 l .text 0000000000000000 .L0 +0000000000005fae l .text 0000000000000000 .L0 +0000000000005fae l .text 0000000000000000 .L0 +0000000000005fb0 l .text 0000000000000000 .L0 +0000000000005fc2 l .text 0000000000000000 .L0 +0000000000005fc2 l .text 0000000000000000 .L0 +0000000000005fc4 l .text 0000000000000000 .L0 +0000000000005fc4 l .text 0000000000000000 .L0 +0000000000005fe0 l .text 0000000000000000 .L0 +0000000000005fe6 l .text 0000000000000000 .L0 +0000000000005fe6 l .text 0000000000000000 .L0 +0000000000005ff2 l .text 0000000000000000 .L0 +0000000000005ff2 l .text 0000000000000000 .L0 +0000000000005ff4 l .text 0000000000000000 .L0 +0000000000006006 l .text 0000000000000000 .L0 +0000000000006006 l .text 0000000000000000 .L0 +0000000000006008 l .text 0000000000000000 .L0 +0000000000006014 l .text 0000000000000000 .L0 +0000000000006014 l .text 0000000000000000 .L0 +0000000000006022 l .text 0000000000000000 .L0 +0000000000006022 l .text 0000000000000000 .L0 +0000000000006026 l .text 0000000000000000 .L0 +000000000000602c l .text 0000000000000000 .L0 +000000000000602e l .text 0000000000000000 .L0 +0000000000006050 l .text 0000000000000000 .L0 +0000000000006050 l .text 0000000000000000 .L0 +000000000000605c l .text 0000000000000000 .L0 +000000000000605c l .text 0000000000000000 .L0 +000000000000606a l .text 0000000000000000 .L0 +000000000000606a l .text 0000000000000000 .L0 +000000000000606e l .text 0000000000000000 .L0 +0000000000006072 l .text 0000000000000000 .L0 +0000000000006078 l .text 0000000000000000 .L0 +000000000000607a l .text 0000000000000000 .L0 +000000000000609c l .text 0000000000000000 .L0 +000000000000609c l .text 0000000000000000 .L0 +00000000000060a8 l .text 0000000000000000 .L0 +00000000000060a8 l .text 0000000000000000 .L0 +00000000000060a8 l .text 0000000000000000 .L0 +00000000000060a8 l .text 0000000000000000 .L0 +00000000000060a8 l .text 0000000000000000 .L0 +00000000000060ba l .text 0000000000000000 .L0 +00000000000060ba l .text 0000000000000000 .L0 +00000000000060cc l .text 0000000000000000 .L0 +00000000000060cc l .text 0000000000000000 .L0 +00000000000060d0 l .text 0000000000000000 .L0 +00000000000060f8 l .text 0000000000000000 .L0 +00000000000060f8 l .text 0000000000000000 .L0 +00000000000060fc l .text 0000000000000000 .L0 +00000000000060fc l .text 0000000000000000 .L0 +0000000000006100 l .text 0000000000000000 .L0 +0000000000006100 l .text 0000000000000000 .L0 +0000000000006104 l .text 0000000000000000 .L0 +000000000000611a l .text 0000000000000000 .L0 +000000000000611c l .text 0000000000000000 .L0 +000000000000612c l .text 0000000000000000 .L0 +000000000000612e l .text 0000000000000000 .L0 +000000000000612e l .text 0000000000000000 .L0 +0000000000006132 l .text 0000000000000000 .L0 +000000000000613e l .text 0000000000000000 .L0 +000000000000613e l .text 0000000000000000 .L0 +000000000000613e l .text 0000000000000000 .L0 +000000000000613e l .text 0000000000000000 .L0 +000000000000613e l .text 0000000000000000 .L0 +000000000000613e l .text 0000000000000000 .L0 +000000000000613e l .text 0000000000000000 .L0 +000000000000613e l .text 0000000000000000 .L0 +000000000000613e l .text 0000000000000000 .L0 +000000000000614e l .text 0000000000000000 .L0 +0000000000006150 l .text 0000000000000000 .L0 +000000000000615a l .text 0000000000000000 .L0 +000000000000615c l .text 0000000000000000 .L0 +0000000000006164 l .text 0000000000000000 .L0 +0000000000006166 l .text 0000000000000000 .L0 +0000000000006174 l .text 0000000000000000 .L0 +0000000000006178 l .text 0000000000000000 .L0 +0000000000006178 l .text 0000000000000000 .L0 +000000000000617a l .text 0000000000000000 .L0 +0000000000006190 l .text 0000000000000000 .L0 +0000000000006190 l .text 0000000000000000 .L0 +00000000000061a0 l .text 0000000000000000 .L0 +00000000000061a2 l .text 0000000000000000 .L0 +00000000000061a4 l .text 0000000000000000 .L0 +00000000000061a4 l .text 0000000000000000 .L0 +00000000000061aa l .text 0000000000000000 .L0 +00000000000061aa l .text 0000000000000000 .L0 +00000000000061ba l .text 0000000000000000 .L0 +00000000000061ba l .text 0000000000000000 .L0 +00000000000061bc l .text 0000000000000000 .L0 +00000000000061cc l .text 0000000000000000 .L0 +00000000000061cc l .text 0000000000000000 .L0 +00000000000061d6 l .text 0000000000000000 .L0 +00000000000061d6 l .text 0000000000000000 .L0 +00000000000061da l .text 0000000000000000 .L0 +00000000000061da l .text 0000000000000000 .L0 +00000000000061e2 l .text 0000000000000000 .L0 +00000000000061e4 l .text 0000000000000000 .L0 +00000000000061e4 l .text 0000000000000000 .L0 +00000000000061ea l .text 0000000000000000 .L0 +00000000000061ea l .text 0000000000000000 .L0 +00000000000061fe l .text 0000000000000000 .L0 +00000000000061fe l .text 0000000000000000 .L0 +0000000000006202 l .text 0000000000000000 .L0 +000000000000622a l .text 0000000000000000 .L0 +000000000000622a l .text 0000000000000000 .L0 +000000000000622a l .text 0000000000000000 .L0 +000000000000622e l .text 0000000000000000 .L0 +000000000000622e l .text 0000000000000000 .L0 +000000000000622e l .text 0000000000000000 .L0 +0000000000006232 l .text 0000000000000000 .L0 +0000000000006232 l .text 0000000000000000 .L0 +0000000000006240 l .text 0000000000000000 .L0 +0000000000006240 l .text 0000000000000000 .L0 +0000000000006244 l .text 0000000000000000 .L0 +000000000000626e l .text 0000000000000000 .L0 +0000000000006278 l .text 0000000000000000 .L0 +0000000000006282 l .text 0000000000000000 .L0 +0000000000006282 l .text 0000000000000000 .L0 +0000000000006284 l .text 0000000000000000 .L0 +000000000000629e l .text 0000000000000000 .L0 +00000000000062a0 l .text 0000000000000000 .L0 +00000000000062a0 l .text 0000000000000000 .L0 +00000000000062a4 l .text 0000000000000000 .L0 +00000000000062ac l .text 0000000000000000 .L0 +00000000000062c0 l .text 0000000000000000 .L0 +00000000000062c0 l .text 0000000000000000 .L0 +00000000000062d0 l .text 0000000000000000 .L0 +00000000000062d0 l .text 0000000000000000 .L0 +00000000000062d4 l .text 0000000000000000 .L0 +0000000000006300 l .text 0000000000000000 .L0 +0000000000006300 l .text 0000000000000000 .L0 +0000000000006300 l .text 0000000000000000 .L0 +0000000000006300 l .text 0000000000000000 .L0 +0000000000006302 l .text 0000000000000000 .L0 +0000000000006304 l .text 0000000000000000 .L0 +000000000000630e l .text 0000000000000000 .L0 +0000000000006310 l .text 0000000000000000 .L0 +0000000000006314 l .text 0000000000000000 .L0 +0000000000006318 l .text 0000000000000000 .L0 +0000000000006318 l .text 0000000000000000 .L0 +0000000000006318 l .text 0000000000000000 .L0 +0000000000006318 l .text 0000000000000000 .L0 +0000000000006320 l .text 0000000000000000 .L0 +0000000000006348 l .text 0000000000000000 .L0 +0000000000006348 l .text 0000000000000000 .L0 +000000000000634a l .text 0000000000000000 .L0 +000000000000635a l .text 0000000000000000 .L0 +000000000000635a l .text 0000000000000000 .L0 +0000000000006376 l .text 0000000000000000 .L0 +0000000000006376 l .text 0000000000000000 .L0 +000000000000637a l .text 0000000000000000 .L0 +000000000000637a l .text 0000000000000000 .L0 +000000000000638c l .text 0000000000000000 .L0 +0000000000006396 l .text 0000000000000000 .L0 +0000000000006396 l .text 0000000000000000 .L0 +0000000000006398 l .text 0000000000000000 .L0 +0000000000006398 l .text 0000000000000000 .L0 +00000000000063ba l .text 0000000000000000 .L0 +0000000000001c10 l .debug_frame 0000000000000000 .L0 +0000000000004e36 l .text 0000000000000000 .L0 +0000000000004f64 l .text 0000000000000000 .L0 +0000000000004f64 l .text 0000000000000000 .L0 +0000000000004fa0 l .text 0000000000000000 .L0 +0000000000004fa0 l .text 0000000000000000 .L0 +000000000000527a l .text 0000000000000000 .L0 +000000000000527a l .text 0000000000000000 .L0 +0000000000005326 l .text 0000000000000000 .L0 +0000000000005326 l .text 0000000000000000 .L0 +0000000000005408 l .text 0000000000000000 .L0 +0000000000005408 l .text 0000000000000000 .L0 +0000000000005480 l .text 0000000000000000 .L0 +0000000000005480 l .text 0000000000000000 .L0 +00000000000054ac l .text 0000000000000000 .L0 +00000000000054ac l .text 0000000000000000 .L0 +0000000000005534 l .text 0000000000000000 .L0 +0000000000005534 l .text 0000000000000000 .L0 +0000000000005652 l .text 0000000000000000 .L0 +0000000000005652 l .text 0000000000000000 .L0 +00000000000058c4 l .text 0000000000000000 .L0 +00000000000058c4 l .text 0000000000000000 .L0 +0000000000005ade l .text 0000000000000000 .L0 +0000000000005ade l .text 0000000000000000 .L0 +0000000000005bf0 l .text 0000000000000000 .L0 +0000000000005bf0 l .text 0000000000000000 .L0 +0000000000005d74 l .text 0000000000000000 .L0 +0000000000005d74 l .text 0000000000000000 .L0 +0000000000005e30 l .text 0000000000000000 .L0 +0000000000005e30 l .text 0000000000000000 .L0 +0000000000005f02 l .text 0000000000000000 .L0 +0000000000005f02 l .text 0000000000000000 .L0 +0000000000005f78 l .text 0000000000000000 .L0 +0000000000005f78 l .text 0000000000000000 .L0 +0000000000005f88 l .text 0000000000000000 .L0 +0000000000005f88 l .text 0000000000000000 .L0 +000000000000613e l .text 0000000000000000 .L0 +000000000000613e l .text 0000000000000000 .L0 +0000000000006300 l .text 0000000000000000 .L0 +0000000000006300 l .text 0000000000000000 .L0 +00000000000063ba l .text 0000000000000000 .L0 +0000000000004f4c l .text 0000000000000000 .L0 +0000000000004e4e l .text 0000000000000000 .L0 +0000000000004f72 l .text 0000000000000000 .L0 +0000000000004f66 l .text 0000000000000000 .L0 +0000000000004f96 l .text 0000000000000000 .L0 +000000000000502a l .text 0000000000000000 .L0 +0000000000004fb4 l .text 0000000000000000 .L0 +0000000000005318 l .text 0000000000000000 .L0 +0000000000005286 l .text 0000000000000000 .L0 +00000000000053ee l .text 0000000000000000 .L0 +0000000000005330 l .text 0000000000000000 .L0 +0000000000005472 l .text 0000000000000000 .L0 +0000000000005414 l .text 0000000000000000 .L0 +00000000000054a4 l .text 0000000000000000 .L0 +0000000000005486 l .text 0000000000000000 .L0 +00000000000054dc l .text 0000000000000000 .L0 +00000000000054be l .text 0000000000000000 .L0 +00000000000055d2 l .text 0000000000000000 .L0 +0000000000005542 l .text 0000000000000000 .L0 +0000000000005632 l .text 0000000000000000 .L0 +00000000000055e2 l .text 0000000000000000 .L0 +000000000000564a l .text 0000000000000000 .L0 +0000000000005640 l .text 0000000000000000 .L0 +000000000000568e l .text 0000000000000000 .L0 +000000000000566a l .text 0000000000000000 .L0 +000000000000594a l .text 0000000000000000 .L0 +00000000000058e0 l .text 0000000000000000 .L0 +0000000000005bc2 l .text 0000000000000000 .L0 +0000000000005af2 l .text 0000000000000000 .L0 +0000000000005ca2 l .text 0000000000000000 .L0 +0000000000005c0c l .text 0000000000000000 .L0 +0000000000005da8 l .text 0000000000000000 .L0 +0000000000005d84 l .text 0000000000000000 .L0 +0000000000005e78 l .text 0000000000000000 .L0 +0000000000005e3e l .text 0000000000000000 .L0 +0000000000005f68 l .text 0000000000000000 .L0 +0000000000005f10 l .text 0000000000000000 .L0 +0000000000005fc6 l .text 0000000000000000 .L0 +0000000000005fa0 l .text 0000000000000000 .L0 +000000000000617c l .text 0000000000000000 .L0 +000000000000614e l .text 0000000000000000 .L0 +0000000000006306 l .text 0000000000000000 .L0 +000000000000634c l .text 0000000000000000 .L0 +000000000000630e l .text 0000000000000000 .L0 +0000000000006398 l .text 0000000000000000 .L0 +0000000000006358 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 nsh_fsutils.c +00000000000063ba l F .text 00000000000000ec getpid_callback +000000000000c220 l .rodata 0000000000000000 .LC0 +00000000000063d6 l .text 0000000000000000 .L0 +0000000000006404 l .text 0000000000000000 .L2 +0000000000006414 l .text 0000000000000000 .L3 +0000000000006444 l .text 0000000000000000 .L4 +0000000000006402 l .text 0000000000000000 .L5 +0000000000006488 l .text 0000000000000000 .L6 +000000000000c230 l .rodata 0000000000000000 .LC1 +00000000000064d8 l .text 0000000000000000 .L0 +000000000000c238 l .rodata 0000000000000000 .LC2 +00000000000064f2 l .text 0000000000000000 .L0 +000000000000c270 l .rodata 0000000000000000 .LC3 +000000000000650c l .text 0000000000000000 .L0 +0000000000006516 l .text 0000000000000000 .L0 +000000000000c288 l .rodata 0000000000000000 .LC6 +0000000000006558 l .text 0000000000000000 .L0 +0000000000006560 l .text 0000000000000000 .L0 +0000000000006568 l .text 0000000000000000 .L0 +000000000000659c l .text 0000000000000000 .L0 +000000000000c278 l .rodata 0000000000000000 .LC4 +00000000000065d8 l .text 0000000000000000 .L0 +000000000000c280 l .rodata 0000000000000000 .LC5 +00000000000065e2 l .text 0000000000000000 .L0 +00000000000065ec l .text 0000000000000000 .L0 +0000000000006542 l .text 0000000000000000 .L10 +00000000000064fe l .text 0000000000000000 .L11 +00000000000065c0 l .text 0000000000000000 .L28 +00000000000065fa l .text 0000000000000000 .L14 +00000000000065e2 l .text 0000000000000000 .L15 +0000000000006524 l .text 0000000000000000 .L12 +0000000000006514 l .text 0000000000000000 .L31 +00000000000065a8 l .text 0000000000000000 .L30 +00000000000065aa l .text 0000000000000000 .L16 +000000000000663a l .text 0000000000000000 .L17 +000000000000662e l .text 0000000000000000 .L18 +0000000000006570 l .text 0000000000000000 .L21 +000000000000662a l .text 0000000000000000 .L19 +0000000000006600 l .text 0000000000000000 .L20 +000000000000667e l .text 0000000000000000 .L0 +000000000000668a l .text 0000000000000000 .L0 +000000000000c290 l .rodata 0000000000000000 .LC7 +00000000000066e0 l .text 0000000000000000 .L0 +000000000000c2a0 l .rodata 0000000000000000 .LC8 +00000000000066ec l .text 0000000000000000 .L0 +000000000000670e l .text 0000000000000000 .L0 +0000000000006718 l .text 0000000000000000 .L0 +000000000000c2b0 l .rodata 0000000000000000 .LC9 +0000000000006738 l .text 0000000000000000 .L0 +00000000000066b0 l .text 0000000000000000 .L33 +0000000000006732 l .text 0000000000000000 .L35 +00000000000066fc l .text 0000000000000000 .L36 +0000000000006756 l .text 0000000000000000 .L37 +0000000000006696 l .text 0000000000000000 .L34 +000000000000675c l .text 0000000000000000 .L41 +0000000000006746 l .text 0000000000000000 .L39 +00000000000066ec l .text 0000000000000000 .L45 +00000000000066c0 l .text 0000000000000000 .L40 +0000000000006724 l .text 0000000000000000 .L44 +0000000000006726 l .text 0000000000000000 .L38 +000000000000678c l .text 0000000000000000 .L0 +00000000000067a6 l .text 0000000000000000 .L0 +00000000000067be l .text 0000000000000000 .L0 +00000000000067c8 l .text 0000000000000000 .L0 +0000000000006808 l .text 0000000000000000 .L0 +0000000000006812 l .text 0000000000000000 .L0 +00000000000067e6 l .text 0000000000000000 .L47 +00000000000067b2 l .text 0000000000000000 .L48 +000000000000681e l .text 0000000000000000 .L50 +00000000000067d6 l .text 0000000000000000 .L49 +000000000000685c l .text 0000000000000000 .L0 +0000000000006876 l .text 0000000000000000 .L0 +000000000000c2d0 l .rodata 0000000000000000 .LC10 +000000000000688e l .text 0000000000000000 .L0 +000000000000689a l .text 0000000000000000 .L0 +00000000000068ba l .text 0000000000000000 .L53 +0000000000006882 l .text 0000000000000000 .L54 +00000000000068e2 l .text 0000000000000000 .L57 +00000000000068a6 l .text 0000000000000000 .L55 +00000000000068d6 l .text 0000000000000000 .L56 +0000000000006912 l .text 0000000000000000 .L62 +000000000000691a l .text 0000000000000000 .L65 +00000000000068fe l .text 0000000000000000 .L63 +000000000000696a l .text 0000000000000000 .L69 +000000000000695c l .text 0000000000000000 .L67 +0000000000006978 l .text 0000000000000000 .L74 +0000000000006934 l .text 0000000000000000 .L72 +000000000000692e l .text 0000000000000000 .L68 +0000000000006942 l .text 0000000000000000 .L70 +000000000000c2d8 l .rodata 0000000000000000 .LC11 +0000000000006988 l .text 0000000000000000 .L0 +000000000000c2e0 l .rodata 0000000000000000 .LC12 +00000000000069aa l .text 0000000000000000 .L0 +000000000000c2e8 l .rodata 0000000000000000 .LC13 +00000000000069d4 l .text 0000000000000000 .L0 +00000000000069d2 l .text 0000000000000000 .L77 +00000000000069c0 l .text 0000000000000000 .L78 +0000000000006a00 l .text 0000000000000000 .L0 +0000000000006a08 l .text 0000000000000000 .L0 +000000000000c2f0 l .rodata 0000000000000000 .LC14 +0000000000006a10 l .text 0000000000000000 .L0 +0000000000006a22 l .text 0000000000000000 .L80 +0000000000006572 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +00000000000123ed l .debug_str 0000000000000000 .LASF129 +000000000001261d l .debug_str 0000000000000000 .LASF130 +0000000000012634 l .debug_str 0000000000000000 .LASF131 +0000000000001ff0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +00000000000113c3 l .debug_line 0000000000000000 .Ldebug_line0 +0000000000012804 l .debug_str 0000000000000000 .LASF0 +0000000000012810 l .debug_str 0000000000000000 .LASF3 +00000000000127c7 l .debug_str 0000000000000000 .LASF1 +00000000000126f6 l .debug_str 0000000000000000 .LASF2 +00000000000125eb l .debug_str 0000000000000000 .LASF4 +0000000000012819 l .debug_str 0000000000000000 .LASF5 +00000000000123a5 l .debug_str 0000000000000000 .LASF6 +000000000001270f l .debug_str 0000000000000000 .LASF7 +0000000000012780 l .debug_str 0000000000000000 .LASF8 +00000000000127fb l .debug_str 0000000000000000 .LASF9 +000000000001253c l .debug_str 0000000000000000 .LASF10 +00000000000124fc l .debug_str 0000000000000000 .LASF11 +00000000000125dc l .debug_str 0000000000000000 .LASF12 +00000000000126bd l .debug_str 0000000000000000 .LASF13 +0000000000012551 l .debug_str 0000000000000000 .LASF14 +00000000000125cb l .debug_str 0000000000000000 .LASF15 +000000000001260e l .debug_str 0000000000000000 .LASF16 +000000000001259b l .debug_str 0000000000000000 .LASF17 +0000000000012312 l .debug_str 0000000000000000 .LASF18 +00000000000126cf l .debug_str 0000000000000000 .LASF22 +0000000000012558 l .debug_str 0000000000000000 .LASF19 +00000000000124b6 l .debug_str 0000000000000000 .LASF20 +00000000000127b2 l .debug_str 0000000000000000 .LASF21 +0000000000012869 l .debug_str 0000000000000000 .LASF23 +0000000000012709 l .debug_str 0000000000000000 .LASF24 +0000000000012874 l .debug_str 0000000000000000 .LASF25 +000000000001232a l .debug_str 0000000000000000 .LASF26 +00000000000123c6 l .debug_str 0000000000000000 .LASF27 +00000000000127e0 l .debug_str 0000000000000000 .LASF28 +00000000000125f5 l .debug_str 0000000000000000 .LASF29 +00000000000126b1 l .debug_str 0000000000000000 .LASF30 +0000000000012567 l .debug_str 0000000000000000 .LASF31 +0000000000012531 l .debug_str 0000000000000000 .LASF32 +0000000000012771 l .debug_str 0000000000000000 .LASF33 +000000000001267c l .debug_str 0000000000000000 .LASF34 +00000000000123cb l .debug_str 0000000000000000 .LASF35 +00000000000124d5 l .debug_str 0000000000000000 .LASF36 +00000000000125d3 l .debug_str 0000000000000000 .LASF37 +0000000000012665 l .debug_str 0000000000000000 .LASF38 +0000000000012652 l .debug_str 0000000000000000 .LASF39 +0000000000012849 l .debug_str 0000000000000000 .LASF40 +0000000000012700 l .debug_str 0000000000000000 .LASF41 +00000000000126c6 l .debug_str 0000000000000000 .LASF42 +00000000000126eb l .debug_str 0000000000000000 .LASF43 +0000000000012513 l .debug_str 0000000000000000 .LASF44 +00000000000125c5 l .debug_str 0000000000000000 .LASF45 +00000000000126d6 l .debug_str 0000000000000000 .LASF46 +00000000000127b8 l .debug_str 0000000000000000 .LASF47 +0000000000012614 l .debug_str 0000000000000000 .LASF48 +00000000000124e7 l .debug_str 0000000000000000 .LASF49 +0000000000012721 l .debug_str 0000000000000000 .LASF50 +00000000000124bd l .debug_str 0000000000000000 .LASF51 +0000000000012385 l .debug_str 0000000000000000 .LASF52 +000000000001255f l .debug_str 0000000000000000 .LASF53 +0000000000012718 l .debug_str 0000000000000000 .LASF54 +0000000000012584 l .debug_str 0000000000000000 .LASF55 +0000000000012727 l .debug_str 0000000000000000 .LASF56 +0000000000012318 l .debug_str 0000000000000000 .LASF57 +0000000000012378 l .debug_str 0000000000000000 .LASF132 +00000000000124a4 l .debug_str 0000000000000000 .LASF58 +00000000000123b2 l .debug_str 0000000000000000 .LASF59 +0000000000012766 l .debug_str 0000000000000000 .LASF60 +0000000000012544 l .debug_str 0000000000000000 .LASF61 +0000000000012792 l .debug_str 0000000000000000 .LASF62 +00000000000123d7 l .debug_str 0000000000000000 .LASF63 +0000000000012369 l .debug_str 0000000000000000 .LASF64 +000000000001282c l .debug_str 0000000000000000 .LASF65 +0000000000012603 l .debug_str 0000000000000000 .LASF66 +000000000001257e l .debug_str 0000000000000000 .LASF67 +00000000000124b0 l .debug_str 0000000000000000 .LASF68 +0000000000012335 l .debug_str 0000000000000000 .LASF69 +00000000000127d5 l .debug_str 0000000000000000 .LASF70 +000000000001262b l .debug_str 0000000000000000 .LASF71 +00000000000126a3 l .debug_str 0000000000000000 .LASF72 +00000000000125c0 l .debug_str 0000000000000000 .LASF73 +0000000000012349 l .debug_str 0000000000000000 .LASF74 +0000000000012300 l .debug_str 0000000000000000 .LASF75 +000000000001276b l .debug_str 0000000000000000 .LASF76 +00000000000123b7 l .debug_str 0000000000000000 .LASF77 +00000000000127c0 l .debug_str 0000000000000000 .LASF78 +000000000001238e l .debug_str 0000000000000000 .LASF79 +0000000000012732 l .debug_str 0000000000000000 .LASF80 +0000000000012520 l .debug_str 0000000000000000 .LASF81 +000000000001233c l .debug_str 0000000000000000 .LASF82 +0000000000012753 l .debug_str 0000000000000000 .LASF83 +00000000000124f6 l .debug_str 0000000000000000 .LASF84 +0000000000012688 l .debug_str 0000000000000000 .LASF86 +00000000000069ec l .text 0000000000000000 .LFB13 +0000000000006a2a l .text 0000000000000000 .LFE13 +00000000000123c1 l .debug_str 0000000000000000 .LASF85 +0000000000012173 l .debug_loc 0000000000000000 .LLST51 +00000000000121ac l .debug_loc 0000000000000000 .LLST52 +00000000000121f9 l .debug_loc 0000000000000000 .LLST53 +0000000000012246 l .debug_loc 0000000000000000 .LLST54 +00000000000126ac l .debug_str 0000000000000000 .LASF91 +0000000000006a20 l .text 0000000000000000 .LVL177 +00000000000124c6 l .debug_str 0000000000000000 .LASF87 +0000000000006980 l .text 0000000000000000 .LFB12 +00000000000069ec l .text 0000000000000000 .LFE12 +0000000000012293 l .debug_loc 0000000000000000 .LLST48 +00000000000127ed l .debug_str 0000000000000000 .LASF88 +000000000001230b l .debug_loc 0000000000000000 .LLST49 +0000000000012579 l .debug_str 0000000000000000 .LASF89 +000000000001236a l .debug_loc 0000000000000000 .LLST50 +00000000000069a0 l .text 0000000000000000 .LVL165 +00000000000069c0 l .text 0000000000000000 .LVL167 +00000000000069d2 l .text 0000000000000000 .LVL171 +00000000000069ea l .text 0000000000000000 .LVL172 +0000000000012853 l .debug_str 0000000000000000 .LASF90 +0000000000006922 l .text 0000000000000000 .LFB11 +0000000000006980 l .text 0000000000000000 .LFE11 +00000000000123dc l .debug_loc 0000000000000000 .LLST45 +00000000000125ab l .debug_str 0000000000000000 .LASF92 +0000000000012415 l .debug_loc 0000000000000000 .LLST46 +000000000001245e l .debug_loc 0000000000000000 .LLST47 +000000000000693e l .text 0000000000000000 .LVL151 +000000000000695a l .text 0000000000000000 .LVL153 +0000000000006972 l .text 0000000000000000 .LVL157 +0000000000012884 l .debug_str 0000000000000000 .LASF133 +00000000000068e6 l .text 0000000000000000 .LFB10 +0000000000006922 l .text 0000000000000000 .LFE10 +00000000000124be l .debug_loc 0000000000000000 .LLST43 +000000000001251d l .debug_loc 0000000000000000 .LLST44 +00000000000068f6 l .text 0000000000000000 .LVL143 +000000000001279d l .debug_str 0000000000000000 .LASF93 +0000000000006832 l .text 0000000000000000 .LFB9 +00000000000068e6 l .text 0000000000000000 .LFE9 +000000000001256a l .debug_loc 0000000000000000 .LLST35 +0000000000012608 l .debug_loc 0000000000000000 .LLST36 +0000000000012667 l .debug_loc 0000000000000000 .LLST37 +00000000000123e5 l .debug_str 0000000000000000 .LASF94 +00000000000126c6 l .debug_loc 0000000000000000 .LLST38 +0000000000012363 l .debug_str 0000000000000000 .LASF95 +0000000000012725 l .debug_loc 0000000000000000 .LLST39 +0000000000012609 l .debug_str 0000000000000000 .LASF96 +0000000000012784 l .debug_loc 0000000000000000 .LLST40 +00000000000127cd l .debug_loc 0000000000000000 .LLST41 +00000000000068ba l .text 0000000000000000 .LBB20 +00000000000068d6 l .text 0000000000000000 .LBE20 +00000000000125e4 l .debug_str 0000000000000000 .LASF97 +000000000001282c l .debug_loc 0000000000000000 .LLST42 +00000000000068c4 l .text 0000000000000000 .LVL134 +00000000000068d0 l .text 0000000000000000 .LVL137 +0000000000006856 l .text 0000000000000000 .LVL121 +000000000000686e l .text 0000000000000000 .LVL123 +0000000000006882 l .text 0000000000000000 .LVL124 +000000000000688c l .text 0000000000000000 .LVL126 +00000000000068a4 l .text 0000000000000000 .LVL127 +00000000000068e0 l .text 0000000000000000 .LVL139 +000000000001258d l .debug_str 0000000000000000 .LASF98 +0000000000006760 l .text 0000000000000000 .LFB8 +0000000000006832 l .text 0000000000000000 .LFE8 +0000000000012875 l .debug_loc 0000000000000000 .LLST29 +00000000000128d4 l .debug_loc 0000000000000000 .LLST30 +000000000001237e l .debug_str 0000000000000000 .LASF99 +0000000000012933 l .debug_loc 0000000000000000 .LLST31 +00000000000129a8 l .debug_loc 0000000000000000 .LLST32 +0000000000012352 l .debug_str 0000000000000000 .LASF100 +0000000000012a07 l .debug_loc 0000000000000000 .LLST33 +0000000000012a7c l .debug_loc 0000000000000000 .LLST34 +0000000000006784 l .text 0000000000000000 .LVL101 +000000000000679e l .text 0000000000000000 .LVL103 +00000000000067b2 l .text 0000000000000000 .LVL104 +00000000000067bc l .text 0000000000000000 .LVL106 +00000000000067d4 l .text 0000000000000000 .LVL107 +00000000000067f2 l .text 0000000000000000 .LVL113 +0000000000006806 l .text 0000000000000000 .LVL116 +000000000000681e l .text 0000000000000000 .LVL117 +0000000000006828 l .text 0000000000000000 .LVL118 +0000000000012305 l .debug_str 0000000000000000 .LASF101 +0000000000006644 l .text 0000000000000000 .LFB7 +0000000000006760 l .text 0000000000000000 .LFE7 +0000000000012ab2 l .debug_loc 0000000000000000 .LLST18 +0000000000012b50 l .debug_loc 0000000000000000 .LLST19 +0000000000012baf l .debug_loc 0000000000000000 .LLST20 +0000000000012be8 l .debug_loc 0000000000000000 .LLST21 +00000000000125b9 l .debug_str 0000000000000000 .LASF102 +0000000000012c70 l .debug_loc 0000000000000000 .LLST22 +0000000000012323 l .debug_str 0000000000000000 .LASF103 +0000000000012ccf l .debug_loc 0000000000000000 .LLST23 +0000000000012749 l .debug_str 0000000000000000 .LASF104 +00000000000127f5 l .debug_str 0000000000000000 .LASF105 +0000000000012d05 l .debug_loc 0000000000000000 .LLST24 +000000000001249d l .debug_str 0000000000000000 .LASF106 +0000000000012d4e l .debug_loc 0000000000000000 .LLST25 +0000000000012d85 l .debug_loc 0000000000000000 .LLST26 +0000000000012dbb l .debug_loc 0000000000000000 .LLST27 +00000000000127e5 l .debug_str 0000000000000000 .LASF107 +0000000000012e08 l .debug_loc 0000000000000000 .LLST28 +00000000000066da l .text 0000000000000000 .LVL83 +000000000000670c l .text 0000000000000000 .LVL88 +0000000000006724 l .text 0000000000000000 .LVL89 +000000000000666e l .text 0000000000000000 .LVL71 +000000000000667c l .text 0000000000000000 .LVL72 +0000000000006694 l .text 0000000000000000 .LVL73 +00000000000066ce l .text 0000000000000000 .LVL82 +00000000000066fc l .text 0000000000000000 .LVL86 +0000000000006730 l .text 0000000000000000 .LVL91 +0000000000012670 l .debug_str 0000000000000000 .LASF108 +00000000000064a6 l .text 0000000000000000 .LFB6 +0000000000006644 l .text 0000000000000000 .LFE6 +0000000000012e3e l .debug_loc 0000000000000000 .LLST7 +0000000000012e9d l .debug_loc 0000000000000000 .LLST8 +0000000000012efc l .debug_loc 0000000000000000 .LLST9 +0000000000012f71 l .debug_loc 0000000000000000 .LLST10 +0000000000012fcd l .debug_loc 0000000000000000 .LLST11 +0000000000013003 l .debug_loc 0000000000000000 .LLST12 +00000000000125a0 l .debug_str 0000000000000000 .LASF109 +0000000000013088 l .debug_loc 0000000000000000 .LLST13 +0000000000012862 l .debug_str 0000000000000000 .LASF110 +00000000000130be l .debug_loc 0000000000000000 .LLST17 +0000000000006590 l .text 0000000000000000 .LVL46 +00000000000065a8 l .text 0000000000000000 .LVL48 +00000000000065f8 l .text 0000000000000000 .LVL57 +0000000000012758 l .debug_str 0000000000000000 .LASF111 +00000000000130f4 l .debug_loc 0000000000000000 .LLST14 +0000000000013117 l .debug_loc 0000000000000000 .LLST15 +000000000001314d l .debug_loc 0000000000000000 .LLST16 +000000000000661a l .text 0000000000000000 .LVL60 +000000000000662a l .text 0000000000000000 .LVL62 +0000000000006638 l .text 0000000000000000 .LVL65 +000000000000660e l .text 0000000000000000 .LVL59 +0000000000006580 l .text 0000000000000000 .LVL44 +00000000000064d2 l .text 0000000000000000 .LVL28 +00000000000064ea l .text 0000000000000000 .LVL30 +00000000000064fe l .text 0000000000000000 .LVL31 +000000000000650a l .text 0000000000000000 .LVL33 +0000000000006522 l .text 0000000000000000 .LVL34 +0000000000006550 l .text 0000000000000000 .LVL40 +00000000000065b4 l .text 0000000000000000 .LVL50 +00000000000065be l .text 0000000000000000 .LVL51 +00000000000065ca l .text 0000000000000000 .LVL54 +00000000000065d6 l .text 0000000000000000 .LVL55 +0000000000012839 l .debug_str 0000000000000000 .LASF134 +00000000000063ba l .text 0000000000000000 .LFB5 +00000000000064a6 l .text 0000000000000000 .LFE5 +0000000000013183 l .debug_loc 0000000000000000 .LLST0 +00000000000131bc l .debug_loc 0000000000000000 .LLST1 +0000000000013208 l .debug_loc 0000000000000000 .LLST2 +000000000001326b l .debug_loc 0000000000000000 .LLST3 +00000000000132e0 l .debug_loc 0000000000000000 .LLST4 +0000000000013355 l .debug_loc 0000000000000000 .LLST5 +000000000001338b l .debug_loc 0000000000000000 .LLST6 +00000000000063f0 l .text 0000000000000000 .LVL5 +00000000000063fc l .text 0000000000000000 .LVL6 +0000000000006422 l .text 0000000000000000 .LVL11 +0000000000006430 l .text 0000000000000000 .LVL13 +000000000000643c l .text 0000000000000000 .LVL14 +000000000000645a l .text 0000000000000000 .LVL18 +000000000000646c l .text 0000000000000000 .LVL20 +0000000000006482 l .text 0000000000000000 .LVL22 +00000000000064a2 l .text 0000000000000000 .LVL24 +0000000000012572 l .debug_str 0000000000000000 .LASF112 +000000000001265c l .debug_str 0000000000000000 .LASF113 +000000000001254a l .debug_str 0000000000000000 .LASF114 +000000000001269c l .debug_str 0000000000000000 .LASF115 +00000000000124df l .debug_str 0000000000000000 .LASF116 +0000000000012741 l .debug_str 0000000000000000 .LASF117 +00000000000123dd l .debug_str 0000000000000000 .LASF118 +000000000001235b l .debug_str 0000000000000000 .LASF119 +0000000000012370 l .debug_str 0000000000000000 .LASF120 +00000000000126e2 l .debug_str 0000000000000000 .LASF121 +000000000001277b l .debug_str 0000000000000000 .LASF122 +00000000000125b3 l .debug_str 0000000000000000 .LASF123 +000000000001287f l .debug_str 0000000000000000 .LASF124 +0000000000012693 l .debug_str 0000000000000000 .LASF125 +00000000000124ef l .debug_str 0000000000000000 .LASF126 +000000000001256d l .debug_str 0000000000000000 .LASF127 +0000000000012834 l .debug_str 0000000000000000 .LASF128 +00000000000069ec l .text 0000000000000000 .LVL173 +0000000000006a18 l .text 0000000000000000 .LVL176 +0000000000006a10 l .text 0000000000000000 .LVL175 +0000000000006a08 l .text 0000000000000000 .LVL174 +0000000000006980 l .text 0000000000000000 .LVL162 +0000000000006994 l .text 0000000000000000 .LVL164 +00000000000069a6 l .text 0000000000000000 .LVL166 +00000000000069c4 l .text 0000000000000000 .LVL168 +0000000000006990 l .text 0000000000000000 .LVL163 +00000000000069c8 l .text 0000000000000000 .LVL169 +00000000000069ca l .text 0000000000000000 .LVL170 +0000000000006922 l .text 0000000000000000 .LVL149 +000000000000692e l .text 0000000000000000 .LVL150 +0000000000006962 l .text 0000000000000000 .LVL154 +000000000000696a l .text 0000000000000000 .LVL156 +0000000000006942 l .text 0000000000000000 .LVL152 +0000000000006964 l .text 0000000000000000 .LVL155 +0000000000006978 l .text 0000000000000000 .LVL159 +000000000000697c l .text 0000000000000000 .LVL160 +000000000000697e l .text 0000000000000000 .LVL161 +00000000000068e6 l .text 0000000000000000 .LVL142 +0000000000006916 l .text 0000000000000000 .LVL145 +000000000000691a l .text 0000000000000000 .LVL146 +00000000000068fe l .text 0000000000000000 .LVL144 +000000000000691e l .text 0000000000000000 .LVL147 +0000000000006920 l .text 0000000000000000 .LVL148 +0000000000006832 l .text 0000000000000000 .LVL119 +000000000000683a l .text 0000000000000000 .LVL120 +00000000000068a6 l .text 0000000000000000 .LVL128 +00000000000068ba l .text 0000000000000000 .LVL133 +00000000000068d6 l .text 0000000000000000 .LVL138 +00000000000068e2 l .text 0000000000000000 .LVL140 +00000000000068e4 l .text 0000000000000000 .LVL141 +00000000000068b2 l .text 0000000000000000 .LVL130 +0000000000006884 l .text 0000000000000000 .LVL125 +00000000000068b4 l .text 0000000000000000 .LVL131 +00000000000068b6 l .text 0000000000000000 .LVL132 +0000000000006866 l .text 0000000000000000 .LVL122 +00000000000068b0 l .text 0000000000000000 .LVL129 +00000000000068c6 l .text 0000000000000000 .LVL135 +00000000000068ce l .text 0000000000000000 .LVL136 +0000000000006760 l .text 0000000000000000 .LVL98 +000000000000676c l .text 0000000000000000 .LVL99 +00000000000067dc l .text 0000000000000000 .LVL109 +00000000000067e6 l .text 0000000000000000 .LVL112 +000000000000676e l .text 0000000000000000 .LVL100 +00000000000067de l .text 0000000000000000 .LVL110 +00000000000067d6 l .text 0000000000000000 .LVL108 +00000000000067fe l .text 0000000000000000 .LVL115 +00000000000067e4 l .text 0000000000000000 .LVL111 +00000000000067b4 l .text 0000000000000000 .LVL105 +00000000000067f6 l .text 0000000000000000 .LVL114 +0000000000006796 l .text 0000000000000000 .LVL102 +0000000000006644 l .text 0000000000000000 .LVL68 +0000000000006650 l .text 0000000000000000 .LVL69 +0000000000006696 l .text 0000000000000000 .LVL74 +00000000000066b0 l .text 0000000000000000 .LVL77 +0000000000006726 l .text 0000000000000000 .LVL90 +0000000000006732 l .text 0000000000000000 .LVL92 +000000000000675e l .text 0000000000000000 .LVL97 +0000000000006652 l .text 0000000000000000 .LVL70 +00000000000066a6 l .text 0000000000000000 .LVL76 +0000000000006704 l .text 0000000000000000 .LVL87 +00000000000066a2 l .text 0000000000000000 .LVL75 +00000000000066b6 l .text 0000000000000000 .LVL79 +00000000000066c0 l .text 0000000000000000 .LVL81 +0000000000006756 l .text 0000000000000000 .LVL95 +000000000000675c l .text 0000000000000000 .LVL96 +00000000000066b2 l .text 0000000000000000 .LVL78 +00000000000066ba l .text 0000000000000000 .LVL80 +00000000000066dc l .text 0000000000000000 .LVL84 +00000000000066ec l .text 0000000000000000 .LVL85 +00000000000064a6 l .text 0000000000000000 .LVL25 +00000000000064b2 l .text 0000000000000000 .LVL26 +0000000000006528 l .text 0000000000000000 .LVL36 +0000000000006542 l .text 0000000000000000 .LVL38 +00000000000064b4 l .text 0000000000000000 .LVL27 +000000000000652a l .text 0000000000000000 .LVL37 +0000000000006502 l .text 0000000000000000 .LVL32 +0000000000006554 l .text 0000000000000000 .LVL42 +0000000000006552 l .text 0000000000000000 .LVL41 +0000000000006570 l .text 0000000000000000 .LVL43 +00000000000065c0 l .text 0000000000000000 .LVL52 +00000000000065c2 l .text 0000000000000000 .LVL53 +00000000000064e2 l .text 0000000000000000 .LVL29 +0000000000006548 l .text 0000000000000000 .LVL39 +0000000000006524 l .text 0000000000000000 .LVL35 +00000000000065e2 l .text 0000000000000000 .LVL56 +000000000000662c l .text 0000000000000000 .LVL63 +000000000000662e l .text 0000000000000000 .LVL64 +0000000000006584 l .text 0000000000000000 .LVL45 +0000000000006592 l .text 0000000000000000 .LVL47 +0000000000006600 l .text 0000000000000000 .LVL58 +000000000000663e l .text 0000000000000000 .LVL67 +000000000000663a l .text 0000000000000000 .LVL66 +000000000000661c l .text 0000000000000000 .LVL61 +00000000000063ba l .text 0000000000000000 .LVL0 +00000000000063e2 l .text 0000000000000000 .LVL2 +00000000000063e8 l .text 0000000000000000 .LVL4 +00000000000063de l .text 0000000000000000 .LVL1 +0000000000006404 l .text 0000000000000000 .LVL9 +00000000000063e4 l .text 0000000000000000 .LVL3 +0000000000006414 l .text 0000000000000000 .LVL10 +000000000000649a l .text 0000000000000000 .LVL23 +00000000000063fe l .text 0000000000000000 .LVL7 +0000000000006402 l .text 0000000000000000 .LVL8 +0000000000006426 l .text 0000000000000000 .LVL12 +000000000000643e l .text 0000000000000000 .LVL15 +0000000000006444 l .text 0000000000000000 .LVL16 +000000000000644a l .text 0000000000000000 .LVL17 +0000000000006460 l .text 0000000000000000 .LVL19 +0000000000006474 l .text 0000000000000000 .LVL21 +0000000000019ccc l .debug_info 0000000000000000 .Ldebug_info0 +0000000000006556 l .text 0000000000000000 .LBB2 +0000000000006570 l .text 0000000000000000 .LBE2 +0000000000006570 l .text 0000000000000000 .LBB14 +00000000000065aa l .text 0000000000000000 .LBE14 +00000000000065e2 l .text 0000000000000000 .LBB15 +000000000000662a l .text 0000000000000000 .LBE15 +000000000000662e l .text 0000000000000000 .LBB16 +0000000000006644 l .text 0000000000000000 .LBE16 +0000000000006556 l .text 0000000000000000 .LBB3 +0000000000006570 l .text 0000000000000000 .LBE3 +00000000000065fe l .text 0000000000000000 .LBB12 +000000000000662a l .text 0000000000000000 .LBE12 +000000000000662e l .text 0000000000000000 .LBB13 +0000000000006644 l .text 0000000000000000 .LBE13 +0000000000006556 l .text 0000000000000000 .LBB4 +0000000000006570 l .text 0000000000000000 .LBE4 +0000000000006600 l .text 0000000000000000 .LBB8 +000000000000662a l .text 0000000000000000 .LBE8 +000000000000662e l .text 0000000000000000 .LBB9 +000000000000663e l .text 0000000000000000 .LBE9 +0000000000006556 l .text 0000000000000000 .LBB5 +0000000000006570 l .text 0000000000000000 .LBE5 +0000000000006612 l .text 0000000000000000 .LBB6 +000000000000662a l .text 0000000000000000 .LBE6 +000000000000662e l .text 0000000000000000 .LBB7 +000000000000663a l .text 0000000000000000 .LBE7 +0000000000006588 l .text 0000000000000000 .LBB10 +00000000000065aa l .text 0000000000000000 .LBE10 +00000000000065e2 l .text 0000000000000000 .LBB11 +00000000000065fa l .text 0000000000000000 .LBE11 +00000000000066be l .text 0000000000000000 .LBB17 +00000000000066c0 l .text 0000000000000000 .LBE17 +00000000000066d2 l .text 0000000000000000 .LBB18 +00000000000066ec l .text 0000000000000000 .LBE18 +00000000000066fc l .text 0000000000000000 .LBB19 +0000000000006724 l .text 0000000000000000 .LBE19 +00000000000063ba l .text 0000000000000000 .L0 +00000000000064a6 l .text 0000000000000000 .L0 +0000000000006644 l .text 0000000000000000 .L0 +0000000000006760 l .text 0000000000000000 .L0 +0000000000006832 l .text 0000000000000000 .L0 +00000000000068e6 l .text 0000000000000000 .L0 +0000000000006922 l .text 0000000000000000 .L0 +0000000000006980 l .text 0000000000000000 .L0 +00000000000069ec l .text 0000000000000000 .L0 +00000000000063ba l .text 0000000000000000 .L0 +00000000000063ba l .text 0000000000000000 .L0 +00000000000063ba l .text 0000000000000000 .L0 +00000000000063ba l .text 0000000000000000 .L0 +00000000000063ba l .text 0000000000000000 .L0 +00000000000063ba l .text 0000000000000000 .L0 +00000000000063c6 l .text 0000000000000000 .L0 +00000000000063ca l .text 0000000000000000 .L0 +00000000000063cc l .text 0000000000000000 .L0 +00000000000063d0 l .text 0000000000000000 .L0 +00000000000063d4 l .text 0000000000000000 .L0 +00000000000063e0 l .text 0000000000000000 .L0 +00000000000063f0 l .text 0000000000000000 .L0 +00000000000063f0 l .text 0000000000000000 .L0 +00000000000063fe l .text 0000000000000000 .L0 +00000000000063fe l .text 0000000000000000 .L0 +0000000000006402 l .text 0000000000000000 .L0 +0000000000006404 l .text 0000000000000000 .L0 +0000000000006414 l .text 0000000000000000 .L0 +0000000000006414 l .text 0000000000000000 .L0 +0000000000006422 l .text 0000000000000000 .L0 +0000000000006426 l .text 0000000000000000 .L0 +0000000000006430 l .text 0000000000000000 .L0 +0000000000006430 l .text 0000000000000000 .L0 +0000000000006434 l .text 0000000000000000 .L0 +0000000000006434 l .text 0000000000000000 .L0 +000000000000643c l .text 0000000000000000 .L0 +0000000000006444 l .text 0000000000000000 .L0 +0000000000006444 l .text 0000000000000000 .L0 +0000000000006446 l .text 0000000000000000 .L0 +000000000000644e l .text 0000000000000000 .L0 +000000000000644e l .text 0000000000000000 .L0 +000000000000645a l .text 0000000000000000 .L0 +000000000000645c l .text 0000000000000000 .L0 +0000000000006460 l .text 0000000000000000 .L0 +0000000000006460 l .text 0000000000000000 .L0 +000000000000646e l .text 0000000000000000 .L0 +0000000000006470 l .text 0000000000000000 .L0 +0000000000006478 l .text 0000000000000000 .L0 +0000000000006482 l .text 0000000000000000 .L0 +0000000000006484 l .text 0000000000000000 .L0 +0000000000006488 l .text 0000000000000000 .L0 +0000000000006488 l .text 0000000000000000 .L0 +000000000000648a l .text 0000000000000000 .L0 +000000000000648c l .text 0000000000000000 .L0 +000000000000648e l .text 0000000000000000 .L0 +0000000000006494 l .text 0000000000000000 .L0 +000000000000649a l .text 0000000000000000 .L0 +00000000000064a2 l .text 0000000000000000 .L0 +00000000000064a6 l .text 0000000000000000 .L0 +00000000000064a6 l .text 0000000000000000 .L0 +00000000000064a6 l .text 0000000000000000 .L0 +00000000000064a6 l .text 0000000000000000 .L0 +00000000000064a6 l .text 0000000000000000 .L0 +00000000000064a6 l .text 0000000000000000 .L0 +00000000000064b0 l .text 0000000000000000 .L0 +00000000000064b4 l .text 0000000000000000 .L0 +00000000000064c8 l .text 0000000000000000 .L0 +00000000000064ca l .text 0000000000000000 .L0 +00000000000064d2 l .text 0000000000000000 .L0 +00000000000064d2 l .text 0000000000000000 .L0 +00000000000064d6 l .text 0000000000000000 .L0 +00000000000064d6 l .text 0000000000000000 .L0 +00000000000064ea l .text 0000000000000000 .L0 +00000000000064ec l .text 0000000000000000 .L0 +00000000000064fe l .text 0000000000000000 .L0 +0000000000006514 l .text 0000000000000000 .L0 +0000000000006522 l .text 0000000000000000 .L0 +0000000000006522 l .text 0000000000000000 .L0 +0000000000006524 l .text 0000000000000000 .L0 +0000000000006544 l .text 0000000000000000 .L0 +0000000000006544 l .text 0000000000000000 .L0 +0000000000006552 l .text 0000000000000000 .L0 +0000000000006552 l .text 0000000000000000 .L0 +0000000000006554 l .text 0000000000000000 .L0 +0000000000006556 l .text 0000000000000000 .L0 +0000000000006558 l .text 0000000000000000 .L0 +0000000000006568 l .text 0000000000000000 .L0 +0000000000006570 l .text 0000000000000000 .L0 +0000000000006570 l .text 0000000000000000 .L0 +0000000000006570 l .text 0000000000000000 .L0 +0000000000006580 l .text 0000000000000000 .L0 +0000000000006584 l .text 0000000000000000 .L0 +0000000000006584 l .text 0000000000000000 .L0 +0000000000006588 l .text 0000000000000000 .L0 +0000000000006588 l .text 0000000000000000 .L0 +0000000000006590 l .text 0000000000000000 .L0 +0000000000006592 l .text 0000000000000000 .L0 +0000000000006592 l .text 0000000000000000 .L0 +000000000000659a l .text 0000000000000000 .L0 +00000000000065a8 l .text 0000000000000000 .L0 +00000000000065aa l .text 0000000000000000 .L0 +00000000000065b4 l .text 0000000000000000 .L0 +00000000000065be l .text 0000000000000000 .L0 +00000000000065be l .text 0000000000000000 .L0 +00000000000065c0 l .text 0000000000000000 .L0 +00000000000065ca l .text 0000000000000000 .L0 +00000000000065e2 l .text 0000000000000000 .L0 +00000000000065fa l .text 0000000000000000 .L0 +00000000000065fa l .text 0000000000000000 .L0 +00000000000065fe l .text 0000000000000000 .L0 +0000000000006600 l .text 0000000000000000 .L0 +0000000000006600 l .text 0000000000000000 .L0 +000000000000660e l .text 0000000000000000 .L0 +000000000000660e l .text 0000000000000000 .L0 +0000000000006612 l .text 0000000000000000 .L0 +0000000000006612 l .text 0000000000000000 .L0 +000000000000661a l .text 0000000000000000 .L0 +000000000000661c l .text 0000000000000000 .L0 +000000000000661e l .text 0000000000000000 .L0 +0000000000006622 l .text 0000000000000000 .L0 +000000000000662a l .text 0000000000000000 .L0 +000000000000662e l .text 0000000000000000 .L0 +000000000000663a l .text 0000000000000000 .L0 +000000000000663a l .text 0000000000000000 .L0 +000000000000663e l .text 0000000000000000 .L0 +0000000000006644 l .text 0000000000000000 .L0 +0000000000006644 l .text 0000000000000000 .L0 +0000000000006644 l .text 0000000000000000 .L0 +0000000000006644 l .text 0000000000000000 .L0 +0000000000006644 l .text 0000000000000000 .L0 +0000000000006644 l .text 0000000000000000 .L0 +0000000000006644 l .text 0000000000000000 .L0 +0000000000006644 l .text 0000000000000000 .L0 +0000000000006644 l .text 0000000000000000 .L0 +000000000000664e l .text 0000000000000000 .L0 +0000000000006652 l .text 0000000000000000 .L0 +0000000000006662 l .text 0000000000000000 .L0 +0000000000006666 l .text 0000000000000000 .L0 +000000000000666e l .text 0000000000000000 .L0 +000000000000666e l .text 0000000000000000 .L0 +0000000000006672 l .text 0000000000000000 .L0 +0000000000006694 l .text 0000000000000000 .L0 +0000000000006694 l .text 0000000000000000 .L0 +0000000000006696 l .text 0000000000000000 .L0 +00000000000066b2 l .text 0000000000000000 .L0 +00000000000066b2 l .text 0000000000000000 .L0 +00000000000066b2 l .text 0000000000000000 .L0 +00000000000066b6 l .text 0000000000000000 .L0 +00000000000066b6 l .text 0000000000000000 .L0 +00000000000066b6 l .text 0000000000000000 .L0 +00000000000066ba l .text 0000000000000000 .L0 +00000000000066ba l .text 0000000000000000 .L0 +00000000000066bc l .text 0000000000000000 .L0 +00000000000066be l .text 0000000000000000 .L0 +00000000000066c0 l .text 0000000000000000 .L0 +00000000000066c0 l .text 0000000000000000 .L0 +00000000000066c0 l .text 0000000000000000 .L0 +00000000000066ce l .text 0000000000000000 .L0 +00000000000066ce l .text 0000000000000000 .L0 +00000000000066d2 l .text 0000000000000000 .L0 +00000000000066d2 l .text 0000000000000000 .L0 +00000000000066da l .text 0000000000000000 .L0 +00000000000066dc l .text 0000000000000000 .L0 +00000000000066dc l .text 0000000000000000 .L0 +00000000000066e0 l .text 0000000000000000 .L0 +00000000000066ec l .text 0000000000000000 .L0 +00000000000066fc l .text 0000000000000000 .L0 +00000000000066fc l .text 0000000000000000 .L0 +00000000000066fc l .text 0000000000000000 .L0 +0000000000006700 l .text 0000000000000000 .L0 +0000000000006724 l .text 0000000000000000 .L0 +0000000000006724 l .text 0000000000000000 .L0 +0000000000006726 l .text 0000000000000000 .L0 +0000000000006730 l .text 0000000000000000 .L0 +0000000000006730 l .text 0000000000000000 .L0 +0000000000006732 l .text 0000000000000000 .L0 +0000000000006732 l .text 0000000000000000 .L0 +0000000000006734 l .text 0000000000000000 .L0 +0000000000006734 l .text 0000000000000000 .L0 +0000000000006738 l .text 0000000000000000 .L0 +0000000000006746 l .text 0000000000000000 .L0 +0000000000006746 l .text 0000000000000000 .L0 +0000000000006746 l .text 0000000000000000 .L0 +0000000000006748 l .text 0000000000000000 .L0 +0000000000006748 l .text 0000000000000000 .L0 +0000000000006750 l .text 0000000000000000 .L0 +0000000000006750 l .text 0000000000000000 .L0 +0000000000006752 l .text 0000000000000000 .L0 +0000000000006752 l .text 0000000000000000 .L0 +0000000000006756 l .text 0000000000000000 .L0 +0000000000006756 l .text 0000000000000000 .L0 +000000000000675c l .text 0000000000000000 .L0 +0000000000006760 l .text 0000000000000000 .L0 +0000000000006760 l .text 0000000000000000 .L0 +0000000000006760 l .text 0000000000000000 .L0 +0000000000006760 l .text 0000000000000000 .L0 +0000000000006760 l .text 0000000000000000 .L0 +000000000000676a l .text 0000000000000000 .L0 +000000000000676e l .text 0000000000000000 .L0 +0000000000006778 l .text 0000000000000000 .L0 +000000000000677c l .text 0000000000000000 .L0 +0000000000006784 l .text 0000000000000000 .L0 +0000000000006784 l .text 0000000000000000 .L0 +000000000000678a l .text 0000000000000000 .L0 +000000000000678a l .text 0000000000000000 .L0 +000000000000679e l .text 0000000000000000 .L0 +00000000000067a0 l .text 0000000000000000 .L0 +00000000000067b2 l .text 0000000000000000 .L0 +00000000000067d4 l .text 0000000000000000 .L0 +00000000000067d4 l .text 0000000000000000 .L0 +00000000000067d6 l .text 0000000000000000 .L0 +00000000000067e6 l .text 0000000000000000 .L0 +00000000000067ea l .text 0000000000000000 .L0 +00000000000067ea l .text 0000000000000000 .L0 +00000000000067f2 l .text 0000000000000000 .L0 +00000000000067f6 l .text 0000000000000000 .L0 +00000000000067f6 l .text 0000000000000000 .L0 +00000000000067fa l .text 0000000000000000 .L0 +000000000000681e l .text 0000000000000000 .L0 +0000000000006828 l .text 0000000000000000 .L0 +0000000000006828 l .text 0000000000000000 .L0 +0000000000006832 l .text 0000000000000000 .L0 +0000000000006832 l .text 0000000000000000 .L0 +0000000000006832 l .text 0000000000000000 .L0 +0000000000006832 l .text 0000000000000000 .L0 +0000000000006832 l .text 0000000000000000 .L0 +0000000000006838 l .text 0000000000000000 .L0 +000000000000683a l .text 0000000000000000 .L0 +0000000000006846 l .text 0000000000000000 .L0 +000000000000684e l .text 0000000000000000 .L0 +0000000000006856 l .text 0000000000000000 .L0 +0000000000006858 l .text 0000000000000000 .L0 +000000000000685a l .text 0000000000000000 .L0 +000000000000685a l .text 0000000000000000 .L0 +000000000000686e l .text 0000000000000000 .L0 +0000000000006870 l .text 0000000000000000 .L0 +0000000000006882 l .text 0000000000000000 .L0 +00000000000068a4 l .text 0000000000000000 .L0 +00000000000068a4 l .text 0000000000000000 .L0 +00000000000068a6 l .text 0000000000000000 .L0 +00000000000068ba l .text 0000000000000000 .L0 +00000000000068ba l .text 0000000000000000 .L0 +00000000000068ba l .text 0000000000000000 .L0 +00000000000068c6 l .text 0000000000000000 .L0 +00000000000068c6 l .text 0000000000000000 .L0 +00000000000068c8 l .text 0000000000000000 .L0 +00000000000068c8 l .text 0000000000000000 .L0 +00000000000068d0 l .text 0000000000000000 .L0 +00000000000068d4 l .text 0000000000000000 .L0 +00000000000068d6 l .text 0000000000000000 .L0 +00000000000068e0 l .text 0000000000000000 .L0 +00000000000068e0 l .text 0000000000000000 .L0 +00000000000068e2 l .text 0000000000000000 .L0 +00000000000068e6 l .text 0000000000000000 .L0 +00000000000068e6 l .text 0000000000000000 .L0 +00000000000068e6 l .text 0000000000000000 .L0 +00000000000068ec l .text 0000000000000000 .L0 +00000000000068ee l .text 0000000000000000 .L0 +00000000000068f6 l .text 0000000000000000 .L0 +00000000000068fa l .text 0000000000000000 .L0 +00000000000068fe l .text 0000000000000000 .L0 +000000000000690a l .text 0000000000000000 .L0 +0000000000006912 l .text 0000000000000000 .L0 +000000000000691a l .text 0000000000000000 .L0 +000000000000691a l .text 0000000000000000 .L0 +000000000000691e l .text 0000000000000000 .L0 +0000000000006922 l .text 0000000000000000 .L0 +000000000000692e l .text 0000000000000000 .L0 +000000000000692e l .text 0000000000000000 .L0 +000000000000692e l .text 0000000000000000 .L0 +000000000000692e l .text 0000000000000000 .L0 +0000000000006932 l .text 0000000000000000 .L0 +0000000000006934 l .text 0000000000000000 .L0 +0000000000006934 l .text 0000000000000000 .L0 +0000000000006942 l .text 0000000000000000 .L0 +0000000000006942 l .text 0000000000000000 .L0 +000000000000694e l .text 0000000000000000 .L0 +000000000000695a l .text 0000000000000000 .L0 +000000000000695c l .text 0000000000000000 .L0 +000000000000696a l .text 0000000000000000 .L0 +0000000000006972 l .text 0000000000000000 .L0 +0000000000006974 l .text 0000000000000000 .L0 +0000000000006974 l .text 0000000000000000 .L0 +0000000000006974 l .text 0000000000000000 .L0 +0000000000006978 l .text 0000000000000000 .L0 +0000000000006978 l .text 0000000000000000 .L0 +000000000000697c l .text 0000000000000000 .L0 +0000000000006980 l .text 0000000000000000 .L0 +0000000000006980 l .text 0000000000000000 .L0 +0000000000006980 l .text 0000000000000000 .L0 +0000000000006988 l .text 0000000000000000 .L0 +0000000000006990 l .text 0000000000000000 .L0 +0000000000006992 l .text 0000000000000000 .L0 +0000000000006994 l .text 0000000000000000 .L0 +0000000000006996 l .text 0000000000000000 .L0 +0000000000006998 l .text 0000000000000000 .L0 +00000000000069a0 l .text 0000000000000000 .L0 +00000000000069a2 l .text 0000000000000000 .L0 +00000000000069a6 l .text 0000000000000000 .L0 +00000000000069a8 l .text 0000000000000000 .L0 +00000000000069c0 l .text 0000000000000000 .L0 +00000000000069c0 l .text 0000000000000000 .L0 +00000000000069c2 l .text 0000000000000000 .L0 +00000000000069ca l .text 0000000000000000 .L0 +00000000000069d2 l .text 0000000000000000 .L0 +00000000000069ec l .text 0000000000000000 .L0 +00000000000069ec l .text 0000000000000000 .L0 +00000000000069ec l .text 0000000000000000 .L0 +00000000000069f0 l .text 0000000000000000 .L0 +00000000000069f8 l .text 0000000000000000 .L0 +00000000000069f8 l .text 0000000000000000 .L0 +00000000000069fa l .text 0000000000000000 .L0 +00000000000069fc l .text 0000000000000000 .L0 +00000000000069fe l .text 0000000000000000 .L0 +0000000000006a20 l .text 0000000000000000 .L0 +0000000000006a20 l .text 0000000000000000 .L0 +0000000000006a22 l .text 0000000000000000 .L0 +0000000000006a2a l .text 0000000000000000 .L0 +0000000000002138 l .debug_frame 0000000000000000 .L0 +00000000000063ba l .text 0000000000000000 .L0 +00000000000064a6 l .text 0000000000000000 .L0 +00000000000064a6 l .text 0000000000000000 .L0 +0000000000006644 l .text 0000000000000000 .L0 +0000000000006644 l .text 0000000000000000 .L0 +0000000000006760 l .text 0000000000000000 .L0 +0000000000006760 l .text 0000000000000000 .L0 +0000000000006832 l .text 0000000000000000 .L0 +0000000000006832 l .text 0000000000000000 .L0 +00000000000068e6 l .text 0000000000000000 .L0 +00000000000068e6 l .text 0000000000000000 .L0 +0000000000006922 l .text 0000000000000000 .L0 +0000000000006922 l .text 0000000000000000 .L0 +0000000000006980 l .text 0000000000000000 .L0 +0000000000006980 l .text 0000000000000000 .L0 +00000000000069ec l .text 0000000000000000 .L0 +00000000000069ec l .text 0000000000000000 .L0 +0000000000006a2a l .text 0000000000000000 .L0 +0000000000006406 l .text 0000000000000000 .L0 +00000000000063c6 l .text 0000000000000000 .L0 +0000000000006526 l .text 0000000000000000 .L0 +00000000000064c8 l .text 0000000000000000 .L0 +0000000000006698 l .text 0000000000000000 .L0 +0000000000006662 l .text 0000000000000000 .L0 +00000000000067d8 l .text 0000000000000000 .L0 +0000000000006778 l .text 0000000000000000 .L0 +00000000000068a8 l .text 0000000000000000 .L0 +0000000000006846 l .text 0000000000000000 .L0 +0000000000006914 l .text 0000000000000000 .L0 +00000000000068ec l .text 0000000000000000 .L0 +000000000000695e l .text 0000000000000000 .L0 +000000000000692c l .text 0000000000000000 .L0 +0000000000006990 l .text 0000000000000000 .L0 +0000000000006984 l .text 0000000000000000 .L0 +00000000000069c4 l .text 0000000000000000 .L0 +0000000000006996 l .text 0000000000000000 .L0 +00000000000069d2 l .text 0000000000000000 .L0 +00000000000069ca l .text 0000000000000000 .L0 +0000000000006a24 l .text 0000000000000000 .L0 +00000000000069f0 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 nsh_mmcmds.c +000000000000c2f8 l .rodata 0000000000000000 .LC0 +0000000000006a2e l .text 0000000000000000 .L0 +000000000000c308 l .rodata 0000000000000000 .LC1 +0000000000006a72 l .text 0000000000000000 .L0 +000000000000c320 l .rodata 0000000000000000 .LC4 +0000000000006a92 l .text 0000000000000000 .L0 +000000000000c310 l .rodata 0000000000000000 .LC2 +0000000000006ab0 l .text 0000000000000000 .L0 +000000000000c318 l .rodata 0000000000000000 .LC3 +0000000000006ac6 l .text 0000000000000000 .L0 +000000000000c330 l .rodata 0000000000000000 .LC5 +0000000000006ade l .text 0000000000000000 .L0 +0000000000006b1e l .text 0000000000000000 .L0 +0000000000006aa8 l .text 0000000000000000 .L3 +0000000000006b30 l .text 0000000000000000 .L8 +0000000000006a84 l .text 0000000000000000 .L4 +0000000000006b1c l .text 0000000000000000 .L6 +0000000000006b18 l .text 0000000000000000 .L9 +0000000000006ae6 l .text 0000000000000000 .L7 +0000000000006943 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000012b92 l .debug_str 0000000000000000 .LASF84 +000000000001289b l .debug_str 0000000000000000 .LASF85 +00000000000129bb l .debug_str 0000000000000000 .LASF86 +0000000000002210 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000012005 l .debug_line 0000000000000000 .Ldebug_line0 +0000000000012916 l .debug_str 0000000000000000 .LASF0 +0000000000012b18 l .debug_str 0000000000000000 .LASF3 +0000000000012ab1 l .debug_str 0000000000000000 .LASF1 +0000000000012abf l .debug_str 0000000000000000 .LASF2 +0000000000012a58 l .debug_str 0000000000000000 .LASF4 +00000000000129f6 l .debug_str 0000000000000000 .LASF5 +00000000000129a7 l .debug_str 0000000000000000 .LASF6 +000000000001293b l .debug_str 0000000000000000 .LASF7 +00000000000129d9 l .debug_str 0000000000000000 .LASF8 +0000000000012c4c l .debug_str 0000000000000000 .LASF9 +0000000000012a1e l .debug_str 0000000000000000 .LASF10 +00000000000128d5 l .debug_str 0000000000000000 .LASF11 +0000000000012b3d l .debug_str 0000000000000000 .LASF12 +000000000001295f l .debug_str 0000000000000000 .LASF13 +00000000000128af l .debug_str 0000000000000000 .LASF14 +00000000000128c2 l .debug_str 0000000000000000 .LASF15 +0000000000012b21 l .debug_str 0000000000000000 .LASF16 +0000000000012908 l .debug_str 0000000000000000 .LASF17 +0000000000012a4c l .debug_str 0000000000000000 .LASF18 +00000000000128ca l .debug_str 0000000000000000 .LASF24 +0000000000012c7e l .debug_str 0000000000000000 .LASF19 +0000000000012af9 l .debug_str 0000000000000000 .LASF20 +0000000000012970 l .debug_str 0000000000000000 .LASF21 +0000000000012a2c l .debug_str 0000000000000000 .LASF22 +0000000000012b56 l .debug_str 0000000000000000 .LASF23 +0000000000012ada l .debug_str 0000000000000000 .LASF25 +0000000000012c61 l .debug_str 0000000000000000 .LASF26 +0000000000012a3d l .debug_str 0000000000000000 .LASF27 +0000000000012b80 l .debug_str 0000000000000000 .LASF28 +0000000000012b5f l .debug_str 0000000000000000 .LASF29 +0000000000012b4b l .debug_str 0000000000000000 .LASF30 +0000000000012a7c l .debug_str 0000000000000000 .LASF31 +0000000000012935 l .debug_str 0000000000000000 .LASF32 +000000000001297c l .debug_str 0000000000000000 .LASF33 +0000000000012aea l .debug_str 0000000000000000 .LASF34 +0000000000012990 l .debug_str 0000000000000000 .LASF35 +0000000000012a98 l .debug_str 0000000000000000 .LASF36 +0000000000012ad4 l .debug_str 0000000000000000 .LASF37 +0000000000012c70 l .debug_str 0000000000000000 .LASF38 +000000000001294d l .debug_str 0000000000000000 .LASF39 +0000000000012968 l .debug_str 0000000000000000 .LASF40 +0000000000012944 l .debug_str 0000000000000000 .LASF41 +0000000000012956 l .debug_str 0000000000000000 .LASF42 +0000000000012b26 l .debug_str 0000000000000000 .LASF43 +0000000000012b75 l .debug_str 0000000000000000 .LASF44 +0000000000012aab l .debug_str 0000000000000000 .LASF45 +0000000000012c5b l .debug_str 0000000000000000 .LASF87 +00000000000128ec l .debug_str 0000000000000000 .LASF46 +00000000000128f8 l .debug_str 0000000000000000 .LASF47 +00000000000129eb l .debug_str 0000000000000000 .LASF48 +00000000000129a1 l .debug_str 0000000000000000 .LASF49 +00000000000128fd l .debug_str 0000000000000000 .LASF50 +0000000000012b68 l .debug_str 0000000000000000 .LASF51 +0000000000012af2 l .debug_str 0000000000000000 .LASF52 +0000000000012922 l .debug_str 0000000000000000 .LASF53 +0000000000012a26 l .debug_str 0000000000000000 .LASF54 +0000000000012b45 l .debug_str 0000000000000000 .LASF55 +0000000000012a89 l .debug_str 0000000000000000 .LASF56 +0000000000012a36 l .debug_str 0000000000000000 .LASF57 +0000000000012890 l .debug_str 0000000000000000 .LASF58 +0000000000012a8f l .debug_str 0000000000000000 .LASF59 +0000000000012a09 l .debug_str 0000000000000000 .LASF60 +0000000000012ae5 l .debug_str 0000000000000000 .LASF61 +0000000000012b89 l .debug_str 0000000000000000 .LASF62 +0000000000012b31 l .debug_str 0000000000000000 .LASF63 +0000000000012c55 l .debug_str 0000000000000000 .LASF64 +0000000000012c42 l .debug_str 0000000000000000 .LASF65 +0000000000012b36 l .debug_str 0000000000000000 .LASF66 +0000000000012aa0 l .debug_str 0000000000000000 .LASF67 +00000000000129f0 l .debug_str 0000000000000000 .LASF68 +0000000000012ac9 l .debug_str 0000000000000000 .LASF69 +000000000001292a l .debug_str 0000000000000000 .LASF70 +0000000000012b05 l .debug_str 0000000000000000 .LASF71 +0000000000012a47 l .debug_str 0000000000000000 .LASF72 +00000000000128b6 l .debug_str 0000000000000000 .LASF76 +0000000000006a3e l .text 0000000000000000 .LFB2 +0000000000006b44 l .text 0000000000000000 .LFE2 +0000000000012c6b l .debug_str 0000000000000000 .LASF73 +00000000000133d4 l .debug_loc 0000000000000000 .LLST3 +0000000000012c79 l .debug_str 0000000000000000 .LASF74 +0000000000013420 l .debug_loc 0000000000000000 .LLST4 +0000000000012c88 l .debug_str 0000000000000000 .LASF75 +0000000000013459 l .debug_loc 0000000000000000 .LLST5 +00000000000134a5 l .debug_loc 0000000000000000 .LLST6 +0000000000006a68 l .text 0000000000000000 .LVL8 +0000000000006a84 l .text 0000000000000000 .LVL9 +0000000000006a8e l .text 0000000000000000 .LVL10 +0000000000006aa6 l .text 0000000000000000 .LVL11 +0000000000006ac2 l .text 0000000000000000 .LVL12 +0000000000006ad6 l .text 0000000000000000 .LVL13 +0000000000006b04 l .text 0000000000000000 .LVL15 +0000000000006b18 l .text 0000000000000000 .LVL16 +0000000000006b30 l .text 0000000000000000 .LVL19 +0000000000012a62 l .debug_str 0000000000000000 .LASF77 +0000000000006a2a l .text 0000000000000000 .LFB1 +0000000000006a3e l .text 0000000000000000 .LFE1 +00000000000134f2 l .debug_loc 0000000000000000 .LLST0 +000000000001352b l .debug_loc 0000000000000000 .LLST1 +0000000000013564 l .debug_loc 0000000000000000 .LLST2 +0000000000006a3e l .text 0000000000000000 .LVL3 +0000000000012b6e l .debug_str 0000000000000000 .LASF88 +0000000000012a6b l .debug_str 0000000000000000 .LASF89 +0000000000012988 l .debug_str 0000000000000000 .LASF78 +00000000000129b4 l .debug_str 0000000000000000 .LASF79 +0000000000012b0a l .debug_str 0000000000000000 .LASF80 +00000000000128a8 l .debug_str 0000000000000000 .LASF81 +0000000000012999 l .debug_str 0000000000000000 .LASF82 +0000000000012a12 l .debug_str 0000000000000000 .LASF83 +0000000000006a3e l .text 0000000000000000 .LVL4 +0000000000006a54 l .text 0000000000000000 .LVL7 +0000000000006b38 l .text 0000000000000000 .LVL21 +0000000000006a4e l .text 0000000000000000 .LVL5 +0000000000006a52 l .text 0000000000000000 .LVL6 +0000000000006b34 l .text 0000000000000000 .LVL20 +0000000000006ae6 l .text 0000000000000000 .LVL14 +0000000000006b1a l .text 0000000000000000 .LVL17 +0000000000006b1c l .text 0000000000000000 .LVL18 +0000000000006a2a l .text 0000000000000000 .LVL0 +0000000000006a2e l .text 0000000000000000 .LVL1 +0000000000006a36 l .text 0000000000000000 .LVL2 +000000000001b0fe l .debug_info 0000000000000000 .Ldebug_info0 +0000000000006a2a l .text 0000000000000000 .L0 +0000000000006a3e l .text 0000000000000000 .L0 +0000000000006a2a l .text 0000000000000000 .L0 +0000000000006a2a l .text 0000000000000000 .L0 +0000000000006a2a l .text 0000000000000000 .L0 +0000000000006a2c l .text 0000000000000000 .L0 +0000000000006a3e l .text 0000000000000000 .L0 +0000000000006a3e l .text 0000000000000000 .L0 +0000000000006a3e l .text 0000000000000000 .L0 +0000000000006a4c l .text 0000000000000000 .L0 +0000000000006a54 l .text 0000000000000000 .L0 +0000000000006a5e l .text 0000000000000000 .L0 +0000000000006a68 l .text 0000000000000000 .L0 +0000000000006a68 l .text 0000000000000000 .L0 +0000000000006a68 l .text 0000000000000000 .L0 +0000000000006a6e l .text 0000000000000000 .L0 +0000000000006a84 l .text 0000000000000000 .L0 +0000000000006a84 l .text 0000000000000000 .L0 +0000000000006aa8 l .text 0000000000000000 .L0 +0000000000006aa8 l .text 0000000000000000 .L0 +0000000000006aac l .text 0000000000000000 .L0 +0000000000006ac2 l .text 0000000000000000 .L0 +0000000000006ac4 l .text 0000000000000000 .L0 +0000000000006ad8 l .text 0000000000000000 .L0 +0000000000006ada l .text 0000000000000000 .L0 +0000000000006ade l .text 0000000000000000 .L0 +0000000000006ae6 l .text 0000000000000000 .L0 +0000000000006aea l .text 0000000000000000 .L0 +0000000000006aee l .text 0000000000000000 .L0 +0000000000006b04 l .text 0000000000000000 .L0 +0000000000006b04 l .text 0000000000000000 .L0 +0000000000006b08 l .text 0000000000000000 .L0 +0000000000006b18 l .text 0000000000000000 .L0 +0000000000006b1c l .text 0000000000000000 .L0 +0000000000006b1c l .text 0000000000000000 .L0 +0000000000006b30 l .text 0000000000000000 .L0 +0000000000006b44 l .text 0000000000000000 .L0 +0000000000002368 l .debug_frame 0000000000000000 .L0 +0000000000006a2a l .text 0000000000000000 .L0 +0000000000006a3e l .text 0000000000000000 .L0 +0000000000006a3e l .text 0000000000000000 .L0 +0000000000006b44 l .text 0000000000000000 .L0 +0000000000006b32 l .text 0000000000000000 .L0 +0000000000006a5e l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 nsh_mntcmds.c +000000000000c338 l .rodata 0000000000000000 .LC0 +0000000000006b58 l .text 0000000000000000 .L0 +000000000000c340 l .rodata 0000000000000000 .LC1 +0000000000006b68 l .text 0000000000000000 .L0 +000000000000c350 l .rodata 0000000000000000 .LC2 +0000000000006b72 l .text 0000000000000000 .L0 +0000000000006b72 l .text 0000000000000000 .L2 +0000000000006b7a l .text 0000000000000000 .L4 +000000000000c360 l .rodata 0000000000000000 .LC3 +0000000000006bd0 l .text 0000000000000000 .L0 +000000000000c370 l .rodata 0000000000000000 .LC4 +0000000000006c0c l .text 0000000000000000 .L0 +0000000000006c40 l .text 0000000000000000 .L0 +0000000000006c6e l .text 0000000000000000 .L0 +0000000000006c76 l .text 0000000000000000 .L0 +0000000000006ce2 l .text 0000000000000000 .L0 +000000000000c378 l .rodata 0000000000000000 .LC5 +0000000000006d64 l .text 0000000000000000 .L0 +0000000000006d6c l .text 0000000000000000 .L0 +0000000000006c58 l .text 0000000000000000 .L26 +0000000000006c4a l .text 0000000000000000 .L7 +0000000000006c00 l .text 0000000000000000 .L8 +0000000000006bf8 l .text 0000000000000000 .L42 +0000000000006c0c l .text 0000000000000000 .L6 +0000000000006be2 l .text 0000000000000000 .L12 +0000000000006cee l .text 0000000000000000 .L27 +0000000000006c80 l .text 0000000000000000 .L15 +0000000000006cea l .text 0000000000000000 .L43 +0000000000006d9c l .text 0000000000000000 .L16 +0000000000006d0e l .text 0000000000000000 .L17 +0000000000006c3a l .text 0000000000000000 .L25 +0000000000006d26 l .text 0000000000000000 .L19 +0000000000006d7e l .text 0000000000000000 .L21 +0000000000006d78 l .text 0000000000000000 .L22 +0000000000006d82 l .text 0000000000000000 .L23 +0000000000006d90 l .text 0000000000000000 .L24 +000000000000c380 l .rodata 0000000000000000 .LC6 +0000000000006dee l .text 0000000000000000 .L0 +0000000000006df6 l .text 0000000000000000 .L0 +0000000000006e0c l .text 0000000000000000 .L45 +0000000000006e02 l .text 0000000000000000 .L46 +0000000000006b6d l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000013034 l .debug_str 0000000000000000 .LASF103 +0000000000012e0f l .debug_str 0000000000000000 .LASF104 +0000000000012e31 l .debug_str 0000000000000000 .LASF105 +0000000000002240 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000012292 l .debug_line 0000000000000000 .Ldebug_line0 +0000000000012d38 l .debug_str 0000000000000000 .LASF0 +0000000000012f96 l .debug_str 0000000000000000 .LASF3 +0000000000012f36 l .debug_str 0000000000000000 .LASF1 +0000000000012f44 l .debug_str 0000000000000000 .LASF2 +0000000000012ee6 l .debug_str 0000000000000000 .LASF4 +0000000000012e6c l .debug_str 0000000000000000 .LASF5 +0000000000012e1d l .debug_str 0000000000000000 .LASF6 +0000000000012d87 l .debug_str 0000000000000000 .LASF7 +0000000000012e4f l .debug_str 0000000000000000 .LASF8 +00000000000130ee l .debug_str 0000000000000000 .LASF9 +0000000000012e9b l .debug_str 0000000000000000 .LASF10 +0000000000012cde l .debug_str 0000000000000000 .LASF11 +0000000000012fd5 l .debug_str 0000000000000000 .LASF12 +0000000000012dab l .debug_str 0000000000000000 .LASF13 +0000000000012ca3 l .debug_str 0000000000000000 .LASF14 +0000000000012cb1 l .debug_str 0000000000000000 .LASF15 +0000000000012f9f l .debug_str 0000000000000000 .LASF16 +0000000000012ed0 l .debug_str 0000000000000000 .LASF17 +0000000000012d2a l .debug_str 0000000000000000 .LASF18 +0000000000012dd3 l .debug_str 0000000000000000 .LASF19 +0000000000012cc8 l .debug_str 0000000000000000 .LASF25 +000000000001312b l .debug_str 0000000000000000 .LASF20 +0000000000012f85 l .debug_str 0000000000000000 .LASF21 +0000000000012dbc l .debug_str 0000000000000000 .LASF22 +0000000000012eb0 l .debug_str 0000000000000000 .LASF23 +0000000000012fee l .debug_str 0000000000000000 .LASF24 +0000000000012f66 l .debug_str 0000000000000000 .LASF26 +000000000001310e l .debug_str 0000000000000000 .LASF27 +0000000000012ec1 l .debug_str 0000000000000000 .LASF28 +0000000000013022 l .debug_str 0000000000000000 .LASF29 +0000000000012ff7 l .debug_str 0000000000000000 .LASF30 +0000000000012fe3 l .debug_str 0000000000000000 .LASF31 +0000000000012f01 l .debug_str 0000000000000000 .LASF32 +0000000000012d72 l .debug_str 0000000000000000 .LASF33 +0000000000012ddf l .debug_str 0000000000000000 .LASF34 +0000000000012f76 l .debug_str 0000000000000000 .LASF35 +0000000000012df9 l .debug_str 0000000000000000 .LASF36 +0000000000012f1d l .debug_str 0000000000000000 .LASF37 +0000000000012f60 l .debug_str 0000000000000000 .LASF38 +000000000001311d l .debug_str 0000000000000000 .LASF39 +0000000000012d99 l .debug_str 0000000000000000 .LASF40 +0000000000012db4 l .debug_str 0000000000000000 .LASF41 +0000000000012d90 l .debug_str 0000000000000000 .LASF42 +0000000000012da2 l .debug_str 0000000000000000 .LASF43 +0000000000012fb3 l .debug_str 0000000000000000 .LASF44 +0000000000013017 l .debug_str 0000000000000000 .LASF45 +0000000000012f30 l .debug_str 0000000000000000 .LASF46 +0000000000013108 l .debug_str 0000000000000000 .LASF106 +0000000000012d0e l .debug_str 0000000000000000 .LASF47 +0000000000012d1a l .debug_str 0000000000000000 .LASF48 +0000000000012e61 l .debug_str 0000000000000000 .LASF49 +0000000000012e02 l .debug_str 0000000000000000 .LASF50 +0000000000012d1f l .debug_str 0000000000000000 .LASF51 +0000000000013000 l .debug_str 0000000000000000 .LASF52 +0000000000012f7e l .debug_str 0000000000000000 .LASF53 +0000000000012d44 l .debug_str 0000000000000000 .LASF54 +0000000000012eaa l .debug_str 0000000000000000 .LASF55 +0000000000012fdd l .debug_str 0000000000000000 .LASF56 +0000000000012f0e l .debug_str 0000000000000000 .LASF57 +0000000000012eba l .debug_str 0000000000000000 .LASF58 +0000000000012c8d l .debug_str 0000000000000000 .LASF59 +0000000000012f14 l .debug_str 0000000000000000 .LASF60 +0000000000012e7f l .debug_str 0000000000000000 .LASF61 +0000000000012f71 l .debug_str 0000000000000000 .LASF62 +000000000001302b l .debug_str 0000000000000000 .LASF63 +0000000000012fbe l .debug_str 0000000000000000 .LASF64 +0000000000013102 l .debug_str 0000000000000000 .LASF65 +00000000000130e4 l .debug_str 0000000000000000 .LASF66 +0000000000012fc3 l .debug_str 0000000000000000 .LASF67 +0000000000012d57 l .debug_str 0000000000000000 .LASF68 +0000000000012cf5 l .debug_str 0000000000000000 .LASF69 +0000000000013006 l .debug_str 0000000000000000 .LASF70 +0000000000012fa4 l .debug_str 0000000000000000 .LASF71 +0000000000012f25 l .debug_str 0000000000000000 .LASF72 +0000000000012e66 l .debug_str 0000000000000000 .LASF73 +0000000000012f4e l .debug_str 0000000000000000 .LASF74 +0000000000012d4c l .debug_str 0000000000000000 .LASF75 +0000000000012f91 l .debug_str 0000000000000000 .LASF76 +0000000000012ecb l .debug_str 0000000000000000 .LASF77 +0000000000012fca l .debug_str 0000000000000000 .LASF82 +0000000000006da6 l .text 0000000000000000 .LFB5 +0000000000006e1e l .text 0000000000000000 .LFE5 +0000000000013118 l .debug_str 0000000000000000 .LASF78 +00000000000135b0 l .debug_loc 0000000000000000 .LLST15 +0000000000013126 l .debug_str 0000000000000000 .LASF79 +00000000000135fc l .debug_loc 0000000000000000 .LLST16 +0000000000013135 l .debug_str 0000000000000000 .LASF80 +0000000000013635 l .debug_loc 0000000000000000 .LLST17 +0000000000012d05 l .debug_str 0000000000000000 .LASF81 +0000000000013681 l .debug_loc 0000000000000000 .LLST18 +00000000000136b7 l .debug_loc 0000000000000000 .LLST19 +0000000000006dc2 l .text 0000000000000000 .LVL59 +0000000000006dd2 l .text 0000000000000000 .LVL60 +0000000000006dea l .text 0000000000000000 .LVL62 +0000000000006e02 l .text 0000000000000000 .LVL63 +0000000000006e0c l .text 0000000000000000 .LVL64 +0000000000012d68 l .debug_str 0000000000000000 .LASF83 +0000000000006b8e l .text 0000000000000000 .LFB4 +0000000000006da6 l .text 0000000000000000 .LFE4 +0000000000013702 l .debug_loc 0000000000000000 .LLST3 +000000000001379d l .debug_loc 0000000000000000 .LLST4 +00000000000137ff l .debug_loc 0000000000000000 .LLST5 +0000000000012cb9 l .debug_str 0000000000000000 .LASF84 +000000000001389a l .debug_loc 0000000000000000 .LLST6 +000000000001313a l .debug_str 0000000000000000 .LASF85 +00000000000138f8 l .debug_loc 0000000000000000 .LLST7 +0000000000012e88 l .debug_str 0000000000000000 .LASF86 +0000000000013942 l .debug_loc 0000000000000000 .LLST8 +0000000000012cd3 l .debug_str 0000000000000000 .LASF87 +00000000000139b1 l .debug_loc 0000000000000000 .LLST9 +0000000000012c98 l .debug_str 0000000000000000 .LASF88 +0000000000013a34 l .debug_loc 0000000000000000 .LLST10 +0000000000012deb l .debug_str 0000000000000000 .LASF89 +0000000000013acb l .debug_loc 0000000000000000 .LLST11 +0000000000012caa l .debug_str 0000000000000000 .LASF90 +0000000000013b3c l .debug_loc 0000000000000000 .LLST12 +0000000000012f59 l .debug_str 0000000000000000 .LASF91 +0000000000013bd4 l .debug_loc 0000000000000000 .LLST13 +0000000000013c30 l .debug_loc 0000000000000000 .LLST14 +0000000000012e08 l .debug_str 0000000000000000 .LASF107 +0000000000006be2 l .text 0000000000000000 .LVL9 +0000000000006bfc l .text 0000000000000000 .LVL11 +0000000000006c08 l .text 0000000000000000 .LVL13 +0000000000006c20 l .text 0000000000000000 .LVL15 +0000000000006c34 l .text 0000000000000000 .LVL17 +0000000000006c52 l .text 0000000000000000 .LVL20 +0000000000006c88 l .text 0000000000000000 .LVL24 +0000000000006c9a l .text 0000000000000000 .LVL26 +0000000000006ca8 l .text 0000000000000000 .LVL27 +0000000000006cb6 l .text 0000000000000000 .LVL29 +0000000000006cc8 l .text 0000000000000000 .LVL31 +0000000000006cd6 l .text 0000000000000000 .LVL32 +0000000000006cee l .text 0000000000000000 .LVL34 +0000000000006d22 l .text 0000000000000000 .LVL40 +0000000000006d32 l .text 0000000000000000 .LVL43 +0000000000006d48 l .text 0000000000000000 .LVL46 +0000000000006d60 l .text 0000000000000000 .LVL49 +0000000000006d78 l .text 0000000000000000 .LVL50 +0000000000006d8c l .text 0000000000000000 .LVL53 +0000000000006d9a l .text 0000000000000000 .LVL54 +0000000000012e2a l .debug_str 0000000000000000 .LASF92 +0000000000006b44 l .text 0000000000000000 .LFB3 +0000000000006b8e l .text 0000000000000000 .LFE3 +0000000000013c7b l .debug_loc 0000000000000000 .LLST0 +0000000000013cda l .debug_loc 0000000000000000 .LLST1 +0000000000013d13 l .debug_loc 0000000000000000 .LLST2 +0000000000006b68 l .text 0000000000000000 .LVL3 +0000000000006b8e l .text 0000000000000000 .LVL5 +0000000000012ed6 l .debug_str 0000000000000000 .LASF93 +0000000000012cc0 l .debug_str 0000000000000000 .LASF94 +0000000000012d7f l .debug_str 0000000000000000 .LASF95 +0000000000012ef0 l .debug_str 0000000000000000 .LASF96 +0000000000012e8f l .debug_str 0000000000000000 .LASF97 +0000000000012dc8 l .debug_str 0000000000000000 .LASF98 +0000000000012d78 l .debug_str 0000000000000000 .LASF99 +00000000000130f7 l .debug_str 0000000000000000 .LASF100 +0000000000012df3 l .debug_str 0000000000000000 .LASF101 +0000000000012ea3 l .debug_str 0000000000000000 .LASF102 +0000000000006da6 l .text 0000000000000000 .LVL57 +0000000000006e16 l .text 0000000000000000 .LVL66 +0000000000006db6 l .text 0000000000000000 .LVL58 +0000000000006e18 l .text 0000000000000000 .LVL67 +0000000000006dd4 l .text 0000000000000000 .LVL61 +0000000000006e12 l .text 0000000000000000 .LVL65 +0000000000006b8e l .text 0000000000000000 .LVL6 +0000000000006c58 l .text 0000000000000000 .LVL22 +0000000000006c80 l .text 0000000000000000 .LVL23 +0000000000006cf2 l .text 0000000000000000 .LVL35 +0000000000006d0e l .text 0000000000000000 .LVL38 +0000000000006bb8 l .text 0000000000000000 .LVL7 +0000000000006bd8 l .text 0000000000000000 .LVL8 +0000000000006cf4 l .text 0000000000000000 .LVL36 +0000000000006cae l .text 0000000000000000 .LVL28 +0000000000006cea l .text 0000000000000000 .LVL33 +0000000000006d24 l .text 0000000000000000 .LVL41 +0000000000006d9c l .text 0000000000000000 .LVL55 +0000000000006d12 l .text 0000000000000000 .LVL39 +0000000000006d26 l .text 0000000000000000 .LVL42 +0000000000006c92 l .text 0000000000000000 .LVL25 +0000000000006cc0 l .text 0000000000000000 .LVL30 +0000000000006da4 l .text 0000000000000000 .LVL56 +0000000000006d34 l .text 0000000000000000 .LVL44 +0000000000006d40 l .text 0000000000000000 .LVL45 +0000000000006d7e l .text 0000000000000000 .LVL51 +0000000000006d82 l .text 0000000000000000 .LVL52 +0000000000006d56 l .text 0000000000000000 .LVL48 +0000000000006cfc l .text 0000000000000000 .LVL37 +0000000000006c00 l .text 0000000000000000 .LVL12 +0000000000006c3a l .text 0000000000000000 .LVL18 +0000000000006c4a l .text 0000000000000000 .LVL19 +0000000000006bfa l .text 0000000000000000 .LVL10 +0000000000006c24 l .text 0000000000000000 .LVL16 +0000000000006d4a l .text 0000000000000000 .LVL47 +0000000000006b44 l .text 0000000000000000 .LVL0 +0000000000006b58 l .text 0000000000000000 .LVL1 +0000000000006b7e l .text 0000000000000000 .LVL4 +0000000000006b60 l .text 0000000000000000 .LVL2 +000000000001b91f l .debug_info 0000000000000000 .Ldebug_info0 +0000000000006b44 l .text 0000000000000000 .L0 +0000000000006b8e l .text 0000000000000000 .L0 +0000000000006da6 l .text 0000000000000000 .L0 +0000000000006b44 l .text 0000000000000000 .L0 +0000000000006b44 l .text 0000000000000000 .L0 +0000000000006b4c l .text 0000000000000000 .L0 +0000000000006b4e l .text 0000000000000000 .L0 +0000000000006b50 l .text 0000000000000000 .L0 +0000000000006b52 l .text 0000000000000000 .L0 +0000000000006b56 l .text 0000000000000000 .L0 +0000000000006b68 l .text 0000000000000000 .L0 +0000000000006b70 l .text 0000000000000000 .L0 +0000000000006b72 l .text 0000000000000000 .L0 +0000000000006b72 l .text 0000000000000000 .L0 +0000000000006b7c l .text 0000000000000000 .L0 +0000000000006b80 l .text 0000000000000000 .L0 +0000000000006b82 l .text 0000000000000000 .L0 +0000000000006b86 l .text 0000000000000000 .L0 +0000000000006b8e l .text 0000000000000000 .L0 +0000000000006b8e l .text 0000000000000000 .L0 +0000000000006b8e l .text 0000000000000000 .L0 +0000000000006b8e l .text 0000000000000000 .L0 +0000000000006b8e l .text 0000000000000000 .L0 +0000000000006b8e l .text 0000000000000000 .L0 +0000000000006b8e l .text 0000000000000000 .L0 +0000000000006b8e l .text 0000000000000000 .L0 +0000000000006b8e l .text 0000000000000000 .L0 +0000000000006b8e l .text 0000000000000000 .L0 +0000000000006b8e l .text 0000000000000000 .L0 +0000000000006b8e l .text 0000000000000000 .L0 +0000000000006baa l .text 0000000000000000 .L0 +0000000000006bac l .text 0000000000000000 .L0 +0000000000006bae l .text 0000000000000000 .L0 +0000000000006bb2 l .text 0000000000000000 .L0 +0000000000006bb2 l .text 0000000000000000 .L0 +0000000000006bb4 l .text 0000000000000000 .L0 +0000000000006bb8 l .text 0000000000000000 .L0 +0000000000006bd0 l .text 0000000000000000 .L0 +0000000000006bd8 l .text 0000000000000000 .L0 +0000000000006bda l .text 0000000000000000 .L0 +0000000000006be2 l .text 0000000000000000 .L0 +0000000000006bf0 l .text 0000000000000000 .L0 +0000000000006bf2 l .text 0000000000000000 .L0 +0000000000006bf6 l .text 0000000000000000 .L0 +0000000000006bf8 l .text 0000000000000000 .L0 +0000000000006bfc l .text 0000000000000000 .L0 +0000000000006bfc l .text 0000000000000000 .L0 +0000000000006bfc l .text 0000000000000000 .L0 +0000000000006bfe l .text 0000000000000000 .L0 +0000000000006c00 l .text 0000000000000000 .L0 +0000000000006c00 l .text 0000000000000000 .L0 +0000000000006c08 l .text 0000000000000000 .L0 +0000000000006c0c l .text 0000000000000000 .L0 +0000000000006c0c l .text 0000000000000000 .L0 +0000000000006c0c l .text 0000000000000000 .L0 +0000000000006c20 l .text 0000000000000000 .L0 +0000000000006c22 l .text 0000000000000000 .L0 +0000000000006c24 l .text 0000000000000000 .L0 +0000000000006c28 l .text 0000000000000000 .L0 +0000000000006c28 l .text 0000000000000000 .L0 +0000000000006c2c l .text 0000000000000000 .L0 +0000000000006c2c l .text 0000000000000000 .L0 +0000000000006c34 l .text 0000000000000000 .L0 +0000000000006c3a l .text 0000000000000000 .L0 +0000000000006c4a l .text 0000000000000000 .L0 +0000000000006c4a l .text 0000000000000000 .L0 +0000000000006c52 l .text 0000000000000000 .L0 +0000000000006c56 l .text 0000000000000000 .L0 +0000000000006c5c l .text 0000000000000000 .L0 +0000000000006c5e l .text 0000000000000000 .L0 +0000000000006c60 l .text 0000000000000000 .L0 +0000000000006c62 l .text 0000000000000000 .L0 +0000000000006c6e l .text 0000000000000000 .L0 +0000000000006c76 l .text 0000000000000000 .L0 +0000000000006c80 l .text 0000000000000000 .L0 +0000000000006c80 l .text 0000000000000000 .L0 +0000000000006c80 l .text 0000000000000000 .L0 +0000000000006c8a l .text 0000000000000000 .L0 +0000000000006c92 l .text 0000000000000000 .L0 +0000000000006c9a l .text 0000000000000000 .L0 +0000000000006ca0 l .text 0000000000000000 .L0 +0000000000006ca0 l .text 0000000000000000 .L0 +0000000000006ca8 l .text 0000000000000000 .L0 +0000000000006cae l .text 0000000000000000 .L0 +0000000000006cae l .text 0000000000000000 .L0 +0000000000006cae l .text 0000000000000000 .L0 +0000000000006cb8 l .text 0000000000000000 .L0 +0000000000006cc0 l .text 0000000000000000 .L0 +0000000000006cc8 l .text 0000000000000000 .L0 +0000000000006cce l .text 0000000000000000 .L0 +0000000000006cce l .text 0000000000000000 .L0 +0000000000006cd6 l .text 0000000000000000 .L0 +0000000000006cdc l .text 0000000000000000 .L0 +0000000000006cea l .text 0000000000000000 .L0 +0000000000006cee l .text 0000000000000000 .L0 +0000000000006cee l .text 0000000000000000 .L0 +0000000000006d0e l .text 0000000000000000 .L0 +0000000000006d0e l .text 0000000000000000 .L0 +0000000000006d12 l .text 0000000000000000 .L0 +0000000000006d12 l .text 0000000000000000 .L0 +0000000000006d12 l .text 0000000000000000 .L0 +0000000000006d12 l .text 0000000000000000 .L0 +0000000000006d16 l .text 0000000000000000 .L0 +0000000000006d16 l .text 0000000000000000 .L0 +0000000000006d24 l .text 0000000000000000 .L0 +0000000000006d24 l .text 0000000000000000 .L0 +0000000000006d26 l .text 0000000000000000 .L0 +0000000000006d26 l .text 0000000000000000 .L0 +0000000000006d34 l .text 0000000000000000 .L0 +0000000000006d34 l .text 0000000000000000 .L0 +0000000000006d36 l .text 0000000000000000 .L0 +0000000000006d36 l .text 0000000000000000 .L0 +0000000000006d4a l .text 0000000000000000 .L0 +0000000000006d4a l .text 0000000000000000 .L0 +0000000000006d4e l .text 0000000000000000 .L0 +0000000000006d78 l .text 0000000000000000 .L0 +0000000000006d78 l .text 0000000000000000 .L0 +0000000000006d7e l .text 0000000000000000 .L0 +0000000000006d7e l .text 0000000000000000 .L0 +0000000000006d82 l .text 0000000000000000 .L0 +0000000000006d8c l .text 0000000000000000 .L0 +0000000000006d8c l .text 0000000000000000 .L0 +0000000000006d90 l .text 0000000000000000 .L0 +0000000000006d9c l .text 0000000000000000 .L0 +0000000000006d9c l .text 0000000000000000 .L0 +0000000000006da0 l .text 0000000000000000 .L0 +0000000000006da2 l .text 0000000000000000 .L0 +0000000000006da6 l .text 0000000000000000 .L0 +0000000000006da6 l .text 0000000000000000 .L0 +0000000000006da6 l .text 0000000000000000 .L0 +0000000000006da6 l .text 0000000000000000 .L0 +0000000000006db4 l .text 0000000000000000 .L0 +0000000000006db6 l .text 0000000000000000 .L0 +0000000000006dba l .text 0000000000000000 .L0 +0000000000006dc2 l .text 0000000000000000 .L0 +0000000000006dc2 l .text 0000000000000000 .L0 +0000000000006dc2 l .text 0000000000000000 .L0 +0000000000006dc4 l .text 0000000000000000 .L0 +0000000000006dc6 l .text 0000000000000000 .L0 +0000000000006dca l .text 0000000000000000 .L0 +0000000000006dca l .text 0000000000000000 .L0 +0000000000006dd4 l .text 0000000000000000 .L0 +0000000000006dd4 l .text 0000000000000000 .L0 +0000000000006dd8 l .text 0000000000000000 .L0 +0000000000006e02 l .text 0000000000000000 .L0 +0000000000006e0c l .text 0000000000000000 .L0 +0000000000006e0c l .text 0000000000000000 .L0 +0000000000006e1e l .text 0000000000000000 .L0 +00000000000023d8 l .debug_frame 0000000000000000 .L0 +0000000000006b44 l .text 0000000000000000 .L0 +0000000000006b8e l .text 0000000000000000 .L0 +0000000000006b8e l .text 0000000000000000 .L0 +0000000000006da6 l .text 0000000000000000 .L0 +0000000000006da6 l .text 0000000000000000 .L0 +0000000000006e1e l .text 0000000000000000 .L0 +0000000000006b7e l .text 0000000000000000 .L0 +0000000000006b4c l .text 0000000000000000 .L0 +0000000000006bb4 l .text 0000000000000000 .L0 +0000000000006baa l .text 0000000000000000 .L0 +0000000000006bda l .text 0000000000000000 .L0 +0000000000006bd0 l .text 0000000000000000 .L0 +0000000000006be2 l .text 0000000000000000 .L0 +0000000000006cf0 l .text 0000000000000000 .L0 +0000000000006e0e l .text 0000000000000000 .L0 +0000000000006db4 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 nsh_printf.c +000000000000c3c0 l .rodata 0000000000000000 .LC6 +0000000000006e46 l .text 0000000000000000 .L0 +000000000000c3b8 l .rodata 0000000000000000 .LC5 +0000000000006e52 l .text 0000000000000000 .L0 +000000000000c3a0 l .rodata 0000000000000000 .LC2 +0000000000006e62 l .text 0000000000000000 .L0 +000000000000c388 l .rodata 0000000000000000 .LC0 +0000000000006f12 l .text 0000000000000000 .L0 +000000000000c398 l .rodata 0000000000000000 .LC1 +0000000000006f32 l .text 0000000000000000 .L0 +000000000000c3a8 l .rodata 0000000000000000 .LC3 +0000000000006f54 l .text 0000000000000000 .L0 +000000000000c3b0 l .rodata 0000000000000000 .LC4 +0000000000006f64 l .text 0000000000000000 .L0 +0000000000006e92 l .text 0000000000000000 .L11 +0000000000006f74 l .text 0000000000000000 .L3 +0000000000006f6e l .text 0000000000000000 .L4 +0000000000006ec2 l .text 0000000000000000 .L5 +0000000000006f52 l .text 0000000000000000 .L6 +0000000000006f62 l .text 0000000000000000 .L7 +0000000000006e6a l .text 0000000000000000 .L2 +0000000000006ebe l .text 0000000000000000 .L8 +0000000000006f20 l .text 0000000000000000 .L9 +0000000000006f40 l .text 0000000000000000 .L10 +0000000000006f5c l .text 0000000000000000 .L13 +0000000000006e55 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +00000000000133fb l .debug_str 0000000000000000 .LASF79 +00000000000132d0 l .debug_str 0000000000000000 .LASF80 +0000000000013245 l .debug_str 0000000000000000 .LASF81 +0000000000002280 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +00000000000128c3 l .debug_line 0000000000000000 .Ldebug_line0 +00000000000131ab l .debug_str 0000000000000000 .LASF0 +0000000000013380 l .debug_str 0000000000000000 .LASF3 +000000000001331c l .debug_str 0000000000000000 .LASF1 +000000000001332a l .debug_str 0000000000000000 .LASF2 +00000000000132dd l .debug_str 0000000000000000 .LASF4 +0000000000013280 l .debug_str 0000000000000000 .LASF5 +0000000000013238 l .debug_str 0000000000000000 .LASF6 +00000000000131d0 l .debug_str 0000000000000000 .LASF7 +0000000000013263 l .debug_str 0000000000000000 .LASF8 +00000000000134b5 l .debug_str 0000000000000000 .LASF9 +000000000001329c l .debug_str 0000000000000000 .LASF10 +000000000001316a l .debug_str 0000000000000000 .LASF11 +00000000000133a5 l .debug_str 0000000000000000 .LASF12 +00000000000131f4 l .debug_str 0000000000000000 .LASF13 +0000000000013150 l .debug_str 0000000000000000 .LASF14 +0000000000013157 l .debug_str 0000000000000000 .LASF15 +0000000000013389 l .debug_str 0000000000000000 .LASF16 +00000000000132ca l .debug_str 0000000000000000 .LASF17 +000000000001319d l .debug_str 0000000000000000 .LASF18 +0000000000013211 l .debug_str 0000000000000000 .LASF19 +000000000001315f l .debug_str 0000000000000000 .LASF25 +00000000000134e7 l .debug_str 0000000000000000 .LASF20 +000000000001336f l .debug_str 0000000000000000 .LASF21 +0000000000013205 l .debug_str 0000000000000000 .LASF22 +00000000000132aa l .debug_str 0000000000000000 .LASF23 +00000000000133be l .debug_str 0000000000000000 .LASF24 +0000000000013345 l .debug_str 0000000000000000 .LASF26 +00000000000134ca l .debug_str 0000000000000000 .LASF27 +00000000000132bb l .debug_str 0000000000000000 .LASF28 +00000000000133e9 l .debug_str 0000000000000000 .LASF29 +00000000000133c7 l .debug_str 0000000000000000 .LASF30 +00000000000133b3 l .debug_str 0000000000000000 .LASF31 +00000000000132e7 l .debug_str 0000000000000000 .LASF32 +00000000000131ca l .debug_str 0000000000000000 .LASF33 +000000000001321d l .debug_str 0000000000000000 .LASF34 +0000000000013355 l .debug_str 0000000000000000 .LASF35 +0000000000013229 l .debug_str 0000000000000000 .LASF36 +0000000000013303 l .debug_str 0000000000000000 .LASF37 +000000000001333f l .debug_str 0000000000000000 .LASF38 +00000000000134d9 l .debug_str 0000000000000000 .LASF39 +00000000000131e2 l .debug_str 0000000000000000 .LASF40 +00000000000131fd l .debug_str 0000000000000000 .LASF41 +00000000000131d9 l .debug_str 0000000000000000 .LASF42 +00000000000131eb l .debug_str 0000000000000000 .LASF43 +000000000001338e l .debug_str 0000000000000000 .LASF44 +00000000000133d6 l .debug_str 0000000000000000 .LASF45 +0000000000013316 l .debug_str 0000000000000000 .LASF46 +00000000000134c4 l .debug_str 0000000000000000 .LASF82 +0000000000013181 l .debug_str 0000000000000000 .LASF47 +000000000001318d l .debug_str 0000000000000000 .LASF48 +0000000000013275 l .debug_str 0000000000000000 .LASF49 +0000000000013232 l .debug_str 0000000000000000 .LASF50 +0000000000013192 l .debug_str 0000000000000000 .LASF51 +00000000000133d0 l .debug_str 0000000000000000 .LASF52 +000000000001335d l .debug_str 0000000000000000 .LASF53 +00000000000131b7 l .debug_str 0000000000000000 .LASF54 +00000000000132a4 l .debug_str 0000000000000000 .LASF55 +00000000000133ad l .debug_str 0000000000000000 .LASF56 +00000000000132f4 l .debug_str 0000000000000000 .LASF57 +00000000000132b4 l .debug_str 0000000000000000 .LASF58 +0000000000013145 l .debug_str 0000000000000000 .LASF59 +00000000000132fa l .debug_str 0000000000000000 .LASF60 +0000000000013293 l .debug_str 0000000000000000 .LASF61 +0000000000013350 l .debug_str 0000000000000000 .LASF62 +00000000000133f2 l .debug_str 0000000000000000 .LASF63 +0000000000013399 l .debug_str 0000000000000000 .LASF64 +00000000000134be l .debug_str 0000000000000000 .LASF65 +00000000000134ab l .debug_str 0000000000000000 .LASF66 +000000000001339e l .debug_str 0000000000000000 .LASF67 +000000000001330b l .debug_str 0000000000000000 .LASF68 +000000000001327a l .debug_str 0000000000000000 .LASF69 +0000000000013334 l .debug_str 0000000000000000 .LASF70 +00000000000131bf l .debug_str 0000000000000000 .LASF71 +000000000001337b l .debug_str 0000000000000000 .LASF72 +00000000000132c5 l .debug_str 0000000000000000 .LASF73 +0000000000013364 l .debug_str 0000000000000000 .LASF83 +0000000000006e1e l .text 0000000000000000 .LFB1 +0000000000006f7e l .text 0000000000000000 .LFE1 +00000000000134d4 l .debug_str 0000000000000000 .LASF74 +0000000000013d4c l .debug_loc 0000000000000000 .LLST0 +00000000000134e2 l .debug_str 0000000000000000 .LASF75 +0000000000013dab l .debug_loc 0000000000000000 .LLST1 +00000000000134f1 l .debug_str 0000000000000000 .LASF76 +0000000000013de4 l .debug_loc 0000000000000000 .LLST2 +0000000000013e43 l .debug_loc 0000000000000000 .LLST3 +0000000000013ef5 l .debug_loc 0000000000000000 .LLST4 +0000000000013fd0 l .debug_loc 0000000000000000 .LLST5 +0000000000013ff4 l .debug_loc 0000000000000000 .LLST6 +000000000001403d l .debug_loc 0000000000000000 .LLST7 +0000000000006eda l .text 0000000000000000 .LVL14 +0000000000006eee l .text 0000000000000000 .LVL16 +0000000000006f1e l .text 0000000000000000 .LVL19 +0000000000006f3e l .text 0000000000000000 .LVL22 +0000000000006f50 l .text 0000000000000000 .LVL25 +0000000000006f60 l .text 0000000000000000 .LVL28 +0000000000006f7c l .text 0000000000000000 .LVL34 +00000000000133e1 l .debug_str 0000000000000000 .LASF77 +00000000000134f6 l .debug_str 0000000000000000 .LASF78 +0000000000006e1e l .text 0000000000000000 .LVL0 +0000000000006e6a l .text 0000000000000000 .LVL1 +0000000000006e76 l .text 0000000000000000 .LVL2 +0000000000006e92 l .text 0000000000000000 .LVL5 +0000000000006e7c l .text 0000000000000000 .LVL4 +0000000000006e9a l .text 0000000000000000 .LVL6 +0000000000006ea2 l .text 0000000000000000 .LVL7 +0000000000006ebe l .text 0000000000000000 .LVL9 +0000000000006ec2 l .text 0000000000000000 .LVL11 +0000000000006eca l .text 0000000000000000 .LVL12 +0000000000006f52 l .text 0000000000000000 .LVL26 +0000000000006f62 l .text 0000000000000000 .LVL29 +0000000000006f74 l .text 0000000000000000 .LVL33 +0000000000006ea6 l .text 0000000000000000 .LVL8 +0000000000006ece l .text 0000000000000000 .LVL13 +0000000000006f54 l .text 0000000000000000 .LVL27 +0000000000006f64 l .text 0000000000000000 .LVL30 +0000000000006f6e l .text 0000000000000000 .LVL31 +0000000000006f70 l .text 0000000000000000 .LVL32 +0000000000006ee6 l .text 0000000000000000 .LVL15 +0000000000006ef0 l .text 0000000000000000 .LVL17 +0000000000006f1c l .text 0000000000000000 .LVL18 +0000000000006f20 l .text 0000000000000000 .LVL20 +0000000000006f3c l .text 0000000000000000 .LVL21 +0000000000006f40 l .text 0000000000000000 .LVL23 +0000000000006f4e l .text 0000000000000000 .LVL24 +0000000000006e78 l .text 0000000000000000 .LVL3 +0000000000006ec0 l .text 0000000000000000 .LVL10 +000000000001c3be l .debug_info 0000000000000000 .Ldebug_info0 +0000000000006e1e l .text 0000000000000000 .L0 +0000000000006e1e l .text 0000000000000000 .L0 +0000000000006e1e l .text 0000000000000000 .L0 +0000000000006e1e l .text 0000000000000000 .L0 +0000000000006e1e l .text 0000000000000000 .L0 +0000000000006e1e l .text 0000000000000000 .L0 +0000000000006e1e l .text 0000000000000000 .L0 +0000000000006e1e l .text 0000000000000000 .L0 +0000000000006e3a l .text 0000000000000000 .L0 +0000000000006e40 l .text 0000000000000000 .L0 +0000000000006e42 l .text 0000000000000000 .L0 +0000000000006e46 l .text 0000000000000000 .L0 +0000000000006e4e l .text 0000000000000000 .L0 +0000000000006e52 l .text 0000000000000000 .L0 +0000000000006e5a l .text 0000000000000000 .L0 +0000000000006e5e l .text 0000000000000000 .L0 +0000000000006e60 l .text 0000000000000000 .L0 +0000000000006e62 l .text 0000000000000000 .L0 +0000000000006e6a l .text 0000000000000000 .L0 +0000000000006e6a l .text 0000000000000000 .L0 +0000000000006e72 l .text 0000000000000000 .L0 +0000000000006e72 l .text 0000000000000000 .L0 +0000000000006e92 l .text 0000000000000000 .L0 +0000000000006e92 l .text 0000000000000000 .L0 +0000000000006e9a l .text 0000000000000000 .L0 +0000000000006e9a l .text 0000000000000000 .L0 +0000000000006ea2 l .text 0000000000000000 .L0 +0000000000006ea2 l .text 0000000000000000 .L0 +0000000000006ea2 l .text 0000000000000000 .L0 +0000000000006ea6 l .text 0000000000000000 .L0 +0000000000006ebe l .text 0000000000000000 .L0 +0000000000006ec2 l .text 0000000000000000 .L0 +0000000000006ec6 l .text 0000000000000000 .L0 +0000000000006ec6 l .text 0000000000000000 .L0 +0000000000006eca l .text 0000000000000000 .L0 +0000000000006eca l .text 0000000000000000 .L0 +0000000000006eda l .text 0000000000000000 .L0 +0000000000006edc l .text 0000000000000000 .L0 +0000000000006ee0 l .text 0000000000000000 .L0 +0000000000006ee4 l .text 0000000000000000 .L0 +0000000000006ee6 l .text 0000000000000000 .L0 +0000000000006ee6 l .text 0000000000000000 .L0 +0000000000006eee l .text 0000000000000000 .L0 +0000000000006ef0 l .text 0000000000000000 .L0 +0000000000006ef0 l .text 0000000000000000 .L0 +0000000000006ef6 l .text 0000000000000000 .L0 +0000000000006f20 l .text 0000000000000000 .L0 +0000000000006f20 l .text 0000000000000000 .L0 +0000000000006f24 l .text 0000000000000000 .L0 +0000000000006f40 l .text 0000000000000000 .L0 +0000000000006f40 l .text 0000000000000000 .L0 +0000000000006f44 l .text 0000000000000000 .L0 +0000000000006f52 l .text 0000000000000000 .L0 +0000000000006f5c l .text 0000000000000000 .L0 +0000000000006f60 l .text 0000000000000000 .L0 +0000000000006f62 l .text 0000000000000000 .L0 +0000000000006f6e l .text 0000000000000000 .L0 +0000000000006f74 l .text 0000000000000000 .L0 +0000000000006f7e l .text 0000000000000000 .L0 +00000000000024d0 l .debug_frame 0000000000000000 .L0 +0000000000006e1e l .text 0000000000000000 .L0 +0000000000006f7e l .text 0000000000000000 .L0 +0000000000006e74 l .text 0000000000000000 .L0 +0000000000006e3a l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 nsh_proccmds.c +0000000000006f7e l F .text 0000000000000470 ps_callback +000000000000c6c8 l O .rodata 000000000000000a g_priority +000000000000c6d8 l O .rodata 000000000000000b g_scheduler +000000000000c6e8 l O .rodata 0000000000000009 g_sigmask +000000000000c6f8 l O .rodata 000000000000000b g_stacksize +000000000000c708 l O .rodata 000000000000000b g_stackused +0000000000000000 l O .srodata.g_flags 0000000000000007 g_flags +0000000000000000 l O .srodata.g_groupid 0000000000000007 g_groupid +0000000000000000 l O .srodata.g_state 0000000000000007 g_state +0000000000000000 l O .srodata.g_type 0000000000000006 g_type +000000000000c3d0 l .rodata 0000000000000000 .LC1 +0000000000006fd0 l .text 0000000000000000 .L0 +000000000000c3e0 l .rodata 0000000000000000 .LC2 +0000000000006ff8 l .text 0000000000000000 .L0 +000000000000c3f0 l .rodata 0000000000000000 .LC3 +0000000000007000 l .text 0000000000000000 .L0 +0000000000007008 l .text 0000000000000000 .L0 +000000000000c3c8 l .rodata 0000000000000000 .LC0 +0000000000007014 l .text 0000000000000000 .L0 +0000000000007036 l .text 0000000000000000 .L0 +0000000000007058 l .text 0000000000000000 .L0 +0000000000000000 l .srodata.g_type 0000000000000000 .LANCHOR0 +0000000000007082 l .text 0000000000000000 .L0 +000000000000c3f8 l .rodata 0000000000000000 .LC4 +00000000000070b6 l .text 0000000000000000 .L0 +000000000000c428 l .rodata 0000000000000000 .LC5 +00000000000070ce l .text 0000000000000000 .L0 +00000000000070f8 l .text 0000000000000000 .L0 +0000000000007100 l .text 0000000000000000 .L0 +0000000000007108 l .text 0000000000000000 .L0 +0000000000000000 l .srodata.g_groupid 0000000000000000 .LANCHOR1 +000000000000712a l .text 0000000000000000 .L0 +0000000000000000 l .srodata.g_state 0000000000000000 .LANCHOR2 +0000000000007150 l .text 0000000000000000 .L0 +0000000000000000 l .srodata.g_flags 0000000000000000 .LANCHOR3 +0000000000007194 l .text 0000000000000000 .L0 +000000000000c6c8 l .rodata 0000000000000000 .LANCHOR4 +00000000000071ba l .text 0000000000000000 .L0 +000000000000c6d8 l .rodata 0000000000000000 .LANCHOR5 +00000000000071f8 l .text 0000000000000000 .L0 +000000000000c6e8 l .rodata 0000000000000000 .LANCHOR6 +000000000000721e l .text 0000000000000000 .L0 +000000000000724e l .text 0000000000000000 .L0 +000000000000c6f8 l .rodata 0000000000000000 .LANCHOR7 +0000000000007276 l .text 0000000000000000 .L0 +000000000000c708 l .rodata 0000000000000000 .LANCHOR8 +000000000000727e l .text 0000000000000000 .L0 +000000000000c438 l .rodata 0000000000000000 .LC6 +00000000000072e0 l .text 0000000000000000 .L0 +000000000000c458 l .rodata 0000000000000000 .LC7 +00000000000072fe l .text 0000000000000000 .L0 +0000000000007326 l .text 0000000000000000 .L0 +000000000000732e l .text 0000000000000000 .L0 +0000000000007336 l .text 0000000000000000 .L0 +0000000000007398 l .text 0000000000000000 .L0 +000000000000c468 l .rodata 0000000000000000 .LC8 +00000000000073ca l .text 0000000000000000 .L0 +00000000000073d6 l .text 0000000000000000 .L38 +0000000000006fc8 l .text 0000000000000000 .L4 +0000000000006fb0 l .text 0000000000000000 .L3 +0000000000006fec l .text 0000000000000000 .L6 +000000000000702c l .text 0000000000000000 .L7 +00000000000070a8 l .text 0000000000000000 .L8 +0000000000007014 l .text 0000000000000000 .L39 +00000000000073e4 l .text 0000000000000000 .L10 +0000000000007124 l .text 0000000000000000 .L11 +0000000000007128 l .text 0000000000000000 .L12 +0000000000007120 l .text 0000000000000000 .L40 +00000000000070ec l .text 0000000000000000 .L22 +0000000000007244 l .text 0000000000000000 .L23 +00000000000072d0 l .text 0000000000000000 .L24 +000000000000706e l .text 0000000000000000 .L21 +0000000000007072 l .text 0000000000000000 .L9 +000000000000714e l .text 0000000000000000 .L14 +00000000000070a4 l .text 0000000000000000 .L13 +0000000000007192 l .text 0000000000000000 .L15 +00000000000071b8 l .text 0000000000000000 .L16 +00000000000071f6 l .text 0000000000000000 .L17 +00000000000071f2 l .text 0000000000000000 .L19 +00000000000071e0 l .text 0000000000000000 .L18 +000000000000721c l .text 0000000000000000 .L20 +000000000000711a l .text 0000000000000000 .L41 +00000000000073da l .text 0000000000000000 .L26 +0000000000007366 l .text 0000000000000000 .L27 +000000000000736a l .text 0000000000000000 .L28 +0000000000007362 l .text 0000000000000000 .L42 +000000000000731a l .text 0000000000000000 .L32 +000000000000738e l .text 0000000000000000 .L33 +0000000000007286 l .text 0000000000000000 .L30 +000000000000728a l .text 0000000000000000 .L25 +00000000000072b8 l .text 0000000000000000 .L29 +0000000000007344 l .text 0000000000000000 .L52 +0000000000007296 l .text 0000000000000000 .L35 +0000000000007080 l .text 0000000000000000 .L36 +0000000000007424 l .text 0000000000000000 .L0 +000000000000c470 l .rodata 0000000000000000 .LC9 +0000000000007444 l .text 0000000000000000 .L0 +000000000000741e l .text 0000000000000000 .L55 +000000000000743e l .text 0000000000000000 .L56 +0000000000007432 l .text 0000000000000000 .L57 +000000000000c4f0 l .rodata 0000000000000000 .LC17 +0000000000007456 l .text 0000000000000000 .L0 +000000000000c4f8 l .rodata 0000000000000000 .LC18 +0000000000007460 l .text 0000000000000000 .L0 +000000000000c500 l .rodata 0000000000000000 .LC19 +000000000000746a l .text 0000000000000000 .L0 +000000000000c508 l .rodata 0000000000000000 .LC20 +0000000000007474 l .text 0000000000000000 .L0 +000000000000c510 l .rodata 0000000000000000 .LC21 +000000000000747e l .text 0000000000000000 .L0 +000000000000c518 l .rodata 0000000000000000 .LC22 +0000000000007488 l .text 0000000000000000 .L0 +000000000000c520 l .rodata 0000000000000000 .LC23 +0000000000007492 l .text 0000000000000000 .L0 +000000000000c498 l .rodata 0000000000000000 .LC13 +00000000000074a4 l .text 0000000000000000 .L0 +000000000000c4a0 l .rodata 0000000000000000 .LC14 +00000000000074ac l .text 0000000000000000 .L0 +000000000000c4a8 l .rodata 0000000000000000 .LC15 +00000000000074b4 l .text 0000000000000000 .L0 +000000000000c4b0 l .rodata 0000000000000000 .LC16 +00000000000074bc l .text 0000000000000000 .L0 +000000000000c480 l .rodata 0000000000000000 .LC10 +00000000000074c4 l .text 0000000000000000 .L0 +000000000000c488 l .rodata 0000000000000000 .LC11 +00000000000074cc l .text 0000000000000000 .L0 +000000000000c490 l .rodata 0000000000000000 .LC12 +00000000000074d4 l .text 0000000000000000 .L0 +00000000000074e8 l .text 0000000000000000 .L0 +000000000000c528 l .rodata 0000000000000000 .LC24 +00000000000074f0 l .text 0000000000000000 .L0 +00000000000074f8 l .text 0000000000000000 .L0 +000000000000c530 l .rodata 0000000000000000 .LC25 +0000000000007542 l .text 0000000000000000 .L0 +000000000000754a l .text 0000000000000000 .L0 +000000000000c538 l .rodata 0000000000000000 .LC26 +0000000000007570 l .text 0000000000000000 .L0 +000000000000756a l .text 0000000000000000 .L70 +0000000000007578 l .text 0000000000000000 .L67 +0000000000007558 l .text 0000000000000000 .L66 +00000000000075ea l .text 0000000000000000 .L0 +000000000000c540 l .rodata 0000000000000000 .LC27 +000000000000765a l .text 0000000000000000 .L0 +0000000000007662 l .text 0000000000000000 .L0 +0000000000007672 l .text 0000000000000000 .L0 +000000000000767a l .text 0000000000000000 .L0 +00000000000075f8 l .text 0000000000000000 .L73 +00000000000075e6 l .text 0000000000000000 .L78 +0000000000007614 l .text 0000000000000000 .L75 +0000000000007686 l .text 0000000000000000 .L85 +0000000000007688 l .text 0000000000000000 .L76 +0000000000007670 l .text 0000000000000000 .L77 +00000000000076c4 l .text 0000000000000000 .L0 +00000000000076c0 l .text 0000000000000000 .L87 +00000000000076dc l .text 0000000000000000 .L88 +00000000000076d2 l .text 0000000000000000 .L89 +0000000000007718 l .text 0000000000000000 .L0 +0000000000007714 l .text 0000000000000000 .L95 +0000000000007730 l .text 0000000000000000 .L96 +0000000000007726 l .text 0000000000000000 .L97 +000000000000c550 l .rodata 0000000000000000 .LC29 +0000000000007778 l .text 0000000000000000 .L0 +000000000000c648 l .rodata 0000000000000000 .LC41 +00000000000077a6 l .text 0000000000000000 .L0 +00000000000077d6 l .text 0000000000000000 .L0 +000000000000c548 l .rodata 0000000000000000 .LC28 +00000000000077e2 l .text 0000000000000000 .L0 +000000000000c650 l .rodata 0000000000000000 .LC42 +00000000000077f0 l .text 0000000000000000 .L0 +0000000000007816 l .text 0000000000000000 .L0 +0000000000007822 l .text 0000000000000000 .L0 +000000000000c660 l .rodata 0000000000000000 .LC43 +000000000000782c l .text 0000000000000000 .L0 +000000000000783e l .text 0000000000000000 .L0 +000000000000784a l .text 0000000000000000 .L0 +000000000000c670 l .rodata 0000000000000000 .LC44 +0000000000007854 l .text 0000000000000000 .L0 +000000000000c690 l .rodata 0000000000000000 .LC46 +000000000000789c l .text 0000000000000000 .L0 +000000000000c6c0 l .rodata 0000000000000000 .LC47 +00000000000078aa l .text 0000000000000000 .L0 +000000000000c560 l .rodata 0000000000000000 .LC30 +00000000000078be l .text 0000000000000000 .L0 +000000000000c568 l .rodata 0000000000000000 .LC31 +00000000000078d2 l .text 0000000000000000 .L0 +000000000000c570 l .rodata 0000000000000000 .LC32 +0000000000007928 l .text 0000000000000000 .L0 +000000000000c590 l .rodata 0000000000000000 .LC33 +000000000000794c l .text 0000000000000000 .L0 +000000000000c598 l .rodata 0000000000000000 .LC34 +0000000000007964 l .text 0000000000000000 .L0 +000000000000c5b8 l .rodata 0000000000000000 .LC35 +0000000000007972 l .text 0000000000000000 .L0 +000000000000c5c0 l .rodata 0000000000000000 .LC36 +0000000000007980 l .text 0000000000000000 .L0 +000000000000c5d8 l .rodata 0000000000000000 .LC37 +000000000000798e l .text 0000000000000000 .L0 +000000000000c5e8 l .rodata 0000000000000000 .LC38 +000000000000799c l .text 0000000000000000 .L0 +000000000000c610 l .rodata 0000000000000000 .LC39 +00000000000079aa l .text 0000000000000000 .L0 +000000000000c630 l .rodata 0000000000000000 .LC40 +00000000000079b8 l .text 0000000000000000 .L0 +000000000000c680 l .rodata 0000000000000000 .LC45 +00000000000079d2 l .text 0000000000000000 .L0 +00000000000078ba l .text 0000000000000000 .L103 +0000000000007800 l .text 0000000000000000 .L108 +00000000000077ea l .text 0000000000000000 .L109 +00000000000079ce l .text 0000000000000000 .L110 +0000000000007838 l .text 0000000000000000 .L111 +000000000000782a l .text 0000000000000000 .L112 +0000000000007852 l .text 0000000000000000 .L113 +00000000000078a8 l .text 0000000000000000 .L115 +0000000000007934 l .text 0000000000000000 .L106 +00000000000079c8 l .text 0000000000000000 .L116 +000000000000794c l .text 0000000000000000 .L105 +0000000000007970 l .text 0000000000000000 .L107 +0000000000007788 l .text 0000000000000000 .L104 +0000000000007860 l .text 0000000000000000 .L114 +000000000000707b l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000013611 l .debug_str 0000000000000000 .LASF179 +000000000001383a l .debug_str 0000000000000000 .LASF180 +0000000000013948 l .debug_str 0000000000000000 .LASF181 +00000000000022a0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000012bdc l .debug_line 0000000000000000 .Ldebug_line0 +00000000000135a2 l .debug_str 0000000000000000 .LASF0 +0000000000013bcd l .debug_str 0000000000000000 .LASF1 +0000000000013bd9 l .debug_str 0000000000000000 .LASF4 +0000000000013b47 l .debug_str 0000000000000000 .LASF2 +0000000000013a21 l .debug_str 0000000000000000 .LASF3 +00000000000138ca l .debug_str 0000000000000000 .LASF5 +0000000000013be2 l .debug_str 0000000000000000 .LASF6 +0000000000013534 l .debug_str 0000000000000000 .LASF7 +0000000000013a3a l .debug_str 0000000000000000 .LASF8 +0000000000013ad5 l .debug_str 0000000000000000 .LASF9 +0000000000013bbb l .debug_str 0000000000000000 .LASF10 +00000000000137d4 l .debug_str 0000000000000000 .LASF11 +0000000000013786 l .debug_str 0000000000000000 .LASF12 +00000000000138ad l .debug_str 0000000000000000 .LASF13 +00000000000139de l .debug_str 0000000000000000 .LASF14 +000000000001375b l .debug_str 0000000000000000 .LASF15 +0000000000013ac3 l .debug_str 0000000000000000 .LASF16 +0000000000013818 l .debug_str 0000000000000000 .LASF17 +000000000001389c l .debug_str 0000000000000000 .LASF18 +0000000000013930 l .debug_str 0000000000000000 .LASF19 +00000000000138c3 l .debug_str 0000000000000000 .LASF20 +000000000001386e l .debug_str 0000000000000000 .LASF21 +0000000000013510 l .debug_str 0000000000000000 .LASF22 +0000000000013bfd l .debug_str 0000000000000000 .LASF23 +0000000000013b16 l .debug_str 0000000000000000 .LASF24 +0000000000013bb3 l .debug_str 0000000000000000 .LASF25 +0000000000013609 l .debug_str 0000000000000000 .LASF26 +0000000000013764 l .debug_str 0000000000000000 .LASF27 +0000000000013873 l .debug_str 0000000000000000 .LASF28 +0000000000013ba3 l .debug_str 0000000000000000 .LASF29 +0000000000013557 l .debug_str 0000000000000000 .LASF30 +0000000000013c04 l .debug_str 0000000000000000 .LASF31 +0000000000013c3b l .debug_str 0000000000000000 .LASF32 +0000000000013b1d l .debug_str 0000000000000000 .LASF33 +00000000000139f0 l .debug_str 0000000000000000 .LASF34 +0000000000013825 l .debug_str 0000000000000000 .LASF35 +00000000000136f8 l .debug_str 0000000000000000 .LASF36 +0000000000013c51 l .debug_str 0000000000000000 .LASF37 +0000000000013a34 l .debug_str 0000000000000000 .LASF38 +0000000000013c5c l .debug_str 0000000000000000 .LASF39 +0000000000013521 l .debug_str 0000000000000000 .LASF40 +00000000000135d9 l .debug_str 0000000000000000 .LASF41 +0000000000013b6e l .debug_str 0000000000000000 .LASF42 +0000000000013916 l .debug_str 0000000000000000 .LASF43 +00000000000139d2 l .debug_str 0000000000000000 .LASF44 +0000000000013834 l .debug_str 0000000000000000 .LASF45 +0000000000013af9 l .debug_str 0000000000000000 .LASF46 +00000000000135c7 l .debug_str 0000000000000000 .LASF47 +000000000001392a l .debug_str 0000000000000000 .LASF48 +0000000000013b65 l .debug_str 0000000000000000 .LASF49 +00000000000136df l .debug_str 0000000000000000 .LASF50 +0000000000013565 l .debug_str 0000000000000000 .LASF51 +000000000001390c l .debug_str 0000000000000000 .LASF52 +0000000000013892 l .debug_str 0000000000000000 .LASF53 +00000000000135af l .debug_str 0000000000000000 .LASF54 +000000000001381f l .debug_str 0000000000000000 .LASF55 +0000000000013c18 l .debug_str 0000000000000000 .LASF56 +0000000000013983 l .debug_str 0000000000000000 .LASF57 +0000000000013856 l .debug_str 0000000000000000 .LASF58 +00000000000137c9 l .debug_str 0000000000000000 .LASF59 +0000000000013aaf l .debug_str 0000000000000000 .LASF60 +000000000001398c l .debug_str 0000000000000000 .LASF61 +00000000000135de l .debug_str 0000000000000000 .LASF62 +000000000001371c l .debug_str 0000000000000000 .LASF63 +00000000000138a4 l .debug_str 0000000000000000 .LASF64 +0000000000013978 l .debug_str 0000000000000000 .LASF65 +0000000000013966 l .debug_str 0000000000000000 .LASF66 +0000000000013c22 l .debug_str 0000000000000000 .LASF67 +0000000000013a2b l .debug_str 0000000000000000 .LASF68 +00000000000139e7 l .debug_str 0000000000000000 .LASF69 +0000000000013a16 l .debug_str 0000000000000000 .LASF70 +000000000001379d l .debug_str 0000000000000000 .LASF71 +0000000000013880 l .debug_str 0000000000000000 .LASF72 +0000000000013a03 l .debug_str 0000000000000000 .LASF73 +0000000000013b38 l .debug_str 0000000000000000 .LASF74 +0000000000013936 l .debug_str 0000000000000000 .LASF75 +000000000001376b l .debug_str 0000000000000000 .LASF76 +0000000000013a64 l .debug_str 0000000000000000 .LASF77 +00000000000136ff l .debug_str 0000000000000000 .LASF78 +0000000000013599 l .debug_str 0000000000000000 .LASF79 +000000000001382c l .debug_str 0000000000000000 .LASF80 +0000000000013a43 l .debug_str 0000000000000000 .LASF81 +0000000000013865 l .debug_str 0000000000000000 .LASF82 +0000000000013a85 l .debug_str 0000000000000000 .LASF83 +0000000000013516 l .debug_str 0000000000000000 .LASF84 +000000000001357e l .debug_str 0000000000000000 .LASF182 +00000000000136c1 l .debug_str 0000000000000000 .LASF85 +00000000000135b8 l .debug_str 0000000000000000 .LASF86 +0000000000013aa4 l .debug_str 0000000000000000 .LASF87 +00000000000137f2 l .debug_str 0000000000000000 .LASF88 +0000000000013aee l .debug_str 0000000000000000 .LASF89 +00000000000135ea l .debug_str 0000000000000000 .LASF90 +0000000000013b25 l .debug_str 0000000000000000 .LASF91 +0000000000013bf5 l .debug_str 0000000000000000 .LASF92 +0000000000013924 l .debug_str 0000000000000000 .LASF93 +000000000001385f l .debug_str 0000000000000000 .LASF94 +00000000000136cd l .debug_str 0000000000000000 .LASF95 +000000000001353e l .debug_str 0000000000000000 .LASF96 +0000000000013b55 l .debug_str 0000000000000000 .LASF97 +000000000001393f l .debug_str 0000000000000000 .LASF98 +00000000000139c4 l .debug_str 0000000000000000 .LASF99 +000000000001387b l .debug_str 0000000000000000 .LASF100 +0000000000013545 l .debug_str 0000000000000000 .LASF101 +00000000000134fe l .debug_str 0000000000000000 .LASF102 +0000000000013aa9 l .debug_str 0000000000000000 .LASF103 +00000000000135bd l .debug_str 0000000000000000 .LASF104 +0000000000013b40 l .debug_str 0000000000000000 .LASF105 +0000000000013a75 l .debug_str 0000000000000000 .LASF106 +00000000000137bd l .debug_str 0000000000000000 .LASF107 +0000000000013a90 l .debug_str 0000000000000000 .LASF108 +0000000000013a0f l .debug_str 0000000000000000 .LASF109 +00000000000136e7 l .debug_str 0000000000000000 .LASF110 +00000000000139bc l .debug_str 0000000000000000 .LASF111 +0000000000013998 l .debug_str 0000000000000000 .LASF112 +0000000000013bc4 l .debug_str 0000000000000000 .LASF113 +00000000000139b3 l .debug_str 0000000000000000 .LASF114 +0000000000013c67 l .debug_str 0000000000000000 .LASF115 +0000000000013c45 l .debug_str 0000000000000000 .LASF116 +0000000000013773 l .debug_str 0000000000000000 .LASF117 +0000000000013a6a l .debug_str 0000000000000000 .LASF118 +00000000000136d8 l .debug_str 0000000000000000 .LASF119 +0000000000013ab9 l .debug_str 0000000000000000 .LASF120 +00000000000138ee l .debug_str 0000000000000000 .LASF121 +0000000000013970 l .debug_str 0000000000000000 .LASF122 +0000000000013711 l .debug_str 0000000000000000 .LASF123 +0000000000013b2c l .debug_str 0000000000000000 .LASF124 +0000000000013b90 l .debug_str 0000000000000000 .LASF125 +0000000000013886 l .debug_str 0000000000000000 .LASF126 +000000000001374f l .debug_str 0000000000000000 .LASF127 +0000000000013c0d l .debug_str 0000000000000000 .LASF139 +000000000000773e l .text 0000000000000000 .LFB13 +00000000000079e0 l .text 0000000000000000 .LFE13 +00000000000135d4 l .debug_str 0000000000000000 .LASF128 +00000000000140c2 l .debug_loc 0000000000000000 .LLST47 +00000000000139ae l .debug_str 0000000000000000 .LASF129 +0000000000014121 l .debug_loc 0000000000000000 .LLST48 +00000000000139cd l .debug_str 0000000000000000 .LASF130 +0000000000014183 l .debug_loc 0000000000000000 .LLST49 +00000000000138fb l .debug_str 0000000000000000 .LASF131 +00000000000141e5 l .debug_loc 0000000000000000 .LLST50 +000000000001384e l .debug_str 0000000000000000 .LASF132 +0000000000014237 l .debug_loc 0000000000000000 .LLST51 +0000000000013902 l .debug_str 0000000000000000 .LASF133 +00000000000142a3 l .debug_loc 0000000000000000 .LLST52 +0000000000013584 l .debug_str 0000000000000000 .LASF134 +00000000000137f8 l .debug_str 0000000000000000 .LASF135 +00000000000142ef l .debug_loc 0000000000000000 .LLST53 +0000000000013746 l .debug_str 0000000000000000 .LASF136 +0000000000014325 l .debug_loc 0000000000000000 .LLST54 +00000000000135f7 l .debug_str 0000000000000000 .LASF137 +00000000000143bd l .debug_loc 0000000000000000 .LLST55 +00000000000138de l .debug_str 0000000000000000 .LASF138 +000000000001442f l .debug_loc 0000000000000000 .LLST56 +0000000000007764 l .text 0000000000000000 .LVL185 +0000000000007770 l .text 0000000000000000 .LVL186 +0000000000007784 l .text 0000000000000000 .LVL188 +0000000000007792 l .text 0000000000000000 .LVL190 +00000000000077b2 l .text 0000000000000000 .LVL193 +0000000000007800 l .text 0000000000000000 .LVL197 +0000000000007838 l .text 0000000000000000 .LVL198 +0000000000007860 l .text 0000000000000000 .LVL199 +00000000000078a8 l .text 0000000000000000 .LVL200 +00000000000078b6 l .text 0000000000000000 .LVL201 +00000000000078d0 l .text 0000000000000000 .LVL204 +00000000000078e4 l .text 0000000000000000 .LVL205 +00000000000078f2 l .text 0000000000000000 .LVL206 +00000000000078fc l .text 0000000000000000 .LVL207 +000000000000790e l .text 0000000000000000 .LVL208 +0000000000007934 l .text 0000000000000000 .LVL210 +000000000000795e l .text 0000000000000000 .LVL213 +0000000000007970 l .text 0000000000000000 .LVL214 +000000000000797e l .text 0000000000000000 .LVL215 +000000000000798c l .text 0000000000000000 .LVL216 +000000000000799a l .text 0000000000000000 .LVL217 +00000000000079a8 l .text 0000000000000000 .LVL218 +00000000000079b6 l .text 0000000000000000 .LVL219 +00000000000079c4 l .text 0000000000000000 .LVL220 +00000000000079de l .text 0000000000000000 .LVL222 +0000000000013726 l .debug_str 0000000000000000 .LASF140 +00000000000076ea l .text 0000000000000000 .LFB12 +000000000000773e l .text 0000000000000000 .LFE12 +00000000000144b5 l .debug_loc 0000000000000000 .LLST43 +0000000000014514 l .debug_loc 0000000000000000 .LLST44 +000000000001454d l .debug_loc 0000000000000000 .LLST45 +00000000000135f0 l .debug_str 0000000000000000 .LASF141 +00000000000135ce l .debug_str 0000000000000000 .LASF142 +00000000000145ac l .debug_loc 0000000000000000 .LLST46 +0000000000007704 l .text 0000000000000000 .LVL174 +0000000000007724 l .text 0000000000000000 .LVL176 +000000000000773a l .text 0000000000000000 .LVL181 +00000000000137b3 l .debug_str 0000000000000000 .LASF143 +0000000000007696 l .text 0000000000000000 .LFB11 +00000000000076ea l .text 0000000000000000 .LFE11 +00000000000145e2 l .debug_loc 0000000000000000 .LLST39 +0000000000014641 l .debug_loc 0000000000000000 .LLST40 +000000000001467a l .debug_loc 0000000000000000 .LLST41 +00000000000138f6 l .debug_str 0000000000000000 .LASF144 +00000000000146d9 l .debug_loc 0000000000000000 .LLST42 +00000000000076b0 l .text 0000000000000000 .LVL162 +00000000000076d0 l .text 0000000000000000 .LVL164 +00000000000076e6 l .text 0000000000000000 .LVL169 +000000000001377d l .debug_str 0000000000000000 .LASF145 +000000000000758e l .text 0000000000000000 .LFB10 +0000000000007696 l .text 0000000000000000 .LFE10 +000000000001470f l .debug_loc 0000000000000000 .LLST33 +000000000001475b l .debug_loc 0000000000000000 .LLST34 +00000000000147bd l .debug_loc 0000000000000000 .LLST35 +0000000000014809 l .debug_loc 0000000000000000 .LLST36 +0000000000013577 l .debug_str 0000000000000000 .LASF146 +0000000000014866 l .debug_loc 0000000000000000 .LLST37 +00000000000148c3 l .debug_loc 0000000000000000 .LLST38 +00000000000139f7 l .debug_str 0000000000000000 .LASF183 +00000000000075d2 l .text 0000000000000000 .LVL139 +00000000000075f6 l .text 0000000000000000 .LVL143 +0000000000007620 l .text 0000000000000000 .LVL148 +000000000000762e l .text 0000000000000000 .LVL150 +0000000000007638 l .text 0000000000000000 .LVL151 +0000000000007656 l .text 0000000000000000 .LVL153 +000000000000766e l .text 0000000000000000 .LVL154 +0000000000007686 l .text 0000000000000000 .LVL155 +00000000000137e8 l .debug_str 0000000000000000 .LASF147 +000000000000750a l .text 0000000000000000 .LFB9 +000000000000758e l .text 0000000000000000 .LFE9 +00000000000148e6 l .debug_loc 0000000000000000 .LLST27 +0000000000014945 l .debug_loc 0000000000000000 .LLST28 +000000000001497e l .debug_loc 0000000000000000 .LLST29 +00000000000149dd l .debug_loc 0000000000000000 .LLST30 +0000000000013a9f l .debug_str 0000000000000000 .LASF148 +0000000000014a3f l .debug_loc 0000000000000000 .LLST31 +0000000000014a88 l .debug_loc 0000000000000000 .LLST32 +0000000000007536 l .text 0000000000000000 .LVL124 +0000000000007556 l .text 0000000000000000 .LVL126 +0000000000007584 l .text 0000000000000000 .LVL133 +00000000000137dc l .debug_str 0000000000000000 .LASF149 +0000000000007454 l .text 0000000000000000 .LFB8 +000000000000750a l .text 0000000000000000 .LFE8 +0000000000014aab l .debug_loc 0000000000000000 .LLST24 +0000000000014b0a l .debug_loc 0000000000000000 .LLST25 +0000000000014b43 l .debug_loc 0000000000000000 .LLST26 +00000000000074e0 l .text 0000000000000000 .LVL117 +000000000000750a l .text 0000000000000000 .LVL119 +00000000000137aa l .debug_str 0000000000000000 .LASF150 +00000000000073ee l .text 0000000000000000 .LFB7 +0000000000007454 l .text 0000000000000000 .LFE7 +0000000000014b7c l .debug_loc 0000000000000000 .LLST20 +0000000000014bdb l .debug_loc 0000000000000000 .LLST21 +0000000000014c14 l .debug_loc 0000000000000000 .LLST22 +0000000000013b7a l .debug_str 0000000000000000 .LASF151 +0000000000014c73 l .debug_loc 0000000000000000 .LLST23 +000000000000740c l .text 0000000000000000 .LVL105 +0000000000007430 l .text 0000000000000000 .LVL107 +0000000000007450 l .text 0000000000000000 .LVL112 +0000000000007452 l .text 0000000000000000 .LVL113 +0000000000013805 l .debug_str 0000000000000000 .LASF184 +0000000000013bab l .debug_str 0000000000000000 .LASF152 +00000000000138bc l .debug_str 0000000000000000 .LASF153 +000000000001355f l .debug_str 0000000000000000 .LASF154 +00000000000138b5 l .debug_str 0000000000000000 .LASF155 +000000000001354e l .debug_str 0000000000000000 .LASF156 +0000000000013b60 l .debug_str 0000000000000000 .LASF157 +0000000000013708 l .debug_str 0000000000000000 .LASF158 +0000000000013b85 l .debug_str 0000000000000000 .LASF159 +0000000000013a4c l .debug_str 0000000000000000 .LASF160 +0000000000013a57 l .debug_str 0000000000000000 .LASF161 +0000000000013731 l .debug_str 0000000000000000 .LASF185 +0000000000006f7e l .text 0000000000000000 .LFB6 +00000000000073ee l .text 0000000000000000 .LFE6 +0000000000014cbc l .debug_loc 0000000000000000 .LLST0 +0000000000014d44 l .debug_loc 0000000000000000 .LLST1 +0000000000014da6 l .debug_loc 0000000000000000 .LLST2 +0000000000014e34 l .debug_loc 0000000000000000 .LLST3 +0000000000014e6d l .debug_loc 0000000000000000 .LLST4 +0000000000006fc8 l .text 0000000000000000 .LBB8 +0000000000014ea5 l .debug_loc 0000000000000000 .LLST5 +0000000000014ef7 l .debug_loc 0000000000000000 .LLST6 +0000000000014f6f l .debug_loc 0000000000000000 .LLST7 +0000000000014fbe l .debug_loc 0000000000000000 .LLST8 +000000000001501a l .debug_loc 0000000000000000 .LLST9 +0000000000015212 l .debug_loc 0000000000000000 .LLST10 +00000000000152ba l .debug_loc 0000000000000000 .LLST11 +00000000000153fa l .debug_loc 0000000000000000 .LLST12 +00000000000154b5 l .debug_loc 0000000000000000 .LLST13 +00000000000154fe l .debug_loc 0000000000000000 .LLST14 +000000000001555a l .debug_loc 0000000000000000 .LLST15 +0000000000007080 l .text 0000000000000000 .LBB10 +000000000001557d l .debug_loc 0000000000000000 .LLST16 +00000000000155bd l .debug_loc 0000000000000000 .LLST17 +0000000000007164 l .text 0000000000000000 .LBB12 +0000000000007192 l .text 0000000000000000 .LBE12 +00000000000155f3 l .debug_loc 0000000000000000 .LLST18 +0000000000007170 l .text 0000000000000000 .LVL39 +000000000000717e l .text 0000000000000000 .LVL41 +000000000000718e l .text 0000000000000000 .LVL44 +000000000001563e l .debug_loc 0000000000000000 .LLST19 +00000000000071da l .text 0000000000000000 .LVL50 +0000000000007094 l .text 0000000000000000 .LVL20 +00000000000070a2 l .text 0000000000000000 .LVL21 +000000000000713c l .text 0000000000000000 .LVL34 +000000000000714a l .text 0000000000000000 .LVL35 +0000000000007162 l .text 0000000000000000 .LVL38 +00000000000071a6 l .text 0000000000000000 .LVL47 +00000000000071b4 l .text 0000000000000000 .LVL48 +00000000000071cc l .text 0000000000000000 .LVL49 +000000000000720a l .text 0000000000000000 .LVL55 +0000000000007218 l .text 0000000000000000 .LVL56 +0000000000007230 l .text 0000000000000000 .LVL57 +0000000000007240 l .text 0000000000000000 .LVL58 +0000000000006fe4 l .text 0000000000000000 .LVL8 +0000000000006ff6 l .text 0000000000000000 .LVL9 +0000000000007014 l .text 0000000000000000 .LVL10 +0000000000007048 l .text 0000000000000000 .LVL13 +0000000000007054 l .text 0000000000000000 .LVL15 +00000000000070ca l .text 0000000000000000 .LVL24 +00000000000070e2 l .text 0000000000000000 .LVL25 +00000000000070f6 l .text 0000000000000000 .LVL26 +0000000000007114 l .text 0000000000000000 .LVL27 +0000000000007260 l .text 0000000000000000 .LVL61 +000000000000726e l .text 0000000000000000 .LVL63 +00000000000072a4 l .text 0000000000000000 .LVL69 +00000000000072b6 l .text 0000000000000000 .LVL70 +00000000000072fa l .text 0000000000000000 .LVL74 +0000000000007312 l .text 0000000000000000 .LVL75 +0000000000007324 l .text 0000000000000000 .LVL76 +0000000000007342 l .text 0000000000000000 .LVL77 +0000000000007378 l .text 0000000000000000 .LVL85 +000000000000738a l .text 0000000000000000 .LVL86 +00000000000073aa l .text 0000000000000000 .LVL91 +00000000000073b6 l .text 0000000000000000 .LVL93 +00000000000073c8 l .text 0000000000000000 .LVL95 +00000000000073d6 l .text 0000000000000000 .LVL96 +00000000000137e3 l .debug_str 0000000000000000 .LASF162 +00000000000138d4 l .debug_str 0000000000000000 .LASF163 +0000000000013c70 l .debug_str 0000000000000000 .LASF164 +0000000000013b73 l .debug_str 0000000000000000 .LASF165 +0000000000013811 l .debug_str 0000000000000000 .LASF166 +0000000000013b7f l .debug_str 0000000000000000 .LASF167 +00000000000136d3 l .debug_str 0000000000000000 .LASF168 +000000000001356f l .debug_str 0000000000000000 .LASF169 +00000000000139a3 l .debug_str 0000000000000000 .LASF170 +0000000000013b01 l .debug_str 0000000000000000 .LASF171 +0000000000013c2c l .debug_str 0000000000000000 .LASF172 +0000000000013ae7 l .debug_str 0000000000000000 .LASF173 +000000000001352c l .debug_str 0000000000000000 .LASF174 +0000000000013b9a l .debug_str 0000000000000000 .LASF175 +0000000000013503 l .debug_str 0000000000000000 .LASF176 +0000000000013849 l .debug_str 0000000000000000 .LASF177 +0000000000013acd l .debug_str 0000000000000000 .LASF178 +000000000000773e l .text 0000000000000000 .LVL182 +000000000000775c l .text 0000000000000000 .LVL184 +0000000000007938 l .text 0000000000000000 .LVL211 +000000000000794c l .text 0000000000000000 .LVL212 +00000000000078ba l .text 0000000000000000 .LVL202 +00000000000078c6 l .text 0000000000000000 .LVL203 +0000000000007794 l .text 0000000000000000 .LVL191 +00000000000079ce l .text 0000000000000000 .LVL221 +00000000000077c0 l .text 0000000000000000 .LVL194 +00000000000077c4 l .text 0000000000000000 .LVL195 +00000000000077c8 l .text 0000000000000000 .LVL196 +0000000000007782 l .text 0000000000000000 .LVL187 +0000000000007932 l .text 0000000000000000 .LVL209 +000000000000779e l .text 0000000000000000 .LVL192 +0000000000007788 l .text 0000000000000000 .LVL189 +000000000000775a l .text 0000000000000000 .LVL183 +00000000000076ea l .text 0000000000000000 .LVL170 +00000000000076f6 l .text 0000000000000000 .LVL171 +000000000000772c l .text 0000000000000000 .LVL178 +0000000000007730 l .text 0000000000000000 .LVL179 +00000000000076fa l .text 0000000000000000 .LVL173 +00000000000076f8 l .text 0000000000000000 .LVL172 +000000000000772a l .text 0000000000000000 .LVL177 +0000000000007722 l .text 0000000000000000 .LVL175 +0000000000007732 l .text 0000000000000000 .LVL180 +0000000000007696 l .text 0000000000000000 .LVL158 +00000000000076a2 l .text 0000000000000000 .LVL159 +00000000000076d8 l .text 0000000000000000 .LVL166 +00000000000076dc l .text 0000000000000000 .LVL167 +00000000000076a6 l .text 0000000000000000 .LVL161 +00000000000076a4 l .text 0000000000000000 .LVL160 +00000000000076d6 l .text 0000000000000000 .LVL165 +00000000000076ce l .text 0000000000000000 .LVL163 +00000000000076de l .text 0000000000000000 .LVL168 +000000000000758e l .text 0000000000000000 .LVL134 +00000000000075a6 l .text 0000000000000000 .LVL135 +000000000000768e l .text 0000000000000000 .LVL157 +00000000000075c8 l .text 0000000000000000 .LVL137 +00000000000075f8 l .text 0000000000000000 .LVL144 +0000000000007614 l .text 0000000000000000 .LVL147 +00000000000075c6 l .text 0000000000000000 .LVL136 +000000000000768c l .text 0000000000000000 .LVL156 +00000000000075ca l .text 0000000000000000 .LVL138 +00000000000075d6 l .text 0000000000000000 .LVL141 +00000000000075e6 l .text 0000000000000000 .LVL142 +0000000000007600 l .text 0000000000000000 .LVL146 +00000000000075d4 l .text 0000000000000000 .LVL140 +00000000000075fe l .text 0000000000000000 .LVL145 +0000000000007642 l .text 0000000000000000 .LVL152 +0000000000007626 l .text 0000000000000000 .LVL149 +000000000000750a l .text 0000000000000000 .LVL120 +000000000000755e l .text 0000000000000000 .LVL127 +000000000000756a l .text 0000000000000000 .LVL130 +000000000000750e l .text 0000000000000000 .LVL121 +000000000000752a l .text 0000000000000000 .LVL123 +0000000000007562 l .text 0000000000000000 .LVL128 +0000000000007522 l .text 0000000000000000 .LVL122 +0000000000007568 l .text 0000000000000000 .LVL129 +0000000000007554 l .text 0000000000000000 .LVL125 +0000000000007578 l .text 0000000000000000 .LVL131 +0000000000007582 l .text 0000000000000000 .LVL132 +0000000000007454 l .text 0000000000000000 .LVL114 +00000000000074e4 l .text 0000000000000000 .LVL118 +00000000000074c4 l .text 0000000000000000 .LVL116 +00000000000074bc l .text 0000000000000000 .LVL115 +00000000000073ee l .text 0000000000000000 .LVL101 +00000000000073fc l .text 0000000000000000 .LVL102 +0000000000007436 l .text 0000000000000000 .LVL108 +000000000000743e l .text 0000000000000000 .LVL110 +0000000000007400 l .text 0000000000000000 .LVL104 +00000000000073fe l .text 0000000000000000 .LVL103 +000000000000743a l .text 0000000000000000 .LVL109 +000000000000742e l .text 0000000000000000 .LVL106 +000000000000744e l .text 0000000000000000 .LVL111 +0000000000006f7e l .text 0000000000000000 .LVL0 +0000000000006fda l .text 0000000000000000 .LVL7 +0000000000007344 l .text 0000000000000000 .LVL78 +0000000000007362 l .text 0000000000000000 .LVL80 +00000000000073da l .text 0000000000000000 .LVL97 +0000000000006fb0 l .text 0000000000000000 .LVL2 +0000000000007360 l .text 0000000000000000 .LVL79 +0000000000006fce l .text 0000000000000000 .LVL6 +0000000000007392 l .text 0000000000000000 .LVL89 +0000000000006fac l .text 0000000000000000 .LVL1 +0000000000006fc2 l .text 0000000000000000 .LVL3 +0000000000006fc4 l .text 0000000000000000 .LVL4 +0000000000006fc8 l .text 0000000000000000 .LVL5 +000000000000706e l .text 0000000000000000 .LVL17 +00000000000070a4 l .text 0000000000000000 .LVL22 +00000000000070a8 l .text 0000000000000000 .LVL23 +000000000000714c l .text 0000000000000000 .LVL36 +000000000000714e l .text 0000000000000000 .LVL37 +0000000000007176 l .text 0000000000000000 .LVL40 +0000000000007190 l .text 0000000000000000 .LVL45 +0000000000007192 l .text 0000000000000000 .LVL46 +000000000000727e l .text 0000000000000000 .LVL65 +0000000000007286 l .text 0000000000000000 .LVL66 +00000000000073e4 l .text 0000000000000000 .LVL99 +0000000000007120 l .text 0000000000000000 .LVL29 +0000000000007122 l .text 0000000000000000 .LVL30 +0000000000007124 l .text 0000000000000000 .LVL31 +0000000000007244 l .text 0000000000000000 .LVL59 +00000000000072d0 l .text 0000000000000000 .LVL72 +0000000000007364 l .text 0000000000000000 .LVL81 +0000000000007366 l .text 0000000000000000 .LVL82 +000000000000738e l .text 0000000000000000 .LVL88 +0000000000007072 l .text 0000000000000000 .LVL18 +0000000000007080 l .text 0000000000000000 .LVL19 +0000000000007128 l .text 0000000000000000 .LVL33 +000000000000728a l .text 0000000000000000 .LVL67 +0000000000007296 l .text 0000000000000000 .LVL68 +000000000000736a l .text 0000000000000000 .LVL84 +00000000000073de l .text 0000000000000000 .LVL98 +00000000000073e8 l .text 0000000000000000 .LVL100 +000000000000702c l .text 0000000000000000 .LVL11 +0000000000007040 l .text 0000000000000000 .LVL12 +000000000000704a l .text 0000000000000000 .LVL14 +0000000000007060 l .text 0000000000000000 .LVL16 +0000000000007258 l .text 0000000000000000 .LVL60 +0000000000007262 l .text 0000000000000000 .LVL62 +0000000000007274 l .text 0000000000000000 .LVL64 +00000000000073a2 l .text 0000000000000000 .LVL90 +00000000000073ac l .text 0000000000000000 .LVL92 +00000000000073be l .text 0000000000000000 .LVL94 +000000000000738c l .text 0000000000000000 .LVL87 +00000000000072f6 l .text 0000000000000000 .LVL73 +000000000001cb1c l .debug_info 0000000000000000 .Ldebug_info0 +0000000000007180 l .text 0000000000000000 .LVL42 +0000000000007186 l .text 0000000000000000 .LVL43 +00000000000071dc l .text 0000000000000000 .LVL51 +00000000000071e0 l .text 0000000000000000 .LVL52 +00000000000071f6 l .text 0000000000000000 .LVL54 +0000000000007344 l .text 0000000000000000 .LBE8 +0000000000007362 l .text 0000000000000000 .LBB19 +00000000000073d6 l .text 0000000000000000 .LBE19 +00000000000073da l .text 0000000000000000 .LBB20 +00000000000073ee l .text 0000000000000000 .LBE20 +00000000000070a4 l .text 0000000000000000 .LBE10 +0000000000007128 l .text 0000000000000000 .LBB16 +0000000000007244 l .text 0000000000000000 .LBE16 +00000000000071ce l .text 0000000000000000 .LBB13 +00000000000071f0 l .text 0000000000000000 .LBE13 +00000000000071f2 l .text 0000000000000000 .LBB14 +00000000000071f6 l .text 0000000000000000 .LBE14 +0000000000006f7e l .text 0000000000000000 .L0 +00000000000073ee l .text 0000000000000000 .L0 +0000000000007454 l .text 0000000000000000 .L0 +000000000000750a l .text 0000000000000000 .L0 +000000000000758e l .text 0000000000000000 .L0 +0000000000007696 l .text 0000000000000000 .L0 +00000000000076ea l .text 0000000000000000 .L0 +000000000000773e l .text 0000000000000000 .L0 +0000000000006f7e l .text 0000000000000000 .L0 +0000000000006f7e l .text 0000000000000000 .L0 +0000000000006f7e l .text 0000000000000000 .L0 +0000000000006f7e l .text 0000000000000000 .L0 +0000000000006f7e l .text 0000000000000000 .L0 +0000000000006f7e l .text 0000000000000000 .L0 +0000000000006f7e l .text 0000000000000000 .L0 +0000000000006f7e l .text 0000000000000000 .L0 +0000000000006f7e l .text 0000000000000000 .L0 +0000000000006f7e l .text 0000000000000000 .L0 +0000000000006f7e l .text 0000000000000000 .L0 +0000000000006f7e l .text 0000000000000000 .L0 +0000000000006f9a l .text 0000000000000000 .L0 +0000000000006f9e l .text 0000000000000000 .L0 +0000000000006fa0 l .text 0000000000000000 .L0 +0000000000006faa l .text 0000000000000000 .L0 +0000000000006fac l .text 0000000000000000 .L0 +0000000000006fb0 l .text 0000000000000000 .L0 +0000000000006fb8 l .text 0000000000000000 .L0 +0000000000006fba l .text 0000000000000000 .L0 +0000000000006fba l .text 0000000000000000 .L0 +0000000000006fc2 l .text 0000000000000000 .L0 +0000000000006fc2 l .text 0000000000000000 .L0 +0000000000006fc2 l .text 0000000000000000 .L0 +0000000000006fc8 l .text 0000000000000000 .L0 +0000000000006fc8 l .text 0000000000000000 .L0 +0000000000006fc8 l .text 0000000000000000 .L0 +0000000000006fc8 l .text 0000000000000000 .L0 +0000000000006fc8 l .text 0000000000000000 .L0 +0000000000006fc8 l .text 0000000000000000 .L0 +0000000000006fc8 l .text 0000000000000000 .L0 +0000000000006fc8 l .text 0000000000000000 .L0 +0000000000006fc8 l .text 0000000000000000 .L0 +0000000000006fc8 l .text 0000000000000000 .L0 +0000000000006fcc l .text 0000000000000000 .L0 +0000000000006fda l .text 0000000000000000 .L0 +0000000000006fdc l .text 0000000000000000 .L0 +0000000000006fdc l .text 0000000000000000 .L0 +0000000000006fe4 l .text 0000000000000000 .L0 +0000000000006fe4 l .text 0000000000000000 .L0 +0000000000006fe8 l .text 0000000000000000 .L0 +0000000000006fea l .text 0000000000000000 .L0 +0000000000006fec l .text 0000000000000000 .L0 +0000000000007014 l .text 0000000000000000 .L0 +000000000000701c l .text 0000000000000000 .L0 +000000000000701e l .text 0000000000000000 .L0 +0000000000007020 l .text 0000000000000000 .L0 +0000000000007022 l .text 0000000000000000 .L0 +0000000000007024 l .text 0000000000000000 .L0 +0000000000007026 l .text 0000000000000000 .L0 +0000000000007028 l .text 0000000000000000 .L0 +000000000000702c l .text 0000000000000000 .L0 +000000000000702c l .text 0000000000000000 .L0 +0000000000007030 l .text 0000000000000000 .L0 +000000000000704a l .text 0000000000000000 .L0 +0000000000007054 l .text 0000000000000000 .L0 +0000000000007054 l .text 0000000000000000 .L0 +0000000000007058 l .text 0000000000000000 .L0 +0000000000007060 l .text 0000000000000000 .L0 +0000000000007062 l .text 0000000000000000 .L0 +0000000000007064 l .text 0000000000000000 .L0 +0000000000007066 l .text 0000000000000000 .L0 +0000000000007068 l .text 0000000000000000 .L0 +000000000000706a l .text 0000000000000000 .L0 +000000000000706c l .text 0000000000000000 .L0 +000000000000706e l .text 0000000000000000 .L0 +000000000000706e l .text 0000000000000000 .L0 +000000000000706e l .text 0000000000000000 .L0 +000000000000706e l .text 0000000000000000 .L0 +0000000000007072 l .text 0000000000000000 .L0 +0000000000007076 l .text 0000000000000000 .L0 +000000000000707c l .text 0000000000000000 .L0 +000000000000707e l .text 0000000000000000 .L0 +0000000000007080 l .text 0000000000000000 .L0 +0000000000007080 l .text 0000000000000000 .L0 +0000000000007080 l .text 0000000000000000 .L0 +0000000000007094 l .text 0000000000000000 .L0 +0000000000007096 l .text 0000000000000000 .L0 +0000000000007096 l .text 0000000000000000 .L0 +00000000000070a4 l .text 0000000000000000 .L0 +00000000000070a4 l .text 0000000000000000 .L0 +00000000000070a8 l .text 0000000000000000 .L0 +00000000000070ca l .text 0000000000000000 .L0 +00000000000070ca l .text 0000000000000000 .L0 +00000000000070d8 l .text 0000000000000000 .L0 +00000000000070da l .text 0000000000000000 .L0 +00000000000070da l .text 0000000000000000 .L0 +00000000000070e2 l .text 0000000000000000 .L0 +00000000000070e2 l .text 0000000000000000 .L0 +00000000000070e6 l .text 0000000000000000 .L0 +00000000000070e8 l .text 0000000000000000 .L0 +00000000000070ec l .text 0000000000000000 .L0 +0000000000007114 l .text 0000000000000000 .L0 +0000000000007114 l .text 0000000000000000 .L0 +0000000000007116 l .text 0000000000000000 .L0 +000000000000711a l .text 0000000000000000 .L0 +000000000000711a l .text 0000000000000000 .L0 +000000000000711c l .text 0000000000000000 .L0 +0000000000007124 l .text 0000000000000000 .L0 +0000000000007124 l .text 0000000000000000 .L0 +0000000000007124 l .text 0000000000000000 .L0 +0000000000007128 l .text 0000000000000000 .L0 +0000000000007128 l .text 0000000000000000 .L0 +000000000000713c l .text 0000000000000000 .L0 +000000000000713e l .text 0000000000000000 .L0 +000000000000713e l .text 0000000000000000 .L0 +000000000000714e l .text 0000000000000000 .L0 +000000000000714e l .text 0000000000000000 .L0 +0000000000007162 l .text 0000000000000000 .L0 +0000000000007164 l .text 0000000000000000 .L0 +0000000000007164 l .text 0000000000000000 .L0 +0000000000007164 l .text 0000000000000000 .L0 +0000000000007170 l .text 0000000000000000 .L0 +0000000000007174 l .text 0000000000000000 .L0 +0000000000007176 l .text 0000000000000000 .L0 +0000000000007176 l .text 0000000000000000 .L0 +000000000000717e l .text 0000000000000000 .L0 +000000000000717e l .text 0000000000000000 .L0 +0000000000007180 l .text 0000000000000000 .L0 +0000000000007180 l .text 0000000000000000 .L0 +0000000000007184 l .text 0000000000000000 .L0 +0000000000007184 l .text 0000000000000000 .L0 +0000000000007192 l .text 0000000000000000 .L0 +0000000000007192 l .text 0000000000000000 .L0 +00000000000071a6 l .text 0000000000000000 .L0 +00000000000071a8 l .text 0000000000000000 .L0 +00000000000071a8 l .text 0000000000000000 .L0 +00000000000071b8 l .text 0000000000000000 .L0 +00000000000071b8 l .text 0000000000000000 .L0 +00000000000071cc l .text 0000000000000000 .L0 +00000000000071ce l .text 0000000000000000 .L0 +00000000000071ce l .text 0000000000000000 .L0 +00000000000071dc l .text 0000000000000000 .L0 +00000000000071dc l .text 0000000000000000 .L0 +00000000000071dc l .text 0000000000000000 .L0 +00000000000071de l .text 0000000000000000 .L0 +00000000000071e0 l .text 0000000000000000 .L0 +00000000000071e0 l .text 0000000000000000 .L0 +00000000000071e4 l .text 0000000000000000 .L0 +00000000000071ec l .text 0000000000000000 .L0 +00000000000071ec l .text 0000000000000000 .L0 +00000000000071f2 l .text 0000000000000000 .L0 +00000000000071f6 l .text 0000000000000000 .L0 +00000000000071f6 l .text 0000000000000000 .L0 +000000000000720a l .text 0000000000000000 .L0 +000000000000720c l .text 0000000000000000 .L0 +000000000000720c l .text 0000000000000000 .L0 +000000000000721c l .text 0000000000000000 .L0 +000000000000721c l .text 0000000000000000 .L0 +0000000000007230 l .text 0000000000000000 .L0 +0000000000007234 l .text 0000000000000000 .L0 +0000000000007234 l .text 0000000000000000 .L0 +0000000000007244 l .text 0000000000000000 .L0 +0000000000007244 l .text 0000000000000000 .L0 +0000000000007248 l .text 0000000000000000 .L0 +0000000000007262 l .text 0000000000000000 .L0 +0000000000007264 l .text 0000000000000000 .L0 +0000000000007266 l .text 0000000000000000 .L0 +000000000000726e l .text 0000000000000000 .L0 +000000000000726e l .text 0000000000000000 .L0 +0000000000007272 l .text 0000000000000000 .L0 +0000000000007274 l .text 0000000000000000 .L0 +0000000000007276 l .text 0000000000000000 .L0 +000000000000727e l .text 0000000000000000 .L0 +0000000000007286 l .text 0000000000000000 .L0 +0000000000007286 l .text 0000000000000000 .L0 +0000000000007286 l .text 0000000000000000 .L0 +0000000000007286 l .text 0000000000000000 .L0 +000000000000728a l .text 0000000000000000 .L0 +000000000000728e l .text 0000000000000000 .L0 +0000000000007292 l .text 0000000000000000 .L0 +0000000000007294 l .text 0000000000000000 .L0 +0000000000007296 l .text 0000000000000000 .L0 +0000000000007296 l .text 0000000000000000 .L0 +00000000000072a4 l .text 0000000000000000 .L0 +00000000000072a6 l .text 0000000000000000 .L0 +00000000000072a6 l .text 0000000000000000 .L0 +00000000000072b8 l .text 0000000000000000 .L0 +00000000000072b8 l .text 0000000000000000 .L0 +00000000000072bc l .text 0000000000000000 .L0 +00000000000072bc l .text 0000000000000000 .L0 +00000000000072be l .text 0000000000000000 .L0 +00000000000072c0 l .text 0000000000000000 .L0 +00000000000072c4 l .text 0000000000000000 .L0 +00000000000072c4 l .text 0000000000000000 .L0 +00000000000072cc l .text 0000000000000000 .L0 +00000000000072d0 l .text 0000000000000000 .L0 +00000000000072fa l .text 0000000000000000 .L0 +00000000000072fa l .text 0000000000000000 .L0 +0000000000007308 l .text 0000000000000000 .L0 +000000000000730a l .text 0000000000000000 .L0 +000000000000730a l .text 0000000000000000 .L0 +0000000000007312 l .text 0000000000000000 .L0 +0000000000007312 l .text 0000000000000000 .L0 +0000000000007316 l .text 0000000000000000 .L0 +0000000000007318 l .text 0000000000000000 .L0 +000000000000731a l .text 0000000000000000 .L0 +0000000000007342 l .text 0000000000000000 .L0 +0000000000007342 l .text 0000000000000000 .L0 +0000000000007344 l .text 0000000000000000 .L0 +0000000000007366 l .text 0000000000000000 .L0 +0000000000007366 l .text 0000000000000000 .L0 +0000000000007366 l .text 0000000000000000 .L0 +000000000000736a l .text 0000000000000000 .L0 +000000000000736a l .text 0000000000000000 .L0 +0000000000007378 l .text 0000000000000000 .L0 +000000000000737a l .text 0000000000000000 .L0 +000000000000737a l .text 0000000000000000 .L0 +000000000000738e l .text 0000000000000000 .L0 +000000000000738e l .text 0000000000000000 .L0 +0000000000007392 l .text 0000000000000000 .L0 +00000000000073ac l .text 0000000000000000 .L0 +00000000000073b6 l .text 0000000000000000 .L0 +00000000000073b6 l .text 0000000000000000 .L0 +00000000000073b8 l .text 0000000000000000 .L0 +00000000000073bc l .text 0000000000000000 .L0 +00000000000073d6 l .text 0000000000000000 .L0 +00000000000073d6 l .text 0000000000000000 .L0 +00000000000073da l .text 0000000000000000 .L0 +00000000000073da l .text 0000000000000000 .L0 +00000000000073da l .text 0000000000000000 .L0 +00000000000073de l .text 0000000000000000 .L0 +00000000000073e4 l .text 0000000000000000 .L0 +00000000000073e4 l .text 0000000000000000 .L0 +00000000000073e4 l .text 0000000000000000 .L0 +00000000000073e8 l .text 0000000000000000 .L0 +00000000000073ee l .text 0000000000000000 .L0 +00000000000073ee l .text 0000000000000000 .L0 +00000000000073ee l .text 0000000000000000 .L0 +00000000000073ee l .text 0000000000000000 .L0 +00000000000073ee l .text 0000000000000000 .L0 +00000000000073ee l .text 0000000000000000 .L0 +00000000000073f8 l .text 0000000000000000 .L0 +0000000000007400 l .text 0000000000000000 .L0 +0000000000007404 l .text 0000000000000000 .L0 +000000000000740c l .text 0000000000000000 .L0 +000000000000740c l .text 0000000000000000 .L0 +000000000000740e l .text 0000000000000000 .L0 +0000000000007410 l .text 0000000000000000 .L0 +0000000000007418 l .text 0000000000000000 .L0 +000000000000741e l .text 0000000000000000 .L0 +0000000000007430 l .text 0000000000000000 .L0 +0000000000007430 l .text 0000000000000000 .L0 +0000000000007432 l .text 0000000000000000 .L0 +000000000000743e l .text 0000000000000000 .L0 +0000000000007442 l .text 0000000000000000 .L0 +0000000000007450 l .text 0000000000000000 .L0 +0000000000007450 l .text 0000000000000000 .L0 +0000000000007454 l .text 0000000000000000 .L0 +0000000000007454 l .text 0000000000000000 .L0 +0000000000007454 l .text 0000000000000000 .L0 +0000000000007454 l .text 0000000000000000 .L0 +0000000000007454 l .text 0000000000000000 .L0 +0000000000007456 l .text 0000000000000000 .L0 +000000000000749a l .text 0000000000000000 .L0 +000000000000749e l .text 0000000000000000 .L0 +00000000000074dc l .text 0000000000000000 .L0 +00000000000074de l .text 0000000000000000 .L0 +00000000000074e0 l .text 0000000000000000 .L0 +00000000000074e0 l .text 0000000000000000 .L0 +00000000000074e2 l .text 0000000000000000 .L0 +00000000000074e6 l .text 0000000000000000 .L0 +00000000000074e8 l .text 0000000000000000 .L0 +00000000000074e8 l .text 0000000000000000 .L0 +0000000000007500 l .text 0000000000000000 .L0 +0000000000007502 l .text 0000000000000000 .L0 +000000000000750a l .text 0000000000000000 .L0 +000000000000750a l .text 0000000000000000 .L0 +000000000000750a l .text 0000000000000000 .L0 +000000000000750c l .text 0000000000000000 .L0 +000000000000750e l .text 0000000000000000 .L0 +0000000000007512 l .text 0000000000000000 .L0 +0000000000007514 l .text 0000000000000000 .L0 +000000000000751e l .text 0000000000000000 .L0 +0000000000007522 l .text 0000000000000000 .L0 +0000000000007522 l .text 0000000000000000 .L0 +0000000000007522 l .text 0000000000000000 .L0 +0000000000007522 l .text 0000000000000000 .L0 +0000000000007522 l .text 0000000000000000 .L0 +0000000000007524 l .text 0000000000000000 .L0 +000000000000752c l .text 0000000000000000 .L0 +000000000000752e l .text 0000000000000000 .L0 +0000000000007536 l .text 0000000000000000 .L0 +0000000000007536 l .text 0000000000000000 .L0 +000000000000753c l .text 0000000000000000 .L0 +0000000000007556 l .text 0000000000000000 .L0 +0000000000007556 l .text 0000000000000000 .L0 +0000000000007558 l .text 0000000000000000 .L0 +0000000000007578 l .text 0000000000000000 .L0 +0000000000007580 l .text 0000000000000000 .L0 +0000000000007582 l .text 0000000000000000 .L0 +0000000000007584 l .text 0000000000000000 .L0 +0000000000007584 l .text 0000000000000000 .L0 +0000000000007584 l .text 0000000000000000 .L0 +000000000000758a l .text 0000000000000000 .L0 +000000000000758e l .text 0000000000000000 .L0 +000000000000758e l .text 0000000000000000 .L0 +000000000000758e l .text 0000000000000000 .L0 +000000000000758e l .text 0000000000000000 .L0 +000000000000758e l .text 0000000000000000 .L0 +000000000000758e l .text 0000000000000000 .L0 +000000000000758e l .text 0000000000000000 .L0 +000000000000759a l .text 0000000000000000 .L0 +000000000000759c l .text 0000000000000000 .L0 +00000000000075a0 l .text 0000000000000000 .L0 +00000000000075a4 l .text 0000000000000000 .L0 +00000000000075a4 l .text 0000000000000000 .L0 +00000000000075a6 l .text 0000000000000000 .L0 +00000000000075a6 l .text 0000000000000000 .L0 +00000000000075b2 l .text 0000000000000000 .L0 +00000000000075c4 l .text 0000000000000000 .L0 +00000000000075c4 l .text 0000000000000000 .L0 +00000000000075d4 l .text 0000000000000000 .L0 +00000000000075d4 l .text 0000000000000000 .L0 +00000000000075d6 l .text 0000000000000000 .L0 +00000000000075d6 l .text 0000000000000000 .L0 +00000000000075de l .text 0000000000000000 .L0 +00000000000075e6 l .text 0000000000000000 .L0 +00000000000075f8 l .text 0000000000000000 .L0 +00000000000075f8 l .text 0000000000000000 .L0 +00000000000075fe l .text 0000000000000000 .L0 +00000000000075fe l .text 0000000000000000 .L0 +00000000000075fe l .text 0000000000000000 .L0 +0000000000007600 l .text 0000000000000000 .L0 +0000000000007600 l .text 0000000000000000 .L0 +0000000000007602 l .text 0000000000000000 .L0 +000000000000760a l .text 0000000000000000 .L0 +0000000000007612 l .text 0000000000000000 .L0 +0000000000007614 l .text 0000000000000000 .L0 +0000000000007614 l .text 0000000000000000 .L0 +0000000000007620 l .text 0000000000000000 .L0 +0000000000007620 l .text 0000000000000000 .L0 +000000000000762e l .text 0000000000000000 .L0 +0000000000007630 l .text 0000000000000000 .L0 +0000000000007630 l .text 0000000000000000 .L0 +000000000000763a l .text 0000000000000000 .L0 +000000000000764e l .text 0000000000000000 .L0 +000000000000766e l .text 0000000000000000 .L0 +0000000000007670 l .text 0000000000000000 .L0 +0000000000007686 l .text 0000000000000000 .L0 +0000000000007686 l .text 0000000000000000 .L0 +0000000000007686 l .text 0000000000000000 .L0 +0000000000007688 l .text 0000000000000000 .L0 +0000000000007696 l .text 0000000000000000 .L0 +0000000000007696 l .text 0000000000000000 .L0 +0000000000007696 l .text 0000000000000000 .L0 +0000000000007696 l .text 0000000000000000 .L0 +0000000000007696 l .text 0000000000000000 .L0 +0000000000007696 l .text 0000000000000000 .L0 +00000000000076a0 l .text 0000000000000000 .L0 +00000000000076a6 l .text 0000000000000000 .L0 +00000000000076a8 l .text 0000000000000000 .L0 +00000000000076b0 l .text 0000000000000000 .L0 +00000000000076b0 l .text 0000000000000000 .L0 +00000000000076b2 l .text 0000000000000000 .L0 +00000000000076b4 l .text 0000000000000000 .L0 +00000000000076ba l .text 0000000000000000 .L0 +00000000000076c0 l .text 0000000000000000 .L0 +00000000000076d0 l .text 0000000000000000 .L0 +00000000000076d0 l .text 0000000000000000 .L0 +00000000000076d2 l .text 0000000000000000 .L0 +00000000000076dc l .text 0000000000000000 .L0 +00000000000076e6 l .text 0000000000000000 .L0 +00000000000076e6 l .text 0000000000000000 .L0 +00000000000076ea l .text 0000000000000000 .L0 +00000000000076ea l .text 0000000000000000 .L0 +00000000000076ea l .text 0000000000000000 .L0 +00000000000076ea l .text 0000000000000000 .L0 +00000000000076ea l .text 0000000000000000 .L0 +00000000000076ea l .text 0000000000000000 .L0 +00000000000076f4 l .text 0000000000000000 .L0 +00000000000076fa l .text 0000000000000000 .L0 +00000000000076fc l .text 0000000000000000 .L0 +0000000000007704 l .text 0000000000000000 .L0 +0000000000007704 l .text 0000000000000000 .L0 +0000000000007706 l .text 0000000000000000 .L0 +0000000000007708 l .text 0000000000000000 .L0 +000000000000770e l .text 0000000000000000 .L0 +0000000000007714 l .text 0000000000000000 .L0 +0000000000007724 l .text 0000000000000000 .L0 +0000000000007724 l .text 0000000000000000 .L0 +0000000000007726 l .text 0000000000000000 .L0 +0000000000007730 l .text 0000000000000000 .L0 +000000000000773a l .text 0000000000000000 .L0 +000000000000773a l .text 0000000000000000 .L0 +000000000000773e l .text 0000000000000000 .L0 +000000000000773e l .text 0000000000000000 .L0 +000000000000773e l .text 0000000000000000 .L0 +000000000000773e l .text 0000000000000000 .L0 +000000000000773e l .text 0000000000000000 .L0 +000000000000773e l .text 0000000000000000 .L0 +000000000000773e l .text 0000000000000000 .L0 +000000000000773e l .text 0000000000000000 .L0 +000000000000773e l .text 0000000000000000 .L0 +000000000000773e l .text 0000000000000000 .L0 +000000000000773e l .text 0000000000000000 .L0 +000000000000773e l .text 0000000000000000 .L0 +0000000000007752 l .text 0000000000000000 .L0 +0000000000007754 l .text 0000000000000000 .L0 +0000000000007756 l .text 0000000000000000 .L0 +000000000000775a l .text 0000000000000000 .L0 +000000000000775a l .text 0000000000000000 .L0 +000000000000775a l .text 0000000000000000 .L0 +0000000000007764 l .text 0000000000000000 .L0 +0000000000007766 l .text 0000000000000000 .L0 +0000000000007766 l .text 0000000000000000 .L0 +0000000000007770 l .text 0000000000000000 .L0 +0000000000007784 l .text 0000000000000000 .L0 +0000000000007786 l .text 0000000000000000 .L0 +0000000000007788 l .text 0000000000000000 .L0 +0000000000007792 l .text 0000000000000000 .L0 +0000000000007792 l .text 0000000000000000 .L0 +0000000000007794 l .text 0000000000000000 .L0 +0000000000007794 l .text 0000000000000000 .L0 +000000000000779e l .text 0000000000000000 .L0 +000000000000779e l .text 0000000000000000 .L0 +00000000000077a4 l .text 0000000000000000 .L0 +00000000000077b2 l .text 0000000000000000 .L0 +00000000000077bc l .text 0000000000000000 .L0 +00000000000077c0 l .text 0000000000000000 .L0 +00000000000077c0 l .text 0000000000000000 .L0 +00000000000077c0 l .text 0000000000000000 .L0 +00000000000077c8 l .text 0000000000000000 .L0 +00000000000077c8 l .text 0000000000000000 .L0 +00000000000077c8 l .text 0000000000000000 .L0 +00000000000077cc l .text 0000000000000000 .L0 +00000000000077ea l .text 0000000000000000 .L0 +0000000000007800 l .text 0000000000000000 .L0 +0000000000007800 l .text 0000000000000000 .L0 +0000000000007802 l .text 0000000000000000 .L0 +0000000000007806 l .text 0000000000000000 .L0 +0000000000007806 l .text 0000000000000000 .L0 +0000000000007810 l .text 0000000000000000 .L0 +000000000000782a l .text 0000000000000000 .L0 +0000000000007838 l .text 0000000000000000 .L0 +0000000000007852 l .text 0000000000000000 .L0 +0000000000007860 l .text 0000000000000000 .L0 +0000000000007860 l .text 0000000000000000 .L0 +0000000000007864 l .text 0000000000000000 .L0 +00000000000078a8 l .text 0000000000000000 .L0 +00000000000078b6 l .text 0000000000000000 .L0 +00000000000078b6 l .text 0000000000000000 .L0 +00000000000078ba l .text 0000000000000000 .L0 +00000000000078ba l .text 0000000000000000 .L0 +00000000000078d0 l .text 0000000000000000 .L0 +00000000000078d2 l .text 0000000000000000 .L0 +00000000000078d2 l .text 0000000000000000 .L0 +00000000000078e6 l .text 0000000000000000 .L0 +00000000000078e8 l .text 0000000000000000 .L0 +00000000000078f2 l .text 0000000000000000 .L0 +00000000000078fc l .text 0000000000000000 .L0 +00000000000078fc l .text 0000000000000000 .L0 +0000000000007900 l .text 0000000000000000 .L0 +0000000000007902 l .text 0000000000000000 .L0 +0000000000007906 l .text 0000000000000000 .L0 +0000000000007906 l .text 0000000000000000 .L0 +000000000000790e l .text 0000000000000000 .L0 +0000000000007934 l .text 0000000000000000 .L0 +0000000000007934 l .text 0000000000000000 .L0 +000000000000794c l .text 0000000000000000 .L0 +000000000000794c l .text 0000000000000000 .L0 +000000000000795e l .text 0000000000000000 .L0 +0000000000007960 l .text 0000000000000000 .L0 +0000000000007970 l .text 0000000000000000 .L0 +000000000000797e l .text 0000000000000000 .L0 +000000000000798c l .text 0000000000000000 .L0 +000000000000799a l .text 0000000000000000 .L0 +00000000000079a8 l .text 0000000000000000 .L0 +00000000000079b6 l .text 0000000000000000 .L0 +00000000000079c4 l .text 0000000000000000 .L0 +00000000000079c4 l .text 0000000000000000 .L0 +00000000000079c8 l .text 0000000000000000 .L0 +00000000000079ca l .text 0000000000000000 .L0 +00000000000079ce l .text 0000000000000000 .L0 +00000000000079e0 l .text 0000000000000000 .L0 +0000000000002538 l .debug_frame 0000000000000000 .L0 +0000000000006f7e l .text 0000000000000000 .L0 +00000000000073ee l .text 0000000000000000 .L0 +00000000000073ee l .text 0000000000000000 .L0 +0000000000007454 l .text 0000000000000000 .L0 +0000000000007454 l .text 0000000000000000 .L0 +000000000000750a l .text 0000000000000000 .L0 +000000000000750a l .text 0000000000000000 .L0 +000000000000758e l .text 0000000000000000 .L0 +000000000000758e l .text 0000000000000000 .L0 +0000000000007696 l .text 0000000000000000 .L0 +0000000000007696 l .text 0000000000000000 .L0 +00000000000076ea l .text 0000000000000000 .L0 +00000000000076ea l .text 0000000000000000 .L0 +000000000000773e l .text 0000000000000000 .L0 +000000000000773e l .text 0000000000000000 .L0 +00000000000079e0 l .text 0000000000000000 .L0 +0000000000007346 l .text 0000000000000000 .L0 +0000000000006f9a l .text 0000000000000000 .L0 +0000000000007434 l .text 0000000000000000 .L0 +0000000000007404 l .text 0000000000000000 .L0 +000000000000749e l .text 0000000000000000 .L0 +0000000000007456 l .text 0000000000000000 .L0 +00000000000074e4 l .text 0000000000000000 .L0 +0000000000007502 l .text 0000000000000000 .L0 +00000000000074e6 l .text 0000000000000000 .L0 +000000000000755a l .text 0000000000000000 .L0 +000000000000751e l .text 0000000000000000 .L0 +000000000000768a l .text 0000000000000000 .L0 +000000000000759a l .text 0000000000000000 .L0 +00000000000076d4 l .text 0000000000000000 .L0 +00000000000076a8 l .text 0000000000000000 .L0 +0000000000007728 l .text 0000000000000000 .L0 +00000000000076fc l .text 0000000000000000 .L0 +0000000000007936 l .text 0000000000000000 .L0 +0000000000007752 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 nsh_syscmds.c +0000000000000000 l O .srodata.g_unknown 0000000000000008 g_unknown +000000000000c720 l .rodata 0000000000000000 .LC1 +0000000000007a08 l .text 0000000000000000 .L0 +0000000000007a14 l .text 0000000000000000 .L0 +000000000000c738 l .rodata 0000000000000000 .L5 +0000000000007a1c l .text 0000000000000000 .L0 +000000000000c730 l .rodata 0000000000000000 .LC2 +0000000000007a7a l .text 0000000000000000 .L0 +0000000000007a82 l .text 0000000000000000 .L0 +000000000000c790 l .rodata 0000000000000000 .L19 +0000000000007b2c l .text 0000000000000000 .L0 +0000000000000000 l .srodata.g_unknown 0000000000000000 .LANCHOR0 +0000000000007b34 l .text 0000000000000000 .L0 +000000000000c718 l .rodata 0000000000000000 .LC0 +0000000000007b3c l .text 0000000000000000 .L0 +0000000000007bd2 l .text 0000000000000000 .L0 +0000000000007ab2 l .text 0000000000000000 .L12 +0000000000007a8e l .text 0000000000000000 .L13 +0000000000007a4c l .text 0000000000000000 .L14 +0000000000007b10 l .text 0000000000000000 .L15 +0000000000007af8 l .text 0000000000000000 .L3 +0000000000007a28 l .text 0000000000000000 .L2 +0000000000007b98 l .text 0000000000000000 .L16 +0000000000007bca l .text 0000000000000000 .L17 +0000000000007b7c l .text 0000000000000000 .L25 +0000000000007b44 l .text 0000000000000000 .L26 +0000000000007b6c l .text 0000000000000000 .L22 +0000000000007b0a l .text 0000000000000000 .L27 +0000000000007af2 l .text 0000000000000000 .L10 +0000000000007ae2 l .text 0000000000000000 .L9 +0000000000007ad0 l .text 0000000000000000 .L6 +0000000000007ae8 l .text 0000000000000000 .L8 +0000000000007ad6 l .text 0000000000000000 .L7 +0000000000007adc l .text 0000000000000000 .L4 +0000000000007be0 l .text 0000000000000000 .L24 +0000000000007b68 l .text 0000000000000000 .L23 +0000000000007be6 l .text 0000000000000000 .L28 +0000000000007bbc l .text 0000000000000000 .L21 +0000000000007bc2 l .text 0000000000000000 .L20 +0000000000007bc6 l .text 0000000000000000 .L18 +0000000000007489 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000013d28 l .debug_str 0000000000000000 .LASF108 +0000000000013edb l .debug_str 0000000000000000 .LASF109 +0000000000014086 l .debug_str 0000000000000000 .LASF110 +00000000000023d0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000013d4b l .debug_line 0000000000000000 .Ldebug_line0 +0000000000013f24 l .debug_str 0000000000000000 .LASF0 +0000000000013e30 l .debug_str 0000000000000000 .LASF3 +0000000000013f05 l .debug_str 0000000000000000 .LASF1 +0000000000013d17 l .debug_str 0000000000000000 .LASF2 +00000000000140b6 l .debug_str 0000000000000000 .LASF4 +0000000000013f8a l .debug_str 0000000000000000 .LASF5 +0000000000013f58 l .debug_str 0000000000000000 .LASF6 +0000000000013e80 l .debug_str 0000000000000000 .LASF7 +0000000000013ffd l .debug_str 0000000000000000 .LASF8 +0000000000013e71 l .debug_str 0000000000000000 .LASF9 +0000000000013cfe l .debug_str 0000000000000000 .LASF10 +0000000000013f36 l .debug_str 0000000000000000 .LASF11 +0000000000013e17 l .debug_str 0000000000000000 .LASF12 +0000000000013f65 l .debug_str 0000000000000000 .LASF13 +0000000000013ce3 l .debug_str 0000000000000000 .LASF14 +0000000000013d0f l .debug_str 0000000000000000 .LASF15 +0000000000013fae l .debug_str 0000000000000000 .LASF16 +0000000000013ea8 l .debug_str 0000000000000000 .LASF17 +0000000000013cf3 l .debug_str 0000000000000000 .LASF19 +0000000000013ebf l .debug_str 0000000000000000 .LASF21 +0000000000013dee l .debug_str 0000000000000000 .LASF18 +0000000000014128 l .debug_str 0000000000000000 .LASF20 +0000000000013df9 l .debug_str 0000000000000000 .LASF22 +0000000000013ef5 l .debug_str 0000000000000000 .LASF23 +0000000000013e53 l .debug_str 0000000000000000 .LASF24 +0000000000013ee9 l .debug_str 0000000000000000 .LASF25 +0000000000013fb3 l .debug_str 0000000000000000 .LASF26 +000000000001403d l .debug_str 0000000000000000 .LASF27 +0000000000013dd8 l .debug_str 0000000000000000 .LASF28 +00000000000140b1 l .debug_str 0000000000000000 .LASF29 +0000000000013f1f l .debug_str 0000000000000000 .LASF30 +0000000000013e1f l .debug_str 0000000000000000 .LASF31 +0000000000013c9e l .debug_str 0000000000000000 .LASF32 +00000000000140f3 l .debug_str 0000000000000000 .LASF33 +0000000000013e24 l .debug_str 0000000000000000 .LASF34 +0000000000013e04 l .debug_str 0000000000000000 .LASF35 +0000000000014019 l .debug_str 0000000000000000 .LASF36 +0000000000013ff6 l .debug_str 0000000000000000 .LASF37 +0000000000013c80 l .debug_str 0000000000000000 .LASF38 +0000000000014054 l .debug_str 0000000000000000 .LASF39 +0000000000013e61 l .debug_str 0000000000000000 .LASF40 +0000000000013e43 l .debug_str 0000000000000000 .LASF41 +0000000000014035 l .debug_str 0000000000000000 .LASF42 +0000000000013c90 l .debug_str 0000000000000000 .LASF43 +0000000000013e69 l .debug_str 0000000000000000 .LASF44 +0000000000014105 l .debug_str 0000000000000000 .LASF45 +000000000001400f l .debug_str 0000000000000000 .LASF46 +0000000000014048 l .debug_str 0000000000000000 .LASF47 +0000000000014070 l .debug_str 0000000000000000 .LASF48 +0000000000013e39 l .debug_str 0000000000000000 .LASF49 +00000000000140df l .debug_str 0000000000000000 .LASF50 +0000000000013efa l .debug_str 0000000000000000 .LASF51 +0000000000013fec l .debug_str 0000000000000000 .LASF52 +0000000000013fda l .debug_str 0000000000000000 .LASF53 +0000000000013eb6 l .debug_str 0000000000000000 .LASF54 +0000000000014020 l .debug_str 0000000000000000 .LASF55 +0000000000013e89 l .debug_str 0000000000000000 .LASF56 +0000000000013cd6 l .debug_str 0000000000000000 .LASF57 +0000000000013de8 l .debug_str 0000000000000000 .LASF58 +0000000000014029 l .debug_str 0000000000000000 .LASF59 +0000000000014068 l .debug_str 0000000000000000 .LASF60 +0000000000013cc4 l .debug_str 0000000000000000 .LASF61 +0000000000013eae l .debug_str 0000000000000000 .LASF62 +00000000000140cb l .debug_str 0000000000000000 .LASF63 +0000000000013c77 l .debug_str 0000000000000000 .LASF64 +0000000000013cea l .debug_str 0000000000000000 .LASF65 +0000000000013fe4 l .debug_str 0000000000000000 .LASF66 +00000000000140d6 l .debug_str 0000000000000000 .LASF67 +0000000000013c87 l .debug_str 0000000000000000 .LASF68 +0000000000013f4d l .debug_str 0000000000000000 .LASF69 +00000000000140e8 l .debug_str 0000000000000000 .LASF70 +0000000000013f30 l .debug_str 0000000000000000 .LASF111 +0000000000013ecf l .debug_str 0000000000000000 .LASF71 +0000000000014110 l .debug_str 0000000000000000 .LASF72 +0000000000013ec5 l .debug_str 0000000000000000 .LASF73 +0000000000013fd4 l .debug_str 0000000000000000 .LASF74 +00000000000140c0 l .debug_str 0000000000000000 .LASF75 +0000000000013dfe l .debug_str 0000000000000000 .LASF76 +000000000001405c l .debug_str 0000000000000000 .LASF77 +0000000000013c98 l .debug_str 0000000000000000 .LASF78 +0000000000013f6e l .debug_str 0000000000000000 .LASF79 +00000000000140ab l .debug_str 0000000000000000 .LASF80 +00000000000140a4 l .debug_str 0000000000000000 .LASF81 +0000000000013e94 l .debug_str 0000000000000000 .LASF82 +0000000000013ccd l .debug_str 0000000000000000 .LASF83 +0000000000013d06 l .debug_str 0000000000000000 .LASF84 +0000000000013eca l .debug_str 0000000000000000 .LASF85 +0000000000013e9f l .debug_str 0000000000000000 .LASF86 +0000000000013fcf l .debug_str 0000000000000000 .LASF87 +0000000000013cae l .debug_str 0000000000000000 .LASF88 +000000000001407c l .debug_str 0000000000000000 .LASF89 +0000000000013f18 l .debug_str 0000000000000000 .LASF90 +0000000000013cb4 l .debug_str 0000000000000000 .LASF91 +0000000000013fc0 l .debug_str 0000000000000000 .LASF92 +0000000000013f74 l .debug_str 0000000000000000 .LASF96 +0000000000013ca4 l .debug_str 0000000000000000 .LASF112 +00000000000079e0 l .text 0000000000000000 .LFB5 +0000000000007bec l .text 0000000000000000 .LFE5 +00000000000140d1 l .debug_str 0000000000000000 .LASF93 +0000000000015674 l .debug_loc 0000000000000000 .LLST0 +0000000000013f13 l .debug_str 0000000000000000 .LASF94 +00000000000156d3 l .debug_loc 0000000000000000 .LLST1 +0000000000013f7e l .debug_str 0000000000000000 .LASF95 +000000000001570c l .debug_loc 0000000000000000 .LLST2 +000000000001576b l .debug_loc 0000000000000000 .LLST3 +00000000000140fe l .debug_str 0000000000000000 .LASF97 +0000000000014063 l .debug_str 0000000000000000 .LASF98 +00000000000157eb l .debug_loc 0000000000000000 .LLST4 +0000000000013e4c l .debug_str 0000000000000000 .LASF99 +000000000001585b l .debug_loc 0000000000000000 .LLST5 +0000000000013d21 l .debug_str 0000000000000000 .LASF100 +00000000000158a4 l .debug_loc 0000000000000000 .LLST6 +0000000000014122 l .debug_str 0000000000000000 .LASF101 +000000000001591b l .debug_loc 0000000000000000 .LLST7 +000000000001599f l .debug_loc 0000000000000000 .LLST8 +00000000000159d5 l .debug_loc 0000000000000000 .LLST9 +000000000001411d l .debug_str 0000000000000000 .LASF102 +0000000000015a1f l .debug_loc 0000000000000000 .LLST10 +0000000000007b7c l .text 0000000000000000 .LVL33 +0000000000007b86 l .text 0000000000000000 .LVL34 +0000000000007b96 l .text 0000000000000000 .LVL35 +0000000000007bde l .text 0000000000000000 .LVL45 +0000000000007a3a l .text 0000000000000000 .LVL3 +0000000000007a5c l .text 0000000000000000 .LVL7 +0000000000007a74 l .text 0000000000000000 .LVL9 +0000000000007a8e l .text 0000000000000000 .LVL10 +0000000000007b06 l .text 0000000000000000 .LVL21 +0000000000007b24 l .text 0000000000000000 .LVL26 +0000000000007ba8 l .text 0000000000000000 .LVL38 +0000000000007bba l .text 0000000000000000 .LVL39 +0000000000013fb9 l .debug_str 0000000000000000 .LASF103 +0000000000013f83 l .debug_str 0000000000000000 .LASF104 +0000000000013e7a l .debug_str 0000000000000000 .LASF105 +0000000000014115 l .debug_str 0000000000000000 .LASF106 +0000000000013f9d l .debug_str 0000000000000000 .LASF107 +00000000000079e0 l .text 0000000000000000 .LVL0 +0000000000007a28 l .text 0000000000000000 .LVL1 +0000000000007a9e l .text 0000000000000000 .LVL11 +0000000000007ab2 l .text 0000000000000000 .LVL13 +0000000000007aa2 l .text 0000000000000000 .LVL12 +0000000000007b6c l .text 0000000000000000 .LVL32 +0000000000007b98 l .text 0000000000000000 .LVL36 +0000000000007bbc l .text 0000000000000000 .LVL40 +0000000000007bc0 l .text 0000000000000000 .LVL41 +0000000000007bc2 l .text 0000000000000000 .LVL42 +0000000000007bc6 l .text 0000000000000000 .LVL43 +0000000000007bca l .text 0000000000000000 .LVL44 +000000000001e7a2 l .debug_info 0000000000000000 .Ldebug_info0 +0000000000007a32 l .text 0000000000000000 .LVL2 +0000000000007a54 l .text 0000000000000000 .LVL6 +0000000000007b0e l .text 0000000000000000 .LVL23 +0000000000007b44 l .text 0000000000000000 .LVL27 +0000000000007b56 l .text 0000000000000000 .LVL30 +0000000000007b58 l .text 0000000000000000 .LVL31 +0000000000007a40 l .text 0000000000000000 .LVL4 +0000000000007a50 l .text 0000000000000000 .LVL5 +0000000000007b04 l .text 0000000000000000 .LVL20 +0000000000007b0a l .text 0000000000000000 .LVL22 +0000000000007b10 l .text 0000000000000000 .LVL24 +0000000000007a6c l .text 0000000000000000 .LVL8 +0000000000007be0 l .text 0000000000000000 .LVL46 +0000000000007b1c l .text 0000000000000000 .LVL25 +0000000000007b9a l .text 0000000000000000 .LVL37 +0000000000007b48 l .text 0000000000000000 .LVL28 +0000000000007b54 l .text 0000000000000000 .LVL29 +0000000000007b28 l .text 0000000000000000 .LBB2 +0000000000007b98 l .text 0000000000000000 .LBE2 +0000000000007bbc l .text 0000000000000000 .LBB3 +0000000000007bec l .text 0000000000000000 .LBE3 +00000000000079e0 l .text 0000000000000000 .L0 +00000000000079e0 l .text 0000000000000000 .L0 +00000000000079e0 l .text 0000000000000000 .L0 +00000000000079e0 l .text 0000000000000000 .L0 +00000000000079e0 l .text 0000000000000000 .L0 +00000000000079e0 l .text 0000000000000000 .L0 +00000000000079e0 l .text 0000000000000000 .L0 +00000000000079e0 l .text 0000000000000000 .L0 +00000000000079e0 l .text 0000000000000000 .L0 +00000000000079e0 l .text 0000000000000000 .L0 +00000000000079e0 l .text 0000000000000000 .L0 +00000000000079e0 l .text 0000000000000000 .L0 +00000000000079e0 l .text 0000000000000000 .L0 +00000000000079e0 l .text 0000000000000000 .L0 +00000000000079fe l .text 0000000000000000 .L0 +0000000000007a04 l .text 0000000000000000 .L0 +0000000000007a06 l .text 0000000000000000 .L0 +0000000000007a08 l .text 0000000000000000 .L0 +0000000000007a10 l .text 0000000000000000 .L0 +0000000000007a14 l .text 0000000000000000 .L0 +0000000000007a24 l .text 0000000000000000 .L0 +0000000000007a28 l .text 0000000000000000 .L0 +0000000000007a32 l .text 0000000000000000 .L0 +0000000000007a32 l .text 0000000000000000 .L0 +0000000000007a3a l .text 0000000000000000 .L0 +0000000000007a3e l .text 0000000000000000 .L0 +0000000000007a40 l .text 0000000000000000 .L0 +0000000000007a44 l .text 0000000000000000 .L0 +0000000000007a44 l .text 0000000000000000 .L0 +0000000000007a46 l .text 0000000000000000 .L0 +0000000000007a4c l .text 0000000000000000 .L0 +0000000000007a54 l .text 0000000000000000 .L0 +0000000000007a54 l .text 0000000000000000 .L0 +0000000000007a5c l .text 0000000000000000 .L0 +0000000000007a5c l .text 0000000000000000 .L0 +0000000000007a60 l .text 0000000000000000 .L0 +0000000000007a8e l .text 0000000000000000 .L0 +0000000000007a8e l .text 0000000000000000 .L0 +0000000000007ab2 l .text 0000000000000000 .L0 +0000000000007ad0 l .text 0000000000000000 .L0 +0000000000007ad0 l .text 0000000000000000 .L0 +0000000000007ad4 l .text 0000000000000000 .L0 +0000000000007ad6 l .text 0000000000000000 .L0 +0000000000007ad6 l .text 0000000000000000 .L0 +0000000000007ada l .text 0000000000000000 .L0 +0000000000007adc l .text 0000000000000000 .L0 +0000000000007adc l .text 0000000000000000 .L0 +0000000000007ae0 l .text 0000000000000000 .L0 +0000000000007ae2 l .text 0000000000000000 .L0 +0000000000007ae2 l .text 0000000000000000 .L0 +0000000000007ae6 l .text 0000000000000000 .L0 +0000000000007ae8 l .text 0000000000000000 .L0 +0000000000007ae8 l .text 0000000000000000 .L0 +0000000000007aec l .text 0000000000000000 .L0 +0000000000007aec l .text 0000000000000000 .L0 +0000000000007af2 l .text 0000000000000000 .L0 +0000000000007af2 l .text 0000000000000000 .L0 +0000000000007af6 l .text 0000000000000000 .L0 +0000000000007af8 l .text 0000000000000000 .L0 +0000000000007b06 l .text 0000000000000000 .L0 +0000000000007b06 l .text 0000000000000000 .L0 +0000000000007b06 l .text 0000000000000000 .L0 +0000000000007b08 l .text 0000000000000000 .L0 +0000000000007b0a l .text 0000000000000000 .L0 +0000000000007b10 l .text 0000000000000000 .L0 +0000000000007b10 l .text 0000000000000000 .L0 +0000000000007b10 l .text 0000000000000000 .L0 +0000000000007b12 l .text 0000000000000000 .L0 +0000000000007b24 l .text 0000000000000000 .L0 +0000000000007b24 l .text 0000000000000000 .L0 +0000000000007b24 l .text 0000000000000000 .L0 +0000000000007b26 l .text 0000000000000000 .L0 +0000000000007b28 l .text 0000000000000000 .L0 +0000000000007b34 l .text 0000000000000000 .L0 +0000000000007b3c l .text 0000000000000000 .L0 +0000000000007b44 l .text 0000000000000000 .L0 +0000000000007b44 l .text 0000000000000000 .L0 +0000000000007b48 l .text 0000000000000000 .L0 +0000000000007b48 l .text 0000000000000000 .L0 +0000000000007b4c l .text 0000000000000000 .L0 +0000000000007b50 l .text 0000000000000000 .L0 +0000000000007b50 l .text 0000000000000000 .L0 +0000000000007b54 l .text 0000000000000000 .L0 +0000000000007b58 l .text 0000000000000000 .L0 +0000000000007b68 l .text 0000000000000000 .L0 +0000000000007b6c l .text 0000000000000000 .L0 +0000000000007b6c l .text 0000000000000000 .L0 +0000000000007b6e l .text 0000000000000000 .L0 +0000000000007b7c l .text 0000000000000000 .L0 +0000000000007b96 l .text 0000000000000000 .L0 +0000000000007b96 l .text 0000000000000000 .L0 +0000000000007b98 l .text 0000000000000000 .L0 +0000000000007b98 l .text 0000000000000000 .L0 +0000000000007b9a l .text 0000000000000000 .L0 +0000000000007b9a l .text 0000000000000000 .L0 +0000000000007b9c l .text 0000000000000000 .L0 +0000000000007ba8 l .text 0000000000000000 .L0 +0000000000007bb6 l .text 0000000000000000 .L0 +0000000000007bb8 l .text 0000000000000000 .L0 +0000000000007bba l .text 0000000000000000 .L0 +0000000000007bba l .text 0000000000000000 .L0 +0000000000007bbc l .text 0000000000000000 .L0 +0000000000007bbc l .text 0000000000000000 .L0 +0000000000007bbc l .text 0000000000000000 .L0 +0000000000007bc0 l .text 0000000000000000 .L0 +0000000000007bc2 l .text 0000000000000000 .L0 +0000000000007bc2 l .text 0000000000000000 .L0 +0000000000007bc2 l .text 0000000000000000 .L0 +0000000000007bc4 l .text 0000000000000000 .L0 +0000000000007bc6 l .text 0000000000000000 .L0 +0000000000007bc6 l .text 0000000000000000 .L0 +0000000000007bc6 l .text 0000000000000000 .L0 +0000000000007bc8 l .text 0000000000000000 .L0 +0000000000007bca l .text 0000000000000000 .L0 +0000000000007bde l .text 0000000000000000 .L0 +0000000000007bde l .text 0000000000000000 .L0 +0000000000007be0 l .text 0000000000000000 .L0 +0000000000007be6 l .text 0000000000000000 .L0 +0000000000007bec l .text 0000000000000000 .L0 +0000000000002738 l .debug_frame 0000000000000000 .L0 +00000000000079e0 l .text 0000000000000000 .L0 +0000000000007bec l .text 0000000000000000 .L0 +0000000000007a92 l .text 0000000000000000 .L0 +00000000000079fe l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 nsh_test.c +0000000000007bec l F .text 00000000000003cc expression +000000000000c7b0 l .rodata 0000000000000000 .LC0 +0000000000007c0e l .text 0000000000000000 .L0 +000000000000c808 l .rodata 0000000000000000 .LC11 +0000000000007c1c l .text 0000000000000000 .L0 +000000000000c810 l .rodata 0000000000000000 .LC12 +0000000000007c24 l .text 0000000000000000 .L0 +000000000000c818 l .rodata 0000000000000000 .LC13 +0000000000007c2c l .text 0000000000000000 .L0 +000000000000c7b8 l .rodata 0000000000000000 .LC1 +0000000000007c92 l .text 0000000000000000 .L0 +000000000000c850 l .rodata 0000000000000000 .LC20 +0000000000007cc2 l .text 0000000000000000 .L0 +000000000000c7c0 l .rodata 0000000000000000 .LC2 +0000000000007cec l .text 0000000000000000 .L0 +000000000000c7c8 l .rodata 0000000000000000 .LC3 +0000000000007d48 l .text 0000000000000000 .L0 +000000000000c7d0 l .rodata 0000000000000000 .LC4 +0000000000007d6e l .text 0000000000000000 .L0 +000000000000c7d8 l .rodata 0000000000000000 .LC5 +0000000000007d8c l .text 0000000000000000 .L0 +000000000000c7e0 l .rodata 0000000000000000 .LC6 +0000000000007daa l .text 0000000000000000 .L0 +000000000000c7e8 l .rodata 0000000000000000 .LC7 +0000000000007dc4 l .text 0000000000000000 .L0 +000000000000c7f0 l .rodata 0000000000000000 .LC8 +0000000000007de2 l .text 0000000000000000 .L0 +000000000000c7f8 l .rodata 0000000000000000 .LC9 +0000000000007dfe l .text 0000000000000000 .L0 +000000000000c800 l .rodata 0000000000000000 .LC10 +0000000000007e1a l .text 0000000000000000 .L0 +000000000000c820 l .rodata 0000000000000000 .LC14 +0000000000007ed6 l .text 0000000000000000 .L0 +000000000000c828 l .rodata 0000000000000000 .LC15 +0000000000007ef4 l .text 0000000000000000 .L0 +000000000000c830 l .rodata 0000000000000000 .LC16 +0000000000007f14 l .text 0000000000000000 .L0 +000000000000c838 l .rodata 0000000000000000 .LC17 +0000000000007f30 l .text 0000000000000000 .L0 +000000000000c840 l .rodata 0000000000000000 .LC18 +0000000000007f4a l .text 0000000000000000 .L0 +000000000000c848 l .rodata 0000000000000000 .LC19 +0000000000007f64 l .text 0000000000000000 .L0 +000000000000c858 l .rodata 0000000000000000 .LC21 +0000000000007f82 l .text 0000000000000000 .L0 +000000000000c860 l .rodata 0000000000000000 .LC22 +0000000000007fa0 l .text 0000000000000000 .L0 +0000000000007fa8 l .text 0000000000000000 .L0 +0000000000007c84 l .text 0000000000000000 .L3 +0000000000007f9c l .text 0000000000000000 .L27 +0000000000007e36 l .text 0000000000000000 .L6 +0000000000007cec l .text 0000000000000000 .L7 +0000000000007d06 l .text 0000000000000000 .L8 +0000000000007c64 l .text 0000000000000000 .L5 +0000000000007f82 l .text 0000000000000000 .L34 +0000000000007fb4 l .text 0000000000000000 .L37 +0000000000007c34 l .text 0000000000000000 .L2 +0000000000007d0c l .text 0000000000000000 .L10 +0000000000007cb0 l .text 0000000000000000 .L11 +0000000000007cb4 l .text 0000000000000000 .L9 +0000000000007d6a l .text 0000000000000000 .L36 +0000000000007d46 l .text 0000000000000000 .L13 +0000000000007d6e l .text 0000000000000000 .L14 +0000000000007d36 l .text 0000000000000000 .L12 +0000000000007d8c l .text 0000000000000000 .L15 +0000000000007d64 l .text 0000000000000000 .L63 +0000000000007daa l .text 0000000000000000 .L16 +0000000000007dc4 l .text 0000000000000000 .L17 +0000000000007de2 l .text 0000000000000000 .L18 +0000000000007dfe l .text 0000000000000000 .L19 +0000000000007cae l .text 0000000000000000 .L61 +0000000000007e1a l .text 0000000000000000 .L20 +0000000000007e5c l .text 0000000000000000 .L22 +0000000000007e72 l .text 0000000000000000 .L23 +0000000000007f10 l .text 0000000000000000 .L24 +0000000000007e92 l .text 0000000000000000 .L25 +0000000000007e6c l .text 0000000000000000 .L67 +0000000000007ef4 l .text 0000000000000000 .L29 +0000000000007f14 l .text 0000000000000000 .L30 +0000000000007f30 l .text 0000000000000000 .L31 +0000000000007f4a l .text 0000000000000000 .L32 +0000000000007f0c l .text 0000000000000000 .L66 +0000000000007f64 l .text 0000000000000000 .L33 +0000000000007f2c l .text 0000000000000000 .L68 +0000000000007ce0 l .text 0000000000000000 .L60 +000000000000c868 l .rodata 0000000000000000 .LC23 +0000000000007fdc l .text 0000000000000000 .L0 +0000000000008012 l .text 0000000000000000 .L0 +000000000000800c l .text 0000000000000000 .L74 +0000000000007736 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000001457f l .debug_str 0000000000000000 .LASF124 +0000000000014305 l .debug_str 0000000000000000 .LASF125 +00000000000142e7 l .debug_str 0000000000000000 .LASF126 +0000000000002420 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000001426e l .debug_line 0000000000000000 .Ldebug_line0 +00000000000141ef l .debug_str 0000000000000000 .LASF0 +00000000000144de l .debug_str 0000000000000000 .LASF2 +0000000000014436 l .debug_str 0000000000000000 .LASF1 +0000000000014692 l .debug_str 0000000000000000 .LASF3 +0000000000014456 l .debug_str 0000000000000000 .LASF4 +00000000000143a3 l .debug_str 0000000000000000 .LASF5 +0000000000014321 l .debug_str 0000000000000000 .LASF6 +0000000000014366 l .debug_str 0000000000000000 .LASF7 +000000000001415a l .debug_str 0000000000000000 .LASF8 +00000000000142d1 l .debug_str 0000000000000000 .LASF9 +0000000000014226 l .debug_str 0000000000000000 .LASF10 +000000000001420e l .debug_str 0000000000000000 .LASF11 +0000000000014639 l .debug_str 0000000000000000 .LASF12 +0000000000014344 l .debug_str 0000000000000000 .LASF13 +0000000000014188 l .debug_str 0000000000000000 .LASF14 +0000000000014515 l .debug_str 0000000000000000 .LASF15 +00000000000141d9 l .debug_str 0000000000000000 .LASF16 +0000000000014251 l .debug_str 0000000000000000 .LASF17 +000000000001442e l .debug_str 0000000000000000 .LASF18 +00000000000144d5 l .debug_str 0000000000000000 .LASF19 +0000000000014571 l .debug_str 0000000000000000 .LASF20 +000000000001414d l .debug_str 0000000000000000 .LASF21 +0000000000014164 l .debug_str 0000000000000000 .LASF22 +000000000001431b l .debug_str 0000000000000000 .LASF23 +0000000000014299 l .debug_str 0000000000000000 .LASF24 +00000000000143ba l .debug_str 0000000000000000 .LASF25 +000000000001469b l .debug_str 0000000000000000 .LASF26 +0000000000014276 l .debug_str 0000000000000000 .LASF27 +00000000000142de l .debug_str 0000000000000000 .LASF28 +0000000000014293 l .debug_str 0000000000000000 .LASF29 +0000000000014648 l .debug_str 0000000000000000 .LASF30 +00000000000143c0 l .debug_str 0000000000000000 .LASF31 +00000000000144ef l .debug_str 0000000000000000 .LASF32 +0000000000014386 l .debug_str 0000000000000000 .LASF33 +0000000000014488 l .debug_str 0000000000000000 .LASF36 +000000000001439c l .debug_str 0000000000000000 .LASF34 +000000000001437e l .debug_str 0000000000000000 .LASF35 +00000000000141d4 l .debug_str 0000000000000000 .LASF37 +0000000000014578 l .debug_str 0000000000000000 .LASF38 +0000000000014444 l .debug_str 0000000000000000 .LASF39 +0000000000014354 l .debug_str 0000000000000000 .LASF40 +000000000001441f l .debug_str 0000000000000000 .LASF41 +00000000000142be l .debug_str 0000000000000000 .LASF42 +0000000000014546 l .debug_str 0000000000000000 .LASF43 +00000000000144e7 l .debug_str 0000000000000000 .LASF44 +000000000001434c l .debug_str 0000000000000000 .LASF45 +0000000000014262 l .debug_str 0000000000000000 .LASF46 +0000000000014652 l .debug_str 0000000000000000 .LASF47 +000000000001413e l .debug_str 0000000000000000 .LASF48 +000000000001447d l .debug_str 0000000000000000 .LASF49 +00000000000142b4 l .debug_str 0000000000000000 .LASF50 +00000000000141e1 l .debug_str 0000000000000000 .LASF51 +0000000000014287 l .debug_str 0000000000000000 .LASF52 +000000000001417d l .debug_str 0000000000000000 .LASF53 +0000000000014683 l .debug_str 0000000000000000 .LASF54 +00000000000144c4 l .debug_str 0000000000000000 .LASF55 +000000000001426a l .debug_str 0000000000000000 .LASF56 +000000000001435c l .debug_str 0000000000000000 .LASF57 +000000000001452e l .debug_str 0000000000000000 .LASF58 +0000000000014497 l .debug_str 0000000000000000 .LASF59 +000000000001465a l .debug_str 0000000000000000 .LASF60 +000000000001436f l .debug_str 0000000000000000 .LASF61 +000000000001455f l .debug_str 0000000000000000 .LASF62 +0000000000014537 l .debug_str 0000000000000000 .LASF63 +0000000000014523 l .debug_str 0000000000000000 .LASF64 +00000000000143e9 l .debug_str 0000000000000000 .LASF65 +0000000000014220 l .debug_str 0000000000000000 .LASF66 +000000000001429f l .debug_str 0000000000000000 .LASF67 +00000000000144a7 l .debug_str 0000000000000000 .LASF68 +00000000000142ab l .debug_str 0000000000000000 .LASF69 +000000000001440c l .debug_str 0000000000000000 .LASF70 +0000000000014491 l .debug_str 0000000000000000 .LASF71 +0000000000014675 l .debug_str 0000000000000000 .LASF72 +000000000001423f l .debug_str 0000000000000000 .LASF73 +000000000001425a l .debug_str 0000000000000000 .LASF74 +000000000001422f l .debug_str 0000000000000000 .LASF75 +0000000000014248 l .debug_str 0000000000000000 .LASF76 +00000000000144f4 l .debug_str 0000000000000000 .LASF77 +0000000000014554 l .debug_str 0000000000000000 .LASF78 +0000000000014428 l .debug_str 0000000000000000 .LASF79 +0000000000014642 l .debug_str 0000000000000000 .LASF127 +00000000000141b8 l .debug_str 0000000000000000 .LASF80 +00000000000141c4 l .debug_str 0000000000000000 .LASF81 +0000000000014310 l .debug_str 0000000000000000 .LASF82 +00000000000142c5 l .debug_str 0000000000000000 .LASF83 +00000000000141c9 l .debug_str 0000000000000000 .LASF84 +0000000000014540 l .debug_str 0000000000000000 .LASF85 +00000000000144af l .debug_str 0000000000000000 .LASF86 +00000000000141fb l .debug_str 0000000000000000 .LASF87 +0000000000014154 l .debug_str 0000000000000000 .LASF88 +000000000001451d l .debug_str 0000000000000000 .LASF89 +00000000000143f6 l .debug_str 0000000000000000 .LASF90 +00000000000143fc l .debug_str 0000000000000000 .LASF91 +0000000000014133 l .debug_str 0000000000000000 .LASF92 +0000000000014403 l .debug_str 0000000000000000 .LASF93 +0000000000014334 l .debug_str 0000000000000000 .LASF94 +00000000000144a2 l .debug_str 0000000000000000 .LASF95 +0000000000014568 l .debug_str 0000000000000000 .LASF96 +00000000000144ff l .debug_str 0000000000000000 .LASF97 +00000000000142cb l .debug_str 0000000000000000 .LASF98 +000000000001462f l .debug_str 0000000000000000 .LASF99 +0000000000014504 l .debug_str 0000000000000000 .LASF100 +0000000000014669 l .debug_str 0000000000000000 .LASF128 +0000000000014414 l .debug_str 0000000000000000 .LASF101 +0000000000014315 l .debug_str 0000000000000000 .LASF102 +0000000000014460 l .debug_str 0000000000000000 .LASF103 +0000000000014203 l .debug_str 0000000000000000 .LASF104 +00000000000144d0 l .debug_str 0000000000000000 .LASF105 +0000000000014379 l .debug_str 0000000000000000 .LASF106 +00000000000143ad l .debug_str 0000000000000000 .LASF110 +0000000000007fc4 l .text 0000000000000000 .LFB5 +000000000000802a l .text 0000000000000000 .LFE5 +0000000000014664 l .debug_str 0000000000000000 .LASF107 +0000000000015a78 l .debug_loc 0000000000000000 .LLST16 +000000000001467e l .debug_str 0000000000000000 .LASF108 +0000000000015b00 l .debug_loc 0000000000000000 .LLST17 +000000000001468d l .debug_str 0000000000000000 .LASF109 +0000000000015b39 l .debug_loc 0000000000000000 .LLST18 +0000000000007fee l .text 0000000000000000 .LVL78 +000000000000800c l .text 0000000000000000 .LVL81 +000000000000801c l .text 0000000000000000 .LVL82 +000000000001427e l .debug_str 0000000000000000 .LASF111 +0000000000007fb8 l .text 0000000000000000 .LFB4 +0000000000007fc4 l .text 0000000000000000 .LFE4 +0000000000015bc3 l .debug_loc 0000000000000000 .LLST13 +0000000000015bfc l .debug_loc 0000000000000000 .LLST14 +0000000000015c35 l .debug_loc 0000000000000000 .LLST15 +0000000000007fc4 l .text 0000000000000000 .LVL74 +000000000001444b l .debug_str 0000000000000000 .LASF129 +0000000000007bec l .text 0000000000000000 .LFB3 +0000000000007fb8 l .text 0000000000000000 .LFE3 +0000000000015c83 l .debug_loc 0000000000000000 .LLST0 +0000000000015ce2 l .debug_loc 0000000000000000 .LLST1 +0000000000015d1b l .debug_loc 0000000000000000 .LLST2 +0000000000015d54 l .debug_loc 0000000000000000 .LLST3 +0000000000015dc6 l .debug_loc 0000000000000000 .LLST4 +00000000000144b6 l .debug_str 0000000000000000 .LASF112 +000000000001450b l .debug_str 0000000000000000 .LASF113 +0000000000007c1c l .text 0000000000000000 .LBB6 +0000000000015e74 l .debug_loc 0000000000000000 .LLST5 +0000000000015eaa l .debug_loc 0000000000000000 .LLST6 +0000000000015ee0 l .debug_loc 0000000000000000 .LLST7 +0000000000015f62 l .debug_loc 0000000000000000 .LLST8 +0000000000007e4a l .text 0000000000000000 .LVL39 +0000000000007e5a l .text 0000000000000000 .LVL40 +0000000000007e68 l .text 0000000000000000 .LVL41 +0000000000007e7e l .text 0000000000000000 .LVL42 +0000000000007e8c l .text 0000000000000000 .LVL43 +0000000000007ea0 l .text 0000000000000000 .LVL44 +0000000000007ec0 l .text 0000000000000000 .LVL46 +0000000000007ee8 l .text 0000000000000000 .LVL49 +0000000000007f06 l .text 0000000000000000 .LVL52 +0000000000007f26 l .text 0000000000000000 .LVL56 +0000000000007f42 l .text 0000000000000000 .LVL59 +0000000000007f5c l .text 0000000000000000 .LVL62 +0000000000007f76 l .text 0000000000000000 .LVL65 +0000000000007c92 l .text 0000000000000000 .LBB10 +0000000000015fab l .debug_loc 0000000000000000 .LLST9 +0000000000015ff4 l .debug_loc 0000000000000000 .LLST10 +000000000001603d l .debug_loc 0000000000000000 .LLST11 +0000000000016073 l .debug_loc 0000000000000000 .LLST12 +0000000000007ca4 l .text 0000000000000000 .LVL8 +0000000000007cfe l .text 0000000000000000 .LVL16 +0000000000007d18 l .text 0000000000000000 .LVL19 +0000000000007d26 l .text 0000000000000000 .LVL21 +0000000000007d32 l .text 0000000000000000 .LVL23 +0000000000007d46 l .text 0000000000000000 .LVL25 +0000000000007d5a l .text 0000000000000000 .LVL27 +0000000000007d80 l .text 0000000000000000 .LVL30 +0000000000007d9e l .text 0000000000000000 .LVL31 +0000000000007dbc l .text 0000000000000000 .LVL32 +0000000000007dd6 l .text 0000000000000000 .LVL33 +0000000000007df4 l .text 0000000000000000 .LVL34 +0000000000007e10 l .text 0000000000000000 .LVL35 +0000000000007e2c l .text 0000000000000000 .LVL36 +0000000000007c42 l .text 0000000000000000 .LVL2 +0000000000007c5c l .text 0000000000000000 .LVL3 +0000000000007cd6 l .text 0000000000000000 .LVL12 +0000000000007f94 l .text 0000000000000000 .LVL68 +0000000000007fb4 l .text 0000000000000000 .LVL70 +000000000001419f l .debug_str 0000000000000000 .LASF115 +00000000000141af l .debug_str 0000000000000000 .LASF114 +000000000001416c l .debug_str 0000000000000000 .LASF116 +000000000001433d l .debug_str 0000000000000000 .LASF117 +000000000001446b l .debug_str 0000000000000000 .LASF118 +0000000000014474 l .debug_str 0000000000000000 .LASF119 +0000000000014146 l .debug_str 0000000000000000 .LASF120 +0000000000014238 l .debug_str 0000000000000000 .LASF121 +000000000001438c l .debug_str 0000000000000000 .LASF122 +00000000000143d8 l .debug_str 0000000000000000 .LASF123 +000000000001454d l .debug_str 0000000000000000 .LASF130 +00000000000143c7 l .debug_str 0000000000000000 .LASF131 +0000000000007fc4 l .text 0000000000000000 .LVL75 +0000000000007fda l .text 0000000000000000 .LVL76 +0000000000007ff4 l .text 0000000000000000 .LVL79 +0000000000008020 l .text 0000000000000000 .LVL83 +0000000000007fe4 l .text 0000000000000000 .LVL77 +0000000000008000 l .text 0000000000000000 .LVL80 +0000000000008022 l .text 0000000000000000 .LVL84 +0000000000007fb8 l .text 0000000000000000 .LVL71 +0000000000007fbc l .text 0000000000000000 .LVL73 +0000000000007fba l .text 0000000000000000 .LVL72 +0000000000007bec l .text 0000000000000000 .LVL0 +0000000000007c34 l .text 0000000000000000 .LVL1 +0000000000007c70 l .text 0000000000000000 .LVL5 +0000000000007c84 l .text 0000000000000000 .LVL6 +0000000000007cb0 l .text 0000000000000000 .LVL10 +0000000000007cb4 l .text 0000000000000000 .LVL11 +0000000000007cec l .text 0000000000000000 .LVL15 +0000000000007d06 l .text 0000000000000000 .LVL17 +0000000000007d0c l .text 0000000000000000 .LVL18 +0000000000007f10 l .text 0000000000000000 .LVL54 +0000000000007f14 l .text 0000000000000000 .LVL55 +0000000000007f82 l .text 0000000000000000 .LVL67 +0000000000007f9c l .text 0000000000000000 .LVL69 +0000000000007c64 l .text 0000000000000000 .LVL4 +0000000000007ce0 l .text 0000000000000000 .LVL13 +0000000000007ce2 l .text 0000000000000000 .LVL14 +0000000000007e3a l .text 0000000000000000 .LVL38 +0000000000007ea4 l .text 0000000000000000 .LVL45 +0000000000007eee l .text 0000000000000000 .LVL50 +0000000000007ef4 l .text 0000000000000000 .LVL51 +0000000000007f0c l .text 0000000000000000 .LVL53 +0000000000007f2c l .text 0000000000000000 .LVL57 +0000000000007f30 l .text 0000000000000000 .LVL58 +0000000000007f48 l .text 0000000000000000 .LVL60 +0000000000007f4a l .text 0000000000000000 .LVL61 +0000000000007f62 l .text 0000000000000000 .LVL63 +0000000000007f64 l .text 0000000000000000 .LVL64 +0000000000007f7c l .text 0000000000000000 .LVL66 +0000000000007ec4 l .text 0000000000000000 .LVL47 +0000000000007ee0 l .text 0000000000000000 .LVL48 +0000000000007c92 l .text 0000000000000000 .LVL7 +0000000000007e36 l .text 0000000000000000 .LVL37 +0000000000007d1a l .text 0000000000000000 .LVL20 +0000000000007d48 l .text 0000000000000000 .LVL26 +0000000000007d6a l .text 0000000000000000 .LVL28 +0000000000007d6e l .text 0000000000000000 .LVL29 +0000000000007cae l .text 0000000000000000 .LVL9 +0000000000007d28 l .text 0000000000000000 .LVL22 +0000000000007d36 l .text 0000000000000000 .LVL24 +000000000001f1a4 l .debug_info 0000000000000000 .Ldebug_info0 +0000000000007c34 l .text 0000000000000000 .LBE6 +0000000000007e3a l .text 0000000000000000 .LBB18 +0000000000007f10 l .text 0000000000000000 .LBE18 +0000000000007f14 l .text 0000000000000000 .LBB19 +0000000000007f82 l .text 0000000000000000 .LBE19 +0000000000007cb0 l .text 0000000000000000 .LBE10 +0000000000007cb0 l .text 0000000000000000 .LBB15 +0000000000007cb4 l .text 0000000000000000 .LBE15 +0000000000007cec l .text 0000000000000000 .LBB16 +0000000000007d06 l .text 0000000000000000 .LBE16 +0000000000007d06 l .text 0000000000000000 .LBB17 +0000000000007e36 l .text 0000000000000000 .LBE17 +0000000000007bec l .text 0000000000000000 .L0 +0000000000007fb8 l .text 0000000000000000 .L0 +0000000000007fc4 l .text 0000000000000000 .L0 +0000000000007c08 l .text 0000000000000000 .L0 +0000000000007c0e l .text 0000000000000000 .L0 +0000000000007c16 l .text 0000000000000000 .L0 +0000000000007c1a l .text 0000000000000000 .L0 +0000000000007c1c l .text 0000000000000000 .L0 +0000000000007c24 l .text 0000000000000000 .L0 +0000000000007c2c l .text 0000000000000000 .L0 +0000000000007c34 l .text 0000000000000000 .L0 +0000000000007c34 l .text 0000000000000000 .L0 +0000000000007c34 l .text 0000000000000000 .L0 +0000000000007c34 l .text 0000000000000000 .L0 +0000000000007c42 l .text 0000000000000000 .L0 +0000000000007c44 l .text 0000000000000000 .L0 +0000000000007c44 l .text 0000000000000000 .L0 +0000000000007c4a l .text 0000000000000000 .L0 +0000000000007c4a l .text 0000000000000000 .L0 +0000000000007c5c l .text 0000000000000000 .L0 +0000000000007c64 l .text 0000000000000000 .L0 +0000000000007c84 l .text 0000000000000000 .L0 +0000000000007c84 l .text 0000000000000000 .L0 +0000000000007c8c l .text 0000000000000000 .L0 +0000000000007c8c l .text 0000000000000000 .L0 +0000000000007c92 l .text 0000000000000000 .L0 +0000000000007c92 l .text 0000000000000000 .L0 +0000000000007c92 l .text 0000000000000000 .L0 +0000000000007c92 l .text 0000000000000000 .L0 +0000000000007c92 l .text 0000000000000000 .L0 +0000000000007c92 l .text 0000000000000000 .L0 +0000000000007ca4 l .text 0000000000000000 .L0 +0000000000007ca8 l .text 0000000000000000 .L0 +0000000000007caa l .text 0000000000000000 .L0 +0000000000007caa l .text 0000000000000000 .L0 +0000000000007cb0 l .text 0000000000000000 .L0 +0000000000007cb2 l .text 0000000000000000 .L0 +0000000000007cb4 l .text 0000000000000000 .L0 +0000000000007cb4 l .text 0000000000000000 .L0 +0000000000007cb8 l .text 0000000000000000 .L0 +0000000000007cb8 l .text 0000000000000000 .L0 +0000000000007cbc l .text 0000000000000000 .L0 +0000000000007cd6 l .text 0000000000000000 .L0 +0000000000007cdc l .text 0000000000000000 .L0 +0000000000007cdc l .text 0000000000000000 .L0 +0000000000007ce0 l .text 0000000000000000 .L0 +0000000000007ce0 l .text 0000000000000000 .L0 +0000000000007ce0 l .text 0000000000000000 .L0 +0000000000007ce2 l .text 0000000000000000 .L0 +0000000000007ce4 l .text 0000000000000000 .L0 +0000000000007cec l .text 0000000000000000 .L0 +0000000000007cec l .text 0000000000000000 .L0 +0000000000007cfe l .text 0000000000000000 .L0 +0000000000007d00 l .text 0000000000000000 .L0 +0000000000007d00 l .text 0000000000000000 .L0 +0000000000007d06 l .text 0000000000000000 .L0 +0000000000007d08 l .text 0000000000000000 .L0 +0000000000007d0c l .text 0000000000000000 .L0 +0000000000007d0c l .text 0000000000000000 .L0 +0000000000007d1a l .text 0000000000000000 .L0 +0000000000007d1a l .text 0000000000000000 .L0 +0000000000007d1c l .text 0000000000000000 .L0 +0000000000007d1c l .text 0000000000000000 .L0 +0000000000007d28 l .text 0000000000000000 .L0 +0000000000007d32 l .text 0000000000000000 .L0 +0000000000007d32 l .text 0000000000000000 .L0 +0000000000007d36 l .text 0000000000000000 .L0 +0000000000007d46 l .text 0000000000000000 .L0 +0000000000007d46 l .text 0000000000000000 .L0 +0000000000007d5a l .text 0000000000000000 .L0 +0000000000007d5c l .text 0000000000000000 .L0 +0000000000007d5c l .text 0000000000000000 .L0 +0000000000007d60 l .text 0000000000000000 .L0 +0000000000007d64 l .text 0000000000000000 .L0 +0000000000007d6a l .text 0000000000000000 .L0 +0000000000007d6e l .text 0000000000000000 .L0 +0000000000007d6e l .text 0000000000000000 .L0 +0000000000007d80 l .text 0000000000000000 .L0 +0000000000007d82 l .text 0000000000000000 .L0 +0000000000007d82 l .text 0000000000000000 .L0 +0000000000007d86 l .text 0000000000000000 .L0 +0000000000007d8c l .text 0000000000000000 .L0 +0000000000007d8c l .text 0000000000000000 .L0 +0000000000007d9e l .text 0000000000000000 .L0 +0000000000007da0 l .text 0000000000000000 .L0 +0000000000007da0 l .text 0000000000000000 .L0 +0000000000007da4 l .text 0000000000000000 .L0 +0000000000007daa l .text 0000000000000000 .L0 +0000000000007daa l .text 0000000000000000 .L0 +0000000000007dbc l .text 0000000000000000 .L0 +0000000000007dbe l .text 0000000000000000 .L0 +0000000000007dbe l .text 0000000000000000 .L0 +0000000000007dc4 l .text 0000000000000000 .L0 +0000000000007dc4 l .text 0000000000000000 .L0 +0000000000007dd6 l .text 0000000000000000 .L0 +0000000000007dd8 l .text 0000000000000000 .L0 +0000000000007dd8 l .text 0000000000000000 .L0 +0000000000007ddc l .text 0000000000000000 .L0 +0000000000007de2 l .text 0000000000000000 .L0 +0000000000007de2 l .text 0000000000000000 .L0 +0000000000007df4 l .text 0000000000000000 .L0 +0000000000007df6 l .text 0000000000000000 .L0 +0000000000007df6 l .text 0000000000000000 .L0 +0000000000007df8 l .text 0000000000000000 .L0 +0000000000007dfe l .text 0000000000000000 .L0 +0000000000007dfe l .text 0000000000000000 .L0 +0000000000007e10 l .text 0000000000000000 .L0 +0000000000007e12 l .text 0000000000000000 .L0 +0000000000007e12 l .text 0000000000000000 .L0 +0000000000007e1a l .text 0000000000000000 .L0 +0000000000007e1a l .text 0000000000000000 .L0 +0000000000007e2c l .text 0000000000000000 .L0 +0000000000007e2e l .text 0000000000000000 .L0 +0000000000007e2e l .text 0000000000000000 .L0 +0000000000007e30 l .text 0000000000000000 .L0 +0000000000007e36 l .text 0000000000000000 .L0 +0000000000007e36 l .text 0000000000000000 .L0 +0000000000007e3a l .text 0000000000000000 .L0 +0000000000007e3a l .text 0000000000000000 .L0 +0000000000007e3a l .text 0000000000000000 .L0 +0000000000007e3a l .text 0000000000000000 .L0 +0000000000007e3a l .text 0000000000000000 .L0 +0000000000007e3a l .text 0000000000000000 .L0 +0000000000007e3a l .text 0000000000000000 .L0 +0000000000007e3a l .text 0000000000000000 .L0 +0000000000007e4a l .text 0000000000000000 .L0 +0000000000007e4c l .text 0000000000000000 .L0 +0000000000007e4e l .text 0000000000000000 .L0 +0000000000007e5a l .text 0000000000000000 .L0 +0000000000007e5c l .text 0000000000000000 .L0 +0000000000007e5c l .text 0000000000000000 .L0 +0000000000007e68 l .text 0000000000000000 .L0 +0000000000007e6c l .text 0000000000000000 .L0 +0000000000007e72 l .text 0000000000000000 .L0 +0000000000007e72 l .text 0000000000000000 .L0 +0000000000007e7e l .text 0000000000000000 .L0 +0000000000007e80 l .text 0000000000000000 .L0 +0000000000007e80 l .text 0000000000000000 .L0 +0000000000007e8c l .text 0000000000000000 .L0 +0000000000007e92 l .text 0000000000000000 .L0 +0000000000007e92 l .text 0000000000000000 .L0 +0000000000007ea0 l .text 0000000000000000 .L0 +0000000000007ea2 l .text 0000000000000000 .L0 +0000000000007ea4 l .text 0000000000000000 .L0 +0000000000007ea4 l .text 0000000000000000 .L0 +0000000000007eaa l .text 0000000000000000 .L0 +0000000000007eb2 l .text 0000000000000000 .L0 +0000000000007eb2 l .text 0000000000000000 .L0 +0000000000007ec0 l .text 0000000000000000 .L0 +0000000000007ec2 l .text 0000000000000000 .L0 +0000000000007ec4 l .text 0000000000000000 .L0 +0000000000007ec4 l .text 0000000000000000 .L0 +0000000000007eca l .text 0000000000000000 .L0 +0000000000007ed2 l .text 0000000000000000 .L0 +0000000000007ed2 l .text 0000000000000000 .L0 +0000000000007ee8 l .text 0000000000000000 .L0 +0000000000007eea l .text 0000000000000000 .L0 +0000000000007eea l .text 0000000000000000 .L0 +0000000000007ef4 l .text 0000000000000000 .L0 +0000000000007ef4 l .text 0000000000000000 .L0 +0000000000007f06 l .text 0000000000000000 .L0 +0000000000007f08 l .text 0000000000000000 .L0 +0000000000007f08 l .text 0000000000000000 .L0 +0000000000007f0c l .text 0000000000000000 .L0 +0000000000007f10 l .text 0000000000000000 .L0 +0000000000007f10 l .text 0000000000000000 .L0 +0000000000007f14 l .text 0000000000000000 .L0 +0000000000007f14 l .text 0000000000000000 .L0 +0000000000007f26 l .text 0000000000000000 .L0 +0000000000007f28 l .text 0000000000000000 .L0 +0000000000007f28 l .text 0000000000000000 .L0 +0000000000007f2c l .text 0000000000000000 .L0 +0000000000007f30 l .text 0000000000000000 .L0 +0000000000007f30 l .text 0000000000000000 .L0 +0000000000007f42 l .text 0000000000000000 .L0 +0000000000007f44 l .text 0000000000000000 .L0 +0000000000007f44 l .text 0000000000000000 .L0 +0000000000007f4a l .text 0000000000000000 .L0 +0000000000007f4a l .text 0000000000000000 .L0 +0000000000007f5c l .text 0000000000000000 .L0 +0000000000007f5e l .text 0000000000000000 .L0 +0000000000007f5e l .text 0000000000000000 .L0 +0000000000007f64 l .text 0000000000000000 .L0 +0000000000007f64 l .text 0000000000000000 .L0 +0000000000007f76 l .text 0000000000000000 .L0 +0000000000007f78 l .text 0000000000000000 .L0 +0000000000007f78 l .text 0000000000000000 .L0 +0000000000007f82 l .text 0000000000000000 .L0 +0000000000007f82 l .text 0000000000000000 .L0 +0000000000007f94 l .text 0000000000000000 .L0 +0000000000007f96 l .text 0000000000000000 .L0 +0000000000007f96 l .text 0000000000000000 .L0 +0000000000007f9c l .text 0000000000000000 .L0 +0000000000007fb4 l .text 0000000000000000 .L0 +0000000000007fb4 l .text 0000000000000000 .L0 +0000000000007fb8 l .text 0000000000000000 .L0 +0000000000007fb8 l .text 0000000000000000 .L0 +0000000000007fb8 l .text 0000000000000000 .L0 +0000000000007fc4 l .text 0000000000000000 .L0 +0000000000007fc4 l .text 0000000000000000 .L0 +0000000000007fc4 l .text 0000000000000000 .L0 +0000000000007fc6 l .text 0000000000000000 .L0 +0000000000007fca l .text 0000000000000000 .L0 +0000000000007fd2 l .text 0000000000000000 .L0 +0000000000007fd4 l .text 0000000000000000 .L0 +0000000000007fd6 l .text 0000000000000000 .L0 +0000000000007fda l .text 0000000000000000 .L0 +0000000000007fdc l .text 0000000000000000 .L0 +0000000000007fe4 l .text 0000000000000000 .L0 +0000000000007fe6 l .text 0000000000000000 .L0 +0000000000007fee l .text 0000000000000000 .L0 +0000000000007ff0 l .text 0000000000000000 .L0 +0000000000007ff0 l .text 0000000000000000 .L0 +0000000000007ff2 l .text 0000000000000000 .L0 +0000000000007ff6 l .text 0000000000000000 .L0 +0000000000007ffe l .text 0000000000000000 .L0 +0000000000008004 l .text 0000000000000000 .L0 +000000000000800c l .text 0000000000000000 .L0 +000000000000801c l .text 0000000000000000 .L0 +000000000000801c l .text 0000000000000000 .L0 +000000000000802a l .text 0000000000000000 .L0 +00000000000027b0 l .debug_frame 0000000000000000 .L0 +0000000000007bec l .text 0000000000000000 .L0 +0000000000007fb8 l .text 0000000000000000 .L0 +0000000000007fb8 l .text 0000000000000000 .L0 +0000000000007fc4 l .text 0000000000000000 .L0 +0000000000007fc4 l .text 0000000000000000 .L0 +000000000000802a l .text 0000000000000000 .L0 +0000000000007c66 l .text 0000000000000000 .L0 +0000000000007c08 l .text 0000000000000000 .L0 +0000000000007ff4 l .text 0000000000000000 .L0 +0000000000007fd2 l .text 0000000000000000 .L0 +000000000000800c l .text 0000000000000000 .L0 +0000000000008004 l .text 0000000000000000 .L0 +000000000000801e l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 nsh_timcmds.c +000000000000c870 l .rodata 0000000000000000 .LC0 +000000000000805e l .text 0000000000000000 .L0 +0000000000008066 l .text 0000000000000000 .L0 +00000000000080c2 l .text 0000000000000000 .L0 +00000000000080ca l .text 0000000000000000 .L0 +000000000000c880 l .rodata 0000000000000000 .LC1 +0000000000008110 l .text 0000000000000000 .L0 +0000000000008084 l .text 0000000000000000 .L2 +00000000000080d8 l .text 0000000000000000 .L4 +00000000000080de l .text 0000000000000000 .L5 +0000000000008074 l .text 0000000000000000 .L3 +00000000000080fc l .text 0000000000000000 .L7 +0000000000007a69 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +00000000000149b7 l .debug_str 0000000000000000 .LASF90 +0000000000014ab8 l .debug_str 0000000000000000 .LASF91 +00000000000147b8 l .debug_str 0000000000000000 .LASF92 +00000000000024f0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000014b2d l .debug_line 0000000000000000 .Ldebug_line0 +0000000000014716 l .debug_str 0000000000000000 .LASF0 +0000000000014935 l .debug_str 0000000000000000 .LASF3 +00000000000148c3 l .debug_str 0000000000000000 .LASF1 +00000000000148d1 l .debug_str 0000000000000000 .LASF2 +000000000001487d l .debug_str 0000000000000000 .LASF4 +000000000001480a l .debug_str 0000000000000000 .LASF5 +00000000000146b3 l .debug_str 0000000000000000 .LASF6 +00000000000147ab l .debug_str 0000000000000000 .LASF7 +0000000000014743 l .debug_str 0000000000000000 .LASF8 +00000000000147d6 l .debug_str 0000000000000000 .LASF9 +0000000000014a71 l .debug_str 0000000000000000 .LASF10 +0000000000014826 l .debug_str 0000000000000000 .LASF11 +00000000000146d0 l .debug_str 0000000000000000 .LASF12 +0000000000014969 l .debug_str 0000000000000000 .LASF13 +0000000000014767 l .debug_str 0000000000000000 .LASF14 +000000000001492c l .debug_str 0000000000000000 .LASF15 +00000000000146ac l .debug_str 0000000000000000 .LASF16 +00000000000146bd l .debug_str 0000000000000000 .LASF17 +0000000000014887 l .debug_str 0000000000000000 .LASF18 +000000000001493e l .debug_str 0000000000000000 .LASF19 +0000000000014866 l .debug_str 0000000000000000 .LASF20 +0000000000014708 l .debug_str 0000000000000000 .LASF21 +0000000000014784 l .debug_str 0000000000000000 .LASF22 +00000000000148ed l .debug_str 0000000000000000 .LASF25 +000000000001486c l .debug_str 0000000000000000 .LASF23 +000000000001485e l .debug_str 0000000000000000 .LASF24 +00000000000146c5 l .debug_str 0000000000000000 .LASF26 +0000000000014aa3 l .debug_str 0000000000000000 .LASF27 +000000000001491b l .debug_str 0000000000000000 .LASF28 +0000000000014778 l .debug_str 0000000000000000 .LASF29 +0000000000014834 l .debug_str 0000000000000000 .LASF30 +0000000000014982 l .debug_str 0000000000000000 .LASF31 +00000000000148fc l .debug_str 0000000000000000 .LASF32 +0000000000014a86 l .debug_str 0000000000000000 .LASF33 +0000000000014845 l .debug_str 0000000000000000 .LASF34 +00000000000149a5 l .debug_str 0000000000000000 .LASF35 +000000000001498b l .debug_str 0000000000000000 .LASF36 +0000000000014977 l .debug_str 0000000000000000 .LASF37 +000000000001488e l .debug_str 0000000000000000 .LASF38 +0000000000014735 l .debug_str 0000000000000000 .LASF39 +0000000000014790 l .debug_str 0000000000000000 .LASF40 +000000000001490c l .debug_str 0000000000000000 .LASF41 +000000000001479c l .debug_str 0000000000000000 .LASF42 +00000000000148aa l .debug_str 0000000000000000 .LASF43 +00000000000148f6 l .debug_str 0000000000000000 .LASF44 +0000000000014a95 l .debug_str 0000000000000000 .LASF45 +0000000000014755 l .debug_str 0000000000000000 .LASF46 +0000000000014770 l .debug_str 0000000000000000 .LASF47 +000000000001474c l .debug_str 0000000000000000 .LASF48 +000000000001475e l .debug_str 0000000000000000 .LASF49 +0000000000014952 l .debug_str 0000000000000000 .LASF50 +000000000001499a l .debug_str 0000000000000000 .LASF51 +00000000000148bd l .debug_str 0000000000000000 .LASF52 +0000000000014a80 l .debug_str 0000000000000000 .LASF93 +00000000000146ec l .debug_str 0000000000000000 .LASF53 +00000000000146f8 l .debug_str 0000000000000000 .LASF54 +00000000000147ff l .debug_str 0000000000000000 .LASF55 +00000000000147a5 l .debug_str 0000000000000000 .LASF56 +00000000000146fd l .debug_str 0000000000000000 .LASF57 +0000000000014994 l .debug_str 0000000000000000 .LASF58 +0000000000014914 l .debug_str 0000000000000000 .LASF59 +0000000000014722 l .debug_str 0000000000000000 .LASF60 +000000000001482e l .debug_str 0000000000000000 .LASF61 +0000000000014971 l .debug_str 0000000000000000 .LASF62 +000000000001489b l .debug_str 0000000000000000 .LASF63 +000000000001483e l .debug_str 0000000000000000 .LASF64 +00000000000146a1 l .debug_str 0000000000000000 .LASF65 +00000000000148a1 l .debug_str 0000000000000000 .LASF66 +000000000001481d l .debug_str 0000000000000000 .LASF67 +0000000000014907 l .debug_str 0000000000000000 .LASF68 +00000000000149ae l .debug_str 0000000000000000 .LASF69 +000000000001495d l .debug_str 0000000000000000 .LASF70 +0000000000014a7a l .debug_str 0000000000000000 .LASF71 +0000000000014a67 l .debug_str 0000000000000000 .LASF72 +0000000000014962 l .debug_str 0000000000000000 .LASF73 +0000000000014943 l .debug_str 0000000000000000 .LASF94 +00000000000148b2 l .debug_str 0000000000000000 .LASF74 +0000000000014804 l .debug_str 0000000000000000 .LASF75 +00000000000148db l .debug_str 0000000000000000 .LASF76 +000000000001472a l .debug_str 0000000000000000 .LASF77 +0000000000014927 l .debug_str 0000000000000000 .LASF78 +0000000000014859 l .debug_str 0000000000000000 .LASF79 +00000000000147e8 l .debug_str 0000000000000000 .LASF95 +000000000000802a l .text 0000000000000000 .LFB1 +000000000000811e l .text 0000000000000000 .LFE1 +0000000000014a90 l .debug_str 0000000000000000 .LASF80 +00000000000160e6 l .debug_loc 0000000000000000 .LLST0 +0000000000014a9e l .debug_str 0000000000000000 .LASF81 +0000000000016145 l .debug_loc 0000000000000000 .LLST1 +0000000000014ab3 l .debug_str 0000000000000000 .LASF82 +000000000001617e l .debug_loc 0000000000000000 .LLST2 +0000000000014aad l .debug_str 0000000000000000 .LASF83 +00000000000148e6 l .debug_str 0000000000000000 .LASF84 +00000000000161dd l .debug_loc 0000000000000000 .LLST3 +0000000000014873 l .debug_str 0000000000000000 .LASF85 +0000000000016202 l .debug_loc 0000000000000000 .LLST4 +0000000000016227 l .debug_loc 0000000000000000 .LLST5 +00000000000146e7 l .debug_str 0000000000000000 .LASF86 +00000000000162d1 l .debug_loc 0000000000000000 .LLST6 +00000000000080a8 l .text 0000000000000000 .LVL14 +00000000000080be l .text 0000000000000000 .LVL16 +00000000000080d6 l .text 0000000000000000 .LVL17 +000000000000811c l .text 0000000000000000 .LVL28 +0000000000008046 l .text 0000000000000000 .LVL3 +000000000000805a l .text 0000000000000000 .LVL4 +0000000000008072 l .text 0000000000000000 .LVL5 +0000000000008096 l .text 0000000000000000 .LVL11 +00000000000147f1 l .debug_str 0000000000000000 .LASF87 +000000000001473b l .debug_str 0000000000000000 .LASF88 +000000000001484f l .debug_str 0000000000000000 .LASF89 +000000000000802a l .text 0000000000000000 .LVL0 +0000000000008034 l .text 0000000000000000 .LVL2 +0000000000008078 l .text 0000000000000000 .LVL6 +0000000000008084 l .text 0000000000000000 .LVL8 +0000000000008030 l .text 0000000000000000 .LVL1 +000000000000807a l .text 0000000000000000 .LVL7 +000000000000808e l .text 0000000000000000 .LVL10 +000000000000808a l .text 0000000000000000 .LVL9 +0000000000008098 l .text 0000000000000000 .LVL12 +00000000000080a0 l .text 0000000000000000 .LVL13 +00000000000080aa l .text 0000000000000000 .LVL15 +00000000000080d8 l .text 0000000000000000 .LVL18 +00000000000080de l .text 0000000000000000 .LVL19 +000000000000811a l .text 0000000000000000 .LVL27 +00000000000080e8 l .text 0000000000000000 .LVL20 +00000000000080fa l .text 0000000000000000 .LVL21 +00000000000080fc l .text 0000000000000000 .LVL22 +0000000000008106 l .text 0000000000000000 .LVL23 +000000000000810a l .text 0000000000000000 .LVL24 +000000000000810e l .text 0000000000000000 .LVL25 +0000000000008118 l .text 0000000000000000 .LVL26 +000000000002008a l .debug_info 0000000000000000 .Ldebug_info0 +000000000000809c l .text 0000000000000000 .LBB2 +00000000000080d8 l .text 0000000000000000 .LBE2 +00000000000080de l .text 0000000000000000 .LBB3 +000000000000811e l .text 0000000000000000 .LBE3 +000000000000802a l .text 0000000000000000 .L0 +000000000000802a l .text 0000000000000000 .L0 +000000000000802a l .text 0000000000000000 .L0 +000000000000802a l .text 0000000000000000 .L0 +000000000000802a l .text 0000000000000000 .L0 +000000000000802a l .text 0000000000000000 .L0 +000000000000802a l .text 0000000000000000 .L0 +000000000000802a l .text 0000000000000000 .L0 +000000000000802e l .text 0000000000000000 .L0 +0000000000008030 l .text 0000000000000000 .L0 +0000000000008032 l .text 0000000000000000 .L0 +0000000000008034 l .text 0000000000000000 .L0 +000000000000803c l .text 0000000000000000 .L0 +000000000000803e l .text 0000000000000000 .L0 +0000000000008046 l .text 0000000000000000 .L0 +0000000000008046 l .text 0000000000000000 .L0 +000000000000804a l .text 0000000000000000 .L0 +0000000000008072 l .text 0000000000000000 .L0 +0000000000008072 l .text 0000000000000000 .L0 +0000000000008074 l .text 0000000000000000 .L0 +0000000000008084 l .text 0000000000000000 .L0 +0000000000008084 l .text 0000000000000000 .L0 +0000000000008084 l .text 0000000000000000 .L0 +000000000000808a l .text 0000000000000000 .L0 +000000000000808e l .text 0000000000000000 .L0 +000000000000808e l .text 0000000000000000 .L0 +0000000000008098 l .text 0000000000000000 .L0 +0000000000008098 l .text 0000000000000000 .L0 +000000000000809c l .text 0000000000000000 .L0 +000000000000809c l .text 0000000000000000 .L0 +000000000000809c l .text 0000000000000000 .L0 +000000000000809c l .text 0000000000000000 .L0 +00000000000080aa l .text 0000000000000000 .L0 +00000000000080aa l .text 0000000000000000 .L0 +00000000000080ae l .text 0000000000000000 .L0 +00000000000080d6 l .text 0000000000000000 .L0 +00000000000080d6 l .text 0000000000000000 .L0 +00000000000080d8 l .text 0000000000000000 .L0 +00000000000080d8 l .text 0000000000000000 .L0 +00000000000080d8 l .text 0000000000000000 .L0 +00000000000080dc l .text 0000000000000000 .L0 +00000000000080dc l .text 0000000000000000 .L0 +00000000000080de l .text 0000000000000000 .L0 +00000000000080de l .text 0000000000000000 .L0 +00000000000080e2 l .text 0000000000000000 .L0 +00000000000080e4 l .text 0000000000000000 .L0 +00000000000080e8 l .text 0000000000000000 .L0 +00000000000080e8 l .text 0000000000000000 .L0 +00000000000080ea l .text 0000000000000000 .L0 +00000000000080ee l .text 0000000000000000 .L0 +00000000000080ee l .text 0000000000000000 .L0 +00000000000080f8 l .text 0000000000000000 .L0 +00000000000080fa l .text 0000000000000000 .L0 +00000000000080fa l .text 0000000000000000 .L0 +00000000000080fc l .text 0000000000000000 .L0 +00000000000080fc l .text 0000000000000000 .L0 +00000000000080fc l .text 0000000000000000 .L0 +00000000000080fe l .text 0000000000000000 .L0 +0000000000008104 l .text 0000000000000000 .L0 +0000000000008106 l .text 0000000000000000 .L0 +000000000000811e l .text 0000000000000000 .L0 +0000000000002870 l .debug_frame 0000000000000000 .L0 +000000000000802a l .text 0000000000000000 .L0 +000000000000811e l .text 0000000000000000 .L0 +0000000000008076 l .text 0000000000000000 .L0 +000000000000803c l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 umm_free.c +0000000000007d0f l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000014b4a l .debug_str 0000000000000000 .LASF28 +0000000000014af0 l .debug_str 0000000000000000 .LASF29 +0000000000014ccc l .debug_str 0000000000000000 .LASF30 +0000000000002540 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000014e52 l .debug_line 0000000000000000 .Ldebug_line0 +0000000000014cc0 l .debug_str 0000000000000000 .LASF0 +0000000000014cf9 l .debug_str 0000000000000000 .LASF8 +0000000000014bfa l .debug_str 0000000000000000 .LASF1 +0000000000014c9a l .debug_str 0000000000000000 .LASF2 +0000000000014b2e l .debug_str 0000000000000000 .LASF3 +0000000000014c2b l .debug_str 0000000000000000 .LASF4 +0000000000014ca4 l .debug_str 0000000000000000 .LASF5 +0000000000014b1c l .debug_str 0000000000000000 .LASF6 +0000000000014c38 l .debug_str 0000000000000000 .LASF7 +0000000000014c4f l .debug_str 0000000000000000 .LASF9 +0000000000014acf l .debug_str 0000000000000000 .LASF10 +0000000000014cad l .debug_str 0000000000000000 .LASF31 +0000000000014b12 l .debug_str 0000000000000000 .LASF11 +0000000000014d02 l .debug_str 0000000000000000 .LASF12 +0000000000014c78 l .debug_str 0000000000000000 .LASF23 +0000000000014ac6 l .debug_str 0000000000000000 .LASF13 +0000000000014c08 l .debug_str 0000000000000000 .LASF14 +0000000000014b04 l .debug_str 0000000000000000 .LASF15 +0000000000014b41 l .debug_str 0000000000000000 .LASF16 +0000000000014c23 l .debug_str 0000000000000000 .LASF17 +0000000000014c90 l .debug_str 0000000000000000 .LASF18 +0000000000014c80 l .debug_str 0000000000000000 .LASF19 +0000000000014c6a l .debug_str 0000000000000000 .LASF20 +0000000000014cb4 l .debug_str 0000000000000000 .LASF21 +0000000000014c10 l .debug_str 0000000000000000 .LASF22 +0000000000014ad4 l .debug_str 0000000000000000 .LASF24 +0000000000014ced l .debug_str 0000000000000000 .LASF25 +0000000000014c5f l .debug_str 0000000000000000 .LASF26 +0000000000014ae6 l .debug_str 0000000000000000 .LASF32 +0000000000014ce7 l .debug_str 0000000000000000 .LASF27 +0000000000014b0d l .debug_str 0000000000000000 .LASF33 +000000000000811e l .text 0000000000000000 .LFB4 +0000000000008130 l .text 0000000000000000 .LFE4 +00000000000163b0 l .debug_loc 0000000000000000 .LLST0 +0000000000008130 l .text 0000000000000000 .LVL2 +0000000000014c57 l .debug_str 0000000000000000 .LASF34 +000000000000811e l .text 0000000000000000 .LVL0 +0000000000008128 l .text 0000000000000000 .LVL1 +000000000002086f l .debug_info 0000000000000000 .Ldebug_info0 +000000000000811e l .text 0000000000000000 .L0 +000000000000811e l .text 0000000000000000 .L0 +0000000000008124 l .text 0000000000000000 .L0 +0000000000008126 l .text 0000000000000000 .L0 +0000000000008130 l .text 0000000000000000 .L0 +00000000000028b8 l .debug_frame 0000000000000000 .L0 +000000000000811e l .text 0000000000000000 .L0 +0000000000008130 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 umm_malloc.c +0000000000007e1c l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000014dfc l .debug_str 0000000000000000 .LASF14 +0000000000014ddf l .debug_str 0000000000000000 .LASF15 +0000000000014d6e l .debug_str 0000000000000000 .LASF16 +0000000000002560 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000014f8d l .debug_line 0000000000000000 .Ldebug_line0 +0000000000014db0 l .debug_str 0000000000000000 .LASF0 +0000000000014d60 l .debug_str 0000000000000000 .LASF1 +0000000000014dd5 l .debug_str 0000000000000000 .LASF2 +0000000000014d9d l .debug_str 0000000000000000 .LASF3 +0000000000014d1a l .debug_str 0000000000000000 .LASF4 +0000000000014d8e l .debug_str 0000000000000000 .LASF5 +0000000000014d37 l .debug_str 0000000000000000 .LASF6 +0000000000014dcd l .debug_str 0000000000000000 .LASF8 +0000000000014d49 l .debug_str 0000000000000000 .LASF7 +0000000000014d27 l .debug_str 0000000000000000 .LASF9 +0000000000014d89 l .debug_str 0000000000000000 .LASF10 +0000000000014d0c l .debug_str 0000000000000000 .LASF11 +0000000000014dc1 l .debug_str 0000000000000000 .LASF12 +0000000000014d97 l .debug_str 0000000000000000 .LASF13 +0000000000014df5 l .debug_str 0000000000000000 .LASF17 +0000000000008130 l .text 0000000000000000 .LFB4 +000000000000813c l .text 0000000000000000 .LFE4 +0000000000014dbc l .debug_str 0000000000000000 .LASF18 +00000000000163fc l .debug_loc 0000000000000000 .LLST0 +000000000000813c l .text 0000000000000000 .LVL2 +0000000000014d2e l .debug_str 0000000000000000 .LASF19 +0000000000008130 l .text 0000000000000000 .LVL0 +0000000000008134 l .text 0000000000000000 .LVL1 +0000000000020a7a l .debug_info 0000000000000000 .Ldebug_info0 +0000000000008130 l .text 0000000000000000 .L0 +0000000000008130 l .text 0000000000000000 .L0 +0000000000008130 l .text 0000000000000000 .L0 +0000000000008132 l .text 0000000000000000 .L0 +000000000000813c l .text 0000000000000000 .L0 +00000000000028e0 l .debug_frame 0000000000000000 .L0 +0000000000008130 l .text 0000000000000000 .L0 +000000000000813c l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 umm_memalign.c +0000000000008184 l .text 0000000000000000 .L1 +0000000000008178 l .text 0000000000000000 .L3 +000000000000815e l .text 0000000000000000 .L4 +0000000000007eb8 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000014f41 l .debug_str 0000000000000000 .LASF36 +0000000000014ee5 l .debug_str 0000000000000000 .LASF37 +00000000000150f7 l .debug_str 0000000000000000 .LASF38 +0000000000002580 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000001507d l .debug_line 0000000000000000 .Ldebug_line0 +00000000000150eb l .debug_str 0000000000000000 .LASF0 +0000000000015129 l .debug_str 0000000000000000 .LASF7 +0000000000014ff1 l .debug_str 0000000000000000 .LASF1 +00000000000150a1 l .debug_str 0000000000000000 .LASF2 +0000000000014f25 l .debug_str 0000000000000000 .LASF3 +0000000000015033 l .debug_str 0000000000000000 .LASF4 +00000000000150cf l .debug_str 0000000000000000 .LASF5 +0000000000014f13 l .debug_str 0000000000000000 .LASF6 +0000000000015007 l .debug_str 0000000000000000 .LASF8 +0000000000015040 l .debug_str 0000000000000000 .LASF9 +0000000000015057 l .debug_str 0000000000000000 .LASF10 +0000000000014eba l .debug_str 0000000000000000 .LASF11 +0000000000014eb5 l .debug_str 0000000000000000 .LASF12 +00000000000150d8 l .debug_str 0000000000000000 .LASF39 +0000000000014f09 l .debug_str 0000000000000000 .LASF13 +0000000000015132 l .debug_str 0000000000000000 .LASF14 +0000000000014ec1 l .debug_str 0000000000000000 .LASF25 +0000000000014eac l .debug_str 0000000000000000 .LASF15 +0000000000014fff l .debug_str 0000000000000000 .LASF16 +00000000000150ab l .debug_str 0000000000000000 .LASF17 +0000000000014f38 l .debug_str 0000000000000000 .LASF18 +000000000001502b l .debug_str 0000000000000000 .LASF19 +0000000000015097 l .debug_str 0000000000000000 .LASF20 +0000000000015087 l .debug_str 0000000000000000 .LASF21 +000000000001506a l .debug_str 0000000000000000 .LASF22 +00000000000150df l .debug_str 0000000000000000 .LASF23 +0000000000015018 l .debug_str 0000000000000000 .LASF24 +0000000000014ec9 l .debug_str 0000000000000000 .LASF26 +000000000001511d l .debug_str 0000000000000000 .LASF27 +000000000001505f l .debug_str 0000000000000000 .LASF28 +0000000000014edb l .debug_str 0000000000000000 .LASF40 +0000000000015117 l .debug_str 0000000000000000 .LASF29 +000000000001500f l .debug_str 0000000000000000 .LASF41 +000000000000813c l .text 0000000000000000 .LFB4 +0000000000008196 l .text 0000000000000000 .LFE4 +0000000000015078 l .debug_str 0000000000000000 .LASF30 +0000000000016448 l .debug_loc 0000000000000000 .LLST0 +0000000000015112 l .debug_str 0000000000000000 .LASF31 +0000000000016494 l .debug_loc 0000000000000000 .LLST1 +00000000000150b4 l .debug_str 0000000000000000 .LASF32 +00000000000164e0 l .debug_loc 0000000000000000 .LLST2 +0000000000016503 l .debug_loc 0000000000000000 .LLST3 +000000000000815c l .text 0000000000000000 .LVL1 +000000000000816e l .text 0000000000000000 .LVL2 +0000000000008180 l .text 0000000000000000 .LVL4 +00000000000150bc l .debug_str 0000000000000000 .LASF33 +0000000000014efd l .debug_str 0000000000000000 .LASF34 +0000000000015082 l .debug_str 0000000000000000 .LASF35 +000000000000813c l .text 0000000000000000 .LVL0 +000000000000818a l .text 0000000000000000 .LVL7 +0000000000008188 l .text 0000000000000000 .LVL6 +0000000000008184 l .text 0000000000000000 .LVL5 +0000000000008170 l .text 0000000000000000 .LVL3 +0000000000008192 l .text 0000000000000000 .LVL8 +0000000000020b72 l .debug_info 0000000000000000 .Ldebug_info0 +000000000000813c l .text 0000000000000000 .L0 +000000000000813c l .text 0000000000000000 .L0 +000000000000813c l .text 0000000000000000 .L0 +000000000000813c l .text 0000000000000000 .L0 +000000000000813c l .text 0000000000000000 .L0 +0000000000008140 l .text 0000000000000000 .L0 +0000000000008144 l .text 0000000000000000 .L0 +000000000000814e l .text 0000000000000000 .L0 +0000000000008152 l .text 0000000000000000 .L0 +0000000000008154 l .text 0000000000000000 .L0 +000000000000815c l .text 0000000000000000 .L0 +000000000000815e l .text 0000000000000000 .L0 +000000000000815e l .text 0000000000000000 .L0 +000000000000815e l .text 0000000000000000 .L0 +0000000000008170 l .text 0000000000000000 .L0 +0000000000008170 l .text 0000000000000000 .L0 +0000000000008172 l .text 0000000000000000 .L0 +0000000000008172 l .text 0000000000000000 .L0 +0000000000008180 l .text 0000000000000000 .L0 +0000000000008180 l .text 0000000000000000 .L0 +0000000000008184 l .text 0000000000000000 .L0 +0000000000008196 l .text 0000000000000000 .L0 +0000000000002908 l .debug_frame 0000000000000000 .L0 +000000000000813c l .text 0000000000000000 .L0 +0000000000008196 l .text 0000000000000000 .L0 +000000000000814e l .text 0000000000000000 .L0 +0000000000008140 l .text 0000000000000000 .L0 +0000000000008186 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 umm_realloc.c +00000000000081de l .text 0000000000000000 .L1 +00000000000081d2 l .text 0000000000000000 .L3 +00000000000081b8 l .text 0000000000000000 .L4 +0000000000008006 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +00000000000151c4 l .debug_str 0000000000000000 .LASF36 +0000000000015175 l .debug_str 0000000000000000 .LASF37 +0000000000015381 l .debug_str 0000000000000000 .LASF38 +00000000000025a0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +00000000000152b5 l .debug_line 0000000000000000 .Ldebug_line0 +0000000000015375 l .debug_str 0000000000000000 .LASF0 +00000000000153b3 l .debug_str 0000000000000000 .LASF7 +0000000000015274 l .debug_str 0000000000000000 .LASF1 +0000000000015320 l .debug_str 0000000000000000 .LASF2 +00000000000151a8 l .debug_str 0000000000000000 .LASF3 +00000000000152b5 l .debug_str 0000000000000000 .LASF4 +000000000001534e l .debug_str 0000000000000000 .LASF5 +0000000000015196 l .debug_str 0000000000000000 .LASF6 +000000000001528a l .debug_str 0000000000000000 .LASF8 +00000000000152c2 l .debug_str 0000000000000000 .LASF9 +00000000000152d9 l .debug_str 0000000000000000 .LASF10 +000000000001514a l .debug_str 0000000000000000 .LASF11 +0000000000015145 l .debug_str 0000000000000000 .LASF12 +0000000000015357 l .debug_str 0000000000000000 .LASF39 +000000000001518c l .debug_str 0000000000000000 .LASF13 +00000000000153bc l .debug_str 0000000000000000 .LASF14 +0000000000015151 l .debug_str 0000000000000000 .LASF25 +000000000001513c l .debug_str 0000000000000000 .LASF15 +0000000000015282 l .debug_str 0000000000000000 .LASF16 +000000000001532a l .debug_str 0000000000000000 .LASF17 +00000000000151bb l .debug_str 0000000000000000 .LASF18 +00000000000152ad l .debug_str 0000000000000000 .LASF19 +0000000000015316 l .debug_str 0000000000000000 .LASF20 +0000000000015306 l .debug_str 0000000000000000 .LASF21 +00000000000152f3 l .debug_str 0000000000000000 .LASF22 +000000000001535e l .debug_str 0000000000000000 .LASF23 +000000000001529a l .debug_str 0000000000000000 .LASF24 +0000000000015159 l .debug_str 0000000000000000 .LASF26 +00000000000153a7 l .debug_str 0000000000000000 .LASF27 +00000000000152e8 l .debug_str 0000000000000000 .LASF28 +000000000001516b l .debug_str 0000000000000000 .LASF40 +00000000000153a1 l .debug_str 0000000000000000 .LASF29 +0000000000015292 l .debug_str 0000000000000000 .LASF41 +0000000000008196 l .text 0000000000000000 .LFB4 +00000000000081f0 l .text 0000000000000000 .LFE4 +00000000000152e1 l .debug_str 0000000000000000 .LASF30 +0000000000016539 l .debug_loc 0000000000000000 .LLST0 +000000000001539c l .debug_str 0000000000000000 .LASF31 +0000000000016585 l .debug_loc 0000000000000000 .LLST1 +0000000000015333 l .debug_str 0000000000000000 .LASF32 +00000000000165d1 l .debug_loc 0000000000000000 .LLST2 +00000000000165f4 l .debug_loc 0000000000000000 .LLST3 +00000000000081b6 l .text 0000000000000000 .LVL1 +00000000000081c8 l .text 0000000000000000 .LVL2 +00000000000081da l .text 0000000000000000 .LVL4 +000000000001533b l .debug_str 0000000000000000 .LASF33 +000000000001536a l .debug_str 0000000000000000 .LASF34 +0000000000015301 l .debug_str 0000000000000000 .LASF35 +0000000000008196 l .text 0000000000000000 .LVL0 +00000000000081e4 l .text 0000000000000000 .LVL7 +00000000000081e2 l .text 0000000000000000 .LVL6 +00000000000081de l .text 0000000000000000 .LVL5 +00000000000081ca l .text 0000000000000000 .LVL3 +00000000000081ec l .text 0000000000000000 .LVL8 +0000000000020e06 l .debug_info 0000000000000000 .Ldebug_info0 +0000000000008196 l .text 0000000000000000 .L0 +0000000000008196 l .text 0000000000000000 .L0 +0000000000008196 l .text 0000000000000000 .L0 +0000000000008196 l .text 0000000000000000 .L0 +0000000000008196 l .text 0000000000000000 .L0 +000000000000819a l .text 0000000000000000 .L0 +000000000000819e l .text 0000000000000000 .L0 +00000000000081a8 l .text 0000000000000000 .L0 +00000000000081ac l .text 0000000000000000 .L0 +00000000000081ae l .text 0000000000000000 .L0 +00000000000081b6 l .text 0000000000000000 .L0 +00000000000081b8 l .text 0000000000000000 .L0 +00000000000081b8 l .text 0000000000000000 .L0 +00000000000081b8 l .text 0000000000000000 .L0 +00000000000081ca l .text 0000000000000000 .L0 +00000000000081ca l .text 0000000000000000 .L0 +00000000000081cc l .text 0000000000000000 .L0 +00000000000081cc l .text 0000000000000000 .L0 +00000000000081da l .text 0000000000000000 .L0 +00000000000081da l .text 0000000000000000 .L0 +00000000000081de l .text 0000000000000000 .L0 +00000000000081f0 l .text 0000000000000000 .L0 +0000000000002950 l .debug_frame 0000000000000000 .L0 +0000000000008196 l .text 0000000000000000 .L0 +00000000000081f0 l .text 0000000000000000 .L0 +00000000000081a8 l .text 0000000000000000 .L0 +000000000000819a l .text 0000000000000000 .L0 +00000000000081e0 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 umm_zalloc.c +0000000000008210 l .text 0000000000000000 .L1 +0000000000008154 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +00000000000154cc l .debug_str 0000000000000000 .LASF14 +00000000000154af l .debug_str 0000000000000000 .LASF15 +0000000000015437 l .debug_str 0000000000000000 .LASF16 +00000000000025c0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +00000000000154ec l .debug_line 0000000000000000 .Ldebug_line0 +0000000000015479 l .debug_str 0000000000000000 .LASF0 +0000000000015429 l .debug_str 0000000000000000 .LASF1 +000000000001549e l .debug_str 0000000000000000 .LASF2 +0000000000015466 l .debug_str 0000000000000000 .LASF3 +00000000000153d4 l .debug_str 0000000000000000 .LASF4 +0000000000015457 l .debug_str 0000000000000000 .LASF5 +00000000000153f9 l .debug_str 0000000000000000 .LASF6 +0000000000015496 l .debug_str 0000000000000000 .LASF8 +000000000001540b l .debug_str 0000000000000000 .LASF7 +00000000000153f2 l .debug_str 0000000000000000 .LASF9 +0000000000015452 l .debug_str 0000000000000000 .LASF10 +00000000000153c6 l .debug_str 0000000000000000 .LASF11 +000000000001548a l .debug_str 0000000000000000 .LASF12 +0000000000015460 l .debug_str 0000000000000000 .LASF13 +0000000000015422 l .debug_str 0000000000000000 .LASF17 +00000000000081f0 l .text 0000000000000000 .LFB4 +000000000000821a l .text 0000000000000000 .LFE4 +0000000000015485 l .debug_str 0000000000000000 .LASF18 +000000000001662a l .debug_loc 0000000000000000 .LLST0 +0000000000016675 l .debug_loc 0000000000000000 .LLST1 +0000000000008200 l .text 0000000000000000 .LVL1 +0000000000008210 l .text 0000000000000000 .LVL3 +00000000000154c5 l .debug_str 0000000000000000 .LASF19 +00000000000154a8 l .debug_str 0000000000000000 .LASF20 +00000000000153e1 l .debug_str 0000000000000000 .LASF21 +00000000000081f0 l .text 0000000000000000 .LVL0 +0000000000008218 l .text 0000000000000000 .LVL5 +0000000000008202 l .text 0000000000000000 .LVL2 +0000000000008216 l .text 0000000000000000 .LVL4 +000000000002109a l .debug_info 0000000000000000 .Ldebug_info0 +00000000000081f0 l .text 0000000000000000 .L0 +00000000000081f0 l .text 0000000000000000 .L0 +00000000000081f0 l .text 0000000000000000 .L0 +00000000000081f6 l .text 0000000000000000 .L0 +00000000000081f8 l .text 0000000000000000 .L0 +0000000000008202 l .text 0000000000000000 .L0 +0000000000008202 l .text 0000000000000000 .L0 +0000000000008204 l .text 0000000000000000 .L0 +0000000000008210 l .text 0000000000000000 .L0 +0000000000008210 l .text 0000000000000000 .L0 +000000000000821a l .text 0000000000000000 .L0 +0000000000002998 l .debug_frame 0000000000000000 .L0 +00000000000081f0 l .text 0000000000000000 .L0 +000000000000821a l .text 0000000000000000 .L0 +0000000000008212 l .text 0000000000000000 .L0 +00000000000081f6 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 umm_sbrk.c +000000000000c890 l .rodata 0000000000000000 .LC0 +0000000000008228 l .text 0000000000000000 .L0 +000000000000c8a0 l .rodata 0000000000000000 .LC1 +0000000000008234 l .text 0000000000000000 .L0 +0000000000008244 l .text 0000000000000000 .L2 +0000000000008294 l .text 0000000000000000 .L1 +00000000000082a2 l .text 0000000000000000 .L4 +000000000000821c l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000015642 l .debug_str 0000000000000000 .LASF44 +00000000000155ed l .debug_str 0000000000000000 .LASF45 +0000000000015814 l .debug_str 0000000000000000 .LASF46 +00000000000025e0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000001561c l .debug_line 0000000000000000 .Ldebug_line0 +00000000000157ff l .debug_str 0000000000000000 .LASF0 +0000000000015849 l .debug_str 0000000000000000 .LASF7 +00000000000156fb l .debug_str 0000000000000000 .LASF1 +00000000000157b6 l .debug_str 0000000000000000 .LASF2 +0000000000015626 l .debug_str 0000000000000000 .LASF3 +000000000001573f l .debug_str 0000000000000000 .LASF4 +00000000000157e3 l .debug_str 0000000000000000 .LASF5 +0000000000015614 l .debug_str 0000000000000000 .LASF6 +00000000000156f2 l .debug_str 0000000000000000 .LASF8 +000000000001571b l .debug_str 0000000000000000 .LASF9 +0000000000015756 l .debug_str 0000000000000000 .LASF10 +000000000001576d l .debug_str 0000000000000000 .LASF11 +0000000000015736 l .debug_str 0000000000000000 .LASF12 +000000000001559d l .debug_str 0000000000000000 .LASF13 +000000000001558e l .debug_str 0000000000000000 .LASF14 +0000000000015589 l .debug_str 0000000000000000 .LASF15 +00000000000157ec l .debug_str 0000000000000000 .LASF47 +000000000001560a l .debug_str 0000000000000000 .LASF16 +0000000000015852 l .debug_str 0000000000000000 .LASF17 +0000000000015595 l .debug_str 0000000000000000 .LASF28 +0000000000015775 l .debug_str 0000000000000000 .LASF18 +0000000000015709 l .debug_str 0000000000000000 .LASF19 +0000000000015601 l .debug_str 0000000000000000 .LASF20 +0000000000015639 l .debug_str 0000000000000000 .LASF21 +00000000000155da l .debug_str 0000000000000000 .LASF22 +00000000000157ac l .debug_str 0000000000000000 .LASF23 +000000000001579c l .debug_str 0000000000000000 .LASF24 +0000000000015789 l .debug_str 0000000000000000 .LASF25 +00000000000157f3 l .debug_str 0000000000000000 .LASF26 +0000000000015723 l .debug_str 0000000000000000 .LASF27 +00000000000155ae l .debug_str 0000000000000000 .LASF29 +0000000000015835 l .debug_str 0000000000000000 .LASF30 +000000000001577e l .debug_str 0000000000000000 .LASF31 +00000000000155c9 l .debug_str 0000000000000000 .LASF48 +000000000001582f l .debug_str 0000000000000000 .LASF32 +0000000000015797 l .debug_str 0000000000000000 .LASF49 +000000000000821a l .text 0000000000000000 .LFB4 +00000000000082b2 l .text 0000000000000000 .LFE4 +0000000000015584 l .debug_str 0000000000000000 .LASF50 +00000000000166ab l .debug_loc 0000000000000000 .LLST0 +00000000000157c8 l .debug_str 0000000000000000 .LASF33 +0000000000016736 l .debug_loc 0000000000000000 .LLST1 +000000000001574c l .debug_str 0000000000000000 .LASF34 +000000000001676c l .debug_loc 0000000000000000 .LLST2 +00000000000155d3 l .debug_str 0000000000000000 .LASF35 +00000000000167b5 l .debug_loc 0000000000000000 .LLST3 +000000000001580b l .debug_str 0000000000000000 .LASF36 +00000000000167eb l .debug_loc 0000000000000000 .LLST4 +0000000000015841 l .debug_str 0000000000000000 .LASF37 +00000000000155a7 l .debug_str 0000000000000000 .LASF51 +0000000000008244 l .text 0000000000000000 .LVL2 +0000000000008254 l .text 0000000000000000 .LVL3 +0000000000008262 l .text 0000000000000000 .LVL4 +000000000000827a l .text 0000000000000000 .LVL9 +0000000000008294 l .text 0000000000000000 .LVL13 +00000000000082aa l .text 0000000000000000 .LVL15 +00000000000155c0 l .debug_str 0000000000000000 .LASF38 +00000000000157d0 l .debug_str 0000000000000000 .LASF39 +00000000000155e2 l .debug_str 0000000000000000 .LASF40 +000000000001557c l .debug_str 0000000000000000 .LASF41 +0000000000015711 l .debug_str 0000000000000000 .LASF42 +00000000000157c0 l .debug_str 0000000000000000 .LASF43 +000000000000821a l .text 0000000000000000 .LVL0 +000000000000823c l .text 0000000000000000 .LVL1 +000000000000826c l .text 0000000000000000 .LVL6 +000000000000826e l .text 0000000000000000 .LVL7 +0000000000008264 l .text 0000000000000000 .LVL5 +00000000000082a2 l .text 0000000000000000 .LVL14 +00000000000082b0 l .text 0000000000000000 .LVL16 +000000000000827c l .text 0000000000000000 .LVL10 +0000000000008286 l .text 0000000000000000 .LVL12 +0000000000008270 l .text 0000000000000000 .LVL8 +000000000000827e l .text 0000000000000000 .LVL11 +00000000000211cc l .debug_info 0000000000000000 .Ldebug_info0 +000000000000821a l .text 0000000000000000 .L0 +000000000000821a l .text 0000000000000000 .L0 +000000000000821a l .text 0000000000000000 .L0 +000000000000821a l .text 0000000000000000 .L0 +000000000000821a l .text 0000000000000000 .L0 +000000000000821a l .text 0000000000000000 .L0 +000000000000821a l .text 0000000000000000 .L0 +000000000000821a l .text 0000000000000000 .L0 +000000000000821a l .text 0000000000000000 .L0 +0000000000008224 l .text 0000000000000000 .L0 +0000000000008228 l .text 0000000000000000 .L0 +0000000000008244 l .text 0000000000000000 .L0 +000000000000824a l .text 0000000000000000 .L0 +000000000000824a l .text 0000000000000000 .L0 +000000000000824a l .text 0000000000000000 .L0 +000000000000824a l .text 0000000000000000 .L0 +000000000000824c l .text 0000000000000000 .L0 +0000000000008254 l .text 0000000000000000 .L0 +0000000000008254 l .text 0000000000000000 .L0 +0000000000008264 l .text 0000000000000000 .L0 +0000000000008264 l .text 0000000000000000 .L0 +0000000000008266 l .text 0000000000000000 .L0 +0000000000008266 l .text 0000000000000000 .L0 +000000000000826e l .text 0000000000000000 .L0 +0000000000008270 l .text 0000000000000000 .L0 +0000000000008270 l .text 0000000000000000 .L0 +000000000000827c l .text 0000000000000000 .L0 +000000000000827c l .text 0000000000000000 .L0 +000000000000827e l .text 0000000000000000 .L0 +000000000000827e l .text 0000000000000000 .L0 +000000000000827e l .text 0000000000000000 .L0 +0000000000008282 l .text 0000000000000000 .L0 +0000000000008294 l .text 0000000000000000 .L0 +00000000000082a2 l .text 0000000000000000 .L0 +00000000000082a2 l .text 0000000000000000 .L0 +00000000000082ae l .text 0000000000000000 .L0 +00000000000082ae l .text 0000000000000000 .L0 +00000000000082ae l .text 0000000000000000 .L0 +00000000000082b2 l .text 0000000000000000 .L0 +00000000000029d0 l .debug_frame 0000000000000000 .L0 +000000000000821a l .text 0000000000000000 .L0 +00000000000082b2 l .text 0000000000000000 .L0 +0000000000008296 l .text 0000000000000000 .L0 +0000000000008224 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 mm_brkaddr.c +000000000000c8b8 l .rodata 0000000000000000 .LC0 +00000000000082b8 l .text 0000000000000000 .L0 +000000000000c8d0 l .rodata 0000000000000000 .LC1 +00000000000082c4 l .text 0000000000000000 .L0 +00000000000082b6 l .text 0000000000000000 .L2 +00000000000082d6 l .text 0000000000000000 .L3 +00000000000082dc l .text 0000000000000000 .L1 +0000000000008379 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +00000000000158e2 l .debug_str 0000000000000000 .LASF57 +0000000000015a02 l .debug_str 0000000000000000 .LASF58 +0000000000015af5 l .debug_str 0000000000000000 .LASF59 +0000000000002600 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +00000000000158e4 l .debug_line 0000000000000000 .Ldebug_line0 +0000000000015a48 l .debug_str 0000000000000000 .LASF0 +000000000001587e l .debug_str 0000000000000000 .LASF2 +0000000000015a28 l .debug_str 0000000000000000 .LASF1 +0000000000015a36 l .debug_str 0000000000000000 .LASF3 +00000000000158c8 l .debug_str 0000000000000000 .LASF4 +0000000000015a9d l .debug_str 0000000000000000 .LASF5 +0000000000015b69 l .debug_str 0000000000000000 .LASF6 +0000000000015abd l .debug_str 0000000000000000 .LASF7 +0000000000015b2c l .debug_str 0000000000000000 .LASF8 +0000000000015b56 l .debug_str 0000000000000000 .LASF9 +0000000000015a5a l .debug_str 0000000000000000 .LASF10 +0000000000015997 l .debug_str 0000000000000000 .LASF11 +0000000000015ac6 l .debug_str 0000000000000000 .LASF12 +000000000001599f l .debug_str 0000000000000000 .LASF13 +00000000000158d2 l .debug_str 0000000000000000 .LASF14 +0000000000015b3e l .debug_str 0000000000000000 .LASF15 +0000000000015ab0 l .debug_str 0000000000000000 .LASF16 +0000000000015ad4 l .debug_str 0000000000000000 .LASF20 +00000000000159ef l .debug_str 0000000000000000 .LASF17 +0000000000015878 l .debug_str 0000000000000000 .LASF18 +0000000000015adf l .debug_str 0000000000000000 .LASF19 +0000000000015b5e l .debug_str 0000000000000000 .LASF21 +0000000000015992 l .debug_str 0000000000000000 .LASF22 +0000000000015a23 l .debug_str 0000000000000000 .LASF23 +0000000000015b7b l .debug_str 0000000000000000 .LASF24 +00000000000159ba l .debug_str 0000000000000000 .LASF25 +0000000000015a17 l .debug_str 0000000000000000 .LASF26 +0000000000015b18 l .debug_str 0000000000000000 .LASF27 +0000000000015b10 l .debug_str 0000000000000000 .LASF28 +00000000000158bc l .debug_str 0000000000000000 .LASF29 +0000000000015b86 l .debug_str 0000000000000000 .LASF30 +00000000000159c8 l .debug_str 0000000000000000 .LASF31 +000000000001585c l .debug_str 0000000000000000 .LASF32 +00000000000159e4 l .debug_str 0000000000000000 .LASF33 +0000000000015a91 l .debug_str 0000000000000000 .LASF34 +0000000000015b49 l .debug_str 0000000000000000 .LASF35 +0000000000015b22 l .debug_str 0000000000000000 .LASF36 +00000000000159a9 l .debug_str 0000000000000000 .LASF37 +0000000000015a3f l .debug_str 0000000000000000 .LASF38 +0000000000015a54 l .debug_str 0000000000000000 .LASF39 +00000000000158d9 l .debug_str 0000000000000000 .LASF40 +00000000000159af l .debug_str 0000000000000000 .LASF41 +0000000000015ace l .debug_str 0000000000000000 .LASF42 +00000000000159fa l .debug_str 0000000000000000 .LASF43 +00000000000159d3 l .debug_str 0000000000000000 .LASF44 +0000000000015a89 l .debug_str 0000000000000000 .LASF45 +000000000001589e l .debug_str 0000000000000000 .LASF46 +00000000000159f5 l .debug_str 0000000000000000 .LASF47 +00000000000159b5 l .debug_str 0000000000000000 .LASF48 +0000000000015b76 l .debug_str 0000000000000000 .LASF49 +0000000000015887 l .debug_str 0000000000000000 .LASF50 +0000000000015869 l .debug_str 0000000000000000 .LASF51 +00000000000159da l .debug_str 0000000000000000 .LASF52 +0000000000015b44 l .debug_str 0000000000000000 .LASF53 +0000000000015890 l .debug_str 0000000000000000 .LASF54 +0000000000015a7a l .debug_str 0000000000000000 .LASF55 +0000000000015aea l .debug_str 0000000000000000 .LASF60 +00000000000082b2 l .text 0000000000000000 .LFB7 +00000000000082de l .text 0000000000000000 .LFE7 +0000000000016818 l .debug_loc 0000000000000000 .LLST0 +00000000000158b5 l .debug_str 0000000000000000 .LASF56 +000000000001687a l .debug_loc 0000000000000000 .LLST1 +0000000000015ab5 l .debug_str 0000000000000000 .LASF61 +00000000000168c6 l .debug_loc 0000000000000000 .LLST2 +00000000000082d6 l .text 0000000000000000 .LVL3 +0000000000015a71 l .debug_str 0000000000000000 .LASF62 +00000000000082b2 l .text 0000000000000000 .LVL0 +00000000000082cc l .text 0000000000000000 .LVL2 +00000000000082d8 l .text 0000000000000000 .LVL4 +00000000000082c4 l .text 0000000000000000 .LVL1 +00000000000082dc l .text 0000000000000000 .LVL5 +0000000000021538 l .debug_info 0000000000000000 .Ldebug_info0 +00000000000082b2 l .text 0000000000000000 .L0 +00000000000082b2 l .text 0000000000000000 .L0 +00000000000082b2 l .text 0000000000000000 .L0 +00000000000082b2 l .text 0000000000000000 .L0 +00000000000082b4 l .text 0000000000000000 .L0 +00000000000082b6 l .text 0000000000000000 .L0 +00000000000082b6 l .text 0000000000000000 .L0 +00000000000082b8 l .text 0000000000000000 .L0 +00000000000082cc l .text 0000000000000000 .L0 +00000000000082ce l .text 0000000000000000 .L0 +00000000000082d6 l .text 0000000000000000 .L0 +00000000000082d6 l .text 0000000000000000 .L0 +00000000000082d6 l .text 0000000000000000 .L0 +00000000000082d8 l .text 0000000000000000 .L0 +00000000000082d8 l .text 0000000000000000 .L0 +00000000000082da l .text 0000000000000000 .L0 +00000000000082dc l .text 0000000000000000 .L0 +00000000000082de l .text 0000000000000000 .L0 +0000000000002a18 l .debug_frame 0000000000000000 .L0 +00000000000082b2 l .text 0000000000000000 .L0 +00000000000082de l .text 0000000000000000 .L0 +00000000000082b8 l .text 0000000000000000 .L0 +00000000000082ce l .text 0000000000000000 .L0 +00000000000082d6 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 mm_extend.c +000000000000c8e8 l .rodata 0000000000000000 .LC0 +00000000000082ee l .text 0000000000000000 .L0 +000000000000c8f8 l .rodata 0000000000000000 .LC1 +00000000000082fa l .text 0000000000000000 .L0 +000000000000c910 l .rodata 0000000000000000 .LC2 +0000000000008314 l .text 0000000000000000 .L0 +000000000000c950 l .rodata 0000000000000000 .LC3 +0000000000008332 l .text 0000000000000000 .L0 +000000000000c9b0 l .rodata 0000000000000000 .LC4 +0000000000008348 l .text 0000000000000000 .L0 +000000000000c9f0 l .rodata 0000000000000000 .LC5 +0000000000008364 l .text 0000000000000000 .L0 +000000000000ca00 l .rodata 0000000000000000 .LC6 +000000000000837c l .text 0000000000000000 .L0 +000000000000ca48 l .rodata 0000000000000000 .LC7 +0000000000008396 l .text 0000000000000000 .L0 +00000000000082ee l .text 0000000000000000 .L2 +000000000000830a l .text 0000000000000000 .L3 +0000000000008314 l .text 0000000000000000 .L4 +0000000000008322 l .text 0000000000000000 .L5 +00000000000082fa l .text 0000000000000000 .L15 +0000000000008340 l .text 0000000000000000 .L6 +0000000000008356 l .text 0000000000000000 .L7 +0000000000008372 l .text 0000000000000000 .L8 +000000000000838a l .text 0000000000000000 .L9 +00000000000083a4 l .text 0000000000000000 .L10 +00000000000084d2 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000015c22 l .debug_str 0000000000000000 .LASF64 +0000000000015e6e l .debug_str 0000000000000000 .LASF65 +0000000000015eaf l .debug_str 0000000000000000 .LASF66 +0000000000002620 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000015b4d l .debug_line 0000000000000000 .Ldebug_line0 +0000000000015d8d l .debug_str 0000000000000000 .LASF0 +0000000000015bb3 l .debug_str 0000000000000000 .LASF2 +0000000000015d60 l .debug_str 0000000000000000 .LASF1 +0000000000015d6e l .debug_str 0000000000000000 .LASF3 +0000000000015bfd l .debug_str 0000000000000000 .LASF4 +0000000000015de4 l .debug_str 0000000000000000 .LASF5 +0000000000015eca l .debug_str 0000000000000000 .LASF6 +0000000000015e04 l .debug_str 0000000000000000 .LASF7 +0000000000015e56 l .debug_str 0000000000000000 .LASF8 +0000000000015e9c l .debug_str 0000000000000000 .LASF9 +0000000000015d9f l .debug_str 0000000000000000 .LASF10 +0000000000015cd7 l .debug_str 0000000000000000 .LASF11 +0000000000015e0d l .debug_str 0000000000000000 .LASF12 +0000000000015cdf l .debug_str 0000000000000000 .LASF13 +0000000000015c07 l .debug_str 0000000000000000 .LASF14 +0000000000015e68 l .debug_str 0000000000000000 .LASF15 +0000000000015df7 l .debug_str 0000000000000000 .LASF16 +0000000000015e1b l .debug_str 0000000000000000 .LASF20 +0000000000015d41 l .debug_str 0000000000000000 .LASF17 +0000000000015bad l .debug_str 0000000000000000 .LASF18 +0000000000015e26 l .debug_str 0000000000000000 .LASF19 +0000000000015ea4 l .debug_str 0000000000000000 .LASF21 +0000000000015cd2 l .debug_str 0000000000000000 .LASF22 +0000000000015d7f l .debug_str 0000000000000000 .LASF23 +0000000000015edc l .debug_str 0000000000000000 .LASF24 +0000000000015d0c l .debug_str 0000000000000000 .LASF25 +0000000000015d4c l .debug_str 0000000000000000 .LASF26 +0000000000015e42 l .debug_str 0000000000000000 .LASF27 +0000000000015e3a l .debug_str 0000000000000000 .LASF28 +0000000000015bf1 l .debug_str 0000000000000000 .LASF29 +0000000000015ee7 l .debug_str 0000000000000000 .LASF30 +0000000000015d1a l .debug_str 0000000000000000 .LASF31 +0000000000015b91 l .debug_str 0000000000000000 .LASF32 +0000000000015d36 l .debug_str 0000000000000000 .LASF33 +0000000000015dd8 l .debug_str 0000000000000000 .LASF34 +0000000000015e87 l .debug_str 0000000000000000 .LASF35 +0000000000015e4c l .debug_str 0000000000000000 .LASF36 +0000000000015ce9 l .debug_str 0000000000000000 .LASF37 +0000000000015d84 l .debug_str 0000000000000000 .LASF38 +0000000000015d99 l .debug_str 0000000000000000 .LASF39 +0000000000015c19 l .debug_str 0000000000000000 .LASF40 +0000000000015cef l .debug_str 0000000000000000 .LASF41 +0000000000015e15 l .debug_str 0000000000000000 .LASF42 +0000000000015dfc l .debug_str 0000000000000000 .LASF43 +0000000000015d25 l .debug_str 0000000000000000 .LASF44 +0000000000015d58 l .debug_str 0000000000000000 .LASF45 +0000000000015bd3 l .debug_str 0000000000000000 .LASF46 +0000000000015d47 l .debug_str 0000000000000000 .LASF47 +0000000000015cf5 l .debug_str 0000000000000000 .LASF48 +0000000000015ed7 l .debug_str 0000000000000000 .LASF49 +0000000000015bbc l .debug_str 0000000000000000 .LASF50 +0000000000015b9e l .debug_str 0000000000000000 .LASF51 +0000000000015d2c l .debug_str 0000000000000000 .LASF52 +0000000000015e82 l .debug_str 0000000000000000 .LASF53 +0000000000015bc5 l .debug_str 0000000000000000 .LASF54 +0000000000015dbf l .debug_str 0000000000000000 .LASF55 +0000000000015dce l .debug_str 0000000000000000 .LASF67 +00000000000082de l .text 0000000000000000 .LFB7 +00000000000083da l .text 0000000000000000 .LFE7 +0000000000016900 l .debug_loc 0000000000000000 .LLST0 +0000000000016988 l .debug_loc 0000000000000000 .LLST1 +0000000000016a65 l .debug_loc 0000000000000000 .LLST2 +0000000000015bea l .debug_str 0000000000000000 .LASF56 +0000000000016ada l .debug_loc 0000000000000000 .LLST3 +0000000000015e94 l .debug_str 0000000000000000 .LASF57 +0000000000016b3c l .debug_loc 0000000000000000 .LLST4 +0000000000015d77 l .debug_str 0000000000000000 .LASF58 +0000000000016b8f l .debug_loc 0000000000000000 .LLST5 +0000000000015c0e l .debug_str 0000000000000000 .LASF59 +0000000000016bd1 l .debug_loc 0000000000000000 .LLST6 +0000000000015e31 l .debug_str 0000000000000000 .LASF60 +0000000000016c5c l .debug_loc 0000000000000000 .LLST7 +000000000000830a l .text 0000000000000000 .LVL3 +0000000000008360 l .text 0000000000000000 .LVL12 +00000000000083c2 l .text 0000000000000000 .LVL16 +00000000000083da l .text 0000000000000000 .LVL20 +0000000000015db6 l .debug_str 0000000000000000 .LASF61 +0000000000015cfa l .debug_str 0000000000000000 .LASF62 +0000000000015d04 l .debug_str 0000000000000000 .LASF63 +00000000000082de l .text 0000000000000000 .LVL0 +00000000000082fa l .text 0000000000000000 .LVL2 +00000000000083c6 l .text 0000000000000000 .LVL17 +0000000000008320 l .text 0000000000000000 .LVL5 +0000000000008322 l .text 0000000000000000 .LVL6 +000000000000833e l .text 0000000000000000 .LVL8 +0000000000008340 l .text 0000000000000000 .LVL9 +0000000000008354 l .text 0000000000000000 .LVL10 +0000000000008356 l .text 0000000000000000 .LVL11 +00000000000082f6 l .text 0000000000000000 .LVL1 +0000000000008312 l .text 0000000000000000 .LVL4 +00000000000083b6 l .text 0000000000000000 .LVL14 +0000000000008374 l .text 0000000000000000 .LVL13 +00000000000083d2 l .text 0000000000000000 .LVL19 +00000000000083ba l .text 0000000000000000 .LVL15 +00000000000083ce l .text 0000000000000000 .LVL18 +000000000000832e l .text 0000000000000000 .LVL7 +000000000002194a l .debug_info 0000000000000000 .Ldebug_info0 +00000000000082de l .text 0000000000000000 .L0 +00000000000082de l .text 0000000000000000 .L0 +00000000000082de l .text 0000000000000000 .L0 +00000000000082de l .text 0000000000000000 .L0 +00000000000082de l .text 0000000000000000 .L0 +00000000000082de l .text 0000000000000000 .L0 +00000000000082de l .text 0000000000000000 .L0 +00000000000082de l .text 0000000000000000 .L0 +00000000000082ea l .text 0000000000000000 .L0 +00000000000082ec l .text 0000000000000000 .L0 +00000000000082ee l .text 0000000000000000 .L0 +00000000000082fa l .text 0000000000000000 .L0 +000000000000830a l .text 0000000000000000 .L0 +000000000000830e l .text 0000000000000000 .L0 +000000000000830e l .text 0000000000000000 .L0 +000000000000830e l .text 0000000000000000 .L0 +0000000000008312 l .text 0000000000000000 .L0 +0000000000008314 l .text 0000000000000000 .L0 +0000000000008322 l .text 0000000000000000 .L0 +0000000000008322 l .text 0000000000000000 .L0 +0000000000008322 l .text 0000000000000000 .L0 +0000000000008322 l .text 0000000000000000 .L0 +000000000000832a l .text 0000000000000000 .L0 +000000000000832e l .text 0000000000000000 .L0 +000000000000832e l .text 0000000000000000 .L0 +0000000000008332 l .text 0000000000000000 .L0 +0000000000008340 l .text 0000000000000000 .L0 +0000000000008340 l .text 0000000000000000 .L0 +0000000000008340 l .text 0000000000000000 .L0 +0000000000008348 l .text 0000000000000000 .L0 +0000000000008358 l .text 0000000000000000 .L0 +0000000000008358 l .text 0000000000000000 .L0 +0000000000008358 l .text 0000000000000000 .L0 +0000000000008364 l .text 0000000000000000 .L0 +0000000000008372 l .text 0000000000000000 .L0 +0000000000008372 l .text 0000000000000000 .L0 +0000000000008372 l .text 0000000000000000 .L0 +0000000000008374 l .text 0000000000000000 .L0 +0000000000008374 l .text 0000000000000000 .L0 +000000000000837c l .text 0000000000000000 .L0 +000000000000838a l .text 0000000000000000 .L0 +000000000000838a l .text 0000000000000000 .L0 +000000000000838a l .text 0000000000000000 .L0 +000000000000838e l .text 0000000000000000 .L0 +0000000000008390 l .text 0000000000000000 .L0 +0000000000008392 l .text 0000000000000000 .L0 +0000000000008392 l .text 0000000000000000 .L0 +0000000000008396 l .text 0000000000000000 .L0 +00000000000083a4 l .text 0000000000000000 .L0 +00000000000083a6 l .text 0000000000000000 .L0 +00000000000083ac l .text 0000000000000000 .L0 +00000000000083ae l .text 0000000000000000 .L0 +00000000000083b2 l .text 0000000000000000 .L0 +00000000000083b4 l .text 0000000000000000 .L0 +00000000000083ba l .text 0000000000000000 .L0 +00000000000083ba l .text 0000000000000000 .L0 +00000000000083ba l .text 0000000000000000 .L0 +00000000000083ba l .text 0000000000000000 .L0 +00000000000083ba l .text 0000000000000000 .L0 +00000000000083ba l .text 0000000000000000 .L0 +00000000000083c2 l .text 0000000000000000 .L0 +00000000000083c4 l .text 0000000000000000 .L0 +00000000000083c6 l .text 0000000000000000 .L0 +00000000000083c8 l .text 0000000000000000 .L0 +00000000000083d2 l .text 0000000000000000 .L0 +00000000000083da l .text 0000000000000000 .L0 +0000000000002a50 l .debug_frame 0000000000000000 .L0 +00000000000082de l .text 0000000000000000 .L0 +00000000000083da l .text 0000000000000000 .L0 +00000000000083c6 l .text 0000000000000000 .L0 +00000000000082ea l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 mm_free.c +000000000000ca68 l .rodata 0000000000000000 .LC0 +0000000000008420 l .text 0000000000000000 .L0 +000000000000ca88 l .rodata 0000000000000000 .LC1 +000000000000842c l .text 0000000000000000 .L0 +000000000000caa0 l .rodata 0000000000000000 .LC2 +0000000000008454 l .text 0000000000000000 .L0 +000000000000cac0 l .rodata 0000000000000000 .LC3 +000000000000847a l .text 0000000000000000 .L0 +000000000000cb08 l .rodata 0000000000000000 .LC4 +0000000000008490 l .text 0000000000000000 .L0 +000000000000cb18 l .rodata 0000000000000000 .LC5 +00000000000084d6 l .text 0000000000000000 .L0 +000000000000cb58 l .rodata 0000000000000000 .LC6 +00000000000084f4 l .text 0000000000000000 .L0 +0000000000008524 l .text 0000000000000000 .L1 +000000000000840e l .text 0000000000000000 .L3 +000000000000843c l .text 0000000000000000 .L4 +0000000000008462 l .text 0000000000000000 .L5 +000000000000842c l .text 0000000000000000 .L31 +00000000000084e4 l .text 0000000000000000 .L6 +000000000000847a l .text 0000000000000000 .L7 +0000000000008488 l .text 0000000000000000 .L8 +000000000000849e l .text 0000000000000000 .L9 +00000000000084aa l .text 0000000000000000 .L10 +0000000000008518 l .text 0000000000000000 .L12 +00000000000084d6 l .text 0000000000000000 .L13 +00000000000084f0 l .text 0000000000000000 .L14 +00000000000084ba l .text 0000000000000000 .L11 +0000000000008502 l .text 0000000000000000 .L15 +000000000000850c l .text 0000000000000000 .L16 +00000000000083fa l .text 0000000000000000 .L30 +000000000000cb68 l .rodata 0000000000000000 .LC7 +0000000000008548 l .text 0000000000000000 .L0 +0000000000008554 l .text 0000000000000000 .L0 +000000000000857a l .text 0000000000000000 .L32 +0000000000008564 l .text 0000000000000000 .L34 +000000000000865d l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000015f81 l .debug_str 0000000000000000 .LASF66 +0000000000016105 l .debug_str 0000000000000000 .LASF67 +00000000000161d6 l .debug_str 0000000000000000 .LASF68 +0000000000002640 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000015fa7 l .debug_line 0000000000000000 .Ldebug_line0 +0000000000016117 l .debug_str 0000000000000000 .LASF0 +0000000000015f14 l .debug_str 0000000000000000 .LASF2 +00000000000160e5 l .debug_str 0000000000000000 .LASF1 +00000000000160f3 l .debug_str 0000000000000000 .LASF3 +0000000000015f57 l .debug_str 0000000000000000 .LASF4 +0000000000016189 l .debug_str 0000000000000000 .LASF5 +0000000000016258 l .debug_str 0000000000000000 .LASF6 +00000000000161a9 l .debug_str 0000000000000000 .LASF7 +000000000001620d l .debug_str 0000000000000000 .LASF8 +0000000000016240 l .debug_str 0000000000000000 .LASF9 +0000000000016129 l .debug_str 0000000000000000 .LASF10 +0000000000016036 l .debug_str 0000000000000000 .LASF11 +00000000000161b2 l .debug_str 0000000000000000 .LASF12 +0000000000015f61 l .debug_str 0000000000000000 .LASF13 +000000000001621f l .debug_str 0000000000000000 .LASF14 +000000000001619c l .debug_str 0000000000000000 .LASF15 +0000000000016079 l .debug_str 0000000000000000 .LASF16 +00000000000160d1 l .debug_str 0000000000000000 .LASF17 +00000000000161c0 l .debug_str 0000000000000000 .LASF21 +00000000000160c6 l .debug_str 0000000000000000 .LASF18 +0000000000015f0e l .debug_str 0000000000000000 .LASF19 +00000000000161cb l .debug_str 0000000000000000 .LASF20 +0000000000016248 l .debug_str 0000000000000000 .LASF22 +0000000000016031 l .debug_str 0000000000000000 .LASF23 +0000000000016161 l .debug_str 0000000000000000 .LASF24 +000000000001626a l .debug_str 0000000000000000 .LASF25 +000000000001604e l .debug_str 0000000000000000 .LASF26 +00000000000160fc l .debug_str 0000000000000000 .LASF27 +0000000000016123 l .debug_str 0000000000000000 .LASF28 +0000000000015f6e l .debug_str 0000000000000000 .LASF29 +0000000000015f68 l .debug_str 0000000000000000 .LASF30 +00000000000161ba l .debug_str 0000000000000000 .LASF31 +00000000000161f9 l .debug_str 0000000000000000 .LASF32 +00000000000161f1 l .debug_str 0000000000000000 .LASF33 +0000000000015f4b l .debug_str 0000000000000000 .LASF34 +0000000000016275 l .debug_str 0000000000000000 .LASF35 +0000000000016087 l .debug_str 0000000000000000 .LASF36 +0000000000015ef2 l .debug_str 0000000000000000 .LASF37 +00000000000160b6 l .debug_str 0000000000000000 .LASF38 +0000000000016166 l .debug_str 0000000000000000 .LASF39 +000000000001622a l .debug_str 0000000000000000 .LASF40 +0000000000016203 l .debug_str 0000000000000000 .LASF41 +00000000000161a1 l .debug_str 0000000000000000 .LASF42 +0000000000016092 l .debug_str 0000000000000000 .LASF43 +00000000000160dd l .debug_str 0000000000000000 .LASF44 +0000000000015f34 l .debug_str 0000000000000000 .LASF45 +00000000000160cc l .debug_str 0000000000000000 .LASF46 +0000000000016062 l .debug_str 0000000000000000 .LASF47 +0000000000016265 l .debug_str 0000000000000000 .LASF48 +0000000000015f1d l .debug_str 0000000000000000 .LASF49 +0000000000015eff l .debug_str 0000000000000000 .LASF50 +000000000001609f l .debug_str 0000000000000000 .LASF51 +0000000000016225 l .debug_str 0000000000000000 .LASF52 +0000000000015f26 l .debug_str 0000000000000000 .LASF53 +0000000000016149 l .debug_str 0000000000000000 .LASF54 +0000000000016071 l .debug_str 0000000000000000 .LASF69 +0000000000008530 l .text 0000000000000000 .LFB9 +000000000000857c l .text 0000000000000000 .LFE9 +0000000000016cb2 l .debug_loc 0000000000000000 .LLST13 +0000000000016d24 l .debug_loc 0000000000000000 .LLST14 +0000000000008546 l .text 0000000000000000 .LVL40 +0000000000008564 l .text 0000000000000000 .LVL41 +000000000000857a l .text 0000000000000000 .LVL44 +00000000000160a9 l .debug_str 0000000000000000 .LASF70 +0000000000016099 l .debug_str 0000000000000000 .LASF55 +00000000000160c1 l .debug_str 0000000000000000 .LASF56 +0000000000016253 l .debug_str 0000000000000000 .LASF57 +0000000000016158 l .debug_str 0000000000000000 .LASF58 +0000000000016237 l .debug_str 0000000000000000 .LASF59 +0000000000015f77 l .debug_str 0000000000000000 .LASF60 +0000000000016180 l .debug_str 0000000000000000 .LASF61 +0000000000016172 l .debug_str 0000000000000000 .LASF71 +00000000000083da l .text 0000000000000000 .LFB8 +0000000000008530 l .text 0000000000000000 .LFE8 +0000000000016d96 l .debug_loc 0000000000000000 .LLST0 +0000000000016e1e l .debug_loc 0000000000000000 .LLST1 +0000000000016e93 l .debug_loc 0000000000000000 .LLST2 +00000000000083fa l .text 0000000000000000 .LBB11 +0000000000016ecc l .debug_loc 0000000000000000 .LLST3 +0000000000016ef0 l .debug_loc 0000000000000000 .LLST4 +0000000000016f13 l .debug_loc 0000000000000000 .LLST5 +0000000000016f36 l .debug_loc 0000000000000000 .LLST6 +0000000000017049 l .debug_loc 0000000000000000 .LLST7 +00000000000170c7 l .debug_loc 0000000000000000 .LLST8 +000000000001714e l .debug_loc 0000000000000000 .LLST9 +0000000000017184 l .debug_loc 0000000000000000 .LLST10 +0000000000008468 l .text 0000000000000000 .LBB13 +00000000000084ba l .text 0000000000000000 .LBE13 +00000000000171cd l .debug_loc 0000000000000000 .LLST11 +0000000000017246 l .debug_loc 0000000000000000 .LLST12 +000000000000840e l .text 0000000000000000 .LVL4 +000000000000843c l .text 0000000000000000 .LVL8 +0000000000008522 l .text 0000000000000000 .LVL35 +00000000000083f2 l .text 0000000000000000 .LVL1 +0000000000016054 l .debug_str 0000000000000000 .LASF62 +0000000000016140 l .debug_str 0000000000000000 .LASF63 +0000000000016067 l .debug_str 0000000000000000 .LASF64 +000000000001603e l .debug_str 0000000000000000 .LASF65 +0000000000008530 l .text 0000000000000000 .LVL39 +000000000000856e l .text 0000000000000000 .LVL43 +0000000000008568 l .text 0000000000000000 .LVL42 +00000000000083da l .text 0000000000000000 .LVL0 +0000000000008404 l .text 0000000000000000 .LVL3 +000000000000852a l .text 0000000000000000 .LVL38 +00000000000083fc l .text 0000000000000000 .LVL2 +0000000000008528 l .text 0000000000000000 .LVL37 +0000000000008524 l .text 0000000000000000 .LVL36 +0000000000008416 l .text 0000000000000000 .LVL5 +000000000000842c l .text 0000000000000000 .LVL7 +0000000000008460 l .text 0000000000000000 .LVL10 +0000000000008462 l .text 0000000000000000 .LVL11 +0000000000008486 l .text 0000000000000000 .LVL15 +0000000000008488 l .text 0000000000000000 .LVL16 +000000000000849c l .text 0000000000000000 .LVL18 +000000000000849e l .text 0000000000000000 .LVL19 +00000000000084c8 l .text 0000000000000000 .LVL24 +00000000000084e4 l .text 0000000000000000 .LVL28 +00000000000084f0 l .text 0000000000000000 .LVL29 +0000000000008518 l .text 0000000000000000 .LVL34 +00000000000084e2 l .text 0000000000000000 .LVL27 +0000000000008500 l .text 0000000000000000 .LVL31 +0000000000008502 l .text 0000000000000000 .LVL32 +000000000000844c l .text 0000000000000000 .LVL9 +00000000000084a8 l .text 0000000000000000 .LVL20 +00000000000084ac l .text 0000000000000000 .LVL21 +00000000000084ba l .text 0000000000000000 .LVL23 +00000000000084de l .text 0000000000000000 .LVL26 +00000000000084fc l .text 0000000000000000 .LVL30 +000000000000841e l .text 0000000000000000 .LVL6 +000000000000850e l .text 0000000000000000 .LVL33 +00000000000084ce l .text 0000000000000000 .LVL25 +000000000000846e l .text 0000000000000000 .LVL13 +0000000000008482 l .text 0000000000000000 .LVL14 +0000000000008498 l .text 0000000000000000 .LVL17 +000000000000846a l .text 0000000000000000 .LVL12 +00000000000084b0 l .text 0000000000000000 .LVL22 +0000000000021e0b l .debug_info 0000000000000000 .Ldebug_info0 +00000000000083fa l .text 0000000000000000 .LBE11 +0000000000008400 l .text 0000000000000000 .LBB16 +0000000000008402 l .text 0000000000000000 .LBE16 +0000000000008406 l .text 0000000000000000 .LBB17 +0000000000008524 l .text 0000000000000000 .LBE17 +00000000000083da l .text 0000000000000000 .L0 +0000000000008530 l .text 0000000000000000 .L0 +00000000000083da l .text 0000000000000000 .L0 +00000000000083da l .text 0000000000000000 .L0 +00000000000083da l .text 0000000000000000 .L0 +00000000000083da l .text 0000000000000000 .L0 +00000000000083da l .text 0000000000000000 .L0 +00000000000083da l .text 0000000000000000 .L0 +00000000000083da l .text 0000000000000000 .L0 +00000000000083e4 l .text 0000000000000000 .L0 +00000000000083ea l .text 0000000000000000 .L0 +00000000000083f2 l .text 0000000000000000 .L0 +00000000000083f6 l .text 0000000000000000 .L0 +00000000000083f6 l .text 0000000000000000 .L0 +00000000000083f6 l .text 0000000000000000 .L0 +00000000000083fa l .text 0000000000000000 .L0 +00000000000083fa l .text 0000000000000000 .L0 +0000000000008400 l .text 0000000000000000 .L0 +0000000000008402 l .text 0000000000000000 .L0 +0000000000008406 l .text 0000000000000000 .L0 +000000000000840e l .text 0000000000000000 .L0 +000000000000840e l .text 0000000000000000 .L0 +0000000000008412 l .text 0000000000000000 .L0 +0000000000008416 l .text 0000000000000000 .L0 +0000000000008416 l .text 0000000000000000 .L0 +000000000000841a l .text 0000000000000000 .L0 +000000000000841e l .text 0000000000000000 .L0 +000000000000841e l .text 0000000000000000 .L0 +0000000000008420 l .text 0000000000000000 .L0 +000000000000842c l .text 0000000000000000 .L0 +000000000000843c l .text 0000000000000000 .L0 +000000000000843c l .text 0000000000000000 .L0 +000000000000843c l .text 0000000000000000 .L0 +0000000000008442 l .text 0000000000000000 .L0 +0000000000008442 l .text 0000000000000000 .L0 +0000000000008444 l .text 0000000000000000 .L0 +0000000000008448 l .text 0000000000000000 .L0 +000000000000844c l .text 0000000000000000 .L0 +000000000000844c l .text 0000000000000000 .L0 +000000000000844c l .text 0000000000000000 .L0 +0000000000008454 l .text 0000000000000000 .L0 +0000000000008462 l .text 0000000000000000 .L0 +0000000000008462 l .text 0000000000000000 .L0 +0000000000008462 l .text 0000000000000000 .L0 +0000000000008466 l .text 0000000000000000 .L0 +0000000000008468 l .text 0000000000000000 .L0 +0000000000008468 l .text 0000000000000000 .L0 +0000000000008468 l .text 0000000000000000 .L0 +000000000000846a l .text 0000000000000000 .L0 +000000000000846a l .text 0000000000000000 .L0 +000000000000846e l .text 0000000000000000 .L0 +000000000000846e l .text 0000000000000000 .L0 +000000000000847a l .text 0000000000000000 .L0 +0000000000008488 l .text 0000000000000000 .L0 +0000000000008488 l .text 0000000000000000 .L0 +0000000000008488 l .text 0000000000000000 .L0 +0000000000008490 l .text 0000000000000000 .L0 +000000000000849e l .text 0000000000000000 .L0 +000000000000849e l .text 0000000000000000 .L0 +000000000000849e l .text 0000000000000000 .L0 +00000000000084a0 l .text 0000000000000000 .L0 +00000000000084a4 l .text 0000000000000000 .L0 +00000000000084a4 l .text 0000000000000000 .L0 +00000000000084a6 l .text 0000000000000000 .L0 +00000000000084a6 l .text 0000000000000000 .L0 +00000000000084a8 l .text 0000000000000000 .L0 +00000000000084aa l .text 0000000000000000 .L0 +00000000000084aa l .text 0000000000000000 .L0 +00000000000084ac l .text 0000000000000000 .L0 +00000000000084ac l .text 0000000000000000 .L0 +00000000000084b2 l .text 0000000000000000 .L0 +00000000000084b4 l .text 0000000000000000 .L0 +00000000000084b8 l .text 0000000000000000 .L0 +00000000000084b8 l .text 0000000000000000 .L0 +00000000000084ba l .text 0000000000000000 .L0 +00000000000084ba l .text 0000000000000000 .L0 +00000000000084ba l .text 0000000000000000 .L0 +00000000000084c0 l .text 0000000000000000 .L0 +00000000000084c2 l .text 0000000000000000 .L0 +00000000000084c2 l .text 0000000000000000 .L0 +00000000000084c6 l .text 0000000000000000 .L0 +00000000000084c8 l .text 0000000000000000 .L0 +00000000000084c8 l .text 0000000000000000 .L0 +00000000000084ca l .text 0000000000000000 .L0 +00000000000084ce l .text 0000000000000000 .L0 +00000000000084ce l .text 0000000000000000 .L0 +00000000000084d6 l .text 0000000000000000 .L0 +00000000000084e4 l .text 0000000000000000 .L0 +00000000000084e4 l .text 0000000000000000 .L0 +00000000000084ea l .text 0000000000000000 .L0 +00000000000084ea l .text 0000000000000000 .L0 +00000000000084f0 l .text 0000000000000000 .L0 +00000000000084f0 l .text 0000000000000000 .L0 +00000000000084f0 l .text 0000000000000000 .L0 +00000000000084f4 l .text 0000000000000000 .L0 +0000000000008502 l .text 0000000000000000 .L0 +0000000000008502 l .text 0000000000000000 .L0 +0000000000008502 l .text 0000000000000000 .L0 +0000000000008504 l .text 0000000000000000 .L0 +0000000000008506 l .text 0000000000000000 .L0 +0000000000008506 l .text 0000000000000000 .L0 +0000000000008508 l .text 0000000000000000 .L0 +0000000000008508 l .text 0000000000000000 .L0 +000000000000850a l .text 0000000000000000 .L0 +000000000000850c l .text 0000000000000000 .L0 +000000000000850c l .text 0000000000000000 .L0 +000000000000850e l .text 0000000000000000 .L0 +000000000000850e l .text 0000000000000000 .L0 +0000000000008512 l .text 0000000000000000 .L0 +0000000000008514 l .text 0000000000000000 .L0 +0000000000008516 l .text 0000000000000000 .L0 +0000000000008516 l .text 0000000000000000 .L0 +0000000000008518 l .text 0000000000000000 .L0 +0000000000008518 l .text 0000000000000000 .L0 +0000000000008524 l .text 0000000000000000 .L0 +0000000000008530 l .text 0000000000000000 .L0 +0000000000008530 l .text 0000000000000000 .L0 +0000000000008530 l .text 0000000000000000 .L0 +0000000000008530 l .text 0000000000000000 .L0 +0000000000008530 l .text 0000000000000000 .L0 +0000000000008530 l .text 0000000000000000 .L0 +0000000000008532 l .text 0000000000000000 .L0 +000000000000853e l .text 0000000000000000 .L0 +000000000000853e l .text 0000000000000000 .L0 +0000000000008548 l .text 0000000000000000 .L0 +0000000000008564 l .text 0000000000000000 .L0 +0000000000008564 l .text 0000000000000000 .L0 +0000000000008566 l .text 0000000000000000 .L0 +000000000000856a l .text 0000000000000000 .L0 +000000000000856c l .text 0000000000000000 .L0 +000000000000856e l .text 0000000000000000 .L0 +0000000000008570 l .text 0000000000000000 .L0 +0000000000008572 l .text 0000000000000000 .L0 +000000000000857c l .text 0000000000000000 .L0 +0000000000002a98 l .debug_frame 0000000000000000 .L0 +00000000000083da l .text 0000000000000000 .L0 +0000000000008530 l .text 0000000000000000 .L0 +0000000000008530 l .text 0000000000000000 .L0 +000000000000857c l .text 0000000000000000 .L0 +00000000000083fc l .text 0000000000000000 .L0 +00000000000083e4 l .text 0000000000000000 .L0 +000000000000840e l .text 0000000000000000 .L0 +0000000000008406 l .text 0000000000000000 .L0 +0000000000008526 l .text 0000000000000000 .L0 +0000000000008534 l .text 0000000000000000 .L0 +0000000000008568 l .text 0000000000000000 .L0 +000000000000853a l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 mm_memalign.c +000000000000cb88 l .rodata 0000000000000000 .LC0 +00000000000085d4 l .text 0000000000000000 .L0 +000000000000cbc0 l .rodata 0000000000000000 .LC1 +00000000000085e0 l .text 0000000000000000 .L0 +000000000000cbd8 l .rodata 0000000000000000 .LC2 +000000000000863a l .text 0000000000000000 .L0 +0000000000008646 l .text 0000000000000000 .L0 +000000000000cbe8 l .rodata 0000000000000000 .LC3 +0000000000008698 l .text 0000000000000000 .L0 +00000000000086a4 l .text 0000000000000000 .L0 +000000000000cbf8 l .rodata 0000000000000000 .LC4 +0000000000008730 l .text 0000000000000000 .L0 +000000000000873c l .text 0000000000000000 .L0 +000000000000859e l .text 0000000000000000 .L2 +0000000000008588 l .text 0000000000000000 .L4 +00000000000085f0 l .text 0000000000000000 .L5 +000000000000858a l .text 0000000000000000 .L1 +00000000000085fe l .text 0000000000000000 .L6 +0000000000008608 l .text 0000000000000000 .L7 +0000000000008656 l .text 0000000000000000 .L8 +00000000000086ea l .text 0000000000000000 .L9 +000000000000868a l .text 0000000000000000 .L11 +00000000000086c4 l .text 0000000000000000 .L12 +00000000000086b4 l .text 0000000000000000 .L13 +00000000000086be l .text 0000000000000000 .L14 +0000000000008702 l .text 0000000000000000 .L15 +000000000000871c l .text 0000000000000000 .L16 +000000000000889e l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000001631e l .debug_str 0000000000000000 .LASF72 +0000000000016419 l .debug_str 0000000000000000 .LASF73 +000000000001657f l .debug_str 0000000000000000 .LASF74 +00000000000026b0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +00000000000165a2 l .debug_line 0000000000000000 .Ldebug_line0 +00000000000164dd l .debug_str 0000000000000000 .LASF0 +00000000000162a2 l .debug_str 0000000000000000 .LASF2 +00000000000164b5 l .debug_str 0000000000000000 .LASF1 +00000000000164c3 l .debug_str 0000000000000000 .LASF3 +00000000000162f8 l .debug_str 0000000000000000 .LASF4 +0000000000016532 l .debug_str 0000000000000000 .LASF5 +0000000000016616 l .debug_str 0000000000000000 .LASF6 +0000000000016552 l .debug_str 0000000000000000 .LASF7 +00000000000165b6 l .debug_str 0000000000000000 .LASF8 +00000000000165f4 l .debug_str 0000000000000000 .LASF9 +00000000000164ef l .debug_str 0000000000000000 .LASF10 +00000000000163da l .debug_str 0000000000000000 .LASF11 +000000000001655b l .debug_str 0000000000000000 .LASF12 +00000000000163fe l .debug_str 0000000000000000 .LASF13 +0000000000016302 l .debug_str 0000000000000000 .LASF14 +00000000000165d7 l .debug_str 0000000000000000 .LASF15 +0000000000016545 l .debug_str 0000000000000000 .LASF16 +0000000000016569 l .debug_str 0000000000000000 .LASF20 +0000000000016499 l .debug_str 0000000000000000 .LASF17 +000000000001629c l .debug_str 0000000000000000 .LASF18 +0000000000016574 l .debug_str 0000000000000000 .LASF19 +00000000000165fc l .debug_str 0000000000000000 .LASF21 +00000000000163ce l .debug_str 0000000000000000 .LASF22 +00000000000164b0 l .debug_str 0000000000000000 .LASF23 +0000000000016628 l .debug_str 0000000000000000 .LASF24 +0000000000016443 l .debug_str 0000000000000000 .LASF25 +00000000000164a4 l .debug_str 0000000000000000 .LASF26 +00000000000165a2 l .debug_str 0000000000000000 .LASF27 +000000000001659a l .debug_str 0000000000000000 .LASF28 +00000000000162e3 l .debug_str 0000000000000000 .LASF29 +0000000000016633 l .debug_str 0000000000000000 .LASF30 +0000000000016451 l .debug_str 0000000000000000 .LASF31 +0000000000016280 l .debug_str 0000000000000000 .LASF32 +0000000000016489 l .debug_str 0000000000000000 .LASF33 +0000000000016526 l .debug_str 0000000000000000 .LASF34 +00000000000165e2 l .debug_str 0000000000000000 .LASF35 +00000000000165ac l .debug_str 0000000000000000 .LASF36 +0000000000016408 l .debug_str 0000000000000000 .LASF37 +00000000000164d4 l .debug_str 0000000000000000 .LASF38 +00000000000164e9 l .debug_str 0000000000000000 .LASF39 +0000000000016315 l .debug_str 0000000000000000 .LASF40 +000000000001640e l .debug_str 0000000000000000 .LASF41 +0000000000016563 l .debug_str 0000000000000000 .LASF42 +000000000001654a l .debug_str 0000000000000000 .LASF43 +00000000000163d3 l .debug_str 0000000000000000 .LASF44 +000000000001651e l .debug_str 0000000000000000 .LASF45 +00000000000162cc l .debug_str 0000000000000000 .LASF46 +000000000001649f l .debug_str 0000000000000000 .LASF47 +0000000000016414 l .debug_str 0000000000000000 .LASF48 +0000000000016623 l .debug_str 0000000000000000 .LASF49 +00000000000162ab l .debug_str 0000000000000000 .LASF50 +000000000001628d l .debug_str 0000000000000000 .LASF51 +000000000001647f l .debug_str 0000000000000000 .LASF52 +00000000000165dd l .debug_str 0000000000000000 .LASF53 +00000000000162b4 l .debug_str 0000000000000000 .LASF54 +000000000001650f l .debug_str 0000000000000000 .LASF55 +0000000000016309 l .debug_str 0000000000000000 .LASF75 +000000000000857c l .text 0000000000000000 .LFB7 +000000000000874c l .text 0000000000000000 .LFE7 +0000000000017269 l .debug_loc 0000000000000000 .LLST0 +00000000000162c2 l .debug_str 0000000000000000 .LASF56 +00000000000172f1 l .debug_loc 0000000000000000 .LLST1 +0000000000017350 l .debug_loc 0000000000000000 .LLST2 +0000000000016494 l .debug_str 0000000000000000 .LASF57 +0000000000017400 l .debug_loc 0000000000000000 .LLST3 +00000000000162ef l .debug_str 0000000000000000 .LASF58 +0000000000017486 l .debug_loc 0000000000000000 .LLST4 +0000000000016472 l .debug_str 0000000000000000 .LASF59 +00000000000165ef l .debug_str 0000000000000000 .LASF60 +00000000000174bc l .debug_loc 0000000000000000 .LLST5 +0000000000016607 l .debug_str 0000000000000000 .LASF61 +00000000000174e1 l .debug_loc 0000000000000000 .LLST6 +000000000001645c l .debug_str 0000000000000000 .LASF62 +0000000000017534 l .debug_loc 0000000000000000 .LLST7 +00000000000085c4 l .text 0000000000000000 .LBB2 +00000000000085f6 l .text 0000000000000000 .LBE2 +000000000001756f l .debug_loc 0000000000000000 .LLST8 +00000000000085cc l .text 0000000000000000 .LVL6 +00000000000085f0 l .text 0000000000000000 .LVL8 +000000000000866a l .text 0000000000000000 .LBB3 +00000000000086ea l .text 0000000000000000 .LBE3 +00000000000164cc l .debug_str 0000000000000000 .LASF63 +0000000000017592 l .debug_loc 0000000000000000 .LLST9 +00000000000175ca l .debug_loc 0000000000000000 .LLST10 +0000000000016464 l .debug_str 0000000000000000 .LASF64 +0000000000017600 l .debug_loc 0000000000000000 .LLST11 +00000000000163e2 l .debug_str 0000000000000000 .LASF65 +000000000001764a l .debug_loc 0000000000000000 .LLST12 +000000000000868e l .text 0000000000000000 .LBB4 +00000000000086c4 l .text 0000000000000000 .LBE4 +0000000000016611 l .debug_str 0000000000000000 .LASF66 +0000000000017682 l .debug_loc 0000000000000000 .LLST13 +00000000000086b4 l .text 0000000000000000 .LVL28 +00000000000086e8 l .text 0000000000000000 .LVL35 +0000000000008628 l .text 0000000000000000 .LVL15 +0000000000008636 l .text 0000000000000000 .LVL18 +0000000000008656 l .text 0000000000000000 .LVL19 +0000000000008700 l .text 0000000000000000 .LVL38 +0000000000008726 l .text 0000000000000000 .LVL40 +000000000000874c l .text 0000000000000000 .LVL42 +0000000000016439 l .debug_str 0000000000000000 .LASF67 +0000000000016506 l .debug_str 0000000000000000 .LASF68 +00000000000163ee l .debug_str 0000000000000000 .LASF69 +00000000000165c8 l .debug_str 0000000000000000 .LASF70 +000000000001642f l .debug_str 0000000000000000 .LASF71 +000000000000857c l .text 0000000000000000 .LVL0 +0000000000008586 l .text 0000000000000000 .LVL1 +000000000000859e l .text 0000000000000000 .LVL3 +0000000000008620 l .text 0000000000000000 .LVL14 +0000000000008588 l .text 0000000000000000 .LVL2 +00000000000085c0 l .text 0000000000000000 .LVL4 +00000000000085fe l .text 0000000000000000 .LVL9 +000000000000872a l .text 0000000000000000 .LVL41 +00000000000085c4 l .text 0000000000000000 .LVL5 +0000000000008606 l .text 0000000000000000 .LVL10 +00000000000086f0 l .text 0000000000000000 .LVL37 +0000000000008666 l .text 0000000000000000 .LVL20 +0000000000008694 l .text 0000000000000000 .LVL26 +00000000000086c4 l .text 0000000000000000 .LVL29 +00000000000086ea l .text 0000000000000000 .LVL36 +0000000000008702 l .text 0000000000000000 .LVL39 +000000000000862a l .text 0000000000000000 .LVL16 +000000000000862e l .text 0000000000000000 .LVL17 +0000000000008614 l .text 0000000000000000 .LVL13 +00000000000086c8 l .text 0000000000000000 .LVL30 +00000000000086e0 l .text 0000000000000000 .LVL34 +000000000000860e l .text 0000000000000000 .LVL12 +00000000000085e8 l .text 0000000000000000 .LVL7 +0000000000008678 l .text 0000000000000000 .LVL21 +000000000000867c l .text 0000000000000000 .LVL22 +00000000000086d8 l .text 0000000000000000 .LVL32 +00000000000086ca l .text 0000000000000000 .LVL31 +00000000000086dc l .text 0000000000000000 .LVL33 +00000000000086a4 l .text 0000000000000000 .LVL27 +0000000000022464 l .debug_info 0000000000000000 .Ldebug_info0 +000000000000857c l .text 0000000000000000 .L0 +000000000000857c l .text 0000000000000000 .L0 +000000000000857c l .text 0000000000000000 .L0 +000000000000857c l .text 0000000000000000 .L0 +000000000000857c l .text 0000000000000000 .L0 +000000000000857c l .text 0000000000000000 .L0 +000000000000857c l .text 0000000000000000 .L0 +000000000000857c l .text 0000000000000000 .L0 +000000000000857c l .text 0000000000000000 .L0 +0000000000008584 l .text 0000000000000000 .L0 +0000000000008586 l .text 0000000000000000 .L0 +0000000000008588 l .text 0000000000000000 .L0 +000000000000858a l .text 0000000000000000 .L0 +000000000000859e l .text 0000000000000000 .L0 +000000000000859e l .text 0000000000000000 .L0 +00000000000085a2 l .text 0000000000000000 .L0 +00000000000085a6 l .text 0000000000000000 .L0 +00000000000085b4 l .text 0000000000000000 .L0 +00000000000085b8 l .text 0000000000000000 .L0 +00000000000085bc l .text 0000000000000000 .L0 +00000000000085c0 l .text 0000000000000000 .L0 +00000000000085c0 l .text 0000000000000000 .L0 +00000000000085c4 l .text 0000000000000000 .L0 +00000000000085c4 l .text 0000000000000000 .L0 +00000000000085cc l .text 0000000000000000 .L0 +00000000000085cc l .text 0000000000000000 .L0 +00000000000085ce l .text 0000000000000000 .L0 +00000000000085d4 l .text 0000000000000000 .L0 +00000000000085f6 l .text 0000000000000000 .L0 +00000000000085fe l .text 0000000000000000 .L0 +00000000000085fe l .text 0000000000000000 .L0 +0000000000008608 l .text 0000000000000000 .L0 +0000000000008608 l .text 0000000000000000 .L0 +000000000000860c l .text 0000000000000000 .L0 +000000000000860e l .text 0000000000000000 .L0 +000000000000860e l .text 0000000000000000 .L0 +0000000000008612 l .text 0000000000000000 .L0 +0000000000008614 l .text 0000000000000000 .L0 +0000000000008614 l .text 0000000000000000 .L0 +0000000000008618 l .text 0000000000000000 .L0 +000000000000861c l .text 0000000000000000 .L0 +000000000000861c l .text 0000000000000000 .L0 +000000000000862a l .text 0000000000000000 .L0 +000000000000862a l .text 0000000000000000 .L0 +000000000000862c l .text 0000000000000000 .L0 +000000000000862c l .text 0000000000000000 .L0 +000000000000862c l .text 0000000000000000 .L0 +000000000000863a l .text 0000000000000000 .L0 +0000000000008656 l .text 0000000000000000 .L0 +0000000000008656 l .text 0000000000000000 .L0 +0000000000008656 l .text 0000000000000000 .L0 +000000000000865a l .text 0000000000000000 .L0 +000000000000865c l .text 0000000000000000 .L0 +0000000000008662 l .text 0000000000000000 .L0 +0000000000008666 l .text 0000000000000000 .L0 +0000000000008666 l .text 0000000000000000 .L0 +0000000000008666 l .text 0000000000000000 .L0 +000000000000866a l .text 0000000000000000 .L0 +000000000000866a l .text 0000000000000000 .L0 +000000000000866a l .text 0000000000000000 .L0 +000000000000866a l .text 0000000000000000 .L0 +000000000000866a l .text 0000000000000000 .L0 +000000000000866a l .text 0000000000000000 .L0 +000000000000866c l .text 0000000000000000 .L0 +0000000000008670 l .text 0000000000000000 .L0 +0000000000008672 l .text 0000000000000000 .L0 +0000000000008676 l .text 0000000000000000 .L0 +0000000000008678 l .text 0000000000000000 .L0 +0000000000008678 l .text 0000000000000000 .L0 +0000000000008678 l .text 0000000000000000 .L0 +0000000000008678 l .text 0000000000000000 .L0 +000000000000867c l .text 0000000000000000 .L0 +0000000000008680 l .text 0000000000000000 .L0 +0000000000008680 l .text 0000000000000000 .L0 +0000000000008682 l .text 0000000000000000 .L0 +0000000000008682 l .text 0000000000000000 .L0 +0000000000008686 l .text 0000000000000000 .L0 +0000000000008686 l .text 0000000000000000 .L0 +000000000000868a l .text 0000000000000000 .L0 +000000000000868a l .text 0000000000000000 .L0 +000000000000868c l .text 0000000000000000 .L0 +000000000000868e l .text 0000000000000000 .L0 +000000000000868e l .text 0000000000000000 .L0 +0000000000008694 l .text 0000000000000000 .L0 +0000000000008694 l .text 0000000000000000 .L0 +0000000000008698 l .text 0000000000000000 .L0 +00000000000086b4 l .text 0000000000000000 .L0 +00000000000086b4 l .text 0000000000000000 .L0 +00000000000086b4 l .text 0000000000000000 .L0 +00000000000086b6 l .text 0000000000000000 .L0 +00000000000086b8 l .text 0000000000000000 .L0 +00000000000086b8 l .text 0000000000000000 .L0 +00000000000086ba l .text 0000000000000000 .L0 +00000000000086ba l .text 0000000000000000 .L0 +00000000000086bc l .text 0000000000000000 .L0 +00000000000086be l .text 0000000000000000 .L0 +00000000000086be l .text 0000000000000000 .L0 +00000000000086c2 l .text 0000000000000000 .L0 +00000000000086c4 l .text 0000000000000000 .L0 +00000000000086c4 l .text 0000000000000000 .L0 +00000000000086c4 l .text 0000000000000000 .L0 +00000000000086c8 l .text 0000000000000000 .L0 +00000000000086ca l .text 0000000000000000 .L0 +00000000000086ca l .text 0000000000000000 .L0 +00000000000086ca l .text 0000000000000000 .L0 +00000000000086ce l .text 0000000000000000 .L0 +00000000000086d2 l .text 0000000000000000 .L0 +00000000000086d2 l .text 0000000000000000 .L0 +00000000000086d6 l .text 0000000000000000 .L0 +00000000000086d6 l .text 0000000000000000 .L0 +00000000000086d8 l .text 0000000000000000 .L0 +00000000000086da l .text 0000000000000000 .L0 +00000000000086dc l .text 0000000000000000 .L0 +00000000000086e0 l .text 0000000000000000 .L0 +00000000000086e0 l .text 0000000000000000 .L0 +00000000000086e8 l .text 0000000000000000 .L0 +00000000000086e8 l .text 0000000000000000 .L0 +00000000000086ea l .text 0000000000000000 .L0 +00000000000086ea l .text 0000000000000000 .L0 +00000000000086ee l .text 0000000000000000 .L0 +00000000000086f0 l .text 0000000000000000 .L0 +00000000000086f0 l .text 0000000000000000 .L0 +00000000000086f4 l .text 0000000000000000 .L0 +0000000000008702 l .text 0000000000000000 .L0 +0000000000008702 l .text 0000000000000000 .L0 +0000000000008704 l .text 0000000000000000 .L0 +0000000000008708 l .text 0000000000000000 .L0 +000000000000870a l .text 0000000000000000 .L0 +000000000000870c l .text 0000000000000000 .L0 +0000000000008710 l .text 0000000000000000 .L0 +0000000000008714 l .text 0000000000000000 .L0 +0000000000008714 l .text 0000000000000000 .L0 +0000000000008718 l .text 0000000000000000 .L0 +0000000000008718 l .text 0000000000000000 .L0 +000000000000871c l .text 0000000000000000 .L0 +0000000000008726 l .text 0000000000000000 .L0 +0000000000008726 l .text 0000000000000000 .L0 +0000000000008726 l .text 0000000000000000 .L0 +0000000000008726 l .text 0000000000000000 .L0 +000000000000872a l .text 0000000000000000 .L0 +000000000000872c l .text 0000000000000000 .L0 +0000000000008730 l .text 0000000000000000 .L0 +000000000000874c l .text 0000000000000000 .L0 +0000000000002b18 l .debug_frame 0000000000000000 .L0 +000000000000857c l .text 0000000000000000 .L0 +000000000000874c l .text 0000000000000000 .L0 +0000000000008588 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 mm_realloc.c +000000000000cc18 l .rodata 0000000000000000 .LC0 +0000000000008798 l .text 0000000000000000 .L0 +000000000000cc38 l .rodata 0000000000000000 .LC1 +00000000000087a4 l .text 0000000000000000 .L0 +000000000000cc50 l .rodata 0000000000000000 .LC2 +00000000000087c8 l .text 0000000000000000 .L0 +000000000000cc58 l .rodata 0000000000000000 .LC3 +00000000000087e8 l .text 0000000000000000 .L0 +000000000000cc68 l .rodata 0000000000000000 .LC4 +0000000000008806 l .text 0000000000000000 .L0 +000000000000cc88 l .rodata 0000000000000000 .LC5 +000000000000886c l .text 0000000000000000 .L0 +000000000000cca8 l .rodata 0000000000000000 .LC6 +0000000000008892 l .text 0000000000000000 .L0 +000000000000cce0 l .rodata 0000000000000000 .LC8 +00000000000088cc l .text 0000000000000000 .L0 +000000000000ccc8 l .rodata 0000000000000000 .LC7 +00000000000088ea l .text 0000000000000000 .L0 +000000000000878a l .text 0000000000000000 .L2 +00000000000087b4 l .text 0000000000000000 .L3 +00000000000087bc l .text 0000000000000000 .L4 +00000000000087d6 l .text 0000000000000000 .L5 +00000000000087a4 l .text 0000000000000000 .L56 +00000000000087f6 l .text 0000000000000000 .L6 +0000000000008814 l .text 0000000000000000 .L7 +0000000000008856 l .text 0000000000000000 .L8 +000000000000882e l .text 0000000000000000 .L9 +000000000000887a l .text 0000000000000000 .L33 +000000000000887c l .text 0000000000000000 .L11 +00000000000088a0 l .text 0000000000000000 .L34 +00000000000088a2 l .text 0000000000000000 .L13 +00000000000089e2 l .text 0000000000000000 .L15 +00000000000088da l .text 0000000000000000 .L16 +0000000000008a1a l .text 0000000000000000 .L17 +00000000000088f8 l .text 0000000000000000 .L35 +0000000000008996 l .text 0000000000000000 .L28 +000000000000898e l .text 0000000000000000 .L36 +00000000000088ea l .text 0000000000000000 .L21 +00000000000088fc l .text 0000000000000000 .L22 +00000000000088e4 l .text 0000000000000000 .L18 +0000000000008906 l .text 0000000000000000 .L23 +0000000000008910 l .text 0000000000000000 .L24 +0000000000008978 l .text 0000000000000000 .L25 +00000000000088c2 l .text 0000000000000000 .L19 +0000000000008958 l .text 0000000000000000 .L32 +000000000000883a l .text 0000000000000000 .L1 +000000000000893a l .text 0000000000000000 .L26 +000000000000893e l .text 0000000000000000 .L20 +00000000000089a4 l .text 0000000000000000 .L29 +00000000000089ae l .text 0000000000000000 .L30 +00000000000089da l .text 0000000000000000 .L31 +0000000000008942 l .text 0000000000000000 .L27 +0000000000008a44 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +00000000000166f7 l .debug_str 0000000000000000 .LASF76 +0000000000016843 l .debug_str 0000000000000000 .LASF77 +0000000000016952 l .debug_str 0000000000000000 .LASF78 +00000000000026d0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000016c27 l .debug_line 0000000000000000 .Ldebug_line0 +0000000000016899 l .debug_str 0000000000000000 .LASF0 +0000000000016671 l .debug_str 0000000000000000 .LASF2 +000000000001686c l .debug_str 0000000000000000 .LASF1 +000000000001687a l .debug_str 0000000000000000 .LASF3 +00000000000166b4 l .debug_str 0000000000000000 .LASF4 +000000000001691b l .debug_str 0000000000000000 .LASF5 +00000000000169fe l .debug_str 0000000000000000 .LASF6 +0000000000016912 l .debug_str 0000000000000000 .LASF7 +0000000000016989 l .debug_str 0000000000000000 .LASF8 +00000000000169e6 l .debug_str 0000000000000000 .LASF9 +00000000000168ab l .debug_str 0000000000000000 .LASF10 +00000000000167ac l .debug_str 0000000000000000 .LASF11 +000000000001692e l .debug_str 0000000000000000 .LASF12 +00000000000166be l .debug_str 0000000000000000 .LASF13 +00000000000169b5 l .debug_str 0000000000000000 .LASF14 +0000000000016905 l .debug_str 0000000000000000 .LASF15 +00000000000167f4 l .debug_str 0000000000000000 .LASF16 +0000000000016858 l .debug_str 0000000000000000 .LASF17 +000000000001693c l .debug_str 0000000000000000 .LASF21 +0000000000016831 l .debug_str 0000000000000000 .LASF18 +000000000001666b l .debug_str 0000000000000000 .LASF19 +0000000000016947 l .debug_str 0000000000000000 .LASF20 +00000000000169ee l .debug_str 0000000000000000 .LASF22 +00000000000167a7 l .debug_str 0000000000000000 .LASF23 +000000000001688b l .debug_str 0000000000000000 .LASF24 +0000000000016a16 l .debug_str 0000000000000000 .LASF25 +0000000000016a0b l .debug_str 0000000000000000 .LASF26 +0000000000016890 l .debug_str 0000000000000000 .LASF27 +00000000000168a5 l .debug_str 0000000000000000 .LASF28 +00000000000166db l .debug_str 0000000000000000 .LASF29 +00000000000166c5 l .debug_str 0000000000000000 .LASF30 +000000000001690a l .debug_str 0000000000000000 .LASF31 +0000000000016815 l .debug_str 0000000000000000 .LASF32 +0000000000016864 l .debug_str 0000000000000000 .LASF33 +0000000000016936 l .debug_str 0000000000000000 .LASF34 +0000000000016975 l .debug_str 0000000000000000 .LASF35 +000000000001696d l .debug_str 0000000000000000 .LASF36 +00000000000166a8 l .debug_str 0000000000000000 .LASF37 +0000000000016a21 l .debug_str 0000000000000000 .LASF38 +0000000000016802 l .debug_str 0000000000000000 .LASF39 +000000000001663e l .debug_str 0000000000000000 .LASF40 +0000000000016826 l .debug_str 0000000000000000 .LASF41 +00000000000168e3 l .debug_str 0000000000000000 .LASF42 +00000000000169c0 l .debug_str 0000000000000000 .LASF43 +000000000001697f l .debug_str 0000000000000000 .LASF44 +0000000000016691 l .debug_str 0000000000000000 .LASF45 +000000000001683e l .debug_str 0000000000000000 .LASF46 +00000000000167db l .debug_str 0000000000000000 .LASF47 +0000000000016a11 l .debug_str 0000000000000000 .LASF48 +000000000001667a l .debug_str 0000000000000000 .LASF49 +000000000001664b l .debug_str 0000000000000000 .LASF50 +000000000001681c l .debug_str 0000000000000000 .LASF51 +00000000000169bb l .debug_str 0000000000000000 .LASF52 +0000000000016683 l .debug_str 0000000000000000 .LASF53 +00000000000168cb l .debug_str 0000000000000000 .LASF54 +000000000001699b l .debug_str 0000000000000000 .LASF79 +000000000000874c l .text 0000000000000000 .LFB7 +0000000000008a24 l .text 0000000000000000 .LFE7 +00000000000176d2 l .debug_loc 0000000000000000 .LLST0 +00000000000168fe l .debug_str 0000000000000000 .LASF55 +000000000001775a l .debug_loc 0000000000000000 .LLST1 +00000000000177e2 l .debug_loc 0000000000000000 .LLST2 +00000000000169cd l .debug_str 0000000000000000 .LASF56 +00000000000178c6 l .debug_loc 0000000000000000 .LLST3 +00000000000169f9 l .debug_str 0000000000000000 .LASF57 +000000000001794c l .debug_loc 0000000000000000 .LLST4 +000000000001680d l .debug_str 0000000000000000 .LASF58 +00000000000179d7 l .debug_loc 0000000000000000 .LLST5 +00000000000168ef l .debug_str 0000000000000000 .LASF59 +0000000000017a98 l .debug_loc 0000000000000000 .LLST6 +00000000000169d5 l .debug_str 0000000000000000 .LASF60 +0000000000017ace l .debug_loc 0000000000000000 .LLST7 +00000000000167c4 l .debug_str 0000000000000000 .LASF61 +0000000000017ba5 l .debug_loc 0000000000000000 .LLST8 +00000000000168f7 l .debug_str 0000000000000000 .LASF62 +0000000000017c2a l .debug_loc 0000000000000000 .LLST9 +0000000000016837 l .debug_str 0000000000000000 .LASF63 +0000000000017ce5 l .debug_loc 0000000000000000 .LLST10 +00000000000168da l .debug_str 0000000000000000 .LASF64 +0000000000017d2e l .debug_loc 0000000000000000 .LLST11 +00000000000166cb l .debug_str 0000000000000000 .LASF65 +0000000000017e3f l .debug_loc 0000000000000000 .LLST12 +00000000000166e4 l .debug_str 0000000000000000 .LASF66 +0000000000017ea5 l .debug_loc 0000000000000000 .LLST13 +0000000000016883 l .debug_str 0000000000000000 .LASF67 +0000000000017f12 l .debug_loc 0000000000000000 .LLST16 +000000000000893a l .text 0000000000000000 .LVL38 +0000000000017f48 l .debug_loc 0000000000000000 .LLST14 +00000000000166ed l .debug_str 0000000000000000 .LASF68 +0000000000017f86 l .debug_loc 0000000000000000 .LLST15 +00000000000089d8 l .text 0000000000000000 .LVL52 +0000000000008962 l .text 0000000000000000 .LVL42 +0000000000008976 l .text 0000000000000000 .LVL43 +000000000000878a l .text 0000000000000000 .LVL2 +0000000000008796 l .text 0000000000000000 .LVL3 +00000000000087b4 l .text 0000000000000000 .LVL5 +00000000000087e4 l .text 0000000000000000 .LVL9 +000000000000882e l .text 0000000000000000 .LVL11 +0000000000008838 l .text 0000000000000000 .LVL12 +00000000000089ec l .text 0000000000000000 .LVL56 +00000000000089f8 l .text 0000000000000000 .LVL57 +0000000000008a0c l .text 0000000000000000 .LVL59 +0000000000008a18 l .text 0000000000000000 .LVL60 +00000000000167b4 l .debug_str 0000000000000000 .LASF69 +00000000000167e0 l .debug_str 0000000000000000 .LASF70 +00000000000166d4 l .debug_str 0000000000000000 .LASF80 +000000000001665a l .debug_str 0000000000000000 .LASF81 +00000000000167ea l .debug_str 0000000000000000 .LASF71 +00000000000167cd l .debug_str 0000000000000000 .LASF72 +00000000000168c2 l .debug_str 0000000000000000 .LASF73 +00000000000169a6 l .debug_str 0000000000000000 .LASF74 +00000000000169de l .debug_str 0000000000000000 .LASF75 +000000000000874c l .text 0000000000000000 .LVL0 +0000000000008846 l .text 0000000000000000 .LVL15 +0000000000008856 l .text 0000000000000000 .LVL17 +0000000000008780 l .text 0000000000000000 .LVL1 +0000000000008844 l .text 0000000000000000 .LVL14 +00000000000087a4 l .text 0000000000000000 .LVL4 +000000000000883a l .text 0000000000000000 .LVL13 +00000000000088c2 l .text 0000000000000000 .LVL27 +00000000000088da l .text 0000000000000000 .LVL29 +00000000000088e4 l .text 0000000000000000 .LVL31 +00000000000088f8 l .text 0000000000000000 .LVL32 +00000000000088fc l .text 0000000000000000 .LVL33 +000000000000898e l .text 0000000000000000 .LVL46 +0000000000008994 l .text 0000000000000000 .LVL47 +00000000000089e2 l .text 0000000000000000 .LVL55 +00000000000089fa l .text 0000000000000000 .LVL58 +0000000000008a1a l .text 0000000000000000 .LVL61 +0000000000008a1c l .text 0000000000000000 .LVL62 +00000000000087dc l .text 0000000000000000 .LVL8 +0000000000008914 l .text 0000000000000000 .LVL35 +000000000000893e l .text 0000000000000000 .LVL39 +0000000000008942 l .text 0000000000000000 .LVL40 +0000000000008978 l .text 0000000000000000 .LVL44 +0000000000008888 l .text 0000000000000000 .LVL20 +000000000000889e l .text 0000000000000000 .LVL21 +00000000000088a0 l .text 0000000000000000 .LVL22 +00000000000088a2 l .text 0000000000000000 .LVL23 +00000000000087c4 l .text 0000000000000000 .LVL7 +00000000000088b0 l .text 0000000000000000 .LVL24 +0000000000008818 l .text 0000000000000000 .LVL10 +000000000000884c l .text 0000000000000000 .LVL16 +0000000000008900 l .text 0000000000000000 .LVL34 +000000000000891c l .text 0000000000000000 .LVL36 +0000000000008996 l .text 0000000000000000 .LVL48 +000000000000887c l .text 0000000000000000 .LVL19 +00000000000089c6 l .text 0000000000000000 .LVL50 +00000000000089da l .text 0000000000000000 .LVL53 +00000000000088bc l .text 0000000000000000 .LVL26 +00000000000088e2 l .text 0000000000000000 .LVL30 +000000000000894c l .text 0000000000000000 .LVL41 +0000000000008924 l .text 0000000000000000 .LVL37 +000000000000897c l .text 0000000000000000 .LVL45 +00000000000089b6 l .text 0000000000000000 .LVL49 +00000000000089dc l .text 0000000000000000 .LVL54 +00000000000088b8 l .text 0000000000000000 .LVL25 +00000000000089ca l .text 0000000000000000 .LVL51 +00000000000088ca l .text 0000000000000000 .LVL28 +0000000000022ae9 l .debug_info 0000000000000000 .Ldebug_info0 +00000000000088ac l .text 0000000000000000 .LBB2 +00000000000089e2 l .text 0000000000000000 .LBE2 +0000000000008a1a l .text 0000000000000000 .LBB8 +0000000000008a24 l .text 0000000000000000 .LBE8 +00000000000088c2 l .text 0000000000000000 .LBB3 +00000000000088da l .text 0000000000000000 .LBE3 +0000000000008996 l .text 0000000000000000 .LBB7 +00000000000089e2 l .text 0000000000000000 .LBE7 +00000000000088e4 l .text 0000000000000000 .LBB4 +00000000000088f8 l .text 0000000000000000 .LBE4 +00000000000088fc l .text 0000000000000000 .LBB5 +000000000000893e l .text 0000000000000000 .LBE5 +0000000000008978 l .text 0000000000000000 .LBB6 +000000000000898e l .text 0000000000000000 .LBE6 +000000000000874c l .text 0000000000000000 .L0 +000000000000874c l .text 0000000000000000 .L0 +000000000000874c l .text 0000000000000000 .L0 +000000000000874c l .text 0000000000000000 .L0 +000000000000874c l .text 0000000000000000 .L0 +000000000000874c l .text 0000000000000000 .L0 +000000000000874c l .text 0000000000000000 .L0 +000000000000874c l .text 0000000000000000 .L0 +000000000000874c l .text 0000000000000000 .L0 +000000000000874c l .text 0000000000000000 .L0 +000000000000874c l .text 0000000000000000 .L0 +0000000000008764 l .text 0000000000000000 .L0 +0000000000008766 l .text 0000000000000000 .L0 +0000000000008768 l .text 0000000000000000 .L0 +0000000000008768 l .text 0000000000000000 .L0 +000000000000877e l .text 0000000000000000 .L0 +0000000000008780 l .text 0000000000000000 .L0 +0000000000008782 l .text 0000000000000000 .L0 +000000000000878e l .text 0000000000000000 .L0 +000000000000878e l .text 0000000000000000 .L0 +0000000000008798 l .text 0000000000000000 .L0 +00000000000087a4 l .text 0000000000000000 .L0 +00000000000087b4 l .text 0000000000000000 .L0 +00000000000087b4 l .text 0000000000000000 .L0 +00000000000087bc l .text 0000000000000000 .L0 +00000000000087bc l .text 0000000000000000 .L0 +00000000000087c0 l .text 0000000000000000 .L0 +00000000000087c4 l .text 0000000000000000 .L0 +00000000000087c4 l .text 0000000000000000 .L0 +00000000000087c8 l .text 0000000000000000 .L0 +00000000000087d6 l .text 0000000000000000 .L0 +00000000000087d6 l .text 0000000000000000 .L0 +00000000000087d8 l .text 0000000000000000 .L0 +00000000000087dc l .text 0000000000000000 .L0 +00000000000087dc l .text 0000000000000000 .L0 +00000000000087e8 l .text 0000000000000000 .L0 +00000000000087f6 l .text 0000000000000000 .L0 +00000000000087f6 l .text 0000000000000000 .L0 +00000000000087f6 l .text 0000000000000000 .L0 +0000000000008806 l .text 0000000000000000 .L0 +0000000000008814 l .text 0000000000000000 .L0 +0000000000008814 l .text 0000000000000000 .L0 +0000000000008814 l .text 0000000000000000 .L0 +0000000000008818 l .text 0000000000000000 .L0 +0000000000008818 l .text 0000000000000000 .L0 +000000000000881c l .text 0000000000000000 .L0 +000000000000881c l .text 0000000000000000 .L0 +0000000000008820 l .text 0000000000000000 .L0 +000000000000882e l .text 0000000000000000 .L0 +000000000000882e l .text 0000000000000000 .L0 +0000000000008838 l .text 0000000000000000 .L0 +0000000000008838 l .text 0000000000000000 .L0 +0000000000008838 l .text 0000000000000000 .L0 +000000000000883a l .text 0000000000000000 .L0 +0000000000008856 l .text 0000000000000000 .L0 +0000000000008856 l .text 0000000000000000 .L0 +000000000000885a l .text 0000000000000000 .L0 +000000000000885a l .text 0000000000000000 .L0 +0000000000008862 l .text 0000000000000000 .L0 +0000000000008864 l .text 0000000000000000 .L0 +0000000000008864 l .text 0000000000000000 .L0 +0000000000008868 l .text 0000000000000000 .L0 +000000000000886a l .text 0000000000000000 .L0 +000000000000886c l .text 0000000000000000 .L0 +000000000000887a l .text 0000000000000000 .L0 +000000000000887c l .text 0000000000000000 .L0 +000000000000887c l .text 0000000000000000 .L0 +000000000000887e l .text 0000000000000000 .L0 +0000000000008880 l .text 0000000000000000 .L0 +0000000000008880 l .text 0000000000000000 .L0 +0000000000008888 l .text 0000000000000000 .L0 +0000000000008888 l .text 0000000000000000 .L0 +000000000000888e l .text 0000000000000000 .L0 +0000000000008890 l .text 0000000000000000 .L0 +0000000000008892 l .text 0000000000000000 .L0 +00000000000088a0 l .text 0000000000000000 .L0 +00000000000088a2 l .text 0000000000000000 .L0 +00000000000088a2 l .text 0000000000000000 .L0 +00000000000088a8 l .text 0000000000000000 .L0 +00000000000088ac l .text 0000000000000000 .L0 +00000000000088ac l .text 0000000000000000 .L0 +00000000000088b0 l .text 0000000000000000 .L0 +00000000000088b0 l .text 0000000000000000 .L0 +00000000000088b0 l .text 0000000000000000 .L0 +00000000000088b0 l .text 0000000000000000 .L0 +00000000000088b0 l .text 0000000000000000 .L0 +00000000000088b4 l .text 0000000000000000 .L0 +00000000000088b4 l .text 0000000000000000 .L0 +00000000000088b8 l .text 0000000000000000 .L0 +00000000000088b8 l .text 0000000000000000 .L0 +00000000000088b8 l .text 0000000000000000 .L0 +00000000000088bc l .text 0000000000000000 .L0 +00000000000088bc l .text 0000000000000000 .L0 +00000000000088bc l .text 0000000000000000 .L0 +00000000000088c2 l .text 0000000000000000 .L0 +00000000000088c2 l .text 0000000000000000 .L0 +00000000000088c2 l .text 0000000000000000 .L0 +00000000000088c2 l .text 0000000000000000 .L0 +00000000000088c6 l .text 0000000000000000 .L0 +00000000000088ca l .text 0000000000000000 .L0 +00000000000088ca l .text 0000000000000000 .L0 +00000000000088cc l .text 0000000000000000 .L0 +00000000000088da l .text 0000000000000000 .L0 +00000000000088da l .text 0000000000000000 .L0 +00000000000088de l .text 0000000000000000 .L0 +00000000000088de l .text 0000000000000000 .L0 +00000000000088e2 l .text 0000000000000000 .L0 +00000000000088e2 l .text 0000000000000000 .L0 +00000000000088e2 l .text 0000000000000000 .L0 +00000000000088e2 l .text 0000000000000000 .L0 +00000000000088e4 l .text 0000000000000000 .L0 +00000000000088e4 l .text 0000000000000000 .L0 +00000000000088e4 l .text 0000000000000000 .L0 +00000000000088e6 l .text 0000000000000000 .L0 +00000000000088ea l .text 0000000000000000 .L0 +00000000000088f8 l .text 0000000000000000 .L0 +00000000000088fc l .text 0000000000000000 .L0 +00000000000088fc l .text 0000000000000000 .L0 +00000000000088fc l .text 0000000000000000 .L0 +00000000000088fe l .text 0000000000000000 .L0 +0000000000008900 l .text 0000000000000000 .L0 +0000000000008900 l .text 0000000000000000 .L0 +0000000000008902 l .text 0000000000000000 .L0 +0000000000008902 l .text 0000000000000000 .L0 +0000000000008904 l .text 0000000000000000 .L0 +0000000000008906 l .text 0000000000000000 .L0 +0000000000008906 l .text 0000000000000000 .L0 +000000000000890a l .text 0000000000000000 .L0 +0000000000008910 l .text 0000000000000000 .L0 +0000000000008910 l .text 0000000000000000 .L0 +0000000000008914 l .text 0000000000000000 .L0 +0000000000008914 l .text 0000000000000000 .L0 +0000000000008918 l .text 0000000000000000 .L0 +0000000000008918 l .text 0000000000000000 .L0 +000000000000891a l .text 0000000000000000 .L0 +000000000000891c l .text 0000000000000000 .L0 +000000000000891c l .text 0000000000000000 .L0 +000000000000891e l .text 0000000000000000 .L0 +0000000000008920 l .text 0000000000000000 .L0 +0000000000008922 l .text 0000000000000000 .L0 +0000000000008924 l .text 0000000000000000 .L0 +0000000000008924 l .text 0000000000000000 .L0 +0000000000008924 l .text 0000000000000000 .L0 +0000000000008928 l .text 0000000000000000 .L0 +000000000000892c l .text 0000000000000000 .L0 +000000000000892c l .text 0000000000000000 .L0 +0000000000008930 l .text 0000000000000000 .L0 +000000000000893a l .text 0000000000000000 .L0 +000000000000893a l .text 0000000000000000 .L0 +000000000000893e l .text 0000000000000000 .L0 +000000000000893e l .text 0000000000000000 .L0 +000000000000893e l .text 0000000000000000 .L0 +0000000000008942 l .text 0000000000000000 .L0 +0000000000008942 l .text 0000000000000000 .L0 +0000000000008946 l .text 0000000000000000 .L0 +000000000000894a l .text 0000000000000000 .L0 +0000000000008950 l .text 0000000000000000 .L0 +0000000000008950 l .text 0000000000000000 .L0 +0000000000008954 l .text 0000000000000000 .L0 +0000000000008954 l .text 0000000000000000 .L0 +0000000000008958 l .text 0000000000000000 .L0 +0000000000008962 l .text 0000000000000000 .L0 +0000000000008962 l .text 0000000000000000 .L0 +0000000000008962 l .text 0000000000000000 .L0 +0000000000008962 l .text 0000000000000000 .L0 +0000000000008966 l .text 0000000000000000 .L0 +0000000000008978 l .text 0000000000000000 .L0 +0000000000008978 l .text 0000000000000000 .L0 +000000000000897c l .text 0000000000000000 .L0 +000000000000897c l .text 0000000000000000 .L0 +0000000000008982 l .text 0000000000000000 .L0 +0000000000008988 l .text 0000000000000000 .L0 +0000000000008996 l .text 0000000000000000 .L0 +0000000000008996 l .text 0000000000000000 .L0 +0000000000008996 l .text 0000000000000000 .L0 +000000000000899a l .text 0000000000000000 .L0 +000000000000899c l .text 0000000000000000 .L0 +000000000000899c l .text 0000000000000000 .L0 +000000000000899e l .text 0000000000000000 .L0 +000000000000899e l .text 0000000000000000 .L0 +00000000000089a2 l .text 0000000000000000 .L0 +00000000000089a4 l .text 0000000000000000 .L0 +00000000000089a4 l .text 0000000000000000 .L0 +00000000000089a8 l .text 0000000000000000 .L0 +00000000000089ae l .text 0000000000000000 .L0 +00000000000089ae l .text 0000000000000000 .L0 +00000000000089b2 l .text 0000000000000000 .L0 +00000000000089b6 l .text 0000000000000000 .L0 +00000000000089b6 l .text 0000000000000000 .L0 +00000000000089b8 l .text 0000000000000000 .L0 +00000000000089ba l .text 0000000000000000 .L0 +00000000000089be l .text 0000000000000000 .L0 +00000000000089be l .text 0000000000000000 .L0 +00000000000089c2 l .text 0000000000000000 .L0 +00000000000089c2 l .text 0000000000000000 .L0 +00000000000089c6 l .text 0000000000000000 .L0 +00000000000089ca l .text 0000000000000000 .L0 +00000000000089ca l .text 0000000000000000 .L0 +00000000000089cc l .text 0000000000000000 .L0 +00000000000089cc l .text 0000000000000000 .L0 +00000000000089ce l .text 0000000000000000 .L0 +00000000000089da l .text 0000000000000000 .L0 +00000000000089da l .text 0000000000000000 .L0 +00000000000089e2 l .text 0000000000000000 .L0 +00000000000089ec l .text 0000000000000000 .L0 +00000000000089ec l .text 0000000000000000 .L0 +00000000000089fa l .text 0000000000000000 .L0 +00000000000089fa l .text 0000000000000000 .L0 +00000000000089fe l .text 0000000000000000 .L0 +0000000000008a0c l .text 0000000000000000 .L0 +0000000000008a1a l .text 0000000000000000 .L0 +0000000000008a1a l .text 0000000000000000 .L0 +0000000000008a1a l .text 0000000000000000 .L0 +0000000000008a24 l .text 0000000000000000 .L0 +0000000000002b80 l .debug_frame 0000000000000000 .L0 +000000000000874c l .text 0000000000000000 .L0 +0000000000008a24 l .text 0000000000000000 .L0 +000000000000876a l .text 0000000000000000 .L0 +0000000000008764 l .text 0000000000000000 .L0 +000000000000878a l .text 0000000000000000 .L0 +0000000000008782 l .text 0000000000000000 .L0 +000000000000883c l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 mm_heapmember.c +0000000000008a32 l .text 0000000000000000 .L3 +0000000000008c09 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000016aff l .debug_str 0000000000000000 .LASF55 +0000000000016cb2 l .debug_str 0000000000000000 .LASF56 +0000000000016cf6 l .debug_str 0000000000000000 .LASF57 +0000000000002790 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000017551 l .debug_line 0000000000000000 .Ldebug_line0 +0000000000016ce1 l .debug_str 0000000000000000 .LASF0 +0000000000016c44 l .debug_str 0000000000000000 .LASF2 +0000000000016baf l .debug_str 0000000000000000 .LASF1 +0000000000016a32 l .debug_str 0000000000000000 .LASF3 +0000000000016c8d l .debug_str 0000000000000000 .LASF4 +0000000000016a79 l .debug_str 0000000000000000 .LASF5 +0000000000016c02 l .debug_str 0000000000000000 .LASF6 +0000000000016a70 l .debug_str 0000000000000000 .LASF7 +0000000000016ace l .debug_str 0000000000000000 .LASF8 +0000000000016bbd l .debug_str 0000000000000000 .LASF9 +0000000000016c15 l .debug_str 0000000000000000 .LASF10 +0000000000016a8c l .debug_str 0000000000000000 .LASF11 +0000000000016c3c l .debug_str 0000000000000000 .LASF12 +0000000000016a3b l .debug_str 0000000000000000 .LASF13 +0000000000016a99 l .debug_str 0000000000000000 .LASF14 +0000000000016c65 l .debug_str 0000000000000000 .LASF15 +0000000000016bc5 l .debug_str 0000000000000000 .LASF19 +0000000000016aba l .debug_str 0000000000000000 .LASF16 +0000000000016a2c l .debug_str 0000000000000000 .LASF17 +0000000000016bd0 l .debug_str 0000000000000000 .LASF18 +0000000000016c77 l .debug_str 0000000000000000 .LASF20 +0000000000016bdb l .debug_str 0000000000000000 .LASF21 +0000000000016c9e l .debug_str 0000000000000000 .LASF22 +0000000000016c82 l .debug_str 0000000000000000 .LASF23 +0000000000016c4d l .debug_str 0000000000000000 .LASF24 +0000000000016cd5 l .debug_str 0000000000000000 .LASF25 +0000000000016c5b l .debug_str 0000000000000000 .LASF26 +0000000000016ae0 l .debug_str 0000000000000000 .LASF27 +0000000000016bf6 l .debug_str 0000000000000000 .LASF28 +0000000000016c31 l .debug_str 0000000000000000 .LASF29 +0000000000016cca l .debug_str 0000000000000000 .LASF30 +0000000000016aad l .debug_str 0000000000000000 .LASF31 +0000000000016d3a l .debug_str 0000000000000000 .LASF32 +0000000000016be0 l .debug_str 0000000000000000 .LASF33 +0000000000016c6a l .debug_str 0000000000000000 .LASF34 +0000000000016bec l .debug_str 0000000000000000 .LASF35 +0000000000016a55 l .debug_str 0000000000000000 .LASF36 +0000000000016ced l .debug_str 0000000000000000 .LASF37 +0000000000016c0f l .debug_str 0000000000000000 .LASF38 +0000000000016d1f l .debug_str 0000000000000000 .LASF39 +0000000000016a5b l .debug_str 0000000000000000 .LASF40 +0000000000016d11 l .debug_str 0000000000000000 .LASF41 +0000000000016d17 l .debug_str 0000000000000000 .LASF42 +0000000000016c97 l .debug_str 0000000000000000 .LASF43 +0000000000016d32 l .debug_str 0000000000000000 .LASF44 +0000000000016ae8 l .debug_str 0000000000000000 .LASF45 +0000000000016a94 l .debug_str 0000000000000000 .LASF46 +0000000000016c2c l .debug_str 0000000000000000 .LASF47 +0000000000016a42 l .debug_str 0000000000000000 .LASF48 +0000000000016ac5 l .debug_str 0000000000000000 .LASF49 +0000000000016a61 l .debug_str 0000000000000000 .LASF50 +0000000000016d28 l .debug_str 0000000000000000 .LASF51 +0000000000016ac0 l .debug_str 0000000000000000 .LASF52 +0000000000016a9f l .debug_str 0000000000000000 .LASF53 +0000000000016ca3 l .debug_str 0000000000000000 .LASF54 +0000000000016a47 l .debug_str 0000000000000000 .LASF58 +0000000000008a24 l .text 0000000000000000 .LFB7 +0000000000008a36 l .text 0000000000000000 .LFE7 +0000000000017fcf l .debug_loc 0000000000000000 .LLST0 +0000000000008a24 l .text 0000000000000000 .LVL0 +0000000000008a2c l .text 0000000000000000 .LVL1 +0000000000008a32 l .text 0000000000000000 .LVL2 +0000000000008a34 l .text 0000000000000000 .LVL3 +00000000000231c4 l .debug_info 0000000000000000 .Ldebug_info0 +0000000000008a24 l .text 0000000000000000 .L0 +0000000000008a24 l .text 0000000000000000 .L0 +0000000000008a24 l .text 0000000000000000 .L0 +0000000000008a2a l .text 0000000000000000 .L0 +0000000000008a32 l .text 0000000000000000 .L0 +0000000000008a34 l .text 0000000000000000 .L0 +0000000000008a36 l .text 0000000000000000 .L0 +0000000000002c00 l .debug_frame 0000000000000000 .L0 +0000000000008a24 l .text 0000000000000000 .L0 +0000000000008a36 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 umm_initialize.c +000000000000ccf0 l .rodata 0000000000000000 .LC0 +0000000000008a72 l .text 0000000000000000 .L0 +000000000000cd00 l .rodata 0000000000000000 .LC1 +0000000000008a7e l .text 0000000000000000 .L0 +0000000000008a9c l .text 0000000000000000 .L3 +0000000000008a8e l .text 0000000000000000 .L5 +0000000000008d36 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000016e15 l .debug_str 0000000000000000 .LASF40 +0000000000016d8e l .debug_str 0000000000000000 .LASF41 +0000000000016fc4 l .debug_str 0000000000000000 .LASF42 +00000000000027b0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000017733 l .debug_line 0000000000000000 .Ldebug_line0 +0000000000016fb8 l .debug_str 0000000000000000 .LASF0 +0000000000016ff1 l .debug_str 0000000000000000 .LASF7 +0000000000016ec5 l .debug_str 0000000000000000 .LASF1 +0000000000016f76 l .debug_str 0000000000000000 .LASF2 +0000000000016df9 l .debug_str 0000000000000000 .LASF3 +0000000000016efe l .debug_str 0000000000000000 .LASF4 +0000000000016f9c l .debug_str 0000000000000000 .LASF5 +0000000000016de7 l .debug_str 0000000000000000 .LASF6 +0000000000016edb l .debug_str 0000000000000000 .LASF8 +0000000000016f15 l .debug_str 0000000000000000 .LASF9 +0000000000016f2c l .debug_str 0000000000000000 .LASF10 +0000000000016d63 l .debug_str 0000000000000000 .LASF11 +0000000000016d5c l .debug_str 0000000000000000 .LASF12 +0000000000016d4d l .debug_str 0000000000000000 .LASF13 +0000000000016fa5 l .debug_str 0000000000000000 .LASF43 +0000000000016dce l .debug_str 0000000000000000 .LASF14 +0000000000016ffa l .debug_str 0000000000000000 .LASF15 +0000000000016f54 l .debug_str 0000000000000000 .LASF26 +0000000000016f80 l .debug_str 0000000000000000 .LASF16 +0000000000016ed3 l .debug_str 0000000000000000 .LASF17 +0000000000016db3 l .debug_str 0000000000000000 .LASF18 +0000000000016e0c l .debug_str 0000000000000000 .LASF19 +0000000000016ef6 l .debug_str 0000000000000000 .LASF20 +0000000000016f6c l .debug_str 0000000000000000 .LASF21 +0000000000016f5c l .debug_str 0000000000000000 .LASF22 +0000000000016f46 l .debug_str 0000000000000000 .LASF23 +0000000000016fac l .debug_str 0000000000000000 .LASF24 +0000000000016ee3 l .debug_str 0000000000000000 .LASF25 +0000000000016dbc l .debug_str 0000000000000000 .LASF27 +0000000000016fe5 l .debug_str 0000000000000000 .LASF28 +0000000000016f3b l .debug_str 0000000000000000 .LASF29 +0000000000016d84 l .debug_str 0000000000000000 .LASF44 +0000000000016fdf l .debug_str 0000000000000000 .LASF30 +0000000000016f89 l .debug_str 0000000000000000 .LASF33 +0000000000008a56 l .text 0000000000000000 .LFB5 +0000000000008a9e l .text 0000000000000000 .LFE5 +0000000000016f0b l .debug_str 0000000000000000 .LASF31 +0000000000018031 l .debug_loc 0000000000000000 .LLST2 +0000000000016f34 l .debug_str 0000000000000000 .LASF32 +0000000000008a70 l .text 0000000000000000 .LVL5 +0000000000008a8e l .text 0000000000000000 .LVL7 +0000000000008a9c l .text 0000000000000000 .LVL8 +0000000000016dd8 l .debug_str 0000000000000000 .LASF34 +0000000000008a36 l .text 0000000000000000 .LFB4 +0000000000008a56 l .text 0000000000000000 .LFE4 +0000000000016da8 l .debug_str 0000000000000000 .LASF35 +0000000000018067 l .debug_loc 0000000000000000 .LLST0 +0000000000016d52 l .debug_str 0000000000000000 .LASF36 +00000000000180b3 l .debug_loc 0000000000000000 .LLST1 +0000000000008a48 l .text 0000000000000000 .LVL3 +0000000000016d45 l .debug_str 0000000000000000 .LASF37 +0000000000016d7b l .debug_str 0000000000000000 .LASF38 +0000000000016d6d l .debug_str 0000000000000000 .LASF39 +0000000000008a86 l .text 0000000000000000 .LVL6 +0000000000008a36 l .text 0000000000000000 .LVL0 +0000000000008a3e l .text 0000000000000000 .LVL2 +0000000000008a3c l .text 0000000000000000 .LVL1 +000000000002357a l .debug_info 0000000000000000 .Ldebug_info0 +0000000000008a36 l .text 0000000000000000 .L0 +0000000000008a56 l .text 0000000000000000 .L0 +0000000000008a36 l .text 0000000000000000 .L0 +0000000000008a36 l .text 0000000000000000 .L0 +0000000000008a3a l .text 0000000000000000 .L0 +0000000000008a3e l .text 0000000000000000 .L0 +0000000000008a40 l .text 0000000000000000 .L0 +0000000000008a48 l .text 0000000000000000 .L0 +0000000000008a50 l .text 0000000000000000 .L0 +0000000000008a56 l .text 0000000000000000 .L0 +0000000000008a56 l .text 0000000000000000 .L0 +0000000000008a56 l .text 0000000000000000 .L0 +0000000000008a56 l .text 0000000000000000 .L0 +0000000000008a56 l .text 0000000000000000 .L0 +0000000000008a5c l .text 0000000000000000 .L0 +0000000000008a60 l .text 0000000000000000 .L0 +0000000000008a60 l .text 0000000000000000 .L0 +0000000000008a62 l .text 0000000000000000 .L0 +0000000000008a66 l .text 0000000000000000 .L0 +0000000000008a68 l .text 0000000000000000 .L0 +0000000000008a70 l .text 0000000000000000 .L0 +0000000000008a70 l .text 0000000000000000 .L0 +0000000000008a72 l .text 0000000000000000 .L0 +0000000000008a8e l .text 0000000000000000 .L0 +0000000000008a8e l .text 0000000000000000 .L0 +0000000000008a8e l .text 0000000000000000 .L0 +0000000000008a90 l .text 0000000000000000 .L0 +0000000000008a92 l .text 0000000000000000 .L0 +0000000000008a94 l .text 0000000000000000 .L0 +0000000000008a9e l .text 0000000000000000 .L0 +0000000000002c28 l .debug_frame 0000000000000000 .L0 +0000000000008a36 l .text 0000000000000000 .L0 +0000000000008a56 l .text 0000000000000000 .L0 +0000000000008a56 l .text 0000000000000000 .L0 +0000000000008a9e l .text 0000000000000000 .L0 +0000000000008a52 l .text 0000000000000000 .L0 +0000000000008a40 l .text 0000000000000000 .L0 +0000000000008a62 l .text 0000000000000000 .L0 +0000000000008a90 l .text 0000000000000000 .L0 +0000000000008a68 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 mm_initialize.c +000000000000cd20 l .rodata 0000000000000000 .LC0 +0000000000008aba l .text 0000000000000000 .L0 +000000000000cd30 l .rodata 0000000000000000 .LC1 +0000000000008ac6 l .text 0000000000000000 .L0 +0000000000008ad6 l .text 0000000000000000 .L2 +000000000000cd48 l .rodata 0000000000000000 .LC2 +0000000000008b4a l .text 0000000000000000 .L0 +0000000000008b56 l .text 0000000000000000 .L0 +0000000000008b66 l .text 0000000000000000 .L5 +0000000000008b8a l .text 0000000000000000 .L6 +0000000000008e90 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +00000000000170ab l .debug_str 0000000000000000 .LASF69 +000000000001733d l .debug_str 0000000000000000 .LASF70 +000000000001731a l .debug_str 0000000000000000 .LASF71 +00000000000027e0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000017992 l .debug_line 0000000000000000 .Ldebug_line0 +000000000001726b l .debug_str 0000000000000000 .LASF0 +0000000000017025 l .debug_str 0000000000000000 .LASF2 +000000000001723e l .debug_str 0000000000000000 .LASF1 +000000000001724c l .debug_str 0000000000000000 .LASF3 +0000000000017068 l .debug_str 0000000000000000 .LASF4 +00000000000172cd l .debug_str 0000000000000000 .LASF5 +00000000000173a6 l .debug_str 0000000000000000 .LASF6 +00000000000172ed l .debug_str 0000000000000000 .LASF7 +0000000000017369 l .debug_str 0000000000000000 .LASF8 +0000000000017393 l .debug_str 0000000000000000 .LASF9 +000000000001727d l .debug_str 0000000000000000 .LASF10 +0000000000017171 l .debug_str 0000000000000000 .LASF11 +00000000000172f6 l .debug_str 0000000000000000 .LASF12 +0000000000017189 l .debug_str 0000000000000000 .LASF13 +0000000000017072 l .debug_str 0000000000000000 .LASF14 +000000000001737b l .debug_str 0000000000000000 .LASF15 +00000000000172e0 l .debug_str 0000000000000000 .LASF16 +00000000000171ae l .debug_str 0000000000000000 .LASF17 +0000000000017214 l .debug_str 0000000000000000 .LASF18 +0000000000017304 l .debug_str 0000000000000000 .LASF22 +0000000000017200 l .debug_str 0000000000000000 .LASF19 +000000000001701f l .debug_str 0000000000000000 .LASF20 +000000000001730f l .debug_str 0000000000000000 .LASF21 +000000000001739b l .debug_str 0000000000000000 .LASF23 +000000000001716c l .debug_str 0000000000000000 .LASF24 +0000000000017220 l .debug_str 0000000000000000 .LASF25 +00000000000173b8 l .debug_str 0000000000000000 .LASF26 +0000000000017355 l .debug_str 0000000000000000 .LASF27 +0000000000017335 l .debug_str 0000000000000000 .LASF28 +000000000001705c l .debug_str 0000000000000000 .LASF29 +00000000000173c3 l .debug_str 0000000000000000 .LASF30 +00000000000171bc l .debug_str 0000000000000000 .LASF31 +0000000000017004 l .debug_str 0000000000000000 .LASF32 +00000000000171f0 l .debug_str 0000000000000000 .LASF33 +00000000000172c1 l .debug_str 0000000000000000 .LASF34 +0000000000017386 l .debug_str 0000000000000000 .LASF35 +000000000001735f l .debug_str 0000000000000000 .LASF36 +0000000000017193 l .debug_str 0000000000000000 .LASF37 +0000000000017262 l .debug_str 0000000000000000 .LASF38 +0000000000017277 l .debug_str 0000000000000000 .LASF39 +0000000000017092 l .debug_str 0000000000000000 .LASF40 +0000000000017199 l .debug_str 0000000000000000 .LASF41 +00000000000172fe l .debug_str 0000000000000000 .LASF42 +00000000000172e5 l .debug_str 0000000000000000 .LASF43 +00000000000171df l .debug_str 0000000000000000 .LASF44 +00000000000172ac l .debug_str 0000000000000000 .LASF45 +0000000000017045 l .debug_str 0000000000000000 .LASF46 +0000000000017206 l .debug_str 0000000000000000 .LASF47 +000000000001719f l .debug_str 0000000000000000 .LASF48 +00000000000173b3 l .debug_str 0000000000000000 .LASF49 +000000000001702e l .debug_str 0000000000000000 .LASF50 +0000000000017225 l .debug_str 0000000000000000 .LASF51 +00000000000171e6 l .debug_str 0000000000000000 .LASF52 +0000000000017381 l .debug_str 0000000000000000 .LASF53 +0000000000017037 l .debug_str 0000000000000000 .LASF54 +000000000001729d l .debug_str 0000000000000000 .LASF55 +000000000001709b l .debug_str 0000000000000000 .LASF59 +0000000000008bc4 l .text 0000000000000000 .LFB9 +0000000000008bcc l .text 0000000000000000 .LFE9 +00000000000180ff l .debug_loc 0000000000000000 .LLST12 +0000000000008bcc l .text 0000000000000000 .LVL38 +0000000000017011 l .debug_str 0000000000000000 .LASF72 +0000000000008b2c l .text 0000000000000000 .LFB8 +0000000000008bc4 l .text 0000000000000000 .LFE8 +0000000000018138 l .debug_loc 0000000000000000 .LLST6 +0000000000017234 l .debug_str 0000000000000000 .LASF56 +000000000001819a l .debug_loc 0000000000000000 .LLST7 +000000000001720b l .debug_str 0000000000000000 .LASF57 +00000000000181fc l .debug_loc 0000000000000000 .LLST8 +00000000000182cb l .debug_loc 0000000000000000 .LLST9 +00000000000171c7 l .debug_str 0000000000000000 .LASF58 +0000000000018317 l .debug_loc 0000000000000000 .LLST10 +0000000000018363 l .debug_loc 0000000000000000 .LLST11 +0000000000008b66 l .text 0000000000000000 .LVL24 +0000000000008b7a l .text 0000000000000000 .LVL27 +0000000000008ba8 l .text 0000000000000000 .LVL32 +0000000000008bb6 l .text 0000000000000000 .LVL33 +0000000000017255 l .debug_str 0000000000000000 .LASF60 +0000000000008a9e l .text 0000000000000000 .LFB7 +0000000000008b2c l .text 0000000000000000 .LFE7 +00000000000183e5 l .debug_loc 0000000000000000 .LLST0 +0000000000018444 l .debug_loc 0000000000000000 .LLST1 +0000000000018490 l .debug_loc 0000000000000000 .LLST2 +00000000000171fb l .debug_str 0000000000000000 .LASF61 +00000000000185ab l .debug_loc 0000000000000000 .LLST3 +0000000000017079 l .debug_str 0000000000000000 .LASF62 +00000000000185eb l .debug_loc 0000000000000000 .LLST4 +00000000000171d7 l .debug_str 0000000000000000 .LASF63 +0000000000018656 l .debug_loc 0000000000000000 .LLST5 +0000000000008ab6 l .text 0000000000000000 .LVL1 +0000000000008ad6 l .text 0000000000000000 .LVL2 +0000000000008b18 l .text 0000000000000000 .LVL12 +0000000000008b2c l .text 0000000000000000 .LVL16 +0000000000017082 l .debug_str 0000000000000000 .LASF64 +0000000000017294 l .debug_str 0000000000000000 .LASF65 +00000000000171d0 l .debug_str 0000000000000000 .LASF73 +000000000001715b l .debug_str 0000000000000000 .LASF74 +00000000000172b4 l .debug_str 0000000000000000 .LASF66 +0000000000017179 l .debug_str 0000000000000000 .LASF67 +00000000000171a4 l .debug_str 0000000000000000 .LASF68 +0000000000008bc4 l .text 0000000000000000 .LVL37 +0000000000008b2c l .text 0000000000000000 .LVL17 +0000000000008b5e l .text 0000000000000000 .LVL23 +0000000000008b72 l .text 0000000000000000 .LVL26 +0000000000008b38 l .text 0000000000000000 .LVL19 +0000000000008b7e l .text 0000000000000000 .LVL28 +0000000000008bc0 l .text 0000000000000000 .LVL36 +0000000000008b42 l .text 0000000000000000 .LVL20 +0000000000008b52 l .text 0000000000000000 .LVL21 +0000000000008b56 l .text 0000000000000000 .LVL22 +0000000000008b6a l .text 0000000000000000 .LVL25 +0000000000008bbe l .text 0000000000000000 .LVL35 +0000000000008bbc l .text 0000000000000000 .LVL34 +0000000000008b36 l .text 0000000000000000 .LVL18 +0000000000008b8a l .text 0000000000000000 .LVL29 +0000000000008b92 l .text 0000000000000000 .LVL30 +0000000000008b9a l .text 0000000000000000 .LVL31 +0000000000008a9e l .text 0000000000000000 .LVL0 +0000000000008b22 l .text 0000000000000000 .LVL15 +0000000000008ae0 l .text 0000000000000000 .LVL3 +0000000000008aea l .text 0000000000000000 .LVL6 +0000000000008af8 l .text 0000000000000000 .LVL7 +0000000000008b02 l .text 0000000000000000 .LVL9 +0000000000008b0a l .text 0000000000000000 .LVL10 +0000000000008b0c l .text 0000000000000000 .LVL11 +0000000000008b1a l .text 0000000000000000 .LVL13 +0000000000008b1e l .text 0000000000000000 .LVL14 +0000000000008ae4 l .text 0000000000000000 .LVL4 +0000000000008ae6 l .text 0000000000000000 .LVL5 +0000000000008afe l .text 0000000000000000 .LVL8 +000000000002387d l .debug_info 0000000000000000 .Ldebug_info0 +0000000000008a9e l .text 0000000000000000 .L0 +0000000000008b2c l .text 0000000000000000 .L0 +0000000000008bc4 l .text 0000000000000000 .L0 +0000000000008a9e l .text 0000000000000000 .L0 +0000000000008a9e l .text 0000000000000000 .L0 +0000000000008a9e l .text 0000000000000000 .L0 +0000000000008a9e l .text 0000000000000000 .L0 +0000000000008a9e l .text 0000000000000000 .L0 +0000000000008a9e l .text 0000000000000000 .L0 +0000000000008a9e l .text 0000000000000000 .L0 +0000000000008aa8 l .text 0000000000000000 .L0 +0000000000008aae l .text 0000000000000000 .L0 +0000000000008aba l .text 0000000000000000 .L0 +0000000000008ad6 l .text 0000000000000000 .L0 +0000000000008ad6 l .text 0000000000000000 .L0 +0000000000008ad6 l .text 0000000000000000 .L0 +0000000000008ada l .text 0000000000000000 .L0 +0000000000008adc l .text 0000000000000000 .L0 +0000000000008ade l .text 0000000000000000 .L0 +0000000000008ae0 l .text 0000000000000000 .L0 +0000000000008ae4 l .text 0000000000000000 .L0 +0000000000008ae4 l .text 0000000000000000 .L0 +0000000000008ae6 l .text 0000000000000000 .L0 +0000000000008ae6 l .text 0000000000000000 .L0 +0000000000008aea l .text 0000000000000000 .L0 +0000000000008aea l .text 0000000000000000 .L0 +0000000000008aea l .text 0000000000000000 .L0 +0000000000008aea l .text 0000000000000000 .L0 +0000000000008aea l .text 0000000000000000 .L0 +0000000000008aee l .text 0000000000000000 .L0 +0000000000008aee l .text 0000000000000000 .L0 +0000000000008af0 l .text 0000000000000000 .L0 +0000000000008af0 l .text 0000000000000000 .L0 +0000000000008af0 l .text 0000000000000000 .L0 +0000000000008af6 l .text 0000000000000000 .L0 +0000000000008af6 l .text 0000000000000000 .L0 +0000000000008af8 l .text 0000000000000000 .L0 +0000000000008afc l .text 0000000000000000 .L0 +0000000000008afe l .text 0000000000000000 .L0 +0000000000008b00 l .text 0000000000000000 .L0 +0000000000008b04 l .text 0000000000000000 .L0 +0000000000008b06 l .text 0000000000000000 .L0 +0000000000008b0a l .text 0000000000000000 .L0 +0000000000008b0c l .text 0000000000000000 .L0 +0000000000008b0c l .text 0000000000000000 .L0 +0000000000008b0c l .text 0000000000000000 .L0 +0000000000008b0c l .text 0000000000000000 .L0 +0000000000008b0c l .text 0000000000000000 .L0 +0000000000008b0c l .text 0000000000000000 .L0 +0000000000008b0c l .text 0000000000000000 .L0 +0000000000008b0c l .text 0000000000000000 .L0 +0000000000008b0e l .text 0000000000000000 .L0 +0000000000008b10 l .text 0000000000000000 .L0 +0000000000008b10 l .text 0000000000000000 .L0 +0000000000008b18 l .text 0000000000000000 .L0 +0000000000008b18 l .text 0000000000000000 .L0 +0000000000008b1e l .text 0000000000000000 .L0 +0000000000008b20 l .text 0000000000000000 .L0 +0000000000008b24 l .text 0000000000000000 .L0 +0000000000008b2c l .text 0000000000000000 .L0 +0000000000008b2c l .text 0000000000000000 .L0 +0000000000008b2c l .text 0000000000000000 .L0 +0000000000008b2c l .text 0000000000000000 .L0 +0000000000008b2c l .text 0000000000000000 .L0 +0000000000008b2c l .text 0000000000000000 .L0 +0000000000008b2c l .text 0000000000000000 .L0 +0000000000008b2c l .text 0000000000000000 .L0 +0000000000008b2c l .text 0000000000000000 .L0 +0000000000008b30 l .text 0000000000000000 .L0 +0000000000008b34 l .text 0000000000000000 .L0 +0000000000008b36 l .text 0000000000000000 .L0 +0000000000008b38 l .text 0000000000000000 .L0 +0000000000008b3e l .text 0000000000000000 .L0 +0000000000008b42 l .text 0000000000000000 .L0 +0000000000008b42 l .text 0000000000000000 .L0 +0000000000008b4a l .text 0000000000000000 .L0 +0000000000008b66 l .text 0000000000000000 .L0 +0000000000008b66 l .text 0000000000000000 .L0 +0000000000008b66 l .text 0000000000000000 .L0 +0000000000008b66 l .text 0000000000000000 .L0 +0000000000008b6a l .text 0000000000000000 .L0 +0000000000008b6a l .text 0000000000000000 .L0 +0000000000008b7a l .text 0000000000000000 .L0 +0000000000008b7e l .text 0000000000000000 .L0 +0000000000008b7e l .text 0000000000000000 .L0 +0000000000008b7e l .text 0000000000000000 .L0 +0000000000008b7e l .text 0000000000000000 .L0 +0000000000008b7e l .text 0000000000000000 .L0 +0000000000008b7e l .text 0000000000000000 .L0 +0000000000008b8a l .text 0000000000000000 .L0 +0000000000008b8a l .text 0000000000000000 .L0 +0000000000008b8e l .text 0000000000000000 .L0 +0000000000008b90 l .text 0000000000000000 .L0 +0000000000008b90 l .text 0000000000000000 .L0 +0000000000008b92 l .text 0000000000000000 .L0 +0000000000008b92 l .text 0000000000000000 .L0 +0000000000008b92 l .text 0000000000000000 .L0 +0000000000008b9e l .text 0000000000000000 .L0 +0000000000008ba8 l .text 0000000000000000 .L0 +0000000000008bb6 l .text 0000000000000000 .L0 +0000000000008bb6 l .text 0000000000000000 .L0 +0000000000008bc4 l .text 0000000000000000 .L0 +0000000000008bc4 l .text 0000000000000000 .L0 +0000000000008bcc l .text 0000000000000000 .L0 +0000000000002c88 l .debug_frame 0000000000000000 .L0 +0000000000008a9e l .text 0000000000000000 .L0 +0000000000008b2c l .text 0000000000000000 .L0 +0000000000008b2c l .text 0000000000000000 .L0 +0000000000008bc4 l .text 0000000000000000 .L0 +0000000000008bc4 l .text 0000000000000000 .L0 +0000000000008bcc l .text 0000000000000000 .L0 +0000000000008b1a l .text 0000000000000000 .L0 +0000000000008aa8 l .text 0000000000000000 .L0 +0000000000008bb8 l .text 0000000000000000 .L0 +0000000000008b3e l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 mm_lock.c +0000000000008bf0 l .text 0000000000000000 .L2 +000000000000cd70 l .rodata 0000000000000000 .LC0 +0000000000008c0a l .text 0000000000000000 .L0 +000000000000cd90 l .rodata 0000000000000000 .LC1 +0000000000008c16 l .text 0000000000000000 .L0 +0000000000008c26 l .text 0000000000000000 .L4 +0000000000009066 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000017454 l .debug_str 0000000000000000 .LASF59 +0000000000017504 l .debug_str 0000000000000000 .LASF60 +000000000001765e l .debug_str 0000000000000000 .LASF61 +0000000000002820 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000017f8a l .debug_line 0000000000000000 .Ldebug_line0 +00000000000175af l .debug_str 0000000000000000 .LASF0 +00000000000173f0 l .debug_str 0000000000000000 .LASF2 +000000000001758f l .debug_str 0000000000000000 .LASF1 +000000000001759d l .debug_str 0000000000000000 .LASF3 +000000000001744a l .debug_str 0000000000000000 .LASF4 +0000000000017611 l .debug_str 0000000000000000 .LASF5 +00000000000176e1 l .debug_str 0000000000000000 .LASF6 +0000000000017631 l .debug_str 0000000000000000 .LASF7 +0000000000017695 l .debug_str 0000000000000000 .LASF8 +00000000000176ce l .debug_str 0000000000000000 .LASF9 +00000000000175c1 l .debug_str 0000000000000000 .LASF10 +000000000001751b l .debug_str 0000000000000000 .LASF11 +000000000001763a l .debug_str 0000000000000000 .LASF12 +000000000001743a l .debug_str 0000000000000000 .LASF13 +00000000000176a7 l .debug_str 0000000000000000 .LASF14 +0000000000017624 l .debug_str 0000000000000000 .LASF15 +000000000001753e l .debug_str 0000000000000000 .LASF16 +000000000001757e l .debug_str 0000000000000000 .LASF17 +0000000000017648 l .debug_str 0000000000000000 .LASF21 +0000000000017573 l .debug_str 0000000000000000 .LASF18 +00000000000173ea l .debug_str 0000000000000000 .LASF19 +0000000000017653 l .debug_str 0000000000000000 .LASF20 +00000000000176d6 l .debug_str 0000000000000000 .LASF22 +0000000000017516 l .debug_str 0000000000000000 .LASF23 +000000000001758a l .debug_str 0000000000000000 .LASF24 +00000000000176f3 l .debug_str 0000000000000000 .LASF25 +0000000000017523 l .debug_str 0000000000000000 .LASF26 +00000000000175a6 l .debug_str 0000000000000000 .LASF27 +00000000000175bb l .debug_str 0000000000000000 .LASF28 +0000000000017441 l .debug_str 0000000000000000 .LASF29 +0000000000017529 l .debug_str 0000000000000000 .LASF30 +0000000000017642 l .debug_str 0000000000000000 .LASF31 +0000000000017681 l .debug_str 0000000000000000 .LASF32 +0000000000017679 l .debug_str 0000000000000000 .LASF33 +0000000000017427 l .debug_str 0000000000000000 .LASF34 +00000000000176fe l .debug_str 0000000000000000 .LASF35 +000000000001754c l .debug_str 0000000000000000 .LASF36 +00000000000173ce l .debug_str 0000000000000000 .LASF37 +0000000000017568 l .debug_str 0000000000000000 .LASF38 +00000000000175f8 l .debug_str 0000000000000000 .LASF39 +00000000000176c1 l .debug_str 0000000000000000 .LASF40 +000000000001768b l .debug_str 0000000000000000 .LASF41 +0000000000017629 l .debug_str 0000000000000000 .LASF42 +0000000000017557 l .debug_str 0000000000000000 .LASF43 +00000000000175f0 l .debug_str 0000000000000000 .LASF44 +0000000000017410 l .debug_str 0000000000000000 .LASF45 +0000000000017579 l .debug_str 0000000000000000 .LASF46 +000000000001752f l .debug_str 0000000000000000 .LASF47 +00000000000176ee l .debug_str 0000000000000000 .LASF48 +00000000000173f9 l .debug_str 0000000000000000 .LASF49 +00000000000173db l .debug_str 0000000000000000 .LASF50 +000000000001755e l .debug_str 0000000000000000 .LASF51 +00000000000176bc l .debug_str 0000000000000000 .LASF52 +0000000000017402 l .debug_str 0000000000000000 .LASF53 +00000000000175e1 l .debug_str 0000000000000000 .LASF54 +0000000000017534 l .debug_str 0000000000000000 .LASF62 +0000000000008bfa l .text 0000000000000000 .LFB8 +0000000000008c2c l .text 0000000000000000 .LFE8 +00000000000186c7 l .debug_loc 0000000000000000 .LLST1 +0000000000008c06 l .text 0000000000000000 .LVL6 +0000000000008c26 l .text 0000000000000000 .LVL7 +0000000000008bcc l .text 0000000000000000 .LFB7 +0000000000008bfa l .text 0000000000000000 .LFE7 +0000000000018700 l .debug_loc 0000000000000000 .LLST0 +0000000000008bdc l .text 0000000000000000 .LVL1 +0000000000008bf0 l .text 0000000000000000 .LVL3 +00000000000176ad l .debug_str 0000000000000000 .LASF55 +00000000000175d8 l .debug_str 0000000000000000 .LASF56 +0000000000017433 l .debug_str 0000000000000000 .LASF57 +0000000000017604 l .debug_str 0000000000000000 .LASF58 +0000000000008bfa l .text 0000000000000000 .LVL5 +0000000000008bcc l .text 0000000000000000 .LVL0 +0000000000008be4 l .text 0000000000000000 .LVL2 +0000000000008bf4 l .text 0000000000000000 .LVL4 +0000000000023eaf l .debug_info 0000000000000000 .Ldebug_info0 +0000000000008bcc l .text 0000000000000000 .L0 +0000000000008bfa l .text 0000000000000000 .L0 +0000000000008bcc l .text 0000000000000000 .L0 +0000000000008bcc l .text 0000000000000000 .L0 +0000000000008bd2 l .text 0000000000000000 .L0 +0000000000008bd4 l .text 0000000000000000 .L0 +0000000000008bdc l .text 0000000000000000 .L0 +0000000000008be0 l .text 0000000000000000 .L0 +0000000000008be0 l .text 0000000000000000 .L0 +0000000000008be2 l .text 0000000000000000 .L0 +0000000000008be8 l .text 0000000000000000 .L0 +0000000000008bf0 l .text 0000000000000000 .L0 +0000000000008bfa l .text 0000000000000000 .L0 +0000000000008bfa l .text 0000000000000000 .L0 +0000000000008bfa l .text 0000000000000000 .L0 +0000000000008bfa l .text 0000000000000000 .L0 +0000000000008bfe l .text 0000000000000000 .L0 +0000000000008c0a l .text 0000000000000000 .L0 +0000000000008c26 l .text 0000000000000000 .L0 +0000000000008c2c l .text 0000000000000000 .L0 +0000000000002d18 l .debug_frame 0000000000000000 .L0 +0000000000008bcc l .text 0000000000000000 .L0 +0000000000008bfa l .text 0000000000000000 .L0 +0000000000008bfa l .text 0000000000000000 .L0 +0000000000008c2c l .text 0000000000000000 .L0 +0000000000008be4 l .text 0000000000000000 .L0 +0000000000008bd2 l .text 0000000000000000 .L0 +0000000000008bf0 l .text 0000000000000000 .L0 +0000000000008be8 l .text 0000000000000000 .L0 +0000000000008c28 l .text 0000000000000000 .L0 +0000000000008bfe l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 mm_addfreechunk.c +000000000000cda8 l .rodata 0000000000000000 .LC0 +0000000000008c42 l .text 0000000000000000 .L0 +0000000000011390 l .rodata 0000000000000000 .LC1 +0000000000008c4e l .text 0000000000000000 .L0 +00000000000113b0 l .rodata 0000000000000000 .LC2 +0000000000008c62 l .text 0000000000000000 .L0 +0000000000008c5e l .text 0000000000000000 .L2 +0000000000008c70 l .text 0000000000000000 .L3 +0000000000008c4e l .text 0000000000000000 .L18 +0000000000008c9a l .text 0000000000000000 .L5 +0000000000008cb0 l .text 0000000000000000 .L6 +0000000000008ca4 l .text 0000000000000000 .L1 +0000000000008c8e l .text 0000000000000000 .L4 +00000000000091fc l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000017788 l .debug_str 0000000000000000 .LASF60 +0000000000017866 l .debug_str 0000000000000000 .LASF61 +00000000000179a6 l .debug_str 0000000000000000 .LASF62 +0000000000002850 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +00000000000181bb l .debug_line 0000000000000000 .Ldebug_line0 +00000000000178fe l .debug_str 0000000000000000 .LASF0 +000000000001772b l .debug_str 0000000000000000 .LASF2 +00000000000178d9 l .debug_str 0000000000000000 .LASF1 +00000000000178e7 l .debug_str 0000000000000000 .LASF3 +000000000001776e l .debug_str 0000000000000000 .LASF4 +0000000000017954 l .debug_str 0000000000000000 .LASF5 +0000000000017a26 l .debug_str 0000000000000000 .LASF6 +0000000000017974 l .debug_str 0000000000000000 .LASF7 +00000000000179dd l .debug_str 0000000000000000 .LASF8 +0000000000017a0e l .debug_str 0000000000000000 .LASF9 +0000000000017910 l .debug_str 0000000000000000 .LASF10 +000000000001783d l .debug_str 0000000000000000 .LASF11 +000000000001797d l .debug_str 0000000000000000 .LASF12 +0000000000017778 l .debug_str 0000000000000000 .LASF13 +00000000000179ef l .debug_str 0000000000000000 .LASF14 +0000000000017967 l .debug_str 0000000000000000 .LASF15 +000000000001798b l .debug_str 0000000000000000 .LASF19 +00000000000178b8 l .debug_str 0000000000000000 .LASF16 +0000000000017725 l .debug_str 0000000000000000 .LASF17 +0000000000017996 l .debug_str 0000000000000000 .LASF18 +0000000000017a16 l .debug_str 0000000000000000 .LASF20 +0000000000017838 l .debug_str 0000000000000000 .LASF21 +00000000000178f0 l .debug_str 0000000000000000 .LASF22 +0000000000017a38 l .debug_str 0000000000000000 .LASF23 +0000000000017880 l .debug_str 0000000000000000 .LASF24 +00000000000178c3 l .debug_str 0000000000000000 .LASF25 +00000000000179c9 l .debug_str 0000000000000000 .LASF26 +00000000000179c1 l .debug_str 0000000000000000 .LASF27 +0000000000017762 l .debug_str 0000000000000000 .LASF28 +0000000000017a43 l .debug_str 0000000000000000 .LASF29 +000000000001788e l .debug_str 0000000000000000 .LASF30 +0000000000017709 l .debug_str 0000000000000000 .LASF31 +00000000000178a8 l .debug_str 0000000000000000 .LASF32 +0000000000017948 l .debug_str 0000000000000000 .LASF33 +0000000000017a01 l .debug_str 0000000000000000 .LASF34 +00000000000179d3 l .debug_str 0000000000000000 .LASF35 +0000000000017855 l .debug_str 0000000000000000 .LASF36 +00000000000178f5 l .debug_str 0000000000000000 .LASF37 +000000000001790a l .debug_str 0000000000000000 .LASF38 +000000000001777f l .debug_str 0000000000000000 .LASF39 +000000000001785b l .debug_str 0000000000000000 .LASF40 +0000000000017985 l .debug_str 0000000000000000 .LASF41 +000000000001796c l .debug_str 0000000000000000 .LASF42 +0000000000017899 l .debug_str 0000000000000000 .LASF43 +00000000000178a0 l .debug_str 0000000000000000 .LASF44 +000000000001774b l .debug_str 0000000000000000 .LASF45 +00000000000178be l .debug_str 0000000000000000 .LASF46 +0000000000017861 l .debug_str 0000000000000000 .LASF47 +0000000000017a33 l .debug_str 0000000000000000 .LASF48 +0000000000017734 l .debug_str 0000000000000000 .LASF49 +0000000000017716 l .debug_str 0000000000000000 .LASF50 +00000000000178cf l .debug_str 0000000000000000 .LASF51 +00000000000179a1 l .debug_str 0000000000000000 .LASF52 +000000000001773d l .debug_str 0000000000000000 .LASF53 +0000000000017930 l .debug_str 0000000000000000 .LASF54 +0000000000017845 l .debug_str 0000000000000000 .LASF63 +0000000000008c2c l .text 0000000000000000 .LFB7 +0000000000008cb6 l .text 0000000000000000 .LFE7 +0000000000018788 l .debug_loc 0000000000000000 .LLST0 +00000000000178b3 l .debug_str 0000000000000000 .LASF55 +00000000000187fd l .debug_loc 0000000000000000 .LLST1 +00000000000188ae l .debug_loc 0000000000000000 .LLST2 +0000000000017a21 l .debug_str 0000000000000000 .LASF56 +00000000000188f8 l .debug_loc 0000000000000000 .LLST3 +000000000001793f l .debug_str 0000000000000000 .LASF57 +0000000000018941 l .debug_loc 0000000000000000 .LLST4 +0000000000018977 l .debug_loc 0000000000000000 .LLST5 +0000000000008c5e l .text 0000000000000000 .LVL4 +0000000000008c7e l .text 0000000000000000 .LVL8 +0000000000017927 l .debug_str 0000000000000000 .LASF58 +00000000000179f5 l .debug_str 0000000000000000 .LASF59 +0000000000008c2c l .text 0000000000000000 .LVL0 +0000000000008c56 l .text 0000000000000000 .LVL3 +0000000000008c74 l .text 0000000000000000 .LVL7 +0000000000008c8c l .text 0000000000000000 .LVL11 +0000000000008c4e l .text 0000000000000000 .LVL2 +0000000000008c6e l .text 0000000000000000 .LVL5 +0000000000008c70 l .text 0000000000000000 .LVL6 +0000000000008ca8 l .text 0000000000000000 .LVL13 +0000000000008cb0 l .text 0000000000000000 .LVL15 +0000000000008c8e l .text 0000000000000000 .LVL12 +0000000000008cb4 l .text 0000000000000000 .LVL16 +0000000000008c8a l .text 0000000000000000 .LVL10 +0000000000008c3e l .text 0000000000000000 .LVL1 +0000000000008cac l .text 0000000000000000 .LVL14 +0000000000008c88 l .text 0000000000000000 .LVL9 +0000000000024321 l .debug_info 0000000000000000 .Ldebug_info0 +0000000000008c2c l .text 0000000000000000 .L0 +0000000000008c2c l .text 0000000000000000 .L0 +0000000000008c2c l .text 0000000000000000 .L0 +0000000000008c2c l .text 0000000000000000 .L0 +0000000000008c2c l .text 0000000000000000 .L0 +0000000000008c36 l .text 0000000000000000 .L0 +0000000000008c38 l .text 0000000000000000 .L0 +0000000000008c3a l .text 0000000000000000 .L0 +0000000000008c3e l .text 0000000000000000 .L0 +0000000000008c3e l .text 0000000000000000 .L0 +0000000000008c3e l .text 0000000000000000 .L0 +0000000000008c42 l .text 0000000000000000 .L0 +0000000000008c4e l .text 0000000000000000 .L0 +0000000000008c5e l .text 0000000000000000 .L0 +0000000000008c5e l .text 0000000000000000 .L0 +0000000000008c5e l .text 0000000000000000 .L0 +0000000000008c62 l .text 0000000000000000 .L0 +0000000000008c72 l .text 0000000000000000 .L0 +0000000000008c76 l .text 0000000000000000 .L0 +0000000000008c76 l .text 0000000000000000 .L0 +0000000000008c76 l .text 0000000000000000 .L0 +0000000000008c7e l .text 0000000000000000 .L0 +0000000000008c7e l .text 0000000000000000 .L0 +0000000000008c86 l .text 0000000000000000 .L0 +0000000000008c88 l .text 0000000000000000 .L0 +0000000000008c8a l .text 0000000000000000 .L0 +0000000000008c8e l .text 0000000000000000 .L0 +0000000000008c8e l .text 0000000000000000 .L0 +0000000000008c90 l .text 0000000000000000 .L0 +0000000000008c92 l .text 0000000000000000 .L0 +0000000000008c94 l .text 0000000000000000 .L0 +0000000000008c96 l .text 0000000000000000 .L0 +0000000000008c9a l .text 0000000000000000 .L0 +0000000000008c9a l .text 0000000000000000 .L0 +0000000000008c9c l .text 0000000000000000 .L0 +0000000000008c9c l .text 0000000000000000 .L0 +0000000000008c9e l .text 0000000000000000 .L0 +0000000000008c9e l .text 0000000000000000 .L0 +0000000000008ca0 l .text 0000000000000000 .L0 +0000000000008ca0 l .text 0000000000000000 .L0 +0000000000008ca2 l .text 0000000000000000 .L0 +0000000000008ca2 l .text 0000000000000000 .L0 +0000000000008ca4 l .text 0000000000000000 .L0 +0000000000008cb0 l .text 0000000000000000 .L0 +0000000000008cb0 l .text 0000000000000000 .L0 +0000000000008cb0 l .text 0000000000000000 .L0 +0000000000008cb6 l .text 0000000000000000 .L0 +0000000000002d88 l .debug_frame 0000000000000000 .L0 +0000000000008c2c l .text 0000000000000000 .L0 +0000000000008cb6 l .text 0000000000000000 .L0 +0000000000008ca6 l .text 0000000000000000 .L0 +0000000000008c36 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 mm_size2ndx.c +00000000000113d0 l .rodata 0000000000000000 .LC0 +0000000000008cc0 l .text 0000000000000000 .L0 +00000000000159b8 l .rodata 0000000000000000 .LC1 +0000000000008ccc l .text 0000000000000000 .L0 +0000000000008cdc l .text 0000000000000000 .L2 +0000000000008cf6 l .text 0000000000000000 .L3 +000000000000937d l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000017b48 l .debug_str 0000000000000000 .LASF16 +0000000000017ae1 l .debug_str 0000000000000000 .LASF17 +0000000000017ab8 l .debug_str 0000000000000000 .LASF18 +0000000000002870 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +00000000000184f6 l .debug_line 0000000000000000 .Ldebug_line0 +0000000000017b10 l .debug_str 0000000000000000 .LASF0 +0000000000017aaa l .debug_str 0000000000000000 .LASF1 +0000000000017b3e l .debug_str 0000000000000000 .LASF2 +0000000000017afd l .debug_str 0000000000000000 .LASF3 +0000000000017a5c l .debug_str 0000000000000000 .LASF4 +0000000000017ad8 l .debug_str 0000000000000000 .LASF5 +0000000000017a70 l .debug_str 0000000000000000 .LASF6 +0000000000017b36 l .debug_str 0000000000000000 .LASF8 +0000000000017a82 l .debug_str 0000000000000000 .LASF7 +0000000000017a69 l .debug_str 0000000000000000 .LASF9 +0000000000017ad3 l .debug_str 0000000000000000 .LASF10 +0000000000017a4e l .debug_str 0000000000000000 .LASF11 +0000000000017b2a l .debug_str 0000000000000000 .LASF12 +0000000000017af7 l .debug_str 0000000000000000 .LASF13 +0000000000017a99 l .debug_str 0000000000000000 .LASF19 +0000000000008cb6 l .text 0000000000000000 .LFB7 +0000000000008cfc l .text 0000000000000000 .LFE7 +0000000000017b1c l .debug_str 0000000000000000 .LASF20 +000000000001899a l .debug_loc 0000000000000000 .LLST0 +0000000000008cdc l .text 0000000000000000 .LVL2 +0000000000008cf4 l .text 0000000000000000 .LVL6 +0000000000017b21 l .debug_str 0000000000000000 .LASF14 +0000000000017aa5 l .debug_str 0000000000000000 .LASF15 +0000000000008cb6 l .text 0000000000000000 .LVL0 +0000000000008cd4 l .text 0000000000000000 .LVL1 +0000000000008ce4 l .text 0000000000000000 .LVL3 +0000000000008ce8 l .text 0000000000000000 .LVL4 +0000000000008cec l .text 0000000000000000 .LVL5 +0000000000008cf6 l .text 0000000000000000 .LVL7 +0000000000024762 l .debug_info 0000000000000000 .Ldebug_info0 +0000000000008cb6 l .text 0000000000000000 .L0 +0000000000008cb6 l .text 0000000000000000 .L0 +0000000000008cb6 l .text 0000000000000000 .L0 +0000000000008cb6 l .text 0000000000000000 .L0 +0000000000008cba l .text 0000000000000000 .L0 +0000000000008cc0 l .text 0000000000000000 .L0 +0000000000008cde l .text 0000000000000000 .L0 +0000000000008cde l .text 0000000000000000 .L0 +0000000000008cde l .text 0000000000000000 .L0 +0000000000008ce2 l .text 0000000000000000 .L0 +0000000000008ce4 l .text 0000000000000000 .L0 +0000000000008ce8 l .text 0000000000000000 .L0 +0000000000008ce8 l .text 0000000000000000 .L0 +0000000000008ce8 l .text 0000000000000000 .L0 +0000000000008cf4 l .text 0000000000000000 .L0 +0000000000008cf6 l .text 0000000000000000 .L0 +0000000000008cfc l .text 0000000000000000 .L0 +0000000000002dd0 l .debug_frame 0000000000000000 .L0 +0000000000008cb6 l .text 0000000000000000 .L0 +0000000000008cfc l .text 0000000000000000 .L0 +0000000000008cf8 l .text 0000000000000000 .L0 +0000000000008cba l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 mm_shrinkchunk.c +00000000000159d0 l .rodata 0000000000000000 .LC0 +0000000000008d08 l .text 0000000000000000 .L0 +0000000000015a00 l .rodata 0000000000000000 .LC1 +0000000000008d14 l .text 0000000000000000 .L0 +0000000000015a20 l .rodata 0000000000000000 .LC2 +0000000000008d46 l .text 0000000000000000 .L0 +0000000000015a48 l .rodata 0000000000000000 .LC3 +0000000000008d5c l .text 0000000000000000 .L0 +0000000000008d24 l .text 0000000000000000 .L2 +0000000000008d9a l .text 0000000000000000 .L3 +0000000000008d54 l .text 0000000000000000 .L4 +0000000000008d14 l .text 0000000000000000 .L13 +0000000000008d6a l .text 0000000000000000 .L5 +0000000000008d76 l .text 0000000000000000 .L6 +0000000000008dc0 l .text 0000000000000000 .L1 +0000000000008d8e l .text 0000000000000000 .L12 +000000000000941c l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000017c81 l .debug_str 0000000000000000 .LASF62 +0000000000017d89 l .debug_str 0000000000000000 .LASF63 +0000000000017ea1 l .debug_str 0000000000000000 .LASF64 +0000000000002890 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000018665 l .debug_line 0000000000000000 .Ldebug_line0 +0000000000017dfe l .debug_str 0000000000000000 .LASF0 +0000000000017c1a l .debug_str 0000000000000000 .LASF2 +0000000000017dd1 l .debug_str 0000000000000000 .LASF1 +0000000000017ddf l .debug_str 0000000000000000 .LASF3 +0000000000017c5d l .debug_str 0000000000000000 .LASF4 +0000000000017e54 l .debug_str 0000000000000000 .LASF5 +0000000000017f2d l .debug_str 0000000000000000 .LASF6 +0000000000017e74 l .debug_str 0000000000000000 .LASF7 +0000000000017ed8 l .debug_str 0000000000000000 .LASF8 +0000000000017f11 l .debug_str 0000000000000000 .LASF9 +0000000000017e10 l .debug_str 0000000000000000 .LASF10 +0000000000017d36 l .debug_str 0000000000000000 .LASF11 +0000000000017e7d l .debug_str 0000000000000000 .LASF12 +0000000000017c67 l .debug_str 0000000000000000 .LASF13 +0000000000017ef9 l .debug_str 0000000000000000 .LASF14 +0000000000017e67 l .debug_str 0000000000000000 .LASF15 +0000000000017e8b l .debug_str 0000000000000000 .LASF19 +0000000000017db2 l .debug_str 0000000000000000 .LASF16 +0000000000017c14 l .debug_str 0000000000000000 .LASF17 +0000000000017e96 l .debug_str 0000000000000000 .LASF18 +0000000000017f19 l .debug_str 0000000000000000 .LASF20 +0000000000017d31 l .debug_str 0000000000000000 .LASF21 +0000000000017df0 l .debug_str 0000000000000000 .LASF22 +0000000000017f3f l .debug_str 0000000000000000 .LASF23 +0000000000017d5f l .debug_str 0000000000000000 .LASF24 +0000000000017dbd l .debug_str 0000000000000000 .LASF25 +0000000000017ec4 l .debug_str 0000000000000000 .LASF26 +0000000000017ebc l .debug_str 0000000000000000 .LASF27 +0000000000017c51 l .debug_str 0000000000000000 .LASF28 +0000000000017f4a l .debug_str 0000000000000000 .LASF29 +0000000000017d6d l .debug_str 0000000000000000 .LASF30 +0000000000017bf8 l .debug_str 0000000000000000 .LASF31 +0000000000017da2 l .debug_str 0000000000000000 .LASF32 +0000000000017e48 l .debug_str 0000000000000000 .LASF33 +0000000000017f04 l .debug_str 0000000000000000 .LASF34 +0000000000017ece l .debug_str 0000000000000000 .LASF35 +0000000000017d4e l .debug_str 0000000000000000 .LASF36 +0000000000017df5 l .debug_str 0000000000000000 .LASF37 +0000000000017e0a l .debug_str 0000000000000000 .LASF38 +0000000000017c6e l .debug_str 0000000000000000 .LASF39 +0000000000017d54 l .debug_str 0000000000000000 .LASF40 +0000000000017e85 l .debug_str 0000000000000000 .LASF41 +0000000000017e6c l .debug_str 0000000000000000 .LASF42 +0000000000017d78 l .debug_str 0000000000000000 .LASF43 +0000000000017dc9 l .debug_str 0000000000000000 .LASF44 +0000000000017c3a l .debug_str 0000000000000000 .LASF45 +0000000000017db8 l .debug_str 0000000000000000 .LASF46 +0000000000017d5a l .debug_str 0000000000000000 .LASF47 +0000000000017f3a l .debug_str 0000000000000000 .LASF48 +0000000000017c23 l .debug_str 0000000000000000 .LASF49 +0000000000017c05 l .debug_str 0000000000000000 .LASF50 +0000000000017d7f l .debug_str 0000000000000000 .LASF51 +0000000000017eff l .debug_str 0000000000000000 .LASF52 +0000000000017c2c l .debug_str 0000000000000000 .LASF53 +0000000000017e30 l .debug_str 0000000000000000 .LASF54 +0000000000017eea l .debug_str 0000000000000000 .LASF65 +0000000000008cfc l .text 0000000000000000 .LFB7 +0000000000008dc6 l .text 0000000000000000 .LFE7 +0000000000018a3b l .debug_loc 0000000000000000 .LLST0 +0000000000017dad l .debug_str 0000000000000000 .LASF55 +0000000000018ad6 l .debug_loc 0000000000000000 .LLST1 +0000000000018b5e l .debug_loc 0000000000000000 .LLST2 +0000000000018c4e l .debug_loc 0000000000000000 .LLST3 +0000000000017e3f l .debug_str 0000000000000000 .LASF56 +0000000000018c9c l .debug_loc 0000000000000000 .LLST4 +0000000000017c77 l .debug_str 0000000000000000 .LASF57 +0000000000018d5c l .debug_loc 0000000000000000 .LLST5 +0000000000017de8 l .debug_str 0000000000000000 .LASF58 +0000000000018d7f l .debug_loc 0000000000000000 .LLST6 +0000000000017f24 l .debug_str 0000000000000000 .LASF59 +0000000000018da2 l .debug_loc 0000000000000000 .LLST7 +0000000000008d24 l .text 0000000000000000 .LVL4 +0000000000018dc5 l .debug_loc 0000000000000000 .LLST8 +0000000000008d9a l .text 0000000000000000 .LVL20 +0000000000017e27 l .debug_str 0000000000000000 .LASF60 +0000000000017d3e l .debug_str 0000000000000000 .LASF61 +0000000000008cfc l .text 0000000000000000 .LVL0 +0000000000008d14 l .text 0000000000000000 .LVL3 +0000000000008d40 l .text 0000000000000000 .LVL9 +0000000000008d8e l .text 0000000000000000 .LVL19 +0000000000008d2e l .text 0000000000000000 .LVL7 +0000000000008d10 l .text 0000000000000000 .LVL2 +0000000000008d4e l .text 0000000000000000 .LVL10 +0000000000008d54 l .text 0000000000000000 .LVL11 +0000000000008d64 l .text 0000000000000000 .LVL12 +0000000000008d6a l .text 0000000000000000 .LVL13 +0000000000008d86 l .text 0000000000000000 .LVL18 +0000000000008db0 l .text 0000000000000000 .LVL23 +0000000000008dc0 l .text 0000000000000000 .LVL24 +0000000000008d2a l .text 0000000000000000 .LVL6 +0000000000008d74 l .text 0000000000000000 .LVL15 +0000000000008d78 l .text 0000000000000000 .LVL16 +0000000000008d06 l .text 0000000000000000 .LVL1 +0000000000008d26 l .text 0000000000000000 .LVL5 +0000000000008d70 l .text 0000000000000000 .LVL14 +0000000000008daa l .text 0000000000000000 .LVL22 +0000000000008d7c l .text 0000000000000000 .LVL17 +0000000000008d3c l .text 0000000000000000 .LVL8 +0000000000008da6 l .text 0000000000000000 .LVL21 +0000000000024893 l .debug_info 0000000000000000 .Ldebug_info0 +0000000000008d14 l .text 0000000000000000 .LBB2 +0000000000008d26 l .text 0000000000000000 .LBE2 +0000000000008d36 l .text 0000000000000000 .LBB3 +0000000000008d8e l .text 0000000000000000 .LBE3 +0000000000008d8e l .text 0000000000000000 .LBB4 +0000000000008d8e l .text 0000000000000000 .LBE4 +0000000000008d92 l .text 0000000000000000 .LBB5 +0000000000008d9a l .text 0000000000000000 .LBE5 +0000000000008da2 l .text 0000000000000000 .LBB6 +0000000000008dc0 l .text 0000000000000000 .LBE6 +0000000000008cfc l .text 0000000000000000 .L0 +0000000000008cfc l .text 0000000000000000 .L0 +0000000000008cfc l .text 0000000000000000 .L0 +0000000000008cfc l .text 0000000000000000 .L0 +0000000000008d00 l .text 0000000000000000 .L0 +0000000000008d04 l .text 0000000000000000 .L0 +0000000000008d06 l .text 0000000000000000 .L0 +0000000000008d06 l .text 0000000000000000 .L0 +0000000000008d08 l .text 0000000000000000 .L0 +0000000000008d14 l .text 0000000000000000 .L0 +0000000000008d26 l .text 0000000000000000 .L0 +0000000000008d26 l .text 0000000000000000 .L0 +0000000000008d26 l .text 0000000000000000 .L0 +0000000000008d2a l .text 0000000000000000 .L0 +0000000000008d2c l .text 0000000000000000 .L0 +0000000000008d32 l .text 0000000000000000 .L0 +0000000000008d36 l .text 0000000000000000 .L0 +0000000000008d3c l .text 0000000000000000 .L0 +0000000000008d3c l .text 0000000000000000 .L0 +0000000000008d3c l .text 0000000000000000 .L0 +0000000000008d3c l .text 0000000000000000 .L0 +0000000000008d3c l .text 0000000000000000 .L0 +0000000000008d40 l .text 0000000000000000 .L0 +0000000000008d40 l .text 0000000000000000 .L0 +0000000000008d46 l .text 0000000000000000 .L0 +0000000000008d54 l .text 0000000000000000 .L0 +0000000000008d54 l .text 0000000000000000 .L0 +0000000000008d54 l .text 0000000000000000 .L0 +0000000000008d5c l .text 0000000000000000 .L0 +0000000000008d6a l .text 0000000000000000 .L0 +0000000000008d6a l .text 0000000000000000 .L0 +0000000000008d6a l .text 0000000000000000 .L0 +0000000000008d6c l .text 0000000000000000 .L0 +0000000000008d70 l .text 0000000000000000 .L0 +0000000000008d70 l .text 0000000000000000 .L0 +0000000000008d72 l .text 0000000000000000 .L0 +0000000000008d72 l .text 0000000000000000 .L0 +0000000000008d74 l .text 0000000000000000 .L0 +0000000000008d76 l .text 0000000000000000 .L0 +0000000000008d76 l .text 0000000000000000 .L0 +0000000000008d78 l .text 0000000000000000 .L0 +0000000000008d7c l .text 0000000000000000 .L0 +0000000000008d7c l .text 0000000000000000 .L0 +0000000000008d7e l .text 0000000000000000 .L0 +0000000000008d80 l .text 0000000000000000 .L0 +0000000000008d80 l .text 0000000000000000 .L0 +0000000000008d84 l .text 0000000000000000 .L0 +0000000000008d86 l .text 0000000000000000 .L0 +0000000000008d88 l .text 0000000000000000 .L0 +0000000000008d88 l .text 0000000000000000 .L0 +0000000000008d8a l .text 0000000000000000 .L0 +0000000000008d8c l .text 0000000000000000 .L0 +0000000000008d8e l .text 0000000000000000 .L0 +0000000000008d8e l .text 0000000000000000 .L0 +0000000000008d92 l .text 0000000000000000 .L0 +0000000000008d9a l .text 0000000000000000 .L0 +0000000000008d9a l .text 0000000000000000 .L0 +0000000000008d9e l .text 0000000000000000 .L0 +0000000000008da2 l .text 0000000000000000 .L0 +0000000000008da2 l .text 0000000000000000 .L0 +0000000000008da2 l .text 0000000000000000 .L0 +0000000000008da6 l .text 0000000000000000 .L0 +0000000000008da6 l .text 0000000000000000 .L0 +0000000000008da8 l .text 0000000000000000 .L0 +0000000000008daa l .text 0000000000000000 .L0 +0000000000008daa l .text 0000000000000000 .L0 +0000000000008dae l .text 0000000000000000 .L0 +0000000000008db0 l .text 0000000000000000 .L0 +0000000000008db2 l .text 0000000000000000 .L0 +0000000000008db2 l .text 0000000000000000 .L0 +0000000000008dba l .text 0000000000000000 .L0 +0000000000008dba l .text 0000000000000000 .L0 +0000000000008dbc l .text 0000000000000000 .L0 +0000000000008dc0 l .text 0000000000000000 .L0 +0000000000008dc6 l .text 0000000000000000 .L0 +0000000000002e08 l .debug_frame 0000000000000000 .L0 +0000000000008cfc l .text 0000000000000000 .L0 +0000000000008dc6 l .text 0000000000000000 .L0 +0000000000008d90 l .text 0000000000000000 .L0 +0000000000008d00 l .text 0000000000000000 .L0 +0000000000008d9a l .text 0000000000000000 .L0 +0000000000008d92 l .text 0000000000000000 .L0 +0000000000008dc2 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 mm_malloc.c +0000000000015a58 l .rodata 0000000000000000 .LC0 +0000000000008df4 l .text 0000000000000000 .L0 +0000000000015a68 l .rodata 0000000000000000 .LC1 +0000000000008e00 l .text 0000000000000000 .L0 +0000000000015b30 l .rodata 0000000000000000 .LC5 +0000000000008e34 l .text 0000000000000000 .L0 +0000000000015a80 l .rodata 0000000000000000 .LC2 +0000000000008e4a l .text 0000000000000000 .L0 +0000000000015b00 l .rodata 0000000000000000 .LC4 +0000000000008eba l .text 0000000000000000 .L0 +0000000000015aa0 l .rodata 0000000000000000 .LC3 +0000000000008efc l .text 0000000000000000 .L0 +0000000000008dda l .text 0000000000000000 .L2 +0000000000008ece l .text 0000000000000000 .L3 +0000000000008e10 l .text 0000000000000000 .L4 +0000000000008e42 l .text 0000000000000000 .L8 +0000000000008ed0 l .text 0000000000000000 .L1 +0000000000008e00 l .text 0000000000000000 .L25 +0000000000008e58 l .text 0000000000000000 .L6 +0000000000008ede l .text 0000000000000000 .L7 +0000000000008e20 l .text 0000000000000000 .L5 +0000000000008ec8 l .text 0000000000000000 .L12 +0000000000008ea0 l .text 0000000000000000 .L14 +0000000000008e22 l .text 0000000000000000 .L9 +0000000000008e8e l .text 0000000000000000 .L13 +0000000000008ee6 l .text 0000000000000000 .L17 +0000000000008efc l .text 0000000000000000 .L10 +0000000000008e66 l .text 0000000000000000 .L11 +000000000000959d l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000017ff0 l .debug_str 0000000000000000 .LASF67 +0000000000017fbe l .debug_str 0000000000000000 .LASF68 +000000000001822d l .debug_str 0000000000000000 .LASF69 +0000000000002920 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000018a91 l .debug_line 0000000000000000 .Ldebug_line0 +0000000000018176 l .debug_str 0000000000000000 .LASF0 +0000000000017f77 l .debug_str 0000000000000000 .LASF2 +0000000000018156 l .debug_str 0000000000000000 .LASF1 +0000000000018164 l .debug_str 0000000000000000 .LASF3 +0000000000017fad l .debug_str 0000000000000000 .LASF4 +00000000000181d1 l .debug_str 0000000000000000 .LASF5 +00000000000182c6 l .debug_str 0000000000000000 .LASF6 +00000000000181f1 l .debug_str 0000000000000000 .LASF7 +0000000000018264 l .debug_str 0000000000000000 .LASF8 +000000000001829f l .debug_str 0000000000000000 .LASF9 +0000000000018188 l .debug_str 0000000000000000 .LASF10 +00000000000180ab l .debug_str 0000000000000000 .LASF11 +0000000000018204 l .debug_str 0000000000000000 .LASF12 +000000000001827c l .debug_str 0000000000000000 .LASF13 +0000000000017fb7 l .debug_str 0000000000000000 .LASF14 +0000000000018276 l .debug_str 0000000000000000 .LASF15 +00000000000181e4 l .debug_str 0000000000000000 .LASF16 +0000000000018107 l .debug_str 0000000000000000 .LASF17 +0000000000018142 l .debug_str 0000000000000000 .LASF18 +0000000000018212 l .debug_str 0000000000000000 .LASF22 +0000000000018137 l .debug_str 0000000000000000 .LASF19 +0000000000017f71 l .debug_str 0000000000000000 .LASF20 +000000000001821d l .debug_str 0000000000000000 .LASF21 +00000000000182b1 l .debug_str 0000000000000000 .LASF23 +00000000000180a6 l .debug_str 0000000000000000 .LASF24 +00000000000181c0 l .debug_str 0000000000000000 .LASF25 +00000000000182d8 l .debug_str 0000000000000000 .LASF26 +00000000000180da l .debug_str 0000000000000000 .LASF27 +000000000001816d l .debug_str 0000000000000000 .LASF28 +0000000000018182 l .debug_str 0000000000000000 .LASF29 +0000000000017fd8 l .debug_str 0000000000000000 .LASF30 +0000000000017fd2 l .debug_str 0000000000000000 .LASF31 +000000000001820c l .debug_str 0000000000000000 .LASF32 +0000000000018250 l .debug_str 0000000000000000 .LASF33 +0000000000018248 l .debug_str 0000000000000000 .LASF34 +0000000000017fa1 l .debug_str 0000000000000000 .LASF35 +00000000000182e3 l .debug_str 0000000000000000 .LASF36 +0000000000018115 l .debug_str 0000000000000000 .LASF37 +0000000000017f55 l .debug_str 0000000000000000 .LASF38 +0000000000018127 l .debug_str 0000000000000000 .LASF39 +00000000000181c5 l .debug_str 0000000000000000 .LASF40 +0000000000018292 l .debug_str 0000000000000000 .LASF41 +000000000001825a l .debug_str 0000000000000000 .LASF42 +00000000000181e9 l .debug_str 0000000000000000 .LASF43 +0000000000018120 l .debug_str 0000000000000000 .LASF44 +000000000001814e l .debug_str 0000000000000000 .LASF45 +00000000000180c3 l .debug_str 0000000000000000 .LASF46 +000000000001813d l .debug_str 0000000000000000 .LASF47 +00000000000180ee l .debug_str 0000000000000000 .LASF48 +00000000000182d3 l .debug_str 0000000000000000 .LASF49 +0000000000017f80 l .debug_str 0000000000000000 .LASF50 +0000000000017f62 l .debug_str 0000000000000000 .LASF51 +00000000000182bc l .debug_str 0000000000000000 .LASF52 +0000000000018228 l .debug_str 0000000000000000 .LASF53 +0000000000017f89 l .debug_str 0000000000000000 .LASF54 +00000000000181a8 l .debug_str 0000000000000000 .LASF55 +00000000000180fd l .debug_str 0000000000000000 .LASF70 +0000000000008dc6 l .text 0000000000000000 .LFB8 +0000000000008f0a l .text 0000000000000000 .LFE8 +0000000000018de8 l .debug_loc 0000000000000000 .LLST0 +0000000000018e47 l .debug_loc 0000000000000000 .LLST1 +0000000000018132 l .debug_str 0000000000000000 .LASF56 +0000000000018e7d l .debug_loc 0000000000000000 .LLST2 +00000000000181fa l .debug_str 0000000000000000 .LASF57 +0000000000018f01 l .debug_loc 0000000000000000 .LLST3 +00000000000181b7 l .debug_str 0000000000000000 .LASF58 +0000000000018f70 l .debug_loc 0000000000000000 .LLST4 +0000000000018fa6 l .debug_loc 0000000000000000 .LLST5 +000000000001902d l .debug_loc 0000000000000000 .LLST6 +0000000000017f97 l .debug_str 0000000000000000 .LASF59 +0000000000019050 l .debug_loc 0000000000000000 .LLST7 +0000000000019073 l .debug_loc 0000000000000000 .LLST8 +00000000000182a7 l .debug_str 0000000000000000 .LASF60 +00000000000190bc l .debug_loc 0000000000000000 .LLST9 +0000000000008e8e l .text 0000000000000000 .LVL20 +0000000000008df0 l .text 0000000000000000 .LVL5 +0000000000008e10 l .text 0000000000000000 .LVL7 +0000000000008e1a l .text 0000000000000000 .LVL8 +0000000000008e2c l .text 0000000000000000 .LVL12 +0000000000008eb8 l .text 0000000000000000 .LVL23 +0000000000017fe1 l .debug_str 0000000000000000 .LASF71 +00000000000180a0 l .debug_str 0000000000000000 .LASF61 +00000000000180b3 l .debug_str 0000000000000000 .LASF62 +000000000001819f l .debug_str 0000000000000000 .LASF63 +0000000000018286 l .debug_str 0000000000000000 .LASF64 +00000000000180f3 l .debug_str 0000000000000000 .LASF65 +00000000000180e0 l .debug_str 0000000000000000 .LASF66 +0000000000008dc6 l .text 0000000000000000 .LVL0 +0000000000008de8 l .text 0000000000000000 .LVL4 +0000000000008ed8 l .text 0000000000000000 .LVL26 +0000000000008ede l .text 0000000000000000 .LVL27 +0000000000008dda l .text 0000000000000000 .LVL2 +0000000000008e20 l .text 0000000000000000 .LVL10 +0000000000008e22 l .text 0000000000000000 .LVL11 +0000000000008e42 l .text 0000000000000000 .LVL13 +0000000000008e64 l .text 0000000000000000 .LVL15 +0000000000008e66 l .text 0000000000000000 .LVL16 +0000000000008ea4 l .text 0000000000000000 .LVL21 +0000000000008ec8 l .text 0000000000000000 .LVL24 +0000000000008ece l .text 0000000000000000 .LVL25 +0000000000008de2 l .text 0000000000000000 .LVL3 +0000000000008e00 l .text 0000000000000000 .LVL6 +0000000000008e80 l .text 0000000000000000 .LVL19 +0000000000008e5e l .text 0000000000000000 .LVL14 +0000000000008e6a l .text 0000000000000000 .LVL17 +0000000000008eae l .text 0000000000000000 .LVL22 +0000000000008e1c l .text 0000000000000000 .LVL9 +0000000000008e74 l .text 0000000000000000 .LVL18 +0000000000008eea l .text 0000000000000000 .LVL28 +0000000000024d09 l .debug_info 0000000000000000 .Ldebug_info0 +0000000000008e66 l .text 0000000000000000 .LBB5 +0000000000008ea4 l .text 0000000000000000 .LBE5 +0000000000008ea6 l .text 0000000000000000 .LBB6 +0000000000008eae l .text 0000000000000000 .LBE6 +0000000000008ec8 l .text 0000000000000000 .LBB7 +0000000000008ece l .text 0000000000000000 .LBE7 +0000000000008ede l .text 0000000000000000 .LBB8 +0000000000008f0a l .text 0000000000000000 .LBE8 +0000000000008dc6 l .text 0000000000000000 .L0 +0000000000008dc6 l .text 0000000000000000 .L0 +0000000000008dc6 l .text 0000000000000000 .L0 +0000000000008dc6 l .text 0000000000000000 .L0 +0000000000008dc6 l .text 0000000000000000 .L0 +0000000000008dc6 l .text 0000000000000000 .L0 +0000000000008dc6 l .text 0000000000000000 .L0 +0000000000008dc6 l .text 0000000000000000 .L0 +0000000000008dd2 l .text 0000000000000000 .L0 +0000000000008dd4 l .text 0000000000000000 .L0 +0000000000008dd4 l .text 0000000000000000 .L0 +0000000000008dd4 l .text 0000000000000000 .L0 +0000000000008dda l .text 0000000000000000 .L0 +0000000000008dda l .text 0000000000000000 .L0 +0000000000008dde l .text 0000000000000000 .L0 +0000000000008de2 l .text 0000000000000000 .L0 +0000000000008de2 l .text 0000000000000000 .L0 +0000000000008de6 l .text 0000000000000000 .L0 +0000000000008de6 l .text 0000000000000000 .L0 +0000000000008de6 l .text 0000000000000000 .L0 +0000000000008de6 l .text 0000000000000000 .L0 +0000000000008de6 l .text 0000000000000000 .L0 +0000000000008df4 l .text 0000000000000000 .L0 +0000000000008e00 l .text 0000000000000000 .L0 +0000000000008e10 l .text 0000000000000000 .L0 +0000000000008e10 l .text 0000000000000000 .L0 +0000000000008e10 l .text 0000000000000000 .L0 +0000000000008e1a l .text 0000000000000000 .L0 +0000000000008e1a l .text 0000000000000000 .L0 +0000000000008e20 l .text 0000000000000000 .L0 +0000000000008e20 l .text 0000000000000000 .L0 +0000000000008e22 l .text 0000000000000000 .L0 +0000000000008e22 l .text 0000000000000000 .L0 +0000000000008e2c l .text 0000000000000000 .L0 +0000000000008e2c l .text 0000000000000000 .L0 +0000000000008e2c l .text 0000000000000000 .L0 +0000000000008e2c l .text 0000000000000000 .L0 +0000000000008e2c l .text 0000000000000000 .L0 +0000000000008e2e l .text 0000000000000000 .L0 +0000000000008e34 l .text 0000000000000000 .L0 +0000000000008e42 l .text 0000000000000000 .L0 +0000000000008e42 l .text 0000000000000000 .L0 +0000000000008e4a l .text 0000000000000000 .L0 +0000000000008e58 l .text 0000000000000000 .L0 +0000000000008e58 l .text 0000000000000000 .L0 +0000000000008e58 l .text 0000000000000000 .L0 +0000000000008e5a l .text 0000000000000000 .L0 +0000000000008e5c l .text 0000000000000000 .L0 +0000000000008e5e l .text 0000000000000000 .L0 +0000000000008e5e l .text 0000000000000000 .L0 +0000000000008e62 l .text 0000000000000000 .L0 +0000000000008e66 l .text 0000000000000000 .L0 +0000000000008e66 l .text 0000000000000000 .L0 +0000000000008e66 l .text 0000000000000000 .L0 +0000000000008e6a l .text 0000000000000000 .L0 +0000000000008e6a l .text 0000000000000000 .L0 +0000000000008e70 l .text 0000000000000000 .L0 +0000000000008e70 l .text 0000000000000000 .L0 +0000000000008e74 l .text 0000000000000000 .L0 +0000000000008e74 l .text 0000000000000000 .L0 +0000000000008e76 l .text 0000000000000000 .L0 +0000000000008e76 l .text 0000000000000000 .L0 +0000000000008e78 l .text 0000000000000000 .L0 +0000000000008e7a l .text 0000000000000000 .L0 +0000000000008e7c l .text 0000000000000000 .L0 +0000000000008e80 l .text 0000000000000000 .L0 +0000000000008e84 l .text 0000000000000000 .L0 +0000000000008e84 l .text 0000000000000000 .L0 +0000000000008e86 l .text 0000000000000000 .L0 +0000000000008e8e l .text 0000000000000000 .L0 +0000000000008e8e l .text 0000000000000000 .L0 +0000000000008e90 l .text 0000000000000000 .L0 +0000000000008e92 l .text 0000000000000000 .L0 +0000000000008e94 l .text 0000000000000000 .L0 +0000000000008e96 l .text 0000000000000000 .L0 +0000000000008e98 l .text 0000000000000000 .L0 +0000000000008e9a l .text 0000000000000000 .L0 +0000000000008e9a l .text 0000000000000000 .L0 +0000000000008e9e l .text 0000000000000000 .L0 +0000000000008e9e l .text 0000000000000000 .L0 +0000000000008ea0 l .text 0000000000000000 .L0 +0000000000008ea0 l .text 0000000000000000 .L0 +0000000000008ea2 l .text 0000000000000000 .L0 +0000000000008ea4 l .text 0000000000000000 .L0 +0000000000008ea6 l .text 0000000000000000 .L0 +0000000000008eae l .text 0000000000000000 .L0 +0000000000008eae l .text 0000000000000000 .L0 +0000000000008eae l .text 0000000000000000 .L0 +0000000000008eba l .text 0000000000000000 .L0 +0000000000008ec8 l .text 0000000000000000 .L0 +0000000000008ec8 l .text 0000000000000000 .L0 +0000000000008ece l .text 0000000000000000 .L0 +0000000000008ed0 l .text 0000000000000000 .L0 +0000000000008ede l .text 0000000000000000 .L0 +0000000000008ede l .text 0000000000000000 .L0 +0000000000008ede l .text 0000000000000000 .L0 +0000000000008ede l .text 0000000000000000 .L0 +0000000000008ede l .text 0000000000000000 .L0 +0000000000008ede l .text 0000000000000000 .L0 +0000000000008ede l .text 0000000000000000 .L0 +0000000000008ede l .text 0000000000000000 .L0 +0000000000008ede l .text 0000000000000000 .L0 +0000000000008ee0 l .text 0000000000000000 .L0 +0000000000008ee0 l .text 0000000000000000 .L0 +0000000000008ee2 l .text 0000000000000000 .L0 +0000000000008ee2 l .text 0000000000000000 .L0 +0000000000008ee4 l .text 0000000000000000 .L0 +0000000000008ee6 l .text 0000000000000000 .L0 +0000000000008ee6 l .text 0000000000000000 .L0 +0000000000008eea l .text 0000000000000000 .L0 +0000000000008eea l .text 0000000000000000 .L0 +0000000000008ef6 l .text 0000000000000000 .L0 +0000000000008efc l .text 0000000000000000 .L0 +0000000000008f0a l .text 0000000000000000 .L0 +0000000000002e48 l .debug_frame 0000000000000000 .L0 +0000000000008dc6 l .text 0000000000000000 .L0 +0000000000008f0a l .text 0000000000000000 .L0 +0000000000008ed2 l .text 0000000000000000 .L0 +0000000000008dd0 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_iscntrl.c +0000000000008f1a l .text 0000000000000000 .L3 +0000000000009763 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000018337 l .debug_str 0000000000000000 .LASF2 +00000000000183e7 l .debug_str 0000000000000000 .LASF3 +0000000000018315 l .debug_str 0000000000000000 .LASF4 +0000000000002990 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000019064 l .debug_line 0000000000000000 .Ldebug_line0 +00000000000182ff l .debug_str 0000000000000000 .LASF0 +000000000001830c l .debug_str 0000000000000000 .LASF5 +00000000000182ee l .debug_str 0000000000000000 .LASF6 +0000000000008f1e l .text 0000000000000000 .LFB1 +0000000000008f26 l .text 0000000000000000 .LFE1 +00000000000190f2 l .debug_loc 0000000000000000 .LLST1 +00000000000182f8 l .debug_str 0000000000000000 .LASF1 +000000000001912b l .debug_loc 0000000000000000 .LLST2 +0000000000008f26 l .text 0000000000000000 .LVL5 +0000000000018304 l .debug_str 0000000000000000 .LASF7 +0000000000008f0a l .text 0000000000000000 .LFB0 +0000000000008f1e l .text 0000000000000000 .LFE0 +0000000000019164 l .debug_loc 0000000000000000 .LLST0 +0000000000008f1e l .text 0000000000000000 .LVL4 +0000000000008f0a l .text 0000000000000000 .LVL0 +0000000000008f14 l .text 0000000000000000 .LVL1 +0000000000008f1a l .text 0000000000000000 .LVL2 +0000000000008f1c l .text 0000000000000000 .LVL3 +0000000000025272 l .debug_info 0000000000000000 .Ldebug_info0 +0000000000008f0a l .text 0000000000000000 .L0 +0000000000008f1e l .text 0000000000000000 .L0 +0000000000008f0a l .text 0000000000000000 .L0 +0000000000008f0a l .text 0000000000000000 .L0 +0000000000008f10 l .text 0000000000000000 .L0 +0000000000008f1a l .text 0000000000000000 .L0 +0000000000008f1c l .text 0000000000000000 .L0 +0000000000008f1e l .text 0000000000000000 .L0 +0000000000008f1e l .text 0000000000000000 .L0 +0000000000008f1e l .text 0000000000000000 .L0 +0000000000008f26 l .text 0000000000000000 .L0 +0000000000002e90 l .debug_frame 0000000000000000 .L0 +0000000000008f0a l .text 0000000000000000 .L0 +0000000000008f1e l .text 0000000000000000 .L0 +0000000000008f1e l .text 0000000000000000 .L0 +0000000000008f26 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_isspace.c +0000000000008f36 l .text 0000000000000000 .L3 +000000000000980d l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000018458 l .debug_str 0000000000000000 .LASF2 +000000000001840f l .debug_str 0000000000000000 .LASF3 +0000000000018436 l .debug_str 0000000000000000 .LASF4 +00000000000029c0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000019135 l .debug_line 0000000000000000 .Ldebug_line0 +000000000001840a l .debug_str 0000000000000000 .LASF0 +0000000000018423 l .debug_str 0000000000000000 .LASF5 +000000000001842c l .debug_str 0000000000000000 .LASF6 +0000000000008f3a l .text 0000000000000000 .LFB1 +0000000000008f42 l .text 0000000000000000 .LFE1 +00000000000191c6 l .debug_loc 0000000000000000 .LLST1 +0000000000018403 l .debug_str 0000000000000000 .LASF1 +00000000000191ff l .debug_loc 0000000000000000 .LLST2 +0000000000008f42 l .text 0000000000000000 .LVL5 +00000000000183fb l .debug_str 0000000000000000 .LASF7 +0000000000008f26 l .text 0000000000000000 .LFB0 +0000000000008f3a l .text 0000000000000000 .LFE0 +0000000000019238 l .debug_loc 0000000000000000 .LLST0 +0000000000008f3a l .text 0000000000000000 .LVL4 +0000000000008f26 l .text 0000000000000000 .LVL0 +0000000000008f30 l .text 0000000000000000 .LVL1 +0000000000008f36 l .text 0000000000000000 .LVL2 +0000000000008f38 l .text 0000000000000000 .LVL3 +0000000000025333 l .debug_info 0000000000000000 .Ldebug_info0 +0000000000008f26 l .text 0000000000000000 .L0 +0000000000008f3a l .text 0000000000000000 .L0 +0000000000008f26 l .text 0000000000000000 .L0 +0000000000008f26 l .text 0000000000000000 .L0 +0000000000008f2e l .text 0000000000000000 .L0 +0000000000008f30 l .text 0000000000000000 .L0 +0000000000008f38 l .text 0000000000000000 .L0 +0000000000008f3a l .text 0000000000000000 .L0 +0000000000008f3a l .text 0000000000000000 .L0 +0000000000008f3a l .text 0000000000000000 .L0 +0000000000008f42 l .text 0000000000000000 .L0 +0000000000002ed0 l .debug_frame 0000000000000000 .L0 +0000000000008f26 l .text 0000000000000000 .L0 +0000000000008f3a l .text 0000000000000000 .L0 +0000000000008f3a l .text 0000000000000000 .L0 +0000000000008f42 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_isxdigit.c +0000000000008f5a l .text 0000000000000000 .L3 +00000000000098da l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000018568 l .debug_str 0000000000000000 .LASF2 +000000000001851a l .debug_str 0000000000000000 .LASF3 +0000000000018541 l .debug_str 0000000000000000 .LASF4 +00000000000029f0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000019206 l .debug_line 0000000000000000 .Ldebug_line0 +0000000000018563 l .debug_str 0000000000000000 .LASF0 +0000000000018538 l .debug_str 0000000000000000 .LASF5 +0000000000018508 l .debug_str 0000000000000000 .LASF6 +0000000000008f5e l .text 0000000000000000 .LFB1 +0000000000008f66 l .text 0000000000000000 .LFE1 +000000000001929a l .debug_loc 0000000000000000 .LLST1 +0000000000018513 l .debug_str 0000000000000000 .LASF1 +00000000000192d3 l .debug_loc 0000000000000000 .LLST2 +0000000000008f66 l .text 0000000000000000 .LVL5 +000000000001852f l .debug_str 0000000000000000 .LASF7 +0000000000008f42 l .text 0000000000000000 .LFB0 +0000000000008f5e l .text 0000000000000000 .LFE0 +000000000001930c l .debug_loc 0000000000000000 .LLST0 +0000000000008f5e l .text 0000000000000000 .LVL4 +0000000000008f42 l .text 0000000000000000 .LVL0 +0000000000008f50 l .text 0000000000000000 .LVL1 +0000000000008f5a l .text 0000000000000000 .LVL2 +0000000000008f5c l .text 0000000000000000 .LVL3 +0000000000025404 l .debug_info 0000000000000000 .Ldebug_info0 +0000000000008f42 l .text 0000000000000000 .L0 +0000000000008f5e l .text 0000000000000000 .L0 +0000000000008f42 l .text 0000000000000000 .L0 +0000000000008f42 l .text 0000000000000000 .L0 +0000000000008f4c l .text 0000000000000000 .L0 +0000000000008f5a l .text 0000000000000000 .L0 +0000000000008f5c l .text 0000000000000000 .L0 +0000000000008f5e l .text 0000000000000000 .L0 +0000000000008f5e l .text 0000000000000000 .L0 +0000000000008f5e l .text 0000000000000000 .L0 +0000000000008f66 l .text 0000000000000000 .L0 +0000000000002f10 l .debug_frame 0000000000000000 .L0 +0000000000008f42 l .text 0000000000000000 .L0 +0000000000008f5e l .text 0000000000000000 .L0 +0000000000008f5e l .text 0000000000000000 .L0 +0000000000008f66 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_tolower.c +0000000000008f74 l .text 0000000000000000 .L2 +0000000000009984 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000018675 l .debug_str 0000000000000000 .LASF2 +0000000000018618 l .debug_str 0000000000000000 .LASF3 +0000000000018653 l .debug_str 0000000000000000 .LASF4 +0000000000002a20 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +00000000000192d8 l .debug_line 0000000000000000 .Ldebug_line0 +0000000000018636 l .debug_str 0000000000000000 .LASF0 +000000000001864a l .debug_str 0000000000000000 .LASF5 +000000000001862c l .debug_str 0000000000000000 .LASF6 +0000000000008f76 l .text 0000000000000000 .LFB1 +0000000000008f7e l .text 0000000000000000 .LFE1 +000000000001936e l .debug_loc 0000000000000000 .LLST1 +000000000001863b l .debug_str 0000000000000000 .LASF1 +00000000000193a7 l .debug_loc 0000000000000000 .LLST2 +0000000000008f7e l .text 0000000000000000 .LVL3 +0000000000018642 l .debug_str 0000000000000000 .LASF7 +0000000000008f66 l .text 0000000000000000 .LFB0 +0000000000008f76 l .text 0000000000000000 .LFE0 +00000000000193e0 l .debug_loc 0000000000000000 .LLST0 +0000000000008f76 l .text 0000000000000000 .LVL2 +0000000000008f66 l .text 0000000000000000 .LVL0 +0000000000008f74 l .text 0000000000000000 .LVL1 +00000000000254c7 l .debug_info 0000000000000000 .Ldebug_info0 +0000000000008f66 l .text 0000000000000000 .L0 +0000000000008f76 l .text 0000000000000000 .L0 +0000000000008f66 l .text 0000000000000000 .L0 +0000000000008f66 l .text 0000000000000000 .L0 +0000000000008f70 l .text 0000000000000000 .L0 +0000000000008f74 l .text 0000000000000000 .L0 +0000000000008f76 l .text 0000000000000000 .L0 +0000000000008f76 l .text 0000000000000000 .L0 +0000000000008f76 l .text 0000000000000000 .L0 +0000000000008f7e l .text 0000000000000000 .L0 +0000000000002f50 l .debug_frame 0000000000000000 .L0 +0000000000008f66 l .text 0000000000000000 .L0 +0000000000008f76 l .text 0000000000000000 .L0 +0000000000008f76 l .text 0000000000000000 .L0 +0000000000008f7e l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_opendir.c +0000000000008fb0 l .text 0000000000000000 .L2 +0000000000008fd2 l .text 0000000000000000 .L4 +0000000000008fa4 l .text 0000000000000000 .L1 +0000000000009a2e l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000018773 l .debug_str 0000000000000000 .LASF21 +0000000000018823 l .debug_str 0000000000000000 .LASF22 +0000000000018838 l .debug_str 0000000000000000 .LASF23 +0000000000002a50 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +00000000000193a7 l .debug_line 0000000000000000 .Ldebug_line0 +00000000000188d1 l .debug_str 0000000000000000 .LASF0 +00000000000188f0 l .debug_str 0000000000000000 .LASF8 +0000000000018740 l .debug_str 0000000000000000 .LASF1 +00000000000188a5 l .debug_str 0000000000000000 .LASF2 +0000000000018760 l .debug_str 0000000000000000 .LASF3 +000000000001885a l .debug_str 0000000000000000 .LASF4 +00000000000188b7 l .debug_str 0000000000000000 .LASF5 +000000000001874e l .debug_str 0000000000000000 .LASF6 +0000000000018867 l .debug_str 0000000000000000 .LASF7 +000000000001887e l .debug_str 0000000000000000 .LASF9 +00000000000188a0 l .debug_str 0000000000000000 .LASF10 +000000000001872a l .debug_str 0000000000000000 .LASF24 +0000000000018886 l .debug_str 0000000000000000 .LASF11 +0000000000018731 l .debug_str 0000000000000000 .LASF12 +00000000000188e3 l .debug_str 0000000000000000 .LASF13 +0000000000018892 l .debug_str 0000000000000000 .LASF14 +00000000000188c5 l .debug_str 0000000000000000 .LASF15 +00000000000188dd l .debug_str 0000000000000000 .LASF16 +0000000000018738 l .debug_str 0000000000000000 .LASF25 +0000000000008f7e l .text 0000000000000000 .LFB4 +0000000000008fd6 l .text 0000000000000000 .LFE4 +00000000000188c0 l .debug_str 0000000000000000 .LASF26 +0000000000019419 l .debug_loc 0000000000000000 .LLST0 +0000000000019478 l .debug_loc 0000000000000000 .LLST1 +00000000000194c1 l .debug_loc 0000000000000000 .LLST2 +0000000000008f94 l .text 0000000000000000 .LVL2 +0000000000008fa0 l .text 0000000000000000 .LVL4 +0000000000008fc0 l .text 0000000000000000 .LVL8 +0000000000008fce l .text 0000000000000000 .LVL10 +00000000000188e9 l .debug_str 0000000000000000 .LASF17 +00000000000188af l .debug_str 0000000000000000 .LASF18 +0000000000018725 l .debug_str 0000000000000000 .LASF19 +000000000001888d l .debug_str 0000000000000000 .LASF20 +0000000000008f7e l .text 0000000000000000 .LVL0 +0000000000008f88 l .text 0000000000000000 .LVL1 +0000000000008fac l .text 0000000000000000 .LVL6 +0000000000008fb0 l .text 0000000000000000 .LVL7 +0000000000008f96 l .text 0000000000000000 .LVL3 +0000000000008fa4 l .text 0000000000000000 .LVL5 +0000000000008fd0 l .text 0000000000000000 .LVL11 +0000000000008fd2 l .text 0000000000000000 .LVL12 +0000000000008fc6 l .text 0000000000000000 .LVL9 +000000000002558a l .debug_info 0000000000000000 .Ldebug_info0 +0000000000008f7e l .text 0000000000000000 .L0 +0000000000008f7e l .text 0000000000000000 .L0 +0000000000008f7e l .text 0000000000000000 .L0 +0000000000008f7e l .text 0000000000000000 .L0 +0000000000008f7e l .text 0000000000000000 .L0 +0000000000008f84 l .text 0000000000000000 .L0 +0000000000008f88 l .text 0000000000000000 .L0 +0000000000008f8c l .text 0000000000000000 .L0 +0000000000008f96 l .text 0000000000000000 .L0 +0000000000008f96 l .text 0000000000000000 .L0 +0000000000008f98 l .text 0000000000000000 .L0 +0000000000008f98 l .text 0000000000000000 .L0 +0000000000008fa4 l .text 0000000000000000 .L0 +0000000000008fa4 l .text 0000000000000000 .L0 +0000000000008fa4 l .text 0000000000000000 .L0 +0000000000008fb0 l .text 0000000000000000 .L0 +0000000000008fb0 l .text 0000000000000000 .L0 +0000000000008fc0 l .text 0000000000000000 .L0 +0000000000008fc0 l .text 0000000000000000 .L0 +0000000000008fc4 l .text 0000000000000000 .L0 +0000000000008fce l .text 0000000000000000 .L0 +0000000000008fce l .text 0000000000000000 .L0 +0000000000008fd2 l .text 0000000000000000 .L0 +0000000000008fd2 l .text 0000000000000000 .L0 +0000000000008fd4 l .text 0000000000000000 .L0 +0000000000008fd4 l .text 0000000000000000 .L0 +0000000000008fd6 l .text 0000000000000000 .L0 +0000000000002f90 l .debug_frame 0000000000000000 .L0 +0000000000008f7e l .text 0000000000000000 .L0 +0000000000008fd6 l .text 0000000000000000 .L0 +0000000000008fa6 l .text 0000000000000000 .L0 +0000000000008f8c l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_closedir.c +0000000000008ffa l .text 0000000000000000 .L2 +0000000000008fee l .text 0000000000000000 .L3 +0000000000009b6f l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000018a19 l .debug_str 0000000000000000 .LASF20 +0000000000018941 l .debug_str 0000000000000000 .LASF21 +00000000000189e5 l .debug_str 0000000000000000 .LASF22 +0000000000002a70 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000001954a l .debug_line 0000000000000000 .Ldebug_line0 +00000000000189b3 l .debug_str 0000000000000000 .LASF0 +00000000000189c6 l .debug_str 0000000000000000 .LASF8 +0000000000018927 l .debug_str 0000000000000000 .LASF1 +00000000000189db l .debug_str 0000000000000000 .LASF2 +0000000000018907 l .debug_str 0000000000000000 .LASF3 +000000000001891a l .debug_str 0000000000000000 .LASF4 +0000000000018996 l .debug_str 0000000000000000 .LASF5 +0000000000018a07 l .debug_str 0000000000000000 .LASF6 +000000000001895c l .debug_str 0000000000000000 .LASF7 +0000000000018989 l .debug_str 0000000000000000 .LASF9 +0000000000018991 l .debug_str 0000000000000000 .LASF10 +00000000000189bf l .debug_str 0000000000000000 .LASF23 +0000000000018935 l .debug_str 0000000000000000 .LASF11 +0000000000018982 l .debug_str 0000000000000000 .LASF12 +000000000001897c l .debug_str 0000000000000000 .LASF13 +00000000000188f9 l .debug_str 0000000000000000 .LASF14 +00000000000189cf l .debug_str 0000000000000000 .LASF15 +00000000000189a5 l .debug_str 0000000000000000 .LASF16 +0000000000018973 l .debug_str 0000000000000000 .LASF24 +0000000000008fd6 l .text 0000000000000000 .LFB4 +0000000000009014 l .text 0000000000000000 .LFE4 +0000000000018957 l .debug_str 0000000000000000 .LASF25 +00000000000194f7 l .debug_loc 0000000000000000 .LLST0 +0000000000008fe8 l .text 0000000000000000 .LVL1 +0000000000009006 l .text 0000000000000000 .LVL4 +0000000000009012 l .text 0000000000000000 .LVL6 +00000000000189ab l .debug_str 0000000000000000 .LASF17 +000000000001899f l .debug_str 0000000000000000 .LASF18 +000000000001893c l .debug_str 0000000000000000 .LASF19 +0000000000008fd6 l .text 0000000000000000 .LVL0 +0000000000008ffa l .text 0000000000000000 .LVL2 +0000000000008ffe l .text 0000000000000000 .LVL3 +000000000002577a l .debug_info 0000000000000000 .Ldebug_info0 +0000000000008fd6 l .text 0000000000000000 .L0 +0000000000008fd6 l .text 0000000000000000 .L0 +0000000000008fd6 l .text 0000000000000000 .L0 +0000000000008fd6 l .text 0000000000000000 .L0 +0000000000008fde l .text 0000000000000000 .L0 +0000000000008fe0 l .text 0000000000000000 .L0 +0000000000008fe0 l .text 0000000000000000 .L0 +0000000000008fec l .text 0000000000000000 .L0 +0000000000008fec l .text 0000000000000000 .L0 +0000000000008fec l .text 0000000000000000 .L0 +0000000000008fee l .text 0000000000000000 .L0 +0000000000008ffc l .text 0000000000000000 .L0 +0000000000008ffc l .text 0000000000000000 .L0 +0000000000009008 l .text 0000000000000000 .L0 +0000000000009012 l .text 0000000000000000 .L0 +0000000000009012 l .text 0000000000000000 .L0 +0000000000009014 l .text 0000000000000000 .L0 +0000000000002fd0 l .debug_frame 0000000000000000 .L0 +0000000000008fd6 l .text 0000000000000000 .L0 +0000000000009014 l .text 0000000000000000 .L0 +0000000000008ff0 l .text 0000000000000000 .L0 +0000000000008fde l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_readdir.c +0000000000009034 l .text 0000000000000000 .L2 +000000000000902a l .text 0000000000000000 .L3 +0000000000009c9c l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000018bc1 l .debug_str 0000000000000000 .LASF16 +0000000000018b21 l .debug_str 0000000000000000 .LASF17 +0000000000018b9f l .debug_str 0000000000000000 .LASF18 +0000000000002a90 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000019696 l .debug_line 0000000000000000 .Ldebug_line0 +0000000000018b71 l .debug_str 0000000000000000 .LASF0 +0000000000018b84 l .debug_str 0000000000000000 .LASF8 +0000000000018b0e l .debug_str 0000000000000000 .LASF1 +0000000000018b95 l .debug_str 0000000000000000 .LASF2 +0000000000018b5e l .debug_str 0000000000000000 .LASF3 +0000000000018ac9 l .debug_str 0000000000000000 .LASF4 +0000000000018b36 l .debug_str 0000000000000000 .LASF5 +0000000000018b47 l .debug_str 0000000000000000 .LASF6 +0000000000018ae2 l .debug_str 0000000000000000 .LASF7 +0000000000018b06 l .debug_str 0000000000000000 .LASF9 +0000000000018b1c l .debug_str 0000000000000000 .LASF10 +0000000000018b7d l .debug_str 0000000000000000 .LASF19 +0000000000018ad6 l .debug_str 0000000000000000 .LASF11 +0000000000018aff l .debug_str 0000000000000000 .LASF12 +0000000000018af9 l .debug_str 0000000000000000 .LASF13 +0000000000018b8d l .debug_str 0000000000000000 .LASF20 +0000000000009014 l .text 0000000000000000 .LFB0 +0000000000009050 l .text 0000000000000000 .LFE0 +0000000000018add l .debug_str 0000000000000000 .LASF21 +0000000000019556 l .debug_loc 0000000000000000 .LLST0 +0000000000009026 l .text 0000000000000000 .LVL1 +0000000000009046 l .text 0000000000000000 .LVL5 +0000000000018b3f l .debug_str 0000000000000000 .LASF14 +0000000000018b59 l .debug_str 0000000000000000 .LASF15 +0000000000009014 l .text 0000000000000000 .LVL0 +000000000000902a l .text 0000000000000000 .LVL2 +0000000000009034 l .text 0000000000000000 .LVL3 +0000000000009038 l .text 0000000000000000 .LVL4 +000000000000904e l .text 0000000000000000 .LVL6 +0000000000025919 l .debug_info 0000000000000000 .Ldebug_info0 +0000000000009014 l .text 0000000000000000 .L0 +0000000000009014 l .text 0000000000000000 .L0 +0000000000009014 l .text 0000000000000000 .L0 +0000000000009014 l .text 0000000000000000 .L0 +000000000000901a l .text 0000000000000000 .L0 +000000000000901c l .text 0000000000000000 .L0 +000000000000901e l .text 0000000000000000 .L0 +000000000000901e l .text 0000000000000000 .L0 +000000000000902a l .text 0000000000000000 .L0 +000000000000902a l .text 0000000000000000 .L0 +000000000000902a l .text 0000000000000000 .L0 +0000000000009034 l .text 0000000000000000 .L0 +0000000000009034 l .text 0000000000000000 .L0 +0000000000009036 l .text 0000000000000000 .L0 +0000000000009038 l .text 0000000000000000 .L0 +0000000000009046 l .text 0000000000000000 .L0 +0000000000009046 l .text 0000000000000000 .L0 +000000000000904c l .text 0000000000000000 .L0 +0000000000009050 l .text 0000000000000000 .L0 +0000000000003010 l .debug_frame 0000000000000000 .L0 +0000000000009014 l .text 0000000000000000 .L0 +0000000000009050 l .text 0000000000000000 .L0 +000000000000902c l .text 0000000000000000 .L0 +000000000000901a l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_basename.c +0000000000015b78 l .rodata 0000000000000000 .LC0 +00000000000090aa l .text 0000000000000000 .L0 +0000000000015b80 l .rodata 0000000000000000 .LC1 +00000000000090b4 l .text 0000000000000000 .L0 +00000000000090aa l .text 0000000000000000 .L6 +000000000000909a l .text 0000000000000000 .L4 +0000000000009090 l .text 0000000000000000 .L2 +00000000000090b4 l .text 0000000000000000 .L7 +0000000000009074 l .text 0000000000000000 .L3 +0000000000009db6 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000018d6a l .debug_str 0000000000000000 .LASF15 +0000000000018cb4 l .debug_str 0000000000000000 .LASF16 +0000000000018cca l .debug_str 0000000000000000 .LASF17 +0000000000002ab0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +00000000000197e5 l .debug_line 0000000000000000 .Ldebug_line0 +0000000000018d2a l .debug_str 0000000000000000 .LASF0 +0000000000018cec l .debug_str 0000000000000000 .LASF1 +0000000000018d4a l .debug_str 0000000000000000 .LASF2 +0000000000018d17 l .debug_str 0000000000000000 .LASF3 +0000000000018d5d l .debug_str 0000000000000000 .LASF4 +0000000000018cff l .debug_str 0000000000000000 .LASF5 +0000000000018c8b l .debug_str 0000000000000000 .LASF6 +0000000000018d42 l .debug_str 0000000000000000 .LASF8 +0000000000018c9d l .debug_str 0000000000000000 .LASF7 +0000000000018c7f l .debug_str 0000000000000000 .LASF9 +0000000000018cfa l .debug_str 0000000000000000 .LASF10 +0000000000018c71 l .debug_str 0000000000000000 .LASF11 +0000000000018d36 l .debug_str 0000000000000000 .LASF12 +0000000000018d54 l .debug_str 0000000000000000 .LASF18 +0000000000009050 l .text 0000000000000000 .LFB0 +00000000000090be l .text 0000000000000000 .LFE0 +0000000000018c86 l .debug_str 0000000000000000 .LASF19 +00000000000195e0 l .debug_loc 0000000000000000 .LLST0 +000000000001967b l .debug_loc 0000000000000000 .LLST1 +000000000001969e l .debug_loc 0000000000000000 .LLST2 +0000000000009068 l .text 0000000000000000 .LVL1 +000000000000908a l .text 0000000000000000 .LVL5 +0000000000018d10 l .debug_str 0000000000000000 .LASF13 +0000000000018d08 l .debug_str 0000000000000000 .LASF14 +0000000000009050 l .text 0000000000000000 .LVL0 +0000000000009090 l .text 0000000000000000 .LVL6 +000000000000909a l .text 0000000000000000 .LVL7 +00000000000090aa l .text 0000000000000000 .LVL10 +00000000000090b4 l .text 0000000000000000 .LVL11 +00000000000090bc l .text 0000000000000000 .LVL12 +000000000000906c l .text 0000000000000000 .LVL2 +0000000000009074 l .text 0000000000000000 .LVL3 +0000000000009082 l .text 0000000000000000 .LVL4 +000000000000909c l .text 0000000000000000 .LVL8 +00000000000090a8 l .text 0000000000000000 .LVL9 +0000000000025a96 l .debug_info 0000000000000000 .Ldebug_info0 +0000000000009050 l .text 0000000000000000 .L0 +0000000000009050 l .text 0000000000000000 .L0 +0000000000009050 l .text 0000000000000000 .L0 +0000000000009050 l .text 0000000000000000 .L0 +0000000000009050 l .text 0000000000000000 .L0 +0000000000009056 l .text 0000000000000000 .L0 +0000000000009058 l .text 0000000000000000 .L0 +0000000000009060 l .text 0000000000000000 .L0 +0000000000009060 l .text 0000000000000000 .L0 +0000000000009068 l .text 0000000000000000 .L0 +0000000000009068 l .text 0000000000000000 .L0 +000000000000906c l .text 0000000000000000 .L0 +0000000000009070 l .text 0000000000000000 .L0 +0000000000009074 l .text 0000000000000000 .L0 +000000000000907c l .text 0000000000000000 .L0 +000000000000907c l .text 0000000000000000 .L0 +000000000000908a l .text 0000000000000000 .L0 +000000000000908a l .text 0000000000000000 .L0 +000000000000908c l .text 0000000000000000 .L0 +000000000000908c l .text 0000000000000000 .L0 +0000000000009090 l .text 0000000000000000 .L0 +000000000000909a l .text 0000000000000000 .L0 +000000000000909a l .text 0000000000000000 .L0 +00000000000090a4 l .text 0000000000000000 .L0 +00000000000090a4 l .text 0000000000000000 .L0 +00000000000090a8 l .text 0000000000000000 .L0 +00000000000090aa l .text 0000000000000000 .L0 +00000000000090b4 l .text 0000000000000000 .L0 +00000000000090be l .text 0000000000000000 .L0 +0000000000003050 l .debug_frame 0000000000000000 .L0 +0000000000009050 l .text 0000000000000000 .L0 +00000000000090be l .text 0000000000000000 .L0 +0000000000009092 l .text 0000000000000000 .L0 +0000000000009056 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_dirname.c +0000000000015b90 l .rodata 0000000000000000 .LC1 +000000000000911a l .text 0000000000000000 .L0 +0000000000015b88 l .rodata 0000000000000000 .LC0 +0000000000009134 l .text 0000000000000000 .L0 +0000000000009134 l .text 0000000000000000 .L2 +0000000000009112 l .text 0000000000000000 .L6 +000000000000911a l .text 0000000000000000 .L7 +00000000000090fe l .text 0000000000000000 .L8 +0000000000009122 l .text 0000000000000000 .L5 +000000000000912c l .text 0000000000000000 .L4 +00000000000090de l .text 0000000000000000 .L3 +0000000000009e6f l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000018f02 l .debug_str 0000000000000000 .LASF13 +0000000000018e3a l .debug_str 0000000000000000 .LASF14 +0000000000018e78 l .debug_str 0000000000000000 .LASF15 +0000000000002ad0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +00000000000199b3 l .debug_line 0000000000000000 .Ldebug_line0 +0000000000018ee0 l .debug_str 0000000000000000 .LASF0 +0000000000018e9a l .debug_str 0000000000000000 .LASF1 +0000000000018ef8 l .debug_str 0000000000000000 .LASF2 +0000000000018ecd l .debug_str 0000000000000000 .LASF3 +0000000000018e28 l .debug_str 0000000000000000 .LASF4 +0000000000018ebd l .debug_str 0000000000000000 .LASF5 +0000000000018e4f l .debug_str 0000000000000000 .LASF6 +0000000000018e61 l .debug_str 0000000000000000 .LASF7 +0000000000018ea8 l .debug_str 0000000000000000 .LASF8 +0000000000018e1a l .debug_str 0000000000000000 .LASF9 +0000000000018eec l .debug_str 0000000000000000 .LASF10 +0000000000018ead l .debug_str 0000000000000000 .LASF16 +00000000000090be l .text 0000000000000000 .LFB0 +000000000000913e l .text 0000000000000000 .LFE0 +0000000000018e35 l .debug_str 0000000000000000 .LASF17 +0000000000019759 l .debug_loc 0000000000000000 .LLST0 +00000000000197ce l .debug_loc 0000000000000000 .LLST1 +00000000000197f1 l .debug_loc 0000000000000000 .LLST2 +00000000000090d6 l .text 0000000000000000 .LVL1 +00000000000090f8 l .text 0000000000000000 .LVL5 +0000000000018ec6 l .debug_str 0000000000000000 .LASF11 +0000000000018eb5 l .debug_str 0000000000000000 .LASF12 +00000000000090be l .text 0000000000000000 .LVL0 +0000000000009122 l .text 0000000000000000 .LVL9 +000000000000912c l .text 0000000000000000 .LVL10 +0000000000009134 l .text 0000000000000000 .LVL13 +0000000000009112 l .text 0000000000000000 .LVL7 +00000000000090d8 l .text 0000000000000000 .LVL2 +00000000000090de l .text 0000000000000000 .LVL3 +00000000000090f0 l .text 0000000000000000 .LVL4 +000000000000911a l .text 0000000000000000 .LVL8 +0000000000009130 l .text 0000000000000000 .LVL11 +0000000000009132 l .text 0000000000000000 .LVL12 +0000000000025bcd l .debug_info 0000000000000000 .Ldebug_info0 +00000000000090be l .text 0000000000000000 .L0 +00000000000090be l .text 0000000000000000 .L0 +00000000000090be l .text 0000000000000000 .L0 +00000000000090be l .text 0000000000000000 .L0 +00000000000090be l .text 0000000000000000 .L0 +00000000000090c4 l .text 0000000000000000 .L0 +00000000000090c6 l .text 0000000000000000 .L0 +00000000000090ce l .text 0000000000000000 .L0 +00000000000090ce l .text 0000000000000000 .L0 +00000000000090d6 l .text 0000000000000000 .L0 +00000000000090d8 l .text 0000000000000000 .L0 +00000000000090dc l .text 0000000000000000 .L0 +00000000000090de l .text 0000000000000000 .L0 +00000000000090ea l .text 0000000000000000 .L0 +00000000000090ea l .text 0000000000000000 .L0 +00000000000090f8 l .text 0000000000000000 .L0 +00000000000090f8 l .text 0000000000000000 .L0 +00000000000090fa l .text 0000000000000000 .L0 +00000000000090fe l .text 0000000000000000 .L0 +00000000000090fe l .text 0000000000000000 .L0 +00000000000090fe l .text 0000000000000000 .L0 +0000000000009102 l .text 0000000000000000 .L0 +0000000000009102 l .text 0000000000000000 .L0 +0000000000009106 l .text 0000000000000000 .L0 +000000000000910a l .text 0000000000000000 .L0 +000000000000910c l .text 0000000000000000 .L0 +000000000000910c l .text 0000000000000000 .L0 +0000000000009112 l .text 0000000000000000 .L0 +0000000000009112 l .text 0000000000000000 .L0 +000000000000911a l .text 0000000000000000 .L0 +0000000000009122 l .text 0000000000000000 .L0 +000000000000912c l .text 0000000000000000 .L0 +000000000000912c l .text 0000000000000000 .L0 +0000000000009130 l .text 0000000000000000 .L0 +0000000000009134 l .text 0000000000000000 .L0 +000000000000913e l .text 0000000000000000 .L0 +0000000000003090 l .debug_frame 0000000000000000 .L0 +00000000000090be l .text 0000000000000000 .L0 +000000000000913e l .text 0000000000000000 .L0 +0000000000009124 l .text 0000000000000000 .L0 +00000000000090c4 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_utsname.c +0000000000015b98 l .rodata 0000000000000000 .LC0 +0000000000009142 l .text 0000000000000000 .L0 +0000000000015ba0 l .rodata 0000000000000000 .LC1 +0000000000009172 l .text 0000000000000000 .L0 +0000000000015bb0 l .rodata 0000000000000000 .LC2 +0000000000009186 l .text 0000000000000000 .L0 +0000000000015bc0 l .rodata 0000000000000000 .LC3 +000000000000918e l .text 0000000000000000 .L0 +0000000000015bd0 l .rodata 0000000000000000 .LC4 +0000000000009196 l .text 0000000000000000 .L0 +0000000000015be0 l .rodata 0000000000000000 .LC5 +000000000000919e l .text 0000000000000000 .L0 +0000000000015bf0 l .rodata 0000000000000000 .LC6 +00000000000091bc l .text 0000000000000000 .L0 +0000000000009f19 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +00000000000190db l .debug_str 0000000000000000 .LASF20 +0000000000018fdb l .debug_str 0000000000000000 .LASF21 +00000000000190b9 l .debug_str 0000000000000000 .LASF22 +0000000000002af0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000019b57 l .debug_line 0000000000000000 .Ldebug_line0 +000000000001908b l .debug_str 0000000000000000 .LASF0 +0000000000018fcd l .debug_str 0000000000000000 .LASF1 +00000000000190af l .debug_str 0000000000000000 .LASF2 +0000000000019078 l .debug_str 0000000000000000 .LASF3 +0000000000018fc0 l .debug_str 0000000000000000 .LASF4 +000000000001906f l .debug_str 0000000000000000 .LASF5 +0000000000019057 l .debug_str 0000000000000000 .LASF6 +000000000001900b l .debug_str 0000000000000000 .LASF7 +0000000000019031 l .debug_str 0000000000000000 .LASF8 +0000000000018ff6 l .debug_str 0000000000000000 .LASF23 +0000000000018fee l .debug_str 0000000000000000 .LASF9 +0000000000019036 l .debug_str 0000000000000000 .LASF10 +000000000001903f l .debug_str 0000000000000000 .LASF11 +0000000000019047 l .debug_str 0000000000000000 .LASF12 +000000000001904f l .debug_str 0000000000000000 .LASF13 +0000000000018fb2 l .debug_str 0000000000000000 .LASF14 +0000000000019097 l .debug_str 0000000000000000 .LASF15 +0000000000019069 l .debug_str 0000000000000000 .LASF16 +000000000001902b l .debug_str 0000000000000000 .LASF24 +000000000000913e l .text 0000000000000000 .LFB4 +00000000000091d8 l .text 0000000000000000 .LFE4 +0000000000019006 l .debug_str 0000000000000000 .LASF25 +0000000000019866 l .debug_loc 0000000000000000 .LLST0 +00000000000198b2 l .debug_loc 0000000000000000 .LLST1 +000000000000915a l .text 0000000000000000 .LVL1 +000000000000916a l .text 0000000000000000 .LVL2 +0000000000009186 l .text 0000000000000000 .LVL4 +00000000000091b6 l .text 0000000000000000 .LVL5 +00000000000091cc l .text 0000000000000000 .LVL6 +0000000000018ffe l .debug_str 0000000000000000 .LASF17 +00000000000190a3 l .debug_str 0000000000000000 .LASF18 +0000000000019022 l .debug_str 0000000000000000 .LASF19 +000000000000913e l .text 0000000000000000 .LVL0 +00000000000091d0 l .text 0000000000000000 .LVL7 +000000000000916c l .text 0000000000000000 .LVL3 +00000000000091d4 l .text 0000000000000000 .LVL8 +0000000000025cec l .debug_info 0000000000000000 .Ldebug_info0 +000000000000913e l .text 0000000000000000 .L0 +000000000000913e l .text 0000000000000000 .L0 +000000000000913e l .text 0000000000000000 .L0 +000000000000913e l .text 0000000000000000 .L0 +0000000000009140 l .text 0000000000000000 .L0 +000000000000914a l .text 0000000000000000 .L0 +0000000000009150 l .text 0000000000000000 .L0 +0000000000009152 l .text 0000000000000000 .L0 +000000000000915a l .text 0000000000000000 .L0 +000000000000915a l .text 0000000000000000 .L0 +000000000000916c l .text 0000000000000000 .L0 +000000000000916c l .text 0000000000000000 .L0 +0000000000009170 l .text 0000000000000000 .L0 +0000000000009186 l .text 0000000000000000 .L0 +00000000000091b6 l .text 0000000000000000 .L0 +00000000000091cc l .text 0000000000000000 .L0 +00000000000091cc l .text 0000000000000000 .L0 +00000000000091d8 l .text 0000000000000000 .L0 +00000000000030d0 l .debug_frame 0000000000000000 .L0 +000000000000913e l .text 0000000000000000 .L0 +00000000000091d8 l .text 0000000000000000 .L0 +0000000000009150 l .text 0000000000000000 .L0 +0000000000009140 l .text 0000000000000000 .L0 +00000000000091ce l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 pthread_attr_init.c +0000000000015bf8 l .rodata 0000000000000000 .LANCHOR0 +00000000000091de l .text 0000000000000000 .L0 +00000000000091f8 l .text 0000000000000000 .L3 +000000000000a00a l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000001924a l .debug_str 0000000000000000 .LASF24 +000000000001918b l .debug_str 0000000000000000 .LASF25 +00000000000191d3 l .debug_str 0000000000000000 .LASF26 +0000000000002b10 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000019c90 l .debug_line 0000000000000000 .Ldebug_line0 +00000000000193c0 l .debug_str 0000000000000000 .LASF0 +00000000000193d2 l .debug_str 0000000000000000 .LASF7 +00000000000191f5 l .debug_str 0000000000000000 .LASF1 +0000000000019383 l .debug_str 0000000000000000 .LASF2 +0000000000019224 l .debug_str 0000000000000000 .LASF3 +0000000000019314 l .debug_str 0000000000000000 .LASF4 +000000000001938d l .debug_str 0000000000000000 .LASF5 +00000000000192fa l .debug_str 0000000000000000 .LASF6 +000000000001930c l .debug_str 0000000000000000 .LASF8 +0000000000019321 l .debug_str 0000000000000000 .LASF9 +0000000000019338 l .debug_str 0000000000000000 .LASF10 +00000000000191b4 l .debug_str 0000000000000000 .LASF11 +00000000000191ce l .debug_str 0000000000000000 .LASF12 +0000000000019351 l .debug_str 0000000000000000 .LASF13 +0000000000019396 l .debug_str 0000000000000000 .LASF27 +0000000000019241 l .debug_str 0000000000000000 .LASF14 +00000000000191c7 l .debug_str 0000000000000000 .LASF15 +00000000000191a7 l .debug_str 0000000000000000 .LASF16 +00000000000191bb l .debug_str 0000000000000000 .LASF17 +0000000000019203 l .debug_str 0000000000000000 .LASF18 +0000000000019237 l .debug_str 0000000000000000 .LASF19 +00000000000193a5 l .debug_str 0000000000000000 .LASF20 +00000000000193cc l .debug_str 0000000000000000 .LASF21 +000000000001936e l .debug_str 0000000000000000 .LASF22 +00000000000193b4 l .debug_str 0000000000000000 .LASF23 +0000000000019357 l .debug_str 0000000000000000 .LASF28 +000000000001920d l .debug_str 0000000000000000 .LASF29 +00000000000091d8 l .text 0000000000000000 .LFB0 +00000000000091fc l .text 0000000000000000 .LFE0 +000000000001921f l .debug_str 0000000000000000 .LASF30 +00000000000198e9 l .debug_loc 0000000000000000 .LLST0 +000000000001994b l .debug_loc 0000000000000000 .LLST1 +00000000000091f0 l .text 0000000000000000 .LVL1 +000000000001937c l .debug_str 0000000000000000 .LASF31 +0000000000019340 l .debug_str 0000000000000000 .LASF32 +00000000000091d8 l .text 0000000000000000 .LVL0 +00000000000091f8 l .text 0000000000000000 .LVL3 +00000000000091fa l .text 0000000000000000 .LVL4 +00000000000091f4 l .text 0000000000000000 .LVL2 +0000000000025f4a l .debug_info 0000000000000000 .Ldebug_info0 +00000000000091d8 l .text 0000000000000000 .L0 +00000000000091d8 l .text 0000000000000000 .L0 +00000000000091d8 l .text 0000000000000000 .L0 +00000000000091d8 l .text 0000000000000000 .L0 +00000000000091d8 l .text 0000000000000000 .L0 +00000000000091d8 l .text 0000000000000000 .L0 +00000000000091d8 l .text 0000000000000000 .L0 +00000000000091da l .text 0000000000000000 .L0 +00000000000091da l .text 0000000000000000 .L0 +00000000000091dc l .text 0000000000000000 .L0 +00000000000091e6 l .text 0000000000000000 .L0 +00000000000091e8 l .text 0000000000000000 .L0 +00000000000091f0 l .text 0000000000000000 .L0 +00000000000091f2 l .text 0000000000000000 .L0 +00000000000091f4 l .text 0000000000000000 .L0 +00000000000091f4 l .text 0000000000000000 .L0 +00000000000091f4 l .text 0000000000000000 .L0 +00000000000091f4 l .text 0000000000000000 .L0 +00000000000091f4 l .text 0000000000000000 .L0 +00000000000091f8 l .text 0000000000000000 .L0 +00000000000091fa l .text 0000000000000000 .L0 +00000000000091fa l .text 0000000000000000 .L0 +00000000000091fa l .text 0000000000000000 .L0 +00000000000091fa l .text 0000000000000000 .L0 +00000000000091fa l .text 0000000000000000 .L0 +00000000000091fc l .text 0000000000000000 .L0 +0000000000003110 l .debug_frame 0000000000000000 .L0 +00000000000091d8 l .text 0000000000000000 .L0 +00000000000091fc l .text 0000000000000000 .L0 +00000000000091dc l .text 0000000000000000 .L0 +00000000000091e8 l .text 0000000000000000 .L0 +00000000000091f2 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 pthread_attr_setschedpolicy.c +0000000000009210 l .text 0000000000000000 .L3 +0000000000009212 l .text 0000000000000000 .L2 +000000000000a125 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000019483 l .debug_str 0000000000000000 .LASF25 +000000000001954d l .debug_str 0000000000000000 .LASF26 +000000000001941e l .debug_str 0000000000000000 .LASF27 +0000000000002b30 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000019e6f l .debug_line 0000000000000000 .Ldebug_line0 +00000000000195f5 l .debug_str 0000000000000000 .LASF0 +0000000000019607 l .debug_str 0000000000000000 .LASF7 +0000000000019440 l .debug_str 0000000000000000 .LASF1 +00000000000195b8 l .debug_str 0000000000000000 .LASF2 +000000000001945d l .debug_str 0000000000000000 .LASF3 +0000000000019573 l .debug_str 0000000000000000 .LASF4 +00000000000195c2 l .debug_str 0000000000000000 .LASF5 +0000000000019533 l .debug_str 0000000000000000 .LASF6 +0000000000019545 l .debug_str 0000000000000000 .LASF8 +0000000000019580 l .debug_str 0000000000000000 .LASF9 +0000000000019597 l .debug_str 0000000000000000 .LASF10 +00000000000193e8 l .debug_str 0000000000000000 .LASF11 +00000000000195b3 l .debug_str 0000000000000000 .LASF12 +000000000001959f l .debug_str 0000000000000000 .LASF13 +00000000000195cb l .debug_str 0000000000000000 .LASF28 +000000000001947a l .debug_str 0000000000000000 .LASF14 +0000000000019417 l .debug_str 0000000000000000 .LASF15 +00000000000193db l .debug_str 0000000000000000 .LASF16 +000000000001940b l .debug_str 0000000000000000 .LASF17 +000000000001944e l .debug_str 0000000000000000 .LASF18 +0000000000019470 l .debug_str 0000000000000000 .LASF19 +00000000000195da l .debug_str 0000000000000000 .LASF20 +0000000000019601 l .debug_str 0000000000000000 .LASF21 +00000000000195a5 l .debug_str 0000000000000000 .LASF22 +00000000000195e9 l .debug_str 0000000000000000 .LASF23 +00000000000193ef l .debug_str 0000000000000000 .LASF29 +00000000000091fc l .text 0000000000000000 .LFB0 +0000000000009214 l .text 0000000000000000 .LFE0 +0000000000019458 l .debug_str 0000000000000000 .LASF24 +00000000000199a9 l .debug_loc 0000000000000000 .LLST0 +0000000000019a05 l .debug_loc 0000000000000000 .LLST1 +00000000000091fc l .text 0000000000000000 .LVL0 +0000000000009204 l .text 0000000000000000 .LVL1 +0000000000009210 l .text 0000000000000000 .LVL3 +0000000000009212 l .text 0000000000000000 .LVL4 +000000000000920c l .text 0000000000000000 .LVL2 +0000000000026120 l .debug_info 0000000000000000 .Ldebug_info0 +00000000000091fc l .text 0000000000000000 .L0 +00000000000091fc l .text 0000000000000000 .L0 +00000000000091fc l .text 0000000000000000 .L0 +00000000000091fc l .text 0000000000000000 .L0 +00000000000091fc l .text 0000000000000000 .L0 +00000000000091fc l .text 0000000000000000 .L0 +00000000000091fc l .text 0000000000000000 .L0 +00000000000091fe l .text 0000000000000000 .L0 +0000000000009200 l .text 0000000000000000 .L0 +0000000000009202 l .text 0000000000000000 .L0 +0000000000009204 l .text 0000000000000000 .L0 +0000000000009208 l .text 0000000000000000 .L0 +0000000000009208 l .text 0000000000000000 .L0 +000000000000920c l .text 0000000000000000 .L0 +000000000000920c l .text 0000000000000000 .L0 +0000000000009210 l .text 0000000000000000 .L0 +0000000000009212 l .text 0000000000000000 .L0 +0000000000009212 l .text 0000000000000000 .L0 +0000000000009212 l .text 0000000000000000 .L0 +0000000000009212 l .text 0000000000000000 .L0 +0000000000009212 l .text 0000000000000000 .L0 +0000000000009214 l .text 0000000000000000 .L0 +0000000000003148 l .debug_frame 0000000000000000 .L0 +00000000000091fc l .text 0000000000000000 .L0 +0000000000009214 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 pthread_attr_setschedparam.c +0000000000009226 l .text 0000000000000000 .L2 +000000000000a206 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +00000000000196c7 l .debug_str 0000000000000000 .LASF29 +0000000000019671 l .debug_str 0000000000000000 .LASF30 +0000000000019637 l .debug_str 0000000000000000 .LASF31 +0000000000002b50 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000001a01a l .debug_line 0000000000000000 .Ldebug_line0 +0000000000019849 l .debug_str 0000000000000000 .LASF0 +000000000001985b l .debug_str 0000000000000000 .LASF7 +0000000000019659 l .debug_str 0000000000000000 .LASF1 +000000000001980c l .debug_str 0000000000000000 .LASF2 +000000000001969b l .debug_str 0000000000000000 .LASF3 +00000000000197bb l .debug_str 0000000000000000 .LASF4 +0000000000019816 l .debug_str 0000000000000000 .LASF5 +0000000000019777 l .debug_str 0000000000000000 .LASF6 +0000000000019789 l .debug_str 0000000000000000 .LASF8 +00000000000197c8 l .debug_str 0000000000000000 .LASF9 +00000000000197df l .debug_str 0000000000000000 .LASF10 +000000000001961d l .debug_str 0000000000000000 .LASF11 +0000000000019807 l .debug_str 0000000000000000 .LASF12 +00000000000197f3 l .debug_str 0000000000000000 .LASF13 +000000000001981f l .debug_str 0000000000000000 .LASF24 +00000000000196be l .debug_str 0000000000000000 .LASF14 +0000000000019630 l .debug_str 0000000000000000 .LASF15 +0000000000019610 l .debug_str 0000000000000000 .LASF16 +0000000000019624 l .debug_str 0000000000000000 .LASF17 +0000000000019667 l .debug_str 0000000000000000 .LASF18 +00000000000196ae l .debug_str 0000000000000000 .LASF19 +000000000001982e l .debug_str 0000000000000000 .LASF20 +0000000000019855 l .debug_str 0000000000000000 .LASF21 +00000000000197f9 l .debug_str 0000000000000000 .LASF22 +000000000001983d l .debug_str 0000000000000000 .LASF23 +00000000000197e7 l .debug_str 0000000000000000 .LASF25 +00000000000197ac l .debug_str 0000000000000000 .LASF26 +0000000000019791 l .debug_str 0000000000000000 .LASF32 +0000000000009214 l .text 0000000000000000 .LFB0 +0000000000009228 l .text 0000000000000000 .LFE0 +0000000000019696 l .debug_str 0000000000000000 .LASF27 +0000000000019a3c l .debug_loc 0000000000000000 .LLST0 +00000000000196b8 l .debug_str 0000000000000000 .LASF28 +0000000000019a72 l .debug_loc 0000000000000000 .LLST1 +0000000000009214 l .text 0000000000000000 .LVL0 +0000000000009218 l .text 0000000000000000 .LVL1 +0000000000009224 l .text 0000000000000000 .LVL2 +0000000000009226 l .text 0000000000000000 .LVL3 +00000000000262b2 l .debug_info 0000000000000000 .Ldebug_info0 +0000000000009214 l .text 0000000000000000 .L0 +0000000000009214 l .text 0000000000000000 .L0 +0000000000009214 l .text 0000000000000000 .L0 +0000000000009214 l .text 0000000000000000 .L0 +0000000000009214 l .text 0000000000000000 .L0 +0000000000009214 l .text 0000000000000000 .L0 +0000000000009214 l .text 0000000000000000 .L0 +0000000000009216 l .text 0000000000000000 .L0 +0000000000009218 l .text 0000000000000000 .L0 +000000000000921a l .text 0000000000000000 .L0 +000000000000921c l .text 0000000000000000 .L0 +000000000000921c l .text 0000000000000000 .L0 +000000000000921e l .text 0000000000000000 .L0 +0000000000009220 l .text 0000000000000000 .L0 +0000000000009224 l .text 0000000000000000 .L0 +0000000000009226 l .text 0000000000000000 .L0 +0000000000009226 l .text 0000000000000000 .L0 +0000000000009226 l .text 0000000000000000 .L0 +0000000000009226 l .text 0000000000000000 .L0 +0000000000009226 l .text 0000000000000000 .L0 +0000000000009228 l .text 0000000000000000 .L0 +0000000000003170 l .debug_frame 0000000000000000 .L0 +0000000000009214 l .text 0000000000000000 .L0 +0000000000009228 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 pthread_create.c +0000000000009228 l F .text 0000000000000030 pthread_startup +0000000000015c10 l .rodata 0000000000000000 .LC0 +0000000000009230 l .text 0000000000000000 .L0 +0000000000015c28 l .rodata 0000000000000000 .LC1 +000000000000923c l .text 0000000000000000 .L0 +000000000000924c l .text 0000000000000000 .L2 +0000000000009260 l .text 0000000000000000 .L0 +000000000000a2ee l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000019919 l .debug_str 0000000000000000 .LASF34 +0000000000019a19 l .debug_str 0000000000000000 .LASF35 +0000000000019897 l .debug_str 0000000000000000 .LASF36 +0000000000002b70 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000001a1bf l .debug_line 0000000000000000 .Ldebug_line0 +0000000000019ae7 l .debug_str 0000000000000000 .LASF0 +0000000000019af9 l .debug_str 0000000000000000 .LASF7 +00000000000198c3 l .debug_str 0000000000000000 .LASF1 +0000000000019a91 l .debug_str 0000000000000000 .LASF2 +00000000000198e0 l .debug_str 0000000000000000 .LASF3 +0000000000019a0c l .debug_str 0000000000000000 .LASF4 +0000000000019ab4 l .debug_str 0000000000000000 .LASF5 +00000000000199fa l .debug_str 0000000000000000 .LASF6 +00000000000199f2 l .debug_str 0000000000000000 .LASF8 +0000000000019a32 l .debug_str 0000000000000000 .LASF9 +0000000000019a49 l .debug_str 0000000000000000 .LASF10 +0000000000019871 l .debug_str 0000000000000000 .LASF11 +0000000000019891 l .debug_str 0000000000000000 .LASF12 +0000000000019a7c l .debug_str 0000000000000000 .LASF13 +0000000000019a51 l .debug_str 0000000000000000 .LASF14 +00000000000199db l .debug_str 0000000000000000 .LASF15 +0000000000019abd l .debug_str 0000000000000000 .LASF37 +0000000000019910 l .debug_str 0000000000000000 .LASF16 +0000000000019884 l .debug_str 0000000000000000 .LASF17 +0000000000019864 l .debug_str 0000000000000000 .LASF18 +0000000000019878 l .debug_str 0000000000000000 .LASF19 +00000000000198d1 l .debug_str 0000000000000000 .LASF20 +0000000000019a9b l .debug_str 0000000000000000 .LASF21 +0000000000019acc l .debug_str 0000000000000000 .LASF22 +00000000000198b9 l .debug_str 0000000000000000 .LASF23 +0000000000019af3 l .debug_str 0000000000000000 .LASF24 +0000000000019a60 l .debug_str 0000000000000000 .LASF25 +0000000000019adb l .debug_str 0000000000000000 .LASF26 +0000000000019aa5 l .debug_str 0000000000000000 .LASF38 +0000000000009258 l .text 0000000000000000 .LFB1 +0000000000009270 l .text 0000000000000000 .LFE1 +00000000000198f3 l .debug_str 0000000000000000 .LASF27 +0000000000019aa9 l .debug_loc 0000000000000000 .LLST2 +00000000000198db l .debug_str 0000000000000000 .LASF28 +0000000000019af5 l .debug_loc 0000000000000000 .LLST3 +0000000000019a6e l .debug_str 0000000000000000 .LASF29 +0000000000019b41 l .debug_loc 0000000000000000 .LLST4 +0000000000019b8d l .debug_loc 0000000000000000 .LLST5 +0000000000009270 l .text 0000000000000000 .LVL12 +0000000000019a81 l .debug_str 0000000000000000 .LASF39 +0000000000009228 l .text 0000000000000000 .LFB0 +0000000000009258 l .text 0000000000000000 .LFE0 +000000000001988b l .debug_str 0000000000000000 .LASF30 +0000000000019bd9 l .debug_loc 0000000000000000 .LLST0 +0000000000019c61 l .debug_loc 0000000000000000 .LLST1 +000000000000924c l .text 0000000000000000 .LVL3 +0000000000009250 l .text 0000000000000000 .LVL5 +0000000000009258 l .text 0000000000000000 .LVL6 +00000000000199c9 l .debug_str 0000000000000000 .LASF31 +0000000000019907 l .debug_str 0000000000000000 .LASF32 +00000000000198fa l .debug_str 0000000000000000 .LASF33 +0000000000009258 l .text 0000000000000000 .LVL7 +0000000000009268 l .text 0000000000000000 .LVL11 +0000000000009260 l .text 0000000000000000 .LVL10 +000000000000925e l .text 0000000000000000 .LVL9 +000000000000925c l .text 0000000000000000 .LVL8 +0000000000009228 l .text 0000000000000000 .LVL0 +0000000000009244 l .text 0000000000000000 .LVL2 +000000000000924e l .text 0000000000000000 .LVL4 +000000000000923c l .text 0000000000000000 .LVL1 +000000000002646a l .debug_info 0000000000000000 .Ldebug_info0 +0000000000009228 l .text 0000000000000000 .L0 +0000000000009258 l .text 0000000000000000 .L0 +0000000000009228 l .text 0000000000000000 .L0 +0000000000009228 l .text 0000000000000000 .L0 +0000000000009228 l .text 0000000000000000 .L0 +000000000000922c l .text 0000000000000000 .L0 +000000000000922e l .text 0000000000000000 .L0 +0000000000009230 l .text 0000000000000000 .L0 +000000000000924e l .text 0000000000000000 .L0 +000000000000924e l .text 0000000000000000 .L0 +0000000000009258 l .text 0000000000000000 .L0 +0000000000009258 l .text 0000000000000000 .L0 +0000000000009258 l .text 0000000000000000 .L0 +000000000000925a l .text 0000000000000000 .L0 +0000000000009270 l .text 0000000000000000 .L0 +0000000000003198 l .debug_frame 0000000000000000 .L0 +0000000000009228 l .text 0000000000000000 .L0 +0000000000009258 l .text 0000000000000000 .L0 +0000000000009258 l .text 0000000000000000 .L0 +0000000000009270 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 sq_remfirst.c +0000000000009284 l .text 0000000000000000 .L1 +0000000000009280 l .text 0000000000000000 .L3 +000000000000a42f l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000019bf6 l .debug_str 0000000000000000 .LASF16 +0000000000019b1a l .debug_str 0000000000000000 .LASF17 +0000000000019bd4 l .debug_str 0000000000000000 .LASF18 +0000000000002ba0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000001a359 l .debug_line 0000000000000000 .Ldebug_line0 +0000000000019bbe l .debug_str 0000000000000000 .LASF0 +0000000000019b79 l .debug_str 0000000000000000 .LASF1 +0000000000019bca l .debug_str 0000000000000000 .LASF2 +0000000000019bab l .debug_str 0000000000000000 .LASF3 +0000000000019b0d l .debug_str 0000000000000000 .LASF4 +0000000000019b8c l .debug_str 0000000000000000 .LASF5 +0000000000019b33 l .debug_str 0000000000000000 .LASF6 +0000000000019b4b l .debug_str 0000000000000000 .LASF7 +0000000000019b87 l .debug_str 0000000000000000 .LASF8 +0000000000019b95 l .debug_str 0000000000000000 .LASF9 +0000000000019b73 l .debug_str 0000000000000000 .LASF11 +0000000000019ba0 l .debug_str 0000000000000000 .LASF14 +0000000000019ca6 l .debug_str 0000000000000000 .LASF10 +0000000000019b2e l .debug_str 0000000000000000 .LASF12 +0000000000019b62 l .debug_str 0000000000000000 .LASF13 +0000000000019b02 l .debug_str 0000000000000000 .LASF15 +0000000000019b67 l .debug_str 0000000000000000 .LASF19 +0000000000009270 l .text 0000000000000000 .LFB0 +0000000000009286 l .text 0000000000000000 .LFE0 +0000000000019b45 l .debug_str 0000000000000000 .LASF20 +0000000000019cc3 l .debug_loc 0000000000000000 .LLST0 +0000000000009270 l .text 0000000000000000 .LVL0 +0000000000009274 l .text 0000000000000000 .LVL1 +0000000000026732 l .debug_info 0000000000000000 .Ldebug_info0 +0000000000009270 l .text 0000000000000000 .L0 +0000000000009270 l .text 0000000000000000 .L0 +0000000000009270 l .text 0000000000000000 .L0 +0000000000009272 l .text 0000000000000000 .L0 +0000000000009274 l .text 0000000000000000 .L0 +0000000000009274 l .text 0000000000000000 .L0 +0000000000009276 l .text 0000000000000000 .L0 +0000000000009276 l .text 0000000000000000 .L0 +0000000000009278 l .text 0000000000000000 .L0 +000000000000927a l .text 0000000000000000 .L0 +000000000000927a l .text 0000000000000000 .L0 +000000000000927c l .text 0000000000000000 .L0 +000000000000927c l .text 0000000000000000 .L0 +0000000000009280 l .text 0000000000000000 .L0 +0000000000009280 l .text 0000000000000000 .L0 +0000000000009284 l .text 0000000000000000 .L0 +0000000000009284 l .text 0000000000000000 .L0 +0000000000009286 l .text 0000000000000000 .L0 +00000000000031e0 l .debug_frame 0000000000000000 .L0 +0000000000009270 l .text 0000000000000000 .L0 +0000000000009286 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 sq_remafter.c +00000000000092a0 l .text 0000000000000000 .L1 +00000000000092a2 l .text 0000000000000000 .L3 +000000000000929c l .text 0000000000000000 .L4 +000000000000a4d3 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000019daa l .debug_str 0000000000000000 .LASF18 +0000000000019cc9 l .debug_str 0000000000000000 .LASF19 +0000000000019d88 l .debug_str 0000000000000000 .LASF20 +0000000000002bc0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000001a461 l .debug_line 0000000000000000 .Ldebug_line0 +0000000000019d72 l .debug_str 0000000000000000 .LASF0 +0000000000019d1b l .debug_str 0000000000000000 .LASF1 +0000000000019d7e l .debug_str 0000000000000000 .LASF2 +0000000000019d5f l .debug_str 0000000000000000 .LASF3 +0000000000019cbc l .debug_str 0000000000000000 .LASF4 +0000000000019d2e l .debug_str 0000000000000000 .LASF5 +0000000000019d37 l .debug_str 0000000000000000 .LASF6 +0000000000019cf4 l .debug_str 0000000000000000 .LASF7 +0000000000019d29 l .debug_str 0000000000000000 .LASF8 +0000000000019d49 l .debug_str 0000000000000000 .LASF9 +0000000000019d15 l .debug_str 0000000000000000 .LASF11 +0000000000019d54 l .debug_str 0000000000000000 .LASF14 +0000000000019e5a l .debug_str 0000000000000000 .LASF10 +0000000000019cdd l .debug_str 0000000000000000 .LASF12 +0000000000019d0b l .debug_str 0000000000000000 .LASF13 +0000000000019cb1 l .debug_str 0000000000000000 .LASF15 +0000000000019ce2 l .debug_str 0000000000000000 .LASF21 +0000000000009286 l .text 0000000000000000 .LFB0 +00000000000092a8 l .text 0000000000000000 .LFE0 +0000000000019d10 l .debug_str 0000000000000000 .LASF16 +0000000000019cf9 l .debug_loc 0000000000000000 .LLST0 +0000000000019cee l .debug_str 0000000000000000 .LASF17 +0000000000009286 l .text 0000000000000000 .LVL0 +000000000000928c l .text 0000000000000000 .LVL1 +0000000000026858 l .debug_info 0000000000000000 .Ldebug_info0 +0000000000009286 l .text 0000000000000000 .L0 +0000000000009286 l .text 0000000000000000 .L0 +0000000000009286 l .text 0000000000000000 .L0 +0000000000009288 l .text 0000000000000000 .L0 +000000000000928a l .text 0000000000000000 .L0 +000000000000928c l .text 0000000000000000 .L0 +000000000000928c l .text 0000000000000000 .L0 +000000000000928e l .text 0000000000000000 .L0 +0000000000009290 l .text 0000000000000000 .L0 +0000000000009290 l .text 0000000000000000 .L0 +0000000000009296 l .text 0000000000000000 .L0 +0000000000009296 l .text 0000000000000000 .L0 +0000000000009298 l .text 0000000000000000 .L0 +0000000000009298 l .text 0000000000000000 .L0 +000000000000929c l .text 0000000000000000 .L0 +000000000000929c l .text 0000000000000000 .L0 +00000000000092a0 l .text 0000000000000000 .L0 +00000000000092a0 l .text 0000000000000000 .L0 +00000000000092a2 l .text 0000000000000000 .L0 +00000000000092a2 l .text 0000000000000000 .L0 +00000000000092a4 l .text 0000000000000000 .L0 +00000000000092a8 l .text 0000000000000000 .L0 +0000000000003208 l .debug_frame 0000000000000000 .L0 +0000000000009286 l .text 0000000000000000 .L0 +00000000000092a8 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 sched_getprioritymax.c +00000000000092c6 l .text 0000000000000000 .L3 +000000000000a588 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000019f6b l .debug_str 0000000000000000 .LASF13 +0000000000019f2c l .debug_str 0000000000000000 .LASF14 +0000000000019f49 l .debug_str 0000000000000000 .LASF15 +0000000000002be0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000001a58f l .debug_line 0000000000000000 .Ldebug_line0 +0000000000019f0a l .debug_str 0000000000000000 .LASF0 +0000000000019ec9 l .debug_str 0000000000000000 .LASF1 +0000000000019f22 l .debug_str 0000000000000000 .LASF2 +0000000000019e73 l .debug_str 0000000000000000 .LASF3 +0000000000019e86 l .debug_str 0000000000000000 .LASF4 +0000000000019edc l .debug_str 0000000000000000 .LASF5 +0000000000019e99 l .debug_str 0000000000000000 .LASF6 +0000000000019eb2 l .debug_str 0000000000000000 .LASF7 +0000000000019ed7 l .debug_str 0000000000000000 .LASF8 +0000000000019e93 l .debug_str 0000000000000000 .LASF9 +0000000000019e65 l .debug_str 0000000000000000 .LASF10 +0000000000019f16 l .debug_str 0000000000000000 .LASF11 +0000000000019ee5 l .debug_str 0000000000000000 .LASF12 +0000000000019eeb l .debug_str 0000000000000000 .LASF16 +00000000000092a8 l .text 0000000000000000 .LFB4 +00000000000092cc l .text 0000000000000000 .LFE4 +0000000000019eab l .debug_str 0000000000000000 .LASF17 +0000000000019d2f l .debug_loc 0000000000000000 .LLST0 +00000000000092ba l .text 0000000000000000 .LVL1 +0000000000019f02 l .debug_str 0000000000000000 .LASF18 +00000000000092a8 l .text 0000000000000000 .LVL0 +00000000000092c6 l .text 0000000000000000 .LVL2 +00000000000092ca l .text 0000000000000000 .LVL3 +000000000002698c l .debug_info 0000000000000000 .Ldebug_info0 +00000000000092a8 l .text 0000000000000000 .L0 +00000000000092a8 l .text 0000000000000000 .L0 +00000000000092a8 l .text 0000000000000000 .L0 +00000000000092ae l .text 0000000000000000 .L0 +00000000000092ae l .text 0000000000000000 .L0 +00000000000092ae l .text 0000000000000000 .L0 +00000000000092b2 l .text 0000000000000000 .L0 +00000000000092be l .text 0000000000000000 .L0 +00000000000092be l .text 0000000000000000 .L0 +00000000000092be l .text 0000000000000000 .L0 +00000000000092c0 l .text 0000000000000000 .L0 +00000000000092c2 l .text 0000000000000000 .L0 +00000000000092c6 l .text 0000000000000000 .L0 +00000000000092ca l .text 0000000000000000 .L0 +00000000000092cc l .text 0000000000000000 .L0 +0000000000003230 l .debug_frame 0000000000000000 .L0 +00000000000092a8 l .text 0000000000000000 .L0 +00000000000092cc l .text 0000000000000000 .L0 +00000000000092b0 l .text 0000000000000000 .L0 +00000000000092c0 l .text 0000000000000000 .L0 +00000000000092b2 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 sched_getprioritymin.c +0000000000015c48 l .rodata 0000000000000000 .LC0 +00000000000092d4 l .text 0000000000000000 .L0 +0000000000015c68 l .rodata 0000000000000000 .LC1 +00000000000092e0 l .text 0000000000000000 .L0 +00000000000092f2 l .text 0000000000000000 .L2 +000000000000a624 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000001a11c l .debug_str 0000000000000000 .LASF12 +000000000001a05d l .debug_str 0000000000000000 .LASF13 +000000000001a0fa l .debug_str 0000000000000000 .LASF14 +0000000000002c00 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000001a6ae l .debug_line 0000000000000000 .Ldebug_line0 +000000000001a0cf l .debug_str 0000000000000000 .LASF0 +000000000001a036 l .debug_str 0000000000000000 .LASF1 +000000000001a0f0 l .debug_str 0000000000000000 .LASF2 +000000000001a0bc l .debug_str 0000000000000000 .LASF3 +000000000001a029 l .debug_str 0000000000000000 .LASF4 +000000000001a09c l .debug_str 0000000000000000 .LASF5 +000000000001a044 l .debug_str 0000000000000000 .LASF6 +000000000001a07a l .debug_str 0000000000000000 .LASF7 +000000000001a097 l .debug_str 0000000000000000 .LASF8 +000000000001a01b l .debug_str 0000000000000000 .LASF9 +000000000001a0e4 l .debug_str 0000000000000000 .LASF10 +000000000001a091 l .debug_str 0000000000000000 .LASF11 +000000000001a0a5 l .debug_str 0000000000000000 .LASF15 +00000000000092cc l .text 0000000000000000 .LFB4 +00000000000092f6 l .text 0000000000000000 .LFE4 +000000000001a056 l .debug_str 0000000000000000 .LASF16 +0000000000019d91 l .debug_loc 0000000000000000 .LLST0 +00000000000092f2 l .text 0000000000000000 .LVL2 +000000000001a0db l .debug_str 0000000000000000 .LASF17 +00000000000092cc l .text 0000000000000000 .LVL0 +00000000000092e8 l .text 0000000000000000 .LVL1 +00000000000092f4 l .text 0000000000000000 .LVL3 +0000000000026a79 l .debug_info 0000000000000000 .Ldebug_info0 +00000000000092cc l .text 0000000000000000 .L0 +00000000000092cc l .text 0000000000000000 .L0 +00000000000092cc l .text 0000000000000000 .L0 +00000000000092d2 l .text 0000000000000000 .L0 +00000000000092d2 l .text 0000000000000000 .L0 +00000000000092d4 l .text 0000000000000000 .L0 +00000000000092e8 l .text 0000000000000000 .L0 +00000000000092ea l .text 0000000000000000 .L0 +00000000000092f2 l .text 0000000000000000 .L0 +00000000000092f2 l .text 0000000000000000 .L0 +00000000000092f2 l .text 0000000000000000 .L0 +00000000000092f6 l .text 0000000000000000 .L0 +0000000000003268 l .debug_frame 0000000000000000 .L0 +00000000000092cc l .text 0000000000000000 .L0 +00000000000092f6 l .text 0000000000000000 .L0 +00000000000092d4 l .text 0000000000000000 .L0 +00000000000092ea l .text 0000000000000000 .L0 +00000000000092f2 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_psfa_addopen.c +0000000000015c88 l .rodata 0000000000000000 .LC0 +0000000000009314 l .text 0000000000000000 .L0 +0000000000015ca8 l .rodata 0000000000000000 .LC1 +0000000000009320 l .text 0000000000000000 .L0 +0000000000009314 l .text 0000000000000000 .L2 +0000000000009330 l .text 0000000000000000 .L3 +0000000000009384 l .text 0000000000000000 .L4 +000000000000a6a7 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000001a292 l .debug_str 0000000000000000 .LASF36 +000000000001a22c l .debug_str 0000000000000000 .LASF37 +000000000001a36d l .debug_str 0000000000000000 .LASF38 +0000000000002c20 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000001a7a3 l .debug_line 0000000000000000 .Ldebug_line0 +000000000001a209 l .debug_str 0000000000000000 .LASF0 +000000000001a21e l .debug_str 0000000000000000 .LASF1 +000000000001a425 l .debug_str 0000000000000000 .LASF2 +000000000001a278 l .debug_str 0000000000000000 .LASF3 +000000000001a1f0 l .debug_str 0000000000000000 .LASF4 +000000000001a1e7 l .debug_str 0000000000000000 .LASF5 +000000000001a266 l .debug_str 0000000000000000 .LASF6 +000000000001a349 l .debug_str 0000000000000000 .LASF8 +000000000001a396 l .debug_str 0000000000000000 .LASF7 +000000000001a28b l .debug_str 0000000000000000 .LASF9 +000000000001a1cc l .debug_str 0000000000000000 .LASF10 +000000000001a3ee l .debug_str 0000000000000000 .LASF11 +000000000001a45f l .debug_str 0000000000000000 .LASF12 +000000000001a3e0 l .debug_str 0000000000000000 .LASF13 +000000000001a46a l .debug_str 0000000000000000 .LASF14 +000000000001a3f3 l .debug_str 0000000000000000 .LASF15 +000000000001a494 l .debug_str 0000000000000000 .LASF39 +000000000001a40e l .debug_str 0000000000000000 .LASF16 +000000000001a476 l .debug_str 0000000000000000 .LASF17 +000000000001a3b2 l .debug_str 0000000000000000 .LASF18 +000000000001a3c9 l .debug_str 0000000000000000 .LASF19 +000000000001a351 l .debug_str 0000000000000000 .LASF22 +000000000001a4a9 l .debug_str 0000000000000000 .LASF20 +000000000001a342 l .debug_str 0000000000000000 .LASF21 +000000000001a43f l .debug_str 0000000000000000 .LASF23 +000000000001a458 l .debug_str 0000000000000000 .LASF24 +000000000001a3ad l .debug_str 0000000000000000 .LASF25 +000000000001a465 l .debug_str 0000000000000000 .LASF26 +000000000001a48e l .debug_str 0000000000000000 .LASF27 +000000000001a245 l .debug_str 0000000000000000 .LASF40 +00000000000092f6 l .text 0000000000000000 .LFB4 +0000000000009398 l .text 0000000000000000 .LFE4 +000000000001a1da l .debug_str 0000000000000000 .LASF28 +0000000000019df3 l .debug_loc 0000000000000000 .LLST0 +0000000000019e68 l .debug_loc 0000000000000000 .LLST1 +0000000000019eca l .debug_loc 0000000000000000 .LLST2 +0000000000019f2c l .debug_loc 0000000000000000 .LLST3 +0000000000019f8e l .debug_loc 0000000000000000 .LLST4 +000000000001a1fd l .debug_str 0000000000000000 .LASF29 +0000000000019ff0 l .debug_loc 0000000000000000 .LLST5 +000000000001a013 l .debug_loc 0000000000000000 .LLST6 +000000000001a203 l .debug_str 0000000000000000 .LASF30 +000000000001a049 l .debug_loc 0000000000000000 .LLST7 +0000000000009330 l .text 0000000000000000 .LVL4 +0000000000009340 l .text 0000000000000000 .LVL6 +000000000000934e l .text 0000000000000000 .LVL9 +0000000000009376 l .text 0000000000000000 .LVL11 +0000000000009382 l .text 0000000000000000 .LVL12 +000000000001a215 l .debug_str 0000000000000000 .LASF31 +000000000001a38f l .debug_str 0000000000000000 .LASF32 +000000000001a1d3 l .debug_str 0000000000000000 .LASF33 +000000000001a4af l .debug_str 0000000000000000 .LASF34 +000000000001a42f l .debug_str 0000000000000000 .LASF35 +00000000000092f6 l .text 0000000000000000 .LVL0 +0000000000009328 l .text 0000000000000000 .LVL3 +0000000000009334 l .text 0000000000000000 .LVL5 +000000000000938c l .text 0000000000000000 .LVL15 +0000000000009320 l .text 0000000000000000 .LVL2 +000000000000931c l .text 0000000000000000 .LVL1 +000000000000938a l .text 0000000000000000 .LVL14 +0000000000009350 l .text 0000000000000000 .LVL10 +0000000000009388 l .text 0000000000000000 .LVL13 +0000000000009342 l .text 0000000000000000 .LVL7 +0000000000009346 l .text 0000000000000000 .LVL8 +000000000000938e l .text 0000000000000000 .LVL16 +0000000000026b6b l .debug_info 0000000000000000 .Ldebug_info0 +00000000000092f6 l .text 0000000000000000 .L0 +00000000000092f6 l .text 0000000000000000 .L0 +00000000000092f6 l .text 0000000000000000 .L0 +00000000000092f6 l .text 0000000000000000 .L0 +00000000000092f6 l .text 0000000000000000 .L0 +00000000000092f6 l .text 0000000000000000 .L0 +00000000000092f6 l .text 0000000000000000 .L0 +0000000000009308 l .text 0000000000000000 .L0 +000000000000930c l .text 0000000000000000 .L0 +0000000000009310 l .text 0000000000000000 .L0 +0000000000009314 l .text 0000000000000000 .L0 +0000000000009332 l .text 0000000000000000 .L0 +0000000000009338 l .text 0000000000000000 .L0 +0000000000009338 l .text 0000000000000000 .L0 +0000000000009338 l .text 0000000000000000 .L0 +0000000000009342 l .text 0000000000000000 .L0 +0000000000009342 l .text 0000000000000000 .L0 +0000000000009342 l .text 0000000000000000 .L0 +0000000000009350 l .text 0000000000000000 .L0 +0000000000009350 l .text 0000000000000000 .L0 +0000000000009352 l .text 0000000000000000 .L0 +0000000000009354 l .text 0000000000000000 .L0 +0000000000009354 l .text 0000000000000000 .L0 +0000000000009356 l .text 0000000000000000 .L0 +0000000000009360 l .text 0000000000000000 .L0 +0000000000009362 l .text 0000000000000000 .L0 +0000000000009362 l .text 0000000000000000 .L0 +0000000000009366 l .text 0000000000000000 .L0 +0000000000009366 l .text 0000000000000000 .L0 +000000000000936a l .text 0000000000000000 .L0 +000000000000936a l .text 0000000000000000 .L0 +000000000000936e l .text 0000000000000000 .L0 +0000000000009376 l .text 0000000000000000 .L0 +0000000000009382 l .text 0000000000000000 .L0 +0000000000009382 l .text 0000000000000000 .L0 +0000000000009384 l .text 0000000000000000 .L0 +0000000000009398 l .text 0000000000000000 .L0 +00000000000032a0 l .debug_frame 0000000000000000 .L0 +00000000000092f6 l .text 0000000000000000 .L0 +0000000000009398 l .text 0000000000000000 .L0 +0000000000009386 l .text 0000000000000000 .L0 +0000000000009308 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_psfa_destroy.c +0000000000015cc8 l .rodata 0000000000000000 .LC0 +00000000000093a2 l .text 0000000000000000 .L0 +0000000000015cd8 l .rodata 0000000000000000 .LC1 +00000000000093ae l .text 0000000000000000 .L0 +00000000000093be l .text 0000000000000000 .L2 +00000000000093d2 l .text 0000000000000000 .L4 +00000000000093c2 l .text 0000000000000000 .L3 +000000000000a818 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000001a558 l .debug_str 0000000000000000 .LASF23 +000000000001a62b l .debug_str 0000000000000000 .LASF24 +000000000001a4f7 l .debug_str 0000000000000000 .LASF25 +0000000000002c40 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000001aa19 l .debug_line 0000000000000000 .Ldebug_line0 +000000000001a519 l .debug_str 0000000000000000 .LASF0 +000000000001a525 l .debug_str 0000000000000000 .LASF1 +000000000001a6ea l .debug_str 0000000000000000 .LASF2 +000000000001a545 l .debug_str 0000000000000000 .LASF3 +000000000001a644 l .debug_str 0000000000000000 .LASF4 +000000000001a4e5 l .debug_str 0000000000000000 .LASF5 +000000000001a533 l .debug_str 0000000000000000 .LASF6 +000000000001a651 l .debug_str 0000000000000000 .LASF7 +000000000001a6b3 l .debug_str 0000000000000000 .LASF8 +000000000001a6f4 l .debug_str 0000000000000000 .LASF9 +000000000001a6a5 l .debug_str 0000000000000000 .LASF10 +000000000001a6fa l .debug_str 0000000000000000 .LASF11 +000000000001a6b8 l .debug_str 0000000000000000 .LASF26 +000000000001a724 l .debug_str 0000000000000000 .LASF27 +000000000001a6d3 l .debug_str 0000000000000000 .LASF12 +000000000001a706 l .debug_str 0000000000000000 .LASF13 +000000000001a4ce l .debug_str 0000000000000000 .LASF14 +000000000001a689 l .debug_str 0000000000000000 .LASF15 +000000000001a60f l .debug_str 0000000000000000 .LASF28 +000000000001a739 l .debug_str 0000000000000000 .LASF16 +000000000001a608 l .debug_str 0000000000000000 .LASF17 +000000000001a71e l .debug_str 0000000000000000 .LASF18 +000000000001a668 l .debug_str 0000000000000000 .LASF29 +0000000000009398 l .text 0000000000000000 .LFB4 +00000000000093e0 l .text 0000000000000000 .LFE4 +000000000001a4c1 l .debug_str 0000000000000000 .LASF30 +000000000001a096 l .debug_loc 0000000000000000 .LLST0 +000000000001a4bc l .debug_str 0000000000000000 .LASF19 +000000000001a11e l .debug_loc 0000000000000000 .LLST1 +000000000001a4b7 l .debug_str 0000000000000000 .LASF20 +00000000000093be l .text 0000000000000000 .LVL2 +00000000000093dc l .text 0000000000000000 .LVL7 +000000000001a4ee l .debug_str 0000000000000000 .LASF21 +000000000001a6a0 l .debug_str 0000000000000000 .LASF22 +0000000000009398 l .text 0000000000000000 .LVL0 +00000000000093b6 l .text 0000000000000000 .LVL1 +00000000000093c2 l .text 0000000000000000 .LVL3 +00000000000093cc l .text 0000000000000000 .LVL4 +00000000000093d2 l .text 0000000000000000 .LVL5 +0000000000026e96 l .debug_info 0000000000000000 .Ldebug_info0 +0000000000009398 l .text 0000000000000000 .L0 +0000000000009398 l .text 0000000000000000 .L0 +0000000000009398 l .text 0000000000000000 .L0 +0000000000009398 l .text 0000000000000000 .L0 +0000000000009398 l .text 0000000000000000 .L0 +0000000000009398 l .text 0000000000000000 .L0 +00000000000093a0 l .text 0000000000000000 .L0 +00000000000093a2 l .text 0000000000000000 .L0 +00000000000093c0 l .text 0000000000000000 .L0 +00000000000093c0 l .text 0000000000000000 .L0 +00000000000093c0 l .text 0000000000000000 .L0 +00000000000093c2 l .text 0000000000000000 .L0 +00000000000093c2 l .text 0000000000000000 .L0 +00000000000093c4 l .text 0000000000000000 .L0 +00000000000093c4 l .text 0000000000000000 .L0 +00000000000093c8 l .text 0000000000000000 .L0 +00000000000093c8 l .text 0000000000000000 .L0 +00000000000093d2 l .text 0000000000000000 .L0 +00000000000093d2 l .text 0000000000000000 .L0 +00000000000093d4 l .text 0000000000000000 .L0 +00000000000093dc l .text 0000000000000000 .L0 +00000000000093dc l .text 0000000000000000 .L0 +00000000000093e0 l .text 0000000000000000 .L0 +00000000000032f0 l .debug_frame 0000000000000000 .L0 +0000000000009398 l .text 0000000000000000 .L0 +00000000000093e0 l .text 0000000000000000 .L0 +00000000000093ca l .text 0000000000000000 .L0 +00000000000093a0 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_psfa_init.c +000000000000a94e l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000001a858 l .debug_str 0000000000000000 .LASF12 +000000000001a75a l .debug_str 0000000000000000 .LASF13 +000000000001a818 l .debug_str 0000000000000000 .LASF14 +0000000000002c60 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000001abcc l .debug_line 0000000000000000 .Ldebug_line0 +000000000001a7f6 l .debug_str 0000000000000000 .LASF0 +000000000001a79f l .debug_str 0000000000000000 .LASF1 +000000000001a80e l .debug_str 0000000000000000 .LASF2 +000000000001a7e3 l .debug_str 0000000000000000 .LASF3 +000000000001a74d l .debug_str 0000000000000000 .LASF4 +000000000001a7cd l .debug_str 0000000000000000 .LASF5 +000000000001a776 l .debug_str 0000000000000000 .LASF6 +000000000001a788 l .debug_str 0000000000000000 .LASF7 +000000000001a7ad l .debug_str 0000000000000000 .LASF8 +000000000001a770 l .debug_str 0000000000000000 .LASF9 +000000000001a73f l .debug_str 0000000000000000 .LASF10 +000000000001a802 l .debug_str 0000000000000000 .LASF11 +000000000001a7b2 l .debug_str 0000000000000000 .LASF15 +000000000001a83a l .debug_str 0000000000000000 .LASF16 +00000000000093e0 l .text 0000000000000000 .LFB0 +00000000000093e8 l .text 0000000000000000 .LFE0 +000000000001a7d6 l .debug_str 0000000000000000 .LASF17 +000000000001a154 l .debug_loc 0000000000000000 .LLST0 +00000000000093e0 l .text 0000000000000000 .LVL0 +00000000000093e6 l .text 0000000000000000 .LVL1 +000000000002704b l .debug_info 0000000000000000 .Ldebug_info0 +00000000000093e0 l .text 0000000000000000 .L0 +00000000000093e0 l .text 0000000000000000 .L0 +00000000000093e0 l .text 0000000000000000 .L0 +00000000000093e4 l .text 0000000000000000 .L0 +00000000000093e4 l .text 0000000000000000 .L0 +00000000000093e8 l .text 0000000000000000 .L0 +0000000000003330 l .debug_frame 0000000000000000 .L0 +00000000000093e0 l .text 0000000000000000 .L0 +00000000000093e8 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_psa_init.c +0000000000015cf8 l .rodata 0000000000000000 .LC0 +00000000000093f0 l .text 0000000000000000 .L0 +0000000000015d00 l .rodata 0000000000000000 .LC1 +00000000000093fc l .text 0000000000000000 .L0 +000000000000940c l .text 0000000000000000 .L2 +0000000000009434 l .text 0000000000000000 .L3 +0000000000009422 l .text 0000000000000000 .L7 +000000000000942c l .text 0000000000000000 .L4 +000000000000a9eb l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000001a9ca l .debug_str 0000000000000000 .LASF37 +000000000001ab20 l .debug_str 0000000000000000 .LASF38 +000000000001a94f l .debug_str 0000000000000000 .LASF39 +0000000000002c80 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000001ac95 l .debug_line 0000000000000000 .Ldebug_line0 +000000000001ab7c l .debug_str 0000000000000000 .LASF0 +000000000001ab98 l .debug_str 0000000000000000 .LASF4 +000000000001a980 l .debug_str 0000000000000000 .LASF1 +000000000001ab35 l .debug_str 0000000000000000 .LASF2 +000000000001a933 l .debug_str 0000000000000000 .LASF3 +000000000001ab88 l .debug_str 0000000000000000 .LASF5 +000000000001aacf l .debug_str 0000000000000000 .LASF6 +000000000001a92a l .debug_str 0000000000000000 .LASF7 +000000000001aa81 l .debug_str 0000000000000000 .LASF8 +000000000001aa93 l .debug_str 0000000000000000 .LASF9 +000000000001aae2 l .debug_str 0000000000000000 .LASF10 +000000000001aaf9 l .debug_str 0000000000000000 .LASF11 +000000000001ab47 l .debug_str 0000000000000000 .LASF12 +000000000001a908 l .debug_str 0000000000000000 .LASF13 +000000000001ab1b l .debug_str 0000000000000000 .LASF14 +000000000001ab50 l .debug_str 0000000000000000 .LASF15 +000000000001ab0d l .debug_str 0000000000000000 .LASF16 +000000000001ab68 l .debug_str 0000000000000000 .LASF17 +000000000001ab01 l .debug_str 0000000000000000 .LASF18 +000000000001aaae l .debug_str 0000000000000000 .LASF20 +000000000001a921 l .debug_str 0000000000000000 .LASF19 +000000000001a90f l .debug_str 0000000000000000 .LASF21 +000000000001a993 l .debug_str 0000000000000000 .LASF22 +000000000001aabd l .debug_str 0000000000000000 .LASF23 +000000000001aadc l .debug_str 0000000000000000 .LASF24 +000000000001a9c1 l .debug_str 0000000000000000 .LASF25 +000000000001aa7a l .debug_str 0000000000000000 .LASF26 +000000000001ab74 l .debug_str 0000000000000000 .LASF27 +000000000001a9b1 l .debug_str 0000000000000000 .LASF28 +000000000001ab56 l .debug_str 0000000000000000 .LASF29 +000000000001ab92 l .debug_str 0000000000000000 .LASF30 +000000000001a99c l .debug_str 0000000000000000 .LASF40 +00000000000093e8 l .text 0000000000000000 .LFB4 +0000000000009464 l .text 0000000000000000 .LFE4 +000000000001a98e l .debug_str 0000000000000000 .LASF41 +000000000001a18d l .debug_loc 0000000000000000 .LLST0 +000000000001a9bb l .debug_str 0000000000000000 .LASF31 +000000000001a215 l .debug_loc 0000000000000000 .LLST1 +000000000000940c l .text 0000000000000000 .LVL2 +000000000000941e l .text 0000000000000000 .LVL4 +000000000000942a l .text 0000000000000000 .LVL5 +0000000000009444 l .text 0000000000000000 .LVL9 +0000000000009458 l .text 0000000000000000 .LVL11 +000000000001a946 l .debug_str 0000000000000000 .LASF32 +000000000001a971 l .debug_str 0000000000000000 .LASF33 +000000000001ab3f l .debug_str 0000000000000000 .LASF34 +000000000001aa9b l .debug_str 0000000000000000 .LASF35 +000000000001a915 l .debug_str 0000000000000000 .LASF36 +00000000000093e8 l .text 0000000000000000 .LVL0 +0000000000009404 l .text 0000000000000000 .LVL1 +0000000000009416 l .text 0000000000000000 .LVL3 +0000000000009430 l .text 0000000000000000 .LVL6 +0000000000009434 l .text 0000000000000000 .LVL7 +0000000000009438 l .text 0000000000000000 .LVL8 +0000000000009450 l .text 0000000000000000 .LVL10 +000000000002712b l .debug_info 0000000000000000 .Ldebug_info0 +00000000000093e8 l .text 0000000000000000 .L0 +00000000000093e8 l .text 0000000000000000 .L0 +00000000000093e8 l .text 0000000000000000 .L0 +00000000000093e8 l .text 0000000000000000 .L0 +00000000000093e8 l .text 0000000000000000 .L0 +00000000000093e8 l .text 0000000000000000 .L0 +00000000000093ee l .text 0000000000000000 .L0 +00000000000093f0 l .text 0000000000000000 .L0 +000000000000940e l .text 0000000000000000 .L0 +000000000000940e l .text 0000000000000000 .L0 +000000000000940e l .text 0000000000000000 .L0 +0000000000009412 l .text 0000000000000000 .L0 +0000000000009412 l .text 0000000000000000 .L0 +000000000000941e l .text 0000000000000000 .L0 +000000000000941e l .text 0000000000000000 .L0 +0000000000009422 l .text 0000000000000000 .L0 +0000000000009422 l .text 0000000000000000 .L0 +000000000000942c l .text 0000000000000000 .L0 +0000000000009434 l .text 0000000000000000 .L0 +0000000000009434 l .text 0000000000000000 .L0 +0000000000009436 l .text 0000000000000000 .L0 +0000000000009438 l .text 0000000000000000 .L0 +000000000000943c l .text 0000000000000000 .L0 +000000000000943c l .text 0000000000000000 .L0 +0000000000009444 l .text 0000000000000000 .L0 +0000000000009444 l .text 0000000000000000 .L0 +0000000000009448 l .text 0000000000000000 .L0 +0000000000009448 l .text 0000000000000000 .L0 +000000000000944c l .text 0000000000000000 .L0 +0000000000009458 l .text 0000000000000000 .L0 +0000000000009458 l .text 0000000000000000 .L0 +0000000000009460 l .text 0000000000000000 .L0 +0000000000009460 l .text 0000000000000000 .L0 +0000000000009464 l .text 0000000000000000 .L0 +0000000000003358 l .debug_frame 0000000000000000 .L0 +00000000000093e8 l .text 0000000000000000 .L0 +0000000000009464 l .text 0000000000000000 .L0 +000000000000942e l .text 0000000000000000 .L0 +00000000000093ee l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_psa_destroy.c +000000000000ab5d l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000001ac3c l .debug_str 0000000000000000 .LASF29 +000000000001abc0 l .debug_str 0000000000000000 .LASF30 +000000000001abd8 l .debug_str 0000000000000000 .LASF31 +0000000000002ca0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000001aecb l .debug_line 0000000000000000 .Ldebug_line0 +000000000001adbb l .debug_str 0000000000000000 .LASF0 +000000000001add7 l .debug_str 0000000000000000 .LASF4 +000000000001abfa l .debug_str 0000000000000000 .LASF1 +000000000001ad7c l .debug_str 0000000000000000 .LASF2 +000000000001ac16 l .debug_str 0000000000000000 .LASF3 +000000000001adc7 l .debug_str 0000000000000000 .LASF5 +000000000001ad37 l .debug_str 0000000000000000 .LASF6 +000000000001abb7 l .debug_str 0000000000000000 .LASF7 +000000000001ad0b l .debug_str 0000000000000000 .LASF8 +000000000001ad1d l .debug_str 0000000000000000 .LASF9 +000000000001ad4a l .debug_str 0000000000000000 .LASF10 +000000000001ad61 l .debug_str 0000000000000000 .LASF11 +000000000001ad86 l .debug_str 0000000000000000 .LASF12 +000000000001aba1 l .debug_str 0000000000000000 .LASF13 +000000000001ad77 l .debug_str 0000000000000000 .LASF14 +000000000001ad8f l .debug_str 0000000000000000 .LASF15 +000000000001ad69 l .debug_str 0000000000000000 .LASF16 +000000000001ada7 l .debug_str 0000000000000000 .LASF17 +000000000001abae l .debug_str 0000000000000000 .LASF19 +000000000001aba8 l .debug_str 0000000000000000 .LASF21 +000000000001ac0d l .debug_str 0000000000000000 .LASF18 +000000000001ad25 l .debug_str 0000000000000000 .LASF20 +000000000001ad44 l .debug_str 0000000000000000 .LASF22 +000000000001ac33 l .debug_str 0000000000000000 .LASF23 +000000000001ad04 l .debug_str 0000000000000000 .LASF24 +000000000001adb3 l .debug_str 0000000000000000 .LASF25 +000000000001ac29 l .debug_str 0000000000000000 .LASF26 +000000000001ad95 l .debug_str 0000000000000000 .LASF27 +000000000001add1 l .debug_str 0000000000000000 .LASF28 +000000000001acec l .debug_str 0000000000000000 .LASF32 +0000000000009464 l .text 0000000000000000 .LFB4 +0000000000009468 l .text 0000000000000000 .LFE4 +000000000001ac08 l .debug_str 0000000000000000 .LASF33 +000000000001a25e l .debug_loc 0000000000000000 .LLST0 +0000000000009464 l .text 0000000000000000 .LVL0 +0000000000009466 l .text 0000000000000000 .LVL1 +00000000000273e0 l .debug_info 0000000000000000 .Ldebug_info0 +0000000000009464 l .text 0000000000000000 .L0 +0000000000009464 l .text 0000000000000000 .L0 +0000000000009464 l .text 0000000000000000 .L0 +0000000000009464 l .text 0000000000000000 .L0 +0000000000009468 l .text 0000000000000000 .L0 +0000000000003398 l .debug_frame 0000000000000000 .L0 +0000000000009464 l .text 0000000000000000 .L0 +0000000000009468 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_asprintf.c +000000000000ac58 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000001aeee l .debug_str 0000000000000000 .LASF14 +000000000001ae92 l .debug_str 0000000000000000 .LASF15 +000000000001aecc l .debug_str 0000000000000000 .LASF16 +0000000000002cc0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000001afd2 l .debug_line 0000000000000000 .Ldebug_line0 +000000000001ae78 l .debug_str 0000000000000000 .LASF0 +000000000001ae84 l .debug_str 0000000000000000 .LASF1 +000000000001aec2 l .debug_str 0000000000000000 .LASF2 +000000000001ae65 l .debug_str 0000000000000000 .LASF3 +000000000001adee l .debug_str 0000000000000000 .LASF4 +000000000001ae41 l .debug_str 0000000000000000 .LASF5 +000000000001ae0d l .debug_str 0000000000000000 .LASF6 +000000000001ae1f l .debug_str 0000000000000000 .LASF7 +000000000001ae3c l .debug_str 0000000000000000 .LASF8 +000000000001aea7 l .debug_str 0000000000000000 .LASF9 +000000000001adfb l .debug_str 0000000000000000 .LASF17 +000000000001ae53 l .debug_str 0000000000000000 .LASF10 +000000000001ade0 l .debug_str 0000000000000000 .LASF11 +000000000001aeb6 l .debug_str 0000000000000000 .LASF12 +000000000001ae36 l .debug_str 0000000000000000 .LASF13 +000000000001ae4a l .debug_str 0000000000000000 .LASF18 +0000000000009468 l .text 0000000000000000 .LFB4 +000000000000948a l .text 0000000000000000 .LFE4 +000000000001a297 l .debug_loc 0000000000000000 .LLST0 +000000000001a2d0 l .debug_loc 0000000000000000 .LLST1 +0000000000009484 l .text 0000000000000000 .LVL1 +000000000001ae5b l .debug_str 0000000000000000 .LASF19 +0000000000009468 l .text 0000000000000000 .LVL0 +0000000000027596 l .debug_info 0000000000000000 .Ldebug_info0 +0000000000009468 l .text 0000000000000000 .L0 +0000000000009468 l .text 0000000000000000 .L0 +0000000000009468 l .text 0000000000000000 .L0 +0000000000009468 l .text 0000000000000000 .L0 +0000000000009468 l .text 0000000000000000 .L0 +000000000000946c l .text 0000000000000000 .L0 +000000000000946e l .text 0000000000000000 .L0 +0000000000009470 l .text 0000000000000000 .L0 +000000000000947a l .text 0000000000000000 .L0 +000000000000947c l .text 0000000000000000 .L0 +000000000000947c l .text 0000000000000000 .L0 +0000000000009484 l .text 0000000000000000 .L0 +0000000000009484 l .text 0000000000000000 .L0 +0000000000009484 l .text 0000000000000000 .L0 +000000000000948a l .text 0000000000000000 .L0 +00000000000033c0 l .debug_frame 0000000000000000 .L0 +0000000000009468 l .text 0000000000000000 .L0 +000000000000948a l .text 0000000000000000 .L0 +0000000000009486 l .text 0000000000000000 .L0 +0000000000009470 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_snprintf.c +00000000000094c6 l .text 0000000000000000 .L2 +00000000000094ae l .text 0000000000000000 .L3 +000000000000ad19 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000001b077 l .debug_str 0000000000000000 .LASF36 +000000000001afce l .debug_str 0000000000000000 .LASF37 +000000000001aff5 l .debug_str 0000000000000000 .LASF38 +0000000000002ce0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000001b132 l .debug_line 0000000000000000 .Ldebug_line0 +000000000001b21c l .debug_str 0000000000000000 .LASF0 +000000000001b127 l .debug_str 0000000000000000 .LASF1 +000000000001b1ef l .debug_str 0000000000000000 .LASF2 +000000000001b05c l .debug_str 0000000000000000 .LASF3 +000000000001b170 l .debug_str 0000000000000000 .LASF4 +000000000001afe3 l .debug_str 0000000000000000 .LASF5 +000000000001b04a l .debug_str 0000000000000000 .LASF6 +000000000001b135 l .debug_str 0000000000000000 .LASF8 +000000000001b184 l .debug_str 0000000000000000 .LASF7 +000000000001afb5 l .debug_str 0000000000000000 .LASF9 +000000000001b212 l .debug_str 0000000000000000 .LASF10 +000000000001b029 l .debug_str 0000000000000000 .LASF11 +000000000001afbc l .debug_str 0000000000000000 .LASF39 +000000000001b06f l .debug_str 0000000000000000 .LASF12 +000000000001b1b3 l .debug_str 0000000000000000 .LASF13 +000000000001b1a7 l .debug_str 0000000000000000 .LASF14 +000000000001b228 l .debug_str 0000000000000000 .LASF15 +000000000001b207 l .debug_str 0000000000000000 .LASF16 +000000000001af9e l .debug_str 0000000000000000 .LASF23 +000000000001b024 l .debug_str 0000000000000000 .LASF17 +000000000001b1ea l .debug_str 0000000000000000 .LASF18 +000000000001b217 l .debug_str 0000000000000000 .LASF19 +000000000001b1d3 l .debug_str 0000000000000000 .LASF20 +000000000001b13d l .debug_str 0000000000000000 .LASF21 +000000000001b19b l .debug_str 0000000000000000 .LASF22 +000000000001b156 l .debug_str 0000000000000000 .LASF24 +000000000001b200 l .debug_str 0000000000000000 .LASF25 +000000000001b1f9 l .debug_str 0000000000000000 .LASF26 +000000000001b17d l .debug_str 0000000000000000 .LASF27 +000000000001afec l .debug_str 0000000000000000 .LASF40 +000000000000948a l .text 0000000000000000 .LFB4 +00000000000094d2 l .text 0000000000000000 .LFE4 +000000000001a309 l .debug_loc 0000000000000000 .LLST0 +000000000001b038 l .debug_str 0000000000000000 .LASF28 +000000000001a37e l .debug_loc 0000000000000000 .LLST1 +000000000001b169 l .debug_str 0000000000000000 .LASF29 +000000000001a3e0 l .debug_loc 0000000000000000 .LLST2 +000000000001b148 l .debug_str 0000000000000000 .LASF30 +000000000001b017 l .debug_str 0000000000000000 .LASF31 +000000000001afae l .debug_str 0000000000000000 .LASF32 +000000000001a43f l .debug_loc 0000000000000000 .LLST3 +000000000001a4ba l .debug_loc 0000000000000000 .LLST4 +00000000000094ae l .text 0000000000000000 .LVL4 +00000000000094be l .text 0000000000000000 .LVL6 +00000000000094d0 l .text 0000000000000000 .LVL11 +000000000001b1d9 l .debug_str 0000000000000000 .LASF33 +000000000001b03d l .debug_str 0000000000000000 .LASF34 +000000000001b1c1 l .debug_str 0000000000000000 .LASF35 +000000000000948a l .text 0000000000000000 .LVL0 +00000000000094a6 l .text 0000000000000000 .LVL3 +00000000000094c6 l .text 0000000000000000 .LVL9 +00000000000094c8 l .text 0000000000000000 .LVL10 +00000000000094a4 l .text 0000000000000000 .LVL2 +00000000000094a2 l .text 0000000000000000 .LVL1 +00000000000094c2 l .text 0000000000000000 .LVL7 +00000000000094b4 l .text 0000000000000000 .LVL5 +00000000000094c4 l .text 0000000000000000 .LVL8 +00000000000276df l .debug_info 0000000000000000 .Ldebug_info0 +000000000000948a l .text 0000000000000000 .L0 +000000000000948a l .text 0000000000000000 .L0 +000000000000948a l .text 0000000000000000 .L0 +000000000000948a l .text 0000000000000000 .L0 +000000000000948a l .text 0000000000000000 .L0 +000000000000948a l .text 0000000000000000 .L0 +000000000000948a l .text 0000000000000000 .L0 +0000000000009490 l .text 0000000000000000 .L0 +000000000000949c l .text 0000000000000000 .L0 +000000000000949e l .text 0000000000000000 .L0 +00000000000094ae l .text 0000000000000000 .L0 +00000000000094ae l .text 0000000000000000 .L0 +00000000000094b0 l .text 0000000000000000 .L0 +00000000000094b4 l .text 0000000000000000 .L0 +00000000000094b6 l .text 0000000000000000 .L0 +00000000000094b6 l .text 0000000000000000 .L0 +00000000000094be l .text 0000000000000000 .L0 +00000000000094be l .text 0000000000000000 .L0 +00000000000094be l .text 0000000000000000 .L0 +00000000000094c6 l .text 0000000000000000 .L0 +00000000000094d0 l .text 0000000000000000 .L0 +00000000000094d2 l .text 0000000000000000 .L0 +00000000000033f8 l .debug_frame 0000000000000000 .L0 +000000000000948a l .text 0000000000000000 .L0 +00000000000094d2 l .text 0000000000000000 .L0 +00000000000094c0 l .text 0000000000000000 .L0 +0000000000009490 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_vasprintf.c +0000000000015d18 l .rodata 0000000000000000 .LC0 +00000000000094e4 l .text 0000000000000000 .L0 +0000000000015d28 l .rodata 0000000000000000 .LC1 +00000000000094f0 l .text 0000000000000000 .L0 +0000000000015d40 l .rodata 0000000000000000 .LC2 +0000000000009556 l .text 0000000000000000 .L0 +00000000000094e4 l .text 0000000000000000 .L2 +0000000000009500 l .text 0000000000000000 .L3 +000000000000956e l .text 0000000000000000 .L7 +0000000000009564 l .text 0000000000000000 .L5 +0000000000009572 l .text 0000000000000000 .L6 +00000000000094f0 l .text 0000000000000000 .L12 +0000000000009576 l .text 0000000000000000 .L4 +000000000000ae7a l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000001b2f4 l .debug_str 0000000000000000 .LASF38 +000000000001b4b9 l .debug_str 0000000000000000 .LASF39 +000000000001b27c l .debug_str 0000000000000000 .LASF40 +0000000000002d00 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000001b35b l .debug_line 0000000000000000 .Ldebug_line0 +000000000001b415 l .debug_str 0000000000000000 .LASF0 +000000000001b2bf l .debug_str 0000000000000000 .LASF1 +000000000001b46f l .debug_str 0000000000000000 .LASF2 +000000000001b260 l .debug_str 0000000000000000 .LASF3 +000000000001b3d8 l .debug_str 0000000000000000 .LASF4 +000000000001b257 l .debug_str 0000000000000000 .LASF5 +000000000001b2da l .debug_str 0000000000000000 .LASF6 +000000000001b3a4 l .debug_str 0000000000000000 .LASF8 +000000000001b3f2 l .debug_str 0000000000000000 .LASF7 +000000000001b23e l .debug_str 0000000000000000 .LASF9 +000000000001b498 l .debug_str 0000000000000000 .LASF10 +000000000001b492 l .debug_str 0000000000000000 .LASF11 +000000000001b2b0 l .debug_str 0000000000000000 .LASF12 +000000000001b245 l .debug_str 0000000000000000 .LASF41 +000000000001b2ec l .debug_str 0000000000000000 .LASF13 +000000000001b432 l .debug_str 0000000000000000 .LASF14 +000000000001b421 l .debug_str 0000000000000000 .LASF15 +000000000001b4ac l .debug_str 0000000000000000 .LASF16 +000000000001b479 l .debug_str 0000000000000000 .LASF17 +000000000001b22e l .debug_str 0000000000000000 .LASF24 +000000000001b2ab l .debug_str 0000000000000000 .LASF18 +000000000001b46a l .debug_str 0000000000000000 .LASF19 +000000000001b49d l .debug_str 0000000000000000 .LASF20 +000000000001b3ec l .debug_str 0000000000000000 .LASF21 +000000000001b3ac l .debug_str 0000000000000000 .LASF22 +000000000001b409 l .debug_str 0000000000000000 .LASF23 +000000000001b3c5 l .debug_str 0000000000000000 .LASF25 +000000000001b48b l .debug_str 0000000000000000 .LASF26 +000000000001b484 l .debug_str 0000000000000000 .LASF27 +000000000001b3e5 l .debug_str 0000000000000000 .LASF28 +000000000001b4a2 l .debug_str 0000000000000000 .LASF42 +00000000000094d2 l .text 0000000000000000 .LFB4 +0000000000009584 l .text 0000000000000000 .LFE4 +000000000001a4dd l .debug_loc 0000000000000000 .LLST0 +000000000001a552 l .debug_loc 0000000000000000 .LLST1 +000000000001a5b4 l .debug_loc 0000000000000000 .LLST2 +000000000001b3b7 l .debug_str 0000000000000000 .LASF29 +000000000001b29e l .debug_str 0000000000000000 .LASF30 +000000000001a629 l .debug_loc 0000000000000000 .LLST3 +000000000001a64c l .debug_loc 0000000000000000 .LLST4 +000000000001b452 l .debug_str 0000000000000000 .LASF31 +000000000001a66f l .debug_loc 0000000000000000 .LLST5 +0000000000009500 l .text 0000000000000000 .LVL3 +000000000000950e l .text 0000000000000000 .LVL6 +000000000000951c l .text 0000000000000000 .LVL7 +000000000000952c l .text 0000000000000000 .LVL8 +000000000000953e l .text 0000000000000000 .LVL10 +000000000000954c l .text 0000000000000000 .LVL11 +000000000000956e l .text 0000000000000000 .LVL13 +000000000001b273 l .debug_str 0000000000000000 .LASF32 +000000000001b440 l .debug_str 0000000000000000 .LASF33 +000000000001b2cd l .debug_str 0000000000000000 .LASF34 +000000000001b4b2 l .debug_str 0000000000000000 .LASF35 +000000000001b459 l .debug_str 0000000000000000 .LASF36 +000000000001b42d l .debug_str 0000000000000000 .LASF37 +00000000000094d2 l .text 0000000000000000 .LVL0 +00000000000094f0 l .text 0000000000000000 .LVL2 +0000000000009504 l .text 0000000000000000 .LVL4 +000000000000957e l .text 0000000000000000 .LVL18 +000000000000957c l .text 0000000000000000 .LVL17 +00000000000094ec l .text 0000000000000000 .LVL1 +0000000000009580 l .text 0000000000000000 .LVL19 +0000000000009506 l .text 0000000000000000 .LVL5 +0000000000009576 l .text 0000000000000000 .LVL15 +000000000000952e l .text 0000000000000000 .LVL9 +000000000000957a l .text 0000000000000000 .LVL16 +0000000000009566 l .text 0000000000000000 .LVL12 +0000000000009572 l .text 0000000000000000 .LVL14 +00000000000279d6 l .debug_info 0000000000000000 .Ldebug_info0 +00000000000094d2 l .text 0000000000000000 .L0 +00000000000094d2 l .text 0000000000000000 .L0 +00000000000094d2 l .text 0000000000000000 .L0 +00000000000094d2 l .text 0000000000000000 .L0 +00000000000094d2 l .text 0000000000000000 .L0 +00000000000094d2 l .text 0000000000000000 .L0 +00000000000094d2 l .text 0000000000000000 .L0 +00000000000094d2 l .text 0000000000000000 .L0 +00000000000094d2 l .text 0000000000000000 .L0 +00000000000094de l .text 0000000000000000 .L0 +00000000000094e2 l .text 0000000000000000 .L0 +00000000000094e4 l .text 0000000000000000 .L0 +00000000000094f0 l .text 0000000000000000 .L0 +0000000000009502 l .text 0000000000000000 .L0 +0000000000009506 l .text 0000000000000000 .L0 +0000000000009506 l .text 0000000000000000 .L0 +0000000000009506 l .text 0000000000000000 .L0 +000000000000950e l .text 0000000000000000 .L0 +000000000000951c l .text 0000000000000000 .L0 +000000000000951c l .text 0000000000000000 .L0 +000000000000952e l .text 0000000000000000 .L0 +000000000000952e l .text 0000000000000000 .L0 +0000000000009530 l .text 0000000000000000 .L0 +000000000000953e l .text 0000000000000000 .L0 +000000000000953e l .text 0000000000000000 .L0 +000000000000954c l .text 0000000000000000 .L0 +000000000000954c l .text 0000000000000000 .L0 +000000000000954c l .text 0000000000000000 .L0 +0000000000009550 l .text 0000000000000000 .L0 +0000000000009556 l .text 0000000000000000 .L0 +0000000000009564 l .text 0000000000000000 .L0 +0000000000009564 l .text 0000000000000000 .L0 +0000000000009564 l .text 0000000000000000 .L0 +000000000000956e l .text 0000000000000000 .L0 +000000000000956e l .text 0000000000000000 .L0 +0000000000009572 l .text 0000000000000000 .L0 +0000000000009572 l .text 0000000000000000 .L0 +0000000000009572 l .text 0000000000000000 .L0 +0000000000009572 l .text 0000000000000000 .L0 +0000000000009576 l .text 0000000000000000 .L0 +0000000000009576 l .text 0000000000000000 .L0 +0000000000009584 l .text 0000000000000000 .L0 +0000000000003438 l .debug_frame 0000000000000000 .L0 +00000000000094d2 l .text 0000000000000000 .L0 +0000000000009584 l .text 0000000000000000 .L0 +0000000000009578 l .text 0000000000000000 .L0 +00000000000094de l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_atoi.c +000000000000afdf l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000001b58f l .debug_str 0000000000000000 .LASF9 +000000000001b571 l .debug_str 0000000000000000 .LASF10 +000000000001b50a l .debug_str 0000000000000000 .LASF11 +0000000000002d20 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000001b65e l .debug_line 0000000000000000 .Ldebug_line0 +000000000001b583 l .debug_str 0000000000000000 .LASF0 +000000000001b52c l .debug_str 0000000000000000 .LASF1 +000000000001b567 l .debug_str 0000000000000000 .LASF2 +000000000001b54d l .debug_str 0000000000000000 .LASF3 +000000000001b4d4 l .debug_str 0000000000000000 .LASF4 +000000000001b53f l .debug_str 0000000000000000 .LASF5 +000000000001b4e1 l .debug_str 0000000000000000 .LASF6 +000000000001b4f3 l .debug_str 0000000000000000 .LASF7 +000000000001b53a l .debug_str 0000000000000000 .LASF8 +000000000001b548 l .debug_str 0000000000000000 .LASF12 +0000000000009584 l .text 0000000000000000 .LFB0 +000000000000959c l .text 0000000000000000 .LFE0 +000000000001b4cf l .debug_str 0000000000000000 .LASF13 +000000000001a6a5 l .debug_loc 0000000000000000 .LLST0 +0000000000009594 l .text 0000000000000000 .LVL1 +000000000001b560 l .debug_str 0000000000000000 .LASF14 +0000000000009584 l .text 0000000000000000 .LVL0 +0000000000027d7a l .debug_info 0000000000000000 .Ldebug_info0 +0000000000009584 l .text 0000000000000000 .L0 +0000000000009584 l .text 0000000000000000 .L0 +0000000000009584 l .text 0000000000000000 .L0 +0000000000009586 l .text 0000000000000000 .L0 +000000000000958a l .text 0000000000000000 .L0 +000000000000958c l .text 0000000000000000 .L0 +0000000000009594 l .text 0000000000000000 .L0 +000000000000959c l .text 0000000000000000 .L0 +0000000000003480 l .debug_frame 0000000000000000 .L0 +0000000000009584 l .text 0000000000000000 .L0 +000000000000959c l .text 0000000000000000 .L0 +0000000000009596 l .text 0000000000000000 .L0 +000000000000958c l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_strtol.c +0000000000009640 l .text 0000000000000000 .L9 +00000000000095fe l .text 0000000000000000 .L10 +000000000000960c l .text 0000000000000000 .L4 +0000000000009602 l .text 0000000000000000 .L5 +0000000000009626 l .text 0000000000000000 .L8 +0000000000009634 l .text 0000000000000000 .L1 +00000000000095ce l .text 0000000000000000 .L3 +00000000000095fa l .text 0000000000000000 .L6 +0000000000009622 l .text 0000000000000000 .L7 +000000000000b072 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000001b757 l .debug_str 0000000000000000 .LASF22 +000000000001b68c l .debug_str 0000000000000000 .LASF23 +000000000001b730 l .debug_str 0000000000000000 .LASF24 +0000000000002d40 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000001b703 l .debug_line 0000000000000000 .Ldebug_line0 +000000000001b680 l .debug_str 0000000000000000 .LASF0 +000000000001b6ce l .debug_str 0000000000000000 .LASF1 +000000000001b71e l .debug_str 0000000000000000 .LASF2 +000000000001b64d l .debug_str 0000000000000000 .LASF3 +000000000001b665 l .debug_str 0000000000000000 .LASF4 +000000000001b6e2 l .debug_str 0000000000000000 .LASF5 +000000000001b6eb l .debug_str 0000000000000000 .LASF6 +000000000001b6a6 l .debug_str 0000000000000000 .LASF7 +000000000001b752 l .debug_str 0000000000000000 .LASF8 +000000000001b63f l .debug_str 0000000000000000 .LASF9 +000000000001b712 l .debug_str 0000000000000000 .LASF10 +000000000001b6fd l .debug_str 0000000000000000 .LASF11 +000000000001b70b l .debug_str 0000000000000000 .LASF25 +000000000000959c l .text 0000000000000000 .LFB4 +0000000000009644 l .text 0000000000000000 .LFE4 +000000000001b660 l .debug_str 0000000000000000 .LASF12 +000000000001a6de l .debug_loc 0000000000000000 .LLST0 +000000000001b807 l .debug_str 0000000000000000 .LASF13 +000000000001a73c l .debug_loc 0000000000000000 .LLST1 +000000000001b6c2 l .debug_str 0000000000000000 .LASF14 +000000000001a79b l .debug_loc 0000000000000000 .LLST2 +000000000001b6dc l .debug_str 0000000000000000 .LASF15 +000000000001a7e7 l .debug_loc 0000000000000000 .LLST3 +000000000001b6c7 l .debug_str 0000000000000000 .LASF16 +000000000001a882 l .debug_loc 0000000000000000 .LLST4 +000000000001b6bd l .debug_str 0000000000000000 .LASF17 +000000000001a92c l .debug_loc 0000000000000000 .LLST5 +000000000001b6a0 l .debug_str 0000000000000000 .LASF18 +000000000001a9b3 l .debug_loc 0000000000000000 .LLST6 +00000000000095f2 l .text 0000000000000000 .LVL7 +00000000000095b8 l .text 0000000000000000 .LVL2 +00000000000095da l .text 0000000000000000 .LVL5 +0000000000009618 l .text 0000000000000000 .LVL14 +000000000001b703 l .debug_str 0000000000000000 .LASF19 +000000000001b672 l .debug_str 0000000000000000 .LASF20 +000000000001b728 l .debug_str 0000000000000000 .LASF21 +000000000000959c l .text 0000000000000000 .LVL0 +00000000000095ae l .text 0000000000000000 .LVL1 +0000000000009640 l .text 0000000000000000 .LVL19 +0000000000009642 l .text 0000000000000000 .LVL20 +0000000000009634 l .text 0000000000000000 .LVL18 +00000000000095fe l .text 0000000000000000 .LVL10 +0000000000009602 l .text 0000000000000000 .LVL11 +000000000000960a l .text 0000000000000000 .LVL12 +000000000000960c l .text 0000000000000000 .LVL13 +00000000000095f8 l .text 0000000000000000 .LVL8 +00000000000095fa l .text 0000000000000000 .LVL9 +000000000000961e l .text 0000000000000000 .LVL15 +0000000000009622 l .text 0000000000000000 .LVL16 +00000000000095ca l .text 0000000000000000 .LVL3 +0000000000009626 l .text 0000000000000000 .LVL17 +00000000000095e2 l .text 0000000000000000 .LVL6 +0000000000027e53 l .debug_info 0000000000000000 .Ldebug_info0 +00000000000095e2 l .text 0000000000000000 .LBB2 +00000000000095fa l .text 0000000000000000 .LBE2 +0000000000009602 l .text 0000000000000000 .LBB3 +000000000000960c l .text 0000000000000000 .LBE3 +000000000000959c l .text 0000000000000000 .L0 +000000000000959c l .text 0000000000000000 .L0 +000000000000959c l .text 0000000000000000 .L0 +000000000000959c l .text 0000000000000000 .L0 +000000000000959c l .text 0000000000000000 .L0 +000000000000959c l .text 0000000000000000 .L0 +00000000000095a6 l .text 0000000000000000 .L0 +00000000000095aa l .text 0000000000000000 .L0 +00000000000095ac l .text 0000000000000000 .L0 +00000000000095b0 l .text 0000000000000000 .L0 +00000000000095b8 l .text 0000000000000000 .L0 +00000000000095b8 l .text 0000000000000000 .L0 +00000000000095ba l .text 0000000000000000 .L0 +00000000000095bc l .text 0000000000000000 .L0 +00000000000095c0 l .text 0000000000000000 .L0 +00000000000095ca l .text 0000000000000000 .L0 +00000000000095ca l .text 0000000000000000 .L0 +00000000000095ca l .text 0000000000000000 .L0 +00000000000095ce l .text 0000000000000000 .L0 +00000000000095ce l .text 0000000000000000 .L0 +00000000000095da l .text 0000000000000000 .L0 +00000000000095da l .text 0000000000000000 .L0 +00000000000095e2 l .text 0000000000000000 .L0 +00000000000095e2 l .text 0000000000000000 .L0 +00000000000095e2 l .text 0000000000000000 .L0 +00000000000095ea l .text 0000000000000000 .L0 +00000000000095ea l .text 0000000000000000 .L0 +00000000000095f8 l .text 0000000000000000 .L0 +00000000000095f8 l .text 0000000000000000 .L0 +00000000000095f8 l .text 0000000000000000 .L0 +00000000000095fa l .text 0000000000000000 .L0 +00000000000095fa l .text 0000000000000000 .L0 +00000000000095fe l .text 0000000000000000 .L0 +0000000000009602 l .text 0000000000000000 .L0 +0000000000009602 l .text 0000000000000000 .L0 +0000000000009606 l .text 0000000000000000 .L0 +000000000000960c l .text 0000000000000000 .L0 +000000000000960c l .text 0000000000000000 .L0 +0000000000009610 l .text 0000000000000000 .L0 +0000000000009610 l .text 0000000000000000 .L0 +000000000000961e l .text 0000000000000000 .L0 +000000000000961e l .text 0000000000000000 .L0 +000000000000961e l .text 0000000000000000 .L0 +0000000000009622 l .text 0000000000000000 .L0 +0000000000009622 l .text 0000000000000000 .L0 +0000000000009624 l .text 0000000000000000 .L0 +0000000000009624 l .text 0000000000000000 .L0 +0000000000009626 l .text 0000000000000000 .L0 +0000000000009626 l .text 0000000000000000 .L0 +0000000000009628 l .text 0000000000000000 .L0 +0000000000009630 l .text 0000000000000000 .L0 +0000000000009630 l .text 0000000000000000 .L0 +0000000000009634 l .text 0000000000000000 .L0 +0000000000009640 l .text 0000000000000000 .L0 +0000000000009642 l .text 0000000000000000 .L0 +0000000000009642 l .text 0000000000000000 .L0 +0000000000009644 l .text 0000000000000000 .L0 +00000000000034b8 l .debug_frame 0000000000000000 .L0 +000000000000959c l .text 0000000000000000 .L0 +0000000000009644 l .text 0000000000000000 .L0 +0000000000009636 l .text 0000000000000000 .L0 +00000000000095a6 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_strtoul.c +000000000000974c l .text 0000000000000000 .L2 +00000000000096b8 l .text 0000000000000000 .L16 +00000000000096bc l .text 0000000000000000 .L4 +0000000000009722 l .text 0000000000000000 .L1 +00000000000096b0 l .text 0000000000000000 .L15 +000000000000967a l .text 0000000000000000 .L3 +00000000000096fe l .text 0000000000000000 .L11 +00000000000096ee l .text 0000000000000000 .L7 +0000000000009736 l .text 0000000000000000 .L8 +0000000000009744 l .text 0000000000000000 .L12 +000000000000969a l .text 0000000000000000 .L5 +00000000000096a2 l .text 0000000000000000 .L13 +00000000000096cc l .text 0000000000000000 .L6 +000000000000b13f l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000001b948 l .debug_str 0000000000000000 .LASF24 +000000000001b8fa l .debug_str 0000000000000000 .LASF25 +000000000001b921 l .debug_str 0000000000000000 .LASF26 +0000000000002d90 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000001b96f l .debug_line 0000000000000000 .Ldebug_line0 +000000000001b8dc l .debug_str 0000000000000000 .LASF0 +000000000001b89c l .debug_str 0000000000000000 .LASF1 +000000000001b90f l .debug_str 0000000000000000 .LASF2 +000000000001b81c l .debug_str 0000000000000000 .LASF3 +000000000001b834 l .debug_str 0000000000000000 .LASF4 +000000000001b8b0 l .debug_str 0000000000000000 .LASF5 +000000000001b85d l .debug_str 0000000000000000 .LASF6 +000000000001b875 l .debug_str 0000000000000000 .LASF7 +000000000001b943 l .debug_str 0000000000000000 .LASF8 +000000000001b80e l .debug_str 0000000000000000 .LASF9 +000000000001b8e8 l .debug_str 0000000000000000 .LASF10 +000000000001b8be l .debug_str 0000000000000000 .LASF11 +000000000001b919 l .debug_str 0000000000000000 .LASF27 +0000000000009644 l .text 0000000000000000 .LFB4 +0000000000009752 l .text 0000000000000000 .LFE4 +000000000001b82f l .debug_str 0000000000000000 .LASF12 +000000000001a9fb l .debug_loc 0000000000000000 .LLST0 +000000000001b9f8 l .debug_str 0000000000000000 .LASF13 +000000000001aa45 l .debug_loc 0000000000000000 .LLST1 +000000000001b897 l .debug_str 0000000000000000 .LASF14 +000000000001aab7 l .debug_loc 0000000000000000 .LLST2 +000000000001b8aa l .debug_str 0000000000000000 .LASF15 +000000000001ab3f l .debug_loc 0000000000000000 .LLST3 +000000000001b86f l .debug_str 0000000000000000 .LASF16 +000000000001abff l .debug_loc 0000000000000000 .LLST4 +000000000001b8f4 l .debug_str 0000000000000000 .LASF17 +000000000001b88c l .debug_str 0000000000000000 .LASF18 +000000000001ac35 l .debug_loc 0000000000000000 .LLST5 +000000000001b8b9 l .debug_str 0000000000000000 .LASF19 +000000000001ac6b l .debug_loc 0000000000000000 .LLST6 +0000000000009666 l .text 0000000000000000 .LVL2 +0000000000009686 l .text 0000000000000000 .LVL5 +0000000000009694 l .text 0000000000000000 .LVL7 +00000000000096de l .text 0000000000000000 .LVL15 +00000000000096f6 l .text 0000000000000000 .LVL16 +0000000000009710 l .text 0000000000000000 .LVL19 +000000000001b841 l .debug_str 0000000000000000 .LASF20 +000000000001b84f l .debug_str 0000000000000000 .LASF21 +000000000001b8d4 l .debug_str 0000000000000000 .LASF22 +000000000001b8c4 l .debug_str 0000000000000000 .LASF23 +0000000000009644 l .text 0000000000000000 .LVL0 +000000000000965c l .text 0000000000000000 .LVL1 +000000000000974c l .text 0000000000000000 .LVL26 +000000000000972c l .text 0000000000000000 .LVL22 +0000000000009736 l .text 0000000000000000 .LVL23 +0000000000009688 l .text 0000000000000000 .LVL6 +00000000000096b8 l .text 0000000000000000 .LVL11 +00000000000096bc l .text 0000000000000000 .LVL12 +00000000000096cc l .text 0000000000000000 .LVL14 +000000000000969a l .text 0000000000000000 .LVL8 +00000000000096b0 l .text 0000000000000000 .LVL10 +00000000000096fc l .text 0000000000000000 .LVL17 +00000000000096fe l .text 0000000000000000 .LVL18 +0000000000009722 l .text 0000000000000000 .LVL21 +000000000000973a l .text 0000000000000000 .LVL24 +000000000000973c l .text 0000000000000000 .LVL25 +00000000000096c2 l .text 0000000000000000 .LVL13 +0000000000009676 l .text 0000000000000000 .LVL3 +00000000000096a2 l .text 0000000000000000 .LVL9 +000000000000971e l .text 0000000000000000 .LVL20 +0000000000028000 l .debug_info 0000000000000000 .Ldebug_info0 +0000000000009644 l .text 0000000000000000 .L0 +0000000000009644 l .text 0000000000000000 .L0 +0000000000009644 l .text 0000000000000000 .L0 +0000000000009644 l .text 0000000000000000 .L0 +0000000000009644 l .text 0000000000000000 .L0 +0000000000009644 l .text 0000000000000000 .L0 +0000000000009644 l .text 0000000000000000 .L0 +0000000000009644 l .text 0000000000000000 .L0 +0000000000009654 l .text 0000000000000000 .L0 +0000000000009658 l .text 0000000000000000 .L0 +000000000000965a l .text 0000000000000000 .L0 +000000000000965e l .text 0000000000000000 .L0 +0000000000009666 l .text 0000000000000000 .L0 +0000000000009666 l .text 0000000000000000 .L0 +000000000000966c l .text 0000000000000000 .L0 +0000000000009676 l .text 0000000000000000 .L0 +0000000000009676 l .text 0000000000000000 .L0 +0000000000009676 l .text 0000000000000000 .L0 +000000000000967a l .text 0000000000000000 .L0 +000000000000967a l .text 0000000000000000 .L0 +0000000000009688 l .text 0000000000000000 .L0 +0000000000009688 l .text 0000000000000000 .L0 +000000000000968c l .text 0000000000000000 .L0 +000000000000968c l .text 0000000000000000 .L0 +0000000000009698 l .text 0000000000000000 .L0 +0000000000009698 l .text 0000000000000000 .L0 +0000000000009698 l .text 0000000000000000 .L0 +000000000000969a l .text 0000000000000000 .L0 +000000000000969a l .text 0000000000000000 .L0 +000000000000969e l .text 0000000000000000 .L0 +000000000000969e l .text 0000000000000000 .L0 +00000000000096a2 l .text 0000000000000000 .L0 +00000000000096a2 l .text 0000000000000000 .L0 +00000000000096a4 l .text 0000000000000000 .L0 +00000000000096ac l .text 0000000000000000 .L0 +00000000000096ac l .text 0000000000000000 .L0 +00000000000096b0 l .text 0000000000000000 .L0 +00000000000096b0 l .text 0000000000000000 .L0 +00000000000096b6 l .text 0000000000000000 .L0 +00000000000096b6 l .text 0000000000000000 .L0 +00000000000096b8 l .text 0000000000000000 .L0 +00000000000096bc l .text 0000000000000000 .L0 +00000000000096bc l .text 0000000000000000 .L0 +00000000000096c2 l .text 0000000000000000 .L0 +00000000000096c2 l .text 0000000000000000 .L0 +00000000000096c4 l .text 0000000000000000 .L0 +00000000000096c8 l .text 0000000000000000 .L0 +00000000000096cc l .text 0000000000000000 .L0 +00000000000096cc l .text 0000000000000000 .L0 +00000000000096cc l .text 0000000000000000 .L0 +00000000000096de l .text 0000000000000000 .L0 +00000000000096e0 l .text 0000000000000000 .L0 +00000000000096e0 l .text 0000000000000000 .L0 +00000000000096e4 l .text 0000000000000000 .L0 +00000000000096e6 l .text 0000000000000000 .L0 +00000000000096ea l .text 0000000000000000 .L0 +00000000000096ee l .text 0000000000000000 .L0 +00000000000096ee l .text 0000000000000000 .L0 +00000000000096fc l .text 0000000000000000 .L0 +00000000000096fc l .text 0000000000000000 .L0 +00000000000096fc l .text 0000000000000000 .L0 +00000000000096fc l .text 0000000000000000 .L0 +00000000000096fe l .text 0000000000000000 .L0 +00000000000096fe l .text 0000000000000000 .L0 +0000000000009710 l .text 0000000000000000 .L0 +0000000000009712 l .text 0000000000000000 .L0 +0000000000009712 l .text 0000000000000000 .L0 +000000000000971a l .text 0000000000000000 .L0 +000000000000971a l .text 0000000000000000 .L0 +000000000000971e l .text 0000000000000000 .L0 +000000000000971e l .text 0000000000000000 .L0 +0000000000009722 l .text 0000000000000000 .L0 +0000000000009736 l .text 0000000000000000 .L0 +0000000000009736 l .text 0000000000000000 .L0 +000000000000973a l .text 0000000000000000 .L0 +000000000000973c l .text 0000000000000000 .L0 +000000000000973c l .text 0000000000000000 .L0 +0000000000009744 l .text 0000000000000000 .L0 +0000000000009744 l .text 0000000000000000 .L0 +000000000000974c l .text 0000000000000000 .L0 +000000000000974c l .text 0000000000000000 .L0 +000000000000974e l .text 0000000000000000 .L0 +0000000000009752 l .text 0000000000000000 .L0 +0000000000003500 l .debug_frame 0000000000000000 .L0 +0000000000009644 l .text 0000000000000000 .L0 +0000000000009752 l .text 0000000000000000 .L0 +0000000000009724 l .text 0000000000000000 .L0 +0000000000009654 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_checkbase.c +00000000000097a0 l .text 0000000000000000 .L2 +000000000000979a l .text 0000000000000000 .L3 +00000000000097e0 l .text 0000000000000000 .L8 +00000000000097d4 l .text 0000000000000000 .L5 +00000000000097c8 l .text 0000000000000000 .L4 +000000000000b21f l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000001bafb l .debug_str 0000000000000000 .LASF14 +000000000001ba1f l .debug_str 0000000000000000 .LASF15 +000000000001bad9 l .debug_str 0000000000000000 .LASF16 +0000000000002db0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000001bcc5 l .debug_line 0000000000000000 .Ldebug_line0 +000000000001bab7 l .debug_str 0000000000000000 .LASF0 +000000000001ba72 l .debug_str 0000000000000000 .LASF1 +000000000001bacf l .debug_str 0000000000000000 .LASF2 +000000000001baa4 l .debug_str 0000000000000000 .LASF3 +000000000001ba0d l .debug_str 0000000000000000 .LASF4 +000000000001ba85 l .debug_str 0000000000000000 .LASF5 +000000000001ba44 l .debug_str 0000000000000000 .LASF6 +000000000001ba56 l .debug_str 0000000000000000 .LASF7 +000000000001ba80 l .debug_str 0000000000000000 .LASF8 +000000000001b9ff l .debug_str 0000000000000000 .LASF9 +000000000001bac3 l .debug_str 0000000000000000 .LASF10 +000000000001ba8e l .debug_str 0000000000000000 .LASF11 +000000000001ba36 l .debug_str 0000000000000000 .LASF17 +0000000000009752 l .text 0000000000000000 .LFB4 +00000000000097e6 l .text 0000000000000000 .LFE4 +000000000001ba6d l .debug_str 0000000000000000 .LASF12 +000000000001ad05 l .debug_loc 0000000000000000 .LLST0 +000000000001ba1a l .debug_str 0000000000000000 .LASF13 +000000000001adb4 l .debug_loc 0000000000000000 .LLST1 +000000000001ae13 l .debug_loc 0000000000000000 .LLST2 +0000000000009794 l .text 0000000000000000 .LVL6 +000000000001ba94 l .debug_str 0000000000000000 .LASF18 +0000000000009752 l .text 0000000000000000 .LVL0 +0000000000009762 l .text 0000000000000000 .LVL2 +0000000000009770 l .text 0000000000000000 .LVL3 +0000000000009796 l .text 0000000000000000 .LVL7 +000000000000979a l .text 0000000000000000 .LVL9 +00000000000097a0 l .text 0000000000000000 .LVL10 +00000000000097d0 l .text 0000000000000000 .LVL12 +00000000000097d4 l .text 0000000000000000 .LVL13 +00000000000097e0 l .text 0000000000000000 .LVL16 +000000000000978c l .text 0000000000000000 .LVL5 +00000000000097da l .text 0000000000000000 .LVL15 +000000000000975e l .text 0000000000000000 .LVL1 +000000000000977c l .text 0000000000000000 .LVL4 +0000000000009798 l .text 0000000000000000 .LVL8 +00000000000097d8 l .text 0000000000000000 .LVL14 +00000000000281fc l .debug_info 0000000000000000 .Ldebug_info0 +0000000000009752 l .text 0000000000000000 .L0 +0000000000009752 l .text 0000000000000000 .L0 +0000000000009752 l .text 0000000000000000 .L0 +000000000000975c l .text 0000000000000000 .L0 +000000000000975e l .text 0000000000000000 .L0 +000000000000975e l .text 0000000000000000 .L0 +0000000000009760 l .text 0000000000000000 .L0 +0000000000009762 l .text 0000000000000000 .L0 +0000000000009762 l .text 0000000000000000 .L0 +0000000000009762 l .text 0000000000000000 .L0 +000000000000976a l .text 0000000000000000 .L0 +000000000000976c l .text 0000000000000000 .L0 +0000000000009770 l .text 0000000000000000 .L0 +0000000000009770 l .text 0000000000000000 .L0 +0000000000009770 l .text 0000000000000000 .L0 +0000000000009778 l .text 0000000000000000 .L0 +000000000000977c l .text 0000000000000000 .L0 +000000000000977c l .text 0000000000000000 .L0 +0000000000009784 l .text 0000000000000000 .L0 +0000000000009794 l .text 0000000000000000 .L0 +0000000000009796 l .text 0000000000000000 .L0 +0000000000009796 l .text 0000000000000000 .L0 +0000000000009796 l .text 0000000000000000 .L0 +0000000000009798 l .text 0000000000000000 .L0 +000000000000979a l .text 0000000000000000 .L0 +000000000000979a l .text 0000000000000000 .L0 +000000000000979c l .text 0000000000000000 .L0 +000000000000979c l .text 0000000000000000 .L0 +00000000000097a0 l .text 0000000000000000 .L0 +00000000000097a4 l .text 0000000000000000 .L0 +00000000000097a4 l .text 0000000000000000 .L0 +00000000000097a8 l .text 0000000000000000 .L0 +00000000000097a8 l .text 0000000000000000 .L0 +00000000000097b4 l .text 0000000000000000 .L0 +00000000000097c4 l .text 0000000000000000 .L0 +00000000000097c4 l .text 0000000000000000 .L0 +00000000000097c8 l .text 0000000000000000 .L0 +00000000000097c8 l .text 0000000000000000 .L0 +00000000000097ce l .text 0000000000000000 .L0 +00000000000097d0 l .text 0000000000000000 .L0 +00000000000097d4 l .text 0000000000000000 .L0 +00000000000097e0 l .text 0000000000000000 .L0 +00000000000097e2 l .text 0000000000000000 .L0 +00000000000097e6 l .text 0000000000000000 .L0 +0000000000003550 l .debug_frame 0000000000000000 .L0 +0000000000009752 l .text 0000000000000000 .L0 +00000000000097e6 l .text 0000000000000000 .L0 +00000000000097d6 l .text 0000000000000000 .L0 +000000000000975c l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_memoutstream.c +00000000000097e6 l F .text 0000000000000064 memoutstream_puts +000000000000984a l F .text 000000000000001c memoutstream_putc +0000000000015d70 l .rodata 0000000000000000 .LC0 +00000000000097f0 l .text 0000000000000000 .L0 +0000000000015d78 l .rodata 0000000000000000 .LC1 +00000000000097fc l .text 0000000000000000 .L0 +000000000000980c l .text 0000000000000000 .L2 +000000000000981a l .text 0000000000000000 .L3 +000000000000983e l .text 0000000000000000 .L4 +0000000000009866 l .text 0000000000000000 .L0 +0000000000009870 l .text 0000000000000000 .L0 +000000000000987c l .text 0000000000000000 .L0 +000000000000b2c3 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000001bc47 l .debug_str 0000000000000000 .LASF31 +000000000001be0b l .debug_str 0000000000000000 .LASF32 +000000000001bbdb l .debug_str 0000000000000000 .LASF33 +0000000000002dd0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000001bea9 l .debug_line 0000000000000000 .Ldebug_line0 +000000000001bc08 l .debug_str 0000000000000000 .LASF0 +000000000001bc14 l .debug_str 0000000000000000 .LASF1 +000000000001bdc8 l .debug_str 0000000000000000 .LASF2 +000000000001bc34 l .debug_str 0000000000000000 .LASF3 +000000000001bd22 l .debug_str 0000000000000000 .LASF4 +000000000001bbc9 l .debug_str 0000000000000000 .LASF5 +000000000001bc22 l .debug_str 0000000000000000 .LASF6 +000000000001bcf7 l .debug_str 0000000000000000 .LASF8 +000000000001bd40 l .debug_str 0000000000000000 .LASF7 +000000000001bbc2 l .debug_str 0000000000000000 .LASF9 +000000000001bd8e l .debug_str 0000000000000000 .LASF10 +000000000001bd80 l .debug_str 0000000000000000 .LASF11 +000000000001bd74 l .debug_str 0000000000000000 .LASF12 +000000000001be25 l .debug_str 0000000000000000 .LASF13 +000000000001bde9 l .debug_str 0000000000000000 .LASF14 +000000000001bbab l .debug_str 0000000000000000 .LASF21 +000000000001bc03 l .debug_str 0000000000000000 .LASF15 +000000000001bdbc l .debug_str 0000000000000000 .LASF16 +000000000001be06 l .debug_str 0000000000000000 .LASF17 +000000000001bd93 l .debug_str 0000000000000000 .LASF18 +000000000001bcff l .debug_str 0000000000000000 .LASF19 +000000000001bd57 l .debug_str 0000000000000000 .LASF20 +000000000001bd0a l .debug_str 0000000000000000 .LASF22 +000000000001bde2 l .debug_str 0000000000000000 .LASF23 +000000000001bdd2 l .debug_str 0000000000000000 .LASF24 +000000000001bd2f l .debug_str 0000000000000000 .LASF25 +000000000001bd99 l .debug_str 0000000000000000 .LASF34 +0000000000009866 l .text 0000000000000000 .LFB6 +0000000000009894 l .text 0000000000000000 .LFE6 +000000000001bd36 l .debug_str 0000000000000000 .LASF26 +000000000001bdd9 l .debug_str 0000000000000000 .LASF27 +000000000001ae6f l .debug_loc 0000000000000000 .LLST10 +000000000001bdaa l .debug_str 0000000000000000 .LASF35 +000000000000984a l .text 0000000000000000 .LFB5 +0000000000009866 l .text 0000000000000000 .LFE5 +000000000001bd1d l .debug_str 0000000000000000 .LASF28 +000000000001aea8 l .debug_loc 0000000000000000 .LLST8 +000000000001aee1 l .debug_loc 0000000000000000 .LLST9 +0000000000009860 l .text 0000000000000000 .LVL14 +000000000001bdf4 l .debug_str 0000000000000000 .LASF36 +000000000001bbbb l .debug_str 0000000000000000 .LASF29 +000000000001bbfd l .debug_str 0000000000000000 .LASF30 +00000000000097e6 l .text 0000000000000000 .LFB4 +000000000000984a l .text 0000000000000000 .LFE4 +000000000001af1a l .debug_loc 0000000000000000 .LLST0 +000000000001af8f l .debug_loc 0000000000000000 .LLST1 +000000000001aff1 l .debug_loc 0000000000000000 .LLST2 +000000000001b053 l .debug_loc 0000000000000000 .LLST3 +000000000001b0c8 l .debug_loc 0000000000000000 .LLST4 +00000000000097f0 l .text 0000000000000000 .LBB4 +000000000000980c l .text 0000000000000000 .LBE4 +000000000001b0fe l .debug_loc 0000000000000000 .LLST5 +000000000001b122 l .debug_loc 0000000000000000 .LLST6 +000000000001b15b l .debug_loc 0000000000000000 .LLST7 +000000000000980c l .text 0000000000000000 .LVL5 +000000000000982e l .text 0000000000000000 .LVL9 +000000000001bbd2 l .debug_str 0000000000000000 .LASF37 +000000000001bdc1 l .debug_str 0000000000000000 .LASF38 +000000000001bd63 l .debug_str 0000000000000000 .LASF39 +0000000000009866 l .text 0000000000000000 .LVL15 +000000000000987c l .text 0000000000000000 .LVL16 +000000000000984a l .text 0000000000000000 .LVL12 +0000000000009856 l .text 0000000000000000 .LVL13 +00000000000097e6 l .text 0000000000000000 .LVL0 +0000000000009804 l .text 0000000000000000 .LVL4 +0000000000009818 l .text 0000000000000000 .LVL6 +0000000000009846 l .text 0000000000000000 .LVL11 +00000000000097fc l .text 0000000000000000 .LVL3 +00000000000097f8 l .text 0000000000000000 .LVL2 +0000000000009824 l .text 0000000000000000 .LVL8 +000000000000981c l .text 0000000000000000 .LVL7 +0000000000009844 l .text 0000000000000000 .LVL10 +00000000000097f0 l .text 0000000000000000 .LVL1 +0000000000028309 l .debug_info 0000000000000000 .Ldebug_info0 +00000000000097e6 l .text 0000000000000000 .L0 +000000000000984a l .text 0000000000000000 .L0 +0000000000009866 l .text 0000000000000000 .L0 +00000000000097e6 l .text 0000000000000000 .L0 +00000000000097e6 l .text 0000000000000000 .L0 +00000000000097e6 l .text 0000000000000000 .L0 +00000000000097e6 l .text 0000000000000000 .L0 +00000000000097e6 l .text 0000000000000000 .L0 +00000000000097ee l .text 0000000000000000 .L0 +00000000000097f0 l .text 0000000000000000 .L0 +000000000000980c l .text 0000000000000000 .L0 +000000000000980e l .text 0000000000000000 .L0 +0000000000009812 l .text 0000000000000000 .L0 +0000000000009812 l .text 0000000000000000 .L0 +0000000000009812 l .text 0000000000000000 .L0 +0000000000009814 l .text 0000000000000000 .L0 +000000000000981a l .text 0000000000000000 .L0 +000000000000981c l .text 0000000000000000 .L0 +000000000000981c l .text 0000000000000000 .L0 +0000000000009820 l .text 0000000000000000 .L0 +0000000000009820 l .text 0000000000000000 .L0 +0000000000009822 l .text 0000000000000000 .L0 +000000000000982e l .text 0000000000000000 .L0 +000000000000982e l .text 0000000000000000 .L0 +0000000000009834 l .text 0000000000000000 .L0 +0000000000009836 l .text 0000000000000000 .L0 +0000000000009838 l .text 0000000000000000 .L0 +0000000000009838 l .text 0000000000000000 .L0 +000000000000983e l .text 0000000000000000 .L0 +000000000000983e l .text 0000000000000000 .L0 +000000000000984a l .text 0000000000000000 .L0 +000000000000984a l .text 0000000000000000 .L0 +000000000000984a l .text 0000000000000000 .L0 +000000000000984c l .text 0000000000000000 .L0 +0000000000009850 l .text 0000000000000000 .L0 +0000000000009856 l .text 0000000000000000 .L0 +0000000000009858 l .text 0000000000000000 .L0 +0000000000009860 l .text 0000000000000000 .L0 +0000000000009866 l .text 0000000000000000 .L0 +0000000000009866 l .text 0000000000000000 .L0 +0000000000009866 l .text 0000000000000000 .L0 +0000000000009870 l .text 0000000000000000 .L0 +0000000000009870 l .text 0000000000000000 .L0 +000000000000987a l .text 0000000000000000 .L0 +000000000000987a l .text 0000000000000000 .L0 +000000000000987c l .text 0000000000000000 .L0 +0000000000009886 l .text 0000000000000000 .L0 +0000000000009886 l .text 0000000000000000 .L0 +000000000000988a l .text 0000000000000000 .L0 +000000000000988a l .text 0000000000000000 .L0 +000000000000988c l .text 0000000000000000 .L0 +000000000000988c l .text 0000000000000000 .L0 +000000000000988e l .text 0000000000000000 .L0 +000000000000988e l .text 0000000000000000 .L0 +0000000000009892 l .text 0000000000000000 .L0 +0000000000009894 l .text 0000000000000000 .L0 +0000000000003598 l .debug_frame 0000000000000000 .L0 +00000000000097e6 l .text 0000000000000000 .L0 +000000000000984a l .text 0000000000000000 .L0 +000000000000984a l .text 0000000000000000 .L0 +0000000000009866 l .text 0000000000000000 .L0 +0000000000009866 l .text 0000000000000000 .L0 +0000000000009894 l .text 0000000000000000 .L0 +0000000000009840 l .text 0000000000000000 .L0 +00000000000097ee l .text 0000000000000000 .L0 +0000000000009862 l .text 0000000000000000 .L0 +0000000000009858 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_nulloutstream.c +0000000000009894 l F .text 000000000000002e nulloutstream_puts +00000000000098c2 l F .text 000000000000002a nulloutstream_putc +0000000000015d98 l .rodata 0000000000000000 .LC0 +000000000000989a l .text 0000000000000000 .L0 +0000000000015da0 l .rodata 0000000000000000 .LC1 +00000000000098a6 l .text 0000000000000000 .L0 +00000000000098b8 l .text 0000000000000000 .L2 +00000000000098c6 l .text 0000000000000000 .L0 +00000000000098d2 l .text 0000000000000000 .L0 +00000000000098e4 l .text 0000000000000000 .L7 +00000000000098ec l .text 0000000000000000 .L0 +00000000000098f6 l .text 0000000000000000 .L0 +0000000000009900 l .text 0000000000000000 .L0 +000000000000b47c l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000001bec9 l .debug_str 0000000000000000 .LASF21 +000000000001be42 l .debug_str 0000000000000000 .LASF22 +000000000001be6f l .debug_str 0000000000000000 .LASF23 +0000000000002e10 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000001c1bc l .debug_line 0000000000000000 .Ldebug_line0 +000000000001c03c l .debug_str 0000000000000000 .LASF0 +000000000001be96 l .debug_str 0000000000000000 .LASF1 +000000000001c016 l .debug_str 0000000000000000 .LASF2 +000000000001beb6 l .debug_str 0000000000000000 .LASF3 +000000000001bf89 l .debug_str 0000000000000000 .LASF4 +000000000001be5d l .debug_str 0000000000000000 .LASF5 +000000000001bea4 l .debug_str 0000000000000000 .LASF6 +000000000001bf96 l .debug_str 0000000000000000 .LASF7 +000000000001c032 l .debug_str 0000000000000000 .LASF8 +000000000001bfd8 l .debug_str 0000000000000000 .LASF9 +000000000001bfcc l .debug_str 0000000000000000 .LASF10 +000000000001c048 l .debug_str 0000000000000000 .LASF11 +000000000001c027 l .debug_str 0000000000000000 .LASF16 +000000000001be2b l .debug_str 0000000000000000 .LASF24 +000000000001be91 l .debug_str 0000000000000000 .LASF12 +000000000001c011 l .debug_str 0000000000000000 .LASF13 +000000000001c037 l .debug_str 0000000000000000 .LASF14 +000000000001bff8 l .debug_str 0000000000000000 .LASF15 +000000000001bf79 l .debug_str 0000000000000000 .LASF17 +000000000001bfad l .debug_str 0000000000000000 .LASF18 +000000000001bfe6 l .debug_str 0000000000000000 .LASF25 +00000000000098ec l .text 0000000000000000 .LFB6 +0000000000009910 l .text 0000000000000000 .LFE6 +000000000001be3b l .debug_str 0000000000000000 .LASF26 +000000000001bffe l .debug_str 0000000000000000 .LASF27 +000000000001bf84 l .debug_str 0000000000000000 .LASF19 +000000000001c020 l .debug_str 0000000000000000 .LASF20 +000000000001bfb9 l .debug_str 0000000000000000 .LASF28 +0000000000009894 l .text 0000000000000000 .LFB5 +00000000000098c2 l .text 0000000000000000 .LFE5 +000000000001b17e l .debug_loc 0000000000000000 .LLST0 +000000000001b1f0 l .debug_loc 0000000000000000 .LLST1 +000000000001b23c l .debug_loc 0000000000000000 .LLST2 +0000000000009898 l .text 0000000000000000 .LBB4 +000000000001b288 l .debug_loc 0000000000000000 .LLST3 +000000000001b2ac l .debug_loc 0000000000000000 .LLST4 +000000000001b2e5 l .debug_loc 0000000000000000 .LLST5 +00000000000098b8 l .text 0000000000000000 .LVL5 +00000000000098c2 l .text 0000000000000000 .LFB4 +00000000000098ec l .text 0000000000000000 .LFE4 +000000000001b308 l .debug_loc 0000000000000000 .LLST6 +000000000001b354 l .debug_loc 0000000000000000 .LLST7 +00000000000098c4 l .text 0000000000000000 .LBB12 +000000000001b3a0 l .debug_loc 0000000000000000 .LLST8 +000000000001b3c4 l .debug_loc 0000000000000000 .LLST9 +00000000000098e4 l .text 0000000000000000 .LVL11 +000000000001be66 l .debug_str 0000000000000000 .LASF29 +0000000000009894 l .text 0000000000000000 .LVL0 +00000000000098ae l .text 0000000000000000 .LVL4 +00000000000098bc l .text 0000000000000000 .LVL6 +00000000000098a6 l .text 0000000000000000 .LVL3 +00000000000098a2 l .text 0000000000000000 .LVL2 +0000000000009898 l .text 0000000000000000 .LVL1 +00000000000098c2 l .text 0000000000000000 .LVL7 +00000000000098da l .text 0000000000000000 .LVL10 +00000000000098d2 l .text 0000000000000000 .LVL9 +00000000000098c4 l .text 0000000000000000 .LVL8 +000000000002868f l .debug_info 0000000000000000 .Ldebug_info0 +0000000000009898 l .text 0000000000000000 .LBE4 +000000000000989a l .text 0000000000000000 .LBB8 +00000000000098ae l .text 0000000000000000 .LBE8 +00000000000098b0 l .text 0000000000000000 .LBB9 +00000000000098b8 l .text 0000000000000000 .LBE9 +00000000000098c4 l .text 0000000000000000 .LBE12 +00000000000098c6 l .text 0000000000000000 .LBB16 +00000000000098da l .text 0000000000000000 .LBE16 +00000000000098dc l .text 0000000000000000 .LBB17 +00000000000098e4 l .text 0000000000000000 .LBE17 +0000000000009894 l .text 0000000000000000 .L0 +00000000000098c2 l .text 0000000000000000 .L0 +00000000000098ec l .text 0000000000000000 .L0 +0000000000009896 l .text 0000000000000000 .L0 +0000000000009896 l .text 0000000000000000 .L0 +0000000000009896 l .text 0000000000000000 .L0 +0000000000009896 l .text 0000000000000000 .L0 +0000000000009898 l .text 0000000000000000 .L0 +0000000000009898 l .text 0000000000000000 .L0 +000000000000989a l .text 0000000000000000 .L0 +00000000000098ae l .text 0000000000000000 .L0 +00000000000098b0 l .text 0000000000000000 .L0 +00000000000098b8 l .text 0000000000000000 .L0 +00000000000098bc l .text 0000000000000000 .L0 +00000000000098bc l .text 0000000000000000 .L0 +00000000000098bc l .text 0000000000000000 .L0 +00000000000098c0 l .text 0000000000000000 .L0 +00000000000098c0 l .text 0000000000000000 .L0 +00000000000098c2 l .text 0000000000000000 .L0 +00000000000098c2 l .text 0000000000000000 .L0 +00000000000098c2 l .text 0000000000000000 .L0 +00000000000098c2 l .text 0000000000000000 .L0 +00000000000098c4 l .text 0000000000000000 .L0 +00000000000098c4 l .text 0000000000000000 .L0 +00000000000098c6 l .text 0000000000000000 .L0 +00000000000098da l .text 0000000000000000 .L0 +00000000000098dc l .text 0000000000000000 .L0 +00000000000098e4 l .text 0000000000000000 .L0 +00000000000098e4 l .text 0000000000000000 .L0 +00000000000098e4 l .text 0000000000000000 .L0 +00000000000098ec l .text 0000000000000000 .L0 +00000000000098ec l .text 0000000000000000 .L0 +00000000000098ec l .text 0000000000000000 .L0 +00000000000098f6 l .text 0000000000000000 .L0 +00000000000098f6 l .text 0000000000000000 .L0 +0000000000009900 l .text 0000000000000000 .L0 +0000000000009900 l .text 0000000000000000 .L0 +000000000000990a l .text 0000000000000000 .L0 +000000000000990a l .text 0000000000000000 .L0 +000000000000990e l .text 0000000000000000 .L0 +0000000000009910 l .text 0000000000000000 .L0 +0000000000003618 l .debug_frame 0000000000000000 .L0 +0000000000009894 l .text 0000000000000000 .L0 +00000000000098c2 l .text 0000000000000000 .L0 +00000000000098c2 l .text 0000000000000000 .L0 +00000000000098ec l .text 0000000000000000 .L0 +00000000000098ec l .text 0000000000000000 .L0 +0000000000009910 l .text 0000000000000000 .L0 +000000000000989a l .text 0000000000000000 .L0 +00000000000098b0 l .text 0000000000000000 .L0 +00000000000098b8 l .text 0000000000000000 .L0 +00000000000098c6 l .text 0000000000000000 .L0 +00000000000098dc l .text 0000000000000000 .L0 +00000000000098e4 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_flsl.c +000000000000992c l .text 0000000000000000 .L3 +000000000000b5c9 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000001c125 l .debug_str 0000000000000000 .LASF11 +000000000001c0e7 l .debug_str 0000000000000000 .LASF12 +000000000001c103 l .debug_str 0000000000000000 .LASF13 +0000000000002ed0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000001c3d0 l .debug_line 0000000000000000 .Ldebug_line0 +000000000001c0cf l .debug_str 0000000000000000 .LASF0 +000000000001c0a0 l .debug_str 0000000000000000 .LASF1 +000000000001c0f9 l .debug_str 0000000000000000 .LASF2 +000000000001c0bc l .debug_str 0000000000000000 .LASF3 +000000000001c05c l .debug_str 0000000000000000 .LASF4 +000000000001c0b3 l .debug_str 0000000000000000 .LASF5 +000000000001c06e l .debug_str 0000000000000000 .LASF6 +000000000001c080 l .debug_str 0000000000000000 .LASF7 +000000000001c0ae l .debug_str 0000000000000000 .LASF8 +000000000001c04e l .debug_str 0000000000000000 .LASF9 +000000000001c0db l .debug_str 0000000000000000 .LASF10 +000000000001c069 l .debug_str 0000000000000000 .LASF14 +0000000000009910 l .text 0000000000000000 .LFB0 +0000000000009930 l .text 0000000000000000 .LFE0 +000000000001b3ea l .debug_loc 0000000000000000 .LLST0 +000000000001b44c l .debug_loc 0000000000000000 .LLST1 +000000000000991e l .text 0000000000000000 .LVL1 +000000000001c097 l .debug_str 0000000000000000 .LASF15 +0000000000009910 l .text 0000000000000000 .LVL0 +000000000000992c l .text 0000000000000000 .LVL3 +000000000000992e l .text 0000000000000000 .LVL4 +0000000000009928 l .text 0000000000000000 .LVL2 +000000000002897e l .debug_info 0000000000000000 .Ldebug_info0 +0000000000009910 l .text 0000000000000000 .L0 +0000000000009910 l .text 0000000000000000 .L0 +0000000000009910 l .text 0000000000000000 .L0 +0000000000009910 l .text 0000000000000000 .L0 +0000000000009912 l .text 0000000000000000 .L0 +0000000000009912 l .text 0000000000000000 .L0 +0000000000009916 l .text 0000000000000000 .L0 +000000000000991e l .text 0000000000000000 .L0 +0000000000009920 l .text 0000000000000000 .L0 +0000000000009928 l .text 0000000000000000 .L0 +0000000000009928 l .text 0000000000000000 .L0 +000000000000992c l .text 0000000000000000 .L0 +000000000000992e l .text 0000000000000000 .L0 +000000000000992e l .text 0000000000000000 .L0 +0000000000009930 l .text 0000000000000000 .L0 +0000000000003690 l .debug_frame 0000000000000000 .L0 +0000000000009910 l .text 0000000000000000 .L0 +0000000000009930 l .text 0000000000000000 .L0 +0000000000009914 l .text 0000000000000000 .L0 +0000000000009920 l .text 0000000000000000 .L0 +0000000000009916 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_isbasedigit.c +0000000000009952 l .text 0000000000000000 .L2 +0000000000009990 l .text 0000000000000000 .L12 +0000000000009950 l .text 0000000000000000 .L6 +0000000000009946 l .text 0000000000000000 .L4 +000000000000997a l .text 0000000000000000 .L5 +000000000000994a l .text 0000000000000000 .L16 +000000000000994c l .text 0000000000000000 .L3 +000000000000b64b l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000001c2c6 l .debug_str 0000000000000000 .LASF14 +000000000001c1fe l .debug_str 0000000000000000 .LASF15 +000000000001c2a4 l .debug_str 0000000000000000 .LASF16 +0000000000002ef0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000001c4b2 l .debug_line 0000000000000000 .Ldebug_line0 +000000000001c27c l .debug_str 0000000000000000 .LASF0 +000000000001c1f0 l .debug_str 0000000000000000 .LASF1 +000000000001c29a l .debug_str 0000000000000000 .LASF2 +000000000001c269 l .debug_str 0000000000000000 .LASF3 +000000000001c1e3 l .debug_str 0000000000000000 .LASF4 +000000000001c24a l .debug_str 0000000000000000 .LASF5 +000000000001c217 l .debug_str 0000000000000000 .LASF6 +000000000001c229 l .debug_str 0000000000000000 .LASF7 +000000000001c245 l .debug_str 0000000000000000 .LASF8 +000000000001c1d5 l .debug_str 0000000000000000 .LASF9 +000000000001c288 l .debug_str 0000000000000000 .LASF10 +000000000001c253 l .debug_str 0000000000000000 .LASF11 +000000000001c259 l .debug_str 0000000000000000 .LASF17 +0000000000009930 l .text 0000000000000000 .LFB4 +0000000000009996 l .text 0000000000000000 .LFE4 +000000000001b4aa l .debug_loc 0000000000000000 .LLST0 +000000000001c240 l .debug_str 0000000000000000 .LASF12 +000000000001b50c l .debug_loc 0000000000000000 .LLST1 +000000000001c294 l .debug_str 0000000000000000 .LASF13 +000000000001b597 l .debug_loc 0000000000000000 .LLST2 +000000000001b61e l .debug_loc 0000000000000000 .LLST3 +0000000000009930 l .text 0000000000000000 .LVL0 +000000000000994c l .text 0000000000000000 .LVL3 +0000000000009952 l .text 0000000000000000 .LVL4 +0000000000009994 l .text 0000000000000000 .LVL9 +0000000000009942 l .text 0000000000000000 .LVL1 +0000000000009970 l .text 0000000000000000 .LVL5 +000000000000997a l .text 0000000000000000 .LVL7 +0000000000009986 l .text 0000000000000000 .LVL8 +000000000000994a l .text 0000000000000000 .LVL2 +0000000000009978 l .text 0000000000000000 .LVL6 +0000000000028a53 l .debug_info 0000000000000000 .Ldebug_info0 +0000000000009930 l .text 0000000000000000 .L0 +0000000000009930 l .text 0000000000000000 .L0 +0000000000009930 l .text 0000000000000000 .L0 +0000000000009930 l .text 0000000000000000 .L0 +0000000000009930 l .text 0000000000000000 .L0 +0000000000009936 l .text 0000000000000000 .L0 +0000000000009936 l .text 0000000000000000 .L0 +000000000000993e l .text 0000000000000000 .L0 +0000000000009946 l .text 0000000000000000 .L0 +0000000000009946 l .text 0000000000000000 .L0 +000000000000994a l .text 0000000000000000 .L0 +000000000000994a l .text 0000000000000000 .L0 +000000000000994a l .text 0000000000000000 .L0 +000000000000994c l .text 0000000000000000 .L0 +000000000000994c l .text 0000000000000000 .L0 +000000000000994e l .text 0000000000000000 .L0 +000000000000994e l .text 0000000000000000 .L0 +0000000000009950 l .text 0000000000000000 .L0 +0000000000009950 l .text 0000000000000000 .L0 +0000000000009952 l .text 0000000000000000 .L0 +0000000000009952 l .text 0000000000000000 .L0 +000000000000995a l .text 0000000000000000 .L0 +000000000000995a l .text 0000000000000000 .L0 +0000000000009964 l .text 0000000000000000 .L0 +0000000000009964 l .text 0000000000000000 .L0 +000000000000996c l .text 0000000000000000 .L0 +0000000000009974 l .text 0000000000000000 .L0 +0000000000009974 l .text 0000000000000000 .L0 +0000000000009978 l .text 0000000000000000 .L0 +000000000000997a l .text 0000000000000000 .L0 +000000000000997a l .text 0000000000000000 .L0 +0000000000009982 l .text 0000000000000000 .L0 +000000000000998a l .text 0000000000000000 .L0 +000000000000998a l .text 0000000000000000 .L0 +0000000000009990 l .text 0000000000000000 .L0 +0000000000009992 l .text 0000000000000000 .L0 +0000000000009996 l .text 0000000000000000 .L0 +00000000000036c8 l .debug_frame 0000000000000000 .L0 +0000000000009930 l .text 0000000000000000 .L0 +0000000000009996 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_skipspace.c +00000000000099bc l .text 0000000000000000 .L3 +00000000000099a2 l .text 0000000000000000 .L2 +000000000000b6de l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000001c465 l .debug_str 0000000000000000 .LASF12 +000000000001c3ef l .debug_str 0000000000000000 .LASF13 +000000000001c443 l .debug_str 0000000000000000 .LASF14 +0000000000002f10 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000001c636 l .debug_line 0000000000000000 .Ldebug_line0 +000000000001c419 l .debug_str 0000000000000000 .LASF0 +000000000001c3cd l .debug_str 0000000000000000 .LASF1 +000000000001c439 l .debug_str 0000000000000000 .LASF2 +000000000001c406 l .debug_str 0000000000000000 .LASF3 +000000000001c384 l .debug_str 0000000000000000 .LASF4 +000000000001c3e0 l .debug_str 0000000000000000 .LASF5 +000000000001c3a4 l .debug_str 0000000000000000 .LASF6 +000000000001c3b6 l .debug_str 0000000000000000 .LASF7 +000000000001c3db l .debug_str 0000000000000000 .LASF8 +000000000001c376 l .debug_str 0000000000000000 .LASF9 +000000000001c42d l .debug_str 0000000000000000 .LASF10 +000000000001c3e9 l .debug_str 0000000000000000 .LASF11 +000000000001c391 l .debug_str 0000000000000000 .LASF15 +0000000000009996 l .text 0000000000000000 .LFB4 +00000000000099c0 l .text 0000000000000000 .LFE4 +000000000001c39f l .debug_str 0000000000000000 .LASF16 +000000000001b693 l .debug_loc 0000000000000000 .LLST0 +000000000001b6f2 l .debug_loc 0000000000000000 .LLST1 +00000000000099ae l .text 0000000000000000 .LVL3 +000000000001c425 l .debug_str 0000000000000000 .LASF17 +0000000000009996 l .text 0000000000000000 .LVL0 +00000000000099a2 l .text 0000000000000000 .LVL2 +00000000000099b6 l .text 0000000000000000 .LVL4 +00000000000099bc l .text 0000000000000000 .LVL6 +00000000000099a0 l .text 0000000000000000 .LVL1 +00000000000099b8 l .text 0000000000000000 .LVL5 +0000000000028b4a l .debug_info 0000000000000000 .Ldebug_info0 +0000000000009996 l .text 0000000000000000 .L0 +0000000000009996 l .text 0000000000000000 .L0 +0000000000009996 l .text 0000000000000000 .L0 +000000000000999e l .text 0000000000000000 .L0 +00000000000099a0 l .text 0000000000000000 .L0 +00000000000099a0 l .text 0000000000000000 .L0 +00000000000099a2 l .text 0000000000000000 .L0 +00000000000099a2 l .text 0000000000000000 .L0 +00000000000099ae l .text 0000000000000000 .L0 +00000000000099b0 l .text 0000000000000000 .L0 +00000000000099b0 l .text 0000000000000000 .L0 +00000000000099b2 l .text 0000000000000000 .L0 +00000000000099bc l .text 0000000000000000 .L0 +00000000000099bc l .text 0000000000000000 .L0 +00000000000099c0 l .text 0000000000000000 .L0 +00000000000036f0 l .debug_frame 0000000000000000 .L0 +0000000000009996 l .text 0000000000000000 .L0 +00000000000099c0 l .text 0000000000000000 .L0 +00000000000099b4 l .text 0000000000000000 .L0 +000000000000999e l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_strcspn.c +00000000000099e6 l .text 0000000000000000 .L1 +00000000000099f4 l .text 0000000000000000 .L4 +00000000000099d0 l .text 0000000000000000 .L2 +000000000000b774 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000001c606 l .debug_str 0000000000000000 .LASF14 +000000000001c57d l .debug_str 0000000000000000 .LASF15 +000000000001c5e4 l .debug_str 0000000000000000 .LASF16 +0000000000002f30 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000001c733 l .debug_line 0000000000000000 .Ldebug_line0 +000000000001c5ad l .debug_str 0000000000000000 .LASF0 +000000000001c561 l .debug_str 0000000000000000 .LASF1 +000000000001c5cd l .debug_str 0000000000000000 .LASF2 +000000000001c59a l .debug_str 0000000000000000 .LASF3 +000000000001c5d7 l .debug_str 0000000000000000 .LASF4 +000000000001c574 l .debug_str 0000000000000000 .LASF5 +000000000001c531 l .debug_str 0000000000000000 .LASF6 +000000000001c5c5 l .debug_str 0000000000000000 .LASF8 +000000000001c543 l .debug_str 0000000000000000 .LASF7 +000000000001c523 l .debug_str 0000000000000000 .LASF9 +000000000001c56f l .debug_str 0000000000000000 .LASF10 +000000000001c515 l .debug_str 0000000000000000 .LASF11 +000000000001c5b9 l .debug_str 0000000000000000 .LASF12 +000000000001c592 l .debug_str 0000000000000000 .LASF17 +00000000000099c0 l .text 0000000000000000 .LFB0 +00000000000099f8 l .text 0000000000000000 .LFE0 +000000000001b73d l .debug_loc 0000000000000000 .LLST0 +000000000001c55a l .debug_str 0000000000000000 .LASF13 +000000000001b79c l .debug_loc 0000000000000000 .LLST1 +000000000001b7fb l .debug_loc 0000000000000000 .LLST2 +00000000000099e4 l .text 0000000000000000 .LVL2 +000000000001c52a l .debug_str 0000000000000000 .LASF18 +00000000000099c0 l .text 0000000000000000 .LVL0 +00000000000099d0 l .text 0000000000000000 .LVL1 +00000000000099f0 l .text 0000000000000000 .LVL5 +00000000000099f4 l .text 0000000000000000 .LVL6 +00000000000099ee l .text 0000000000000000 .LVL4 +00000000000099ec l .text 0000000000000000 .LVL3 +0000000000028c38 l .debug_info 0000000000000000 .Ldebug_info0 +00000000000099c0 l .text 0000000000000000 .L0 +00000000000099c0 l .text 0000000000000000 .L0 +00000000000099c0 l .text 0000000000000000 .L0 +00000000000099c0 l .text 0000000000000000 .L0 +00000000000099ca l .text 0000000000000000 .L0 +00000000000099ce l .text 0000000000000000 .L0 +00000000000099d0 l .text 0000000000000000 .L0 +00000000000099d0 l .text 0000000000000000 .L0 +00000000000099d8 l .text 0000000000000000 .L0 +00000000000099da l .text 0000000000000000 .L0 +00000000000099e4 l .text 0000000000000000 .L0 +00000000000099e6 l .text 0000000000000000 .L0 +00000000000099f4 l .text 0000000000000000 .L0 +00000000000099f4 l .text 0000000000000000 .L0 +00000000000099f4 l .text 0000000000000000 .L0 +00000000000099f8 l .text 0000000000000000 .L0 +0000000000003730 l .debug_frame 0000000000000000 .L0 +00000000000099c0 l .text 0000000000000000 .L0 +00000000000099f8 l .text 0000000000000000 .L0 +00000000000099e8 l .text 0000000000000000 .L0 +00000000000099ca l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_strdup.c +0000000000009a28 l .text 0000000000000000 .L1 +000000000000b838 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000001c7bd l .debug_str 0000000000000000 .LASF19 +000000000001c6f1 l .debug_str 0000000000000000 .LASF20 +000000000001c78d l .debug_str 0000000000000000 .LASF21 +0000000000002f50 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000001c89a l .debug_line 0000000000000000 .Ldebug_line0 +000000000001c754 l .debug_str 0000000000000000 .LASF0 +000000000001c70d l .debug_str 0000000000000000 .LASF1 +000000000001c776 l .debug_str 0000000000000000 .LASF2 +000000000001c741 l .debug_str 0000000000000000 .LASF3 +000000000001c780 l .debug_str 0000000000000000 .LASF4 +000000000001c720 l .debug_str 0000000000000000 .LASF5 +000000000001c729 l .debug_str 0000000000000000 .LASF6 +000000000001c705 l .debug_str 0000000000000000 .LASF8 +000000000001c6da l .debug_str 0000000000000000 .LASF7 +000000000001c6cb l .debug_str 0000000000000000 .LASF9 +000000000001c71b l .debug_str 0000000000000000 .LASF10 +000000000001c6b6 l .debug_str 0000000000000000 .LASF11 +000000000001c765 l .debug_str 0000000000000000 .LASF12 +000000000001c73b l .debug_str 0000000000000000 .LASF13 +000000000001c7af l .debug_str 0000000000000000 .LASF22 +00000000000099f8 l .text 0000000000000000 .LFB4 +0000000000009a32 l .text 0000000000000000 .LFE4 +000000000001b858 l .debug_loc 0000000000000000 .LLST0 +000000000001c760 l .debug_str 0000000000000000 .LASF14 +000000000001b8a3 l .debug_loc 0000000000000000 .LLST1 +000000000001c771 l .debug_str 0000000000000000 .LASF15 +000000000001b8ee l .debug_loc 0000000000000000 .LLST2 +0000000000009a08 l .text 0000000000000000 .LVL1 +0000000000009a18 l .text 0000000000000000 .LVL3 +0000000000009a28 l .text 0000000000000000 .LVL5 +000000000001c6c4 l .debug_str 0000000000000000 .LASF16 +000000000001c7b6 l .debug_str 0000000000000000 .LASF17 +000000000001c6d2 l .debug_str 0000000000000000 .LASF18 +00000000000099f8 l .text 0000000000000000 .LVL0 +0000000000009a30 l .text 0000000000000000 .LVL7 +0000000000009a0c l .text 0000000000000000 .LVL2 +0000000000009a1a l .text 0000000000000000 .LVL4 +0000000000009a2e l .text 0000000000000000 .LVL6 +0000000000028d48 l .debug_info 0000000000000000 .Ldebug_info0 +00000000000099f8 l .text 0000000000000000 .L0 +00000000000099f8 l .text 0000000000000000 .L0 +00000000000099f8 l .text 0000000000000000 .L0 +00000000000099fe l .text 0000000000000000 .L0 +0000000000009a00 l .text 0000000000000000 .L0 +0000000000009a08 l .text 0000000000000000 .L0 +0000000000009a0c l .text 0000000000000000 .L0 +0000000000009a0c l .text 0000000000000000 .L0 +0000000000009a1a l .text 0000000000000000 .L0 +0000000000009a1a l .text 0000000000000000 .L0 +0000000000009a1c l .text 0000000000000000 .L0 +0000000000009a28 l .text 0000000000000000 .L0 +0000000000009a28 l .text 0000000000000000 .L0 +0000000000009a32 l .text 0000000000000000 .L0 +0000000000003778 l .debug_frame 0000000000000000 .L0 +00000000000099f8 l .text 0000000000000000 .L0 +0000000000009a32 l .text 0000000000000000 .L0 +0000000000009a2a l .text 0000000000000000 .L0 +00000000000099fe l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_strncmp.c +0000000000009a3e l .text 0000000000000000 .L4 +0000000000009a5a l .text 0000000000000000 .L3 +0000000000009a36 l .text 0000000000000000 .L2 +000000000000b8f8 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000001c95d l .debug_str 0000000000000000 .LASF14 +000000000001c8e1 l .debug_str 0000000000000000 .LASF15 +000000000001c93b l .debug_str 0000000000000000 .LASF16 +0000000000002f70 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000001c9e0 l .debug_line 0000000000000000 .Ldebug_line0 +000000000001c909 l .debug_str 0000000000000000 .LASF0 +000000000001c888 l .debug_str 0000000000000000 .LASF1 +000000000001c929 l .debug_str 0000000000000000 .LASF2 +000000000001c8f6 l .debug_str 0000000000000000 .LASF3 +000000000001c87b l .debug_str 0000000000000000 .LASF4 +000000000001c8d8 l .debug_str 0000000000000000 .LASF5 +000000000001c89d l .debug_str 0000000000000000 .LASF6 +000000000001c921 l .debug_str 0000000000000000 .LASF8 +000000000001c8af l .debug_str 0000000000000000 .LASF7 +000000000001c896 l .debug_str 0000000000000000 .LASF9 +000000000001c8cc l .debug_str 0000000000000000 .LASF10 +000000000001c86d l .debug_str 0000000000000000 .LASF11 +000000000001c915 l .debug_str 0000000000000000 .LASF12 +000000000001c8c6 l .debug_str 0000000000000000 .LASF13 +000000000001c933 l .debug_str 0000000000000000 .LASF17 +0000000000009a32 l .text 0000000000000000 .LFB4 +0000000000009a5c l .text 0000000000000000 .LFE4 +000000000001b924 l .debug_loc 0000000000000000 .LLST0 +000000000001b991 l .debug_loc 0000000000000000 .LLST1 +000000000001b9fe l .debug_loc 0000000000000000 .LLST2 +000000000001c8d1 l .debug_str 0000000000000000 .LASF18 +000000000001ba53 l .debug_loc 0000000000000000 .LLST3 +0000000000009a32 l .text 0000000000000000 .LVL0 +0000000000009a36 l .text 0000000000000000 .LVL1 +0000000000009a54 l .text 0000000000000000 .LVL4 +0000000000009a56 l .text 0000000000000000 .LVL5 +0000000000009a5a l .text 0000000000000000 .LVL6 +0000000000009a46 l .text 0000000000000000 .LVL2 +0000000000009a52 l .text 0000000000000000 .LVL3 +0000000000028ebf l .debug_info 0000000000000000 .Ldebug_info0 +0000000000009a32 l .text 0000000000000000 .L0 +0000000000009a32 l .text 0000000000000000 .L0 +0000000000009a32 l .text 0000000000000000 .L0 +0000000000009a32 l .text 0000000000000000 .L0 +0000000000009a34 l .text 0000000000000000 .L0 +0000000000009a36 l .text 0000000000000000 .L0 +0000000000009a36 l .text 0000000000000000 .L0 +0000000000009a3a l .text 0000000000000000 .L0 +0000000000009a3e l .text 0000000000000000 .L0 +0000000000009a3e l .text 0000000000000000 .L0 +0000000000009a46 l .text 0000000000000000 .L0 +0000000000009a4a l .text 0000000000000000 .L0 +0000000000009a4e l .text 0000000000000000 .L0 +0000000000009a52 l .text 0000000000000000 .L0 +0000000000009a54 l .text 0000000000000000 .L0 +0000000000009a5a l .text 0000000000000000 .L0 +0000000000009a5a l .text 0000000000000000 .L0 +0000000000009a5c l .text 0000000000000000 .L0 +00000000000037b0 l .debug_frame 0000000000000000 .L0 +0000000000009a32 l .text 0000000000000000 .L0 +0000000000009a5c l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_strrchr.c +0000000000009a6a l .text 0000000000000000 .L2 +0000000000009a60 l .text 0000000000000000 .L3 +000000000000b97f l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000001cae7 l .debug_str 0000000000000000 .LASF12 +000000000001ca28 l .debug_str 0000000000000000 .LASF13 +000000000001cac5 l .debug_str 0000000000000000 .LASF14 +0000000000002f90 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000001cb47 l .debug_line 0000000000000000 .Ldebug_line0 +000000000001caa3 l .debug_str 0000000000000000 .LASF0 +000000000001ca79 l .debug_str 0000000000000000 .LASF1 +000000000001cabb l .debug_str 0000000000000000 .LASF2 +000000000001ca66 l .debug_str 0000000000000000 .LASF3 +000000000001ca1b l .debug_str 0000000000000000 .LASF4 +000000000001ca8c l .debug_str 0000000000000000 .LASF5 +000000000001ca3d l .debug_str 0000000000000000 .LASF6 +000000000001ca4f l .debug_str 0000000000000000 .LASF7 +000000000001ca87 l .debug_str 0000000000000000 .LASF8 +000000000001ca0d l .debug_str 0000000000000000 .LASF9 +000000000001caaf l .debug_str 0000000000000000 .LASF10 +000000000001ca9d l .debug_str 0000000000000000 .LASF11 +000000000001ca95 l .debug_str 0000000000000000 .LASF15 +0000000000009a5c l .text 0000000000000000 .LFB4 +0000000000009a70 l .text 0000000000000000 .LFE4 +000000000001baa2 l .debug_loc 0000000000000000 .LLST0 +000000000001bad8 l .debug_loc 0000000000000000 .LLST1 +0000000000009a5c l .text 0000000000000000 .LVL0 +0000000000009a60 l .text 0000000000000000 .LVL1 +0000000000028fc3 l .debug_info 0000000000000000 .Ldebug_info0 +0000000000009a5c l .text 0000000000000000 .L0 +0000000000009a5c l .text 0000000000000000 .L0 +0000000000009a5c l .text 0000000000000000 .L0 +0000000000009a5e l .text 0000000000000000 .L0 +0000000000009a60 l .text 0000000000000000 .L0 +0000000000009a60 l .text 0000000000000000 .L0 +0000000000009a60 l .text 0000000000000000 .L0 +0000000000009a64 l .text 0000000000000000 .L0 +0000000000009a6a l .text 0000000000000000 .L0 +0000000000009a6a l .text 0000000000000000 .L0 +0000000000009a6c l .text 0000000000000000 .L0 +0000000000009a6e l .text 0000000000000000 .L0 +0000000000009a6e l .text 0000000000000000 .L0 +0000000000009a70 l .text 0000000000000000 .L0 +00000000000037d8 l .debug_frame 0000000000000000 .L0 +0000000000009a5c l .text 0000000000000000 .L0 +0000000000009a70 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_memcmp.c +0000000000009a7a l .text 0000000000000000 .L4 +0000000000009a98 l .text 0000000000000000 .L5 +0000000000009a72 l .text 0000000000000000 .L2 +000000000000ba08 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000001cc7e l .debug_str 0000000000000000 .LASF14 +000000000001cc6a l .debug_str 0000000000000000 .LASF15 +000000000001cc48 l .debug_str 0000000000000000 .LASF16 +0000000000002fb0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000001cc23 l .debug_line 0000000000000000 .Ldebug_line0 +000000000001cc1e l .debug_str 0000000000000000 .LASF0 +000000000001cbe9 l .debug_str 0000000000000000 .LASF1 +000000000001cc3e l .debug_str 0000000000000000 .LASF2 +000000000001cc0b l .debug_str 0000000000000000 .LASF3 +000000000001cba5 l .debug_str 0000000000000000 .LASF4 +000000000001cbfc l .debug_str 0000000000000000 .LASF5 +000000000001cbc0 l .debug_str 0000000000000000 .LASF6 +000000000001cc36 l .debug_str 0000000000000000 .LASF8 +000000000001cbd2 l .debug_str 0000000000000000 .LASF7 +000000000001cbb9 l .debug_str 0000000000000000 .LASF9 +000000000001cbf7 l .debug_str 0000000000000000 .LASF10 +000000000001cb97 l .debug_str 0000000000000000 .LASF11 +000000000001cc2a l .debug_str 0000000000000000 .LASF12 +000000000001cc05 l .debug_str 0000000000000000 .LASF13 +000000000001cbb2 l .debug_str 0000000000000000 .LASF17 +0000000000009a70 l .text 0000000000000000 .LFB4 +0000000000009a9c l .text 0000000000000000 .LFE4 +000000000001bb0f l .debug_loc 0000000000000000 .LLST0 +000000000001bb9a l .debug_loc 0000000000000000 .LLST1 +000000000001bc07 l .debug_loc 0000000000000000 .LLST2 +000000000001bcd9 l .debug_loc 0000000000000000 .LLST3 +0000000000009a70 l .text 0000000000000000 .LVL0 +0000000000009a78 l .text 0000000000000000 .LVL2 +0000000000009a7a l .text 0000000000000000 .LVL3 +0000000000009a96 l .text 0000000000000000 .LVL5 +0000000000009a98 l .text 0000000000000000 .LVL6 +0000000000009a9a l .text 0000000000000000 .LVL7 +0000000000009a72 l .text 0000000000000000 .LVL1 +0000000000009a90 l .text 0000000000000000 .LVL4 +00000000000290a0 l .debug_info 0000000000000000 .Ldebug_info0 +0000000000009a70 l .text 0000000000000000 .L0 +0000000000009a70 l .text 0000000000000000 .L0 +0000000000009a70 l .text 0000000000000000 .L0 +0000000000009a70 l .text 0000000000000000 .L0 +0000000000009a70 l .text 0000000000000000 .L0 +0000000000009a72 l .text 0000000000000000 .L0 +0000000000009a76 l .text 0000000000000000 .L0 +0000000000009a7a l .text 0000000000000000 .L0 +0000000000009a7a l .text 0000000000000000 .L0 +0000000000009a82 l .text 0000000000000000 .L0 +0000000000009a8a l .text 0000000000000000 .L0 +0000000000009a8e l .text 0000000000000000 .L0 +0000000000009a8e l .text 0000000000000000 .L0 +0000000000009a94 l .text 0000000000000000 .L0 +0000000000009a96 l .text 0000000000000000 .L0 +0000000000009a98 l .text 0000000000000000 .L0 +0000000000009a9c l .text 0000000000000000 .L0 +0000000000003800 l .debug_frame 0000000000000000 .L0 +0000000000009a70 l .text 0000000000000000 .L0 +0000000000009a9c l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_strchr.c +0000000000009aac l .text 0000000000000000 .L1 +0000000000009aaa l .text 0000000000000000 .L4 +0000000000009a9c l .text 0000000000000000 .L3 +000000000000ba9e l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000001ce06 l .debug_str 0000000000000000 .LASF12 +000000000001cdae l .debug_str 0000000000000000 .LASF13 +000000000001cde4 l .debug_str 0000000000000000 .LASF14 +0000000000002fd0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000001cd73 l .debug_line 0000000000000000 .Ldebug_line0 +000000000001cdc2 l .debug_str 0000000000000000 .LASF0 +000000000001cd8c l .debug_str 0000000000000000 .LASF1 +000000000001cdda l .debug_str 0000000000000000 .LASF2 +000000000001cd3c l .debug_str 0000000000000000 .LASF3 +000000000001cd4f l .debug_str 0000000000000000 .LASF4 +000000000001cd9f l .debug_str 0000000000000000 .LASF5 +000000000001cd63 l .debug_str 0000000000000000 .LASF6 +000000000001cd75 l .debug_str 0000000000000000 .LASF7 +000000000001cd9a l .debug_str 0000000000000000 .LASF8 +000000000001cd2e l .debug_str 0000000000000000 .LASF9 +000000000001cdce l .debug_str 0000000000000000 .LASF10 +000000000001cda8 l .debug_str 0000000000000000 .LASF11 +000000000001cd5c l .debug_str 0000000000000000 .LASF15 +0000000000009a9c l .text 0000000000000000 .LFB4 +0000000000009aae l .text 0000000000000000 .LFE4 +000000000001bd46 l .debug_loc 0000000000000000 .LLST0 +0000000000009a9c l .text 0000000000000000 .LVL0 +0000000000009aa8 l .text 0000000000000000 .LVL1 +0000000000009aaa l .text 0000000000000000 .LVL2 +00000000000291b1 l .debug_info 0000000000000000 .Ldebug_info0 +0000000000009a9c l .text 0000000000000000 .L0 +0000000000009a9c l .text 0000000000000000 .L0 +0000000000009a9c l .text 0000000000000000 .L0 +0000000000009a9c l .text 0000000000000000 .L0 +0000000000009aa0 l .text 0000000000000000 .L0 +0000000000009aa4 l .text 0000000000000000 .L0 +0000000000009aa4 l .text 0000000000000000 .L0 +0000000000009aa6 l .text 0000000000000000 .L0 +0000000000009aa6 l .text 0000000000000000 .L0 +0000000000009aa8 l .text 0000000000000000 .L0 +0000000000009aa8 l .text 0000000000000000 .L0 +0000000000009aaa l .text 0000000000000000 .L0 +0000000000009aac l .text 0000000000000000 .L0 +0000000000009aae l .text 0000000000000000 .L0 +0000000000003828 l .debug_frame 0000000000000000 .L0 +0000000000009a9c l .text 0000000000000000 .L0 +0000000000009aae l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_strcmp.c +0000000000009ac4 l .text 0000000000000000 .L2 +0000000000009ab0 l .text 0000000000000000 .L3 +000000000000bb16 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000001cf95 l .debug_str 0000000000000000 .LASF12 +000000000001ced1 l .debug_str 0000000000000000 .LASF13 +000000000001cf73 l .debug_str 0000000000000000 .LASF14 +0000000000002ff0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000001ce5c l .debug_line 0000000000000000 .Ldebug_line0 +000000000001cf51 l .debug_str 0000000000000000 .LASF0 +000000000001cf0e l .debug_str 0000000000000000 .LASF1 +000000000001cf69 l .debug_str 0000000000000000 .LASF2 +000000000001cf3e l .debug_str 0000000000000000 .LASF3 +000000000001cec4 l .debug_str 0000000000000000 .LASF4 +000000000001cf28 l .debug_str 0000000000000000 .LASF5 +000000000001cee5 l .debug_str 0000000000000000 .LASF6 +000000000001cef7 l .debug_str 0000000000000000 .LASF7 +000000000001cf1c l .debug_str 0000000000000000 .LASF8 +000000000001ceb6 l .debug_str 0000000000000000 .LASF9 +000000000001cf5d l .debug_str 0000000000000000 .LASF10 +000000000001cf38 l .debug_str 0000000000000000 .LASF11 +000000000001cf31 l .debug_str 0000000000000000 .LASF15 +0000000000009aae l .text 0000000000000000 .LFB4 +0000000000009ac6 l .text 0000000000000000 .LFE4 +000000000001bda8 l .debug_loc 0000000000000000 .LLST0 +000000000001bdde l .debug_loc 0000000000000000 .LLST1 +000000000001cf21 l .debug_str 0000000000000000 .LASF16 +0000000000009aae l .text 0000000000000000 .LVL0 +0000000000009ab0 l .text 0000000000000000 .LVL1 +0000000000009aba l .text 0000000000000000 .LVL2 +0000000000029280 l .debug_info 0000000000000000 .Ldebug_info0 +0000000000009aae l .text 0000000000000000 .L0 +0000000000009ab0 l .text 0000000000000000 .L0 +0000000000009ab0 l .text 0000000000000000 .L0 +0000000000009ab0 l .text 0000000000000000 .L0 +0000000000009ab0 l .text 0000000000000000 .L0 +0000000000009ab4 l .text 0000000000000000 .L0 +0000000000009ab8 l .text 0000000000000000 .L0 +0000000000009aba l .text 0000000000000000 .L0 +0000000000009abe l .text 0000000000000000 .L0 +0000000000009ac0 l .text 0000000000000000 .L0 +0000000000009ac2 l .text 0000000000000000 .L0 +0000000000009ac4 l .text 0000000000000000 .L0 +0000000000009ac4 l .text 0000000000000000 .L0 +0000000000009ac6 l .text 0000000000000000 .L0 +0000000000003850 l .debug_frame 0000000000000000 .L0 +0000000000009aae l .text 0000000000000000 .L0 +0000000000009ac6 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_strlcat.c +0000000000009af8 l .text 0000000000000000 .L3 +0000000000009b02 l .text 0000000000000000 .L15 +0000000000009ada l .text 0000000000000000 .L7 +0000000000009ad6 l .text 0000000000000000 .L2 +0000000000009b16 l .text 0000000000000000 .L11 +0000000000009aee l .text 0000000000000000 .L17 +0000000000009b20 l .text 0000000000000000 .L10 +0000000000009b06 l .text 0000000000000000 .L8 +000000000000bb8e l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000001d14a l .debug_str 0000000000000000 .LASF18 +000000000001d0b5 l .debug_str 0000000000000000 .LASF19 +000000000001d11c l .debug_str 0000000000000000 .LASF20 +0000000000003010 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000001cf3b l .debug_line 0000000000000000 .Ldebug_line0 +000000000001d13e l .debug_str 0000000000000000 .LASF0 +000000000001d0a7 l .debug_str 0000000000000000 .LASF1 +000000000001d105 l .debug_str 0000000000000000 .LASF2 +000000000001d053 l .debug_str 0000000000000000 .LASF3 +000000000001d10f l .debug_str 0000000000000000 .LASF4 +000000000001d0cf l .debug_str 0000000000000000 .LASF5 +000000000001d079 l .debug_str 0000000000000000 .LASF6 +000000000001d0fd l .debug_str 0000000000000000 .LASF8 +000000000001d08b l .debug_str 0000000000000000 .LASF7 +000000000001d06d l .debug_str 0000000000000000 .LASF9 +000000000001d0ca l .debug_str 0000000000000000 .LASF10 +000000000001d045 l .debug_str 0000000000000000 .LASF11 +000000000001d0f1 l .debug_str 0000000000000000 .LASF12 +000000000001d0d8 l .debug_str 0000000000000000 .LASF13 +000000000001d0de l .debug_str 0000000000000000 .LASF21 +0000000000009ac6 l .text 0000000000000000 .LFB4 +0000000000009b24 l .text 0000000000000000 .LFE4 +000000000001be14 l .debug_loc 0000000000000000 .LLST0 +000000000001be98 l .debug_loc 0000000000000000 .LLST1 +000000000001d0eb l .debug_str 0000000000000000 .LASF14 +000000000001bef7 l .debug_loc 0000000000000000 .LLST2 +000000000001d0a2 l .debug_str 0000000000000000 .LASF15 +000000000001bf59 l .debug_loc 0000000000000000 .LLST3 +000000000001d074 l .debug_str 0000000000000000 .LASF16 +000000000001bfce l .debug_loc 0000000000000000 .LLST4 +000000000001c040 l .debug_loc 0000000000000000 .LLST5 +000000000001d0e6 l .debug_str 0000000000000000 .LASF17 +000000000001c12a l .debug_loc 0000000000000000 .LLST6 +0000000000009aee l .text 0000000000000000 .LVL6 +000000000001d066 l .debug_str 0000000000000000 .LASF22 +0000000000009ac6 l .text 0000000000000000 .LVL0 +0000000000009ad0 l .text 0000000000000000 .LVL2 +0000000000009ad6 l .text 0000000000000000 .LVL3 +0000000000009af8 l .text 0000000000000000 .LVL8 +0000000000009b18 l .text 0000000000000000 .LVL15 +0000000000009b20 l .text 0000000000000000 .LVL17 +0000000000009b06 l .text 0000000000000000 .LVL12 +0000000000009acc l .text 0000000000000000 .LVL1 +0000000000009ade l .text 0000000000000000 .LVL4 +0000000000009b02 l .text 0000000000000000 .LVL10 +0000000000009b14 l .text 0000000000000000 .LVL13 +0000000000009b16 l .text 0000000000000000 .LVL14 +0000000000009ae2 l .text 0000000000000000 .LVL5 +0000000000009b00 l .text 0000000000000000 .LVL9 +0000000000009b04 l .text 0000000000000000 .LVL11 +0000000000009af4 l .text 0000000000000000 .LVL7 +0000000000029365 l .debug_info 0000000000000000 .Ldebug_info0 +0000000000009ac6 l .text 0000000000000000 .L0 +0000000000009ac6 l .text 0000000000000000 .L0 +0000000000009ac6 l .text 0000000000000000 .L0 +0000000000009acc l .text 0000000000000000 .L0 +0000000000009acc l .text 0000000000000000 .L0 +0000000000009ace l .text 0000000000000000 .L0 +0000000000009ad0 l .text 0000000000000000 .L0 +0000000000009ad0 l .text 0000000000000000 .L0 +0000000000009ad0 l .text 0000000000000000 .L0 +0000000000009ad4 l .text 0000000000000000 .L0 +0000000000009ad6 l .text 0000000000000000 .L0 +0000000000009ada l .text 0000000000000000 .L0 +0000000000009ada l .text 0000000000000000 .L0 +0000000000009ade l .text 0000000000000000 .L0 +0000000000009ade l .text 0000000000000000 .L0 +0000000000009ae2 l .text 0000000000000000 .L0 +0000000000009ae2 l .text 0000000000000000 .L0 +0000000000009ae6 l .text 0000000000000000 .L0 +0000000000009ae6 l .text 0000000000000000 .L0 +0000000000009aee l .text 0000000000000000 .L0 +0000000000009af0 l .text 0000000000000000 .L0 +0000000000009af2 l .text 0000000000000000 .L0 +0000000000009af8 l .text 0000000000000000 .L0 +0000000000009afe l .text 0000000000000000 .L0 +0000000000009afe l .text 0000000000000000 .L0 +0000000000009b02 l .text 0000000000000000 .L0 +0000000000009b06 l .text 0000000000000000 .L0 +0000000000009b06 l .text 0000000000000000 .L0 +0000000000009b0a l .text 0000000000000000 .L0 +0000000000009b0c l .text 0000000000000000 .L0 +0000000000009b0c l .text 0000000000000000 .L0 +0000000000009b10 l .text 0000000000000000 .L0 +0000000000009b10 l .text 0000000000000000 .L0 +0000000000009b16 l .text 0000000000000000 .L0 +0000000000009b16 l .text 0000000000000000 .L0 +0000000000009b18 l .text 0000000000000000 .L0 +0000000000009b18 l .text 0000000000000000 .L0 +0000000000009b1c l .text 0000000000000000 .L0 +0000000000009b1c l .text 0000000000000000 .L0 +0000000000009b1e l .text 0000000000000000 .L0 +0000000000009b20 l .text 0000000000000000 .L0 +0000000000009b20 l .text 0000000000000000 .L0 +0000000000009b24 l .text 0000000000000000 .L0 +0000000000003878 l .debug_frame 0000000000000000 .L0 +0000000000009ac6 l .text 0000000000000000 .L0 +0000000000009b24 l .text 0000000000000000 .L0 +0000000000009af0 l .text 0000000000000000 .L0 +0000000000009ace l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_strlcpy.c +0000000000009b50 l .text 0000000000000000 .L8 +0000000000009b3c l .text 0000000000000000 .L5 +0000000000009b52 l .text 0000000000000000 .L7 +0000000000009b2c l .text 0000000000000000 .L3 +0000000000009b48 l .text 0000000000000000 .L4 +000000000000bc57 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000001d2f4 l .debug_str 0000000000000000 .LASF17 +000000000001d254 l .debug_str 0000000000000000 .LASF18 +000000000001d2c0 l .debug_str 0000000000000000 .LASF19 +0000000000003030 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000001d172 l .debug_line 0000000000000000 .Ldebug_line0 +000000000001d28b l .debug_str 0000000000000000 .LASF0 +000000000001d241 l .debug_str 0000000000000000 .LASF1 +000000000001d2b1 l .debug_str 0000000000000000 .LASF2 +000000000001d278 l .debug_str 0000000000000000 .LASF3 +000000000001d208 l .debug_str 0000000000000000 .LASF4 +000000000001d26f l .debug_str 0000000000000000 .LASF5 +000000000001d2e2 l .debug_str 0000000000000000 .LASF6 +000000000001d2a9 l .debug_str 0000000000000000 .LASF8 +000000000001d224 l .debug_str 0000000000000000 .LASF7 +000000000001d215 l .debug_str 0000000000000000 .LASF9 +000000000001d24f l .debug_str 0000000000000000 .LASF10 +000000000001d1fa l .debug_str 0000000000000000 .LASF11 +000000000001d29d l .debug_str 0000000000000000 .LASF12 +000000000001d269 l .debug_str 0000000000000000 .LASF13 +000000000001d21c l .debug_str 0000000000000000 .LASF20 +0000000000009b24 l .text 0000000000000000 .LFB4 +0000000000009b5c l .text 0000000000000000 .LFE4 +000000000001c160 l .debug_loc 0000000000000000 .LLST0 +000000000001c1a9 l .debug_loc 0000000000000000 .LLST1 +000000000001d297 l .debug_str 0000000000000000 .LASF14 +000000000001c240 l .debug_loc 0000000000000000 .LLST2 +000000000001d2bb l .debug_str 0000000000000000 .LASF15 +000000000001d23b l .debug_str 0000000000000000 .LASF16 +000000000001c2a2 l .debug_loc 0000000000000000 .LLST3 +0000000000009b24 l .text 0000000000000000 .LVL0 +0000000000009b2c l .text 0000000000000000 .LVL3 +0000000000009b48 l .text 0000000000000000 .LVL9 +0000000000009b50 l .text 0000000000000000 .LVL10 +0000000000009b52 l .text 0000000000000000 .LVL11 +0000000000009b30 l .text 0000000000000000 .LVL4 +0000000000009b3c l .text 0000000000000000 .LVL6 +0000000000009b40 l .text 0000000000000000 .LVL7 +0000000000009b2a l .text 0000000000000000 .LVL2 +0000000000009b26 l .text 0000000000000000 .LVL1 +0000000000009b34 l .text 0000000000000000 .LVL5 +00000000000294bd l .debug_info 0000000000000000 .Ldebug_info0 +0000000000009b24 l .text 0000000000000000 .L0 +0000000000009b24 l .text 0000000000000000 .L0 +0000000000009b26 l .text 0000000000000000 .L0 +0000000000009b26 l .text 0000000000000000 .L0 +0000000000009b26 l .text 0000000000000000 .L0 +0000000000009b26 l .text 0000000000000000 .L0 +0000000000009b2c l .text 0000000000000000 .L0 +0000000000009b2e l .text 0000000000000000 .L0 +0000000000009b30 l .text 0000000000000000 .L0 +0000000000009b34 l .text 0000000000000000 .L0 +0000000000009b34 l .text 0000000000000000 .L0 +0000000000009b34 l .text 0000000000000000 .L0 +0000000000009b3c l .text 0000000000000000 .L0 +0000000000009b3c l .text 0000000000000000 .L0 +0000000000009b40 l .text 0000000000000000 .L0 +0000000000009b42 l .text 0000000000000000 .L0 +0000000000009b46 l .text 0000000000000000 .L0 +0000000000009b48 l .text 0000000000000000 .L0 +0000000000009b48 l .text 0000000000000000 .L0 +0000000000009b4c l .text 0000000000000000 .L0 +0000000000009b4e l .text 0000000000000000 .L0 +0000000000009b52 l .text 0000000000000000 .L0 +0000000000009b52 l .text 0000000000000000 .L0 +0000000000009b56 l .text 0000000000000000 .L0 +0000000000009b58 l .text 0000000000000000 .L0 +0000000000009b5c l .text 0000000000000000 .L0 +00000000000038b8 l .debug_frame 0000000000000000 .L0 +0000000000009b24 l .text 0000000000000000 .L0 +0000000000009b5c l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_strlen.c +0000000000009b6a l .text 0000000000000000 .L3 +0000000000009b5e l .text 0000000000000000 .L2 +000000000000bd00 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000001d410 l .debug_str 0000000000000000 .LASF14 +000000000001d3b9 l .debug_str 0000000000000000 .LASF15 +000000000001d519 l .debug_str 0000000000000000 .LASF16 +0000000000003050 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000001d321 l .debug_line 0000000000000000 .Ldebug_line0 +000000000001d4e2 l .debug_str 0000000000000000 .LASF0 +000000000001d3fd l .debug_str 0000000000000000 .LASF1 +000000000001d502 l .debug_str 0000000000000000 .LASF2 +000000000001d4cf l .debug_str 0000000000000000 .LASF3 +000000000001d50c l .debug_str 0000000000000000 .LASF4 +000000000001d4c0 l .debug_str 0000000000000000 .LASF5 +000000000001d3d4 l .debug_str 0000000000000000 .LASF6 +000000000001d4fa l .debug_str 0000000000000000 .LASF8 +000000000001d3e6 l .debug_str 0000000000000000 .LASF7 +000000000001d3cd l .debug_str 0000000000000000 .LASF9 +000000000001d40b l .debug_str 0000000000000000 .LASF10 +000000000001d3a4 l .debug_str 0000000000000000 .LASF11 +000000000001d4ee l .debug_str 0000000000000000 .LASF12 +000000000001d4c9 l .debug_str 0000000000000000 .LASF13 +000000000001d3b2 l .debug_str 0000000000000000 .LASF17 +0000000000009b5c l .text 0000000000000000 .LFB4 +0000000000009b6e l .text 0000000000000000 .LFE4 +000000000001c332 l .debug_loc 0000000000000000 .LLST0 +000000000001c37e l .debug_loc 0000000000000000 .LLST1 +0000000000009b5c l .text 0000000000000000 .LVL0 +0000000000009b68 l .text 0000000000000000 .LVL2 +0000000000009b6a l .text 0000000000000000 .LVL3 +0000000000009b5e l .text 0000000000000000 .LVL1 +00000000000295d8 l .debug_info 0000000000000000 .Ldebug_info0 +0000000000009b5c l .text 0000000000000000 .L0 +0000000000009b5c l .text 0000000000000000 .L0 +0000000000009b5c l .text 0000000000000000 .L0 +0000000000009b5c l .text 0000000000000000 .L0 +0000000000009b5e l .text 0000000000000000 .L0 +0000000000009b5e l .text 0000000000000000 .L0 +0000000000009b64 l .text 0000000000000000 .L0 +0000000000009b64 l .text 0000000000000000 .L0 +0000000000009b6a l .text 0000000000000000 .L0 +0000000000009b6a l .text 0000000000000000 .L0 +0000000000009b6e l .text 0000000000000000 .L0 +00000000000038e0 l .debug_frame 0000000000000000 .L0 +0000000000009b5c l .text 0000000000000000 .L0 +0000000000009b6e l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_syslog.c +0000000000009b6e l .text 0000000000000000 .L0 +0000000000009b94 l .text 0000000000000000 .L7 +000000000000bd87 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000001d67c l .debug_str 0000000000000000 .LASF20 +000000000001d596 l .debug_str 0000000000000000 .LASF21 +000000000001d65a l .debug_str 0000000000000000 .LASF22 +0000000000003070 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000001d452 l .debug_line 0000000000000000 .Ldebug_line0 +000000000001d62d l .debug_str 0000000000000000 .LASF0 +000000000001d572 l .debug_str 0000000000000000 .LASF23 +000000000001d5f9 l .debug_str 0000000000000000 .LASF1 +000000000001d621 l .debug_str 0000000000000000 .LASF3 +000000000001d5e7 l .debug_str 0000000000000000 .LASF2 +000000000001d5d4 l .debug_str 0000000000000000 .LASF4 +000000000001d650 l .debug_str 0000000000000000 .LASF5 +000000000001d60e l .debug_str 0000000000000000 .LASF6 +000000000001d549 l .debug_str 0000000000000000 .LASF7 +000000000001d5f0 l .debug_str 0000000000000000 .LASF8 +000000000001d584 l .debug_str 0000000000000000 .LASF9 +000000000001d5b5 l .debug_str 0000000000000000 .LASF10 +000000000001d5cc l .debug_str 0000000000000000 .LASF11 +000000000001d5e2 l .debug_str 0000000000000000 .LASF12 +000000000001d53b l .debug_str 0000000000000000 .LASF13 +000000000001d63c l .debug_str 0000000000000000 .LASF14 +000000000001d601 l .debug_str 0000000000000000 .LASF15 +000000000001d556 l .debug_str 0000000000000000 .LASF24 +000000000001d607 l .debug_str 0000000000000000 .LASF17 +0000000000009b96 l .text 0000000000000000 .LFB5 +0000000000009bb8 l .text 0000000000000000 .LFE5 +000000000001d564 l .debug_str 0000000000000000 .LASF16 +000000000001c3b4 l .debug_loc 0000000000000000 .LLST3 +000000000001c3ed l .debug_loc 0000000000000000 .LLST4 +0000000000009bb2 l .text 0000000000000000 .LVL5 +000000000001d648 l .debug_str 0000000000000000 .LASF18 +0000000000009b6e l .text 0000000000000000 .LFB4 +0000000000009b96 l .text 0000000000000000 .LFE4 +000000000001c426 l .debug_loc 0000000000000000 .LLST0 +000000000001c472 l .debug_loc 0000000000000000 .LLST1 +000000000001c4be l .debug_loc 0000000000000000 .LLST2 +000000000001d56d l .debug_str 0000000000000000 .LASF19 +0000000000009b8e l .text 0000000000000000 .LVL2 +000000000001d5aa l .debug_str 0000000000000000 .LASF25 +0000000000009b96 l .text 0000000000000000 .LVL4 +0000000000009b6e l .text 0000000000000000 .LVL0 +0000000000009b94 l .text 0000000000000000 .LVL3 +0000000000009b84 l .text 0000000000000000 .LVL1 +00000000000296bc l .debug_info 0000000000000000 .Ldebug_info0 +0000000000009b7e l .text 0000000000000000 .LBB2 +0000000000009b7e l .text 0000000000000000 .LBE2 +0000000000009b80 l .text 0000000000000000 .LBB3 +0000000000009b84 l .text 0000000000000000 .LBE3 +0000000000009b86 l .text 0000000000000000 .LBB4 +0000000000009b8e l .text 0000000000000000 .LBE4 +0000000000009b6e l .text 0000000000000000 .L0 +0000000000009b96 l .text 0000000000000000 .L0 +0000000000009b6e l .text 0000000000000000 .L0 +0000000000009b6e l .text 0000000000000000 .L0 +0000000000009b7a l .text 0000000000000000 .L0 +0000000000009b7e l .text 0000000000000000 .L0 +0000000000009b7e l .text 0000000000000000 .L0 +0000000000009b7e l .text 0000000000000000 .L0 +0000000000009b80 l .text 0000000000000000 .L0 +0000000000009b82 l .text 0000000000000000 .L0 +0000000000009b84 l .text 0000000000000000 .L0 +0000000000009b86 l .text 0000000000000000 .L0 +0000000000009b8e l .text 0000000000000000 .L0 +0000000000009b8e l .text 0000000000000000 .L0 +0000000000009b96 l .text 0000000000000000 .L0 +0000000000009b96 l .text 0000000000000000 .L0 +0000000000009b96 l .text 0000000000000000 .L0 +0000000000009b96 l .text 0000000000000000 .L0 +0000000000009b9a l .text 0000000000000000 .L0 +0000000000009b9c l .text 0000000000000000 .L0 +0000000000009b9e l .text 0000000000000000 .L0 +0000000000009ba8 l .text 0000000000000000 .L0 +0000000000009baa l .text 0000000000000000 .L0 +0000000000009bb2 l .text 0000000000000000 .L0 +0000000000009bb2 l .text 0000000000000000 .L0 +0000000000009bb8 l .text 0000000000000000 .L0 +0000000000003908 l .debug_frame 0000000000000000 .L0 +0000000000009b6e l .text 0000000000000000 .L0 +0000000000009b96 l .text 0000000000000000 .L0 +0000000000009b96 l .text 0000000000000000 .L0 +0000000000009bb8 l .text 0000000000000000 .L0 +0000000000009b80 l .text 0000000000000000 .L0 +0000000000009b90 l .text 0000000000000000 .L0 +0000000000009b86 l .text 0000000000000000 .L0 +0000000000009bb4 l .text 0000000000000000 .L0 +0000000000009b9e l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_setlogmask.c +0000000000000000 l .sdata.g_syslog_mask 0000000000000000 .LANCHOR0 +0000000000009bb8 l .text 0000000000000000 .L0 +000000000000be82 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000001d792 l .debug_str 0000000000000000 .LASF10 +000000000001d747 l .debug_str 0000000000000000 .LASF11 +000000000001d842 l .debug_str 0000000000000000 .LASF12 +00000000000030e0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000001d6bc l .debug_line 0000000000000000 .Ldebug_line0 +000000000001d8ae l .debug_str 0000000000000000 .LASF0 +000000000001d8ba l .debug_str 0000000000000000 .LASF8 +000000000001d75f l .debug_str 0000000000000000 .LASF1 +000000000001d89b l .debug_str 0000000000000000 .LASF2 +000000000001d77f l .debug_str 0000000000000000 .LASF3 +000000000001d73a l .debug_str 0000000000000000 .LASF4 +000000000001d8a5 l .debug_str 0000000000000000 .LASF5 +000000000001d76d l .debug_str 0000000000000000 .LASF6 +000000000001d864 l .debug_str 0000000000000000 .LASF7 +000000000001d87b l .debug_str 0000000000000000 .LASF9 +000000000001d72c l .debug_str 0000000000000000 .LASF13 +000000000001d883 l .debug_str 0000000000000000 .LASF14 +0000000000009bb8 l .text 0000000000000000 .LFB0 +0000000000009bcc l .text 0000000000000000 .LFE0 +000000000001d896 l .debug_str 0000000000000000 .LASF15 +000000000001c51e l .debug_loc 0000000000000000 .LLST0 +000000000001d88e l .debug_str 0000000000000000 .LASF16 +0000000000009bb8 l .text 0000000000000000 .LVL0 +0000000000009bca l .text 0000000000000000 .LVL2 +0000000000029883 l .debug_info 0000000000000000 .Ldebug_info0 +0000000000009bb8 l .text 0000000000000000 .L0 +0000000000009bb8 l .text 0000000000000000 .L0 +0000000000009bb8 l .text 0000000000000000 .L0 +0000000000009bb8 l .text 0000000000000000 .L0 +0000000000009bc4 l .text 0000000000000000 .L0 +0000000000009bc4 l .text 0000000000000000 .L0 +0000000000009bc8 l .text 0000000000000000 .L0 +0000000000009bc8 l .text 0000000000000000 .L0 +0000000000009bcc l .text 0000000000000000 .L0 +0000000000003968 l .debug_frame 0000000000000000 .L0 +0000000000009bb8 l .text 0000000000000000 .L0 +0000000000009bcc l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_time.c +0000000000009bf0 l .text 0000000000000000 .L4 +0000000000009be8 l .text 0000000000000000 .L2 +000000000000bf1b l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000001d9c0 l .debug_str 0000000000000000 .LASF15 +000000000001d977 l .debug_str 0000000000000000 .LASF16 +000000000001d999 l .debug_str 0000000000000000 .LASF17 +0000000000003100 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000001d7e3 l .debug_line 0000000000000000 .Ldebug_line0 +000000000001d96b l .debug_str 0000000000000000 .LASF0 +000000000001d92a l .debug_str 0000000000000000 .LASF1 +000000000001d98f l .debug_str 0000000000000000 .LASF2 +000000000001d958 l .debug_str 0000000000000000 .LASF3 +000000000001d8c3 l .debug_str 0000000000000000 .LASF8 +000000000001d8cd l .debug_str 0000000000000000 .LASF4 +000000000001d948 l .debug_str 0000000000000000 .LASF5 +000000000001d8ee l .debug_str 0000000000000000 .LASF6 +000000000001d900 l .debug_str 0000000000000000 .LASF7 +000000000001d93f l .debug_str 0000000000000000 .LASF9 +000000000001d938 l .debug_str 0000000000000000 .LASF10 +000000000001d9bb l .debug_str 0000000000000000 .LASF11 +000000000001d8e3 l .debug_str 0000000000000000 .LASF12 +000000000001d8da l .debug_str 0000000000000000 .LASF18 +000000000001d951 l .debug_str 0000000000000000 .LASF13 +000000000001d987 l .debug_str 0000000000000000 .LASF14 +000000000001d917 l .debug_str 0000000000000000 .LASF19 +0000000000009bcc l .text 0000000000000000 .LFB0 +0000000000009bf4 l .text 0000000000000000 .LFE0 +000000000001d8e9 l .debug_str 0000000000000000 .LASF20 +000000000001c557 l .debug_loc 0000000000000000 .LLST0 +000000000001c5b6 l .debug_loc 0000000000000000 .LLST1 +0000000000009be0 l .text 0000000000000000 .LVL2 +000000000001d91c l .debug_str 0000000000000000 .LASF21 +0000000000009bcc l .text 0000000000000000 .LVL0 +0000000000009bd6 l .text 0000000000000000 .LVL1 +0000000000009bec l .text 0000000000000000 .LVL4 +0000000000009bf0 l .text 0000000000000000 .LVL5 +0000000000009be4 l .text 0000000000000000 .LVL3 +0000000000009bf2 l .text 0000000000000000 .LVL6 +000000000002995f l .debug_info 0000000000000000 .Ldebug_info0 +0000000000009bcc l .text 0000000000000000 .L0 +0000000000009bcc l .text 0000000000000000 .L0 +0000000000009bcc l .text 0000000000000000 .L0 +0000000000009bcc l .text 0000000000000000 .L0 +0000000000009bcc l .text 0000000000000000 .L0 +0000000000009bd0 l .text 0000000000000000 .L0 +0000000000009bd2 l .text 0000000000000000 .L0 +0000000000009bd4 l .text 0000000000000000 .L0 +0000000000009bd6 l .text 0000000000000000 .L0 +0000000000009bd8 l .text 0000000000000000 .L0 +0000000000009be0 l .text 0000000000000000 .L0 +0000000000009be0 l .text 0000000000000000 .L0 +0000000000009be2 l .text 0000000000000000 .L0 +0000000000009be2 l .text 0000000000000000 .L0 +0000000000009be4 l .text 0000000000000000 .L0 +0000000000009be6 l .text 0000000000000000 .L0 +0000000000009be6 l .text 0000000000000000 .L0 +0000000000009be8 l .text 0000000000000000 .L0 +0000000000009be8 l .text 0000000000000000 .L0 +0000000000009bf0 l .text 0000000000000000 .L0 +0000000000009bf4 l .text 0000000000000000 .L0 +0000000000003990 l .debug_frame 0000000000000000 .L0 +0000000000009bcc l .text 0000000000000000 .L0 +0000000000009bf4 l .text 0000000000000000 .L0 +0000000000009bea l .text 0000000000000000 .L0 +0000000000009bd8 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_gmtime.c +0000000000000518 l O .bss 0000000000000038 tm.0 +0000000000000518 l .bss 0000000000000000 .LANCHOR0 +0000000000009bf4 l .text 0000000000000000 .L0 +000000000000c01f l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000001da9d l .debug_str 0000000000000000 .LASF26 +000000000001db79 l .debug_str 0000000000000000 .LASF27 +000000000001dc3f l .debug_str 0000000000000000 .LASF28 +0000000000003120 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000001d95b l .debug_line 0000000000000000 .Ldebug_line0 +000000000001db99 l .debug_str 0000000000000000 .LASF0 +000000000001db8b l .debug_str 0000000000000000 .LASF1 +000000000001da78 l .debug_str 0000000000000000 .LASF2 +000000000001dbe2 l .debug_str 0000000000000000 .LASF3 +000000000001dc24 l .debug_str 0000000000000000 .LASF8 +000000000001dbcd l .debug_str 0000000000000000 .LASF4 +000000000001db70 l .debug_str 0000000000000000 .LASF5 +000000000001dc12 l .debug_str 0000000000000000 .LASF6 +000000000001dbad l .debug_str 0000000000000000 .LASF7 +000000000001dbc4 l .debug_str 0000000000000000 .LASF9 +000000000001db4d l .debug_str 0000000000000000 .LASF10 +000000000001dbf5 l .debug_str 0000000000000000 .LASF11 +000000000001dc2e l .debug_str 0000000000000000 .LASF12 +000000000001dc02 l .debug_str 0000000000000000 .LASF13 +000000000001db61 l .debug_str 0000000000000000 .LASF14 +000000000001dbda l .debug_str 0000000000000000 .LASF15 +000000000001db69 l .debug_str 0000000000000000 .LASF16 +000000000001dba5 l .debug_str 0000000000000000 .LASF17 +000000000001da8b l .debug_str 0000000000000000 .LASF18 +000000000001dbfa l .debug_str 0000000000000000 .LASF19 +000000000001dc09 l .debug_str 0000000000000000 .LASF20 +000000000001da93 l .debug_str 0000000000000000 .LASF21 +000000000001da70 l .debug_str 0000000000000000 .LASF22 +000000000001dc35 l .debug_str 0000000000000000 .LASF23 +0000000000009c04 l .text 0000000000000000 .LFB1 +0000000000009c0c l .text 0000000000000000 .LFE1 +000000000001db54 l .debug_str 0000000000000000 .LASF25 +000000000001c5ec l .debug_loc 0000000000000000 .LLST1 +0000000000009c0c l .text 0000000000000000 .LVL3 +000000000001db5a l .debug_str 0000000000000000 .LASF24 +0000000000009bf4 l .text 0000000000000000 .LFB0 +0000000000009c04 l .text 0000000000000000 .LFE0 +000000000001c625 l .debug_loc 0000000000000000 .LLST0 +0000000000009c04 l .text 0000000000000000 .LVL1 +000000000001da82 l .debug_str 0000000000000000 .LASF29 +0000000000009c04 l .text 0000000000000000 .LVL2 +0000000000009bf4 l .text 0000000000000000 .LVL0 +0000000000029ab2 l .debug_info 0000000000000000 .Ldebug_info0 +0000000000009bf4 l .text 0000000000000000 .L0 +0000000000009c04 l .text 0000000000000000 .L0 +0000000000009bf4 l .text 0000000000000000 .L0 +0000000000009bf4 l .text 0000000000000000 .L0 +0000000000009bf4 l .text 0000000000000000 .L0 +0000000000009c04 l .text 0000000000000000 .L0 +0000000000009c04 l .text 0000000000000000 .L0 +0000000000009c04 l .text 0000000000000000 .L0 +0000000000009c0c l .text 0000000000000000 .L0 +00000000000039d0 l .debug_frame 0000000000000000 .L0 +0000000000009bf4 l .text 0000000000000000 .L0 +0000000000009c04 l .text 0000000000000000 .L0 +0000000000009c04 l .text 0000000000000000 .L0 +0000000000009c0c l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_gmtimer.c +0000000000009d5a l .text 0000000000000000 .L9 +0000000000009d62 l .text 0000000000000000 .L5 +0000000000009d88 l .text 0000000000000000 .L11 +0000000000009d8c l .text 0000000000000000 .L12 +0000000000009c9a l .text 0000000000000000 .L8 +0000000000009c8a l .text 0000000000000000 .L3 +0000000000009d80 l .text 0000000000000000 .L10 +0000000000009d7c l .text 0000000000000000 .L4 +0000000000009cd0 l .text 0000000000000000 .L6 +0000000000009cd4 l .text 0000000000000000 .L7 +000000000000c0f7 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000001dcc3 l .debug_str 0000000000000000 .LASF38 +000000000001dcab l .debug_str 0000000000000000 .LASF39 +000000000001deb0 l .debug_str 0000000000000000 .LASF40 +0000000000003150 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000001da76 l .debug_line 0000000000000000 .Ldebug_line0 +000000000001de14 l .debug_str 0000000000000000 .LASF0 +000000000001dde0 l .debug_str 0000000000000000 .LASF1 +000000000001ddd2 l .debug_str 0000000000000000 .LASF2 +000000000001dc70 l .debug_str 0000000000000000 .LASF3 +000000000001de29 l .debug_str 0000000000000000 .LASF4 +000000000001de99 l .debug_str 0000000000000000 .LASF8 +000000000001ddab l .debug_str 0000000000000000 .LASF5 +000000000001de87 l .debug_str 0000000000000000 .LASF6 +000000000001ddf4 l .debug_str 0000000000000000 .LASF7 +000000000001de0b l .debug_str 0000000000000000 .LASF9 +000000000001dd8f l .debug_str 0000000000000000 .LASF10 +000000000001de3c l .debug_str 0000000000000000 .LASF11 +000000000001dea3 l .debug_str 0000000000000000 .LASF12 +000000000001de77 l .debug_str 0000000000000000 .LASF13 +000000000001dd9c l .debug_str 0000000000000000 .LASF14 +000000000001de21 l .debug_str 0000000000000000 .LASF15 +000000000001dda4 l .debug_str 0000000000000000 .LASF16 +000000000001ddec l .debug_str 0000000000000000 .LASF17 +000000000001dc99 l .debug_str 0000000000000000 .LASF18 +000000000001de5d l .debug_str 0000000000000000 .LASF19 +000000000001de7e l .debug_str 0000000000000000 .LASF20 +000000000001dca1 l .debug_str 0000000000000000 .LASF21 +000000000001dc68 l .debug_str 0000000000000000 .LASF22 +000000000001de6b l .debug_str 0000000000000000 .LASF25 +0000000000009d90 l .text 0000000000000000 .LFB2 +0000000000009d98 l .text 0000000000000000 .LFE2 +000000000001dd96 l .debug_str 0000000000000000 .LASF23 +000000000001c65e l .debug_loc 0000000000000000 .LLST19 +000000000001dc61 l .debug_str 0000000000000000 .LASF24 +000000000001c697 l .debug_loc 0000000000000000 .LLST20 +0000000000009d98 l .text 0000000000000000 .LVL47 +000000000001dc7a l .debug_str 0000000000000000 .LASF26 +0000000000009c0c l .text 0000000000000000 .LFB1 +0000000000009d90 l .text 0000000000000000 .LFE1 +000000000001c6d0 l .debug_loc 0000000000000000 .LLST0 +000000000001c709 l .debug_loc 0000000000000000 .LLST1 +000000000001ddcc l .debug_str 0000000000000000 .LASF27 +000000000001c765 l .debug_loc 0000000000000000 .LLST2 +000000000001c7ef l .debug_loc 0000000000000000 .LLST3 +000000000001dcbe l .debug_str 0000000000000000 .LASF28 +000000000001c844 l .debug_loc 0000000000000000 .LLST4 +000000000001de65 l .debug_str 0000000000000000 .LASF29 +000000000001c896 l .debug_loc 0000000000000000 .LLST5 +000000000001c8bb l .debug_loc 0000000000000000 .LLST6 +000000000001ddc7 l .debug_str 0000000000000000 .LASF30 +000000000001c8f3 l .debug_loc 0000000000000000 .LLST7 +000000000001c929 l .debug_loc 0000000000000000 .LLST8 +000000000001c95f l .debug_loc 0000000000000000 .LLST9 +0000000000009c3a l .text 0000000000000000 .LBB4 +000000000001c995 l .debug_loc 0000000000000000 .LLST10 +000000000001c9d5 l .debug_loc 0000000000000000 .LLST11 +000000000001ca15 l .debug_loc 0000000000000000 .LLST12 +000000000001ca55 l .debug_loc 0000000000000000 .LLST13 +000000000001cac2 l .debug_loc 0000000000000000 .LLST14 +000000000001cb92 l .debug_loc 0000000000000000 .LLST15 +000000000001cbef l .debug_loc 0000000000000000 .LLST16 +000000000001cc39 l .debug_loc 0000000000000000 .LLST17 +000000000001cca8 l .debug_loc 0000000000000000 .LLST18 +0000000000009c82 l .text 0000000000000000 .LVL11 +0000000000009cb2 l .text 0000000000000000 .LVL16 +0000000000009cc4 l .text 0000000000000000 .LVL18 +0000000000009cde l .text 0000000000000000 .LVL21 +0000000000009d74 l .text 0000000000000000 .LVL39 +0000000000009d0c l .text 0000000000000000 .LVL25 +0000000000009d1c l .text 0000000000000000 .LVL27 +0000000000009d2a l .text 0000000000000000 .LVL28 +000000000001dd73 l .debug_str 0000000000000000 .LASF41 +000000000001dc83 l .debug_str 0000000000000000 .LASF31 +000000000001deaa l .debug_str 0000000000000000 .LASF32 +000000000001dd86 l .debug_str 0000000000000000 .LASF33 +000000000001de41 l .debug_str 0000000000000000 .LASF34 +000000000001dc88 l .debug_str 0000000000000000 .LASF35 +000000000001de47 l .debug_str 0000000000000000 .LASF36 +000000000001ddb4 l .debug_str 0000000000000000 .LASF37 +0000000000009d90 l .text 0000000000000000 .LVL46 +0000000000009c0c l .text 0000000000000000 .LVL0 +0000000000009c3e l .text 0000000000000000 .LVL3 +0000000000009d56 l .text 0000000000000000 .LVL34 +0000000000009d5a l .text 0000000000000000 .LVL35 +0000000000009c2a l .text 0000000000000000 .LVL1 +0000000000009c34 l .text 0000000000000000 .LVL2 +0000000000009c50 l .text 0000000000000000 .LVL5 +0000000000009c58 l .text 0000000000000000 .LVL6 +0000000000009c6c l .text 0000000000000000 .LVL8 +0000000000009d42 l .text 0000000000000000 .LVL31 +0000000000009c60 l .text 0000000000000000 .LVL7 +0000000000009c96 l .text 0000000000000000 .LVL13 +0000000000009ce8 l .text 0000000000000000 .LVL24 +0000000000009d3e l .text 0000000000000000 .LVL30 +0000000000009d88 l .text 0000000000000000 .LVL42 +0000000000009ce0 l .text 0000000000000000 .LVL22 +0000000000009d10 l .text 0000000000000000 .LVL26 +0000000000009ce4 l .text 0000000000000000 .LVL23 +0000000000009d2c l .text 0000000000000000 .LVL29 +0000000000009c48 l .text 0000000000000000 .LVL4 +0000000000009d48 l .text 0000000000000000 .LVL33 +0000000000009d46 l .text 0000000000000000 .LVL32 +0000000000029cbc l .debug_info 0000000000000000 .Ldebug_info0 +0000000000009c7a l .text 0000000000000000 .LVL10 +0000000000009c8a l .text 0000000000000000 .LVL12 +0000000000009d62 l .text 0000000000000000 .LVL36 +0000000000009d6c l .text 0000000000000000 .LVL38 +0000000000009c78 l .text 0000000000000000 .LVL9 +0000000000009c9a l .text 0000000000000000 .LVL14 +0000000000009ca2 l .text 0000000000000000 .LVL15 +0000000000009cd0 l .text 0000000000000000 .LVL19 +0000000000009d6a l .text 0000000000000000 .LVL37 +0000000000009d7e l .text 0000000000000000 .LVL40 +0000000000009d80 l .text 0000000000000000 .LVL41 +0000000000009cd4 l .text 0000000000000000 .LVL20 +0000000000009d8a l .text 0000000000000000 .LVL43 +0000000000009d8c l .text 0000000000000000 .LVL44 +0000000000009d8e l .text 0000000000000000 .LVL45 +0000000000009cbc l .text 0000000000000000 .LVL17 +0000000000009c42 l .text 0000000000000000 .LBE4 +0000000000009c58 l .text 0000000000000000 .LBB10 +0000000000009c5c l .text 0000000000000000 .LBE10 +0000000000009c60 l .text 0000000000000000 .LBB11 +0000000000009c64 l .text 0000000000000000 .LBE11 +0000000000009c6c l .text 0000000000000000 .LBB12 +0000000000009ce4 l .text 0000000000000000 .LBE12 +0000000000009d5a l .text 0000000000000000 .LBB13 +0000000000009d90 l .text 0000000000000000 .LBE13 +0000000000009c0c l .text 0000000000000000 .L0 +0000000000009d90 l .text 0000000000000000 .L0 +0000000000009c0c l .text 0000000000000000 .L0 +0000000000009c0c l .text 0000000000000000 .L0 +0000000000009c0c l .text 0000000000000000 .L0 +0000000000009c0c l .text 0000000000000000 .L0 +0000000000009c0c l .text 0000000000000000 .L0 +0000000000009c0c l .text 0000000000000000 .L0 +0000000000009c0c l .text 0000000000000000 .L0 +0000000000009c0c l .text 0000000000000000 .L0 +0000000000009c0c l .text 0000000000000000 .L0 +0000000000009c0c l .text 0000000000000000 .L0 +0000000000009c28 l .text 0000000000000000 .L0 +0000000000009c2a l .text 0000000000000000 .L0 +0000000000009c2a l .text 0000000000000000 .L0 +0000000000009c2a l .text 0000000000000000 .L0 +0000000000009c2a l .text 0000000000000000 .L0 +0000000000009c2a l .text 0000000000000000 .L0 +0000000000009c34 l .text 0000000000000000 .L0 +0000000000009c34 l .text 0000000000000000 .L0 +0000000000009c3a l .text 0000000000000000 .L0 +0000000000009c42 l .text 0000000000000000 .L0 +0000000000009c44 l .text 0000000000000000 .L0 +0000000000009c48 l .text 0000000000000000 .L0 +0000000000009c48 l .text 0000000000000000 .L0 +0000000000009c4c l .text 0000000000000000 .L0 +0000000000009c50 l .text 0000000000000000 .L0 +0000000000009c50 l .text 0000000000000000 .L0 +0000000000009c58 l .text 0000000000000000 .L0 +0000000000009c58 l .text 0000000000000000 .L0 +0000000000009c58 l .text 0000000000000000 .L0 +0000000000009c5c l .text 0000000000000000 .L0 +0000000000009c60 l .text 0000000000000000 .L0 +0000000000009c64 l .text 0000000000000000 .L0 +0000000000009c68 l .text 0000000000000000 .L0 +0000000000009c6c l .text 0000000000000000 .L0 +0000000000009c6c l .text 0000000000000000 .L0 +0000000000009c6c l .text 0000000000000000 .L0 +0000000000009c6c l .text 0000000000000000 .L0 +0000000000009c6c l .text 0000000000000000 .L0 +0000000000009c6c l .text 0000000000000000 .L0 +0000000000009c6c l .text 0000000000000000 .L0 +0000000000009c6c l .text 0000000000000000 .L0 +0000000000009c6c l .text 0000000000000000 .L0 +0000000000009c6c l .text 0000000000000000 .L0 +0000000000009c6c l .text 0000000000000000 .L0 +0000000000009c6c l .text 0000000000000000 .L0 +0000000000009c74 l .text 0000000000000000 .L0 +0000000000009c78 l .text 0000000000000000 .L0 +0000000000009c7a l .text 0000000000000000 .L0 +0000000000009c7a l .text 0000000000000000 .L0 +0000000000009c7a l .text 0000000000000000 .L0 +0000000000009c82 l .text 0000000000000000 .L0 +0000000000009c82 l .text 0000000000000000 .L0 +0000000000009c8a l .text 0000000000000000 .L0 +0000000000009c8a l .text 0000000000000000 .L0 +0000000000009c8e l .text 0000000000000000 .L0 +0000000000009c92 l .text 0000000000000000 .L0 +0000000000009c92 l .text 0000000000000000 .L0 +0000000000009c96 l .text 0000000000000000 .L0 +0000000000009c96 l .text 0000000000000000 .L0 +0000000000009c96 l .text 0000000000000000 .L0 +0000000000009c98 l .text 0000000000000000 .L0 +0000000000009c9a l .text 0000000000000000 .L0 +0000000000009c9a l .text 0000000000000000 .L0 +0000000000009c9a l .text 0000000000000000 .L0 +0000000000009c9e l .text 0000000000000000 .L0 +0000000000009ca2 l .text 0000000000000000 .L0 +0000000000009ca2 l .text 0000000000000000 .L0 +0000000000009cb2 l .text 0000000000000000 .L0 +0000000000009cb2 l .text 0000000000000000 .L0 +0000000000009cba l .text 0000000000000000 .L0 +0000000000009cba l .text 0000000000000000 .L0 +0000000000009cc4 l .text 0000000000000000 .L0 +0000000000009cc4 l .text 0000000000000000 .L0 +0000000000009ccc l .text 0000000000000000 .L0 +0000000000009ccc l .text 0000000000000000 .L0 +0000000000009cd0 l .text 0000000000000000 .L0 +0000000000009cd0 l .text 0000000000000000 .L0 +0000000000009cd0 l .text 0000000000000000 .L0 +0000000000009cd4 l .text 0000000000000000 .L0 +0000000000009cd4 l .text 0000000000000000 .L0 +0000000000009cde l .text 0000000000000000 .L0 +0000000000009ce0 l .text 0000000000000000 .L0 +0000000000009ce0 l .text 0000000000000000 .L0 +0000000000009ce0 l .text 0000000000000000 .L0 +0000000000009ce4 l .text 0000000000000000 .L0 +0000000000009ce4 l .text 0000000000000000 .L0 +0000000000009ce4 l .text 0000000000000000 .L0 +0000000000009ce4 l .text 0000000000000000 .L0 +0000000000009ce4 l .text 0000000000000000 .L0 +0000000000009ce8 l .text 0000000000000000 .L0 +0000000000009cee l .text 0000000000000000 .L0 +0000000000009cf2 l .text 0000000000000000 .L0 +0000000000009cf2 l .text 0000000000000000 .L0 +0000000000009cf6 l .text 0000000000000000 .L0 +0000000000009cf6 l .text 0000000000000000 .L0 +0000000000009cfa l .text 0000000000000000 .L0 +0000000000009cfe l .text 0000000000000000 .L0 +0000000000009d02 l .text 0000000000000000 .L0 +0000000000009d04 l .text 0000000000000000 .L0 +0000000000009d04 l .text 0000000000000000 .L0 +0000000000009d04 l .text 0000000000000000 .L0 +0000000000009d04 l .text 0000000000000000 .L0 +0000000000009d04 l .text 0000000000000000 .L0 +0000000000009d0c l .text 0000000000000000 .L0 +0000000000009d10 l .text 0000000000000000 .L0 +0000000000009d12 l .text 0000000000000000 .L0 +0000000000009d12 l .text 0000000000000000 .L0 +0000000000009d1c l .text 0000000000000000 .L0 +0000000000009d2a l .text 0000000000000000 .L0 +0000000000009d2c l .text 0000000000000000 .L0 +0000000000009d2e l .text 0000000000000000 .L0 +0000000000009d2e l .text 0000000000000000 .L0 +0000000000009d32 l .text 0000000000000000 .L0 +0000000000009d36 l .text 0000000000000000 .L0 +0000000000009d36 l .text 0000000000000000 .L0 +0000000000009d3a l .text 0000000000000000 .L0 +0000000000009d3a l .text 0000000000000000 .L0 +0000000000009d3e l .text 0000000000000000 .L0 +0000000000009d3e l .text 0000000000000000 .L0 +0000000000009d5c l .text 0000000000000000 .L0 +0000000000009d62 l .text 0000000000000000 .L0 +0000000000009d62 l .text 0000000000000000 .L0 +0000000000009d66 l .text 0000000000000000 .L0 +0000000000009d6a l .text 0000000000000000 .L0 +0000000000009d6a l .text 0000000000000000 .L0 +0000000000009d6c l .text 0000000000000000 .L0 +0000000000009d6c l .text 0000000000000000 .L0 +0000000000009d74 l .text 0000000000000000 .L0 +0000000000009d74 l .text 0000000000000000 .L0 +0000000000009d88 l .text 0000000000000000 .L0 +0000000000009d8c l .text 0000000000000000 .L0 +0000000000009d90 l .text 0000000000000000 .L0 +0000000000009d90 l .text 0000000000000000 .L0 +0000000000009d90 l .text 0000000000000000 .L0 +0000000000009d98 l .text 0000000000000000 .L0 +0000000000003a10 l .debug_frame 0000000000000000 .L0 +0000000000009c0c l .text 0000000000000000 .L0 +0000000000009d90 l .text 0000000000000000 .L0 +0000000000009d90 l .text 0000000000000000 .L0 +0000000000009d98 l .text 0000000000000000 .L0 +0000000000009d30 l .text 0000000000000000 .L0 +0000000000009c28 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_getopt.c +000000000000c273 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000001e00d l .debug_str 0000000000000000 .LASF18 +000000000001deed l .debug_str 0000000000000000 .LASF19 +000000000001dfeb l .debug_str 0000000000000000 .LASF20 +00000000000031e0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000001dfc1 l .debug_line 0000000000000000 .Ldebug_line0 +000000000001dfb3 l .debug_str 0000000000000000 .LASF0 +000000000001df5f l .debug_str 0000000000000000 .LASF1 +000000000001dfe1 l .debug_str 0000000000000000 .LASF2 +000000000001dfa0 l .debug_str 0000000000000000 .LASF3 +000000000001dee0 l .debug_str 0000000000000000 .LASF4 +000000000001df72 l .debug_str 0000000000000000 .LASF5 +000000000001df01 l .debug_str 0000000000000000 .LASF6 +000000000001df21 l .debug_str 0000000000000000 .LASF7 +000000000001df6d l .debug_str 0000000000000000 .LASF8 +000000000001ded2 l .debug_str 0000000000000000 .LASF9 +000000000001dfd5 l .debug_str 0000000000000000 .LASF10 +000000000001df7b l .debug_str 0000000000000000 .LASF11 +000000000001df13 l .debug_str 0000000000000000 .LASF21 +000000000001df94 l .debug_str 0000000000000000 .LASF12 +000000000001dfbf l .debug_str 0000000000000000 .LASF13 +000000000001df38 l .debug_str 0000000000000000 .LASF14 +000000000001df58 l .debug_str 0000000000000000 .LASF22 +0000000000009d98 l .text 0000000000000000 .LFB7 +0000000000009da6 l .text 0000000000000000 .LFE7 +000000000001df8f l .debug_str 0000000000000000 .LASF15 +000000000001cd2c l .debug_loc 0000000000000000 .LLST0 +000000000001dfd0 l .debug_str 0000000000000000 .LASF16 +000000000001cd65 l .debug_loc 0000000000000000 .LLST1 +000000000001df4e l .debug_str 0000000000000000 .LASF17 +000000000001cd9e l .debug_loc 0000000000000000 .LLST2 +0000000000009da6 l .text 0000000000000000 .LVL1 +000000000001df81 l .debug_str 0000000000000000 .LASF23 +0000000000009d98 l .text 0000000000000000 .LVL0 +000000000002a12d l .debug_info 0000000000000000 .Ldebug_info0 +0000000000009d98 l .text 0000000000000000 .L0 +0000000000009d98 l .text 0000000000000000 .L0 +0000000000009d98 l .text 0000000000000000 .L0 +0000000000009da6 l .text 0000000000000000 .L0 +0000000000003a98 l .debug_frame 0000000000000000 .L0 +0000000000009d98 l .text 0000000000000000 .L0 +0000000000009da6 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_getoptargp.c +000000000000c327 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000001e1f3 l .debug_str 0000000000000000 .LASF18 +000000000001e11b l .debug_str 0000000000000000 .LASF19 +000000000001e143 l .debug_str 0000000000000000 .LASF20 +0000000000003200 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000001e055 l .debug_line 0000000000000000 .Ldebug_line0 +000000000001e1c7 l .debug_str 0000000000000000 .LASF0 +000000000001e165 l .debug_str 0000000000000000 .LASF1 +000000000001e181 l .debug_str 0000000000000000 .LASF2 +000000000001e1b4 l .debug_str 0000000000000000 .LASF3 +000000000001e0c7 l .debug_str 0000000000000000 .LASF4 +000000000001e178 l .debug_str 0000000000000000 .LASF5 +000000000001e0e8 l .debug_str 0000000000000000 .LASF6 +000000000001e0fa l .debug_str 0000000000000000 .LASF7 +000000000001e173 l .debug_str 0000000000000000 .LASF8 +000000000001e19b l .debug_str 0000000000000000 .LASF9 +000000000001e1dd l .debug_str 0000000000000000 .LASF10 +000000000001e195 l .debug_str 0000000000000000 .LASF11 +000000000001e0df l .debug_str 0000000000000000 .LASF21 +000000000001e1d3 l .debug_str 0000000000000000 .LASF12 +000000000001e111 l .debug_str 0000000000000000 .LASF13 +000000000001e18b l .debug_str 0000000000000000 .LASF14 +000000000001e1e9 l .debug_str 0000000000000000 .LASF15 +000000000001e0bd l .debug_str 0000000000000000 .LASF16 +000000000001e133 l .debug_str 0000000000000000 .LASF17 +000000000001e1a9 l .debug_str 0000000000000000 .LASF22 +0000000000009da6 l .text 0000000000000000 .LFB7 +0000000000009db8 l .text 0000000000000000 .LFE7 +0000000000009db2 l .text 0000000000000000 .LVL0 +000000000001e0d4 l .debug_str 0000000000000000 .LASF23 +000000000002a27e l .debug_info 0000000000000000 .Ldebug_info0 +0000000000009da6 l .text 0000000000000000 .L0 +0000000000009da6 l .text 0000000000000000 .L0 +0000000000009da6 l .text 0000000000000000 .L0 +0000000000009daa l .text 0000000000000000 .L0 +0000000000009db2 l .text 0000000000000000 .L0 +0000000000009db2 l .text 0000000000000000 .L0 +0000000000009db8 l .text 0000000000000000 .L0 +0000000000003ac0 l .debug_frame 0000000000000000 .L0 +0000000000009da6 l .text 0000000000000000 .L0 +0000000000009db8 l .text 0000000000000000 .L0 +0000000000009db4 l .text 0000000000000000 .L0 +0000000000009daa l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_getoptindp.c +000000000000c3c9 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000001e3d9 l .debug_str 0000000000000000 .LASF18 +000000000001e3ab l .debug_str 0000000000000000 .LASF19 +000000000001e31c l .debug_str 0000000000000000 .LASF20 +0000000000003220 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000001e135 l .debug_line 0000000000000000 .Ldebug_line0 +000000000001e395 l .debug_str 0000000000000000 .LASF0 +000000000001e33e l .debug_str 0000000000000000 .LASF1 +000000000001e35a l .debug_str 0000000000000000 .LASF2 +000000000001e382 l .debug_str 0000000000000000 .LASF3 +000000000001e2ad l .debug_str 0000000000000000 .LASF4 +000000000001e351 l .debug_str 0000000000000000 .LASF5 +000000000001e2ce l .debug_str 0000000000000000 .LASF6 +000000000001e2e0 l .debug_str 0000000000000000 .LASF7 +000000000001e34c l .debug_str 0000000000000000 .LASF8 +000000000001e374 l .debug_str 0000000000000000 .LASF9 +000000000001e3c3 l .debug_str 0000000000000000 .LASF10 +000000000001e36e l .debug_str 0000000000000000 .LASF11 +000000000001e2c5 l .debug_str 0000000000000000 .LASF21 +000000000001e3a1 l .debug_str 0000000000000000 .LASF12 +000000000001e2f7 l .debug_str 0000000000000000 .LASF13 +000000000001e364 l .debug_str 0000000000000000 .LASF14 +000000000001e3cf l .debug_str 0000000000000000 .LASF15 +000000000001e2a3 l .debug_str 0000000000000000 .LASF16 +000000000001e30c l .debug_str 0000000000000000 .LASF17 +000000000001e301 l .debug_str 0000000000000000 .LASF22 +0000000000009db8 l .text 0000000000000000 .LFB7 +0000000000009dcc l .text 0000000000000000 .LFE7 +000000000001cdd7 l .debug_loc 0000000000000000 .LLST0 +0000000000009dc4 l .text 0000000000000000 .LVL0 +000000000001e2ba l .debug_str 0000000000000000 .LASF23 +0000000000009dc8 l .text 0000000000000000 .LVL1 +000000000002a3bb l .debug_info 0000000000000000 .Ldebug_info0 +0000000000009db8 l .text 0000000000000000 .L0 +0000000000009db8 l .text 0000000000000000 .L0 +0000000000009db8 l .text 0000000000000000 .L0 +0000000000009dbc l .text 0000000000000000 .L0 +0000000000009dc4 l .text 0000000000000000 .L0 +0000000000009dc4 l .text 0000000000000000 .L0 +0000000000009dcc l .text 0000000000000000 .L0 +0000000000003af8 l .debug_frame 0000000000000000 .L0 +0000000000009db8 l .text 0000000000000000 .L0 +0000000000009dcc l .text 0000000000000000 .L0 +0000000000009dc6 l .text 0000000000000000 .L0 +0000000000009dbc l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_sleep.c +0000000000009ddc l .text 0000000000000000 .L2 +0000000000009dd2 l .text 0000000000000000 .L4 +0000000000009dd4 l .text 0000000000000000 .L3 +000000000000c46b l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000001e59d l .debug_str 0000000000000000 .LASF17 +000000000001e4a5 l .debug_str 0000000000000000 .LASF18 +000000000001e569 l .debug_str 0000000000000000 .LASF19 +0000000000003240 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000001e215 l .debug_line 0000000000000000 .Ldebug_line0 +000000000001e53d l .debug_str 0000000000000000 .LASF0 +000000000001e4f6 l .debug_str 0000000000000000 .LASF1 +000000000001e55f l .debug_str 0000000000000000 .LASF2 +000000000001e52a l .debug_str 0000000000000000 .LASF3 +000000000001e489 l .debug_str 0000000000000000 .LASF8 +000000000001e493 l .debug_str 0000000000000000 .LASF4 +000000000001e51a l .debug_str 0000000000000000 .LASF5 +000000000001e4b8 l .debug_str 0000000000000000 .LASF6 +000000000001e4da l .debug_str 0000000000000000 .LASF7 +000000000001e511 l .debug_str 0000000000000000 .LASF9 +000000000001e504 l .debug_str 0000000000000000 .LASF10 +000000000001e4f1 l .debug_str 0000000000000000 .LASF11 +000000000001e549 l .debug_str 0000000000000000 .LASF20 +000000000001e523 l .debug_str 0000000000000000 .LASF12 +000000000001e557 l .debug_str 0000000000000000 .LASF13 +000000000001e50b l .debug_str 0000000000000000 .LASF21 +0000000000009dcc l .text 0000000000000000 .LFB4 +0000000000009e14 l .text 0000000000000000 .LFE4 +000000000001e595 l .debug_str 0000000000000000 .LASF22 +000000000001ce0f l .debug_loc 0000000000000000 .LLST0 +000000000001e552 l .debug_str 0000000000000000 .LASF14 +000000000001e4a0 l .debug_str 0000000000000000 .LASF15 +000000000001e58b l .debug_str 0000000000000000 .LASF16 +000000000001ce85 l .debug_loc 0000000000000000 .LLST1 +000000000001cefd l .debug_loc 0000000000000000 .LLST2 +0000000000009df8 l .text 0000000000000000 .LVL6 +000000000001e4ca l .debug_str 0000000000000000 .LASF23 +0000000000009dcc l .text 0000000000000000 .LVL0 +0000000000009dd0 l .text 0000000000000000 .LVL1 +0000000000009ddc l .text 0000000000000000 .LVL4 +0000000000009dec l .text 0000000000000000 .LVL5 +0000000000009dd2 l .text 0000000000000000 .LVL2 +0000000000009dd4 l .text 0000000000000000 .LVL3 +0000000000009dfe l .text 0000000000000000 .LVL7 +0000000000009e12 l .text 0000000000000000 .LVL8 +000000000002a4fa l .debug_info 0000000000000000 .Ldebug_info0 +0000000000009dcc l .text 0000000000000000 .L0 +0000000000009dcc l .text 0000000000000000 .L0 +0000000000009dcc l .text 0000000000000000 .L0 +0000000000009dcc l .text 0000000000000000 .L0 +0000000000009dcc l .text 0000000000000000 .L0 +0000000000009dcc l .text 0000000000000000 .L0 +0000000000009dcc l .text 0000000000000000 .L0 +0000000000009dce l .text 0000000000000000 .L0 +0000000000009dd0 l .text 0000000000000000 .L0 +0000000000009dd2 l .text 0000000000000000 .L0 +0000000000009dd4 l .text 0000000000000000 .L0 +0000000000009ddc l .text 0000000000000000 .L0 +0000000000009de0 l .text 0000000000000000 .L0 +0000000000009de4 l .text 0000000000000000 .L0 +0000000000009de4 l .text 0000000000000000 .L0 +0000000000009de4 l .text 0000000000000000 .L0 +0000000000009dec l .text 0000000000000000 .L0 +0000000000009dee l .text 0000000000000000 .L0 +0000000000009df0 l .text 0000000000000000 .L0 +0000000000009df0 l .text 0000000000000000 .L0 +0000000000009df8 l .text 0000000000000000 .L0 +0000000000009df8 l .text 0000000000000000 .L0 +0000000000009dfc l .text 0000000000000000 .L0 +0000000000009dfc l .text 0000000000000000 .L0 +0000000000009dfe l .text 0000000000000000 .L0 +0000000000009dfe l .text 0000000000000000 .L0 +0000000000009e02 l .text 0000000000000000 .L0 +0000000000009e10 l .text 0000000000000000 .L0 +0000000000009e10 l .text 0000000000000000 .L0 +0000000000009e14 l .text 0000000000000000 .L0 +0000000000003b30 l .debug_frame 0000000000000000 .L0 +0000000000009dcc l .text 0000000000000000 .L0 +0000000000009e14 l .text 0000000000000000 .L0 +0000000000009dd2 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_usleep.c +0000000000009e50 l .text 0000000000000000 .L3 +000000000000c552 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000001e75c l .debug_str 0000000000000000 .LASF16 +000000000001e705 l .debug_str 0000000000000000 .LASF17 +000000000001e730 l .debug_str 0000000000000000 .LASF18 +0000000000003260 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000001e3e5 l .debug_line 0000000000000000 .Ldebug_line0 +000000000001e657 l .debug_str 0000000000000000 .LASF0 +000000000001e6f9 l .debug_str 0000000000000000 .LASF1 +000000000001e6b1 l .debug_str 0000000000000000 .LASF2 +000000000001e726 l .debug_str 0000000000000000 .LASF3 +000000000001e6e6 l .debug_str 0000000000000000 .LASF4 +000000000001e64d l .debug_str 0000000000000000 .LASF8 +000000000001e6d6 l .debug_str 0000000000000000 .LASF5 +000000000001e678 l .debug_str 0000000000000000 .LASF6 +000000000001e69a l .debug_str 0000000000000000 .LASF7 +000000000001e6cd l .debug_str 0000000000000000 .LASF9 +000000000001e6c6 l .debug_str 0000000000000000 .LASF10 +000000000001e66d l .debug_str 0000000000000000 .LASF11 +000000000001e757 l .debug_str 0000000000000000 .LASF12 +000000000001e664 l .debug_str 0000000000000000 .LASF19 +000000000001e6df l .debug_str 0000000000000000 .LASF13 +000000000001e71e l .debug_str 0000000000000000 .LASF14 +000000000001e6bf l .debug_str 0000000000000000 .LASF20 +0000000000009e14 l .text 0000000000000000 .LFB0 +0000000000009e54 l .text 0000000000000000 .LFE0 +000000000001e752 l .debug_str 0000000000000000 .LASF21 +000000000001cf33 l .debug_loc 0000000000000000 .LLST0 +000000000001e719 l .debug_str 0000000000000000 .LASF15 +000000000001cf95 l .debug_loc 0000000000000000 .LLST1 +000000000001cfe8 l .debug_loc 0000000000000000 .LLST2 +0000000000009e4a l .text 0000000000000000 .LVL3 +000000000001e68a l .debug_str 0000000000000000 .LASF22 +0000000000009e14 l .text 0000000000000000 .LVL0 +0000000000009e30 l .text 0000000000000000 .LVL2 +0000000000009e50 l .text 0000000000000000 .LVL4 +0000000000009e52 l .text 0000000000000000 .LVL5 +0000000000009e16 l .text 0000000000000000 .LVL1 +000000000002a658 l .debug_info 0000000000000000 .Ldebug_info0 +0000000000009e14 l .text 0000000000000000 .L0 +0000000000009e14 l .text 0000000000000000 .L0 +0000000000009e14 l .text 0000000000000000 .L0 +0000000000009e14 l .text 0000000000000000 .L0 +0000000000009e14 l .text 0000000000000000 .L0 +0000000000009e14 l .text 0000000000000000 .L0 +0000000000009e16 l .text 0000000000000000 .L0 +0000000000009e16 l .text 0000000000000000 .L0 +0000000000009e16 l .text 0000000000000000 .L0 +0000000000009e22 l .text 0000000000000000 .L0 +0000000000009e24 l .text 0000000000000000 .L0 +0000000000009e2a l .text 0000000000000000 .L0 +0000000000009e2c l .text 0000000000000000 .L0 +0000000000009e34 l .text 0000000000000000 .L0 +0000000000009e36 l .text 0000000000000000 .L0 +0000000000009e36 l .text 0000000000000000 .L0 +0000000000009e40 l .text 0000000000000000 .L0 +0000000000009e40 l .text 0000000000000000 .L0 +0000000000009e4a l .text 0000000000000000 .L0 +0000000000009e4a l .text 0000000000000000 .L0 +0000000000009e50 l .text 0000000000000000 .L0 +0000000000009e52 l .text 0000000000000000 .L0 +0000000000009e52 l .text 0000000000000000 .L0 +0000000000009e54 l .text 0000000000000000 .L0 +0000000000003b70 l .debug_frame 0000000000000000 .L0 +0000000000009e14 l .text 0000000000000000 .L0 +0000000000009e54 l .text 0000000000000000 .L0 +0000000000009e24 l .text 0000000000000000 .L0 +0000000000009e4c l .text 0000000000000000 .L0 +0000000000009e2c l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_chdir.c +0000000000015dc8 l .rodata 0000000000000000 .LC1 +0000000000009eae l .text 0000000000000000 .L0 +0000000000015dc0 l .rodata 0000000000000000 .LC0 +0000000000009ec2 l .text 0000000000000000 .L0 +0000000000015dd0 l .rodata 0000000000000000 .LC2 +0000000000009ecc l .text 0000000000000000 .L0 +0000000000009ee0 l .text 0000000000000000 .L0 +0000000000009e88 l .text 0000000000000000 .L2 +0000000000009e94 l .text 0000000000000000 .L3 +0000000000009eca l .text 0000000000000000 .L4 +000000000000c637 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000001e87c l .debug_str 0000000000000000 .LASF57 +000000000001e869 l .debug_str 0000000000000000 .LASF58 +000000000001ead4 l .debug_str 0000000000000000 .LASF59 +0000000000003280 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000001e584 l .debug_line 0000000000000000 .Ldebug_line0 +000000000001e9ba l .debug_str 0000000000000000 .LASF0 +000000000001e981 l .debug_str 0000000000000000 .LASF1 +000000000001e9b1 l .debug_str 0000000000000000 .LASF3 +000000000001e838 l .debug_str 0000000000000000 .LASF2 +000000000001eac2 l .debug_str 0000000000000000 .LASF4 +000000000001ea14 l .debug_str 0000000000000000 .LASF5 +000000000001e9a1 l .debug_str 0000000000000000 .LASF6 +000000000001eaab l .debug_str 0000000000000000 .LASF7 +000000000001e9f6 l .debug_str 0000000000000000 .LASF8 +000000000001e972 l .debug_str 0000000000000000 .LASF9 +000000000001ea74 l .debug_str 0000000000000000 .LASF10 +000000000001e9c6 l .debug_str 0000000000000000 .LASF11 +000000000001ea45 l .debug_str 0000000000000000 .LASF12 +000000000001ea03 l .debug_str 0000000000000000 .LASF13 +000000000001ea3d l .debug_str 0000000000000000 .LASF14 +000000000001e9dd l .debug_str 0000000000000000 .LASF15 +000000000001e9ef l .debug_str 0000000000000000 .LASF16 +000000000001e81a l .debug_str 0000000000000000 .LASF17 +000000000001e814 l .debug_str 0000000000000000 .LASF18 +000000000001e98f l .debug_str 0000000000000000 .LASF19 +000000000001e96c l .debug_str 0000000000000000 .LASF20 +000000000001e861 l .debug_str 0000000000000000 .LASF21 +000000000001ea94 l .debug_str 0000000000000000 .LASF22 +000000000001ea86 l .debug_str 0000000000000000 .LASF23 +000000000001e82e l .debug_str 0000000000000000 .LASF24 +000000000001e92c l .debug_str 0000000000000000 .LASF25 +000000000001ea2d l .debug_str 0000000000000000 .LASF26 +000000000001e97b l .debug_str 0000000000000000 .LASF27 +000000000001eaa2 l .debug_str 0000000000000000 .LASF30 +000000000001e827 l .debug_str 0000000000000000 .LASF28 +000000000001e80c l .debug_str 0000000000000000 .LASF29 +000000000001eab5 l .debug_str 0000000000000000 .LASF31 +000000000001e851 l .debug_str 0000000000000000 .LASF32 +000000000001e9aa l .debug_str 0000000000000000 .LASF33 +000000000001eaba l .debug_str 0000000000000000 .LASF34 +000000000001e858 l .debug_str 0000000000000000 .LASF35 +000000000001ea65 l .debug_str 0000000000000000 .LASF36 +000000000001e965 l .debug_str 0000000000000000 .LASF37 +000000000001ea8c l .debug_str 0000000000000000 .LASF38 +000000000001ea6c l .debug_str 0000000000000000 .LASF39 +000000000001ea0c l .debug_str 0000000000000000 .LASF40 +000000000001ea5d l .debug_str 0000000000000000 .LASF41 +000000000001e842 l .debug_str 0000000000000000 .LASF42 +000000000001e94c l .debug_str 0000000000000000 .LASF43 +000000000001ea53 l .debug_str 0000000000000000 .LASF44 +000000000001e957 l .debug_str 0000000000000000 .LASF45 +000000000001e995 l .debug_str 0000000000000000 .LASF46 +000000000001ea4d l .debug_str 0000000000000000 .LASF47 +000000000001ea27 l .debug_str 0000000000000000 .LASF60 +0000000000009e54 l .text 0000000000000000 .LFB4 +0000000000009f06 l .text 0000000000000000 .LFE4 +000000000001ea9d l .debug_str 0000000000000000 .LASF61 +000000000001d046 l .debug_loc 0000000000000000 .LLST0 +000000000001e820 l .debug_str 0000000000000000 .LASF48 +000000000001d0bb l .debug_loc 0000000000000000 .LLST1 +000000000001eacc l .debug_str 0000000000000000 .LASF49 +000000000001d0f1 l .debug_loc 0000000000000000 .LLST2 +0000000000009e68 l .text 0000000000000000 .LVL1 +0000000000009e82 l .text 0000000000000000 .LVL3 +0000000000009ea0 l .text 0000000000000000 .LVL7 +0000000000009eae l .text 0000000000000000 .LVL9 +0000000000009ebe l .text 0000000000000000 .LVL10 +0000000000009edc l .text 0000000000000000 .LVL13 +0000000000009ef0 l .text 0000000000000000 .LVL14 +0000000000009efc l .text 0000000000000000 .LVL16 +0000000000009f04 l .text 0000000000000000 .LVL17 +000000000001eaf6 l .debug_str 0000000000000000 .LASF50 +000000000001e9e6 l .debug_str 0000000000000000 .LASF51 +000000000001ea32 l .debug_str 0000000000000000 .LASF52 +000000000001e940 l .debug_str 0000000000000000 .LASF53 +000000000001e84a l .debug_str 0000000000000000 .LASF54 +000000000001e947 l .debug_str 0000000000000000 .LASF55 +000000000001e933 l .debug_str 0000000000000000 .LASF56 +0000000000009e54 l .text 0000000000000000 .LVL0 +0000000000009e88 l .text 0000000000000000 .LVL4 +0000000000009e94 l .text 0000000000000000 .LVL5 +0000000000009ea2 l .text 0000000000000000 .LVL8 +0000000000009ec0 l .text 0000000000000000 .LVL11 +0000000000009eca l .text 0000000000000000 .LVL12 +0000000000009e6a l .text 0000000000000000 .LVL2 +0000000000009e96 l .text 0000000000000000 .LVL6 +0000000000009ef2 l .text 0000000000000000 .LVL15 +000000000002a7b3 l .debug_info 0000000000000000 .Ldebug_info0 +0000000000009e54 l .text 0000000000000000 .L0 +0000000000009e54 l .text 0000000000000000 .L0 +0000000000009e54 l .text 0000000000000000 .L0 +0000000000009e54 l .text 0000000000000000 .L0 +0000000000009e54 l .text 0000000000000000 .L0 +0000000000009e54 l .text 0000000000000000 .L0 +0000000000009e54 l .text 0000000000000000 .L0 +0000000000009e56 l .text 0000000000000000 .L0 +0000000000009e58 l .text 0000000000000000 .L0 +0000000000009e5e l .text 0000000000000000 .L0 +0000000000009e60 l .text 0000000000000000 .L0 +0000000000009e6a l .text 0000000000000000 .L0 +0000000000009e6a l .text 0000000000000000 .L0 +0000000000009e6e l .text 0000000000000000 .L0 +0000000000009e6e l .text 0000000000000000 .L0 +0000000000009e72 l .text 0000000000000000 .L0 +0000000000009e7a l .text 0000000000000000 .L0 +0000000000009e7a l .text 0000000000000000 .L0 +0000000000009e86 l .text 0000000000000000 .L0 +0000000000009e86 l .text 0000000000000000 .L0 +0000000000009e86 l .text 0000000000000000 .L0 +0000000000009e88 l .text 0000000000000000 .L0 +0000000000009e94 l .text 0000000000000000 .L0 +0000000000009e94 l .text 0000000000000000 .L0 +0000000000009ea2 l .text 0000000000000000 .L0 +0000000000009ea2 l .text 0000000000000000 .L0 +0000000000009ea4 l .text 0000000000000000 .L0 +0000000000009ea6 l .text 0000000000000000 .L0 +0000000000009eae l .text 0000000000000000 .L0 +0000000000009eae l .text 0000000000000000 .L0 +0000000000009ec0 l .text 0000000000000000 .L0 +0000000000009ec0 l .text 0000000000000000 .L0 +0000000000009ec2 l .text 0000000000000000 .L0 +0000000000009eca l .text 0000000000000000 .L0 +0000000000009edc l .text 0000000000000000 .L0 +0000000000009edc l .text 0000000000000000 .L0 +0000000000009ef2 l .text 0000000000000000 .L0 +0000000000009efc l .text 0000000000000000 .L0 +0000000000009f04 l .text 0000000000000000 .L0 +0000000000009f04 l .text 0000000000000000 .L0 +0000000000009f06 l .text 0000000000000000 .L0 +0000000000003ba8 l .debug_frame 0000000000000000 .L0 +0000000000009e54 l .text 0000000000000000 .L0 +0000000000009f06 l .text 0000000000000000 .L0 +0000000000009e8a l .text 0000000000000000 .L0 +0000000000009e5e l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_truncate.c +0000000000015dd8 l .rodata 0000000000000000 .LC0 +0000000000009f18 l .text 0000000000000000 .L0 +0000000000015e00 l .rodata 0000000000000000 .LC1 +0000000000009f24 l .text 0000000000000000 .L0 +0000000000009f18 l .text 0000000000000000 .L2 +0000000000009f34 l .text 0000000000000000 .L3 +0000000000009f5c l .text 0000000000000000 .L4 +000000000000c784 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000001ebef l .debug_str 0000000000000000 .LASF19 +000000000001ebd4 l .debug_str 0000000000000000 .LASF20 +000000000001eb51 l .debug_str 0000000000000000 .LASF21 +00000000000032a0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000001e7d2 l .debug_line 0000000000000000 .Ldebug_line0 +000000000001ebad l .debug_str 0000000000000000 .LASF0 +000000000001eb73 l .debug_str 0000000000000000 .LASF1 +000000000001ebc2 l .debug_str 0000000000000000 .LASF2 +000000000001eb9a l .debug_str 0000000000000000 .LASF3 +000000000001eb2b l .debug_str 0000000000000000 .LASF8 +000000000001eb0c l .debug_str 0000000000000000 .LASF4 +000000000001eb8b l .debug_str 0000000000000000 .LASF5 +000000000001ec9f l .debug_str 0000000000000000 .LASF6 +000000000001eb3a l .debug_str 0000000000000000 .LASF7 +000000000001ebcc l .debug_str 0000000000000000 .LASF9 +000000000001eb34 l .debug_str 0000000000000000 .LASF10 +000000000001ebea l .debug_str 0000000000000000 .LASF11 +000000000001eb25 l .debug_str 0000000000000000 .LASF12 +000000000001eafe l .debug_str 0000000000000000 .LASF22 +0000000000009f06 l .text 0000000000000000 .LFB0 +0000000000009f6a l .text 0000000000000000 .LFE0 +000000000001eb19 l .debug_str 0000000000000000 .LASF13 +000000000001d13a l .debug_loc 0000000000000000 .LLST0 +000000000001eb1e l .debug_str 0000000000000000 .LASF14 +000000000001d19c l .debug_loc 0000000000000000 .LLST1 +000000000001d1fe l .debug_loc 0000000000000000 .LLST2 +000000000001d221 l .debug_loc 0000000000000000 .LLST3 +0000000000009f34 l .text 0000000000000000 .LVL3 +0000000000009f3e l .text 0000000000000000 .LVL5 +0000000000009f50 l .text 0000000000000000 .LVL7 +0000000000009f5c l .text 0000000000000000 .LVL9 +000000000001ebb9 l .debug_str 0000000000000000 .LASF15 +000000000001eb07 l .debug_str 0000000000000000 .LASF16 +000000000001eb81 l .debug_str 0000000000000000 .LASF17 +000000000001eb94 l .debug_str 0000000000000000 .LASF18 +0000000000009f06 l .text 0000000000000000 .LVL0 +0000000000009f2c l .text 0000000000000000 .LVL2 +0000000000009f24 l .text 0000000000000000 .LVL1 +0000000000009f36 l .text 0000000000000000 .LVL4 +0000000000009f40 l .text 0000000000000000 .LVL6 +0000000000009f52 l .text 0000000000000000 .LVL8 +000000000002abd8 l .debug_info 0000000000000000 .Ldebug_info0 +0000000000009f06 l .text 0000000000000000 .L0 +0000000000009f06 l .text 0000000000000000 .L0 +0000000000009f06 l .text 0000000000000000 .L0 +0000000000009f06 l .text 0000000000000000 .L0 +0000000000009f06 l .text 0000000000000000 .L0 +0000000000009f06 l .text 0000000000000000 .L0 +0000000000009f10 l .text 0000000000000000 .L0 +0000000000009f14 l .text 0000000000000000 .L0 +0000000000009f18 l .text 0000000000000000 .L0 +0000000000009f34 l .text 0000000000000000 .L0 +0000000000009f34 l .text 0000000000000000 .L0 +0000000000009f34 l .text 0000000000000000 .L0 +0000000000009f40 l .text 0000000000000000 .L0 +0000000000009f40 l .text 0000000000000000 .L0 +0000000000009f42 l .text 0000000000000000 .L0 +0000000000009f46 l .text 0000000000000000 .L0 +0000000000009f46 l .text 0000000000000000 .L0 +0000000000009f52 l .text 0000000000000000 .L0 +0000000000009f5c l .text 0000000000000000 .L0 +0000000000009f5c l .text 0000000000000000 .L0 +0000000000009f6a l .text 0000000000000000 .L0 +0000000000003be8 l .debug_frame 0000000000000000 .L0 +0000000000009f06 l .text 0000000000000000 .L0 +0000000000009f6a l .text 0000000000000000 .L0 +0000000000009f5e l .text 0000000000000000 .L0 +0000000000009f10 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 sig_emptyset.c +000000000000c87c l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000001edc1 l .debug_str 0000000000000000 .LASF16 +000000000001ed1b l .debug_str 0000000000000000 .LASF17 +000000000001ed9f l .debug_str 0000000000000000 .LASF18 +00000000000032c0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000001e97e l .debug_line 0000000000000000 .Ldebug_line0 +000000000001ed6a l .debug_str 0000000000000000 .LASF0 +000000000001ecbb l .debug_str 0000000000000000 .LASF1 +000000000001ed88 l .debug_str 0000000000000000 .LASF2 +000000000001ed57 l .debug_str 0000000000000000 .LASF3 +000000000001ecb1 l .debug_str 0000000000000000 .LASF8 +000000000001ed92 l .debug_str 0000000000000000 .LASF4 +000000000001ed3a l .debug_str 0000000000000000 .LASF5 +000000000001ecdb l .debug_str 0000000000000000 .LASF6 +000000000001eced l .debug_str 0000000000000000 .LASF7 +000000000001ed31 l .debug_str 0000000000000000 .LASF9 +000000000001ed16 l .debug_str 0000000000000000 .LASF10 +000000000001ecc9 l .debug_str 0000000000000000 .LASF11 +000000000001ed04 l .debug_str 0000000000000000 .LASF19 +000000000001ed76 l .debug_str 0000000000000000 .LASF20 +000000000001ed0d l .debug_str 0000000000000000 .LASF12 +000000000001ed49 l .debug_str 0000000000000000 .LASF13 +000000000001ed7c l .debug_str 0000000000000000 .LASF14 +000000000001ed43 l .debug_str 0000000000000000 .LASF15 +000000000001eccf l .debug_str 0000000000000000 .LASF21 +0000000000009f6a l .text 0000000000000000 .LFB4 +0000000000009f76 l .text 0000000000000000 .LFE4 +000000000001d244 l .debug_loc 0000000000000000 .LLST0 +000000000001d27d l .debug_loc 0000000000000000 .LLST1 +0000000000009f6a l .text 0000000000000000 .LVL0 +0000000000009f74 l .text 0000000000000000 .LVL3 +0000000000009f6e l .text 0000000000000000 .LVL1 +0000000000009f72 l .text 0000000000000000 .LVL2 +000000000002ada2 l .debug_info 0000000000000000 .Ldebug_info0 +0000000000009f6a l .text 0000000000000000 .L0 +0000000000009f6a l .text 0000000000000000 .L0 +0000000000009f6a l .text 0000000000000000 .L0 +0000000000009f6a l .text 0000000000000000 .L0 +0000000000009f6a l .text 0000000000000000 .L0 +0000000000009f6a l .text 0000000000000000 .L0 +0000000000009f6e l .text 0000000000000000 .L0 +0000000000009f6e l .text 0000000000000000 .L0 +0000000000009f6e l .text 0000000000000000 .L0 +0000000000009f6e l .text 0000000000000000 .L0 +0000000000009f72 l .text 0000000000000000 .L0 +0000000000009f72 l .text 0000000000000000 .L0 +0000000000009f72 l .text 0000000000000000 .L0 +0000000000009f72 l .text 0000000000000000 .L0 +0000000000009f76 l .text 0000000000000000 .L0 +0000000000003c28 l .debug_frame 0000000000000000 .L0 +0000000000009f6a l .text 0000000000000000 .L0 +0000000000009f76 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_psfa_addaction.c +0000000000009f86 l .text 0000000000000000 .L3 +0000000000009f8c l .text 0000000000000000 .L4 +0000000000009f7a l .text 0000000000000000 .L2 +0000000000009f80 l .text 0000000000000000 .L5 +000000000000c966 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000001ef61 l .debug_str 0000000000000000 .LASF21 +000000000001eed8 l .debug_str 0000000000000000 .LASF22 +000000000001f0af l .debug_str 0000000000000000 .LASF23 +00000000000032e0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000001eacc l .debug_line 0000000000000000 .Ldebug_line0 +000000000001f071 l .debug_str 0000000000000000 .LASF0 +000000000001ee8c l .debug_str 0000000000000000 .LASF1 +000000000001f0a0 l .debug_str 0000000000000000 .LASF2 +000000000001f05e l .debug_str 0000000000000000 .LASF3 +000000000001ee7f l .debug_str 0000000000000000 .LASF4 +000000000001f02c l .debug_str 0000000000000000 .LASF5 +000000000001eec6 l .debug_str 0000000000000000 .LASF6 +000000000001eef3 l .debug_str 0000000000000000 .LASF7 +000000000001ef5c l .debug_str 0000000000000000 .LASF8 +000000000001ee71 l .debug_str 0000000000000000 .LASF9 +000000000001f07d l .debug_str 0000000000000000 .LASF10 +000000000001f011 l .debug_str 0000000000000000 .LASF24 +000000000001eeb1 l .debug_str 0000000000000000 .LASF25 +000000000001ef2e l .debug_str 0000000000000000 .LASF11 +000000000001ef10 l .debug_str 0000000000000000 .LASF12 +000000000001ef45 l .debug_str 0000000000000000 .LASF13 +000000000001f089 l .debug_str 0000000000000000 .LASF14 +000000000001f042 l .debug_str 0000000000000000 .LASF26 +000000000001ef28 l .debug_str 0000000000000000 .LASF15 +000000000001eeaa l .debug_str 0000000000000000 .LASF16 +000000000001ee9a l .debug_str 0000000000000000 .LASF27 +0000000000009f76 l .text 0000000000000000 .LFB0 +0000000000009f90 l .text 0000000000000000 .LFE0 +000000000001f035 l .debug_str 0000000000000000 .LASF17 +000000000001ef0a l .debug_str 0000000000000000 .LASF18 +000000000001f0aa l .debug_str 0000000000000000 .LASF19 +000000000001d2c9 l .debug_loc 0000000000000000 .LLST0 +000000000001f0d1 l .debug_str 0000000000000000 .LASF20 +000000000001d326 l .debug_loc 0000000000000000 .LLST1 +0000000000009f76 l .text 0000000000000000 .LVL0 +0000000000009f7a l .text 0000000000000000 .LVL2 +0000000000009f86 l .text 0000000000000000 .LVL3 +0000000000009f8a l .text 0000000000000000 .LVL4 +0000000000009f78 l .text 0000000000000000 .LVL1 +000000000002aede l .debug_info 0000000000000000 .Ldebug_info0 +0000000000009f76 l .text 0000000000000000 .L0 +0000000000009f76 l .text 0000000000000000 .L0 +0000000000009f76 l .text 0000000000000000 .L0 +0000000000009f76 l .text 0000000000000000 .L0 +0000000000009f76 l .text 0000000000000000 .L0 +0000000000009f78 l .text 0000000000000000 .L0 +0000000000009f7a l .text 0000000000000000 .L0 +0000000000009f7a l .text 0000000000000000 .L0 +0000000000009f7c l .text 0000000000000000 .L0 +0000000000009f7c l .text 0000000000000000 .L0 +0000000000009f7e l .text 0000000000000000 .L0 +0000000000009f7e l .text 0000000000000000 .L0 +0000000000009f80 l .text 0000000000000000 .L0 +0000000000009f80 l .text 0000000000000000 .L0 +0000000000009f84 l .text 0000000000000000 .L0 +0000000000009f86 l .text 0000000000000000 .L0 +0000000000009f86 l .text 0000000000000000 .L0 +0000000000009f86 l .text 0000000000000000 .L0 +0000000000009f8c l .text 0000000000000000 .L0 +0000000000009f8c l .text 0000000000000000 .L0 +0000000000009f90 l .text 0000000000000000 .L0 +0000000000003c50 l .debug_frame 0000000000000000 .L0 +0000000000009f76 l .text 0000000000000000 .L0 +0000000000009f90 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_realpath.c +0000000000009fbe l .text 0000000000000000 .L2 +0000000000009ff8 l .text 0000000000000000 .L1 +0000000000009fd4 l .text 0000000000000000 .L4 +0000000000009fb8 l .text 0000000000000000 .L29 +000000000000a018 l .text 0000000000000000 .L5 +000000000000a046 l .text 0000000000000000 .L6 +000000000000a0d8 l .text 0000000000000000 .L8 +000000000000a078 l .text 0000000000000000 .L10 +000000000000a080 l .text 0000000000000000 .L23 +000000000000a070 l .text 0000000000000000 .L12 +000000000000a05a l .text 0000000000000000 .L9 +000000000000a090 l .text 0000000000000000 .L13 +000000000000a082 l .text 0000000000000000 .L11 +000000000000a0ba l .text 0000000000000000 .L14 +000000000000a07c l .text 0000000000000000 .L15 +000000000000a0ae l .text 0000000000000000 .L16 +000000000000a0e4 l .text 0000000000000000 .L17 +0000000000009fba l .text 0000000000000000 .L28 +000000000000a0d6 l .text 0000000000000000 .L27 +000000000000ca2d l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000001f153 l .debug_str 0000000000000000 .LASF58 +000000000001f349 l .debug_str 0000000000000000 .LASF59 +000000000001f3ac l .debug_str 0000000000000000 .LASF60 +0000000000003300 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000001ec18 l .debug_line 0000000000000000 .Ldebug_line0 +000000000001f274 l .debug_str 0000000000000000 .LASF0 +000000000001f23b l .debug_str 0000000000000000 .LASF1 +000000000001f264 l .debug_str 0000000000000000 .LASF3 +000000000001f106 l .debug_str 0000000000000000 .LASF2 +000000000001f399 l .debug_str 0000000000000000 .LASF4 +000000000001f2ce l .debug_str 0000000000000000 .LASF5 +000000000001f25b l .debug_str 0000000000000000 .LASF6 +000000000001f382 l .debug_str 0000000000000000 .LASF7 +000000000001f2b0 l .debug_str 0000000000000000 .LASF8 +000000000001f22c l .debug_str 0000000000000000 .LASF9 +000000000001f330 l .debug_str 0000000000000000 .LASF10 +000000000001f367 l .debug_str 0000000000000000 .LASF11 +000000000001f280 l .debug_str 0000000000000000 .LASF12 +000000000001f301 l .debug_str 0000000000000000 .LASF13 +000000000001f2bd l .debug_str 0000000000000000 .LASF14 +000000000001f2f9 l .debug_str 0000000000000000 .LASF15 +000000000001f297 l .debug_str 0000000000000000 .LASF16 +000000000001f2a9 l .debug_str 0000000000000000 .LASF17 +000000000001f110 l .debug_str 0000000000000000 .LASF18 +000000000001f0ef l .debug_str 0000000000000000 .LASF19 +000000000001f2e1 l .debug_str 0000000000000000 .LASF20 +000000000001f249 l .debug_str 0000000000000000 .LASF21 +000000000001f226 l .debug_str 0000000000000000 .LASF22 +000000000001f14b l .debug_str 0000000000000000 .LASF23 +000000000001f3a3 l .debug_str 0000000000000000 .LASF24 +000000000001f235 l .debug_str 0000000000000000 .LASF25 +000000000001f0fc l .debug_str 0000000000000000 .LASF26 +000000000001f203 l .debug_str 0000000000000000 .LASF27 +000000000001f2e7 l .debug_str 0000000000000000 .LASF28 +000000000001f374 l .debug_str 0000000000000000 .LASF31 +000000000001f0f5 l .debug_str 0000000000000000 .LASF29 +000000000001f0d6 l .debug_str 0000000000000000 .LASF30 +000000000001f38c l .debug_str 0000000000000000 .LASF32 +000000000001f13b l .debug_str 0000000000000000 .LASF33 +000000000001f26d l .debug_str 0000000000000000 .LASF34 +000000000001f391 l .debug_str 0000000000000000 .LASF35 +000000000001f142 l .debug_str 0000000000000000 .LASF36 +000000000001f321 l .debug_str 0000000000000000 .LASF37 +000000000001f21f l .debug_str 0000000000000000 .LASF38 +000000000001f35f l .debug_str 0000000000000000 .LASF39 +000000000001f328 l .debug_str 0000000000000000 .LASF40 +000000000001f2c6 l .debug_str 0000000000000000 .LASF41 +000000000001f319 l .debug_str 0000000000000000 .LASF42 +000000000001f11e l .debug_str 0000000000000000 .LASF43 +000000000001f20f l .debug_str 0000000000000000 .LASF44 +000000000001f30f l .debug_str 0000000000000000 .LASF45 +000000000001f126 l .debug_str 0000000000000000 .LASF46 +000000000001f24f l .debug_str 0000000000000000 .LASF47 +000000000001f309 l .debug_str 0000000000000000 .LASF48 +000000000001f2a0 l .debug_str 0000000000000000 .LASF61 +0000000000009f90 l .text 0000000000000000 .LFB4 +000000000000a138 l .text 0000000000000000 .LFE4 +000000000001f36f l .debug_str 0000000000000000 .LASF49 +000000000001d370 l .debug_loc 0000000000000000 .LLST0 +000000000001f3d6 l .debug_str 0000000000000000 .LASF50 +000000000001d441 l .debug_loc 0000000000000000 .LLST1 +000000000001d502 l .debug_loc 0000000000000000 .LLST2 +000000000001f21a l .debug_str 0000000000000000 .LASF51 +000000000001d538 l .debug_loc 0000000000000000 .LLST3 +000000000001d5bc l .debug_loc 0000000000000000 .LLST4 +000000000001d640 l .debug_loc 0000000000000000 .LLST5 +000000000001f37d l .debug_str 0000000000000000 .LASF62 +0000000000009fb6 l .text 0000000000000000 .LVL1 +0000000000009fd0 l .text 0000000000000000 .LVL4 +0000000000009fe6 l .text 0000000000000000 .LVL8 +0000000000009ff4 l .text 0000000000000000 .LVL10 +000000000000a030 l .text 0000000000000000 .LVL13 +000000000000a03c l .text 0000000000000000 .LVL14 +000000000000a0d2 l .text 0000000000000000 .LVL26 +000000000000a0e2 l .text 0000000000000000 .LVL29 +000000000000a100 l .text 0000000000000000 .LVL32 +000000000000a112 l .text 0000000000000000 .LVL34 +000000000000a134 l .text 0000000000000000 .LVL35 +000000000001f3ce l .debug_str 0000000000000000 .LASF52 +000000000001f117 l .debug_str 0000000000000000 .LASF53 +000000000001f342 l .debug_str 0000000000000000 .LASF54 +000000000001f2f2 l .debug_str 0000000000000000 .LASF55 +000000000001f20a l .debug_str 0000000000000000 .LASF56 +000000000001f134 l .debug_str 0000000000000000 .LASF63 +000000000001f0de l .debug_str 0000000000000000 .LASF64 +000000000001f2ec l .debug_str 0000000000000000 .LASF57 +0000000000009f90 l .text 0000000000000000 .LVL0 +0000000000009fba l .text 0000000000000000 .LVL2 +0000000000009fbe l .text 0000000000000000 .LVL3 +0000000000009fd4 l .text 0000000000000000 .LVL5 +0000000000009fde l .text 0000000000000000 .LVL7 +0000000000009ff8 l .text 0000000000000000 .LVL11 +000000000000a018 l .text 0000000000000000 .LVL12 +000000000000a07c l .text 0000000000000000 .LVL21 +000000000000a080 l .text 0000000000000000 .LVL22 +000000000000a0d6 l .text 0000000000000000 .LVL27 +000000000000a0e4 l .text 0000000000000000 .LVL30 +000000000000a0f8 l .text 0000000000000000 .LVL31 +0000000000009fda l .text 0000000000000000 .LVL6 +0000000000009fe8 l .text 0000000000000000 .LVL9 +000000000000a082 l .text 0000000000000000 .LVL23 +000000000000a0d8 l .text 0000000000000000 .LVL28 +000000000000a076 l .text 0000000000000000 .LVL19 +000000000000a078 l .text 0000000000000000 .LVL20 +000000000000a046 l .text 0000000000000000 .LVL15 +000000000000a068 l .text 0000000000000000 .LVL17 +000000000000a070 l .text 0000000000000000 .LVL18 +000000000000a102 l .text 0000000000000000 .LVL33 +000000000002b024 l .debug_info 0000000000000000 .Ldebug_info0 +0000000000009f90 l .text 0000000000000000 .L0 +0000000000009f90 l .text 0000000000000000 .L0 +0000000000009f90 l .text 0000000000000000 .L0 +0000000000009f90 l .text 0000000000000000 .L0 +0000000000009f90 l .text 0000000000000000 .L0 +0000000000009f90 l .text 0000000000000000 .L0 +0000000000009f90 l .text 0000000000000000 .L0 +0000000000009f90 l .text 0000000000000000 .L0 +0000000000009fac l .text 0000000000000000 .L0 +0000000000009fae l .text 0000000000000000 .L0 +0000000000009fae l .text 0000000000000000 .L0 +0000000000009fb8 l .text 0000000000000000 .L0 +0000000000009fba l .text 0000000000000000 .L0 +0000000000009fba l .text 0000000000000000 .L0 +0000000000009fba l .text 0000000000000000 .L0 +0000000000009fba l .text 0000000000000000 .L0 +0000000000009fbe l .text 0000000000000000 .L0 +0000000000009fc4 l .text 0000000000000000 .L0 +0000000000009fc4 l .text 0000000000000000 .L0 +0000000000009fc8 l .text 0000000000000000 .L0 +0000000000009fc8 l .text 0000000000000000 .L0 +0000000000009fd6 l .text 0000000000000000 .L0 +0000000000009fd6 l .text 0000000000000000 .L0 +0000000000009fd8 l .text 0000000000000000 .L0 +0000000000009fda l .text 0000000000000000 .L0 +0000000000009fda l .text 0000000000000000 .L0 +0000000000009fe8 l .text 0000000000000000 .L0 +0000000000009fea l .text 0000000000000000 .L0 +0000000000009fec l .text 0000000000000000 .L0 +0000000000009fec l .text 0000000000000000 .L0 +0000000000009ff8 l .text 0000000000000000 .L0 +0000000000009ff8 l .text 0000000000000000 .L0 +0000000000009ff8 l .text 0000000000000000 .L0 +000000000000a018 l .text 0000000000000000 .L0 +000000000000a018 l .text 0000000000000000 .L0 +000000000000a018 l .text 0000000000000000 .L0 +000000000000a01c l .text 0000000000000000 .L0 +000000000000a01e l .text 0000000000000000 .L0 +000000000000a022 l .text 0000000000000000 .L0 +000000000000a022 l .text 0000000000000000 .L0 +000000000000a030 l .text 0000000000000000 .L0 +000000000000a032 l .text 0000000000000000 .L0 +000000000000a032 l .text 0000000000000000 .L0 +000000000000a03c l .text 0000000000000000 .L0 +000000000000a03c l .text 0000000000000000 .L0 +000000000000a042 l .text 0000000000000000 .L0 +000000000000a042 l .text 0000000000000000 .L0 +000000000000a046 l .text 0000000000000000 .L0 +000000000000a04a l .text 0000000000000000 .L0 +000000000000a04e l .text 0000000000000000 .L0 +000000000000a052 l .text 0000000000000000 .L0 +000000000000a054 l .text 0000000000000000 .L0 +000000000000a056 l .text 0000000000000000 .L0 +000000000000a058 l .text 0000000000000000 .L0 +000000000000a05a l .text 0000000000000000 .L0 +000000000000a05a l .text 0000000000000000 .L0 +000000000000a05e l .text 0000000000000000 .L0 +000000000000a062 l .text 0000000000000000 .L0 +000000000000a062 l .text 0000000000000000 .L0 +000000000000a064 l .text 0000000000000000 .L0 +000000000000a064 l .text 0000000000000000 .L0 +000000000000a068 l .text 0000000000000000 .L0 +000000000000a068 l .text 0000000000000000 .L0 +000000000000a06c l .text 0000000000000000 .L0 +000000000000a070 l .text 0000000000000000 .L0 +000000000000a070 l .text 0000000000000000 .L0 +000000000000a074 l .text 0000000000000000 .L0 +000000000000a074 l .text 0000000000000000 .L0 +000000000000a078 l .text 0000000000000000 .L0 +000000000000a078 l .text 0000000000000000 .L0 +000000000000a07c l .text 0000000000000000 .L0 +000000000000a082 l .text 0000000000000000 .L0 +000000000000a082 l .text 0000000000000000 .L0 +000000000000a084 l .text 0000000000000000 .L0 +000000000000a088 l .text 0000000000000000 .L0 +000000000000a08a l .text 0000000000000000 .L0 +000000000000a08a l .text 0000000000000000 .L0 +000000000000a08e l .text 0000000000000000 .L0 +000000000000a090 l .text 0000000000000000 .L0 +000000000000a090 l .text 0000000000000000 .L0 +000000000000a094 l .text 0000000000000000 .L0 +000000000000a094 l .text 0000000000000000 .L0 +000000000000a098 l .text 0000000000000000 .L0 +000000000000a09c l .text 0000000000000000 .L0 +000000000000a09c l .text 0000000000000000 .L0 +000000000000a0a4 l .text 0000000000000000 .L0 +000000000000a0aa l .text 0000000000000000 .L0 +000000000000a0aa l .text 0000000000000000 .L0 +000000000000a0ae l .text 0000000000000000 .L0 +000000000000a0ba l .text 0000000000000000 .L0 +000000000000a0ba l .text 0000000000000000 .L0 +000000000000a0be l .text 0000000000000000 .L0 +000000000000a0c2 l .text 0000000000000000 .L0 +000000000000a0c6 l .text 0000000000000000 .L0 +000000000000a0ca l .text 0000000000000000 .L0 +000000000000a0ca l .text 0000000000000000 .L0 +000000000000a0d6 l .text 0000000000000000 .L0 +000000000000a0d8 l .text 0000000000000000 .L0 +000000000000a0d8 l .text 0000000000000000 .L0 +000000000000a0d8 l .text 0000000000000000 .L0 +000000000000a0e4 l .text 0000000000000000 .L0 +000000000000a0e4 l .text 0000000000000000 .L0 +000000000000a0e6 l .text 0000000000000000 .L0 +000000000000a0e8 l .text 0000000000000000 .L0 +000000000000a0ec l .text 0000000000000000 .L0 +000000000000a0f4 l .text 0000000000000000 .L0 +000000000000a0f8 l .text 0000000000000000 .L0 +000000000000a100 l .text 0000000000000000 .L0 +000000000000a100 l .text 0000000000000000 .L0 +000000000000a102 l .text 0000000000000000 .L0 +000000000000a106 l .text 0000000000000000 .L0 +000000000000a106 l .text 0000000000000000 .L0 +000000000000a112 l .text 0000000000000000 .L0 +000000000000a116 l .text 0000000000000000 .L0 +000000000000a116 l .text 0000000000000000 .L0 +000000000000a120 l .text 0000000000000000 .L0 +000000000000a126 l .text 0000000000000000 .L0 +000000000000a12c l .text 0000000000000000 .L0 +000000000000a12c l .text 0000000000000000 .L0 +000000000000a138 l .text 0000000000000000 .L0 +0000000000003c78 l .debug_frame 0000000000000000 .L0 +0000000000009f90 l .text 0000000000000000 .L0 +000000000000a138 l .text 0000000000000000 .L0 +0000000000009ffa l .text 0000000000000000 .L0 +0000000000009fac l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_daysbeforemonth.c +0000000000015e18 l O .rodata 000000000000001a g_daysbeforemonth +0000000000015e18 l .rodata 0000000000000000 .LANCHOR0 +000000000000a13c l .text 0000000000000000 .L0 +000000000000a156 l .text 0000000000000000 .L2 +000000000000cb71 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000001f4ee l .debug_str 0000000000000000 .LASF16 +000000000001f467 l .debug_str 0000000000000000 .LASF17 +000000000001f4cc l .debug_str 0000000000000000 .LASF18 +0000000000003320 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000001f135 l .debug_line 0000000000000000 .Ldebug_line0 +000000000001f4ad l .debug_str 0000000000000000 .LASF0 +000000000001f44b l .debug_str 0000000000000000 .LASF1 +000000000001f4c2 l .debug_str 0000000000000000 .LASF2 +000000000001f431 l .debug_str 0000000000000000 .LASF8 +000000000001f49a l .debug_str 0000000000000000 .LASF3 +000000000001f3f5 l .debug_str 0000000000000000 .LASF4 +000000000001f45e l .debug_str 0000000000000000 .LASF5 +000000000001f408 l .debug_str 0000000000000000 .LASF6 +000000000001f41a l .debug_str 0000000000000000 .LASF7 +000000000001f4b9 l .debug_str 0000000000000000 .LASF9 +000000000001f459 l .debug_str 0000000000000000 .LASF10 +000000000001f488 l .debug_str 0000000000000000 .LASF13 +000000000001f3df l .debug_str 0000000000000000 .LASF19 +000000000000a138 l .text 0000000000000000 .LFB0 +000000000000a158 l .text 0000000000000000 .LFE0 +000000000001f402 l .debug_str 0000000000000000 .LASF11 +000000000001d663 l .debug_loc 0000000000000000 .LLST0 +000000000001f43b l .debug_str 0000000000000000 .LASF12 +000000000001f444 l .debug_str 0000000000000000 .LASF14 +000000000001f482 l .debug_str 0000000000000000 .LASF15 +000000000000a138 l .text 0000000000000000 .LVL0 +000000000000a14e l .text 0000000000000000 .LVL1 +000000000002b465 l .debug_info 0000000000000000 .Ldebug_info0 +000000000000a138 l .text 0000000000000000 .L0 +000000000000a138 l .text 0000000000000000 .L0 +000000000000a138 l .text 0000000000000000 .L0 +000000000000a146 l .text 0000000000000000 .L0 +000000000000a148 l .text 0000000000000000 .L0 +000000000000a14a l .text 0000000000000000 .L0 +000000000000a14e l .text 0000000000000000 .L0 +000000000000a14e l .text 0000000000000000 .L0 +000000000000a152 l .text 0000000000000000 .L0 +000000000000a154 l .text 0000000000000000 .L0 +000000000000a154 l .text 0000000000000000 .L0 +000000000000a156 l .text 0000000000000000 .L0 +000000000000a156 l .text 0000000000000000 .L0 +000000000000a158 l .text 0000000000000000 .L0 +0000000000003ce0 l .debug_frame 0000000000000000 .L0 +000000000000a138 l .text 0000000000000000 .L0 +000000000000a158 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_isleapyear.c +000000000000a176 l .text 0000000000000000 .L3 +000000000000a178 l .text 0000000000000000 .L2 +000000000000cc14 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000001f662 l .debug_str 0000000000000000 .LASF9 +000000000001f60d l .debug_str 0000000000000000 .LASF10 +000000000001f5c2 l .debug_str 0000000000000000 .LASF11 +0000000000003340 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000001f27e l .debug_line 0000000000000000 .Ldebug_line0 +000000000001f5e4 l .debug_str 0000000000000000 .LASF0 +000000000001f64b l .debug_str 0000000000000000 .LASF1 +000000000001f603 l .debug_str 0000000000000000 .LASF2 +000000000001f5f0 l .debug_str 0000000000000000 .LASF3 +000000000001f5a3 l .debug_str 0000000000000000 .LASF4 +000000000001f659 l .debug_str 0000000000000000 .LASF5 +000000000001f5b0 l .debug_str 0000000000000000 .LASF6 +000000000001f623 l .debug_str 0000000000000000 .LASF7 +000000000001f712 l .debug_str 0000000000000000 .LASF8 +000000000001f63a l .debug_str 0000000000000000 .LASF12 +000000000000a158 l .text 0000000000000000 .LFB0 +000000000000a17a l .text 0000000000000000 .LFE0 +000000000001f59e l .debug_str 0000000000000000 .LASF13 +000000000001d69c l .debug_loc 0000000000000000 .LLST0 +000000000000a158 l .text 0000000000000000 .LVL0 +000000000000a168 l .text 0000000000000000 .LVL1 +000000000000a176 l .text 0000000000000000 .LVL2 +000000000000a178 l .text 0000000000000000 .LVL3 +000000000002b574 l .debug_info 0000000000000000 .Ldebug_info0 +000000000000a158 l .text 0000000000000000 .L0 +000000000000a158 l .text 0000000000000000 .L0 +000000000000a158 l .text 0000000000000000 .L0 +000000000000a160 l .text 0000000000000000 .L0 +000000000000a162 l .text 0000000000000000 .L0 +000000000000a164 l .text 0000000000000000 .L0 +000000000000a16c l .text 0000000000000000 .L0 +000000000000a16e l .text 0000000000000000 .L0 +000000000000a170 l .text 0000000000000000 .L0 +000000000000a176 l .text 0000000000000000 .L0 +000000000000a178 l .text 0000000000000000 .L0 +000000000000a17a l .text 0000000000000000 .L0 +0000000000003d08 l .debug_frame 0000000000000000 .L0 +000000000000a158 l .text 0000000000000000 .L0 +000000000000a17a l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_dayofweek.c +000000000000a184 l .text 0000000000000000 .L2 +000000000000cc6b l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000001f7ec l .debug_str 0000000000000000 .LASF12 +000000000001f76f l .debug_str 0000000000000000 .LASF13 +000000000001f7ca l .debug_str 0000000000000000 .LASF14 +0000000000003360 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000001f35f l .debug_line 0000000000000000 .Ldebug_line0 +000000000001f79c l .debug_str 0000000000000000 .LASF0 +000000000001f753 l .debug_str 0000000000000000 .LASF1 +000000000001f7c0 l .debug_str 0000000000000000 .LASF2 +000000000001f789 l .debug_str 0000000000000000 .LASF3 +000000000001f717 l .debug_str 0000000000000000 .LASF4 +000000000001f766 l .debug_str 0000000000000000 .LASF5 +000000000001f72a l .debug_str 0000000000000000 .LASF6 +000000000001f73c l .debug_str 0000000000000000 .LASF7 +000000000001f761 l .debug_str 0000000000000000 .LASF8 +000000000001f7ad l .debug_str 0000000000000000 .LASF15 +000000000000a17a l .text 0000000000000000 .LFB0 +000000000000a1bc l .text 0000000000000000 .LFE0 +000000000001f7a8 l .debug_str 0000000000000000 .LASF9 +000000000001d6fe l .debug_loc 0000000000000000 .LLST0 +000000000001f724 l .debug_str 0000000000000000 .LASF10 +000000000001d737 l .debug_loc 0000000000000000 .LLST1 +000000000001f784 l .debug_str 0000000000000000 .LASF11 +000000000001d782 l .debug_loc 0000000000000000 .LLST2 +000000000000a17a l .text 0000000000000000 .LVL0 +000000000000a18c l .text 0000000000000000 .LVL3 +000000000000a184 l .text 0000000000000000 .LVL2 +000000000000a1a4 l .text 0000000000000000 .LVL5 +000000000000a1aa l .text 0000000000000000 .LVL6 +000000000000a182 l .text 0000000000000000 .LVL1 +000000000000a1a0 l .text 0000000000000000 .LVL4 +000000000002b614 l .debug_info 0000000000000000 .Ldebug_info0 +000000000000a17a l .text 0000000000000000 .L0 +000000000000a17a l .text 0000000000000000 .L0 +000000000000a17a l .text 0000000000000000 .L0 +000000000000a180 l .text 0000000000000000 .L0 +000000000000a180 l .text 0000000000000000 .L0 +000000000000a182 l .text 0000000000000000 .L0 +000000000000a182 l .text 0000000000000000 .L0 +000000000000a184 l .text 0000000000000000 .L0 +000000000000a184 l .text 0000000000000000 .L0 +000000000000a184 l .text 0000000000000000 .L0 +000000000000a18a l .text 0000000000000000 .L0 +000000000000a18c l .text 0000000000000000 .L0 +000000000000a18e l .text 0000000000000000 .L0 +000000000000a196 l .text 0000000000000000 .L0 +000000000000a198 l .text 0000000000000000 .L0 +000000000000a1a0 l .text 0000000000000000 .L0 +000000000000a1a4 l .text 0000000000000000 .L0 +000000000000a1aa l .text 0000000000000000 .L0 +000000000000a1ac l .text 0000000000000000 .L0 +000000000000a1ae l .text 0000000000000000 .L0 +000000000000a1b2 l .text 0000000000000000 .L0 +000000000000a1b4 l .text 0000000000000000 .L0 +000000000000a1bc l .text 0000000000000000 .L0 +0000000000003d30 l .debug_frame 0000000000000000 .L0 +000000000000a17a l .text 0000000000000000 .L0 +000000000000a1bc l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_getopt_common.c +000000000000a1bc l F .text 000000000000010c getopt_long_option +000000000000a2c0 l .text 0000000000000000 .L2 +000000000000a1d8 l .text 0000000000000000 .L22 +000000000000a23e l .text 0000000000000000 .L40 +000000000000a1ee l .text 0000000000000000 .L4 +000000000000a1fa l .text 0000000000000000 .L5 +000000000000a1da l .text 0000000000000000 .L6 +000000000000a200 l .text 0000000000000000 .L7 +000000000000a2bc l .text 0000000000000000 .L8 +000000000000a244 l .text 0000000000000000 .L9 +000000000000a23a l .text 0000000000000000 .L10 +000000000000a232 l .text 0000000000000000 .L19 +000000000000a2c6 l .text 0000000000000000 .L13 +000000000000a28a l .text 0000000000000000 .L14 +000000000000a262 l .text 0000000000000000 .L15 +000000000000a224 l .text 0000000000000000 .L12 +000000000000a27c l .text 0000000000000000 .L16 +000000000000a2a4 l .text 0000000000000000 .L17 +000000000000a2b2 l .text 0000000000000000 .L18 +000000000000a25e l .text 0000000000000000 .L39 +000000000000a1ca l .text 0000000000000000 .L3 +0000000000015e38 l .rodata 0000000000000000 .LC0 +000000000000a3e8 l .text 0000000000000000 .L0 +0000000000015e58 l .rodata 0000000000000000 .LC1 +000000000000a3f4 l .text 0000000000000000 .L0 +000000000000a4c6 l .text 0000000000000000 .L0 +000000000000a33c l .text 0000000000000000 .L68 +000000000000a352 l .text 0000000000000000 .L43 +000000000000a304 l .text 0000000000000000 .L44 +000000000000a31a l .text 0000000000000000 .L45 +000000000000a348 l .text 0000000000000000 .L51 +000000000000a342 l .text 0000000000000000 .L52 +000000000000a372 l .text 0000000000000000 .L53 +000000000000a3a8 l .text 0000000000000000 .L70 +000000000000a35a l .text 0000000000000000 .L47 +000000000000a31e l .text 0000000000000000 .L46 +000000000000a4a4 l .text 0000000000000000 .L54 +000000000000a3bc l .text 0000000000000000 .L55 +000000000000a3e0 l .text 0000000000000000 .L56 +000000000000a39e l .text 0000000000000000 .L57 +000000000000a4a8 l .text 0000000000000000 .L66 +000000000000a404 l .text 0000000000000000 .L58 +000000000000a434 l .text 0000000000000000 .L61 +000000000000a44c l .text 0000000000000000 .L62 +000000000000a464 l .text 0000000000000000 .L63 +000000000000a446 l .text 0000000000000000 .L87 +000000000000a484 l .text 0000000000000000 .L64 +000000000000a45c l .text 0000000000000000 .L89 +000000000000a4be l .text 0000000000000000 .L59 +000000000000a416 l .text 0000000000000000 .L60 +000000000000a3f4 l .text 0000000000000000 .L88 +000000000000ccc2 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000001f99b l .debug_str 0000000000000000 .LASF46 +000000000001f8c8 l .debug_str 0000000000000000 .LASF47 +000000000001f90e l .debug_str 0000000000000000 .LASF48 +0000000000003380 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000001f489 l .debug_line 0000000000000000 .Ldebug_line0 +000000000001fb66 l .debug_str 0000000000000000 .LASF0 +000000000001f94d l .debug_str 0000000000000000 .LASF1 +000000000001fb23 l .debug_str 0000000000000000 .LASF2 +000000000001fae0 l .debug_str 0000000000000000 .LASF3 +000000000001fa84 l .debug_str 0000000000000000 .LASF4 +000000000001f992 l .debug_str 0000000000000000 .LASF5 +000000000001f96b l .debug_str 0000000000000000 .LASF6 +000000000001fac4 l .debug_str 0000000000000000 .LASF7 +000000000001fb0b l .debug_str 0000000000000000 .LASF8 +000000000001fb34 l .debug_str 0000000000000000 .LASF9 +000000000001faf3 l .debug_str 0000000000000000 .LASF10 +000000000001fb50 l .debug_str 0000000000000000 .LASF11 +000000000001fb84 l .debug_str 0000000000000000 .LASF12 +000000000001fabb l .debug_str 0000000000000000 .LASF19 +000000000001f943 l .debug_str 0000000000000000 .LASF13 +000000000001f8be l .debug_str 0000000000000000 .LASF14 +000000000001f939 l .debug_str 0000000000000000 .LASF15 +000000000001fa75 l .debug_str 0000000000000000 .LASF16 +000000000001fb91 l .debug_str 0000000000000000 .LASF17 +000000000001f95b l .debug_str 0000000000000000 .LASF18 +000000000001fb8a l .debug_str 0000000000000000 .LASF20 +000000000001f909 l .debug_str 0000000000000000 .LASF21 +000000000001fa4b l .debug_str 0000000000000000 .LASF22 +000000000001fa7f l .debug_str 0000000000000000 .LASF23 +000000000001f89c l .debug_str 0000000000000000 .LASF49 +000000000001f986 l .debug_str 0000000000000000 .LASF24 +000000000001f8e3 l .debug_str 0000000000000000 .LASF25 +000000000001fb3a l .debug_str 0000000000000000 .LASF26 +000000000001fa67 l .debug_str 0000000000000000 .LASF50 +000000000000a2c8 l .text 0000000000000000 .LFB9 +000000000000a4d4 l .text 0000000000000000 .LFE9 +000000000001fadb l .debug_str 0000000000000000 .LASF27 +000000000001d7d0 l .debug_loc 0000000000000000 .LLST13 +000000000001f8f4 l .debug_str 0000000000000000 .LASF28 +000000000001d809 l .debug_loc 0000000000000000 .LLST14 +000000000001fb5c l .debug_str 0000000000000000 .LASF29 +000000000001d8e3 l .debug_loc 0000000000000000 .LLST15 +000000000001f930 l .debug_str 0000000000000000 .LASF30 +000000000001d92c l .debug_loc 0000000000000000 .LLST16 +000000000001fb01 l .debug_str 0000000000000000 .LASF31 +000000000001d98e l .debug_loc 0000000000000000 .LLST17 +000000000001faa3 l .debug_str 0000000000000000 .LASF32 +000000000001d9ee l .debug_loc 0000000000000000 .LLST18 +000000000001da27 l .debug_loc 0000000000000000 .LLST19 +000000000001da5d l .debug_loc 0000000000000000 .LLST20 +000000000001fb1b l .debug_str 0000000000000000 .LASF33 +000000000001dab9 l .debug_loc 0000000000000000 .LLST21 +000000000001fb72 l .debug_str 0000000000000000 .LASF34 +000000000001dadc l .debug_loc 0000000000000000 .LLST22 +000000000000a394 l .text 0000000000000000 .LVL36 +000000000000a3cc l .text 0000000000000000 .LVL42 +000000000000a404 l .text 0000000000000000 .LVL46 +000000000000a426 l .text 0000000000000000 .LVL48 +000000000000a2ec l .text 0000000000000000 .LVL29 +000000000001faa8 l .debug_str 0000000000000000 .LASF51 +000000000000a1bc l .text 0000000000000000 .LFB8 +000000000000a2c8 l .text 0000000000000000 .LFE8 +000000000001dbb8 l .debug_loc 0000000000000000 .LLST0 +000000000001dc43 l .debug_loc 0000000000000000 .LLST1 +000000000001dd20 l .debug_loc 0000000000000000 .LLST2 +000000000001dd59 l .debug_loc 0000000000000000 .LLST3 +000000000001dd7c l .debug_loc 0000000000000000 .LLST4 +000000000001f8f9 l .debug_str 0000000000000000 .LASF52 +000000000001fb10 l .debug_str 0000000000000000 .LASF35 +000000000001ddb3 l .debug_loc 0000000000000000 .LLST5 +000000000001f8b2 l .debug_str 0000000000000000 .LASF36 +000000000001ddfd l .debug_loc 0000000000000000 .LLST12 +000000000000a1c6 l .text 0000000000000000 .LBB9 +000000000001de6f l .debug_loc 0000000000000000 .LLST6 +000000000001de92 l .debug_loc 0000000000000000 .LLST7 +000000000001deb5 l .debug_loc 0000000000000000 .LLST8 +000000000001dee2 l .debug_loc 0000000000000000 .LLST9 +000000000001df09 l .debug_loc 0000000000000000 .LLST10 +000000000001df46 l .debug_loc 0000000000000000 .LLST11 +000000000001fa53 l .debug_str 0000000000000000 .LASF53 +000000000001fb2d l .debug_str 0000000000000000 .LASF37 +000000000001f8aa l .debug_str 0000000000000000 .LASF38 +000000000001f97d l .debug_str 0000000000000000 .LASF39 +000000000001fa9c l .debug_str 0000000000000000 .LASF40 +000000000001fb9b l .debug_str 0000000000000000 .LASF41 +000000000001fb7c l .debug_str 0000000000000000 .LASF42 +000000000001f900 l .debug_str 0000000000000000 .LASF43 +000000000001f8b7 l .debug_str 0000000000000000 .LASF44 +000000000001fa91 l .debug_str 0000000000000000 .LASF45 +000000000000a2c8 l .text 0000000000000000 .LVL28 +000000000000a3a8 l .text 0000000000000000 .LVL38 +000000000000a3bc l .text 0000000000000000 .LVL41 +000000000000a446 l .text 0000000000000000 .LVL49 +000000000000a44c l .text 0000000000000000 .LVL51 +000000000000a45c l .text 0000000000000000 .LVL52 +000000000000a464 l .text 0000000000000000 .LVL53 +000000000000a46c l .text 0000000000000000 .LVL54 +000000000000a4a4 l .text 0000000000000000 .LVL55 +000000000000a3b0 l .text 0000000000000000 .LVL39 +000000000000a3ba l .text 0000000000000000 .LVL40 +000000000000a39a l .text 0000000000000000 .LVL37 +000000000000a3d2 l .text 0000000000000000 .LVL43 +000000000000a3e0 l .text 0000000000000000 .LVL44 +000000000000a31a l .text 0000000000000000 .LVL31 +000000000000a33c l .text 0000000000000000 .LVL32 +000000000000a342 l .text 0000000000000000 .LVL33 +000000000000a2f4 l .text 0000000000000000 .LVL30 +000000000000a352 l .text 0000000000000000 .LVL34 +000000000000a35a l .text 0000000000000000 .LVL35 +000000000000a3f4 l .text 0000000000000000 .LVL45 +000000000000a416 l .text 0000000000000000 .LVL47 +000000000000a44a l .text 0000000000000000 .LVL50 +000000000000a4b8 l .text 0000000000000000 .LVL56 +000000000000a4be l .text 0000000000000000 .LVL58 +000000000000a1bc l .text 0000000000000000 .LVL0 +000000000000a22c l .text 0000000000000000 .LVL10 +000000000000a23a l .text 0000000000000000 .LVL13 +000000000000a242 l .text 0000000000000000 .LVL15 +000000000000a244 l .text 0000000000000000 .LVL16 +000000000000a2c6 l .text 0000000000000000 .LVL27 +000000000000a224 l .text 0000000000000000 .LVL9 +000000000000a23e l .text 0000000000000000 .LVL14 +000000000000a25e l .text 0000000000000000 .LVL17 +000000000000a262 l .text 0000000000000000 .LVL18 +000000000000a294 l .text 0000000000000000 .LVL23 +000000000000a2bc l .text 0000000000000000 .LVL25 +000000000000a1ca l .text 0000000000000000 .LVL1 +000000000000a2be l .text 0000000000000000 .LVL26 +000000000000a230 l .text 0000000000000000 .LVL11 +000000000000a232 l .text 0000000000000000 .LVL12 +000000000000a200 l .text 0000000000000000 .LVL8 +000000000000a26e l .text 0000000000000000 .LVL19 +000000000000a278 l .text 0000000000000000 .LVL20 +000000000000a27e l .text 0000000000000000 .LVL21 +000000000000a282 l .text 0000000000000000 .LVL22 +000000000000a296 l .text 0000000000000000 .LVL24 +000000000000a1da l .text 0000000000000000 .LVL2 +000000000000a1f2 l .text 0000000000000000 .LVL7 +000000000000a1e0 l .text 0000000000000000 .LVL3 +000000000000a1e8 l .text 0000000000000000 .LVL5 +000000000000a1ee l .text 0000000000000000 .LVL6 +000000000002b6d4 l .debug_info 0000000000000000 .Ldebug_info0 +000000000000a1c0 l .text 0000000000000000 .LBB8 +000000000000a1c4 l .text 0000000000000000 .LBE8 +000000000000a1c6 l .text 0000000000000000 .LBB18 +000000000000a1ca l .text 0000000000000000 .LBE18 +000000000000a1d8 l .text 0000000000000000 .LBB19 +000000000000a2bc l .text 0000000000000000 .LBE19 +000000000000a1ca l .text 0000000000000000 .LBE9 +000000000000a1da l .text 0000000000000000 .LBB15 +000000000000a200 l .text 0000000000000000 .LBE15 +000000000000a1c6 l .text 0000000000000000 .LBB11 +000000000000a1ca l .text 0000000000000000 .LBE11 +000000000000a1da l .text 0000000000000000 .LBB12 +000000000000a1fe l .text 0000000000000000 .LBE12 +000000000000a200 l .text 0000000000000000 .LBB13 +000000000000a200 l .text 0000000000000000 .LBE13 +000000000000a23e l .text 0000000000000000 .LBB16 +000000000000a244 l .text 0000000000000000 .LBE16 +000000000000a256 l .text 0000000000000000 .LBB17 +000000000000a2bc l .text 0000000000000000 .LBE17 +000000000000a2f4 l .text 0000000000000000 .LBB20 +000000000000a33c l .text 0000000000000000 .LBE20 +000000000000a342 l .text 0000000000000000 .LBB21 +000000000000a352 l .text 0000000000000000 .LBE21 +000000000000a35a l .text 0000000000000000 .LBB22 +000000000000a3a8 l .text 0000000000000000 .LBE22 +000000000000a3bc l .text 0000000000000000 .LBB23 +000000000000a4d4 l .text 0000000000000000 .LBE23 +000000000000a1bc l .text 0000000000000000 .L0 +000000000000a2c8 l .text 0000000000000000 .L0 +000000000000a1bc l .text 0000000000000000 .L0 +000000000000a1bc l .text 0000000000000000 .L0 +000000000000a1bc l .text 0000000000000000 .L0 +000000000000a1bc l .text 0000000000000000 .L0 +000000000000a1c0 l .text 0000000000000000 .L0 +000000000000a1c4 l .text 0000000000000000 .L0 +000000000000a1c6 l .text 0000000000000000 .L0 +000000000000a1ca l .text 0000000000000000 .L0 +000000000000a1ca l .text 0000000000000000 .L0 +000000000000a1cc l .text 0000000000000000 .L0 +000000000000a1ce l .text 0000000000000000 .L0 +000000000000a1d0 l .text 0000000000000000 .L0 +000000000000a1d0 l .text 0000000000000000 .L0 +000000000000a1d6 l .text 0000000000000000 .L0 +000000000000a1d8 l .text 0000000000000000 .L0 +000000000000a1da l .text 0000000000000000 .L0 +000000000000a1da l .text 0000000000000000 .L0 +000000000000a1da l .text 0000000000000000 .L0 +000000000000a1de l .text 0000000000000000 .L0 +000000000000a1e0 l .text 0000000000000000 .L0 +000000000000a1e0 l .text 0000000000000000 .L0 +000000000000a1e4 l .text 0000000000000000 .L0 +000000000000a1e8 l .text 0000000000000000 .L0 +000000000000a1e8 l .text 0000000000000000 .L0 +000000000000a1e8 l .text 0000000000000000 .L0 +000000000000a1e8 l .text 0000000000000000 .L0 +000000000000a1ec l .text 0000000000000000 .L0 +000000000000a1ee l .text 0000000000000000 .L0 +000000000000a1ee l .text 0000000000000000 .L0 +000000000000a1f2 l .text 0000000000000000 .L0 +000000000000a1f2 l .text 0000000000000000 .L0 +000000000000a1f6 l .text 0000000000000000 .L0 +000000000000a1fa l .text 0000000000000000 .L0 +000000000000a1fa l .text 0000000000000000 .L0 +000000000000a1fe l .text 0000000000000000 .L0 +000000000000a200 l .text 0000000000000000 .L0 +000000000000a200 l .text 0000000000000000 .L0 +000000000000a200 l .text 0000000000000000 .L0 +000000000000a208 l .text 0000000000000000 .L0 +000000000000a208 l .text 0000000000000000 .L0 +000000000000a20a l .text 0000000000000000 .L0 +000000000000a20a l .text 0000000000000000 .L0 +000000000000a20c l .text 0000000000000000 .L0 +000000000000a210 l .text 0000000000000000 .L0 +000000000000a210 l .text 0000000000000000 .L0 +000000000000a214 l .text 0000000000000000 .L0 +000000000000a214 l .text 0000000000000000 .L0 +000000000000a218 l .text 0000000000000000 .L0 +000000000000a222 l .text 0000000000000000 .L0 +000000000000a222 l .text 0000000000000000 .L0 +000000000000a224 l .text 0000000000000000 .L0 +000000000000a224 l .text 0000000000000000 .L0 +000000000000a224 l .text 0000000000000000 .L0 +000000000000a228 l .text 0000000000000000 .L0 +000000000000a22c l .text 0000000000000000 .L0 +000000000000a22e l .text 0000000000000000 .L0 +000000000000a22e l .text 0000000000000000 .L0 +000000000000a230 l .text 0000000000000000 .L0 +000000000000a230 l .text 0000000000000000 .L0 +000000000000a232 l .text 0000000000000000 .L0 +000000000000a232 l .text 0000000000000000 .L0 +000000000000a234 l .text 0000000000000000 .L0 +000000000000a234 l .text 0000000000000000 .L0 +000000000000a23a l .text 0000000000000000 .L0 +000000000000a23a l .text 0000000000000000 .L0 +000000000000a23e l .text 0000000000000000 .L0 +000000000000a23e l .text 0000000000000000 .L0 +000000000000a23e l .text 0000000000000000 .L0 +000000000000a244 l .text 0000000000000000 .L0 +000000000000a244 l .text 0000000000000000 .L0 +000000000000a248 l .text 0000000000000000 .L0 +000000000000a256 l .text 0000000000000000 .L0 +000000000000a256 l .text 0000000000000000 .L0 +000000000000a256 l .text 0000000000000000 .L0 +000000000000a258 l .text 0000000000000000 .L0 +000000000000a25c l .text 0000000000000000 .L0 +000000000000a25c l .text 0000000000000000 .L0 +000000000000a25e l .text 0000000000000000 .L0 +000000000000a260 l .text 0000000000000000 .L0 +000000000000a262 l .text 0000000000000000 .L0 +000000000000a262 l .text 0000000000000000 .L0 +000000000000a264 l .text 0000000000000000 .L0 +000000000000a268 l .text 0000000000000000 .L0 +000000000000a26e l .text 0000000000000000 .L0 +000000000000a26e l .text 0000000000000000 .L0 +000000000000a270 l .text 0000000000000000 .L0 +000000000000a27c l .text 0000000000000000 .L0 +000000000000a27c l .text 0000000000000000 .L0 +000000000000a27e l .text 0000000000000000 .L0 +000000000000a282 l .text 0000000000000000 .L0 +000000000000a282 l .text 0000000000000000 .L0 +000000000000a286 l .text 0000000000000000 .L0 +000000000000a286 l .text 0000000000000000 .L0 +000000000000a288 l .text 0000000000000000 .L0 +000000000000a28a l .text 0000000000000000 .L0 +000000000000a28a l .text 0000000000000000 .L0 +000000000000a28c l .text 0000000000000000 .L0 +000000000000a290 l .text 0000000000000000 .L0 +000000000000a296 l .text 0000000000000000 .L0 +000000000000a296 l .text 0000000000000000 .L0 +000000000000a298 l .text 0000000000000000 .L0 +000000000000a2a4 l .text 0000000000000000 .L0 +000000000000a2a4 l .text 0000000000000000 .L0 +000000000000a2a6 l .text 0000000000000000 .L0 +000000000000a2aa l .text 0000000000000000 .L0 +000000000000a2aa l .text 0000000000000000 .L0 +000000000000a2ae l .text 0000000000000000 .L0 +000000000000a2ae l .text 0000000000000000 .L0 +000000000000a2b2 l .text 0000000000000000 .L0 +000000000000a2b2 l .text 0000000000000000 .L0 +000000000000a2b6 l .text 0000000000000000 .L0 +000000000000a2b6 l .text 0000000000000000 .L0 +000000000000a2b8 l .text 0000000000000000 .L0 +000000000000a2b8 l .text 0000000000000000 .L0 +000000000000a2bc l .text 0000000000000000 .L0 +000000000000a2bc l .text 0000000000000000 .L0 +000000000000a2c0 l .text 0000000000000000 .L0 +000000000000a2c0 l .text 0000000000000000 .L0 +000000000000a2c4 l .text 0000000000000000 .L0 +000000000000a2c4 l .text 0000000000000000 .L0 +000000000000a2c6 l .text 0000000000000000 .L0 +000000000000a2c8 l .text 0000000000000000 .L0 +000000000000a2c8 l .text 0000000000000000 .L0 +000000000000a2c8 l .text 0000000000000000 .L0 +000000000000a2c8 l .text 0000000000000000 .L0 +000000000000a2d8 l .text 0000000000000000 .L0 +000000000000a2e4 l .text 0000000000000000 .L0 +000000000000a2ec l .text 0000000000000000 .L0 +000000000000a2ec l .text 0000000000000000 .L0 +000000000000a2f0 l .text 0000000000000000 .L0 +000000000000a2f0 l .text 0000000000000000 .L0 +000000000000a2f4 l .text 0000000000000000 .L0 +000000000000a2f4 l .text 0000000000000000 .L0 +000000000000a2f4 l .text 0000000000000000 .L0 +000000000000a2f4 l .text 0000000000000000 .L0 +000000000000a2fe l .text 0000000000000000 .L0 +000000000000a304 l .text 0000000000000000 .L0 +000000000000a304 l .text 0000000000000000 .L0 +000000000000a306 l .text 0000000000000000 .L0 +000000000000a30a l .text 0000000000000000 .L0 +000000000000a30e l .text 0000000000000000 .L0 +000000000000a30e l .text 0000000000000000 .L0 +000000000000a310 l .text 0000000000000000 .L0 +000000000000a310 l .text 0000000000000000 .L0 +000000000000a312 l .text 0000000000000000 .L0 +000000000000a312 l .text 0000000000000000 .L0 +000000000000a316 l .text 0000000000000000 .L0 +000000000000a316 l .text 0000000000000000 .L0 +000000000000a31a l .text 0000000000000000 .L0 +000000000000a31e l .text 0000000000000000 .L0 +000000000000a31e l .text 0000000000000000 .L0 +000000000000a322 l .text 0000000000000000 .L0 +000000000000a326 l .text 0000000000000000 .L0 +000000000000a32a l .text 0000000000000000 .L0 +000000000000a32c l .text 0000000000000000 .L0 +000000000000a32c l .text 0000000000000000 .L0 +000000000000a32c l .text 0000000000000000 .L0 +000000000000a334 l .text 0000000000000000 .L0 +000000000000a334 l .text 0000000000000000 .L0 +000000000000a336 l .text 0000000000000000 .L0 +000000000000a338 l .text 0000000000000000 .L0 +000000000000a338 l .text 0000000000000000 .L0 +000000000000a33c l .text 0000000000000000 .L0 +000000000000a33c l .text 0000000000000000 .L0 +000000000000a342 l .text 0000000000000000 .L0 +000000000000a342 l .text 0000000000000000 .L0 +000000000000a342 l .text 0000000000000000 .L0 +000000000000a348 l .text 0000000000000000 .L0 +000000000000a348 l .text 0000000000000000 .L0 +000000000000a34a l .text 0000000000000000 .L0 +000000000000a34e l .text 0000000000000000 .L0 +000000000000a352 l .text 0000000000000000 .L0 +000000000000a352 l .text 0000000000000000 .L0 +000000000000a352 l .text 0000000000000000 .L0 +000000000000a356 l .text 0000000000000000 .L0 +000000000000a356 l .text 0000000000000000 .L0 +000000000000a35a l .text 0000000000000000 .L0 +000000000000a360 l .text 0000000000000000 .L0 +000000000000a362 l .text 0000000000000000 .L0 +000000000000a362 l .text 0000000000000000 .L0 +000000000000a364 l .text 0000000000000000 .L0 +000000000000a364 l .text 0000000000000000 .L0 +000000000000a36c l .text 0000000000000000 .L0 +000000000000a36c l .text 0000000000000000 .L0 +000000000000a372 l .text 0000000000000000 .L0 +000000000000a372 l .text 0000000000000000 .L0 +000000000000a37a l .text 0000000000000000 .L0 +000000000000a37a l .text 0000000000000000 .L0 +000000000000a382 l .text 0000000000000000 .L0 +000000000000a382 l .text 0000000000000000 .L0 +000000000000a388 l .text 0000000000000000 .L0 +000000000000a388 l .text 0000000000000000 .L0 +000000000000a394 l .text 0000000000000000 .L0 +000000000000a398 l .text 0000000000000000 .L0 +000000000000a39a l .text 0000000000000000 .L0 +000000000000a39a l .text 0000000000000000 .L0 +000000000000a39e l .text 0000000000000000 .L0 +000000000000a39e l .text 0000000000000000 .L0 +000000000000a3a0 l .text 0000000000000000 .L0 +000000000000a3a4 l .text 0000000000000000 .L0 +000000000000a3a8 l .text 0000000000000000 .L0 +000000000000a3a8 l .text 0000000000000000 .L0 +000000000000a3a8 l .text 0000000000000000 .L0 +000000000000a3bc l .text 0000000000000000 .L0 +000000000000a3bc l .text 0000000000000000 .L0 +000000000000a3c0 l .text 0000000000000000 .L0 +000000000000a3c0 l .text 0000000000000000 .L0 +000000000000a3cc l .text 0000000000000000 .L0 +000000000000a3d0 l .text 0000000000000000 .L0 +000000000000a3d2 l .text 0000000000000000 .L0 +000000000000a3d2 l .text 0000000000000000 .L0 +000000000000a3d6 l .text 0000000000000000 .L0 +000000000000a3d6 l .text 0000000000000000 .L0 +000000000000a3d8 l .text 0000000000000000 .L0 +000000000000a3da l .text 0000000000000000 .L0 +000000000000a3e0 l .text 0000000000000000 .L0 +000000000000a3e0 l .text 0000000000000000 .L0 +000000000000a3e4 l .text 0000000000000000 .L0 +000000000000a3e6 l .text 0000000000000000 .L0 +000000000000a3e6 l .text 0000000000000000 .L0 +000000000000a3e8 l .text 0000000000000000 .L0 +000000000000a3f4 l .text 0000000000000000 .L0 +000000000000a404 l .text 0000000000000000 .L0 +000000000000a404 l .text 0000000000000000 .L0 +000000000000a404 l .text 0000000000000000 .L0 +000000000000a408 l .text 0000000000000000 .L0 +000000000000a40c l .text 0000000000000000 .L0 +000000000000a40e l .text 0000000000000000 .L0 +000000000000a40e l .text 0000000000000000 .L0 +000000000000a40e l .text 0000000000000000 .L0 +000000000000a414 l .text 0000000000000000 .L0 +000000000000a416 l .text 0000000000000000 .L0 +000000000000a416 l .text 0000000000000000 .L0 +000000000000a416 l .text 0000000000000000 .L0 +000000000000a426 l .text 0000000000000000 .L0 +000000000000a426 l .text 0000000000000000 .L0 +000000000000a428 l .text 0000000000000000 .L0 +000000000000a428 l .text 0000000000000000 .L0 +000000000000a42a l .text 0000000000000000 .L0 +000000000000a42e l .text 0000000000000000 .L0 +000000000000a42e l .text 0000000000000000 .L0 +000000000000a432 l .text 0000000000000000 .L0 +000000000000a434 l .text 0000000000000000 .L0 +000000000000a434 l .text 0000000000000000 .L0 +000000000000a440 l .text 0000000000000000 .L0 +000000000000a440 l .text 0000000000000000 .L0 +000000000000a446 l .text 0000000000000000 .L0 +000000000000a446 l .text 0000000000000000 .L0 +000000000000a44c l .text 0000000000000000 .L0 +000000000000a44c l .text 0000000000000000 .L0 +000000000000a450 l .text 0000000000000000 .L0 +000000000000a452 l .text 0000000000000000 .L0 +000000000000a454 l .text 0000000000000000 .L0 +000000000000a454 l .text 0000000000000000 .L0 +000000000000a456 l .text 0000000000000000 .L0 +000000000000a45a l .text 0000000000000000 .L0 +000000000000a45a l .text 0000000000000000 .L0 +000000000000a45c l .text 0000000000000000 .L0 +000000000000a45e l .text 0000000000000000 .L0 +000000000000a45e l .text 0000000000000000 .L0 +000000000000a462 l .text 0000000000000000 .L0 +000000000000a464 l .text 0000000000000000 .L0 +000000000000a464 l .text 0000000000000000 .L0 +000000000000a470 l .text 0000000000000000 .L0 +000000000000a472 l .text 0000000000000000 .L0 +000000000000a47e l .text 0000000000000000 .L0 +000000000000a47e l .text 0000000000000000 .L0 +000000000000a480 l .text 0000000000000000 .L0 +000000000000a480 l .text 0000000000000000 .L0 +000000000000a484 l .text 0000000000000000 .L0 +000000000000a484 l .text 0000000000000000 .L0 +000000000000a488 l .text 0000000000000000 .L0 +000000000000a488 l .text 0000000000000000 .L0 +000000000000a48c l .text 0000000000000000 .L0 +000000000000a48c l .text 0000000000000000 .L0 +000000000000a490 l .text 0000000000000000 .L0 +000000000000a494 l .text 0000000000000000 .L0 +000000000000a496 l .text 0000000000000000 .L0 +000000000000a496 l .text 0000000000000000 .L0 +000000000000a496 l .text 0000000000000000 .L0 +000000000000a4a4 l .text 0000000000000000 .L0 +000000000000a4a4 l .text 0000000000000000 .L0 +000000000000a4a8 l .text 0000000000000000 .L0 +000000000000a4a8 l .text 0000000000000000 .L0 +000000000000a4b0 l .text 0000000000000000 .L0 +000000000000a4b4 l .text 0000000000000000 .L0 +000000000000a4b8 l .text 0000000000000000 .L0 +000000000000a4b8 l .text 0000000000000000 .L0 +000000000000a4b8 l .text 0000000000000000 .L0 +000000000000a4ba l .text 0000000000000000 .L0 +000000000000a4be l .text 0000000000000000 .L0 +000000000000a4be l .text 0000000000000000 .L0 +000000000000a4c6 l .text 0000000000000000 .L0 +000000000000a4d4 l .text 0000000000000000 .L0 +0000000000003d58 l .debug_frame 0000000000000000 .L0 +000000000000a1bc l .text 0000000000000000 .L0 +000000000000a2c8 l .text 0000000000000000 .L0 +000000000000a2c8 l .text 0000000000000000 .L0 +000000000000a4d4 l .text 0000000000000000 .L0 +000000000000a3aa l .text 0000000000000000 .L0 +000000000000a2d8 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_getoptvars.c +0000000000000008 l .data 0000000000000000 .LANCHOR0 +000000000000a4d4 l .text 0000000000000000 .L0 +000000000000cf00 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000001fcdc l .debug_str 0000000000000000 .LASF18 +000000000001fc01 l .debug_str 0000000000000000 .LASF19 +000000000001fcba l .debug_str 0000000000000000 .LASF20 +00000000000034e0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000001ffec l .debug_line 0000000000000000 .Ldebug_line0 +000000000001fc85 l .debug_str 0000000000000000 .LASF0 +000000000001fc29 l .debug_str 0000000000000000 .LASF1 +000000000001fc4a l .debug_str 0000000000000000 .LASF2 +000000000001fc72 l .debug_str 0000000000000000 .LASF3 +000000000001fbad l .debug_str 0000000000000000 .LASF4 +000000000001fc91 l .debug_str 0000000000000000 .LASF5 +000000000001fbce l .debug_str 0000000000000000 .LASF6 +000000000001fbe0 l .debug_str 0000000000000000 .LASF7 +000000000001fc37 l .debug_str 0000000000000000 .LASF8 +000000000001fc64 l .debug_str 0000000000000000 .LASF9 +000000000001fca4 l .debug_str 0000000000000000 .LASF10 +000000000001fc5e l .debug_str 0000000000000000 .LASF11 +000000000001fbc5 l .debug_str 0000000000000000 .LASF21 +000000000001fc9a l .debug_str 0000000000000000 .LASF12 +000000000001fbf7 l .debug_str 0000000000000000 .LASF13 +000000000001fc54 l .debug_str 0000000000000000 .LASF14 +000000000001fcb0 l .debug_str 0000000000000000 .LASF15 +000000000001fba3 l .debug_str 0000000000000000 .LASF16 +000000000001fc19 l .debug_str 0000000000000000 .LASF17 +000000000001fc3c l .debug_str 0000000000000000 .LASF22 +000000000001fbba l .debug_str 0000000000000000 .LASF23 +000000000000a4d4 l .text 0000000000000000 .LFB7 +000000000000a4de l .text 0000000000000000 .LFE7 +000000000002bb76 l .debug_info 0000000000000000 .Ldebug_info0 +000000000000a4d4 l .text 0000000000000000 .L0 +000000000000a4d4 l .text 0000000000000000 .L0 +000000000000a4d4 l .text 0000000000000000 .L0 +000000000000a4de l .text 0000000000000000 .L0 +0000000000003dc0 l .debug_frame 0000000000000000 .L0 +000000000000a4d4 l .text 0000000000000000 .L0 +000000000000a4de l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 lib_getcwd.c +0000000000015e80 l .rodata 0000000000000000 .LC1 +000000000000a512 l .text 0000000000000000 .L0 +0000000000015e78 l .rodata 0000000000000000 .LC0 +000000000000a526 l .text 0000000000000000 .L0 +000000000000a50c l .text 0000000000000000 .L2 +000000000000a512 l .text 0000000000000000 .L3 +000000000000a52e l .text 0000000000000000 .L5 +000000000000a54c l .text 0000000000000000 .L6 +000000000000a4fa l .text 0000000000000000 .L10 +000000000000a56a l .text 0000000000000000 .L7 +000000000000a4fe l .text 0000000000000000 .L4 +000000000000cf84 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000001fe9d l .debug_str 0000000000000000 .LASF20 +000000000001fe00 l .debug_str 0000000000000000 .LASF21 +000000000001fe74 l .debug_str 0000000000000000 .LASF22 +0000000000003500 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000002007a l .debug_line 0000000000000000 .Ldebug_line0 +000000000001fdbb l .debug_str 0000000000000000 .LASF0 +000000000001fded l .debug_str 0000000000000000 .LASF1 +000000000001fe5d l .debug_str 0000000000000000 .LASF2 +000000000001fd9a l .debug_str 0000000000000000 .LASF3 +000000000001fe67 l .debug_str 0000000000000000 .LASF4 +000000000001fe2c l .debug_str 0000000000000000 .LASF5 +000000000001fe14 l .debug_str 0000000000000000 .LASF6 +000000000001fe55 l .debug_str 0000000000000000 .LASF8 +000000000001fdcf l .debug_str 0000000000000000 .LASF7 +000000000001fdb4 l .debug_str 0000000000000000 .LASF9 +000000000001fdfb l .debug_str 0000000000000000 .LASF10 +000000000001fd8c l .debug_str 0000000000000000 .LASF11 +000000000001fe49 l .debug_str 0000000000000000 .LASF12 +000000000001fe26 l .debug_str 0000000000000000 .LASF13 +000000000001fe42 l .debug_str 0000000000000000 .LASF23 +000000000000a4de l .text 0000000000000000 .LFB4 +000000000000a57a l .text 0000000000000000 .LFE4 +000000000001df80 l .debug_loc 0000000000000000 .LLST0 +000000000001fe3d l .debug_str 0000000000000000 .LASF14 +000000000001dfc9 l .debug_loc 0000000000000000 .LLST1 +000000000001e012 l .debug_loc 0000000000000000 .LLST2 +000000000000a4f8 l .text 0000000000000000 .LVL1 +000000000000a522 l .text 0000000000000000 .LVL6 +000000000000a538 l .text 0000000000000000 .LVL9 +000000000000a546 l .text 0000000000000000 .LVL10 +000000000000a558 l .text 0000000000000000 .LVL11 +000000000000a564 l .text 0000000000000000 .LVL13 +000000000000a578 l .text 0000000000000000 .LVL14 +000000000001fe35 l .debug_str 0000000000000000 .LASF15 +000000000001fde6 l .debug_str 0000000000000000 .LASF16 +000000000001fdad l .debug_str 0000000000000000 .LASF17 +000000000001fe96 l .debug_str 0000000000000000 .LASF18 +000000000001fdc7 l .debug_str 0000000000000000 .LASF19 +000000000000a4de l .text 0000000000000000 .LVL0 +000000000000a4fe l .text 0000000000000000 .LVL2 +000000000000a50c l .text 0000000000000000 .LVL4 +000000000000a506 l .text 0000000000000000 .LVL3 +000000000000a524 l .text 0000000000000000 .LVL7 +000000000000a52e l .text 0000000000000000 .LVL8 +000000000002bc97 l .debug_info 0000000000000000 .Ldebug_info0 +000000000000a4de l .text 0000000000000000 .L0 +000000000000a4de l .text 0000000000000000 .L0 +000000000000a4de l .text 0000000000000000 .L0 +000000000000a4de l .text 0000000000000000 .L0 +000000000000a4e8 l .text 0000000000000000 .L0 +000000000000a4ec l .text 0000000000000000 .L0 +000000000000a4ee l .text 0000000000000000 .L0 +000000000000a4f0 l .text 0000000000000000 .L0 +000000000000a4f0 l .text 0000000000000000 .L0 +000000000000a4fa l .text 0000000000000000 .L0 +000000000000a4fc l .text 0000000000000000 .L0 +000000000000a4fc l .text 0000000000000000 .L0 +000000000000a4fc l .text 0000000000000000 .L0 +000000000000a4fe l .text 0000000000000000 .L0 +000000000000a50c l .text 0000000000000000 .L0 +000000000000a50c l .text 0000000000000000 .L0 +000000000000a50e l .text 0000000000000000 .L0 +000000000000a512 l .text 0000000000000000 .L0 +000000000000a512 l .text 0000000000000000 .L0 +000000000000a524 l .text 0000000000000000 .L0 +000000000000a524 l .text 0000000000000000 .L0 +000000000000a526 l .text 0000000000000000 .L0 +000000000000a52e l .text 0000000000000000 .L0 +000000000000a52e l .text 0000000000000000 .L0 +000000000000a538 l .text 0000000000000000 .L0 +000000000000a53a l .text 0000000000000000 .L0 +000000000000a53e l .text 0000000000000000 .L0 +000000000000a53e l .text 0000000000000000 .L0 +000000000000a54c l .text 0000000000000000 .L0 +000000000000a54c l .text 0000000000000000 .L0 +000000000000a54e l .text 0000000000000000 .L0 +000000000000a54e l .text 0000000000000000 .L0 +000000000000a55a l .text 0000000000000000 .L0 +000000000000a55a l .text 0000000000000000 .L0 +000000000000a55c l .text 0000000000000000 .L0 +000000000000a55c l .text 0000000000000000 .L0 +000000000000a568 l .text 0000000000000000 .L0 +000000000000a568 l .text 0000000000000000 .L0 +000000000000a568 l .text 0000000000000000 .L0 +000000000000a56a l .text 0000000000000000 .L0 +000000000000a578 l .text 0000000000000000 .L0 +000000000000a578 l .text 0000000000000000 .L0 +000000000000a57a l .text 0000000000000000 .L0 +0000000000003de8 l .debug_frame 0000000000000000 .L0 +000000000000a4de l .text 0000000000000000 .L0 +000000000000a57a l .text 0000000000000000 .L0 +000000000000a500 l .text 0000000000000000 .L0 +000000000000a4e8 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 PROXY_boardctl.c +000000000000d06c l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000002077d l .debug_str 0000000000000000 .LASF151 +00000000000208ac l .debug_str 0000000000000000 .LASF152 +00000000000205c1 l .debug_str 0000000000000000 .LASF153 +0000000000003520 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +00000000000202c0 l .debug_line 0000000000000000 .Ldebug_line0 +00000000000200b4 l .debug_str 0000000000000000 .LASF0 +00000000000204d4 l .debug_str 0000000000000000 .LASF1 +0000000000020511 l .debug_str 0000000000000000 .LASF2 +00000000000202a6 l .debug_str 0000000000000000 .LASF3 +0000000000020242 l .debug_str 0000000000000000 .LASF4 +0000000000020121 l .debug_str 0000000000000000 .LASF5 +000000000002026a l .debug_str 0000000000000000 .LASF6 +000000000002035e l .debug_str 0000000000000000 .LASF8 +000000000002001b l .debug_str 0000000000000000 .LASF7 +000000000001ff8c l .debug_str 0000000000000000 .LASF9 +00000000000205ed l .debug_str 0000000000000000 .LASF10 +00000000000203d6 l .debug_str 0000000000000000 .LASF11 +000000000002057e l .debug_str 0000000000000000 .LASF12 +0000000000020211 l .debug_str 0000000000000000 .LASF13 +0000000000020474 l .debug_str 0000000000000000 .LASF14 +00000000000208f5 l .debug_str 0000000000000000 .LASF15 +0000000000020076 l .debug_str 0000000000000000 .LASF16 +00000000000208de l .debug_str 0000000000000000 .LASF17 +00000000000203ef l .debug_str 0000000000000000 .LASF18 +0000000000020749 l .debug_str 0000000000000000 .LASF19 +000000000002068b l .debug_str 0000000000000000 .LASF20 +0000000000020678 l .debug_str 0000000000000000 .LASF21 +0000000000020374 l .debug_str 0000000000000000 .LASF22 +0000000000020881 l .debug_str 0000000000000000 .LASF23 +000000000001ffa0 l .debug_str 0000000000000000 .LASF24 +00000000000205a7 l .debug_str 0000000000000000 .LASF25 +0000000000020412 l .debug_str 0000000000000000 .LASF26 +0000000000020597 l .debug_str 0000000000000000 .LASF27 +0000000000020226 l .debug_str 0000000000000000 .LASF28 +00000000000202eb l .debug_str 0000000000000000 .LASF29 +0000000000020492 l .debug_str 0000000000000000 .LASF30 +000000000002010d l .debug_str 0000000000000000 .LASF31 +0000000000020316 l .debug_str 0000000000000000 .LASF32 +00000000000203a4 l .debug_str 0000000000000000 .LASF33 +000000000001ffbb l .debug_str 0000000000000000 .LASF34 +000000000002075d l .debug_str 0000000000000000 .LASF35 +0000000000020572 l .debug_str 0000000000000000 .LASF36 +0000000000020622 l .debug_str 0000000000000000 .LASF37 +0000000000020066 l .debug_str 0000000000000000 .LASF38 +0000000000020567 l .debug_str 0000000000000000 .LASF39 +00000000000204fd l .debug_str 0000000000000000 .LASF40 +000000000001ff56 l .debug_str 0000000000000000 .LASF41 +000000000002024f l .debug_str 0000000000000000 .LASF42 +00000000000204e2 l .debug_str 0000000000000000 .LASF43 +0000000000020180 l .debug_str 0000000000000000 .LASF44 +000000000002071f l .debug_str 0000000000000000 .LASF45 +00000000000203c7 l .debug_str 0000000000000000 .LASF46 +00000000000200d8 l .debug_str 0000000000000000 .LASF47 +0000000000020056 l .debug_str 0000000000000000 .LASF48 +00000000000203fe l .debug_str 0000000000000000 .LASF49 +000000000001fff8 l .debug_str 0000000000000000 .LASF50 +00000000000206ba l .debug_str 0000000000000000 .LASF51 +00000000000201f5 l .debug_str 0000000000000000 .LASF52 +000000000001ff7b l .debug_str 0000000000000000 .LASF53 +00000000000203b6 l .debug_str 0000000000000000 .LASF54 +00000000000202c3 l .debug_str 0000000000000000 .LASF55 +000000000002082d l .debug_str 0000000000000000 .LASF56 +0000000000020286 l .debug_str 0000000000000000 .LASF57 +0000000000020366 l .debug_str 0000000000000000 .LASF58 +00000000000201a3 l .debug_str 0000000000000000 .LASF59 +000000000002032a l .debug_str 0000000000000000 .LASF60 +00000000000200e9 l .debug_str 0000000000000000 .LASF61 +0000000000020877 l .debug_str 0000000000000000 .LASF62 +00000000000200ab l .debug_str 0000000000000000 .LASF63 +0000000000020207 l .debug_str 0000000000000000 .LASF64 +000000000002004c l .debug_str 0000000000000000 .LASF65 +0000000000020439 l .debug_str 0000000000000000 .LASF66 +000000000001ff4d l .debug_str 0000000000000000 .LASF67 +0000000000020010 l .debug_str 0000000000000000 .LASF68 +000000000001ffca l .debug_str 0000000000000000 .LASF69 +0000000000020339 l .debug_str 0000000000000000 .LASF70 +000000000002012a l .debug_str 0000000000000000 .LASF71 +000000000002048a l .debug_str 0000000000000000 .LASF72 +000000000002051b l .debug_str 0000000000000000 .LASF73 +000000000002027c l .debug_str 0000000000000000 .LASF74 +0000000000020869 l .debug_str 0000000000000000 .LASF75 +00000000000200a1 l .debug_str 0000000000000000 .LASF76 +00000000000201bb l .debug_str 0000000000000000 .LASF77 +0000000000020716 l .debug_str 0000000000000000 .LASF78 +000000000002047f l .debug_str 0000000000000000 .LASF79 +00000000000208a3 l .debug_str 0000000000000000 .LASF80 +00000000000206b0 l .debug_str 0000000000000000 .LASF81 +000000000001ff96 l .debug_str 0000000000000000 .LASF82 +0000000000020353 l .debug_str 0000000000000000 .LASF83 +00000000000204f1 l .debug_str 0000000000000000 .LASF84 +00000000000206cc l .debug_str 0000000000000000 .LASF85 +0000000000020524 l .debug_str 0000000000000000 .LASF86 +000000000002021c l .debug_str 0000000000000000 .LASF87 +000000000002030c l .debug_str 0000000000000000 .LASF88 +000000000002085e l .debug_str 0000000000000000 .LASF89 +0000000000020469 l .debug_str 0000000000000000 .LASF90 +00000000000200ce l .debug_str 0000000000000000 .LASF91 +00000000000204b5 l .debug_str 0000000000000000 .LASF92 +00000000000201db l .debug_str 0000000000000000 .LASF93 +0000000000020236 l .debug_str 0000000000000000 .LASF94 +0000000000020851 l .debug_str 0000000000000000 .LASF95 +000000000002058a l .debug_str 0000000000000000 .LASF96 +00000000000206a5 l .debug_str 0000000000000000 .LASF97 +00000000000202d8 l .debug_str 0000000000000000 .LASF98 +00000000000201b1 l .debug_str 0000000000000000 .LASF99 +00000000000202b9 l .debug_str 0000000000000000 .LASF100 +000000000002066c l .debug_str 0000000000000000 .LASF101 +00000000000208ff l .debug_str 0000000000000000 .LASF102 +0000000000020450 l .debug_str 0000000000000000 .LASF103 +0000000000020190 l .debug_str 0000000000000000 .LASF104 +000000000002041e l .debug_str 0000000000000000 .LASF105 +0000000000020089 l .debug_str 0000000000000000 .LASF106 +0000000000020700 l .debug_str 0000000000000000 .LASF107 +000000000002015f l .debug_str 0000000000000000 .LASF108 +000000000001ffe5 l .debug_str 0000000000000000 .LASF109 +00000000000204c0 l .debug_str 0000000000000000 .LASF110 +000000000002052d l .debug_str 0000000000000000 .LASF111 +0000000000020892 l .debug_str 0000000000000000 .LASF112 +0000000000020032 l .debug_str 0000000000000000 .LASF113 +0000000000020655 l .debug_str 0000000000000000 .LASF114 +0000000000020606 l .debug_str 0000000000000000 .LASF115 +000000000001ff61 l .debug_str 0000000000000000 .LASF116 +000000000002038b l .debug_str 0000000000000000 .LASF117 +000000000002072c l .debug_str 0000000000000000 .LASF118 +00000000000200f3 l .debug_str 0000000000000000 .LASF119 +0000000000020137 l .debug_str 0000000000000000 .LASF120 +00000000000206d9 l .debug_str 0000000000000000 .LASF121 +0000000000020769 l .debug_str 0000000000000000 .LASF122 +000000000002025d l .debug_str 0000000000000000 .LASF123 +0000000000020150 l .debug_str 0000000000000000 .LASF124 +0000000000020345 l .debug_str 0000000000000000 .LASF125 +00000000000206f4 l .debug_str 0000000000000000 .LASF126 +00000000000201e6 l .debug_str 0000000000000000 .LASF127 +0000000000020444 l .debug_str 0000000000000000 .LASF128 +0000000000020558 l .debug_str 0000000000000000 .LASF129 +00000000000204a1 l .debug_str 0000000000000000 .LASF130 +000000000001ffd4 l .debug_str 0000000000000000 .LASF131 +0000000000020298 l .debug_str 0000000000000000 .LASF132 +00000000000205f2 l .debug_str 0000000000000000 .LASF133 +0000000000020648 l .debug_str 0000000000000000 .LASF134 +00000000000208c5 l .debug_str 0000000000000000 .LASF135 +000000000001ffb0 l .debug_str 0000000000000000 .LASF136 +0000000000020506 l .debug_str 0000000000000000 .LASF137 +00000000000201c4 l .debug_str 0000000000000000 .LASF138 +00000000000208d0 l .debug_str 0000000000000000 .LASF139 +00000000000200c0 l .debug_str 0000000000000000 .LASF140 +000000000002083f l .debug_str 0000000000000000 .LASF141 +0000000000020002 l .debug_str 0000000000000000 .LASF142 +00000000000203e0 l .debug_str 0000000000000000 .LASF143 +000000000002062e l .debug_str 0000000000000000 .LASF144 +0000000000020637 l .debug_str 0000000000000000 .LASF145 +0000000000020547 l .debug_str 0000000000000000 .LASF146 +0000000000020175 l .debug_str 0000000000000000 .LASF147 +00000000000202fd l .debug_str 0000000000000000 .LASF148 +00000000000202e2 l .debug_str 0000000000000000 .LASF154 +000000000000a57a l .text 0000000000000000 .LFB7 +000000000000a592 l .text 0000000000000000 .LFE7 +00000000000205e1 l .debug_str 0000000000000000 .LASF149 +000000000001e048 l .debug_loc 0000000000000000 .LLST0 +00000000000205e7 l .debug_str 0000000000000000 .LASF150 +000000000001e081 l .debug_loc 0000000000000000 .LLST1 +000000000000a57e l .text 0000000000000000 .LBB4 +000000000000a58e l .text 0000000000000000 .LBE4 +000000000001e0b7 l .debug_loc 0000000000000000 .LLST2 +000000000001e0dc l .debug_loc 0000000000000000 .LLST3 +000000000001e112 l .debug_loc 0000000000000000 .LLST4 +00000000000201d1 l .debug_str 0000000000000000 .LASF155 +000000000000a57a l .text 0000000000000000 .LVL0 +000000000000a586 l .text 0000000000000000 .LVL4 +000000000000a582 l .text 0000000000000000 .LVL3 +000000000000a57e l .text 0000000000000000 .LVL2 +000000000000a58e l .text 0000000000000000 .LVL5 +000000000000a57c l .text 0000000000000000 .LVL1 +000000000002be61 l .debug_info 0000000000000000 .Ldebug_info0 +000000000000a57a l .text 0000000000000000 .L0 +000000000000a57a l .text 0000000000000000 .L0 +000000000000a57a l .text 0000000000000000 .L0 +000000000000a57e l .text 0000000000000000 .L0 +000000000000a57e l .text 0000000000000000 .L0 +000000000000a582 l .text 0000000000000000 .L0 +000000000000a586 l .text 0000000000000000 .L0 +000000000000a586 l .text 0000000000000000 .L0 +000000000000a588 l .text 0000000000000000 .L0 +000000000000a588 l .text 0000000000000000 .L0 +000000000000a58c l .text 0000000000000000 .L0 +000000000000a58e l .text 0000000000000000 .L0 +000000000000a58e l .text 0000000000000000 .L0 +000000000000a592 l .text 0000000000000000 .L0 +0000000000003e30 l .debug_frame 0000000000000000 .L0 +000000000000a57a l .text 0000000000000000 .L0 +000000000000a592 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 PROXY_clock_nanosleep.c +000000000000d153 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +00000000000211a6 l .debug_str 0000000000000000 .LASF159 +00000000000210fd l .debug_str 0000000000000000 .LASF160 +0000000000020fe5 l .debug_str 0000000000000000 .LASF161 +0000000000003540 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000002041e l .debug_line 0000000000000000 .Ldebug_line0 +0000000000020a92 l .debug_str 0000000000000000 .LASF0 +0000000000020ee6 l .debug_str 0000000000000000 .LASF1 +0000000000020f23 l .debug_str 0000000000000000 .LASF2 +0000000000020c94 l .debug_str 0000000000000000 .LASF3 +0000000000020984 l .debug_str 0000000000000000 .LASF7 +0000000000020c20 l .debug_str 0000000000000000 .LASF4 +0000000000020aff l .debug_str 0000000000000000 .LASF5 +0000000000020c48 l .debug_str 0000000000000000 .LASF6 +0000000000020d55 l .debug_str 0000000000000000 .LASF8 +00000000000209f9 l .debug_str 0000000000000000 .LASF9 +0000000000020fc2 l .debug_str 0000000000000000 .LASF10 +0000000000020955 l .debug_str 0000000000000000 .LASF11 +0000000000020e7a l .debug_str 0000000000000000 .LASF12 +00000000000212c5 l .debug_str 0000000000000000 .LASF13 +0000000000021011 l .debug_str 0000000000000000 .LASF14 +0000000000020f36 l .debug_str 0000000000000000 .LASF162 +0000000000020dee l .debug_str 0000000000000000 .LASF15 +0000000000020dcd l .debug_str 0000000000000000 .LASF16 +0000000000020dd5 l .debug_str 0000000000000000 .LASF17 +0000000000020f99 l .debug_str 0000000000000000 .LASF18 +0000000000020bef l .debug_str 0000000000000000 .LASF19 +0000000000021268 l .debug_str 0000000000000000 .LASF20 +0000000000021308 l .debug_str 0000000000000000 .LASF21 +0000000000020a54 l .debug_str 0000000000000000 .LASF22 +00000000000212f1 l .debug_str 0000000000000000 .LASF23 +0000000000020df5 l .debug_str 0000000000000000 .LASF24 +0000000000021172 l .debug_str 0000000000000000 .LASF25 +00000000000210af l .debug_str 0000000000000000 .LASF26 +000000000002109c l .debug_str 0000000000000000 .LASF27 +0000000000020d6b l .debug_str 0000000000000000 .LASF28 +00000000000212a3 l .debug_str 0000000000000000 .LASF29 +0000000000020c5a l .debug_str 0000000000000000 .LASF30 +0000000000020fcb l .debug_str 0000000000000000 .LASF31 +0000000000020e18 l .debug_str 0000000000000000 .LASF32 +0000000000020fb2 l .debug_str 0000000000000000 .LASF33 +0000000000020c04 l .debug_str 0000000000000000 .LASF34 +0000000000020ce2 l .debug_str 0000000000000000 .LASF35 +0000000000020e94 l .debug_str 0000000000000000 .LASF36 +0000000000020aeb l .debug_str 0000000000000000 .LASF37 +0000000000020d0d l .debug_str 0000000000000000 .LASF38 +0000000000020d9b l .debug_str 0000000000000000 .LASF39 +0000000000020999 l .debug_str 0000000000000000 .LASF40 +0000000000021186 l .debug_str 0000000000000000 .LASF41 +0000000000020f8d l .debug_str 0000000000000000 .LASF42 +0000000000021046 l .debug_str 0000000000000000 .LASF43 +0000000000020a44 l .debug_str 0000000000000000 .LASF44 +0000000000020f82 l .debug_str 0000000000000000 .LASF45 +0000000000020f0f l .debug_str 0000000000000000 .LASF46 +000000000002091f l .debug_str 0000000000000000 .LASF47 +0000000000020c2d l .debug_str 0000000000000000 .LASF48 +0000000000020ef4 l .debug_str 0000000000000000 .LASF49 +0000000000020b5e l .debug_str 0000000000000000 .LASF50 +0000000000021148 l .debug_str 0000000000000000 .LASF51 +0000000000020dbe l .debug_str 0000000000000000 .LASF52 +0000000000020ab6 l .debug_str 0000000000000000 .LASF53 +0000000000020a34 l .debug_str 0000000000000000 .LASF54 +0000000000020e04 l .debug_str 0000000000000000 .LASF55 +00000000000209d6 l .debug_str 0000000000000000 .LASF56 +00000000000210de l .debug_str 0000000000000000 .LASF57 +0000000000020bd3 l .debug_str 0000000000000000 .LASF58 +0000000000020944 l .debug_str 0000000000000000 .LASF59 +0000000000020dad l .debug_str 0000000000000000 .LASF60 +0000000000020cc3 l .debug_str 0000000000000000 .LASF61 +0000000000021256 l .debug_str 0000000000000000 .LASF62 +0000000000020c74 l .debug_str 0000000000000000 .LASF63 +0000000000020d5d l .debug_str 0000000000000000 .LASF64 +0000000000020b81 l .debug_str 0000000000000000 .LASF65 +0000000000020d21 l .debug_str 0000000000000000 .LASF66 +0000000000020ac7 l .debug_str 0000000000000000 .LASF67 +0000000000021299 l .debug_str 0000000000000000 .LASF68 +0000000000020a89 l .debug_str 0000000000000000 .LASF69 +0000000000020be5 l .debug_str 0000000000000000 .LASF70 +0000000000020a2a l .debug_str 0000000000000000 .LASF71 +0000000000020e3f l .debug_str 0000000000000000 .LASF72 +0000000000020916 l .debug_str 0000000000000000 .LASF73 +00000000000209ee l .debug_str 0000000000000000 .LASF74 +00000000000209a8 l .debug_str 0000000000000000 .LASF75 +0000000000020d30 l .debug_str 0000000000000000 .LASF76 +0000000000020b08 l .debug_str 0000000000000000 .LASF77 +0000000000020e8c l .debug_str 0000000000000000 .LASF78 +0000000000020f2d l .debug_str 0000000000000000 .LASF79 +0000000000020c6a l .debug_str 0000000000000000 .LASF80 +000000000002128b l .debug_str 0000000000000000 .LASF81 +0000000000020a7f l .debug_str 0000000000000000 .LASF82 +0000000000020b99 l .debug_str 0000000000000000 .LASF83 +000000000002113f l .debug_str 0000000000000000 .LASF84 +0000000000020e81 l .debug_str 0000000000000000 .LASF85 +00000000000212cf l .debug_str 0000000000000000 .LASF86 +00000000000210d4 l .debug_str 0000000000000000 .LASF87 +000000000002095f l .debug_str 0000000000000000 .LASF88 +0000000000020d4a l .debug_str 0000000000000000 .LASF89 +0000000000020f03 l .debug_str 0000000000000000 .LASF90 +00000000000210f0 l .debug_str 0000000000000000 .LASF91 +0000000000020f3f l .debug_str 0000000000000000 .LASF92 +0000000000020bfa l .debug_str 0000000000000000 .LASF93 +0000000000020d03 l .debug_str 0000000000000000 .LASF94 +0000000000021280 l .debug_str 0000000000000000 .LASF95 +0000000000020e6f l .debug_str 0000000000000000 .LASF96 +0000000000020aac l .debug_str 0000000000000000 .LASF97 +0000000000020ec7 l .debug_str 0000000000000000 .LASF98 +0000000000020bb9 l .debug_str 0000000000000000 .LASF99 +0000000000020c14 l .debug_str 0000000000000000 .LASF100 +0000000000021273 l .debug_str 0000000000000000 .LASF101 +0000000000020fa5 l .debug_str 0000000000000000 .LASF102 +00000000000210c9 l .debug_str 0000000000000000 .LASF103 +0000000000020cd8 l .debug_str 0000000000000000 .LASF104 +0000000000020b8f l .debug_str 0000000000000000 .LASF105 +0000000000020cb9 l .debug_str 0000000000000000 .LASF106 +0000000000021090 l .debug_str 0000000000000000 .LASF107 +0000000000021312 l .debug_str 0000000000000000 .LASF108 +0000000000020e56 l .debug_str 0000000000000000 .LASF109 +0000000000020b6e l .debug_str 0000000000000000 .LASF110 +0000000000020e24 l .debug_str 0000000000000000 .LASF111 +0000000000020a67 l .debug_str 0000000000000000 .LASF112 +0000000000021129 l .debug_str 0000000000000000 .LASF113 +0000000000020b3d l .debug_str 0000000000000000 .LASF114 +00000000000209c3 l .debug_str 0000000000000000 .LASF115 +0000000000020ed2 l .debug_str 0000000000000000 .LASF116 +0000000000020f48 l .debug_str 0000000000000000 .LASF117 +00000000000212b4 l .debug_str 0000000000000000 .LASF118 +0000000000020a10 l .debug_str 0000000000000000 .LASF119 +0000000000021079 l .debug_str 0000000000000000 .LASF120 +000000000002102a l .debug_str 0000000000000000 .LASF121 +000000000002092a l .debug_str 0000000000000000 .LASF122 +0000000000020d82 l .debug_str 0000000000000000 .LASF123 +0000000000021155 l .debug_str 0000000000000000 .LASF124 +0000000000020ad1 l .debug_str 0000000000000000 .LASF125 +0000000000020b15 l .debug_str 0000000000000000 .LASF126 +0000000000020969 l .debug_str 0000000000000000 .LASF127 +0000000000021192 l .debug_str 0000000000000000 .LASF128 +0000000000020c3b l .debug_str 0000000000000000 .LASF129 +0000000000020b2e l .debug_str 0000000000000000 .LASF130 +0000000000020d3c l .debug_str 0000000000000000 .LASF131 +000000000002111d l .debug_str 0000000000000000 .LASF132 +0000000000020bc4 l .debug_str 0000000000000000 .LASF133 +0000000000020e4a l .debug_str 0000000000000000 .LASF134 +0000000000020f73 l .debug_str 0000000000000000 .LASF135 +0000000000020ea3 l .debug_str 0000000000000000 .LASF136 +00000000000209b2 l .debug_str 0000000000000000 .LASF137 +0000000000020c86 l .debug_str 0000000000000000 .LASF138 +0000000000021016 l .debug_str 0000000000000000 .LASF139 +000000000002106c l .debug_str 0000000000000000 .LASF140 +00000000000212d8 l .debug_str 0000000000000000 .LASF141 +000000000002098e l .debug_str 0000000000000000 .LASF142 +0000000000020f18 l .debug_str 0000000000000000 .LASF143 +0000000000020ba2 l .debug_str 0000000000000000 .LASF144 +00000000000212e3 l .debug_str 0000000000000000 .LASF145 +0000000000020a9e l .debug_str 0000000000000000 .LASF146 +0000000000020ca7 l .debug_str 0000000000000000 .LASF147 +00000000000209e0 l .debug_str 0000000000000000 .LASF148 +0000000000020ddf l .debug_str 0000000000000000 .LASF149 +0000000000021052 l .debug_str 0000000000000000 .LASF150 +000000000002105b l .debug_str 0000000000000000 .LASF151 +0000000000020f62 l .debug_str 0000000000000000 .LASF152 +0000000000020b53 l .debug_str 0000000000000000 .LASF153 +0000000000020cf4 l .debug_str 0000000000000000 .LASF154 +0000000000020eb7 l .debug_str 0000000000000000 .LASF163 +000000000000a592 l .text 0000000000000000 .LFB7 +000000000000a5ae l .text 0000000000000000 .LFE7 +0000000000021005 l .debug_str 0000000000000000 .LASF155 +000000000001e13d l .debug_loc 0000000000000000 .LLST0 +000000000002100b l .debug_str 0000000000000000 .LASF156 +000000000001e176 l .debug_loc 0000000000000000 .LLST1 +000000000002090a l .debug_str 0000000000000000 .LASF157 +000000000001e1af l .debug_loc 0000000000000000 .LLST2 +0000000000020910 l .debug_str 0000000000000000 .LASF158 +000000000001e1e5 l .debug_loc 0000000000000000 .LLST3 +000000000000a59a l .text 0000000000000000 .LBB4 +000000000000a5aa l .text 0000000000000000 .LBE4 +000000000001e21b l .debug_loc 0000000000000000 .LLST4 +000000000001e240 l .debug_loc 0000000000000000 .LLST5 +000000000001e276 l .debug_loc 0000000000000000 .LLST6 +000000000001e2ac l .debug_loc 0000000000000000 .LLST7 +000000000001e2d7 l .debug_loc 0000000000000000 .LLST8 +0000000000020baf l .debug_str 0000000000000000 .LASF164 +000000000000a592 l .text 0000000000000000 .LVL0 +000000000000a59e l .text 0000000000000000 .LVL5 +000000000000a5a0 l .text 0000000000000000 .LVL6 +000000000000a5a2 l .text 0000000000000000 .LVL7 +000000000000a5a4 l .text 0000000000000000 .LVL8 +000000000000a59a l .text 0000000000000000 .LVL4 +000000000000a5aa l .text 0000000000000000 .LVL9 +000000000000a598 l .text 0000000000000000 .LVL3 +000000000000a596 l .text 0000000000000000 .LVL2 +000000000000a594 l .text 0000000000000000 .LVL1 +000000000002c314 l .debug_info 0000000000000000 .Ldebug_info0 +000000000000a592 l .text 0000000000000000 .L0 +000000000000a592 l .text 0000000000000000 .L0 +000000000000a592 l .text 0000000000000000 .L0 +000000000000a59a l .text 0000000000000000 .L0 +000000000000a59a l .text 0000000000000000 .L0 +000000000000a59e l .text 0000000000000000 .L0 +000000000000a59e l .text 0000000000000000 .L0 +000000000000a5a0 l .text 0000000000000000 .L0 +000000000000a5a0 l .text 0000000000000000 .L0 +000000000000a5a2 l .text 0000000000000000 .L0 +000000000000a5a2 l .text 0000000000000000 .L0 +000000000000a5a4 l .text 0000000000000000 .L0 +000000000000a5a4 l .text 0000000000000000 .L0 +000000000000a5a8 l .text 0000000000000000 .L0 +000000000000a5aa l .text 0000000000000000 .L0 +000000000000a5aa l .text 0000000000000000 .L0 +000000000000a5ae l .text 0000000000000000 .L0 +0000000000003e58 l .debug_frame 0000000000000000 .L0 +000000000000a592 l .text 0000000000000000 .L0 +000000000000a5ae l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 PROXY_close.c +000000000000d27b l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000021b5a l .debug_str 0000000000000000 .LASF150 +0000000000021656 l .debug_str 0000000000000000 .LASF151 +00000000000219a4 l .debug_str 0000000000000000 .LASF152 +0000000000003560 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +00000000000205a4 l .debug_line 0000000000000000 .Ldebug_line0 +0000000000021484 l .debug_str 0000000000000000 .LASF0 +00000000000218b7 l .debug_str 0000000000000000 .LASF1 +00000000000218f4 l .debug_str 0000000000000000 .LASF2 +000000000002168c l .debug_str 0000000000000000 .LASF3 +0000000000021612 l .debug_str 0000000000000000 .LASF4 +00000000000214f1 l .debug_str 0000000000000000 .LASF5 +000000000002163a l .debug_str 0000000000000000 .LASF6 +000000000002173b l .debug_str 0000000000000000 .LASF8 +00000000000213eb l .debug_str 0000000000000000 .LASF7 +000000000002135c l .debug_str 0000000000000000 .LASF9 +00000000000219ca l .debug_str 0000000000000000 .LASF10 +00000000000217b3 l .debug_str 0000000000000000 .LASF11 +0000000000021961 l .debug_str 0000000000000000 .LASF12 +00000000000215e1 l .debug_str 0000000000000000 .LASF13 +0000000000021851 l .debug_str 0000000000000000 .LASF14 +0000000000021cb9 l .debug_str 0000000000000000 .LASF15 +0000000000021446 l .debug_str 0000000000000000 .LASF16 +0000000000021ca2 l .debug_str 0000000000000000 .LASF17 +00000000000217cc l .debug_str 0000000000000000 .LASF18 +0000000000021b26 l .debug_str 0000000000000000 .LASF19 +0000000000021a68 l .debug_str 0000000000000000 .LASF20 +0000000000021a55 l .debug_str 0000000000000000 .LASF21 +0000000000021751 l .debug_str 0000000000000000 .LASF22 +0000000000021c5e l .debug_str 0000000000000000 .LASF23 +0000000000021370 l .debug_str 0000000000000000 .LASF24 +000000000002198a l .debug_str 0000000000000000 .LASF25 +00000000000217ef l .debug_str 0000000000000000 .LASF26 +000000000002197a l .debug_str 0000000000000000 .LASF27 +00000000000215f6 l .debug_str 0000000000000000 .LASF28 +00000000000216c8 l .debug_str 0000000000000000 .LASF29 +0000000000021875 l .debug_str 0000000000000000 .LASF30 +00000000000214dd l .debug_str 0000000000000000 .LASF31 +00000000000216f3 l .debug_str 0000000000000000 .LASF32 +0000000000021781 l .debug_str 0000000000000000 .LASF33 +000000000002138b l .debug_str 0000000000000000 .LASF34 +0000000000021b3a l .debug_str 0000000000000000 .LASF35 +0000000000021955 l .debug_str 0000000000000000 .LASF36 +00000000000219ff l .debug_str 0000000000000000 .LASF37 +0000000000021436 l .debug_str 0000000000000000 .LASF38 +000000000002194a l .debug_str 0000000000000000 .LASF39 +00000000000218e0 l .debug_str 0000000000000000 .LASF40 +0000000000021326 l .debug_str 0000000000000000 .LASF41 +000000000002161f l .debug_str 0000000000000000 .LASF42 +00000000000218c5 l .debug_str 0000000000000000 .LASF43 +0000000000021550 l .debug_str 0000000000000000 .LASF44 +0000000000021afc l .debug_str 0000000000000000 .LASF45 +00000000000217a4 l .debug_str 0000000000000000 .LASF46 +00000000000214a8 l .debug_str 0000000000000000 .LASF47 +0000000000021426 l .debug_str 0000000000000000 .LASF48 +00000000000217db l .debug_str 0000000000000000 .LASF49 +00000000000213c8 l .debug_str 0000000000000000 .LASF50 +0000000000021a97 l .debug_str 0000000000000000 .LASF51 +00000000000215c5 l .debug_str 0000000000000000 .LASF52 +000000000002134b l .debug_str 0000000000000000 .LASF53 +0000000000021793 l .debug_str 0000000000000000 .LASF54 +00000000000216a9 l .debug_str 0000000000000000 .LASF55 +0000000000021c0a l .debug_str 0000000000000000 .LASF56 +000000000002166c l .debug_str 0000000000000000 .LASF57 +0000000000021743 l .debug_str 0000000000000000 .LASF58 +0000000000021573 l .debug_str 0000000000000000 .LASF59 +0000000000021707 l .debug_str 0000000000000000 .LASF60 +00000000000214b9 l .debug_str 0000000000000000 .LASF61 +0000000000021c54 l .debug_str 0000000000000000 .LASF62 +000000000002147b l .debug_str 0000000000000000 .LASF63 +00000000000215d7 l .debug_str 0000000000000000 .LASF64 +000000000002141c l .debug_str 0000000000000000 .LASF65 +0000000000021816 l .debug_str 0000000000000000 .LASF66 +000000000002131d l .debug_str 0000000000000000 .LASF67 +00000000000213e0 l .debug_str 0000000000000000 .LASF68 +000000000002139a l .debug_str 0000000000000000 .LASF69 +0000000000021716 l .debug_str 0000000000000000 .LASF70 +00000000000214fa l .debug_str 0000000000000000 .LASF71 +000000000002186d l .debug_str 0000000000000000 .LASF72 +00000000000218fe l .debug_str 0000000000000000 .LASF73 +000000000002164c l .debug_str 0000000000000000 .LASF74 +0000000000021c46 l .debug_str 0000000000000000 .LASF75 +0000000000021471 l .debug_str 0000000000000000 .LASF76 +000000000002158b l .debug_str 0000000000000000 .LASF77 +0000000000021af3 l .debug_str 0000000000000000 .LASF78 +0000000000021862 l .debug_str 0000000000000000 .LASF79 +0000000000021c80 l .debug_str 0000000000000000 .LASF80 +0000000000021a8d l .debug_str 0000000000000000 .LASF81 +0000000000021366 l .debug_str 0000000000000000 .LASF82 +0000000000021730 l .debug_str 0000000000000000 .LASF83 +00000000000218d4 l .debug_str 0000000000000000 .LASF84 +0000000000021aa9 l .debug_str 0000000000000000 .LASF85 +0000000000021907 l .debug_str 0000000000000000 .LASF86 +00000000000215ec l .debug_str 0000000000000000 .LASF87 +00000000000216e9 l .debug_str 0000000000000000 .LASF88 +0000000000021c3b l .debug_str 0000000000000000 .LASF89 +0000000000021846 l .debug_str 0000000000000000 .LASF90 +000000000002149e l .debug_str 0000000000000000 .LASF91 +0000000000021898 l .debug_str 0000000000000000 .LASF92 +00000000000215ab l .debug_str 0000000000000000 .LASF93 +0000000000021606 l .debug_str 0000000000000000 .LASF94 +0000000000021c2e l .debug_str 0000000000000000 .LASF95 +000000000002196d l .debug_str 0000000000000000 .LASF96 +0000000000021a82 l .debug_str 0000000000000000 .LASF97 +00000000000216be l .debug_str 0000000000000000 .LASF98 +0000000000021581 l .debug_str 0000000000000000 .LASF99 +000000000002169f l .debug_str 0000000000000000 .LASF100 +0000000000021a49 l .debug_str 0000000000000000 .LASF101 +0000000000021cc3 l .debug_str 0000000000000000 .LASF102 +000000000002182d l .debug_str 0000000000000000 .LASF103 +0000000000021560 l .debug_str 0000000000000000 .LASF104 +00000000000217fb l .debug_str 0000000000000000 .LASF105 +0000000000021459 l .debug_str 0000000000000000 .LASF106 +0000000000021add l .debug_str 0000000000000000 .LASF107 +000000000002152f l .debug_str 0000000000000000 .LASF108 +00000000000213b5 l .debug_str 0000000000000000 .LASF109 +00000000000218a3 l .debug_str 0000000000000000 .LASF110 +0000000000021910 l .debug_str 0000000000000000 .LASF111 +0000000000021c6f l .debug_str 0000000000000000 .LASF112 +0000000000021402 l .debug_str 0000000000000000 .LASF113 +0000000000021a32 l .debug_str 0000000000000000 .LASF114 +00000000000219e3 l .debug_str 0000000000000000 .LASF115 +0000000000021331 l .debug_str 0000000000000000 .LASF116 +0000000000021768 l .debug_str 0000000000000000 .LASF117 +0000000000021b09 l .debug_str 0000000000000000 .LASF118 +00000000000214c3 l .debug_str 0000000000000000 .LASF119 +0000000000021507 l .debug_str 0000000000000000 .LASF120 +0000000000021ab6 l .debug_str 0000000000000000 .LASF121 +0000000000021b46 l .debug_str 0000000000000000 .LASF122 +000000000002162d l .debug_str 0000000000000000 .LASF123 +0000000000021520 l .debug_str 0000000000000000 .LASF124 +0000000000021722 l .debug_str 0000000000000000 .LASF125 +0000000000021ad1 l .debug_str 0000000000000000 .LASF126 +00000000000215b6 l .debug_str 0000000000000000 .LASF127 +0000000000021821 l .debug_str 0000000000000000 .LASF128 +000000000002193b l .debug_str 0000000000000000 .LASF129 +0000000000021884 l .debug_str 0000000000000000 .LASF130 +00000000000213a4 l .debug_str 0000000000000000 .LASF131 +000000000002167e l .debug_str 0000000000000000 .LASF132 +00000000000219cf l .debug_str 0000000000000000 .LASF133 +0000000000021a25 l .debug_str 0000000000000000 .LASF134 +0000000000021c89 l .debug_str 0000000000000000 .LASF135 +0000000000021380 l .debug_str 0000000000000000 .LASF136 +00000000000218e9 l .debug_str 0000000000000000 .LASF137 +0000000000021594 l .debug_str 0000000000000000 .LASF138 +0000000000021c94 l .debug_str 0000000000000000 .LASF139 +0000000000021490 l .debug_str 0000000000000000 .LASF140 +0000000000021c1c l .debug_str 0000000000000000 .LASF141 +00000000000213d2 l .debug_str 0000000000000000 .LASF142 +00000000000217bd l .debug_str 0000000000000000 .LASF143 +0000000000021a0b l .debug_str 0000000000000000 .LASF144 +0000000000021a14 l .debug_str 0000000000000000 .LASF145 +000000000002192a l .debug_str 0000000000000000 .LASF146 +0000000000021545 l .debug_str 0000000000000000 .LASF147 +00000000000216da l .debug_str 0000000000000000 .LASF148 +000000000002185c l .debug_str 0000000000000000 .LASF153 +000000000000a5ae l .text 0000000000000000 .LFB7 +000000000000a5be l .text 0000000000000000 .LFE7 +00000000000219c4 l .debug_str 0000000000000000 .LASF149 +000000000001e302 l .debug_loc 0000000000000000 .LLST0 +000000000000a5b0 l .text 0000000000000000 .LBB4 +000000000000a5ba l .text 0000000000000000 .LBE4 +000000000001e33b l .debug_loc 0000000000000000 .LLST1 +000000000001e360 l .debug_loc 0000000000000000 .LLST2 +00000000000215a1 l .debug_str 0000000000000000 .LASF154 +000000000000a5ae l .text 0000000000000000 .LVL0 +000000000000a5b4 l .text 0000000000000000 .LVL2 +000000000000a5b0 l .text 0000000000000000 .LVL1 +000000000000a5ba l .text 0000000000000000 .LVL3 +000000000002c8a9 l .debug_info 0000000000000000 .Ldebug_info0 +000000000000a5ae l .text 0000000000000000 .L0 +000000000000a5ae l .text 0000000000000000 .L0 +000000000000a5ae l .text 0000000000000000 .L0 +000000000000a5b0 l .text 0000000000000000 .L0 +000000000000a5b0 l .text 0000000000000000 .L0 +000000000000a5b4 l .text 0000000000000000 .L0 +000000000000a5b4 l .text 0000000000000000 .L0 +000000000000a5b8 l .text 0000000000000000 .L0 +000000000000a5ba l .text 0000000000000000 .L0 +000000000000a5ba l .text 0000000000000000 .L0 +000000000000a5be l .text 0000000000000000 .L0 +0000000000003e80 l .debug_frame 0000000000000000 .L0 +000000000000a5ae l .text 0000000000000000 .L0 +000000000000a5be l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 PROXY_ftruncate.c +000000000000d362 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000022530 l .debug_str 0000000000000000 .LASF154 +00000000000222bd l .debug_str 0000000000000000 .LASF155 +0000000000022374 l .debug_str 0000000000000000 .LASF156 +0000000000003580 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +00000000000206e1 l .debug_line 0000000000000000 .Ldebug_line0 +0000000000021e42 l .debug_str 0000000000000000 .LASF0 +0000000000022263 l .debug_str 0000000000000000 .LASF1 +00000000000222a0 l .debug_str 0000000000000000 .LASF2 +000000000002202d l .debug_str 0000000000000000 .LASF3 +0000000000022134 l .debug_str 0000000000000000 .LASF7 +0000000000021fc9 l .debug_str 0000000000000000 .LASF4 +0000000000021eaf l .debug_str 0000000000000000 .LASF5 +0000000000021ff1 l .debug_str 0000000000000000 .LASF6 +00000000000220dc l .debug_str 0000000000000000 .LASF8 +0000000000021da9 l .debug_str 0000000000000000 .LASF9 +000000000002225b l .debug_str 0000000000000000 .LASF10 +0000000000021d0d l .debug_str 0000000000000000 .LASF11 +0000000000021f52 l .debug_str 0000000000000000 .LASF12 +00000000000223a0 l .debug_str 0000000000000000 .LASF13 +000000000002215d l .debug_str 0000000000000000 .LASF14 +0000000000022331 l .debug_str 0000000000000000 .LASF15 +0000000000021f98 l .debug_str 0000000000000000 .LASF16 +00000000000221fb l .debug_str 0000000000000000 .LASF17 +000000000002268f l .debug_str 0000000000000000 .LASF18 +0000000000021e04 l .debug_str 0000000000000000 .LASF19 +0000000000022678 l .debug_str 0000000000000000 .LASF20 +0000000000022176 l .debug_str 0000000000000000 .LASF21 +00000000000224fc l .debug_str 0000000000000000 .LASF22 +000000000002243e l .debug_str 0000000000000000 .LASF23 +000000000002242b l .debug_str 0000000000000000 .LASF24 +00000000000220f2 l .debug_str 0000000000000000 .LASF25 +0000000000022634 l .debug_str 0000000000000000 .LASF26 +0000000000021d21 l .debug_str 0000000000000000 .LASF27 +000000000002235a l .debug_str 0000000000000000 .LASF28 +0000000000022199 l .debug_str 0000000000000000 .LASF29 +000000000002234a l .debug_str 0000000000000000 .LASF30 +0000000000021fad l .debug_str 0000000000000000 .LASF31 +0000000000022069 l .debug_str 0000000000000000 .LASF32 +0000000000022219 l .debug_str 0000000000000000 .LASF33 +0000000000021e9b l .debug_str 0000000000000000 .LASF34 +0000000000022094 l .debug_str 0000000000000000 .LASF35 +0000000000022122 l .debug_str 0000000000000000 .LASF36 +0000000000021d3c l .debug_str 0000000000000000 .LASF37 +0000000000022510 l .debug_str 0000000000000000 .LASF38 +0000000000022325 l .debug_str 0000000000000000 .LASF39 +00000000000223d5 l .debug_str 0000000000000000 .LASF40 +0000000000021df4 l .debug_str 0000000000000000 .LASF41 +000000000002231a l .debug_str 0000000000000000 .LASF42 +000000000002228c l .debug_str 0000000000000000 .LASF43 +0000000000021cd7 l .debug_str 0000000000000000 .LASF44 +0000000000021fd6 l .debug_str 0000000000000000 .LASF45 +0000000000022271 l .debug_str 0000000000000000 .LASF46 +0000000000021f0e l .debug_str 0000000000000000 .LASF47 +00000000000224d2 l .debug_str 0000000000000000 .LASF48 +000000000002214e l .debug_str 0000000000000000 .LASF49 +0000000000021e66 l .debug_str 0000000000000000 .LASF50 +0000000000021de4 l .debug_str 0000000000000000 .LASF51 +0000000000022185 l .debug_str 0000000000000000 .LASF52 +0000000000021d86 l .debug_str 0000000000000000 .LASF53 +000000000002246d l .debug_str 0000000000000000 .LASF54 +0000000000021f7c l .debug_str 0000000000000000 .LASF55 +0000000000021cfc l .debug_str 0000000000000000 .LASF56 +000000000002213d l .debug_str 0000000000000000 .LASF57 +000000000002204a l .debug_str 0000000000000000 .LASF58 +00000000000225e0 l .debug_str 0000000000000000 .LASF59 +000000000002200d l .debug_str 0000000000000000 .LASF60 +00000000000220e4 l .debug_str 0000000000000000 .LASF61 +0000000000021f31 l .debug_str 0000000000000000 .LASF62 +00000000000220a8 l .debug_str 0000000000000000 .LASF63 +0000000000021e77 l .debug_str 0000000000000000 .LASF64 +000000000002262a l .debug_str 0000000000000000 .LASF65 +0000000000021e39 l .debug_str 0000000000000000 .LASF66 +0000000000021f8e l .debug_str 0000000000000000 .LASF67 +0000000000021dda l .debug_str 0000000000000000 .LASF68 +00000000000221c0 l .debug_str 0000000000000000 .LASF69 +0000000000021cce l .debug_str 0000000000000000 .LASF70 +0000000000021d9e l .debug_str 0000000000000000 .LASF71 +0000000000021d4b l .debug_str 0000000000000000 .LASF72 +00000000000220b7 l .debug_str 0000000000000000 .LASF73 +0000000000021eb8 l .debug_str 0000000000000000 .LASF74 +0000000000022211 l .debug_str 0000000000000000 .LASF75 +00000000000222b4 l .debug_str 0000000000000000 .LASF76 +0000000000022003 l .debug_str 0000000000000000 .LASF77 +000000000002261c l .debug_str 0000000000000000 .LASF78 +0000000000021e2f l .debug_str 0000000000000000 .LASF79 +0000000000021f49 l .debug_str 0000000000000000 .LASF80 +00000000000224c9 l .debug_str 0000000000000000 .LASF81 +0000000000022206 l .debug_str 0000000000000000 .LASF82 +0000000000022656 l .debug_str 0000000000000000 .LASF83 +0000000000022463 l .debug_str 0000000000000000 .LASF84 +0000000000021d17 l .debug_str 0000000000000000 .LASF85 +00000000000220d1 l .debug_str 0000000000000000 .LASF86 +0000000000022280 l .debug_str 0000000000000000 .LASF87 +000000000002247f l .debug_str 0000000000000000 .LASF88 +00000000000222d7 l .debug_str 0000000000000000 .LASF89 +0000000000021fa3 l .debug_str 0000000000000000 .LASF90 +000000000002208a l .debug_str 0000000000000000 .LASF91 +0000000000022611 l .debug_str 0000000000000000 .LASF92 +00000000000221f0 l .debug_str 0000000000000000 .LASF93 +0000000000021e5c l .debug_str 0000000000000000 .LASF94 +000000000002223c l .debug_str 0000000000000000 .LASF95 +0000000000021f62 l .debug_str 0000000000000000 .LASF96 +0000000000021fbd l .debug_str 0000000000000000 .LASF97 +0000000000022604 l .debug_str 0000000000000000 .LASF98 +000000000002233d l .debug_str 0000000000000000 .LASF99 +0000000000022458 l .debug_str 0000000000000000 .LASF100 +000000000002205f l .debug_str 0000000000000000 .LASF101 +0000000000021f3f l .debug_str 0000000000000000 .LASF102 +0000000000022040 l .debug_str 0000000000000000 .LASF103 +000000000002241f l .debug_str 0000000000000000 .LASF104 +0000000000022699 l .debug_str 0000000000000000 .LASF105 +00000000000221d7 l .debug_str 0000000000000000 .LASF106 +0000000000021f1e l .debug_str 0000000000000000 .LASF107 +00000000000221a5 l .debug_str 0000000000000000 .LASF108 +0000000000021e17 l .debug_str 0000000000000000 .LASF109 +00000000000224b3 l .debug_str 0000000000000000 .LASF110 +0000000000021eed l .debug_str 0000000000000000 .LASF111 +0000000000021d73 l .debug_str 0000000000000000 .LASF112 +0000000000022247 l .debug_str 0000000000000000 .LASF113 +00000000000222e0 l .debug_str 0000000000000000 .LASF114 +0000000000022645 l .debug_str 0000000000000000 .LASF115 +0000000000021dc0 l .debug_str 0000000000000000 .LASF116 +0000000000022408 l .debug_str 0000000000000000 .LASF117 +00000000000223b9 l .debug_str 0000000000000000 .LASF118 +0000000000021ce2 l .debug_str 0000000000000000 .LASF119 +0000000000022109 l .debug_str 0000000000000000 .LASF120 +00000000000224df l .debug_str 0000000000000000 .LASF121 +0000000000021e81 l .debug_str 0000000000000000 .LASF122 +0000000000021ec5 l .debug_str 0000000000000000 .LASF123 +000000000002248c l .debug_str 0000000000000000 .LASF124 +000000000002251c l .debug_str 0000000000000000 .LASF125 +0000000000021fe4 l .debug_str 0000000000000000 .LASF126 +0000000000021ede l .debug_str 0000000000000000 .LASF127 +00000000000220c3 l .debug_str 0000000000000000 .LASF128 +00000000000224a7 l .debug_str 0000000000000000 .LASF129 +0000000000021f6d l .debug_str 0000000000000000 .LASF130 +00000000000221cb l .debug_str 0000000000000000 .LASF131 +000000000002230b l .debug_str 0000000000000000 .LASF132 +0000000000022228 l .debug_str 0000000000000000 .LASF133 +0000000000021d62 l .debug_str 0000000000000000 .LASF134 +000000000002201f l .debug_str 0000000000000000 .LASF135 +00000000000223a5 l .debug_str 0000000000000000 .LASF136 +00000000000223fb l .debug_str 0000000000000000 .LASF137 +000000000002265f l .debug_str 0000000000000000 .LASF138 +0000000000021d31 l .debug_str 0000000000000000 .LASF139 +0000000000022295 l .debug_str 0000000000000000 .LASF140 +0000000000021d55 l .debug_str 0000000000000000 .LASF141 +000000000002266a l .debug_str 0000000000000000 .LASF142 +0000000000021e4e l .debug_str 0000000000000000 .LASF143 +00000000000225f2 l .debug_str 0000000000000000 .LASF144 +0000000000021d90 l .debug_str 0000000000000000 .LASF145 +0000000000022167 l .debug_str 0000000000000000 .LASF146 +00000000000223e1 l .debug_str 0000000000000000 .LASF147 +00000000000223ea l .debug_str 0000000000000000 .LASF148 +00000000000222fa l .debug_str 0000000000000000 .LASF149 +0000000000021f03 l .debug_str 0000000000000000 .LASF150 +000000000002207b l .debug_str 0000000000000000 .LASF151 +00000000000222aa l .debug_str 0000000000000000 .LASF157 +000000000000a5be l .text 0000000000000000 .LFB7 +000000000000a5d2 l .text 0000000000000000 .LFE7 +0000000000022394 l .debug_str 0000000000000000 .LASF152 +000000000001e38b l .debug_loc 0000000000000000 .LLST0 +000000000002239a l .debug_str 0000000000000000 .LASF153 +000000000001e3c4 l .debug_loc 0000000000000000 .LLST1 +000000000000a5c2 l .text 0000000000000000 .LBB4 +000000000000a5ce l .text 0000000000000000 .LBE4 +000000000001e3fd l .debug_loc 0000000000000000 .LLST2 +000000000001e422 l .debug_loc 0000000000000000 .LLST3 +000000000001e44d l .debug_loc 0000000000000000 .LLST4 +0000000000021f58 l .debug_str 0000000000000000 .LASF158 +000000000000a5be l .text 0000000000000000 .LVL0 +000000000000a5c6 l .text 0000000000000000 .LVL3 +000000000000a5c8 l .text 0000000000000000 .LVL4 +000000000000a5c2 l .text 0000000000000000 .LVL2 +000000000000a5ce l .text 0000000000000000 .LVL5 +000000000000a5c0 l .text 0000000000000000 .LVL1 +000000000002cd25 l .debug_info 0000000000000000 .Ldebug_info0 +000000000000a5be l .text 0000000000000000 .L0 +000000000000a5be l .text 0000000000000000 .L0 +000000000000a5be l .text 0000000000000000 .L0 +000000000000a5c2 l .text 0000000000000000 .L0 +000000000000a5c2 l .text 0000000000000000 .L0 +000000000000a5c6 l .text 0000000000000000 .L0 +000000000000a5c6 l .text 0000000000000000 .L0 +000000000000a5c8 l .text 0000000000000000 .L0 +000000000000a5c8 l .text 0000000000000000 .L0 +000000000000a5cc l .text 0000000000000000 .L0 +000000000000a5ce l .text 0000000000000000 .L0 +000000000000a5ce l .text 0000000000000000 .L0 +000000000000a5d2 l .text 0000000000000000 .L0 +0000000000003ea8 l .debug_frame 0000000000000000 .L0 +000000000000a5be l .text 0000000000000000 .L0 +000000000000a5d2 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 PROXY_get_environ_ptr.c +000000000000d449 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000022eef l .debug_str 0000000000000000 .LASF149 +0000000000022a93 l .debug_str 0000000000000000 .LASF150 +0000000000022d31 l .debug_str 0000000000000000 .LASF151 +00000000000035a0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000002083f l .debug_line 0000000000000000 .Ldebug_line0 +000000000002280b l .debug_str 0000000000000000 .LASF0 +0000000000022c44 l .debug_str 0000000000000000 .LASF1 +0000000000022c81 l .debug_str 0000000000000000 .LASF2 +00000000000229fd l .debug_str 0000000000000000 .LASF3 +0000000000022999 l .debug_str 0000000000000000 .LASF4 +0000000000022878 l .debug_str 0000000000000000 .LASF5 +00000000000229c1 l .debug_str 0000000000000000 .LASF6 +0000000000022abe l .debug_str 0000000000000000 .LASF8 +0000000000022772 l .debug_str 0000000000000000 .LASF7 +00000000000226e3 l .debug_str 0000000000000000 .LASF9 +0000000000022d51 l .debug_str 0000000000000000 .LASF10 +0000000000022b36 l .debug_str 0000000000000000 .LASF11 +0000000000022cee l .debug_str 0000000000000000 .LASF12 +0000000000022968 l .debug_str 0000000000000000 .LASF13 +0000000000022bd4 l .debug_str 0000000000000000 .LASF14 +000000000002304e l .debug_str 0000000000000000 .LASF15 +00000000000227cd l .debug_str 0000000000000000 .LASF16 +0000000000023037 l .debug_str 0000000000000000 .LASF17 +0000000000022b4f l .debug_str 0000000000000000 .LASF18 +0000000000022ebb l .debug_str 0000000000000000 .LASF19 +0000000000022def l .debug_str 0000000000000000 .LASF20 +0000000000022ddc l .debug_str 0000000000000000 .LASF21 +0000000000022ad4 l .debug_str 0000000000000000 .LASF22 +0000000000022ff3 l .debug_str 0000000000000000 .LASF23 +00000000000226f7 l .debug_str 0000000000000000 .LASF24 +0000000000022d17 l .debug_str 0000000000000000 .LASF25 +0000000000022b72 l .debug_str 0000000000000000 .LASF26 +0000000000022d07 l .debug_str 0000000000000000 .LASF27 +000000000002297d l .debug_str 0000000000000000 .LASF28 +0000000000022a39 l .debug_str 0000000000000000 .LASF29 +0000000000022bf2 l .debug_str 0000000000000000 .LASF30 +0000000000022864 l .debug_str 0000000000000000 .LASF31 +0000000000022a64 l .debug_str 0000000000000000 .LASF32 +0000000000022b04 l .debug_str 0000000000000000 .LASF33 +0000000000022712 l .debug_str 0000000000000000 .LASF34 +0000000000022ecf l .debug_str 0000000000000000 .LASF35 +0000000000022ce2 l .debug_str 0000000000000000 .LASF36 +0000000000022d86 l .debug_str 0000000000000000 .LASF37 +00000000000227bd l .debug_str 0000000000000000 .LASF38 +0000000000022cd7 l .debug_str 0000000000000000 .LASF39 +0000000000022c6d l .debug_str 0000000000000000 .LASF40 +00000000000226ad l .debug_str 0000000000000000 .LASF41 +00000000000229a6 l .debug_str 0000000000000000 .LASF42 +0000000000022c52 l .debug_str 0000000000000000 .LASF43 +00000000000228d7 l .debug_str 0000000000000000 .LASF44 +0000000000022e91 l .debug_str 0000000000000000 .LASF45 +0000000000022b27 l .debug_str 0000000000000000 .LASF46 +000000000002282f l .debug_str 0000000000000000 .LASF47 +00000000000227ad l .debug_str 0000000000000000 .LASF48 +0000000000022b5e l .debug_str 0000000000000000 .LASF49 +000000000002274f l .debug_str 0000000000000000 .LASF50 +0000000000022e1e l .debug_str 0000000000000000 .LASF51 +000000000002294c l .debug_str 0000000000000000 .LASF52 +00000000000226d2 l .debug_str 0000000000000000 .LASF53 +0000000000022b16 l .debug_str 0000000000000000 .LASF54 +0000000000022a1a l .debug_str 0000000000000000 .LASF55 +0000000000022f9f l .debug_str 0000000000000000 .LASF56 +00000000000229dd l .debug_str 0000000000000000 .LASF57 +0000000000022ac6 l .debug_str 0000000000000000 .LASF58 +00000000000228fa l .debug_str 0000000000000000 .LASF59 +0000000000022a78 l .debug_str 0000000000000000 .LASF60 +0000000000022840 l .debug_str 0000000000000000 .LASF61 +0000000000022fe9 l .debug_str 0000000000000000 .LASF62 +0000000000022802 l .debug_str 0000000000000000 .LASF63 +000000000002295e l .debug_str 0000000000000000 .LASF64 +00000000000227a3 l .debug_str 0000000000000000 .LASF65 +0000000000022b99 l .debug_str 0000000000000000 .LASF66 +00000000000226a4 l .debug_str 0000000000000000 .LASF67 +0000000000022767 l .debug_str 0000000000000000 .LASF68 +0000000000022721 l .debug_str 0000000000000000 .LASF69 +0000000000022a87 l .debug_str 0000000000000000 .LASF70 +0000000000022881 l .debug_str 0000000000000000 .LASF71 +0000000000022bea l .debug_str 0000000000000000 .LASF72 +0000000000022c8b l .debug_str 0000000000000000 .LASF73 +00000000000229d3 l .debug_str 0000000000000000 .LASF74 +0000000000022fdb l .debug_str 0000000000000000 .LASF75 +00000000000227f8 l .debug_str 0000000000000000 .LASF76 +0000000000022912 l .debug_str 0000000000000000 .LASF77 +0000000000022e88 l .debug_str 0000000000000000 .LASF78 +0000000000022bdf l .debug_str 0000000000000000 .LASF79 +0000000000023015 l .debug_str 0000000000000000 .LASF80 +0000000000022e14 l .debug_str 0000000000000000 .LASF81 +00000000000226ed l .debug_str 0000000000000000 .LASF82 +0000000000022ab3 l .debug_str 0000000000000000 .LASF83 +0000000000022c61 l .debug_str 0000000000000000 .LASF84 +0000000000022e30 l .debug_str 0000000000000000 .LASF85 +0000000000022c94 l .debug_str 0000000000000000 .LASF86 +0000000000022973 l .debug_str 0000000000000000 .LASF87 +0000000000022a5a l .debug_str 0000000000000000 .LASF88 +0000000000022fd0 l .debug_str 0000000000000000 .LASF89 +0000000000022bc9 l .debug_str 0000000000000000 .LASF90 +0000000000022825 l .debug_str 0000000000000000 .LASF91 +0000000000022c15 l .debug_str 0000000000000000 .LASF92 +0000000000022932 l .debug_str 0000000000000000 .LASF93 +000000000002298d l .debug_str 0000000000000000 .LASF94 +0000000000022fc3 l .debug_str 0000000000000000 .LASF95 +0000000000022cfa l .debug_str 0000000000000000 .LASF96 +0000000000022e09 l .debug_str 0000000000000000 .LASF97 +0000000000022a2f l .debug_str 0000000000000000 .LASF98 +0000000000022908 l .debug_str 0000000000000000 .LASF99 +0000000000022a10 l .debug_str 0000000000000000 .LASF100 +0000000000022dd0 l .debug_str 0000000000000000 .LASF101 +0000000000023058 l .debug_str 0000000000000000 .LASF102 +0000000000022bb0 l .debug_str 0000000000000000 .LASF103 +00000000000228e7 l .debug_str 0000000000000000 .LASF104 +0000000000022b7e l .debug_str 0000000000000000 .LASF105 +00000000000227e0 l .debug_str 0000000000000000 .LASF106 +0000000000022e72 l .debug_str 0000000000000000 .LASF107 +00000000000228b6 l .debug_str 0000000000000000 .LASF108 +000000000002273c l .debug_str 0000000000000000 .LASF109 +0000000000022c30 l .debug_str 0000000000000000 .LASF110 +0000000000022c9d l .debug_str 0000000000000000 .LASF111 +0000000000023004 l .debug_str 0000000000000000 .LASF112 +0000000000022789 l .debug_str 0000000000000000 .LASF113 +0000000000022db9 l .debug_str 0000000000000000 .LASF114 +0000000000022d6a l .debug_str 0000000000000000 .LASF115 +00000000000226b8 l .debug_str 0000000000000000 .LASF116 +0000000000022aeb l .debug_str 0000000000000000 .LASF117 +0000000000022e9e l .debug_str 0000000000000000 .LASF118 +000000000002284a l .debug_str 0000000000000000 .LASF119 +000000000002288e l .debug_str 0000000000000000 .LASF120 +0000000000022e3d l .debug_str 0000000000000000 .LASF121 +0000000000022edb l .debug_str 0000000000000000 .LASF122 +00000000000229b4 l .debug_str 0000000000000000 .LASF123 +00000000000228a7 l .debug_str 0000000000000000 .LASF124 +0000000000022e64 l .debug_str 0000000000000000 .LASF125 +0000000000022e58 l .debug_str 0000000000000000 .LASF126 +000000000002293d l .debug_str 0000000000000000 .LASF127 +0000000000022ba4 l .debug_str 0000000000000000 .LASF128 +0000000000022cc8 l .debug_str 0000000000000000 .LASF129 +0000000000022c01 l .debug_str 0000000000000000 .LASF130 +000000000002272b l .debug_str 0000000000000000 .LASF131 +00000000000229ef l .debug_str 0000000000000000 .LASF132 +0000000000022d56 l .debug_str 0000000000000000 .LASF133 +0000000000022dac l .debug_str 0000000000000000 .LASF134 +000000000002301e l .debug_str 0000000000000000 .LASF135 +0000000000022707 l .debug_str 0000000000000000 .LASF136 +0000000000022c76 l .debug_str 0000000000000000 .LASF137 +000000000002291b l .debug_str 0000000000000000 .LASF138 +0000000000023029 l .debug_str 0000000000000000 .LASF139 +0000000000022817 l .debug_str 0000000000000000 .LASF140 +0000000000022fb1 l .debug_str 0000000000000000 .LASF141 +0000000000022759 l .debug_str 0000000000000000 .LASF142 +0000000000022b40 l .debug_str 0000000000000000 .LASF143 +0000000000022d92 l .debug_str 0000000000000000 .LASF144 +0000000000022d9b l .debug_str 0000000000000000 .LASF145 +0000000000022cb7 l .debug_str 0000000000000000 .LASF146 +00000000000228cc l .debug_str 0000000000000000 .LASF147 +0000000000022a4b l .debug_str 0000000000000000 .LASF148 +0000000000022c20 l .debug_str 0000000000000000 .LASF152 +000000000000a5d2 l .text 0000000000000000 .LFB7 +000000000000a5de l .text 0000000000000000 .LFE7 +000000000000a5d2 l .text 0000000000000000 .LBB4 +000000000000a5dc l .text 0000000000000000 .LBE4 +000000000001e478 l .debug_loc 0000000000000000 .LLST0 +0000000000022928 l .debug_str 0000000000000000 .LASF153 +000000000000a5d2 l .text 0000000000000000 .LVL0 +000000000000a5dc l .text 0000000000000000 .LVL1 +000000000002d1fc l .debug_info 0000000000000000 .Ldebug_info0 +000000000000a5d2 l .text 0000000000000000 .L0 +000000000000a5d2 l .text 0000000000000000 .L0 +000000000000a5d2 l .text 0000000000000000 .L0 +000000000000a5d2 l .text 0000000000000000 .L0 +000000000000a5d6 l .text 0000000000000000 .L0 +000000000000a5da l .text 0000000000000000 .L0 +000000000000a5dc l .text 0000000000000000 .L0 +000000000000a5dc l .text 0000000000000000 .L0 +000000000000a5de l .text 0000000000000000 .L0 +0000000000003ed0 l .debug_frame 0000000000000000 .L0 +000000000000a5d2 l .text 0000000000000000 .L0 +000000000000a5de l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 PROXY_getenv.c +000000000000d519 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +00000000000238a2 l .debug_str 0000000000000000 .LASF150 +00000000000233bc l .debug_str 0000000000000000 .LASF151 +00000000000236d9 l .debug_str 0000000000000000 .LASF152 +00000000000035c0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000020976 l .debug_line 0000000000000000 .Ldebug_line0 +00000000000231ca l .debug_str 0000000000000000 .LASF0 +00000000000235ec l .debug_str 0000000000000000 .LASF1 +0000000000023629 l .debug_str 0000000000000000 .LASF2 +00000000000237de l .debug_str 0000000000000000 .LASF3 +0000000000023358 l .debug_str 0000000000000000 .LASF4 +0000000000023237 l .debug_str 0000000000000000 .LASF5 +0000000000023380 l .debug_str 0000000000000000 .LASF6 +000000000002346f l .debug_str 0000000000000000 .LASF8 +0000000000023131 l .debug_str 0000000000000000 .LASF7 +00000000000230a2 l .debug_str 0000000000000000 .LASF9 +00000000000236ff l .debug_str 0000000000000000 .LASF10 +00000000000234ee l .debug_str 0000000000000000 .LASF11 +0000000000023696 l .debug_str 0000000000000000 .LASF12 +0000000000023327 l .debug_str 0000000000000000 .LASF13 +000000000002358c l .debug_str 0000000000000000 .LASF14 +0000000000023a01 l .debug_str 0000000000000000 .LASF15 +000000000002318c l .debug_str 0000000000000000 .LASF16 +00000000000239ea l .debug_str 0000000000000000 .LASF17 +0000000000023507 l .debug_str 0000000000000000 .LASF18 +000000000002386e l .debug_str 0000000000000000 .LASF19 +000000000002379d l .debug_str 0000000000000000 .LASF20 +000000000002378a l .debug_str 0000000000000000 .LASF21 +0000000000023485 l .debug_str 0000000000000000 .LASF22 +00000000000239a6 l .debug_str 0000000000000000 .LASF23 +00000000000230b6 l .debug_str 0000000000000000 .LASF24 +00000000000236bf l .debug_str 0000000000000000 .LASF25 +000000000002352a l .debug_str 0000000000000000 .LASF26 +00000000000236af l .debug_str 0000000000000000 .LASF27 +000000000002333c l .debug_str 0000000000000000 .LASF28 +00000000000233fc l .debug_str 0000000000000000 .LASF29 +00000000000235aa l .debug_str 0000000000000000 .LASF30 +0000000000023223 l .debug_str 0000000000000000 .LASF31 +0000000000023427 l .debug_str 0000000000000000 .LASF32 +00000000000234b5 l .debug_str 0000000000000000 .LASF33 +00000000000230d1 l .debug_str 0000000000000000 .LASF34 +0000000000023882 l .debug_str 0000000000000000 .LASF35 +000000000002368a l .debug_str 0000000000000000 .LASF36 +0000000000023734 l .debug_str 0000000000000000 .LASF37 +000000000002317c l .debug_str 0000000000000000 .LASF38 +000000000002367f l .debug_str 0000000000000000 .LASF39 +0000000000023615 l .debug_str 0000000000000000 .LASF40 +000000000002306c l .debug_str 0000000000000000 .LASF41 +0000000000023365 l .debug_str 0000000000000000 .LASF42 +00000000000235fa l .debug_str 0000000000000000 .LASF43 +0000000000023296 l .debug_str 0000000000000000 .LASF44 +0000000000023844 l .debug_str 0000000000000000 .LASF45 +00000000000234df l .debug_str 0000000000000000 .LASF46 +00000000000231ee l .debug_str 0000000000000000 .LASF47 +000000000002316c l .debug_str 0000000000000000 .LASF48 +0000000000023516 l .debug_str 0000000000000000 .LASF49 +000000000002310e l .debug_str 0000000000000000 .LASF50 +00000000000237cc l .debug_str 0000000000000000 .LASF51 +000000000002330b l .debug_str 0000000000000000 .LASF52 +0000000000023091 l .debug_str 0000000000000000 .LASF53 +00000000000234ce l .debug_str 0000000000000000 .LASF54 +00000000000233dd l .debug_str 0000000000000000 .LASF55 +0000000000023952 l .debug_str 0000000000000000 .LASF56 +000000000002339c l .debug_str 0000000000000000 .LASF57 +0000000000023477 l .debug_str 0000000000000000 .LASF58 +00000000000232b9 l .debug_str 0000000000000000 .LASF59 +000000000002343b l .debug_str 0000000000000000 .LASF60 +00000000000231ff l .debug_str 0000000000000000 .LASF61 +000000000002399c l .debug_str 0000000000000000 .LASF62 +00000000000231c1 l .debug_str 0000000000000000 .LASF63 +000000000002331d l .debug_str 0000000000000000 .LASF64 +0000000000023162 l .debug_str 0000000000000000 .LASF65 +0000000000023551 l .debug_str 0000000000000000 .LASF66 +0000000000023063 l .debug_str 0000000000000000 .LASF67 +0000000000023126 l .debug_str 0000000000000000 .LASF68 +00000000000230e0 l .debug_str 0000000000000000 .LASF69 +000000000002344a l .debug_str 0000000000000000 .LASF70 +0000000000023240 l .debug_str 0000000000000000 .LASF71 +00000000000235a2 l .debug_str 0000000000000000 .LASF72 +0000000000023633 l .debug_str 0000000000000000 .LASF73 +0000000000023392 l .debug_str 0000000000000000 .LASF74 +000000000002398e l .debug_str 0000000000000000 .LASF75 +00000000000231b7 l .debug_str 0000000000000000 .LASF76 +00000000000232d1 l .debug_str 0000000000000000 .LASF77 +000000000002383b l .debug_str 0000000000000000 .LASF78 +0000000000023597 l .debug_str 0000000000000000 .LASF79 +00000000000239c8 l .debug_str 0000000000000000 .LASF80 +00000000000237c2 l .debug_str 0000000000000000 .LASF81 +00000000000230ac l .debug_str 0000000000000000 .LASF82 +0000000000023464 l .debug_str 0000000000000000 .LASF83 +0000000000023609 l .debug_str 0000000000000000 .LASF84 +00000000000237f1 l .debug_str 0000000000000000 .LASF85 +000000000002363c l .debug_str 0000000000000000 .LASF86 +0000000000023332 l .debug_str 0000000000000000 .LASF87 +000000000002341d l .debug_str 0000000000000000 .LASF88 +0000000000023983 l .debug_str 0000000000000000 .LASF89 +0000000000023581 l .debug_str 0000000000000000 .LASF90 +00000000000231e4 l .debug_str 0000000000000000 .LASF91 +00000000000235cd l .debug_str 0000000000000000 .LASF92 +00000000000232f1 l .debug_str 0000000000000000 .LASF93 +000000000002334c l .debug_str 0000000000000000 .LASF94 +0000000000023976 l .debug_str 0000000000000000 .LASF95 +00000000000236a2 l .debug_str 0000000000000000 .LASF96 +00000000000237b7 l .debug_str 0000000000000000 .LASF97 +00000000000233f2 l .debug_str 0000000000000000 .LASF98 +00000000000232c7 l .debug_str 0000000000000000 .LASF99 +00000000000233d3 l .debug_str 0000000000000000 .LASF100 +000000000002377e l .debug_str 0000000000000000 .LASF101 +0000000000023a0b l .debug_str 0000000000000000 .LASF102 +0000000000023568 l .debug_str 0000000000000000 .LASF103 +00000000000232a6 l .debug_str 0000000000000000 .LASF104 +0000000000023536 l .debug_str 0000000000000000 .LASF105 +000000000002319f l .debug_str 0000000000000000 .LASF106 +0000000000023825 l .debug_str 0000000000000000 .LASF107 +0000000000023275 l .debug_str 0000000000000000 .LASF108 +00000000000230fb l .debug_str 0000000000000000 .LASF109 +00000000000235d8 l .debug_str 0000000000000000 .LASF110 +0000000000023645 l .debug_str 0000000000000000 .LASF111 +00000000000239b7 l .debug_str 0000000000000000 .LASF112 +0000000000023148 l .debug_str 0000000000000000 .LASF113 +0000000000023767 l .debug_str 0000000000000000 .LASF114 +0000000000023718 l .debug_str 0000000000000000 .LASF115 +0000000000023077 l .debug_str 0000000000000000 .LASF116 +000000000002349c l .debug_str 0000000000000000 .LASF117 +0000000000023851 l .debug_str 0000000000000000 .LASF118 +0000000000023209 l .debug_str 0000000000000000 .LASF119 +000000000002324d l .debug_str 0000000000000000 .LASF120 +00000000000237fe l .debug_str 0000000000000000 .LASF121 +000000000002388e l .debug_str 0000000000000000 .LASF122 +0000000000023373 l .debug_str 0000000000000000 .LASF123 +0000000000023266 l .debug_str 0000000000000000 .LASF124 +0000000000023456 l .debug_str 0000000000000000 .LASF125 +0000000000023819 l .debug_str 0000000000000000 .LASF126 +00000000000232fc l .debug_str 0000000000000000 .LASF127 +000000000002355c l .debug_str 0000000000000000 .LASF128 +0000000000023670 l .debug_str 0000000000000000 .LASF129 +00000000000235b9 l .debug_str 0000000000000000 .LASF130 +00000000000230ea l .debug_str 0000000000000000 .LASF131 +00000000000233ae l .debug_str 0000000000000000 .LASF132 +0000000000023704 l .debug_str 0000000000000000 .LASF133 +000000000002375a l .debug_str 0000000000000000 .LASF134 +00000000000239d1 l .debug_str 0000000000000000 .LASF135 +00000000000230c6 l .debug_str 0000000000000000 .LASF136 +000000000002361e l .debug_str 0000000000000000 .LASF137 +00000000000232da l .debug_str 0000000000000000 .LASF138 +00000000000239dc l .debug_str 0000000000000000 .LASF139 +00000000000231d6 l .debug_str 0000000000000000 .LASF140 +0000000000023964 l .debug_str 0000000000000000 .LASF141 +0000000000023118 l .debug_str 0000000000000000 .LASF142 +00000000000234f8 l .debug_str 0000000000000000 .LASF143 +0000000000023740 l .debug_str 0000000000000000 .LASF144 +0000000000023749 l .debug_str 0000000000000000 .LASF145 +000000000002365f l .debug_str 0000000000000000 .LASF146 +000000000002328b l .debug_str 0000000000000000 .LASF147 +000000000002340e l .debug_str 0000000000000000 .LASF148 +00000000000234c7 l .debug_str 0000000000000000 .LASF153 +000000000000a5de l .text 0000000000000000 .LFB7 +000000000000a5ec l .text 0000000000000000 .LFE7 +00000000000236f9 l .debug_str 0000000000000000 .LASF149 +000000000001e49d l .debug_loc 0000000000000000 .LLST0 +000000000000a5e0 l .text 0000000000000000 .LBB4 +000000000000a5ea l .text 0000000000000000 .LBE4 +000000000001e4d3 l .debug_loc 0000000000000000 .LLST1 +000000000001e4f8 l .debug_loc 0000000000000000 .LLST2 +00000000000232e7 l .debug_str 0000000000000000 .LASF154 +000000000000a5de l .text 0000000000000000 .LVL0 +000000000000a5e4 l .text 0000000000000000 .LVL2 +000000000000a5e0 l .text 0000000000000000 .LVL1 +000000000000a5ea l .text 0000000000000000 .LVL3 +000000000002d64c l .debug_info 0000000000000000 .Ldebug_info0 +000000000000a5de l .text 0000000000000000 .L0 +000000000000a5de l .text 0000000000000000 .L0 +000000000000a5de l .text 0000000000000000 .L0 +000000000000a5e0 l .text 0000000000000000 .L0 +000000000000a5e0 l .text 0000000000000000 .L0 +000000000000a5e4 l .text 0000000000000000 .L0 +000000000000a5e4 l .text 0000000000000000 .L0 +000000000000a5e8 l .text 0000000000000000 .L0 +000000000000a5ea l .text 0000000000000000 .L0 +000000000000a5ea l .text 0000000000000000 .L0 +000000000000a5ec l .text 0000000000000000 .L0 +0000000000003ef8 l .debug_frame 0000000000000000 .L0 +000000000000a5de l .text 0000000000000000 .L0 +000000000000a5ec l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 PROXY_gethostname.c +000000000000d610 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000024250 l .debug_str 0000000000000000 .LASF152 +000000000002437f l .debug_str 0000000000000000 .LASF153 +0000000000024083 l .debug_str 0000000000000000 .LASF154 +00000000000035e0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000020ab6 l .debug_line 0000000000000000 .Ldebug_line0 +0000000000023b73 l .debug_str 0000000000000000 .LASF0 +0000000000023f96 l .debug_str 0000000000000000 .LASF1 +0000000000023fd3 l .debug_str 0000000000000000 .LASF2 +0000000000023d65 l .debug_str 0000000000000000 .LASF3 +0000000000023d01 l .debug_str 0000000000000000 .LASF4 +0000000000023be0 l .debug_str 0000000000000000 .LASF5 +0000000000023d29 l .debug_str 0000000000000000 .LASF6 +0000000000023e14 l .debug_str 0000000000000000 .LASF8 +0000000000023ada l .debug_str 0000000000000000 .LASF7 +0000000000023a4b l .debug_str 0000000000000000 .LASF9 +0000000000023a44 l .debug_str 0000000000000000 .LASF10 +00000000000240af l .debug_str 0000000000000000 .LASF11 +0000000000023e98 l .debug_str 0000000000000000 .LASF12 +0000000000024040 l .debug_str 0000000000000000 .LASF13 +0000000000023cd0 l .debug_str 0000000000000000 .LASF14 +0000000000023f36 l .debug_str 0000000000000000 .LASF15 +00000000000243cb l .debug_str 0000000000000000 .LASF16 +0000000000023b35 l .debug_str 0000000000000000 .LASF17 +00000000000243b4 l .debug_str 0000000000000000 .LASF18 +0000000000023eb1 l .debug_str 0000000000000000 .LASF19 +000000000002421c l .debug_str 0000000000000000 .LASF20 +000000000002414d l .debug_str 0000000000000000 .LASF21 +000000000002413a l .debug_str 0000000000000000 .LASF22 +0000000000023e2a l .debug_str 0000000000000000 .LASF23 +0000000000024354 l .debug_str 0000000000000000 .LASF24 +0000000000023a5f l .debug_str 0000000000000000 .LASF25 +0000000000024069 l .debug_str 0000000000000000 .LASF26 +0000000000023ed4 l .debug_str 0000000000000000 .LASF27 +0000000000024059 l .debug_str 0000000000000000 .LASF28 +0000000000023ce5 l .debug_str 0000000000000000 .LASF29 +0000000000023da1 l .debug_str 0000000000000000 .LASF30 +0000000000023f54 l .debug_str 0000000000000000 .LASF31 +0000000000023bcc l .debug_str 0000000000000000 .LASF32 +0000000000023dcc l .debug_str 0000000000000000 .LASF33 +0000000000023e5a l .debug_str 0000000000000000 .LASF34 +0000000000023a7a l .debug_str 0000000000000000 .LASF35 +0000000000024230 l .debug_str 0000000000000000 .LASF36 +0000000000024034 l .debug_str 0000000000000000 .LASF37 +00000000000240e4 l .debug_str 0000000000000000 .LASF38 +0000000000023b25 l .debug_str 0000000000000000 .LASF39 +0000000000024029 l .debug_str 0000000000000000 .LASF40 +0000000000023fbf l .debug_str 0000000000000000 .LASF41 +0000000000023a1f l .debug_str 0000000000000000 .LASF42 +0000000000023d0e l .debug_str 0000000000000000 .LASF43 +0000000000023fa4 l .debug_str 0000000000000000 .LASF44 +0000000000023c3f l .debug_str 0000000000000000 .LASF45 +00000000000241f2 l .debug_str 0000000000000000 .LASF46 +0000000000023e7d l .debug_str 0000000000000000 .LASF47 +0000000000023b97 l .debug_str 0000000000000000 .LASF48 +0000000000023b15 l .debug_str 0000000000000000 .LASF49 +0000000000023ec0 l .debug_str 0000000000000000 .LASF50 +0000000000023ab7 l .debug_str 0000000000000000 .LASF51 +000000000002417c l .debug_str 0000000000000000 .LASF52 +0000000000023cb4 l .debug_str 0000000000000000 .LASF53 +00000000000241c2 l .debug_str 0000000000000000 .LASF54 +0000000000023e6c l .debug_str 0000000000000000 .LASF55 +0000000000023d82 l .debug_str 0000000000000000 .LASF56 +0000000000024300 l .debug_str 0000000000000000 .LASF57 +0000000000023d45 l .debug_str 0000000000000000 .LASF58 +0000000000023e1c l .debug_str 0000000000000000 .LASF59 +0000000000023c62 l .debug_str 0000000000000000 .LASF60 +0000000000023de0 l .debug_str 0000000000000000 .LASF61 +0000000000023ba8 l .debug_str 0000000000000000 .LASF62 +000000000002434a l .debug_str 0000000000000000 .LASF63 +0000000000023b6a l .debug_str 0000000000000000 .LASF64 +0000000000023cc6 l .debug_str 0000000000000000 .LASF65 +0000000000023b0b l .debug_str 0000000000000000 .LASF66 +0000000000023efb l .debug_str 0000000000000000 .LASF67 +0000000000023a16 l .debug_str 0000000000000000 .LASF68 +0000000000023acf l .debug_str 0000000000000000 .LASF69 +0000000000023a89 l .debug_str 0000000000000000 .LASF70 +0000000000023def l .debug_str 0000000000000000 .LASF71 +0000000000023be9 l .debug_str 0000000000000000 .LASF72 +0000000000023f4c l .debug_str 0000000000000000 .LASF73 +0000000000023fdd l .debug_str 0000000000000000 .LASF74 +0000000000023d3b l .debug_str 0000000000000000 .LASF75 +000000000002433c l .debug_str 0000000000000000 .LASF76 +0000000000023b60 l .debug_str 0000000000000000 .LASF77 +0000000000023c7a l .debug_str 0000000000000000 .LASF78 +00000000000241e9 l .debug_str 0000000000000000 .LASF79 +0000000000023f41 l .debug_str 0000000000000000 .LASF80 +0000000000024376 l .debug_str 0000000000000000 .LASF81 +0000000000024172 l .debug_str 0000000000000000 .LASF82 +0000000000023a55 l .debug_str 0000000000000000 .LASF83 +0000000000023e09 l .debug_str 0000000000000000 .LASF84 +0000000000023fb3 l .debug_str 0000000000000000 .LASF85 +000000000002418e l .debug_str 0000000000000000 .LASF86 +0000000000023fe6 l .debug_str 0000000000000000 .LASF87 +0000000000023cdb l .debug_str 0000000000000000 .LASF88 +0000000000023dc2 l .debug_str 0000000000000000 .LASF89 +0000000000024331 l .debug_str 0000000000000000 .LASF90 +0000000000023f2b l .debug_str 0000000000000000 .LASF91 +0000000000023b8d l .debug_str 0000000000000000 .LASF92 +0000000000023f77 l .debug_str 0000000000000000 .LASF93 +0000000000023c9a l .debug_str 0000000000000000 .LASF94 +0000000000023cf5 l .debug_str 0000000000000000 .LASF95 +0000000000024324 l .debug_str 0000000000000000 .LASF96 +000000000002404c l .debug_str 0000000000000000 .LASF97 +0000000000024167 l .debug_str 0000000000000000 .LASF98 +0000000000023d97 l .debug_str 0000000000000000 .LASF99 +0000000000023c70 l .debug_str 0000000000000000 .LASF100 +0000000000023d78 l .debug_str 0000000000000000 .LASF101 +000000000002412e l .debug_str 0000000000000000 .LASF102 +00000000000243d5 l .debug_str 0000000000000000 .LASF103 +0000000000023f12 l .debug_str 0000000000000000 .LASF104 +0000000000023c4f l .debug_str 0000000000000000 .LASF105 +0000000000023ee0 l .debug_str 0000000000000000 .LASF106 +0000000000023b48 l .debug_str 0000000000000000 .LASF107 +00000000000241d3 l .debug_str 0000000000000000 .LASF108 +0000000000023c1e l .debug_str 0000000000000000 .LASF109 +0000000000023aa4 l .debug_str 0000000000000000 .LASF110 +0000000000023f82 l .debug_str 0000000000000000 .LASF111 +0000000000023fef l .debug_str 0000000000000000 .LASF112 +0000000000024365 l .debug_str 0000000000000000 .LASF113 +0000000000023af1 l .debug_str 0000000000000000 .LASF114 +0000000000024117 l .debug_str 0000000000000000 .LASF115 +00000000000240c8 l .debug_str 0000000000000000 .LASF116 +0000000000023a2a l .debug_str 0000000000000000 .LASF117 +0000000000023e41 l .debug_str 0000000000000000 .LASF118 +00000000000241ff l .debug_str 0000000000000000 .LASF119 +0000000000023bb2 l .debug_str 0000000000000000 .LASF120 +0000000000023bf6 l .debug_str 0000000000000000 .LASF121 +000000000002419b l .debug_str 0000000000000000 .LASF122 +000000000002423c l .debug_str 0000000000000000 .LASF123 +0000000000023d1c l .debug_str 0000000000000000 .LASF124 +0000000000023c0f l .debug_str 0000000000000000 .LASF125 +0000000000023dfb l .debug_str 0000000000000000 .LASF126 +00000000000241b6 l .debug_str 0000000000000000 .LASF127 +0000000000023ca5 l .debug_str 0000000000000000 .LASF128 +0000000000023f06 l .debug_str 0000000000000000 .LASF129 +000000000002401a l .debug_str 0000000000000000 .LASF130 +0000000000023f63 l .debug_str 0000000000000000 .LASF131 +0000000000023a93 l .debug_str 0000000000000000 .LASF132 +0000000000023d57 l .debug_str 0000000000000000 .LASF133 +00000000000240b4 l .debug_str 0000000000000000 .LASF134 +000000000002410a l .debug_str 0000000000000000 .LASF135 +000000000002439b l .debug_str 0000000000000000 .LASF136 +0000000000023a6f l .debug_str 0000000000000000 .LASF137 +0000000000023fc8 l .debug_str 0000000000000000 .LASF138 +0000000000023c83 l .debug_str 0000000000000000 .LASF139 +00000000000243a6 l .debug_str 0000000000000000 .LASF140 +0000000000023b7f l .debug_str 0000000000000000 .LASF141 +0000000000024312 l .debug_str 0000000000000000 .LASF142 +0000000000023ac1 l .debug_str 0000000000000000 .LASF143 +0000000000023ea2 l .debug_str 0000000000000000 .LASF144 +00000000000240f0 l .debug_str 0000000000000000 .LASF145 +00000000000240f9 l .debug_str 0000000000000000 .LASF146 +0000000000024009 l .debug_str 0000000000000000 .LASF147 +0000000000023c34 l .debug_str 0000000000000000 .LASF148 +0000000000023db3 l .debug_str 0000000000000000 .LASF149 +0000000000023e8c l .debug_str 0000000000000000 .LASF155 +000000000000a5ec l .text 0000000000000000 .LFB7 +000000000000a5fe l .text 0000000000000000 .LFE7 +00000000000240a3 l .debug_str 0000000000000000 .LASF150 +000000000001e52e l .debug_loc 0000000000000000 .LLST0 +00000000000240a9 l .debug_str 0000000000000000 .LASF151 +000000000001e564 l .debug_loc 0000000000000000 .LLST1 +000000000000a5f0 l .text 0000000000000000 .LBB4 +000000000000a5fa l .text 0000000000000000 .LBE4 +000000000001e59a l .debug_loc 0000000000000000 .LLST2 +000000000001e5be l .debug_loc 0000000000000000 .LLST3 +000000000001e5f4 l .debug_loc 0000000000000000 .LLST4 +0000000000023c90 l .debug_str 0000000000000000 .LASF156 +000000000000a5ec l .text 0000000000000000 .LVL0 +000000000000a5f2 l .text 0000000000000000 .LVL3 +000000000000a5f4 l .text 0000000000000000 .LVL4 +000000000000a5f0 l .text 0000000000000000 .LVL2 +000000000000a5fa l .text 0000000000000000 .LVL5 +000000000000a5ee l .text 0000000000000000 .LVL1 +000000000002dad8 l .debug_info 0000000000000000 .Ldebug_info0 +000000000000a5ec l .text 0000000000000000 .L0 +000000000000a5ec l .text 0000000000000000 .L0 +000000000000a5ec l .text 0000000000000000 .L0 +000000000000a5f0 l .text 0000000000000000 .L0 +000000000000a5f0 l .text 0000000000000000 .L0 +000000000000a5f2 l .text 0000000000000000 .L0 +000000000000a5f2 l .text 0000000000000000 .L0 +000000000000a5f4 l .text 0000000000000000 .L0 +000000000000a5f4 l .text 0000000000000000 .L0 +000000000000a5f8 l .text 0000000000000000 .L0 +000000000000a5fa l .text 0000000000000000 .L0 +000000000000a5fa l .text 0000000000000000 .L0 +000000000000a5fe l .text 0000000000000000 .L0 +0000000000003f20 l .debug_frame 0000000000000000 .L0 +000000000000a5ec l .text 0000000000000000 .L0 +000000000000a5fe l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 PROXY_ioctl.c +000000000000d700 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000024c52 l .debug_str 0000000000000000 .LASF154 +00000000000245ea l .debug_str 0000000000000000 .LASF155 +0000000000024a90 l .debug_str 0000000000000000 .LASF156 +0000000000003600 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000020c16 l .debug_line 0000000000000000 .Ldebug_line0 +00000000000248af l .debug_str 0000000000000000 .LASF0 +00000000000245d8 l .debug_str 0000000000000000 .LASF157 +000000000002446d l .debug_str 0000000000000000 .LASF1 +0000000000024555 l .debug_str 0000000000000000 .LASF2 +00000000000249a3 l .debug_str 0000000000000000 .LASF3 +00000000000249e0 l .debug_str 0000000000000000 .LASF4 +000000000002476f l .debug_str 0000000000000000 .LASF5 +000000000002470b l .debug_str 0000000000000000 .LASF6 +00000000000245c2 l .debug_str 0000000000000000 .LASF7 +0000000000024733 l .debug_str 0000000000000000 .LASF8 +000000000002481e l .debug_str 0000000000000000 .LASF9 +00000000000244bc l .debug_str 0000000000000000 .LASF10 +0000000000024425 l .debug_str 0000000000000000 .LASF11 +0000000000024abc l .debug_str 0000000000000000 .LASF12 +0000000000024896 l .debug_str 0000000000000000 .LASF13 +0000000000024a4d l .debug_str 0000000000000000 .LASF14 +00000000000246da l .debug_str 0000000000000000 .LASF15 +0000000000024943 l .debug_str 0000000000000000 .LASF16 +0000000000024db1 l .debug_str 0000000000000000 .LASF17 +0000000000024517 l .debug_str 0000000000000000 .LASF18 +0000000000024d9a l .debug_str 0000000000000000 .LASF19 +00000000000248be l .debug_str 0000000000000000 .LASF20 +0000000000024c1e l .debug_str 0000000000000000 .LASF21 +0000000000024b60 l .debug_str 0000000000000000 .LASF22 +0000000000024b47 l .debug_str 0000000000000000 .LASF23 +0000000000024834 l .debug_str 0000000000000000 .LASF24 +0000000000024d56 l .debug_str 0000000000000000 .LASF25 +0000000000024439 l .debug_str 0000000000000000 .LASF26 +0000000000024a76 l .debug_str 0000000000000000 .LASF27 +00000000000248e1 l .debug_str 0000000000000000 .LASF28 +0000000000024a66 l .debug_str 0000000000000000 .LASF29 +00000000000246ef l .debug_str 0000000000000000 .LASF30 +00000000000247ab l .debug_str 0000000000000000 .LASF31 +0000000000024961 l .debug_str 0000000000000000 .LASF32 +00000000000245ae l .debug_str 0000000000000000 .LASF33 +00000000000247d6 l .debug_str 0000000000000000 .LASF34 +0000000000024864 l .debug_str 0000000000000000 .LASF35 +0000000000024454 l .debug_str 0000000000000000 .LASF36 +0000000000024c32 l .debug_str 0000000000000000 .LASF37 +0000000000024a41 l .debug_str 0000000000000000 .LASF38 +0000000000024af1 l .debug_str 0000000000000000 .LASF39 +0000000000024507 l .debug_str 0000000000000000 .LASF40 +0000000000024a36 l .debug_str 0000000000000000 .LASF41 +00000000000249cc l .debug_str 0000000000000000 .LASF42 +00000000000243ef l .debug_str 0000000000000000 .LASF43 +0000000000024718 l .debug_str 0000000000000000 .LASF44 +00000000000249b1 l .debug_str 0000000000000000 .LASF45 +0000000000024649 l .debug_str 0000000000000000 .LASF46 +0000000000024bf4 l .debug_str 0000000000000000 .LASF47 +0000000000024887 l .debug_str 0000000000000000 .LASF48 +0000000000024579 l .debug_str 0000000000000000 .LASF49 +00000000000244f7 l .debug_str 0000000000000000 .LASF50 +00000000000248cd l .debug_str 0000000000000000 .LASF51 +0000000000024499 l .debug_str 0000000000000000 .LASF52 +0000000000024b8f l .debug_str 0000000000000000 .LASF53 +00000000000246be l .debug_str 0000000000000000 .LASF54 +0000000000024414 l .debug_str 0000000000000000 .LASF55 +0000000000024876 l .debug_str 0000000000000000 .LASF56 +000000000002478c l .debug_str 0000000000000000 .LASF57 +0000000000024d02 l .debug_str 0000000000000000 .LASF58 +000000000002474f l .debug_str 0000000000000000 .LASF59 +0000000000024826 l .debug_str 0000000000000000 .LASF60 +000000000002466c l .debug_str 0000000000000000 .LASF61 +00000000000247ea l .debug_str 0000000000000000 .LASF62 +000000000002458a l .debug_str 0000000000000000 .LASF63 +0000000000024d4c l .debug_str 0000000000000000 .LASF64 +000000000002454c l .debug_str 0000000000000000 .LASF65 +00000000000246d0 l .debug_str 0000000000000000 .LASF66 +00000000000244ed l .debug_str 0000000000000000 .LASF67 +0000000000024908 l .debug_str 0000000000000000 .LASF68 +00000000000243e6 l .debug_str 0000000000000000 .LASF69 +00000000000244b1 l .debug_str 0000000000000000 .LASF70 +0000000000024463 l .debug_str 0000000000000000 .LASF71 +00000000000247f9 l .debug_str 0000000000000000 .LASF72 +00000000000245cb l .debug_str 0000000000000000 .LASF73 +0000000000024959 l .debug_str 0000000000000000 .LASF74 +00000000000249ea l .debug_str 0000000000000000 .LASF75 +0000000000024745 l .debug_str 0000000000000000 .LASF76 +0000000000024d3e l .debug_str 0000000000000000 .LASF77 +0000000000024542 l .debug_str 0000000000000000 .LASF78 +0000000000024684 l .debug_str 0000000000000000 .LASF79 +0000000000024beb l .debug_str 0000000000000000 .LASF80 +000000000002494e l .debug_str 0000000000000000 .LASF81 +0000000000024d78 l .debug_str 0000000000000000 .LASF82 +0000000000024b85 l .debug_str 0000000000000000 .LASF83 +000000000002442f l .debug_str 0000000000000000 .LASF84 +0000000000024813 l .debug_str 0000000000000000 .LASF85 +00000000000249c0 l .debug_str 0000000000000000 .LASF86 +0000000000024ba1 l .debug_str 0000000000000000 .LASF87 +00000000000249f3 l .debug_str 0000000000000000 .LASF88 +00000000000246e5 l .debug_str 0000000000000000 .LASF89 +00000000000247cc l .debug_str 0000000000000000 .LASF90 +0000000000024d33 l .debug_str 0000000000000000 .LASF91 +0000000000024938 l .debug_str 0000000000000000 .LASF92 +000000000002456f l .debug_str 0000000000000000 .LASF93 +0000000000024984 l .debug_str 0000000000000000 .LASF94 +00000000000246a4 l .debug_str 0000000000000000 .LASF95 +00000000000246ff l .debug_str 0000000000000000 .LASF96 +0000000000024d26 l .debug_str 0000000000000000 .LASF97 +0000000000024a59 l .debug_str 0000000000000000 .LASF98 +0000000000024b7a l .debug_str 0000000000000000 .LASF99 +00000000000247a1 l .debug_str 0000000000000000 .LASF100 +000000000002467a l .debug_str 0000000000000000 .LASF101 +0000000000024782 l .debug_str 0000000000000000 .LASF102 +0000000000024b3b l .debug_str 0000000000000000 .LASF103 +0000000000024dbb l .debug_str 0000000000000000 .LASF104 +000000000002491f l .debug_str 0000000000000000 .LASF105 +0000000000024659 l .debug_str 0000000000000000 .LASF106 +00000000000248ed l .debug_str 0000000000000000 .LASF107 +000000000002452a l .debug_str 0000000000000000 .LASF108 +0000000000024bd5 l .debug_str 0000000000000000 .LASF109 +0000000000024628 l .debug_str 0000000000000000 .LASF110 +0000000000024486 l .debug_str 0000000000000000 .LASF111 +000000000002498f l .debug_str 0000000000000000 .LASF112 +00000000000249fc l .debug_str 0000000000000000 .LASF113 +0000000000024d67 l .debug_str 0000000000000000 .LASF114 +00000000000244d3 l .debug_str 0000000000000000 .LASF115 +0000000000024b24 l .debug_str 0000000000000000 .LASF116 +0000000000024ad5 l .debug_str 0000000000000000 .LASF117 +00000000000243fa l .debug_str 0000000000000000 .LASF118 +000000000002484b l .debug_str 0000000000000000 .LASF119 +0000000000024c01 l .debug_str 0000000000000000 .LASF120 +0000000000024594 l .debug_str 0000000000000000 .LASF121 +0000000000024600 l .debug_str 0000000000000000 .LASF122 +0000000000024bae l .debug_str 0000000000000000 .LASF123 +0000000000024c3e l .debug_str 0000000000000000 .LASF124 +0000000000024726 l .debug_str 0000000000000000 .LASF125 +0000000000024619 l .debug_str 0000000000000000 .LASF126 +0000000000024805 l .debug_str 0000000000000000 .LASF127 +0000000000024bc9 l .debug_str 0000000000000000 .LASF128 +00000000000246af l .debug_str 0000000000000000 .LASF129 +0000000000024913 l .debug_str 0000000000000000 .LASF130 +0000000000024a27 l .debug_str 0000000000000000 .LASF131 +0000000000024970 l .debug_str 0000000000000000 .LASF132 +0000000000024475 l .debug_str 0000000000000000 .LASF133 +0000000000024761 l .debug_str 0000000000000000 .LASF134 +0000000000024ac1 l .debug_str 0000000000000000 .LASF135 +0000000000024b17 l .debug_str 0000000000000000 .LASF136 +0000000000024d81 l .debug_str 0000000000000000 .LASF137 +0000000000024449 l .debug_str 0000000000000000 .LASF138 +00000000000249d5 l .debug_str 0000000000000000 .LASF139 +000000000002468d l .debug_str 0000000000000000 .LASF140 +0000000000024d8c l .debug_str 0000000000000000 .LASF141 +0000000000024561 l .debug_str 0000000000000000 .LASF142 +0000000000024d14 l .debug_str 0000000000000000 .LASF143 +00000000000244a3 l .debug_str 0000000000000000 .LASF144 +00000000000248a0 l .debug_str 0000000000000000 .LASF145 +0000000000024afd l .debug_str 0000000000000000 .LASF146 +0000000000024b06 l .debug_str 0000000000000000 .LASF147 +0000000000024a16 l .debug_str 0000000000000000 .LASF148 +000000000002463e l .debug_str 0000000000000000 .LASF149 +00000000000247bd l .debug_str 0000000000000000 .LASF150 +0000000000024b5a l .debug_str 0000000000000000 .LASF158 +000000000000a5fe l .text 0000000000000000 .LFB7 +000000000000a62a l .text 0000000000000000 .LFE7 +0000000000024ab0 l .debug_str 0000000000000000 .LASF151 +000000000001e62a l .debug_loc 0000000000000000 .LLST0 +0000000000024ab6 l .debug_str 0000000000000000 .LASF152 +000000000001e663 l .debug_loc 0000000000000000 .LLST1 +00000000000243e0 l .debug_str 0000000000000000 .LASF153 +000000000000a616 l .text 0000000000000000 .LBB4 +000000000000a624 l .text 0000000000000000 .LBE4 +000000000001e69c l .debug_loc 0000000000000000 .LLST2 +000000000001e6c1 l .debug_loc 0000000000000000 .LLST3 +000000000001e6ec l .debug_loc 0000000000000000 .LLST4 +000000000002469a l .debug_str 0000000000000000 .LASF159 +000000000000a5fe l .text 0000000000000000 .LVL0 +000000000000a61a l .text 0000000000000000 .LVL2 +000000000000a61c l .text 0000000000000000 .LVL3 +000000000000a616 l .text 0000000000000000 .LVL1 +000000000000a624 l .text 0000000000000000 .LVL4 +000000000002df9d l .debug_info 0000000000000000 .Ldebug_info0 +000000000000a5fe l .text 0000000000000000 .L0 +000000000000a5fe l .text 0000000000000000 .L0 +000000000000a5fe l .text 0000000000000000 .L0 +000000000000a5fe l .text 0000000000000000 .L0 +000000000000a5fe l .text 0000000000000000 .L0 +000000000000a600 l .text 0000000000000000 .L0 +000000000000a606 l .text 0000000000000000 .L0 +000000000000a608 l .text 0000000000000000 .L0 +000000000000a60e l .text 0000000000000000 .L0 +000000000000a610 l .text 0000000000000000 .L0 +000000000000a614 l .text 0000000000000000 .L0 +000000000000a616 l .text 0000000000000000 .L0 +000000000000a616 l .text 0000000000000000 .L0 +000000000000a616 l .text 0000000000000000 .L0 +000000000000a616 l .text 0000000000000000 .L0 +000000000000a616 l .text 0000000000000000 .L0 +000000000000a61a l .text 0000000000000000 .L0 +000000000000a61a l .text 0000000000000000 .L0 +000000000000a61c l .text 0000000000000000 .L0 +000000000000a61c l .text 0000000000000000 .L0 +000000000000a61e l .text 0000000000000000 .L0 +000000000000a61e l .text 0000000000000000 .L0 +000000000000a622 l .text 0000000000000000 .L0 +000000000000a624 l .text 0000000000000000 .L0 +000000000000a624 l .text 0000000000000000 .L0 +000000000000a62a l .text 0000000000000000 .L0 +0000000000003f48 l .debug_frame 0000000000000000 .L0 +000000000000a5fe l .text 0000000000000000 .L0 +000000000000a62a l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 PROXY_kill.c +000000000000d81c l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000025607 l .debug_str 0000000000000000 .LASF152 +0000000000024e05 l .debug_str 0000000000000000 .LASF153 +000000000002544b l .debug_str 0000000000000000 .LASF154 +0000000000003620 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000020e47 l .debug_line 0000000000000000 .Ldebug_line0 +0000000000024f42 l .debug_str 0000000000000000 .LASF0 +000000000002535e l .debug_str 0000000000000000 .LASF1 +000000000002539b l .debug_str 0000000000000000 .LASF2 +0000000000025139 l .debug_str 0000000000000000 .LASF3 +00000000000250d5 l .debug_str 0000000000000000 .LASF4 +0000000000024faf l .debug_str 0000000000000000 .LASF5 +00000000000250fd l .debug_str 0000000000000000 .LASF6 +00000000000251e8 l .debug_str 0000000000000000 .LASF8 +0000000000024ea9 l .debug_str 0000000000000000 .LASF7 +0000000000024e1a l .debug_str 0000000000000000 .LASF9 +000000000002570b l .debug_str 0000000000000000 .LASF10 +0000000000025477 l .debug_str 0000000000000000 .LASF11 +0000000000025260 l .debug_str 0000000000000000 .LASF12 +0000000000025408 l .debug_str 0000000000000000 .LASF13 +00000000000250a4 l .debug_str 0000000000000000 .LASF14 +00000000000252fe l .debug_str 0000000000000000 .LASF15 +000000000002576c l .debug_str 0000000000000000 .LASF16 +0000000000024f04 l .debug_str 0000000000000000 .LASF17 +0000000000025755 l .debug_str 0000000000000000 .LASF18 +0000000000025279 l .debug_str 0000000000000000 .LASF19 +00000000000255d3 l .debug_str 0000000000000000 .LASF20 +0000000000025515 l .debug_str 0000000000000000 .LASF21 +0000000000025502 l .debug_str 0000000000000000 .LASF22 +00000000000251fe l .debug_str 0000000000000000 .LASF23 +0000000000025711 l .debug_str 0000000000000000 .LASF24 +0000000000024e2e l .debug_str 0000000000000000 .LASF25 +0000000000025431 l .debug_str 0000000000000000 .LASF26 +000000000002529c l .debug_str 0000000000000000 .LASF27 +0000000000025421 l .debug_str 0000000000000000 .LASF28 +00000000000250b9 l .debug_str 0000000000000000 .LASF29 +0000000000025175 l .debug_str 0000000000000000 .LASF30 +000000000002531c l .debug_str 0000000000000000 .LASF31 +0000000000024f9b l .debug_str 0000000000000000 .LASF32 +00000000000251a0 l .debug_str 0000000000000000 .LASF33 +000000000002522e l .debug_str 0000000000000000 .LASF34 +0000000000024e49 l .debug_str 0000000000000000 .LASF35 +00000000000255e7 l .debug_str 0000000000000000 .LASF36 +00000000000253fc l .debug_str 0000000000000000 .LASF37 +00000000000254ac l .debug_str 0000000000000000 .LASF38 +0000000000024ef4 l .debug_str 0000000000000000 .LASF39 +00000000000253f1 l .debug_str 0000000000000000 .LASF40 +0000000000025387 l .debug_str 0000000000000000 .LASF41 +0000000000024dcf l .debug_str 0000000000000000 .LASF42 +00000000000250e2 l .debug_str 0000000000000000 .LASF43 +000000000002536c l .debug_str 0000000000000000 .LASF44 +0000000000025013 l .debug_str 0000000000000000 .LASF45 +00000000000255a9 l .debug_str 0000000000000000 .LASF46 +0000000000025251 l .debug_str 0000000000000000 .LASF47 +0000000000024f66 l .debug_str 0000000000000000 .LASF48 +0000000000024ee4 l .debug_str 0000000000000000 .LASF49 +0000000000025288 l .debug_str 0000000000000000 .LASF50 +0000000000024e86 l .debug_str 0000000000000000 .LASF51 +0000000000025544 l .debug_str 0000000000000000 .LASF52 +0000000000025088 l .debug_str 0000000000000000 .LASF53 +0000000000024df4 l .debug_str 0000000000000000 .LASF54 +0000000000025240 l .debug_str 0000000000000000 .LASF55 +0000000000025156 l .debug_str 0000000000000000 .LASF56 +00000000000256b7 l .debug_str 0000000000000000 .LASF57 +0000000000025119 l .debug_str 0000000000000000 .LASF58 +00000000000251f0 l .debug_str 0000000000000000 .LASF59 +0000000000025036 l .debug_str 0000000000000000 .LASF60 +00000000000251b4 l .debug_str 0000000000000000 .LASF61 +0000000000024f77 l .debug_str 0000000000000000 .LASF62 +0000000000025701 l .debug_str 0000000000000000 .LASF63 +0000000000024f39 l .debug_str 0000000000000000 .LASF64 +000000000002509a l .debug_str 0000000000000000 .LASF65 +0000000000024eda l .debug_str 0000000000000000 .LASF66 +00000000000252c3 l .debug_str 0000000000000000 .LASF67 +0000000000024dc6 l .debug_str 0000000000000000 .LASF68 +0000000000024e9e l .debug_str 0000000000000000 .LASF69 +0000000000024e58 l .debug_str 0000000000000000 .LASF70 +00000000000251c3 l .debug_str 0000000000000000 .LASF71 +0000000000024fbd l .debug_str 0000000000000000 .LASF72 +0000000000025314 l .debug_str 0000000000000000 .LASF73 +00000000000253a5 l .debug_str 0000000000000000 .LASF74 +000000000002510f l .debug_str 0000000000000000 .LASF75 +00000000000256f3 l .debug_str 0000000000000000 .LASF76 +0000000000024f2f l .debug_str 0000000000000000 .LASF77 +000000000002504e l .debug_str 0000000000000000 .LASF78 +00000000000255a0 l .debug_str 0000000000000000 .LASF79 +0000000000025309 l .debug_str 0000000000000000 .LASF80 +0000000000025733 l .debug_str 0000000000000000 .LASF81 +000000000002553a l .debug_str 0000000000000000 .LASF82 +0000000000024e24 l .debug_str 0000000000000000 .LASF83 +00000000000251dd l .debug_str 0000000000000000 .LASF84 +000000000002537b l .debug_str 0000000000000000 .LASF85 +0000000000025556 l .debug_str 0000000000000000 .LASF86 +00000000000253ae l .debug_str 0000000000000000 .LASF87 +00000000000250af l .debug_str 0000000000000000 .LASF88 +0000000000025196 l .debug_str 0000000000000000 .LASF89 +00000000000256e8 l .debug_str 0000000000000000 .LASF90 +00000000000252f3 l .debug_str 0000000000000000 .LASF91 +0000000000024f5c l .debug_str 0000000000000000 .LASF92 +000000000002533f l .debug_str 0000000000000000 .LASF93 +000000000002506e l .debug_str 0000000000000000 .LASF94 +00000000000250c9 l .debug_str 0000000000000000 .LASF95 +00000000000256db l .debug_str 0000000000000000 .LASF96 +0000000000025414 l .debug_str 0000000000000000 .LASF97 +000000000002552f l .debug_str 0000000000000000 .LASF98 +000000000002516b l .debug_str 0000000000000000 .LASF99 +0000000000025044 l .debug_str 0000000000000000 .LASF100 +000000000002514c l .debug_str 0000000000000000 .LASF101 +00000000000254f6 l .debug_str 0000000000000000 .LASF102 +0000000000025776 l .debug_str 0000000000000000 .LASF103 +00000000000252da l .debug_str 0000000000000000 .LASF104 +0000000000025023 l .debug_str 0000000000000000 .LASF105 +00000000000252a8 l .debug_str 0000000000000000 .LASF106 +0000000000024f17 l .debug_str 0000000000000000 .LASF107 +000000000002558a l .debug_str 0000000000000000 .LASF108 +0000000000024ff2 l .debug_str 0000000000000000 .LASF109 +0000000000024e73 l .debug_str 0000000000000000 .LASF110 +000000000002534a l .debug_str 0000000000000000 .LASF111 +00000000000253b7 l .debug_str 0000000000000000 .LASF112 +0000000000025722 l .debug_str 0000000000000000 .LASF113 +0000000000024ec0 l .debug_str 0000000000000000 .LASF114 +00000000000254df l .debug_str 0000000000000000 .LASF115 +0000000000025490 l .debug_str 0000000000000000 .LASF116 +0000000000024dda l .debug_str 0000000000000000 .LASF117 +0000000000025215 l .debug_str 0000000000000000 .LASF118 +00000000000255b6 l .debug_str 0000000000000000 .LASF119 +0000000000024f81 l .debug_str 0000000000000000 .LASF120 +0000000000024fca l .debug_str 0000000000000000 .LASF121 +0000000000025563 l .debug_str 0000000000000000 .LASF122 +00000000000255f3 l .debug_str 0000000000000000 .LASF123 +00000000000250f0 l .debug_str 0000000000000000 .LASF124 +0000000000024fe3 l .debug_str 0000000000000000 .LASF125 +00000000000251cf l .debug_str 0000000000000000 .LASF126 +000000000002557e l .debug_str 0000000000000000 .LASF127 +0000000000025079 l .debug_str 0000000000000000 .LASF128 +00000000000252ce l .debug_str 0000000000000000 .LASF129 +00000000000253e2 l .debug_str 0000000000000000 .LASF130 +000000000002532b l .debug_str 0000000000000000 .LASF131 +0000000000024e62 l .debug_str 0000000000000000 .LASF132 +000000000002512b l .debug_str 0000000000000000 .LASF133 +000000000002547c l .debug_str 0000000000000000 .LASF134 +00000000000254d2 l .debug_str 0000000000000000 .LASF135 +000000000002573c l .debug_str 0000000000000000 .LASF136 +0000000000024e3e l .debug_str 0000000000000000 .LASF137 +0000000000025390 l .debug_str 0000000000000000 .LASF138 +0000000000025057 l .debug_str 0000000000000000 .LASF139 +0000000000025747 l .debug_str 0000000000000000 .LASF140 +0000000000024f4e l .debug_str 0000000000000000 .LASF141 +00000000000256c9 l .debug_str 0000000000000000 .LASF142 +0000000000024e90 l .debug_str 0000000000000000 .LASF143 +000000000002526a l .debug_str 0000000000000000 .LASF144 +00000000000254b8 l .debug_str 0000000000000000 .LASF145 +00000000000254c1 l .debug_str 0000000000000000 .LASF146 +00000000000253d1 l .debug_str 0000000000000000 .LASF147 +0000000000025008 l .debug_str 0000000000000000 .LASF148 +0000000000025187 l .debug_str 0000000000000000 .LASF149 +0000000000024fb8 l .debug_str 0000000000000000 .LASF155 +000000000000a62a l .text 0000000000000000 .LFB7 +000000000000a63e l .text 0000000000000000 .LFE7 +000000000002546b l .debug_str 0000000000000000 .LASF150 +000000000001e717 l .debug_loc 0000000000000000 .LLST0 +0000000000025471 l .debug_str 0000000000000000 .LASF151 +000000000001e750 l .debug_loc 0000000000000000 .LLST1 +000000000000a62e l .text 0000000000000000 .LBB4 +000000000000a63a l .text 0000000000000000 .LBE4 +000000000001e789 l .debug_loc 0000000000000000 .LLST2 +000000000001e7ae l .debug_loc 0000000000000000 .LLST3 +000000000001e7d9 l .debug_loc 0000000000000000 .LLST4 +0000000000025064 l .debug_str 0000000000000000 .LASF156 +000000000000a62a l .text 0000000000000000 .LVL0 +000000000000a632 l .text 0000000000000000 .LVL3 +000000000000a634 l .text 0000000000000000 .LVL4 +000000000000a62e l .text 0000000000000000 .LVL2 +000000000000a63a l .text 0000000000000000 .LVL5 +000000000000a62c l .text 0000000000000000 .LVL1 +000000000002e4ab l .debug_info 0000000000000000 .Ldebug_info0 +000000000000a62a l .text 0000000000000000 .L0 +000000000000a62a l .text 0000000000000000 .L0 +000000000000a62a l .text 0000000000000000 .L0 +000000000000a62e l .text 0000000000000000 .L0 +000000000000a62e l .text 0000000000000000 .L0 +000000000000a632 l .text 0000000000000000 .L0 +000000000000a632 l .text 0000000000000000 .L0 +000000000000a634 l .text 0000000000000000 .L0 +000000000000a634 l .text 0000000000000000 .L0 +000000000000a638 l .text 0000000000000000 .L0 +000000000000a63a l .text 0000000000000000 .L0 +000000000000a63a l .text 0000000000000000 .L0 +000000000000a63e l .text 0000000000000000 .L0 +0000000000003f78 l .debug_frame 0000000000000000 .L0 +000000000000a62a l .text 0000000000000000 .L0 +000000000000a63e l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 PROXY_lseek.c +000000000000d903 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000025fc5 l .debug_str 0000000000000000 .LASF155 +00000000000260cf l .debug_str 0000000000000000 .LASF156 +0000000000025e09 l .debug_str 0000000000000000 .LASF157 +0000000000003640 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000020fa0 l .debug_line 0000000000000000 .Ldebug_line0 +00000000000258fb l .debug_str 0000000000000000 .LASF0 +0000000000025d1c l .debug_str 0000000000000000 .LASF1 +0000000000025d59 l .debug_str 0000000000000000 .LASF2 +0000000000025ae6 l .debug_str 0000000000000000 .LASF3 +0000000000025bed l .debug_str 0000000000000000 .LASF7 +0000000000025a82 l .debug_str 0000000000000000 .LASF4 +0000000000025968 l .debug_str 0000000000000000 .LASF5 +0000000000025aaa l .debug_str 0000000000000000 .LASF6 +0000000000025b95 l .debug_str 0000000000000000 .LASF8 +0000000000025862 l .debug_str 0000000000000000 .LASF9 +0000000000025d14 l .debug_str 0000000000000000 .LASF10 +00000000000257c6 l .debug_str 0000000000000000 .LASF11 +0000000000025a0b l .debug_str 0000000000000000 .LASF12 +0000000000025e35 l .debug_str 0000000000000000 .LASF13 +0000000000025c16 l .debug_str 0000000000000000 .LASF14 +0000000000025dc6 l .debug_str 0000000000000000 .LASF15 +0000000000025a51 l .debug_str 0000000000000000 .LASF16 +0000000000025cb4 l .debug_str 0000000000000000 .LASF17 +0000000000026140 l .debug_str 0000000000000000 .LASF18 +00000000000258bd l .debug_str 0000000000000000 .LASF19 +0000000000026129 l .debug_str 0000000000000000 .LASF20 +0000000000025c2f l .debug_str 0000000000000000 .LASF21 +0000000000025f91 l .debug_str 0000000000000000 .LASF22 +0000000000025ed3 l .debug_str 0000000000000000 .LASF23 +0000000000025ec0 l .debug_str 0000000000000000 .LASF24 +0000000000025bab l .debug_str 0000000000000000 .LASF25 +00000000000260e5 l .debug_str 0000000000000000 .LASF26 +00000000000257da l .debug_str 0000000000000000 .LASF27 +0000000000025def l .debug_str 0000000000000000 .LASF28 +0000000000025c52 l .debug_str 0000000000000000 .LASF29 +0000000000025ddf l .debug_str 0000000000000000 .LASF30 +0000000000025a66 l .debug_str 0000000000000000 .LASF31 +0000000000025b22 l .debug_str 0000000000000000 .LASF32 +0000000000025cd2 l .debug_str 0000000000000000 .LASF33 +0000000000025954 l .debug_str 0000000000000000 .LASF34 +0000000000025b4d l .debug_str 0000000000000000 .LASF35 +0000000000025bdb l .debug_str 0000000000000000 .LASF36 +00000000000257f5 l .debug_str 0000000000000000 .LASF37 +0000000000025fa5 l .debug_str 0000000000000000 .LASF38 +0000000000025dba l .debug_str 0000000000000000 .LASF39 +0000000000025e6a l .debug_str 0000000000000000 .LASF40 +00000000000258ad l .debug_str 0000000000000000 .LASF41 +0000000000025daf l .debug_str 0000000000000000 .LASF42 +0000000000025d45 l .debug_str 0000000000000000 .LASF43 +0000000000025790 l .debug_str 0000000000000000 .LASF44 +0000000000025a8f l .debug_str 0000000000000000 .LASF45 +0000000000025d2a l .debug_str 0000000000000000 .LASF46 +00000000000259c7 l .debug_str 0000000000000000 .LASF47 +0000000000025f67 l .debug_str 0000000000000000 .LASF48 +0000000000025c07 l .debug_str 0000000000000000 .LASF49 +000000000002591f l .debug_str 0000000000000000 .LASF50 +000000000002589d l .debug_str 0000000000000000 .LASF51 +0000000000025c3e l .debug_str 0000000000000000 .LASF52 +000000000002583f l .debug_str 0000000000000000 .LASF53 +0000000000025f02 l .debug_str 0000000000000000 .LASF54 +0000000000025a35 l .debug_str 0000000000000000 .LASF55 +00000000000257b5 l .debug_str 0000000000000000 .LASF56 +0000000000025bf6 l .debug_str 0000000000000000 .LASF57 +0000000000025b03 l .debug_str 0000000000000000 .LASF58 +0000000000026075 l .debug_str 0000000000000000 .LASF59 +0000000000025ac6 l .debug_str 0000000000000000 .LASF60 +0000000000025b9d l .debug_str 0000000000000000 .LASF61 +00000000000259ea l .debug_str 0000000000000000 .LASF62 +0000000000025b61 l .debug_str 0000000000000000 .LASF63 +0000000000025930 l .debug_str 0000000000000000 .LASF64 +00000000000260c5 l .debug_str 0000000000000000 .LASF65 +00000000000258f2 l .debug_str 0000000000000000 .LASF66 +0000000000025a47 l .debug_str 0000000000000000 .LASF67 +0000000000025893 l .debug_str 0000000000000000 .LASF68 +0000000000025c79 l .debug_str 0000000000000000 .LASF69 +0000000000025787 l .debug_str 0000000000000000 .LASF70 +0000000000025857 l .debug_str 0000000000000000 .LASF71 +0000000000025804 l .debug_str 0000000000000000 .LASF72 +0000000000025b70 l .debug_str 0000000000000000 .LASF73 +0000000000025971 l .debug_str 0000000000000000 .LASF74 +0000000000025cca l .debug_str 0000000000000000 .LASF75 +0000000000025d63 l .debug_str 0000000000000000 .LASF76 +0000000000025abc l .debug_str 0000000000000000 .LASF77 +00000000000260b7 l .debug_str 0000000000000000 .LASF78 +00000000000258e8 l .debug_str 0000000000000000 .LASF79 +0000000000025a02 l .debug_str 0000000000000000 .LASF80 +0000000000025f5e l .debug_str 0000000000000000 .LASF81 +0000000000025cbf l .debug_str 0000000000000000 .LASF82 +0000000000026107 l .debug_str 0000000000000000 .LASF83 +0000000000025ef8 l .debug_str 0000000000000000 .LASF84 +00000000000257d0 l .debug_str 0000000000000000 .LASF85 +0000000000025b8a l .debug_str 0000000000000000 .LASF86 +0000000000025d39 l .debug_str 0000000000000000 .LASF87 +0000000000025f14 l .debug_str 0000000000000000 .LASF88 +0000000000025d6c l .debug_str 0000000000000000 .LASF89 +0000000000025a5c l .debug_str 0000000000000000 .LASF90 +0000000000025b43 l .debug_str 0000000000000000 .LASF91 +00000000000260ac l .debug_str 0000000000000000 .LASF92 +0000000000025ca9 l .debug_str 0000000000000000 .LASF93 +0000000000025915 l .debug_str 0000000000000000 .LASF94 +0000000000025cf5 l .debug_str 0000000000000000 .LASF95 +0000000000025a1b l .debug_str 0000000000000000 .LASF96 +0000000000025a76 l .debug_str 0000000000000000 .LASF97 +0000000000026099 l .debug_str 0000000000000000 .LASF98 +0000000000025dd2 l .debug_str 0000000000000000 .LASF99 +0000000000025eed l .debug_str 0000000000000000 .LASF100 +0000000000025b18 l .debug_str 0000000000000000 .LASF101 +00000000000259f8 l .debug_str 0000000000000000 .LASF102 +0000000000025af9 l .debug_str 0000000000000000 .LASF103 +0000000000025eb4 l .debug_str 0000000000000000 .LASF104 +000000000002614a l .debug_str 0000000000000000 .LASF105 +0000000000025c90 l .debug_str 0000000000000000 .LASF106 +00000000000259d7 l .debug_str 0000000000000000 .LASF107 +0000000000025c5e l .debug_str 0000000000000000 .LASF108 +00000000000258d0 l .debug_str 0000000000000000 .LASF109 +0000000000025f48 l .debug_str 0000000000000000 .LASF110 +00000000000259a6 l .debug_str 0000000000000000 .LASF111 +000000000002582c l .debug_str 0000000000000000 .LASF112 +0000000000025d00 l .debug_str 0000000000000000 .LASF113 +0000000000025d75 l .debug_str 0000000000000000 .LASF114 +00000000000260f6 l .debug_str 0000000000000000 .LASF115 +0000000000025879 l .debug_str 0000000000000000 .LASF116 +0000000000025e9d l .debug_str 0000000000000000 .LASF117 +0000000000025e4e l .debug_str 0000000000000000 .LASF118 +000000000002579b l .debug_str 0000000000000000 .LASF119 +0000000000025bc2 l .debug_str 0000000000000000 .LASF120 +0000000000025f74 l .debug_str 0000000000000000 .LASF121 +000000000002593a l .debug_str 0000000000000000 .LASF122 +000000000002597e l .debug_str 0000000000000000 .LASF123 +0000000000025f21 l .debug_str 0000000000000000 .LASF124 +0000000000025fb1 l .debug_str 0000000000000000 .LASF125 +0000000000025a9d l .debug_str 0000000000000000 .LASF126 +0000000000025997 l .debug_str 0000000000000000 .LASF127 +0000000000025b7c l .debug_str 0000000000000000 .LASF128 +0000000000025f3c l .debug_str 0000000000000000 .LASF129 +0000000000025a26 l .debug_str 0000000000000000 .LASF130 +0000000000025c84 l .debug_str 0000000000000000 .LASF131 +0000000000025da0 l .debug_str 0000000000000000 .LASF132 +0000000000025ce1 l .debug_str 0000000000000000 .LASF133 +000000000002581b l .debug_str 0000000000000000 .LASF134 +0000000000025ad8 l .debug_str 0000000000000000 .LASF135 +0000000000025e3a l .debug_str 0000000000000000 .LASF136 +0000000000025e90 l .debug_str 0000000000000000 .LASF137 +0000000000026110 l .debug_str 0000000000000000 .LASF138 +00000000000257ea l .debug_str 0000000000000000 .LASF139 +0000000000025d4e l .debug_str 0000000000000000 .LASF140 +000000000002580e l .debug_str 0000000000000000 .LASF141 +000000000002611b l .debug_str 0000000000000000 .LASF142 +0000000000025907 l .debug_str 0000000000000000 .LASF143 +0000000000026087 l .debug_str 0000000000000000 .LASF144 +0000000000025849 l .debug_str 0000000000000000 .LASF145 +0000000000025c20 l .debug_str 0000000000000000 .LASF146 +0000000000025e76 l .debug_str 0000000000000000 .LASF147 +0000000000025e7f l .debug_str 0000000000000000 .LASF148 +0000000000025d8f l .debug_str 0000000000000000 .LASF149 +00000000000259bc l .debug_str 0000000000000000 .LASF150 +0000000000025b34 l .debug_str 0000000000000000 .LASF151 +00000000000260a6 l .debug_str 0000000000000000 .LASF158 +000000000000a63e l .text 0000000000000000 .LFB7 +000000000000a656 l .text 0000000000000000 .LFE7 +0000000000025e29 l .debug_str 0000000000000000 .LASF152 +000000000001e804 l .debug_loc 0000000000000000 .LLST0 +0000000000025e2f l .debug_str 0000000000000000 .LASF153 +000000000001e83d l .debug_loc 0000000000000000 .LLST1 +0000000000025781 l .debug_str 0000000000000000 .LASF154 +000000000001e876 l .debug_loc 0000000000000000 .LLST2 +000000000000a644 l .text 0000000000000000 .LBB4 +000000000000a652 l .text 0000000000000000 .LBE4 +000000000001e8af l .debug_loc 0000000000000000 .LLST3 +000000000001e8d4 l .debug_loc 0000000000000000 .LLST4 +000000000001e8ff l .debug_loc 0000000000000000 .LLST5 +000000000001e92a l .debug_loc 0000000000000000 .LLST6 +0000000000025a11 l .debug_str 0000000000000000 .LASF159 +000000000000a63e l .text 0000000000000000 .LVL0 +000000000000a648 l .text 0000000000000000 .LVL4 +000000000000a64a l .text 0000000000000000 .LVL5 +000000000000a64c l .text 0000000000000000 .LVL6 +000000000000a644 l .text 0000000000000000 .LVL3 +000000000000a652 l .text 0000000000000000 .LVL7 +000000000000a642 l .text 0000000000000000 .LVL2 +000000000000a640 l .text 0000000000000000 .LVL1 +000000000002e96a l .debug_info 0000000000000000 .Ldebug_info0 +000000000000a63e l .text 0000000000000000 .L0 +000000000000a63e l .text 0000000000000000 .L0 +000000000000a63e l .text 0000000000000000 .L0 +000000000000a644 l .text 0000000000000000 .L0 +000000000000a644 l .text 0000000000000000 .L0 +000000000000a648 l .text 0000000000000000 .L0 +000000000000a648 l .text 0000000000000000 .L0 +000000000000a64a l .text 0000000000000000 .L0 +000000000000a64a l .text 0000000000000000 .L0 +000000000000a64c l .text 0000000000000000 .L0 +000000000000a64c l .text 0000000000000000 .L0 +000000000000a650 l .text 0000000000000000 .L0 +000000000000a652 l .text 0000000000000000 .L0 +000000000000a652 l .text 0000000000000000 .L0 +000000000000a656 l .text 0000000000000000 .L0 +0000000000003fa0 l .debug_frame 0000000000000000 .L0 +000000000000a63e l .text 0000000000000000 .L0 +000000000000a656 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 PROXY_lstat.c +000000000000d9ea l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000026a9e l .debug_str 0000000000000000 .LASF186 +0000000000026338 l .debug_str 0000000000000000 .LASF187 +00000000000268c0 l .debug_str 0000000000000000 .LASF188 +0000000000003660 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000002110c l .debug_line 0000000000000000 .Ldebug_line0 +00000000000262f2 l .debug_str 0000000000000000 .LASF0 +00000000000267b6 l .debug_str 0000000000000000 .LASF1 +0000000000026bd8 l .debug_str 0000000000000000 .LASF3 +00000000000267f3 l .debug_str 0000000000000000 .LASF2 +00000000000266e4 l .debug_str 0000000000000000 .LASF4 +0000000000026559 l .debug_str 0000000000000000 .LASF5 +0000000000026670 l .debug_str 0000000000000000 .LASF6 +00000000000261d4 l .debug_str 0000000000000000 .LASF7 +00000000000264d6 l .debug_str 0000000000000000 .LASF8 +0000000000026386 l .debug_str 0000000000000000 .LASF9 +0000000000026507 l .debug_str 0000000000000000 .LASF10 +000000000002661a l .debug_str 0000000000000000 .LASF11 +0000000000026256 l .debug_str 0000000000000000 .LASF12 +00000000000262e1 l .debug_str 0000000000000000 .LASF13 +00000000000263cf l .debug_str 0000000000000000 .LASF14 +00000000000267ae l .debug_str 0000000000000000 .LASF15 +000000000002689d l .debug_str 0000000000000000 .LASF16 +00000000000261b6 l .debug_str 0000000000000000 .LASF17 +0000000000026a90 l .debug_str 0000000000000000 .LASF18 +0000000000026545 l .debug_str 0000000000000000 .LASF19 +000000000002644f l .debug_str 0000000000000000 .LASF20 +0000000000026745 l .debug_str 0000000000000000 .LASF21 +0000000000026c11 l .debug_str 0000000000000000 .LASF22 +0000000000026438 l .debug_str 0000000000000000 .LASF23 +00000000000264fe l .debug_str 0000000000000000 .LASF24 +0000000000026449 l .debug_str 0000000000000000 .LASF25 +0000000000026b78 l .debug_str 0000000000000000 .LASF26 +000000000002674b l .debug_str 0000000000000000 .LASF27 +00000000000268ee l .debug_str 0000000000000000 .LASF28 +0000000000026811 l .debug_str 0000000000000000 .LASF31 +00000000000266ba l .debug_str 0000000000000000 .LASF29 +0000000000026699 l .debug_str 0000000000000000 .LASF30 +00000000000262dc l .debug_str 0000000000000000 .LASF32 +0000000000026a97 l .debug_str 0000000000000000 .LASF33 +0000000000026327 l .debug_str 0000000000000000 .LASF34 +0000000000026668 l .debug_str 0000000000000000 .LASF35 +00000000000267a5 l .debug_str 0000000000000000 .LASF36 +00000000000264a9 l .debug_str 0000000000000000 .LASF37 +00000000000269e5 l .debug_str 0000000000000000 .LASF38 +00000000000268e0 l .debug_str 0000000000000000 .LASF39 +0000000000026622 l .debug_str 0000000000000000 .LASF40 +00000000000263d8 l .debug_str 0000000000000000 .LASF41 +0000000000026b8d l .debug_str 0000000000000000 .LASF42 +000000000002616f l .debug_str 0000000000000000 .LASF43 +00000000000267fd l .debug_str 0000000000000000 .LASF44 +0000000000026495 l .debug_str 0000000000000000 .LASF45 +00000000000266a1 l .debug_str 0000000000000000 .LASF46 +0000000000026874 l .debug_str 0000000000000000 .LASF47 +000000000002639c l .debug_str 0000000000000000 .LASF48 +0000000000026b60 l .debug_str 0000000000000000 .LASF49 +000000000002649f l .debug_str 0000000000000000 .LASF50 +00000000000262b1 l .debug_str 0000000000000000 .LASF51 +0000000000026bfa l .debug_str 0000000000000000 .LASF52 +00000000000266c1 l .debug_str 0000000000000000 .LASF53 +0000000000026a5c l .debug_str 0000000000000000 .LASF54 +000000000002698c l .debug_str 0000000000000000 .LASF55 +0000000000026979 l .debug_str 0000000000000000 .LASF56 +0000000000026638 l .debug_str 0000000000000000 .LASF57 +0000000000026bad l .debug_str 0000000000000000 .LASF58 +0000000000026519 l .debug_str 0000000000000000 .LASF59 +00000000000268a6 l .debug_str 0000000000000000 .LASF60 +00000000000266ee l .debug_str 0000000000000000 .LASF61 +000000000002688d l .debug_str 0000000000000000 .LASF62 +00000000000264ba l .debug_str 0000000000000000 .LASF63 +00000000000265a7 l .debug_str 0000000000000000 .LASF64 +0000000000026777 l .debug_str 0000000000000000 .LASF65 +0000000000026368 l .debug_str 0000000000000000 .LASF66 +00000000000265d2 l .debug_str 0000000000000000 .LASF67 +0000000000026752 l .debug_str 0000000000000000 .LASF68 +00000000000261e9 l .debug_str 0000000000000000 .LASF69 +0000000000026a70 l .debug_str 0000000000000000 .LASF70 +0000000000026868 l .debug_str 0000000000000000 .LASF71 +0000000000026923 l .debug_str 0000000000000000 .LASF72 +00000000000262a1 l .debug_str 0000000000000000 .LASF73 +000000000002685d l .debug_str 0000000000000000 .LASF74 +00000000000267df l .debug_str 0000000000000000 .LASF75 +0000000000026180 l .debug_str 0000000000000000 .LASF76 +00000000000264e3 l .debug_str 0000000000000000 .LASF77 +00000000000267c4 l .debug_str 0000000000000000 .LASF78 +0000000000026407 l .debug_str 0000000000000000 .LASF79 +0000000000026a32 l .debug_str 0000000000000000 .LASF80 +000000000002668a l .debug_str 0000000000000000 .LASF81 +0000000000026316 l .debug_str 0000000000000000 .LASF82 +0000000000026291 l .debug_str 0000000000000000 .LASF83 +00000000000266d0 l .debug_str 0000000000000000 .LASF84 +0000000000026233 l .debug_str 0000000000000000 .LASF85 +00000000000269c6 l .debug_str 0000000000000000 .LASF86 +0000000000026479 l .debug_str 0000000000000000 .LASF87 +00000000000261a5 l .debug_str 0000000000000000 .LASF88 +0000000000026679 l .debug_str 0000000000000000 .LASF89 +0000000000026588 l .debug_str 0000000000000000 .LASF90 +0000000000026b4e l .debug_str 0000000000000000 .LASF91 +0000000000026533 l .debug_str 0000000000000000 .LASF92 +000000000002662a l .debug_str 0000000000000000 .LASF93 +000000000002642a l .debug_str 0000000000000000 .LASF94 +00000000000265e6 l .debug_str 0000000000000000 .LASF95 +000000000002632e l .debug_str 0000000000000000 .LASF96 +0000000000026ba3 l .debug_str 0000000000000000 .LASF97 +00000000000262e9 l .debug_str 0000000000000000 .LASF98 +000000000002648b l .debug_str 0000000000000000 .LASF99 +0000000000026287 l .debug_str 0000000000000000 .LASF100 +0000000000026715 l .debug_str 0000000000000000 .LASF101 +0000000000026177 l .debug_str 0000000000000000 .LASF102 +000000000002624b l .debug_str 0000000000000000 .LASF103 +00000000000261f8 l .debug_str 0000000000000000 .LASF104 +00000000000265f5 l .debug_str 0000000000000000 .LASF105 +000000000002638f l .debug_str 0000000000000000 .LASF106 +000000000002676f l .debug_str 0000000000000000 .LASF107 +0000000000026808 l .debug_str 0000000000000000 .LASF108 +0000000000026529 l .debug_str 0000000000000000 .LASF109 +0000000000026b95 l .debug_str 0000000000000000 .LASF110 +000000000002637c l .debug_str 0000000000000000 .LASF111 +0000000000026440 l .debug_str 0000000000000000 .LASF112 +0000000000026a29 l .debug_str 0000000000000000 .LASF113 +0000000000026764 l .debug_str 0000000000000000 .LASF114 +0000000000026bcf l .debug_str 0000000000000000 .LASF115 +00000000000269bc l .debug_str 0000000000000000 .LASF116 +00000000000261ca l .debug_str 0000000000000000 .LASF117 +000000000002660f l .debug_str 0000000000000000 .LASF118 +00000000000267d3 l .debug_str 0000000000000000 .LASF119 +00000000000269d8 l .debug_str 0000000000000000 .LASF120 +000000000002681a l .debug_str 0000000000000000 .LASF121 +00000000000264b0 l .debug_str 0000000000000000 .LASF122 +00000000000265c8 l .debug_str 0000000000000000 .LASF123 +0000000000026b82 l .debug_str 0000000000000000 .LASF124 +00000000000269b1 l .debug_str 0000000000000000 .LASF125 +000000000002630c l .debug_str 0000000000000000 .LASF126 +000000000002679a l .debug_str 0000000000000000 .LASF127 +000000000002645f l .debug_str 0000000000000000 .LASF128 +00000000000264ca l .debug_str 0000000000000000 .LASF129 +0000000000026b6b l .debug_str 0000000000000000 .LASF130 +0000000000026880 l .debug_str 0000000000000000 .LASF131 +00000000000269a6 l .debug_str 0000000000000000 .LASF132 +000000000002659d l .debug_str 0000000000000000 .LASF133 +00000000000261c0 l .debug_str 0000000000000000 .LASF134 +000000000002657e l .debug_str 0000000000000000 .LASF135 +000000000002696d l .debug_str 0000000000000000 .LASF136 +0000000000026c17 l .debug_str 0000000000000000 .LASF137 +000000000002672c l .debug_str 0000000000000000 .LASF138 +0000000000026417 l .debug_str 0000000000000000 .LASF139 +00000000000266fa l .debug_str 0000000000000000 .LASF140 +00000000000262c4 l .debug_str 0000000000000000 .LASF141 +0000000000026a13 l .debug_str 0000000000000000 .LASF142 +00000000000263e0 l .debug_str 0000000000000000 .LASF143 +0000000000026220 l .debug_str 0000000000000000 .LASF144 +000000000002615b l .debug_str 0000000000000000 .LASF145 +0000000000026823 l .debug_str 0000000000000000 .LASF146 +0000000000026bbe l .debug_str 0000000000000000 .LASF147 +000000000002626d l .debug_str 0000000000000000 .LASF148 +0000000000026956 l .debug_str 0000000000000000 .LASF149 +0000000000026907 l .debug_str 0000000000000000 .LASF150 +000000000002618b l .debug_str 0000000000000000 .LASF151 +000000000002664f l .debug_str 0000000000000000 .LASF152 +0000000000026a3f l .debug_str 0000000000000000 .LASF153 +000000000002634e l .debug_str 0000000000000000 .LASF154 +00000000000263a7 l .debug_str 0000000000000000 .LASF155 +00000000000269ec l .debug_str 0000000000000000 .LASF156 +0000000000026a7c l .debug_str 0000000000000000 .LASF157 +00000000000264f1 l .debug_str 0000000000000000 .LASF158 +00000000000263c0 l .debug_str 0000000000000000 .LASF159 +0000000000026601 l .debug_str 0000000000000000 .LASF160 +0000000000026a07 l .debug_str 0000000000000000 .LASF161 +000000000002646a l .debug_str 0000000000000000 .LASF162 +0000000000026720 l .debug_str 0000000000000000 .LASF163 +000000000002684e l .debug_str 0000000000000000 .LASF164 +0000000000026786 l .debug_str 0000000000000000 .LASF165 +000000000002620f l .debug_str 0000000000000000 .LASF166 +000000000002654b l .debug_str 0000000000000000 .LASF167 +00000000000268f3 l .debug_str 0000000000000000 .LASF168 +0000000000026949 l .debug_str 0000000000000000 .LASF169 +0000000000026be1 l .debug_str 0000000000000000 .LASF170 +00000000000261de l .debug_str 0000000000000000 .LASF171 +00000000000267e8 l .debug_str 0000000000000000 .LASF172 +0000000000026202 l .debug_str 0000000000000000 .LASF173 +0000000000026bec l .debug_str 0000000000000000 .LASF174 +00000000000262fe l .debug_str 0000000000000000 .LASF175 +000000000002656c l .debug_str 0000000000000000 .LASF176 +000000000002623d l .debug_str 0000000000000000 .LASF177 +00000000000266ab l .debug_str 0000000000000000 .LASF178 +000000000002692f l .debug_str 0000000000000000 .LASF179 +0000000000026938 l .debug_str 0000000000000000 .LASF180 +000000000002683d l .debug_str 0000000000000000 .LASF181 +00000000000263f6 l .debug_str 0000000000000000 .LASF182 +00000000000265b9 l .debug_str 0000000000000000 .LASF183 +0000000000026401 l .debug_str 0000000000000000 .LASF189 +000000000000a656 l .text 0000000000000000 .LFB7 +000000000000a66a l .text 0000000000000000 .LFE7 +0000000000026155 l .debug_str 0000000000000000 .LASF184 +000000000001e955 l .debug_loc 0000000000000000 .LLST0 +00000000000268e8 l .debug_str 0000000000000000 .LASF185 +000000000001e98b l .debug_loc 0000000000000000 .LLST1 +000000000000a65a l .text 0000000000000000 .LBB4 +000000000000a666 l .text 0000000000000000 .LBE4 +000000000001e9c1 l .debug_loc 0000000000000000 .LLST2 +000000000001e9e6 l .debug_loc 0000000000000000 .LLST3 +000000000001ea1c l .debug_loc 0000000000000000 .LLST4 +0000000000026455 l .debug_str 0000000000000000 .LASF190 +000000000000a656 l .text 0000000000000000 .LVL0 +000000000000a65e l .text 0000000000000000 .LVL3 +000000000000a660 l .text 0000000000000000 .LVL4 +000000000000a65a l .text 0000000000000000 .LVL2 +000000000000a666 l .text 0000000000000000 .LVL5 +000000000000a658 l .text 0000000000000000 .LVL1 +000000000002ee78 l .debug_info 0000000000000000 .Ldebug_info0 +000000000000a656 l .text 0000000000000000 .L0 +000000000000a656 l .text 0000000000000000 .L0 +000000000000a656 l .text 0000000000000000 .L0 +000000000000a65a l .text 0000000000000000 .L0 +000000000000a65a l .text 0000000000000000 .L0 +000000000000a65e l .text 0000000000000000 .L0 +000000000000a65e l .text 0000000000000000 .L0 +000000000000a660 l .text 0000000000000000 .L0 +000000000000a660 l .text 0000000000000000 .L0 +000000000000a664 l .text 0000000000000000 .L0 +000000000000a666 l .text 0000000000000000 .L0 +000000000000a666 l .text 0000000000000000 .L0 +000000000000a66a l .text 0000000000000000 .L0 +0000000000003fc8 l .debug_frame 0000000000000000 .L0 +000000000000a656 l .text 0000000000000000 .L0 +000000000000a66a l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 PROXY_mkdir.c +000000000000db03 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000002746c l .debug_str 0000000000000000 .LASF152 +0000000000026e34 l .debug_str 0000000000000000 .LASF153 +00000000000272a9 l .debug_str 0000000000000000 .LASF154 +0000000000003680 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000002126e l .debug_line 0000000000000000 .Ldebug_line0 +0000000000026d89 l .debug_str 0000000000000000 .LASF0 +00000000000271bc l .debug_str 0000000000000000 .LASF1 +00000000000271f9 l .debug_str 0000000000000000 .LASF2 +0000000000026f97 l .debug_str 0000000000000000 .LASF3 +0000000000026f2d l .debug_str 0000000000000000 .LASF4 +0000000000026df6 l .debug_str 0000000000000000 .LASF5 +0000000000026f5b l .debug_str 0000000000000000 .LASF6 +0000000000027046 l .debug_str 0000000000000000 .LASF8 +0000000000026cf0 l .debug_str 0000000000000000 .LASF7 +0000000000026c61 l .debug_str 0000000000000000 .LASF9 +0000000000027465 l .debug_str 0000000000000000 .LASF10 +00000000000272d5 l .debug_str 0000000000000000 .LASF11 +00000000000270be l .debug_str 0000000000000000 .LASF12 +0000000000027266 l .debug_str 0000000000000000 .LASF13 +0000000000026efc l .debug_str 0000000000000000 .LASF14 +000000000002715c l .debug_str 0000000000000000 .LASF15 +00000000000275cb l .debug_str 0000000000000000 .LASF16 +0000000000026d4b l .debug_str 0000000000000000 .LASF17 +00000000000275b4 l .debug_str 0000000000000000 .LASF18 +00000000000270d7 l .debug_str 0000000000000000 .LASF19 +0000000000027431 l .debug_str 0000000000000000 .LASF20 +0000000000027373 l .debug_str 0000000000000000 .LASF21 +0000000000027360 l .debug_str 0000000000000000 .LASF22 +000000000002705c l .debug_str 0000000000000000 .LASF23 +0000000000027570 l .debug_str 0000000000000000 .LASF24 +0000000000026c75 l .debug_str 0000000000000000 .LASF25 +000000000002728f l .debug_str 0000000000000000 .LASF26 +00000000000270fa l .debug_str 0000000000000000 .LASF27 +000000000002727f l .debug_str 0000000000000000 .LASF28 +0000000000026f11 l .debug_str 0000000000000000 .LASF29 +0000000000026fd3 l .debug_str 0000000000000000 .LASF30 +000000000002717a l .debug_str 0000000000000000 .LASF31 +0000000000026de2 l .debug_str 0000000000000000 .LASF32 +0000000000026ffe l .debug_str 0000000000000000 .LASF33 +000000000002708c l .debug_str 0000000000000000 .LASF34 +0000000000026c90 l .debug_str 0000000000000000 .LASF35 +0000000000027445 l .debug_str 0000000000000000 .LASF36 +000000000002725a l .debug_str 0000000000000000 .LASF37 +000000000002730a l .debug_str 0000000000000000 .LASF38 +0000000000026d3b l .debug_str 0000000000000000 .LASF39 +000000000002724f l .debug_str 0000000000000000 .LASF40 +00000000000271e5 l .debug_str 0000000000000000 .LASF41 +0000000000026c2b l .debug_str 0000000000000000 .LASF42 +0000000000026f3a l .debug_str 0000000000000000 .LASF43 +00000000000271ca l .debug_str 0000000000000000 .LASF44 +0000000000026e6b l .debug_str 0000000000000000 .LASF45 +0000000000027407 l .debug_str 0000000000000000 .LASF46 +00000000000270af l .debug_str 0000000000000000 .LASF47 +0000000000026dad l .debug_str 0000000000000000 .LASF48 +0000000000026d2b l .debug_str 0000000000000000 .LASF49 +00000000000270e6 l .debug_str 0000000000000000 .LASF50 +0000000000026ccd l .debug_str 0000000000000000 .LASF51 +00000000000273a2 l .debug_str 0000000000000000 .LASF52 +0000000000026ee0 l .debug_str 0000000000000000 .LASF53 +0000000000026c50 l .debug_str 0000000000000000 .LASF54 +000000000002709e l .debug_str 0000000000000000 .LASF55 +0000000000026fb4 l .debug_str 0000000000000000 .LASF56 +000000000002751c l .debug_str 0000000000000000 .LASF57 +0000000000026f77 l .debug_str 0000000000000000 .LASF58 +000000000002704e l .debug_str 0000000000000000 .LASF59 +0000000000026e8e l .debug_str 0000000000000000 .LASF60 +0000000000027012 l .debug_str 0000000000000000 .LASF61 +0000000000026dbe l .debug_str 0000000000000000 .LASF62 +0000000000027566 l .debug_str 0000000000000000 .LASF63 +0000000000026d80 l .debug_str 0000000000000000 .LASF64 +0000000000026ef2 l .debug_str 0000000000000000 .LASF65 +0000000000026d21 l .debug_str 0000000000000000 .LASF66 +0000000000027121 l .debug_str 0000000000000000 .LASF67 +0000000000026c22 l .debug_str 0000000000000000 .LASF68 +0000000000026ce5 l .debug_str 0000000000000000 .LASF69 +0000000000026c9f l .debug_str 0000000000000000 .LASF70 +0000000000027021 l .debug_str 0000000000000000 .LASF71 +0000000000026dff l .debug_str 0000000000000000 .LASF72 +0000000000027172 l .debug_str 0000000000000000 .LASF73 +0000000000027203 l .debug_str 0000000000000000 .LASF74 +0000000000026f6d l .debug_str 0000000000000000 .LASF75 +0000000000027558 l .debug_str 0000000000000000 .LASF76 +0000000000026d76 l .debug_str 0000000000000000 .LASF77 +0000000000026ea6 l .debug_str 0000000000000000 .LASF78 +00000000000273fe l .debug_str 0000000000000000 .LASF79 +0000000000027167 l .debug_str 0000000000000000 .LASF80 +0000000000027592 l .debug_str 0000000000000000 .LASF81 +0000000000027398 l .debug_str 0000000000000000 .LASF82 +0000000000026c6b l .debug_str 0000000000000000 .LASF83 +000000000002703b l .debug_str 0000000000000000 .LASF84 +00000000000271d9 l .debug_str 0000000000000000 .LASF85 +00000000000273b4 l .debug_str 0000000000000000 .LASF86 +000000000002720c l .debug_str 0000000000000000 .LASF87 +0000000000026f07 l .debug_str 0000000000000000 .LASF88 +0000000000026ff4 l .debug_str 0000000000000000 .LASF89 +000000000002754d l .debug_str 0000000000000000 .LASF90 +0000000000027151 l .debug_str 0000000000000000 .LASF91 +0000000000026da3 l .debug_str 0000000000000000 .LASF92 +000000000002719d l .debug_str 0000000000000000 .LASF93 +0000000000026ec6 l .debug_str 0000000000000000 .LASF94 +0000000000026f21 l .debug_str 0000000000000000 .LASF95 +0000000000027540 l .debug_str 0000000000000000 .LASF96 +0000000000027272 l .debug_str 0000000000000000 .LASF97 +000000000002738d l .debug_str 0000000000000000 .LASF98 +0000000000026fc9 l .debug_str 0000000000000000 .LASF99 +0000000000026e9c l .debug_str 0000000000000000 .LASF100 +0000000000026faa l .debug_str 0000000000000000 .LASF101 +0000000000027354 l .debug_str 0000000000000000 .LASF102 +00000000000275d5 l .debug_str 0000000000000000 .LASF103 +0000000000027138 l .debug_str 0000000000000000 .LASF104 +0000000000026e7b l .debug_str 0000000000000000 .LASF105 +0000000000027106 l .debug_str 0000000000000000 .LASF106 +0000000000026d5e l .debug_str 0000000000000000 .LASF107 +00000000000273e8 l .debug_str 0000000000000000 .LASF108 +0000000000026e4a l .debug_str 0000000000000000 .LASF109 +0000000000026cba l .debug_str 0000000000000000 .LASF110 +00000000000271a8 l .debug_str 0000000000000000 .LASF111 +0000000000027215 l .debug_str 0000000000000000 .LASF112 +0000000000027581 l .debug_str 0000000000000000 .LASF113 +0000000000026d07 l .debug_str 0000000000000000 .LASF114 +000000000002733d l .debug_str 0000000000000000 .LASF115 +00000000000272ee l .debug_str 0000000000000000 .LASF116 +0000000000026c36 l .debug_str 0000000000000000 .LASF117 +0000000000027073 l .debug_str 0000000000000000 .LASF118 +0000000000027414 l .debug_str 0000000000000000 .LASF119 +0000000000026dc8 l .debug_str 0000000000000000 .LASF120 +0000000000026e0c l .debug_str 0000000000000000 .LASF121 +00000000000273c1 l .debug_str 0000000000000000 .LASF122 +0000000000027451 l .debug_str 0000000000000000 .LASF123 +0000000000026f48 l .debug_str 0000000000000000 .LASF124 +0000000000026e25 l .debug_str 0000000000000000 .LASF125 +000000000002702d l .debug_str 0000000000000000 .LASF126 +00000000000273dc l .debug_str 0000000000000000 .LASF127 +0000000000026ed1 l .debug_str 0000000000000000 .LASF128 +000000000002712c l .debug_str 0000000000000000 .LASF129 +0000000000027240 l .debug_str 0000000000000000 .LASF130 +0000000000027189 l .debug_str 0000000000000000 .LASF131 +0000000000026ca9 l .debug_str 0000000000000000 .LASF132 +0000000000026f89 l .debug_str 0000000000000000 .LASF133 +00000000000272da l .debug_str 0000000000000000 .LASF134 +0000000000027330 l .debug_str 0000000000000000 .LASF135 +000000000002759b l .debug_str 0000000000000000 .LASF136 +0000000000026c85 l .debug_str 0000000000000000 .LASF137 +00000000000271ee l .debug_str 0000000000000000 .LASF138 +0000000000026eaf l .debug_str 0000000000000000 .LASF139 +00000000000275a6 l .debug_str 0000000000000000 .LASF140 +0000000000026d95 l .debug_str 0000000000000000 .LASF141 +000000000002752e l .debug_str 0000000000000000 .LASF142 +0000000000026cd7 l .debug_str 0000000000000000 .LASF143 +00000000000270c8 l .debug_str 0000000000000000 .LASF144 +0000000000027316 l .debug_str 0000000000000000 .LASF145 +000000000002731f l .debug_str 0000000000000000 .LASF146 +000000000002722f l .debug_str 0000000000000000 .LASF147 +0000000000026e60 l .debug_str 0000000000000000 .LASF148 +0000000000026fe5 l .debug_str 0000000000000000 .LASF149 +0000000000026f55 l .debug_str 0000000000000000 .LASF155 +000000000000a66a l .text 0000000000000000 .LFB7 +000000000000a682 l .text 0000000000000000 .LFE7 +00000000000272c9 l .debug_str 0000000000000000 .LASF150 +000000000001ea52 l .debug_loc 0000000000000000 .LLST0 +00000000000272cf l .debug_str 0000000000000000 .LASF151 +000000000001ea88 l .debug_loc 0000000000000000 .LLST1 +000000000000a66e l .text 0000000000000000 .LBB4 +000000000000a67e l .text 0000000000000000 .LBE4 +000000000001eac1 l .debug_loc 0000000000000000 .LLST2 +000000000001eae6 l .debug_loc 0000000000000000 .LLST3 +000000000001eb11 l .debug_loc 0000000000000000 .LLST4 +0000000000026ebc l .debug_str 0000000000000000 .LASF156 +000000000000a66a l .text 0000000000000000 .LVL0 +000000000000a674 l .text 0000000000000000 .LVL3 +000000000000a676 l .text 0000000000000000 .LVL4 +000000000000a66e l .text 0000000000000000 .LVL1 +000000000000a67e l .text 0000000000000000 .LVL5 +000000000000a670 l .text 0000000000000000 .LVL2 +000000000002f4f2 l .debug_info 0000000000000000 .Ldebug_info0 +000000000000a66a l .text 0000000000000000 .L0 +000000000000a66a l .text 0000000000000000 .L0 +000000000000a66a l .text 0000000000000000 .L0 +000000000000a66e l .text 0000000000000000 .L0 +000000000000a66e l .text 0000000000000000 .L0 +000000000000a670 l .text 0000000000000000 .L0 +000000000000a674 l .text 0000000000000000 .L0 +000000000000a674 l .text 0000000000000000 .L0 +000000000000a676 l .text 0000000000000000 .L0 +000000000000a676 l .text 0000000000000000 .L0 +000000000000a678 l .text 0000000000000000 .L0 +000000000000a67c l .text 0000000000000000 .L0 +000000000000a67e l .text 0000000000000000 .L0 +000000000000a67e l .text 0000000000000000 .L0 +000000000000a682 l .text 0000000000000000 .L0 +0000000000003ff0 l .debug_frame 0000000000000000 .L0 +000000000000a66a l .text 0000000000000000 .L0 +000000000000a682 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 PROXY_mount.c +000000000000dbfa l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000027e35 l .debug_str 0000000000000000 .LASF154 +0000000000027d2d l .debug_str 0000000000000000 .LASF155 +0000000000027c63 l .debug_str 0000000000000000 .LASF156 +00000000000036a0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +00000000000213dc l .debug_line 0000000000000000 .Ldebug_line0 +0000000000027759 l .debug_str 0000000000000000 .LASF0 +0000000000027b76 l .debug_str 0000000000000000 .LASF1 +0000000000027bb3 l .debug_str 0000000000000000 .LASF2 +0000000000027947 l .debug_str 0000000000000000 .LASF3 +00000000000278e3 l .debug_str 0000000000000000 .LASF4 +00000000000277c6 l .debug_str 0000000000000000 .LASF5 +000000000002790b l .debug_str 0000000000000000 .LASF6 +00000000000279f6 l .debug_str 0000000000000000 .LASF8 +00000000000276c0 l .debug_str 0000000000000000 .LASF7 +0000000000027631 l .debug_str 0000000000000000 .LASF9 +0000000000027c8f l .debug_str 0000000000000000 .LASF10 +0000000000027a6e l .debug_str 0000000000000000 .LASF11 +0000000000027c20 l .debug_str 0000000000000000 .LASF12 +00000000000278b2 l .debug_str 0000000000000000 .LASF13 +0000000000027b16 l .debug_str 0000000000000000 .LASF14 +0000000000027f94 l .debug_str 0000000000000000 .LASF15 +000000000002771b l .debug_str 0000000000000000 .LASF16 +0000000000027f7d l .debug_str 0000000000000000 .LASF17 +0000000000027a87 l .debug_str 0000000000000000 .LASF18 +0000000000027e01 l .debug_str 0000000000000000 .LASF19 +0000000000027d43 l .debug_str 0000000000000000 .LASF20 +0000000000027d1a l .debug_str 0000000000000000 .LASF21 +0000000000027a0c l .debug_str 0000000000000000 .LASF22 +0000000000027f39 l .debug_str 0000000000000000 .LASF23 +0000000000027645 l .debug_str 0000000000000000 .LASF24 +0000000000027c49 l .debug_str 0000000000000000 .LASF25 +0000000000027ab4 l .debug_str 0000000000000000 .LASF26 +0000000000027c39 l .debug_str 0000000000000000 .LASF27 +00000000000278c7 l .debug_str 0000000000000000 .LASF28 +0000000000027983 l .debug_str 0000000000000000 .LASF29 +0000000000027b34 l .debug_str 0000000000000000 .LASF30 +00000000000277b2 l .debug_str 0000000000000000 .LASF31 +00000000000279ae l .debug_str 0000000000000000 .LASF32 +0000000000027a3c l .debug_str 0000000000000000 .LASF33 +0000000000027660 l .debug_str 0000000000000000 .LASF34 +0000000000027e15 l .debug_str 0000000000000000 .LASF35 +0000000000027c14 l .debug_str 0000000000000000 .LASF36 +0000000000027cc4 l .debug_str 0000000000000000 .LASF37 +000000000002770b l .debug_str 0000000000000000 .LASF38 +0000000000027c09 l .debug_str 0000000000000000 .LASF39 +0000000000027b9f l .debug_str 0000000000000000 .LASF40 +00000000000275fb l .debug_str 0000000000000000 .LASF41 +00000000000278f0 l .debug_str 0000000000000000 .LASF42 +0000000000027b84 l .debug_str 0000000000000000 .LASF43 +0000000000027825 l .debug_str 0000000000000000 .LASF44 +0000000000027dd7 l .debug_str 0000000000000000 .LASF45 +0000000000027a5f l .debug_str 0000000000000000 .LASF46 +000000000002777d l .debug_str 0000000000000000 .LASF47 +00000000000276fb l .debug_str 0000000000000000 .LASF48 +0000000000027a96 l .debug_str 0000000000000000 .LASF49 +000000000002769d l .debug_str 0000000000000000 .LASF50 +0000000000027d72 l .debug_str 0000000000000000 .LASF51 +0000000000027896 l .debug_str 0000000000000000 .LASF52 +0000000000027620 l .debug_str 0000000000000000 .LASF53 +0000000000027a4e l .debug_str 0000000000000000 .LASF54 +0000000000027964 l .debug_str 0000000000000000 .LASF55 +0000000000027ee5 l .debug_str 0000000000000000 .LASF56 +0000000000027927 l .debug_str 0000000000000000 .LASF57 +00000000000279fe l .debug_str 0000000000000000 .LASF58 +0000000000027848 l .debug_str 0000000000000000 .LASF59 +00000000000279c2 l .debug_str 0000000000000000 .LASF60 +000000000002778e l .debug_str 0000000000000000 .LASF61 +0000000000027f2f l .debug_str 0000000000000000 .LASF62 +0000000000027750 l .debug_str 0000000000000000 .LASF63 +00000000000278a8 l .debug_str 0000000000000000 .LASF64 +00000000000276f1 l .debug_str 0000000000000000 .LASF65 +0000000000027adb l .debug_str 0000000000000000 .LASF66 +00000000000275f2 l .debug_str 0000000000000000 .LASF67 +00000000000276b5 l .debug_str 0000000000000000 .LASF68 +000000000002766f l .debug_str 0000000000000000 .LASF69 +00000000000279d1 l .debug_str 0000000000000000 .LASF70 +00000000000277cf l .debug_str 0000000000000000 .LASF71 +0000000000027b2c l .debug_str 0000000000000000 .LASF72 +0000000000027bbd l .debug_str 0000000000000000 .LASF73 +000000000002791d l .debug_str 0000000000000000 .LASF74 +0000000000027f21 l .debug_str 0000000000000000 .LASF75 +0000000000027746 l .debug_str 0000000000000000 .LASF76 +0000000000027860 l .debug_str 0000000000000000 .LASF77 +0000000000027dce l .debug_str 0000000000000000 .LASF78 +0000000000027b21 l .debug_str 0000000000000000 .LASF79 +0000000000027f5b l .debug_str 0000000000000000 .LASF80 +0000000000027d68 l .debug_str 0000000000000000 .LASF81 +000000000002763b l .debug_str 0000000000000000 .LASF82 +00000000000279eb l .debug_str 0000000000000000 .LASF83 +0000000000027b93 l .debug_str 0000000000000000 .LASF84 +0000000000027d84 l .debug_str 0000000000000000 .LASF85 +0000000000027bc6 l .debug_str 0000000000000000 .LASF86 +00000000000278bd l .debug_str 0000000000000000 .LASF87 +00000000000279a4 l .debug_str 0000000000000000 .LASF88 +0000000000027f16 l .debug_str 0000000000000000 .LASF89 +0000000000027b0b l .debug_str 0000000000000000 .LASF90 +0000000000027773 l .debug_str 0000000000000000 .LASF91 +0000000000027b57 l .debug_str 0000000000000000 .LASF92 +0000000000027876 l .debug_str 0000000000000000 .LASF93 +00000000000278d7 l .debug_str 0000000000000000 .LASF94 +0000000000027f09 l .debug_str 0000000000000000 .LASF95 +0000000000027c2c l .debug_str 0000000000000000 .LASF96 +0000000000027d5d l .debug_str 0000000000000000 .LASF97 +0000000000027979 l .debug_str 0000000000000000 .LASF98 +0000000000027856 l .debug_str 0000000000000000 .LASF99 +000000000002795a l .debug_str 0000000000000000 .LASF100 +0000000000027d0e l .debug_str 0000000000000000 .LASF101 +0000000000027f9e l .debug_str 0000000000000000 .LASF102 +0000000000027af2 l .debug_str 0000000000000000 .LASF103 +0000000000027835 l .debug_str 0000000000000000 .LASF104 +0000000000027ac0 l .debug_str 0000000000000000 .LASF105 +000000000002772e l .debug_str 0000000000000000 .LASF106 +0000000000027db8 l .debug_str 0000000000000000 .LASF107 +0000000000027804 l .debug_str 0000000000000000 .LASF108 +000000000002768a l .debug_str 0000000000000000 .LASF109 +0000000000027b62 l .debug_str 0000000000000000 .LASF110 +0000000000027bcf l .debug_str 0000000000000000 .LASF111 +0000000000027f4a l .debug_str 0000000000000000 .LASF112 +00000000000276d7 l .debug_str 0000000000000000 .LASF113 +0000000000027cf7 l .debug_str 0000000000000000 .LASF114 +0000000000027ca8 l .debug_str 0000000000000000 .LASF115 +0000000000027606 l .debug_str 0000000000000000 .LASF116 +0000000000027a23 l .debug_str 0000000000000000 .LASF117 +0000000000027de4 l .debug_str 0000000000000000 .LASF118 +0000000000027798 l .debug_str 0000000000000000 .LASF119 +00000000000277dc l .debug_str 0000000000000000 .LASF120 +0000000000027d91 l .debug_str 0000000000000000 .LASF121 +0000000000027e21 l .debug_str 0000000000000000 .LASF122 +00000000000278fe l .debug_str 0000000000000000 .LASF123 +00000000000277f5 l .debug_str 0000000000000000 .LASF124 +00000000000279dd l .debug_str 0000000000000000 .LASF125 +0000000000027dac l .debug_str 0000000000000000 .LASF126 +0000000000027887 l .debug_str 0000000000000000 .LASF127 +0000000000027ae6 l .debug_str 0000000000000000 .LASF128 +0000000000027bfa l .debug_str 0000000000000000 .LASF129 +0000000000027b43 l .debug_str 0000000000000000 .LASF130 +0000000000027679 l .debug_str 0000000000000000 .LASF131 +0000000000027939 l .debug_str 0000000000000000 .LASF132 +0000000000027c94 l .debug_str 0000000000000000 .LASF133 +0000000000027cea l .debug_str 0000000000000000 .LASF134 +0000000000027f64 l .debug_str 0000000000000000 .LASF135 +0000000000027655 l .debug_str 0000000000000000 .LASF136 +0000000000027ba8 l .debug_str 0000000000000000 .LASF137 +0000000000027869 l .debug_str 0000000000000000 .LASF138 +0000000000027f6f l .debug_str 0000000000000000 .LASF139 +0000000000027765 l .debug_str 0000000000000000 .LASF140 +0000000000027ef7 l .debug_str 0000000000000000 .LASF141 +00000000000276a7 l .debug_str 0000000000000000 .LASF142 +0000000000027a78 l .debug_str 0000000000000000 .LASF143 +0000000000027cd0 l .debug_str 0000000000000000 .LASF144 +0000000000027cd9 l .debug_str 0000000000000000 .LASF145 +0000000000027be9 l .debug_str 0000000000000000 .LASF146 +000000000002781a l .debug_str 0000000000000000 .LASF147 +0000000000027995 l .debug_str 0000000000000000 .LASF148 +0000000000027881 l .debug_str 0000000000000000 .LASF157 +000000000000a682 l .text 0000000000000000 .LFB7 +000000000000a6a2 l .text 0000000000000000 .LFE7 +0000000000027c83 l .debug_str 0000000000000000 .LASF149 +000000000001eb47 l .debug_loc 0000000000000000 .LLST0 +0000000000027c89 l .debug_str 0000000000000000 .LASF150 +000000000001eb7d l .debug_loc 0000000000000000 .LLST1 +00000000000275e0 l .debug_str 0000000000000000 .LASF151 +000000000001ebb3 l .debug_loc 0000000000000000 .LLST2 +00000000000275e6 l .debug_str 0000000000000000 .LASF152 +000000000001ebe9 l .debug_loc 0000000000000000 .LLST3 +00000000000275ec l .debug_str 0000000000000000 .LASF153 +000000000001ec1f l .debug_loc 0000000000000000 .LLST4 +000000000000a68c l .text 0000000000000000 .LBB4 +000000000000a69e l .text 0000000000000000 .LBE4 +000000000001ec55 l .debug_loc 0000000000000000 .LLST5 +000000000001ec7a l .debug_loc 0000000000000000 .LLST6 +000000000001ecb0 l .debug_loc 0000000000000000 .LLST7 +000000000001ece6 l .debug_loc 0000000000000000 .LLST8 +000000000001ed1c l .debug_loc 0000000000000000 .LLST9 +000000000001ed52 l .debug_loc 0000000000000000 .LLST10 +0000000000027aaa l .debug_str 0000000000000000 .LASF158 +000000000000a682 l .text 0000000000000000 .LVL0 +000000000000a690 l .text 0000000000000000 .LVL6 +000000000000a692 l .text 0000000000000000 .LVL7 +000000000000a694 l .text 0000000000000000 .LVL8 +000000000000a696 l .text 0000000000000000 .LVL9 +000000000000a698 l .text 0000000000000000 .LVL10 +000000000000a68c l .text 0000000000000000 .LVL5 +000000000000a69e l .text 0000000000000000 .LVL11 +000000000000a68a l .text 0000000000000000 .LVL4 +000000000000a688 l .text 0000000000000000 .LVL3 +000000000000a686 l .text 0000000000000000 .LVL2 +000000000000a684 l .text 0000000000000000 .LVL1 +000000000002f9bb l .debug_info 0000000000000000 .Ldebug_info0 +000000000000a682 l .text 0000000000000000 .L0 +000000000000a682 l .text 0000000000000000 .L0 +000000000000a682 l .text 0000000000000000 .L0 +000000000000a68c l .text 0000000000000000 .L0 +000000000000a68c l .text 0000000000000000 .L0 +000000000000a690 l .text 0000000000000000 .L0 +000000000000a690 l .text 0000000000000000 .L0 +000000000000a692 l .text 0000000000000000 .L0 +000000000000a692 l .text 0000000000000000 .L0 +000000000000a694 l .text 0000000000000000 .L0 +000000000000a694 l .text 0000000000000000 .L0 +000000000000a696 l .text 0000000000000000 .L0 +000000000000a696 l .text 0000000000000000 .L0 +000000000000a698 l .text 0000000000000000 .L0 +000000000000a698 l .text 0000000000000000 .L0 +000000000000a69c l .text 0000000000000000 .L0 +000000000000a69e l .text 0000000000000000 .L0 +000000000000a69e l .text 0000000000000000 .L0 +000000000000a6a2 l .text 0000000000000000 .L0 +0000000000004018 l .debug_frame 0000000000000000 .L0 +000000000000a682 l .text 0000000000000000 .L0 +000000000000a6a2 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 PROXY_nx_pthread_create.c +000000000000dcf6 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +00000000000280c0 l .debug_str 0000000000000000 .LASF172 +0000000000028228 l .debug_str 0000000000000000 .LASF173 +000000000002875d l .debug_str 0000000000000000 .LASF174 +00000000000036c0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000021562 l .debug_line 0000000000000000 .Ldebug_line0 +0000000000028979 l .debug_str 0000000000000000 .LASF0 +0000000000028985 l .debug_str 0000000000000000 .LASF7 +00000000000288ab l .debug_str 0000000000000000 .LASF1 +0000000000028741 l .debug_str 0000000000000000 .LASF2 +000000000002898e l .debug_str 0000000000000000 .LASF3 +0000000000028047 l .debug_str 0000000000000000 .LASF4 +00000000000287a1 l .debug_str 0000000000000000 .LASF5 +0000000000028869 l .debug_str 0000000000000000 .LASF6 +0000000000028320 l .debug_str 0000000000000000 .LASF8 +00000000000282c1 l .debug_str 0000000000000000 .LASF9 +000000000002856f l .debug_str 0000000000000000 .LASF10 +000000000002884a l .debug_str 0000000000000000 .LASF11 +00000000000283d4 l .debug_str 0000000000000000 .LASF12 +00000000000285bd l .debug_str 0000000000000000 .LASF13 +00000000000284da l .debug_str 0000000000000000 .LASF14 +0000000000028703 l .debug_str 0000000000000000 .LASF15 +00000000000285c3 l .debug_str 0000000000000000 .LASF16 +0000000000028196 l .debug_str 0000000000000000 .LASF17 +0000000000028351 l .debug_str 0000000000000000 .LASF175 +00000000000287c7 l .debug_str 0000000000000000 .LASF18 +000000000002826d l .debug_str 0000000000000000 .LASF19 +00000000000287ec l .debug_str 0000000000000000 .LASF20 +00000000000281ab l .debug_str 0000000000000000 .LASF21 +000000000002827d l .debug_str 0000000000000000 .LASF22 +0000000000027fc5 l .debug_str 0000000000000000 .LASF23 +0000000000028360 l .debug_str 0000000000000000 .LASF24 +0000000000028014 l .debug_str 0000000000000000 .LASF25 +0000000000028409 l .debug_str 0000000000000000 .LASF26 +0000000000028596 l .debug_str 0000000000000000 .LASF27 +00000000000286ed l .debug_str 0000000000000000 .LASF28 +0000000000028805 l .debug_str 0000000000000000 .LASF29 +00000000000285b1 l .debug_str 0000000000000000 .LASF30 +00000000000280b5 l .debug_str 0000000000000000 .LASF31 +00000000000288d9 l .debug_str 0000000000000000 .LASF32 +00000000000287bd l .debug_str 0000000000000000 .LASF33 +000000000002842a l .debug_str 0000000000000000 .LASF34 +00000000000282e5 l .debug_str 0000000000000000 .LASF35 +000000000002877d l .debug_str 0000000000000000 .LASF36 +000000000002820a l .debug_str 0000000000000000 .LASF37 +00000000000289be l .debug_str 0000000000000000 .LASF38 +0000000000028821 l .debug_str 0000000000000000 .LASF39 +00000000000285e8 l .debug_str 0000000000000000 .LASF40 +0000000000028544 l .debug_str 0000000000000000 .LASF41 +000000000002887b l .debug_str 0000000000000000 .LASF42 +000000000002836f l .debug_str 0000000000000000 .LASF43 +00000000000281f3 l .debug_str 0000000000000000 .LASF44 +0000000000028341 l .debug_str 0000000000000000 .LASF45 +00000000000281e3 l .debug_str 0000000000000000 .LASF46 +000000000002865b l .debug_str 0000000000000000 .LASF47 +0000000000028a07 l .debug_str 0000000000000000 .LASF48 +00000000000282ad l .debug_str 0000000000000000 .LASF49 +000000000002805f l .debug_str 0000000000000000 .LASF50 +00000000000288b9 l .debug_str 0000000000000000 .LASF51 +0000000000028092 l .debug_str 0000000000000000 .LASF52 +00000000000284ba l .debug_str 0000000000000000 .LASF53 +0000000000028389 l .debug_str 0000000000000000 .LASF54 +0000000000028834 l .debug_str 0000000000000000 .LASF55 +00000000000281d3 l .debug_str 0000000000000000 .LASF56 +000000000002830b l .debug_str 0000000000000000 .LASF57 +00000000000289d8 l .debug_str 0000000000000000 .LASF58 +0000000000028643 l .debug_str 0000000000000000 .LASF59 +0000000000028690 l .debug_str 0000000000000000 .LASF60 +00000000000284e9 l .debug_str 0000000000000000 .LASF61 +0000000000028287 l .debug_str 0000000000000000 .LASF62 +00000000000285a4 l .debug_str 0000000000000000 .LASF63 +0000000000028187 l .debug_str 0000000000000000 .LASF64 +0000000000027fb4 l .debug_str 0000000000000000 .LASF65 +00000000000287dc l .debug_str 0000000000000000 .LASF66 +0000000000027fee l .debug_str 0000000000000000 .LASF67 +00000000000284df l .debug_str 0000000000000000 .LASF68 +000000000002874b l .debug_str 0000000000000000 .LASF69 +00000000000289ac l .debug_str 0000000000000000 .LASF70 +00000000000281c2 l .debug_str 0000000000000000 .LASF71 +00000000000289eb l .debug_str 0000000000000000 .LASF72 +000000000002878c l .debug_str 0000000000000000 .LASF73 +0000000000028493 l .debug_str 0000000000000000 .LASF74 +0000000000028002 l .debug_str 0000000000000000 .LASF75 +000000000002851c l .debug_str 0000000000000000 .LASF76 +00000000000288fc l .debug_str 0000000000000000 .LASF77 +0000000000028395 l .debug_str 0000000000000000 .LASF78 +0000000000028577 l .debug_str 0000000000000000 .LASF79 +00000000000284b0 l .debug_str 0000000000000000 .LASF80 +0000000000028738 l .debug_str 0000000000000000 .LASF81 +00000000000286f9 l .debug_str 0000000000000000 .LASF82 +00000000000282a3 l .debug_str 0000000000000000 .LASF83 +000000000002801e l .debug_str 0000000000000000 .LASF84 +0000000000028274 l .debug_str 0000000000000000 .LASF85 +0000000000027fa9 l .debug_str 0000000000000000 .LASF86 +0000000000028854 l .debug_str 0000000000000000 .LASF87 +00000000000287d0 l .debug_str 0000000000000000 .LASF88 +0000000000028a35 l .debug_str 0000000000000000 .LASF89 +0000000000028a42 l .debug_str 0000000000000000 .LASF90 +00000000000288f3 l .debug_str 0000000000000000 .LASF91 +0000000000028948 l .debug_str 0000000000000000 .LASF92 +00000000000285da l .debug_str 0000000000000000 .LASF93 +000000000002858c l .debug_str 0000000000000000 .LASF94 +0000000000028a2c l .debug_str 0000000000000000 .LASF95 +0000000000028678 l .debug_str 0000000000000000 .LASF96 +000000000002866d l .debug_str 0000000000000000 .LASF97 +00000000000286b9 l .debug_str 0000000000000000 .LASF98 +000000000002821e l .debug_str 0000000000000000 .LASF99 +0000000000028316 l .debug_str 0000000000000000 .LASF100 +00000000000289a1 l .debug_str 0000000000000000 .LASF101 +00000000000287f9 l .debug_str 0000000000000000 .LASF102 +000000000002845e l .debug_str 0000000000000000 .LASF103 +0000000000027fe5 l .debug_str 0000000000000000 .LASF104 +0000000000028073 l .debug_str 0000000000000000 .LASF105 +000000000002807d l .debug_str 0000000000000000 .LASF106 +0000000000028054 l .debug_str 0000000000000000 .LASF107 +0000000000028581 l .debug_str 0000000000000000 .LASF108 +00000000000284f8 l .debug_str 0000000000000000 .LASF109 +00000000000284a5 l .debug_str 0000000000000000 .LASF110 +000000000002885e l .debug_str 0000000000000000 .LASF111 +0000000000028029 l .debug_str 0000000000000000 .LASF112 +00000000000282d8 l .debug_str 0000000000000000 .LASF113 +0000000000028a5b l .debug_str 0000000000000000 .LASF114 +0000000000028a4a l .debug_str 0000000000000000 .LASF115 +0000000000028840 l .debug_str 0000000000000000 .LASF116 +000000000002847c l .debug_str 0000000000000000 .LASF117 +000000000002872e l .debug_str 0000000000000000 .LASF118 +0000000000028297 l .debug_str 0000000000000000 .LASF119 +00000000000283fe l .debug_str 0000000000000000 .LASF120 +0000000000028328 l .debug_str 0000000000000000 .LASF121 +00000000000287aa l .debug_str 0000000000000000 .LASF122 +000000000002869e l .debug_str 0000000000000000 .LASF123 +00000000000283bc l .debug_str 0000000000000000 .LASF124 +0000000000027fcf l .debug_str 0000000000000000 .LASF125 +0000000000028a16 l .debug_str 0000000000000000 .LASF126 +000000000002844b l .debug_str 0000000000000000 .LASF127 +00000000000280a1 l .debug_str 0000000000000000 .LASF128 +00000000000286c2 l .debug_str 0000000000000000 .LASF129 +000000000002888b l .debug_str 0000000000000000 .LASF130 +000000000002852a l .debug_str 0000000000000000 .LASF131 +0000000000028170 l .debug_str 0000000000000000 .LASF132 +0000000000028712 l .debug_str 0000000000000000 .LASF133 +0000000000028629 l .debug_str 0000000000000000 .LASF134 +0000000000028960 l .debug_str 0000000000000000 .LASF135 +000000000002860c l .debug_str 0000000000000000 .LASF136 +0000000000028502 l .debug_str 0000000000000000 .LASF137 +000000000002892f l .debug_str 0000000000000000 .LASF138 +000000000002840f l .debug_str 0000000000000000 .LASF139 +00000000000284c6 l .debug_str 0000000000000000 .LASF140 +0000000000028486 l .debug_str 0000000000000000 .LASF141 +00000000000283ef l .debug_str 0000000000000000 .LASF142 +000000000002843d l .debug_str 0000000000000000 .LASF143 +000000000002824a l .debug_str 0000000000000000 .LASF144 +00000000000282fc l .debug_str 0000000000000000 .LASF145 +0000000000028555 l .debug_str 0000000000000000 .LASF146 +000000000002889c l .debug_str 0000000000000000 .LASF147 +00000000000283db l .debug_str 0000000000000000 .LASF148 +000000000002846b l .debug_str 0000000000000000 .LASF149 +00000000000288cb l .debug_str 0000000000000000 .LASF150 +000000000002890a l .debug_str 0000000000000000 .LASF151 +00000000000285ff l .debug_str 0000000000000000 .LASF152 +0000000000028087 l .debug_str 0000000000000000 .LASF153 +00000000000289fc l .debug_str 0000000000000000 .LASF154 +00000000000281ff l .debug_str 0000000000000000 .LASF155 +000000000002864e l .debug_str 0000000000000000 .LASF156 +0000000000028561 l .debug_str 0000000000000000 .LASF157 +0000000000028256 l .debug_str 0000000000000000 .LASF158 +000000000002880f l .debug_str 0000000000000000 .LASF159 +0000000000028952 l .debug_str 0000000000000000 .LASF160 +0000000000028681 l .debug_str 0000000000000000 .LASF161 +0000000000028264 l .debug_str 0000000000000000 .LASF162 +00000000000286dc l .debug_str 0000000000000000 .LASF163 +000000000002891e l .debug_str 0000000000000000 .LASF164 +00000000000281b7 l .debug_str 0000000000000000 .LASF165 +00000000000288e4 l .debug_str 0000000000000000 .LASF166 +0000000000028035 l .debug_str 0000000000000000 .LASF176 +000000000000a6a2 l .text 0000000000000000 .LFB7 +000000000000a6c2 l .text 0000000000000000 .LFE7 +0000000000028a55 l .debug_str 0000000000000000 .LASF167 +000000000001ed88 l .debug_loc 0000000000000000 .LLST0 +00000000000283a4 l .debug_str 0000000000000000 .LASF168 +000000000001edbe l .debug_loc 0000000000000000 .LLST1 +00000000000283aa l .debug_str 0000000000000000 .LASF169 +000000000001edf4 l .debug_loc 0000000000000000 .LLST2 +00000000000283b0 l .debug_str 0000000000000000 .LASF170 +000000000001ee2a l .debug_loc 0000000000000000 .LLST3 +00000000000283b6 l .debug_str 0000000000000000 .LASF171 +000000000001ee60 l .debug_loc 0000000000000000 .LLST4 +000000000000a6ac l .text 0000000000000000 .LBB4 +000000000000a6be l .text 0000000000000000 .LBE4 +000000000001ee96 l .debug_loc 0000000000000000 .LLST5 +000000000001eebb l .debug_loc 0000000000000000 .LLST6 +000000000001eef1 l .debug_loc 0000000000000000 .LLST7 +000000000001ef27 l .debug_loc 0000000000000000 .LLST8 +000000000001ef5d l .debug_loc 0000000000000000 .LLST9 +000000000001ef93 l .debug_loc 0000000000000000 .LLST10 +00000000000289e1 l .debug_str 0000000000000000 .LASF177 +000000000000a6a2 l .text 0000000000000000 .LVL0 +000000000000a6b0 l .text 0000000000000000 .LVL6 +000000000000a6b2 l .text 0000000000000000 .LVL7 +000000000000a6b4 l .text 0000000000000000 .LVL8 +000000000000a6b6 l .text 0000000000000000 .LVL9 +000000000000a6b8 l .text 0000000000000000 .LVL10 +000000000000a6ac l .text 0000000000000000 .LVL5 +000000000000a6be l .text 0000000000000000 .LVL11 +000000000000a6aa l .text 0000000000000000 .LVL4 +000000000000a6a8 l .text 0000000000000000 .LVL3 +000000000000a6a6 l .text 0000000000000000 .LVL2 +000000000000a6a4 l .text 0000000000000000 .LVL1 +000000000002ff31 l .debug_info 0000000000000000 .Ldebug_info0 +000000000000a6a2 l .text 0000000000000000 .L0 +000000000000a6a2 l .text 0000000000000000 .L0 +000000000000a6a2 l .text 0000000000000000 .L0 +000000000000a6ac l .text 0000000000000000 .L0 +000000000000a6ac l .text 0000000000000000 .L0 +000000000000a6b0 l .text 0000000000000000 .L0 +000000000000a6b0 l .text 0000000000000000 .L0 +000000000000a6b2 l .text 0000000000000000 .L0 +000000000000a6b2 l .text 0000000000000000 .L0 +000000000000a6b4 l .text 0000000000000000 .L0 +000000000000a6b4 l .text 0000000000000000 .L0 +000000000000a6b6 l .text 0000000000000000 .L0 +000000000000a6b6 l .text 0000000000000000 .L0 +000000000000a6b8 l .text 0000000000000000 .L0 +000000000000a6b8 l .text 0000000000000000 .L0 +000000000000a6bc l .text 0000000000000000 .L0 +000000000000a6be l .text 0000000000000000 .L0 +000000000000a6be l .text 0000000000000000 .L0 +000000000000a6c2 l .text 0000000000000000 .L0 +0000000000004040 l .debug_frame 0000000000000000 .L0 +000000000000a6a2 l .text 0000000000000000 .L0 +000000000000a6c2 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 PROXY_nx_vsyslog.c +000000000000de31 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000029107 l .debug_str 0000000000000000 .LASF157 +00000000000290a0 l .debug_str 0000000000000000 .LASF158 +00000000000293c9 l .debug_str 0000000000000000 .LASF159 +00000000000036e0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000021734 l .debug_line 0000000000000000 .Ldebug_line0 +0000000000028bf5 l .debug_str 0000000000000000 .LASF0 +00000000000290c1 l .debug_str 0000000000000000 .LASF1 +0000000000028cde l .debug_str 0000000000000000 .LASF2 +0000000000028e29 l .debug_str 0000000000000000 .LASF3 +0000000000028ddc l .debug_str 0000000000000000 .LASF4 +0000000000028c8b l .debug_str 0000000000000000 .LASF5 +0000000000028c2a l .debug_str 0000000000000000 .LASF6 +0000000000028eee l .debug_str 0000000000000000 .LASF8 +0000000000028c3c l .debug_str 0000000000000000 .LASF7 +0000000000029021 l .debug_str 0000000000000000 .LASF9 +000000000002926c l .debug_str 0000000000000000 .LASF10 +0000000000028f98 l .debug_str 0000000000000000 .LASF11 +0000000000028ca1 l .debug_str 0000000000000000 .LASF160 +0000000000028b03 l .debug_str 0000000000000000 .LASF12 +0000000000028be7 l .debug_str 0000000000000000 .LASF13 +0000000000028f7d l .debug_str 0000000000000000 .LASF14 +00000000000290bb l .debug_str 0000000000000000 .LASF15 +0000000000028f73 l .debug_str 0000000000000000 .LASF16 +0000000000029218 l .debug_str 0000000000000000 .LASF17 +0000000000028dab l .debug_str 0000000000000000 .LASF18 +0000000000029036 l .debug_str 0000000000000000 .LASF19 +0000000000028db6 l .debug_str 0000000000000000 .LASF20 +0000000000028ba9 l .debug_str 0000000000000000 .LASF21 +0000000000028e65 l .debug_str 0000000000000000 .LASF22 +0000000000028fa7 l .debug_str 0000000000000000 .LASF23 +0000000000029395 l .debug_str 0000000000000000 .LASF24 +0000000000028b52 l .debug_str 0000000000000000 .LASF25 +00000000000292e6 l .debug_str 0000000000000000 .LASF26 +0000000000028f04 l .debug_str 0000000000000000 .LASF27 +0000000000029430 l .debug_str 0000000000000000 .LASF28 +0000000000028aca l .debug_str 0000000000000000 .LASF29 +0000000000029241 l .debug_str 0000000000000000 .LASF30 +0000000000028fca l .debug_str 0000000000000000 .LASF31 +0000000000029231 l .debug_str 0000000000000000 .LASF32 +0000000000028dc0 l .debug_str 0000000000000000 .LASF33 +0000000000028e87 l .debug_str 0000000000000000 .LASF34 +0000000000028abb l .debug_str 0000000000000000 .LASF35 +0000000000028c77 l .debug_str 0000000000000000 .LASF36 +0000000000028eb2 l .debug_str 0000000000000000 .LASF37 +0000000000028f41 l .debug_str 0000000000000000 .LASF38 +0000000000028ae5 l .debug_str 0000000000000000 .LASF39 +00000000000293a9 l .debug_str 0000000000000000 .LASF40 +000000000002920c l .debug_str 0000000000000000 .LASF41 +000000000002904b l .debug_str 0000000000000000 .LASF42 +00000000000291b7 l .debug_str 0000000000000000 .LASF43 +0000000000029201 l .debug_str 0000000000000000 .LASF44 +00000000000290ea l .debug_str 0000000000000000 .LASF45 +0000000000028a77 l .debug_str 0000000000000000 .LASF46 +000000000002905f l .debug_str 0000000000000000 .LASF47 +00000000000290cf l .debug_str 0000000000000000 .LASF48 +0000000000028d1a l .debug_str 0000000000000000 .LASF49 +000000000002936b l .debug_str 0000000000000000 .LASF50 +0000000000028f64 l .debug_str 0000000000000000 .LASF51 +0000000000028c19 l .debug_str 0000000000000000 .LASF52 +0000000000028b90 l .debug_str 0000000000000000 .LASF53 +0000000000028fb6 l .debug_str 0000000000000000 .LASF54 +0000000000028b2f l .debug_str 0000000000000000 .LASF55 +0000000000028cb3 l .debug_str 0000000000000000 .LASF56 +0000000000028d8f l .debug_str 0000000000000000 .LASF57 +0000000000028a9c l .debug_str 0000000000000000 .LASF58 +0000000000028f53 l .debug_str 0000000000000000 .LASF59 +0000000000028e46 l .debug_str 0000000000000000 .LASF60 +00000000000293e9 l .debug_str 0000000000000000 .LASF61 +0000000000028e09 l .debug_str 0000000000000000 .LASF62 +0000000000028ef6 l .debug_str 0000000000000000 .LASF63 +0000000000028d3d l .debug_str 0000000000000000 .LASF64 +0000000000028ec6 l .debug_str 0000000000000000 .LASF65 +0000000000028c53 l .debug_str 0000000000000000 .LASF66 +0000000000029426 l .debug_str 0000000000000000 .LASF67 +0000000000028bde l .debug_str 0000000000000000 .LASF68 +0000000000028da1 l .debug_str 0000000000000000 .LASF69 +0000000000028b86 l .debug_str 0000000000000000 .LASF70 +0000000000028ff1 l .debug_str 0000000000000000 .LASF71 +0000000000028a6e l .debug_str 0000000000000000 .LASF72 +0000000000028b47 l .debug_str 0000000000000000 .LASF73 +000000000002945d l .debug_str 0000000000000000 .LASF74 +00000000000292a1 l .debug_str 0000000000000000 .LASF75 +0000000000028c94 l .debug_str 0000000000000000 .LASF76 +0000000000029057 l .debug_str 0000000000000000 .LASF77 +00000000000290fe l .debug_str 0000000000000000 .LASF78 +0000000000028dff l .debug_str 0000000000000000 .LASF79 +0000000000028aad l .debug_str 0000000000000000 .LASF80 +0000000000028bd4 l .debug_str 0000000000000000 .LASF81 +0000000000028d55 l .debug_str 0000000000000000 .LASF82 +0000000000029362 l .debug_str 0000000000000000 .LASF83 +0000000000029261 l .debug_str 0000000000000000 .LASF84 +0000000000028df6 l .debug_str 0000000000000000 .LASF85 +0000000000029304 l .debug_str 0000000000000000 .LASF86 +0000000000029041 l .debug_str 0000000000000000 .LASF87 +0000000000028ee3 l .debug_str 0000000000000000 .LASF88 +00000000000290de l .debug_str 0000000000000000 .LASF89 +0000000000029318 l .debug_str 0000000000000000 .LASF90 +0000000000028ba0 l .debug_str 0000000000000000 .LASF91 +000000000002930e l .debug_str 0000000000000000 .LASF92 +0000000000028ea8 l .debug_str 0000000000000000 .LASF93 +000000000002941b l .debug_str 0000000000000000 .LASF94 +000000000002902b l .debug_str 0000000000000000 .LASF95 +0000000000028c0f l .debug_str 0000000000000000 .LASF96 +0000000000029081 l .debug_str 0000000000000000 .LASF97 +0000000000028d75 l .debug_str 0000000000000000 .LASF98 +0000000000028dd0 l .debug_str 0000000000000000 .LASF99 +0000000000028f34 l .debug_str 0000000000000000 .LASF100 +0000000000029224 l .debug_str 0000000000000000 .LASF101 +00000000000292f9 l .debug_str 0000000000000000 .LASF102 +0000000000028e5b l .debug_str 0000000000000000 .LASF103 +0000000000028d4b l .debug_str 0000000000000000 .LASF104 +0000000000028e3c l .debug_str 0000000000000000 .LASF105 +00000000000292da l .debug_str 0000000000000000 .LASF106 +000000000002946d l .debug_str 0000000000000000 .LASF107 +0000000000029008 l .debug_str 0000000000000000 .LASF108 +0000000000028d2a l .debug_str 0000000000000000 .LASF109 +0000000000028fd6 l .debug_str 0000000000000000 .LASF110 +0000000000028bbc l .debug_str 0000000000000000 .LASF111 +000000000002934c l .debug_str 0000000000000000 .LASF112 +0000000000028cf9 l .debug_str 0000000000000000 .LASF113 +0000000000028b1c l .debug_str 0000000000000000 .LASF114 +000000000002908c l .debug_str 0000000000000000 .LASF115 +00000000000291c7 l .debug_str 0000000000000000 .LASF116 +0000000000029441 l .debug_str 0000000000000000 .LASF117 +0000000000028b6c l .debug_str 0000000000000000 .LASF118 +00000000000292c3 l .debug_str 0000000000000000 .LASF119 +0000000000029285 l .debug_str 0000000000000000 .LASF120 +0000000000028a82 l .debug_str 0000000000000000 .LASF121 +0000000000028f1b l .debug_str 0000000000000000 .LASF122 +0000000000029378 l .debug_str 0000000000000000 .LASF123 +0000000000028c5d l .debug_str 0000000000000000 .LASF124 +0000000000028cc5 l .debug_str 0000000000000000 .LASF125 +0000000000029325 l .debug_str 0000000000000000 .LASF126 +00000000000293b5 l .debug_str 0000000000000000 .LASF127 +0000000000028de9 l .debug_str 0000000000000000 .LASF128 +0000000000028af4 l .debug_str 0000000000000000 .LASF129 +0000000000028ed5 l .debug_str 0000000000000000 .LASF130 +0000000000029340 l .debug_str 0000000000000000 .LASF131 +0000000000028d80 l .debug_str 0000000000000000 .LASF132 +0000000000028ffc l .debug_str 0000000000000000 .LASF133 +00000000000291f2 l .debug_str 0000000000000000 .LASF134 +000000000002906d l .debug_str 0000000000000000 .LASF135 +0000000000028b0b l .debug_str 0000000000000000 .LASF136 +0000000000028e1b l .debug_str 0000000000000000 .LASF137 +0000000000029271 l .debug_str 0000000000000000 .LASF138 +00000000000292b6 l .debug_str 0000000000000000 .LASF139 +0000000000029452 l .debug_str 0000000000000000 .LASF140 +0000000000028ada l .debug_str 0000000000000000 .LASF141 +00000000000290f3 l .debug_str 0000000000000000 .LASF142 +0000000000028d5e l .debug_str 0000000000000000 .LASF143 +000000000002940d l .debug_str 0000000000000000 .LASF144 +0000000000028c01 l .debug_str 0000000000000000 .LASF145 +00000000000293fb l .debug_str 0000000000000000 .LASF146 +0000000000028b39 l .debug_str 0000000000000000 .LASF147 +0000000000028f89 l .debug_str 0000000000000000 .LASF148 +00000000000292ad l .debug_str 0000000000000000 .LASF149 +0000000000028ce8 l .debug_str 0000000000000000 .LASF150 +00000000000291e1 l .debug_str 0000000000000000 .LASF151 +0000000000028d0f l .debug_str 0000000000000000 .LASF152 +0000000000028e99 l .debug_str 0000000000000000 .LASF153 +0000000000028e7c l .debug_str 0000000000000000 .LASF161 +000000000000a6c2 l .text 0000000000000000 .LFB11 +000000000000a6da l .text 0000000000000000 .LFE11 +0000000000029467 l .debug_str 0000000000000000 .LASF154 +000000000001efc9 l .debug_loc 0000000000000000 .LLST0 +000000000002925b l .debug_str 0000000000000000 .LASF155 +000000000001f002 l .debug_loc 0000000000000000 .LLST1 +0000000000028a68 l .debug_str 0000000000000000 .LASF156 +000000000001f038 l .debug_loc 0000000000000000 .LLST2 +000000000000a6c8 l .text 0000000000000000 .LBB4 +000000000000a6d6 l .text 0000000000000000 .LBE4 +000000000001f06e l .debug_loc 0000000000000000 .LLST3 +000000000001f093 l .debug_loc 0000000000000000 .LLST4 +000000000001f0c9 l .debug_loc 0000000000000000 .LLST5 +000000000001f0ff l .debug_loc 0000000000000000 .LLST6 +0000000000028d6b l .debug_str 0000000000000000 .LASF162 +000000000000a6c2 l .text 0000000000000000 .LVL0 +000000000000a6cc l .text 0000000000000000 .LVL4 +000000000000a6ce l .text 0000000000000000 .LVL5 +000000000000a6d0 l .text 0000000000000000 .LVL6 +000000000000a6c8 l .text 0000000000000000 .LVL3 +000000000000a6d6 l .text 0000000000000000 .LVL7 +000000000000a6c6 l .text 0000000000000000 .LVL2 +000000000000a6c4 l .text 0000000000000000 .LVL1 +00000000000305b0 l .debug_info 0000000000000000 .Ldebug_info0 +000000000000a6c2 l .text 0000000000000000 .L0 +000000000000a6c2 l .text 0000000000000000 .L0 +000000000000a6c2 l .text 0000000000000000 .L0 +000000000000a6c8 l .text 0000000000000000 .L0 +000000000000a6c8 l .text 0000000000000000 .L0 +000000000000a6cc l .text 0000000000000000 .L0 +000000000000a6cc l .text 0000000000000000 .L0 +000000000000a6ce l .text 0000000000000000 .L0 +000000000000a6ce l .text 0000000000000000 .L0 +000000000000a6d0 l .text 0000000000000000 .L0 +000000000000a6d0 l .text 0000000000000000 .L0 +000000000000a6d4 l .text 0000000000000000 .L0 +000000000000a6d6 l .text 0000000000000000 .L0 +000000000000a6d6 l .text 0000000000000000 .L0 +000000000000a6da l .text 0000000000000000 .L0 +0000000000004068 l .debug_frame 0000000000000000 .L0 +000000000000a6c2 l .text 0000000000000000 .L0 +000000000000a6da l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 PROXY_open.c +000000000000df31 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000029cda l .debug_str 0000000000000000 .LASF155 +0000000000029dde l .debug_str 0000000000000000 .LASF156 +0000000000029b17 l .debug_str 0000000000000000 .LASF157 +0000000000003700 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +000000000002194e l .debug_line 0000000000000000 .Ldebug_line0 +0000000000029936 l .debug_str 0000000000000000 .LASF0 +0000000000029670 l .debug_str 0000000000000000 .LASF158 +0000000000029505 l .debug_str 0000000000000000 .LASF1 +00000000000295ed l .debug_str 0000000000000000 .LASF2 +0000000000029a2a l .debug_str 0000000000000000 .LASF3 +0000000000029a67 l .debug_str 0000000000000000 .LASF4 +00000000000297f1 l .debug_str 0000000000000000 .LASF5 +000000000002978d l .debug_str 0000000000000000 .LASF6 +000000000002965a l .debug_str 0000000000000000 .LASF7 +00000000000297b5 l .debug_str 0000000000000000 .LASF8 +00000000000298a0 l .debug_str 0000000000000000 .LASF9 +0000000000029554 l .debug_str 0000000000000000 .LASF10 +00000000000294bd l .debug_str 0000000000000000 .LASF11 +0000000000029cd3 l .debug_str 0000000000000000 .LASF12 +0000000000029b43 l .debug_str 0000000000000000 .LASF13 +0000000000029918 l .debug_str 0000000000000000 .LASF14 +0000000000029ad4 l .debug_str 0000000000000000 .LASF15 +000000000002975c l .debug_str 0000000000000000 .LASF16 +00000000000299ca l .debug_str 0000000000000000 .LASF17 +0000000000029e4e l .debug_str 0000000000000000 .LASF18 +00000000000295af l .debug_str 0000000000000000 .LASF19 +0000000000029e37 l .debug_str 0000000000000000 .LASF20 +0000000000029945 l .debug_str 0000000000000000 .LASF21 +0000000000029c9f l .debug_str 0000000000000000 .LASF22 +0000000000029be1 l .debug_str 0000000000000000 .LASF23 +0000000000029bce l .debug_str 0000000000000000 .LASF24 +00000000000298b6 l .debug_str 0000000000000000 .LASF25 +0000000000029df3 l .debug_str 0000000000000000 .LASF26 +00000000000294d1 l .debug_str 0000000000000000 .LASF27 +0000000000029afd l .debug_str 0000000000000000 .LASF28 +0000000000029968 l .debug_str 0000000000000000 .LASF29 +0000000000029aed l .debug_str 0000000000000000 .LASF30 +0000000000029771 l .debug_str 0000000000000000 .LASF31 +000000000002982d l .debug_str 0000000000000000 .LASF32 +00000000000299e8 l .debug_str 0000000000000000 .LASF33 +0000000000029646 l .debug_str 0000000000000000 .LASF34 +0000000000029858 l .debug_str 0000000000000000 .LASF35 +00000000000298e6 l .debug_str 0000000000000000 .LASF36 +00000000000294ec l .debug_str 0000000000000000 .LASF37 +0000000000029cb3 l .debug_str 0000000000000000 .LASF38 +0000000000029ac8 l .debug_str 0000000000000000 .LASF39 +0000000000029b78 l .debug_str 0000000000000000 .LASF40 +000000000002959f l .debug_str 0000000000000000 .LASF41 +0000000000029abd l .debug_str 0000000000000000 .LASF42 +0000000000029a53 l .debug_str 0000000000000000 .LASF43 +0000000000029487 l .debug_str 0000000000000000 .LASF44 +000000000002979a l .debug_str 0000000000000000 .LASF45 +0000000000029a38 l .debug_str 0000000000000000 .LASF46 +00000000000296cb l .debug_str 0000000000000000 .LASF47 +0000000000029c75 l .debug_str 0000000000000000 .LASF48 +0000000000029909 l .debug_str 0000000000000000 .LASF49 +0000000000029611 l .debug_str 0000000000000000 .LASF50 +000000000002958f l .debug_str 0000000000000000 .LASF51 +0000000000029954 l .debug_str 0000000000000000 .LASF52 +0000000000029531 l .debug_str 0000000000000000 .LASF53 +0000000000029c10 l .debug_str 0000000000000000 .LASF54 +0000000000029740 l .debug_str 0000000000000000 .LASF55 +00000000000294ac l .debug_str 0000000000000000 .LASF56 +00000000000298f8 l .debug_str 0000000000000000 .LASF57 +000000000002980e l .debug_str 0000000000000000 .LASF58 +0000000000029d8a l .debug_str 0000000000000000 .LASF59 +00000000000297d1 l .debug_str 0000000000000000 .LASF60 +00000000000298a8 l .debug_str 0000000000000000 .LASF61 +00000000000296ee l .debug_str 0000000000000000 .LASF62 +000000000002986c l .debug_str 0000000000000000 .LASF63 +0000000000029622 l .debug_str 0000000000000000 .LASF64 +0000000000029dd4 l .debug_str 0000000000000000 .LASF65 +00000000000295e4 l .debug_str 0000000000000000 .LASF66 +0000000000029752 l .debug_str 0000000000000000 .LASF67 +0000000000029585 l .debug_str 0000000000000000 .LASF68 +000000000002998f l .debug_str 0000000000000000 .LASF69 +000000000002947e l .debug_str 0000000000000000 .LASF70 +0000000000029549 l .debug_str 0000000000000000 .LASF71 +00000000000294fb l .debug_str 0000000000000000 .LASF72 +000000000002987b l .debug_str 0000000000000000 .LASF73 +0000000000029663 l .debug_str 0000000000000000 .LASF74 +00000000000299e0 l .debug_str 0000000000000000 .LASF75 +0000000000029a71 l .debug_str 0000000000000000 .LASF76 +00000000000297c7 l .debug_str 0000000000000000 .LASF77 +0000000000029dc6 l .debug_str 0000000000000000 .LASF78 +00000000000295da l .debug_str 0000000000000000 .LASF79 +0000000000029706 l .debug_str 0000000000000000 .LASF80 +0000000000029c6c l .debug_str 0000000000000000 .LASF81 +00000000000299d5 l .debug_str 0000000000000000 .LASF82 +0000000000029e15 l .debug_str 0000000000000000 .LASF83 +0000000000029c06 l .debug_str 0000000000000000 .LASF84 +00000000000294c7 l .debug_str 0000000000000000 .LASF85 +0000000000029895 l .debug_str 0000000000000000 .LASF86 +0000000000029a47 l .debug_str 0000000000000000 .LASF87 +0000000000029c22 l .debug_str 0000000000000000 .LASF88 +0000000000029a7a l .debug_str 0000000000000000 .LASF89 +0000000000029767 l .debug_str 0000000000000000 .LASF90 +000000000002984e l .debug_str 0000000000000000 .LASF91 +0000000000029dbb l .debug_str 0000000000000000 .LASF92 +00000000000299bf l .debug_str 0000000000000000 .LASF93 +0000000000029607 l .debug_str 0000000000000000 .LASF94 +0000000000029a0b l .debug_str 0000000000000000 .LASF95 +0000000000029726 l .debug_str 0000000000000000 .LASF96 +0000000000029781 l .debug_str 0000000000000000 .LASF97 +0000000000029dae l .debug_str 0000000000000000 .LASF98 +0000000000029ae0 l .debug_str 0000000000000000 .LASF99 +0000000000029bfb l .debug_str 0000000000000000 .LASF100 +0000000000029823 l .debug_str 0000000000000000 .LASF101 +00000000000296fc l .debug_str 0000000000000000 .LASF102 +0000000000029804 l .debug_str 0000000000000000 .LASF103 +0000000000029bc2 l .debug_str 0000000000000000 .LASF104 +0000000000029e58 l .debug_str 0000000000000000 .LASF105 +00000000000299a6 l .debug_str 0000000000000000 .LASF106 +00000000000296db l .debug_str 0000000000000000 .LASF107 +0000000000029974 l .debug_str 0000000000000000 .LASF108 +00000000000295c2 l .debug_str 0000000000000000 .LASF109 +0000000000029c56 l .debug_str 0000000000000000 .LASF110 +00000000000296aa l .debug_str 0000000000000000 .LASF111 +000000000002951e l .debug_str 0000000000000000 .LASF112 +0000000000029a16 l .debug_str 0000000000000000 .LASF113 +0000000000029a83 l .debug_str 0000000000000000 .LASF114 +0000000000029e04 l .debug_str 0000000000000000 .LASF115 +000000000002956b l .debug_str 0000000000000000 .LASF116 +0000000000029bab l .debug_str 0000000000000000 .LASF117 +0000000000029b5c l .debug_str 0000000000000000 .LASF118 +0000000000029492 l .debug_str 0000000000000000 .LASF119 +00000000000298cd l .debug_str 0000000000000000 .LASF120 +0000000000029c82 l .debug_str 0000000000000000 .LASF121 +000000000002962c l .debug_str 0000000000000000 .LASF122 +0000000000029682 l .debug_str 0000000000000000 .LASF123 +0000000000029c2f l .debug_str 0000000000000000 .LASF124 +0000000000029cbf l .debug_str 0000000000000000 .LASF125 +00000000000297a8 l .debug_str 0000000000000000 .LASF126 +000000000002969b l .debug_str 0000000000000000 .LASF127 +0000000000029887 l .debug_str 0000000000000000 .LASF128 +0000000000029c4a l .debug_str 0000000000000000 .LASF129 +0000000000029731 l .debug_str 0000000000000000 .LASF130 +000000000002999a l .debug_str 0000000000000000 .LASF131 +0000000000029aae l .debug_str 0000000000000000 .LASF132 +00000000000299f7 l .debug_str 0000000000000000 .LASF133 +000000000002950d l .debug_str 0000000000000000 .LASF134 +00000000000297e3 l .debug_str 0000000000000000 .LASF135 +0000000000029b48 l .debug_str 0000000000000000 .LASF136 +0000000000029b9e l .debug_str 0000000000000000 .LASF137 +0000000000029e1e l .debug_str 0000000000000000 .LASF138 +00000000000294e1 l .debug_str 0000000000000000 .LASF139 +0000000000029a5c l .debug_str 0000000000000000 .LASF140 +000000000002970f l .debug_str 0000000000000000 .LASF141 +0000000000029e29 l .debug_str 0000000000000000 .LASF142 +00000000000295f9 l .debug_str 0000000000000000 .LASF143 +0000000000029d9c l .debug_str 0000000000000000 .LASF144 +000000000002953b l .debug_str 0000000000000000 .LASF145 +0000000000029927 l .debug_str 0000000000000000 .LASF146 +0000000000029b84 l .debug_str 0000000000000000 .LASF147 +0000000000029b8d l .debug_str 0000000000000000 .LASF148 +0000000000029a9d l .debug_str 0000000000000000 .LASF149 +00000000000296c0 l .debug_str 0000000000000000 .LASF150 +000000000002983f l .debug_str 0000000000000000 .LASF151 +0000000000029922 l .debug_str 0000000000000000 .LASF159 +000000000000a6da l .text 0000000000000000 .LFB7 +000000000000a70c l .text 0000000000000000 .LFE7 +0000000000029b37 l .debug_str 0000000000000000 .LASF152 +000000000001f12a l .debug_loc 0000000000000000 .LLST0 +0000000000029b3d l .debug_str 0000000000000000 .LASF153 +000000000001f160 l .debug_loc 0000000000000000 .LLST1 +0000000000029478 l .debug_str 0000000000000000 .LASF154 +000000000000a6e6 l .text 0000000000000000 .LBB4 +000000000001f199 l .debug_loc 0000000000000000 .LLST2 +000000000001f1be l .debug_loc 0000000000000000 .LLST3 +000000000001f1e9 l .debug_loc 0000000000000000 .LLST4 +000000000002971c l .debug_str 0000000000000000 .LASF160 +000000000000a6da l .text 0000000000000000 .LVL0 +000000000000a6fa l .text 0000000000000000 .LVL2 +000000000000a6fc l .text 0000000000000000 .LVL3 +000000000000a6f6 l .text 0000000000000000 .LVL1 +000000000000a706 l .text 0000000000000000 .LVL4 +0000000000030ade l .debug_info 0000000000000000 .Ldebug_info0 +000000000000a6ea l .text 0000000000000000 .LBE4 +000000000000a6f6 l .text 0000000000000000 .LBB7 +000000000000a706 l .text 0000000000000000 .LBE7 +000000000000a6da l .text 0000000000000000 .L0 +000000000000a6da l .text 0000000000000000 .L0 +000000000000a6da l .text 0000000000000000 .L0 +000000000000a6da l .text 0000000000000000 .L0 +000000000000a6da l .text 0000000000000000 .L0 +000000000000a6dc l .text 0000000000000000 .L0 +000000000000a6e6 l .text 0000000000000000 .L0 +000000000000a6ea l .text 0000000000000000 .L0 +000000000000a6ec l .text 0000000000000000 .L0 +000000000000a6f4 l .text 0000000000000000 .L0 +000000000000a6f6 l .text 0000000000000000 .L0 +000000000000a6f6 l .text 0000000000000000 .L0 +000000000000a6f6 l .text 0000000000000000 .L0 +000000000000a6f6 l .text 0000000000000000 .L0 +000000000000a6f6 l .text 0000000000000000 .L0 +000000000000a6fa l .text 0000000000000000 .L0 +000000000000a6fa l .text 0000000000000000 .L0 +000000000000a6fc l .text 0000000000000000 .L0 +000000000000a6fc l .text 0000000000000000 .L0 +000000000000a6fe l .text 0000000000000000 .L0 +000000000000a6fe l .text 0000000000000000 .L0 +000000000000a700 l .text 0000000000000000 .L0 +000000000000a704 l .text 0000000000000000 .L0 +000000000000a706 l .text 0000000000000000 .L0 +000000000000a706 l .text 0000000000000000 .L0 +000000000000a70c l .text 0000000000000000 .L0 +0000000000004090 l .debug_frame 0000000000000000 .L0 +000000000000a6da l .text 0000000000000000 .L0 +000000000000a70c l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 PROXY_pgalloc.c +000000000000e064 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000029f66 l .debug_str 0000000000000000 .LASF154 +000000000002a2cf l .debug_str 0000000000000000 .LASF155 +000000000002a56b l .debug_str 0000000000000000 .LASF156 +0000000000003750 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000021b93 l .debug_line 0000000000000000 .Ldebug_line0 +000000000002a771 l .debug_str 0000000000000000 .LASF0 +000000000002a6ae l .debug_str 0000000000000000 .LASF1 +000000000002a54f l .debug_str 0000000000000000 .LASF2 +000000000002a77d l .debug_str 0000000000000000 .LASF3 +0000000000029eed l .debug_str 0000000000000000 .LASF4 +000000000002a5af l .debug_str 0000000000000000 .LASF5 +000000000002a66c l .debug_str 0000000000000000 .LASF6 +000000000002a172 l .debug_str 0000000000000000 .LASF8 +000000000002a113 l .debug_str 0000000000000000 .LASF7 +000000000002a64d l .debug_str 0000000000000000 .LASF9 +000000000002a31c l .debug_str 0000000000000000 .LASF10 +000000000002a3d0 l .debug_str 0000000000000000 .LASF11 +000000000002a50a l .debug_str 0000000000000000 .LASF12 +000000000002a233 l .debug_str 0000000000000000 .LASF13 +000000000002a608 l .debug_str 0000000000000000 .LASF14 +000000000002a3eb l .debug_str 0000000000000000 .LASF15 +0000000000029f5b l .debug_str 0000000000000000 .LASF16 +000000000002a5d5 l .debug_str 0000000000000000 .LASF17 +000000000002a5cb l .debug_str 0000000000000000 .LASF18 +000000000002a254 l .debug_str 0000000000000000 .LASF19 +000000000002a137 l .debug_str 0000000000000000 .LASF20 +000000000002a58b l .debug_str 0000000000000000 .LASF21 +000000000002a08f l .debug_str 0000000000000000 .LASF22 +000000000002a7ad l .debug_str 0000000000000000 .LASF23 +000000000002a624 l .debug_str 0000000000000000 .LASF24 +000000000002a405 l .debug_str 0000000000000000 .LASF25 +000000000002a386 l .debug_str 0000000000000000 .LASF26 +000000000002a67e l .debug_str 0000000000000000 .LASF27 +000000000002a1b2 l .debug_str 0000000000000000 .LASF28 +000000000002a078 l .debug_str 0000000000000000 .LASF29 +000000000002a193 l .debug_str 0000000000000000 .LASF30 +000000000002a068 l .debug_str 0000000000000000 .LASF31 +000000000002a478 l .debug_str 0000000000000000 .LASF32 +000000000002a1a3 l .debug_str 0000000000000000 .LASF33 +000000000002a0ff l .debug_str 0000000000000000 .LASF34 +0000000000029f05 l .debug_str 0000000000000000 .LASF35 +000000000002a6bc l .debug_str 0000000000000000 .LASF36 +0000000000029f38 l .debug_str 0000000000000000 .LASF37 +000000000002a2fc l .debug_str 0000000000000000 .LASF38 +000000000002a1cc l .debug_str 0000000000000000 .LASF39 +000000000002a637 l .debug_str 0000000000000000 .LASF40 +000000000002a058 l .debug_str 0000000000000000 .LASF41 +000000000002a15d l .debug_str 0000000000000000 .LASF42 +000000000002a7c7 l .debug_str 0000000000000000 .LASF43 +000000000002a460 l .debug_str 0000000000000000 .LASF44 +000000000002a4ad l .debug_str 0000000000000000 .LASF45 +000000000002a32b l .debug_str 0000000000000000 .LASF46 +000000000002a0d9 l .debug_str 0000000000000000 .LASF47 +000000000002a3de l .debug_str 0000000000000000 .LASF48 +000000000002a02d l .debug_str 0000000000000000 .LASF49 +0000000000029e78 l .debug_str 0000000000000000 .LASF50 +000000000002a5ec l .debug_str 0000000000000000 .LASF51 +0000000000029ea8 l .debug_str 0000000000000000 .LASF52 +000000000002a321 l .debug_str 0000000000000000 .LASF53 +000000000002a559 l .debug_str 0000000000000000 .LASF54 +000000000002a79b l .debug_str 0000000000000000 .LASF55 +000000000002a047 l .debug_str 0000000000000000 .LASF56 +000000000002a7d0 l .debug_str 0000000000000000 .LASF57 +000000000002a59a l .debug_str 0000000000000000 .LASF58 +000000000002a2bd l .debug_str 0000000000000000 .LASF59 +0000000000029ec4 l .debug_str 0000000000000000 .LASF60 +000000000002a35e l .debug_str 0000000000000000 .LASF61 +000000000002a6f4 l .debug_str 0000000000000000 .LASF62 +000000000002a1d8 l .debug_str 0000000000000000 .LASF63 +000000000002a3b1 l .debug_str 0000000000000000 .LASF64 +000000000002a2f2 l .debug_str 0000000000000000 .LASF65 +000000000002a546 l .debug_str 0000000000000000 .LASF66 +000000000002a516 l .debug_str 0000000000000000 .LASF67 +000000000002a0f5 l .debug_str 0000000000000000 .LASF68 +0000000000029ed6 l .debug_str 0000000000000000 .LASF69 +000000000002a0d0 l .debug_str 0000000000000000 .LASF70 +0000000000029e63 l .debug_str 0000000000000000 .LASF71 +000000000002a657 l .debug_str 0000000000000000 .LASF72 +000000000002a5e0 l .debug_str 0000000000000000 .LASF73 +000000000002a80b l .debug_str 0000000000000000 .LASF74 +000000000002a818 l .debug_str 0000000000000000 .LASF75 +000000000002a6eb l .debug_str 0000000000000000 .LASF76 +000000000002a740 l .debug_str 0000000000000000 .LASF77 +000000000002a3f7 l .debug_str 0000000000000000 .LASF78 +000000000002a3c6 l .debug_str 0000000000000000 .LASF79 +000000000002a802 l .debug_str 0000000000000000 .LASF80 +000000000002a495 l .debug_str 0000000000000000 .LASF81 +000000000002a48a l .debug_str 0000000000000000 .LASF82 +000000000002a4d6 l .debug_str 0000000000000000 .LASF83 +000000000002a0a3 l .debug_str 0000000000000000 .LASF84 +000000000002a168 l .debug_str 0000000000000000 .LASF85 +000000000002a790 l .debug_str 0000000000000000 .LASF86 +000000000002a5fc l .debug_str 0000000000000000 .LASF87 +000000000002a288 l .debug_str 0000000000000000 .LASF88 +0000000000029e9f l .debug_str 0000000000000000 .LASF89 +0000000000029f19 l .debug_str 0000000000000000 .LASF90 +0000000000029f23 l .debug_str 0000000000000000 .LASF91 +0000000000029efa l .debug_str 0000000000000000 .LASF92 +000000000002a3bb l .debug_str 0000000000000000 .LASF93 +000000000002a33a l .debug_str 0000000000000000 .LASF94 +000000000002a2e7 l .debug_str 0000000000000000 .LASF95 +000000000002a661 l .debug_str 0000000000000000 .LASF96 +0000000000029ee1 l .debug_str 0000000000000000 .LASF97 +000000000002a12a l .debug_str 0000000000000000 .LASF98 +000000000002a831 l .debug_str 0000000000000000 .LASF99 +000000000002a820 l .debug_str 0000000000000000 .LASF100 +000000000002a643 l .debug_str 0000000000000000 .LASF101 +000000000002a2a6 l .debug_str 0000000000000000 .LASF102 +000000000002a53c l .debug_str 0000000000000000 .LASF103 +000000000002a0e9 l .debug_str 0000000000000000 .LASF104 +000000000002a228 l .debug_str 0000000000000000 .LASF105 +000000000002a17a l .debug_str 0000000000000000 .LASF106 +000000000002a5b8 l .debug_str 0000000000000000 .LASF107 +000000000002a4bb l .debug_str 0000000000000000 .LASF108 +000000000002a1ed l .debug_str 0000000000000000 .LASF109 +0000000000029e89 l .debug_str 0000000000000000 .LASF110 +000000000002a7ec l .debug_str 0000000000000000 .LASF111 +000000000002a275 l .debug_str 0000000000000000 .LASF112 +0000000000029f47 l .debug_str 0000000000000000 .LASF113 +000000000002a4df l .debug_str 0000000000000000 .LASF114 +000000000002a68e l .debug_str 0000000000000000 .LASF115 +000000000002a36c l .debug_str 0000000000000000 .LASF116 +000000000002a016 l .debug_str 0000000000000000 .LASF117 +000000000002a520 l .debug_str 0000000000000000 .LASF118 +000000000002a446 l .debug_str 0000000000000000 .LASF119 +000000000002a758 l .debug_str 0000000000000000 .LASF120 +000000000002a429 l .debug_str 0000000000000000 .LASF121 +000000000002a344 l .debug_str 0000000000000000 .LASF122 +000000000002a727 l .debug_str 0000000000000000 .LASF123 +000000000002a239 l .debug_str 0000000000000000 .LASF124 +000000000002a308 l .debug_str 0000000000000000 .LASF125 +000000000002a2b0 l .debug_str 0000000000000000 .LASF126 +000000000002a219 l .debug_str 0000000000000000 .LASF127 +000000000002a267 l .debug_str 0000000000000000 .LASF128 +000000000002a0ad l .debug_str 0000000000000000 .LASF129 +000000000002a14e l .debug_str 0000000000000000 .LASF130 +000000000002a397 l .debug_str 0000000000000000 .LASF131 +000000000002a69f l .debug_str 0000000000000000 .LASF132 +000000000002a205 l .debug_str 0000000000000000 .LASF133 +000000000002a295 l .debug_str 0000000000000000 .LASF134 +000000000002a6ce l .debug_str 0000000000000000 .LASF135 +000000000002a702 l .debug_str 0000000000000000 .LASF136 +000000000002a41c l .debug_str 0000000000000000 .LASF137 +0000000000029f2d l .debug_str 0000000000000000 .LASF138 +000000000002a7e1 l .debug_str 0000000000000000 .LASF139 +000000000002a084 l .debug_str 0000000000000000 .LASF140 +000000000002a46b l .debug_str 0000000000000000 .LASF141 +000000000002a3a3 l .debug_str 0000000000000000 .LASF142 +000000000002a0b9 l .debug_str 0000000000000000 .LASF143 +000000000002a612 l .debug_str 0000000000000000 .LASF144 +000000000002a74a l .debug_str 0000000000000000 .LASF145 +000000000002a49e l .debug_str 0000000000000000 .LASF146 +000000000002a0c7 l .debug_str 0000000000000000 .LASF147 +000000000002a4f9 l .debug_str 0000000000000000 .LASF148 +000000000002a716 l .debug_str 0000000000000000 .LASF149 +000000000002a03c l .debug_str 0000000000000000 .LASF150 +000000000002a6dc l .debug_str 0000000000000000 .LASF151 +0000000000029ebc l .debug_str 0000000000000000 .LASF157 +000000000000a70c l .text 0000000000000000 .LFB11 +000000000000a722 l .text 0000000000000000 .LFE11 +000000000002a82b l .debug_str 0000000000000000 .LASF152 +000000000001f21f l .debug_loc 0000000000000000 .LLST0 +000000000002a1e7 l .debug_str 0000000000000000 .LASF153 +000000000001f255 l .debug_loc 0000000000000000 .LLST1 +000000000000a710 l .text 0000000000000000 .LBB4 +000000000000a720 l .text 0000000000000000 .LBE4 +000000000001f28e l .debug_loc 0000000000000000 .LLST2 +000000000001f2b3 l .debug_loc 0000000000000000 .LLST3 +000000000001f2de l .debug_loc 0000000000000000 .LLST4 +0000000000029e6e l .debug_str 0000000000000000 .LASF158 +000000000000a70c l .text 0000000000000000 .LVL0 +000000000000a716 l .text 0000000000000000 .LVL3 +000000000000a718 l .text 0000000000000000 .LVL4 +000000000000a710 l .text 0000000000000000 .LVL1 +000000000000a720 l .text 0000000000000000 .LVL5 +000000000000a712 l .text 0000000000000000 .LVL2 +0000000000031005 l .debug_info 0000000000000000 .Ldebug_info0 +000000000000a70c l .text 0000000000000000 .L0 +000000000000a70c l .text 0000000000000000 .L0 +000000000000a70c l .text 0000000000000000 .L0 +000000000000a710 l .text 0000000000000000 .L0 +000000000000a710 l .text 0000000000000000 .L0 +000000000000a712 l .text 0000000000000000 .L0 +000000000000a716 l .text 0000000000000000 .L0 +000000000000a716 l .text 0000000000000000 .L0 +000000000000a718 l .text 0000000000000000 .L0 +000000000000a718 l .text 0000000000000000 .L0 +000000000000a71a l .text 0000000000000000 .L0 +000000000000a71e l .text 0000000000000000 .L0 +000000000000a720 l .text 0000000000000000 .L0 +000000000000a720 l .text 0000000000000000 .L0 +000000000000a722 l .text 0000000000000000 .L0 +00000000000040c0 l .debug_frame 0000000000000000 .L0 +000000000000a70c l .text 0000000000000000 .L0 +000000000000a722 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 PROXY_posix_spawn.c +000000000000e14b l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000002b152 l .debug_str 0000000000000000 .LASF174 +000000000002ad37 l .debug_str 0000000000000000 .LASF175 +000000000002af61 l .debug_str 0000000000000000 .LASF176 +0000000000003770 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000021d1e l .debug_line 0000000000000000 .Ldebug_line0 +000000000002a9d1 l .debug_str 0000000000000000 .LASF0 +000000000002af18 l .debug_str 0000000000000000 .LASF4 +000000000002ae6e l .debug_str 0000000000000000 .LASF1 +000000000002aeab l .debug_str 0000000000000000 .LASF2 +000000000002abf8 l .debug_str 0000000000000000 .LASF3 +000000000002a8b5 l .debug_str 0000000000000000 .LASF5 +000000000002ab84 l .debug_str 0000000000000000 .LASF6 +000000000002aa3e l .debug_str 0000000000000000 .LASF7 +000000000002abac l .debug_str 0000000000000000 .LASF8 +000000000002acb8 l .debug_str 0000000000000000 .LASF9 +000000000002a92a l .debug_str 0000000000000000 .LASF10 +000000000002b202 l .debug_str 0000000000000000 .LASF11 +000000000002af3e l .debug_str 0000000000000000 .LASF12 +000000000002a8a1 l .debug_str 0000000000000000 .LASF13 +000000000002a881 l .debug_str 0000000000000000 .LASF14 +000000000002b252 l .debug_str 0000000000000000 .LASF15 +000000000002af8d l .debug_str 0000000000000000 .LASF16 +000000000002a9c3 l .debug_str 0000000000000000 .LASF17 +000000000002ad5d l .debug_str 0000000000000000 .LASF18 +000000000002ad78 l .debug_str 0000000000000000 .LASF20 +000000000002a856 l .debug_str 0000000000000000 .LASF22 +000000000002ad81 l .debug_str 0000000000000000 .LASF19 +000000000002b11a l .debug_str 0000000000000000 .LASF21 +000000000002b229 l .debug_str 0000000000000000 .LASF23 +000000000002ac34 l .debug_str 0000000000000000 .LASF24 +000000000002ad21 l .debug_str 0000000000000000 .LASF25 +000000000002ac68 l .debug_str 0000000000000000 .LASF26 +000000000002aa9d l .debug_str 0000000000000000 .LASF27 +000000000002b12c l .debug_str 0000000000000000 .LASF28 +000000000002b258 l .debug_str 0000000000000000 .LASF29 +000000000002ad53 l .debug_str 0000000000000000 .LASF30 +000000000002adeb l .debug_str 0000000000000000 .LASF31 +000000000002ab53 l .debug_str 0000000000000000 .LASF32 +000000000002ae02 l .debug_str 0000000000000000 .LASF33 +000000000002b2ce l .debug_str 0000000000000000 .LASF34 +000000000002a985 l .debug_str 0000000000000000 .LASF35 +000000000002b2b7 l .debug_str 0000000000000000 .LASF36 +000000000002ad8a l .debug_str 0000000000000000 .LASF37 +000000000002b0fa l .debug_str 0000000000000000 .LASF38 +000000000002b02b l .debug_str 0000000000000000 .LASF39 +000000000002b018 l .debug_str 0000000000000000 .LASF40 +000000000002acce l .debug_str 0000000000000000 .LASF41 +000000000002b273 l .debug_str 0000000000000000 .LASF42 +000000000002abbe l .debug_str 0000000000000000 .LASF43 +000000000002af47 l .debug_str 0000000000000000 .LASF44 +000000000002adad l .debug_str 0000000000000000 .LASF45 +000000000002af2e l .debug_str 0000000000000000 .LASF46 +000000000002ab68 l .debug_str 0000000000000000 .LASF47 +000000000002ac3d l .debug_str 0000000000000000 .LASF48 +000000000002ae2c l .debug_str 0000000000000000 .LASF49 +000000000002aa2a l .debug_str 0000000000000000 .LASF50 +000000000002ac70 l .debug_str 0000000000000000 .LASF51 +000000000002acfe l .debug_str 0000000000000000 .LASF52 +000000000002a8ca l .debug_str 0000000000000000 .LASF53 +000000000002b10e l .debug_str 0000000000000000 .LASF54 +000000000002af0c l .debug_str 0000000000000000 .LASF55 +000000000002afc2 l .debug_str 0000000000000000 .LASF56 +000000000002a975 l .debug_str 0000000000000000 .LASF57 +000000000002af01 l .debug_str 0000000000000000 .LASF58 +000000000002ae97 l .debug_str 0000000000000000 .LASF59 +000000000002a85c l .debug_str 0000000000000000 .LASF60 +000000000002ab91 l .debug_str 0000000000000000 .LASF61 +000000000002ae7c l .debug_str 0000000000000000 .LASF62 +000000000002aaa7 l .debug_str 0000000000000000 .LASF63 +000000000002b0d0 l .debug_str 0000000000000000 .LASF64 +000000000002ad28 l .debug_str 0000000000000000 .LASF65 +000000000002a9f5 l .debug_str 0000000000000000 .LASF66 +000000000002a965 l .debug_str 0000000000000000 .LASF67 +000000000002ad99 l .debug_str 0000000000000000 .LASF68 +000000000002a907 l .debug_str 0000000000000000 .LASF69 +000000000002b05a l .debug_str 0000000000000000 .LASF70 +000000000002ab37 l .debug_str 0000000000000000 .LASF71 +000000000002b0a0 l .debug_str 0000000000000000 .LASF72 +000000000002ad10 l .debug_str 0000000000000000 .LASF73 +000000000002ac15 l .debug_str 0000000000000000 .LASF74 +000000000002ab01 l .debug_str 0000000000000000 .LASF75 +000000000002abd8 l .debug_str 0000000000000000 .LASF76 +000000000002acc0 l .debug_str 0000000000000000 .LASF77 +000000000002aaca l .debug_str 0000000000000000 .LASF78 +000000000002ac84 l .debug_str 0000000000000000 .LASF79 +000000000002aa06 l .debug_str 0000000000000000 .LASF80 +000000000002b248 l .debug_str 0000000000000000 .LASF81 +000000000002a9ba l .debug_str 0000000000000000 .LASF82 +000000000002ab49 l .debug_str 0000000000000000 .LASF83 +000000000002a95b l .debug_str 0000000000000000 .LASF84 +000000000002add4 l .debug_str 0000000000000000 .LASF85 +000000000002aae2 l .debug_str 0000000000000000 .LASF86 +000000000002a91f l .debug_str 0000000000000000 .LASF87 +000000000002a8d9 l .debug_str 0000000000000000 .LASF88 +000000000002ac93 l .debug_str 0000000000000000 .LASF89 +000000000002aa47 l .debug_str 0000000000000000 .LASF90 +000000000002ae24 l .debug_str 0000000000000000 .LASF91 +000000000002aeb5 l .debug_str 0000000000000000 .LASF92 +000000000002abce l .debug_str 0000000000000000 .LASF93 +000000000002b23a l .debug_str 0000000000000000 .LASF94 +000000000002a9b0 l .debug_str 0000000000000000 .LASF95 +000000000002aaeb l .debug_str 0000000000000000 .LASF96 +000000000002b0c7 l .debug_str 0000000000000000 .LASF97 +000000000002ae19 l .debug_str 0000000000000000 .LASF98 +000000000002b295 l .debug_str 0000000000000000 .LASF99 +000000000002b050 l .debug_str 0000000000000000 .LASF100 +000000000002a8ab l .debug_str 0000000000000000 .LASF101 +000000000002acad l .debug_str 0000000000000000 .LASF102 +000000000002ae8b l .debug_str 0000000000000000 .LASF103 +000000000002b06c l .debug_str 0000000000000000 .LASF104 +000000000002aebe l .debug_str 0000000000000000 .LASF105 +000000000002ab5e l .debug_str 0000000000000000 .LASF106 +000000000002ac5e l .debug_str 0000000000000000 .LASF107 +000000000002b22f l .debug_str 0000000000000000 .LASF108 +000000000002adf7 l .debug_str 0000000000000000 .LASF109 +000000000002a9eb l .debug_str 0000000000000000 .LASF110 +000000000002ae4f l .debug_str 0000000000000000 .LASF111 +000000000002ab13 l .debug_str 0000000000000000 .LASF112 +000000000002ab78 l .debug_str 0000000000000000 .LASF113 +000000000002b21c l .debug_str 0000000000000000 .LASF114 +000000000002af21 l .debug_str 0000000000000000 .LASF115 +000000000002b045 l .debug_str 0000000000000000 .LASF116 +000000000002ac2a l .debug_str 0000000000000000 .LASF117 +000000000002aad8 l .debug_str 0000000000000000 .LASF118 +000000000002ac0b l .debug_str 0000000000000000 .LASF119 +000000000002b00c l .debug_str 0000000000000000 .LASF120 +000000000002b2d8 l .debug_str 0000000000000000 .LASF121 +000000000002a888 l .debug_str 0000000000000000 .LASF122 +000000000002aab7 l .debug_str 0000000000000000 .LASF123 +000000000002adb9 l .debug_str 0000000000000000 .LASF124 +000000000002a998 l .debug_str 0000000000000000 .LASF125 +000000000002b0b1 l .debug_str 0000000000000000 .LASF126 +000000000002aa7c l .debug_str 0000000000000000 .LASF127 +000000000002a8f4 l .debug_str 0000000000000000 .LASF128 +000000000002ae5a l .debug_str 0000000000000000 .LASF129 +000000000002aec7 l .debug_str 0000000000000000 .LASF130 +000000000002b284 l .debug_str 0000000000000000 .LASF131 +000000000002a941 l .debug_str 0000000000000000 .LASF132 +000000000002aff5 l .debug_str 0000000000000000 .LASF133 +000000000002afa6 l .debug_str 0000000000000000 .LASF134 +000000000002a867 l .debug_str 0000000000000000 .LASF135 +000000000002ace5 l .debug_str 0000000000000000 .LASF136 +000000000002b0dd l .debug_str 0000000000000000 .LASF137 +000000000002aa10 l .debug_str 0000000000000000 .LASF138 +000000000002aa54 l .debug_str 0000000000000000 .LASF139 +000000000002b079 l .debug_str 0000000000000000 .LASF140 +000000000002b13e l .debug_str 0000000000000000 .LASF141 +000000000002ab9f l .debug_str 0000000000000000 .LASF142 +000000000002aa6d l .debug_str 0000000000000000 .LASF143 +000000000002ac9f l .debug_str 0000000000000000 .LASF144 +000000000002b094 l .debug_str 0000000000000000 .LASF145 +000000000002ab28 l .debug_str 0000000000000000 .LASF146 +000000000002addf l .debug_str 0000000000000000 .LASF147 +000000000002aef2 l .debug_str 0000000000000000 .LASF148 +000000000002ae3b l .debug_str 0000000000000000 .LASF149 +000000000002a8e3 l .debug_str 0000000000000000 .LASF150 +000000000002abea l .debug_str 0000000000000000 .LASF151 +000000000002af92 l .debug_str 0000000000000000 .LASF152 +000000000002afe8 l .debug_str 0000000000000000 .LASF153 +000000000002b29e l .debug_str 0000000000000000 .LASF154 +000000000002a8bf l .debug_str 0000000000000000 .LASF155 +000000000002aea0 l .debug_str 0000000000000000 .LASF156 +000000000002aaf4 l .debug_str 0000000000000000 .LASF157 +000000000002b2a9 l .debug_str 0000000000000000 .LASF158 +000000000002a9dd l .debug_str 0000000000000000 .LASF159 +000000000002b20a l .debug_str 0000000000000000 .LASF160 +000000000002a911 l .debug_str 0000000000000000 .LASF161 +000000000002ad69 l .debug_str 0000000000000000 .LASF162 +000000000002afce l .debug_str 0000000000000000 .LASF163 +000000000002afd7 l .debug_str 0000000000000000 .LASF164 +000000000002aee1 l .debug_str 0000000000000000 .LASF165 +000000000002aa92 l .debug_str 0000000000000000 .LASF166 +000000000002ac4f l .debug_str 0000000000000000 .LASF167 +000000000002ae0d l .debug_str 0000000000000000 .LASF177 +000000000000a722 l .text 0000000000000000 .LFB7 +000000000000a746 l .text 0000000000000000 .LFE7 +000000000002af81 l .debug_str 0000000000000000 .LASF168 +000000000001f314 l .debug_loc 0000000000000000 .LLST0 +000000000002af87 l .debug_str 0000000000000000 .LASF169 +000000000001f34a l .debug_loc 0000000000000000 .LLST1 +000000000002a83e l .debug_str 0000000000000000 .LASF170 +000000000001f380 l .debug_loc 0000000000000000 .LLST2 +000000000002a844 l .debug_str 0000000000000000 .LASF171 +000000000001f3b6 l .debug_loc 0000000000000000 .LLST3 +000000000002a84a l .debug_str 0000000000000000 .LASF172 +000000000001f3ec l .debug_loc 0000000000000000 .LLST4 +000000000002a850 l .debug_str 0000000000000000 .LASF173 +000000000001f422 l .debug_loc 0000000000000000 .LLST5 +000000000000a72e l .text 0000000000000000 .LBB4 +000000000000a742 l .text 0000000000000000 .LBE4 +000000000001f458 l .debug_loc 0000000000000000 .LLST6 +000000000001f47d l .debug_loc 0000000000000000 .LLST7 +000000000001f4b3 l .debug_loc 0000000000000000 .LLST8 +000000000001f4e9 l .debug_loc 0000000000000000 .LLST9 +000000000001f51f l .debug_loc 0000000000000000 .LLST10 +000000000001f555 l .debug_loc 0000000000000000 .LLST11 +000000000001f58b l .debug_loc 0000000000000000 .LLST12 +000000000002ab1e l .debug_str 0000000000000000 .LASF178 +000000000000a722 l .text 0000000000000000 .LVL0 +000000000000a732 l .text 0000000000000000 .LVL7 +000000000000a734 l .text 0000000000000000 .LVL8 +000000000000a736 l .text 0000000000000000 .LVL9 +000000000000a738 l .text 0000000000000000 .LVL10 +000000000000a73a l .text 0000000000000000 .LVL11 +000000000000a73c l .text 0000000000000000 .LVL12 +000000000000a72e l .text 0000000000000000 .LVL6 +000000000000a742 l .text 0000000000000000 .LVL13 +000000000000a72c l .text 0000000000000000 .LVL5 +000000000000a72a l .text 0000000000000000 .LVL4 +000000000000a728 l .text 0000000000000000 .LVL3 +000000000000a726 l .text 0000000000000000 .LVL2 +000000000000a724 l .text 0000000000000000 .LVL1 +00000000000314cd l .debug_info 0000000000000000 .Ldebug_info0 +000000000000a722 l .text 0000000000000000 .L0 +000000000000a722 l .text 0000000000000000 .L0 +000000000000a722 l .text 0000000000000000 .L0 +000000000000a72e l .text 0000000000000000 .L0 +000000000000a72e l .text 0000000000000000 .L0 +000000000000a732 l .text 0000000000000000 .L0 +000000000000a732 l .text 0000000000000000 .L0 +000000000000a734 l .text 0000000000000000 .L0 +000000000000a734 l .text 0000000000000000 .L0 +000000000000a736 l .text 0000000000000000 .L0 +000000000000a736 l .text 0000000000000000 .L0 +000000000000a738 l .text 0000000000000000 .L0 +000000000000a738 l .text 0000000000000000 .L0 +000000000000a73a l .text 0000000000000000 .L0 +000000000000a73a l .text 0000000000000000 .L0 +000000000000a73c l .text 0000000000000000 .L0 +000000000000a73c l .text 0000000000000000 .L0 +000000000000a740 l .text 0000000000000000 .L0 +000000000000a742 l .text 0000000000000000 .L0 +000000000000a742 l .text 0000000000000000 .L0 +000000000000a746 l .text 0000000000000000 .L0 +00000000000040e8 l .debug_frame 0000000000000000 .L0 +000000000000a722 l .text 0000000000000000 .L0 +000000000000a746 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 PROXY_pthread_detach.c +000000000000e2ae l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000002bb42 l .debug_str 0000000000000000 .LASF153 +000000000002b8f3 l .debug_str 0000000000000000 .LASF154 +000000000002b98c l .debug_str 0000000000000000 .LASF155 +0000000000003790 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000021ed3 l .debug_line 0000000000000000 .Ldebug_line0 +000000000002b45e l .debug_str 0000000000000000 .LASF0 +000000000002b880 l .debug_str 0000000000000000 .LASF1 +000000000002b8bd l .debug_str 0000000000000000 .LASF2 +000000000002b65f l .debug_str 0000000000000000 .LASF3 +000000000002b5fb l .debug_str 0000000000000000 .LASF4 +000000000002b4cb l .debug_str 0000000000000000 .LASF5 +000000000002b623 l .debug_str 0000000000000000 .LASF6 +000000000002b70e l .debug_str 0000000000000000 .LASF8 +000000000002b3c5 l .debug_str 0000000000000000 .LASF7 +000000000002b336 l .debug_str 0000000000000000 .LASF9 +000000000002bc46 l .debug_str 0000000000000000 .LASF10 +000000000002b9b2 l .debug_str 0000000000000000 .LASF11 +000000000002b870 l .debug_str 0000000000000000 .LASF12 +000000000002b87a l .debug_str 0000000000000000 .LASF13 +000000000002b786 l .debug_str 0000000000000000 .LASF14 +000000000002b949 l .debug_str 0000000000000000 .LASF15 +000000000002b5ca l .debug_str 0000000000000000 .LASF16 +000000000002b824 l .debug_str 0000000000000000 .LASF17 +000000000002bca7 l .debug_str 0000000000000000 .LASF18 +000000000002b420 l .debug_str 0000000000000000 .LASF19 +000000000002bc90 l .debug_str 0000000000000000 .LASF20 +000000000002b79f l .debug_str 0000000000000000 .LASF21 +000000000002bb0e l .debug_str 0000000000000000 .LASF22 +000000000002ba50 l .debug_str 0000000000000000 .LASF23 +000000000002ba3d l .debug_str 0000000000000000 .LASF24 +000000000002b724 l .debug_str 0000000000000000 .LASF25 +000000000002bc4c l .debug_str 0000000000000000 .LASF26 +000000000002b34a l .debug_str 0000000000000000 .LASF27 +000000000002b972 l .debug_str 0000000000000000 .LASF28 +000000000002b7c2 l .debug_str 0000000000000000 .LASF29 +000000000002b962 l .debug_str 0000000000000000 .LASF30 +000000000002b5df l .debug_str 0000000000000000 .LASF31 +000000000002b69b l .debug_str 0000000000000000 .LASF32 +000000000002b842 l .debug_str 0000000000000000 .LASF33 +000000000002b4b7 l .debug_str 0000000000000000 .LASF34 +000000000002b6c6 l .debug_str 0000000000000000 .LASF35 +000000000002b754 l .debug_str 0000000000000000 .LASF36 +000000000002b365 l .debug_str 0000000000000000 .LASF37 +000000000002bb22 l .debug_str 0000000000000000 .LASF38 +000000000002b93d l .debug_str 0000000000000000 .LASF39 +000000000002b9e7 l .debug_str 0000000000000000 .LASF40 +000000000002b410 l .debug_str 0000000000000000 .LASF41 +000000000002b932 l .debug_str 0000000000000000 .LASF42 +000000000002b8a9 l .debug_str 0000000000000000 .LASF43 +000000000002b300 l .debug_str 0000000000000000 .LASF44 +000000000002b608 l .debug_str 0000000000000000 .LASF45 +000000000002b88e l .debug_str 0000000000000000 .LASF46 +000000000002b539 l .debug_str 0000000000000000 .LASF47 +000000000002bae4 l .debug_str 0000000000000000 .LASF48 +000000000002b777 l .debug_str 0000000000000000 .LASF49 +000000000002b482 l .debug_str 0000000000000000 .LASF50 +000000000002b400 l .debug_str 0000000000000000 .LASF51 +000000000002b7ae l .debug_str 0000000000000000 .LASF52 +000000000002b3a2 l .debug_str 0000000000000000 .LASF53 +000000000002ba7f l .debug_str 0000000000000000 .LASF54 +000000000002b5ae l .debug_str 0000000000000000 .LASF55 +000000000002b325 l .debug_str 0000000000000000 .LASF56 +000000000002b766 l .debug_str 0000000000000000 .LASF57 +000000000002b67c l .debug_str 0000000000000000 .LASF58 +000000000002bbf2 l .debug_str 0000000000000000 .LASF59 +000000000002b63f l .debug_str 0000000000000000 .LASF60 +000000000002b716 l .debug_str 0000000000000000 .LASF61 +000000000002b55c l .debug_str 0000000000000000 .LASF62 +000000000002b6da l .debug_str 0000000000000000 .LASF63 +000000000002b493 l .debug_str 0000000000000000 .LASF64 +000000000002bc3c l .debug_str 0000000000000000 .LASF65 +000000000002b455 l .debug_str 0000000000000000 .LASF66 +000000000002b5c0 l .debug_str 0000000000000000 .LASF67 +000000000002b3f6 l .debug_str 0000000000000000 .LASF68 +000000000002b7e9 l .debug_str 0000000000000000 .LASF69 +000000000002b2f7 l .debug_str 0000000000000000 .LASF70 +000000000002b3ba l .debug_str 0000000000000000 .LASF71 +000000000002b374 l .debug_str 0000000000000000 .LASF72 +000000000002b6e9 l .debug_str 0000000000000000 .LASF73 +000000000002b4d4 l .debug_str 0000000000000000 .LASF74 +000000000002b83a l .debug_str 0000000000000000 .LASF75 +000000000002b8c7 l .debug_str 0000000000000000 .LASF76 +000000000002b635 l .debug_str 0000000000000000 .LASF77 +000000000002bc2e l .debug_str 0000000000000000 .LASF78 +000000000002b44b l .debug_str 0000000000000000 .LASF79 +000000000002b574 l .debug_str 0000000000000000 .LASF80 +000000000002badb l .debug_str 0000000000000000 .LASF81 +000000000002b82f l .debug_str 0000000000000000 .LASF82 +000000000002bc6e l .debug_str 0000000000000000 .LASF83 +000000000002ba75 l .debug_str 0000000000000000 .LASF84 +000000000002b340 l .debug_str 0000000000000000 .LASF85 +000000000002b703 l .debug_str 0000000000000000 .LASF86 +000000000002b89d l .debug_str 0000000000000000 .LASF87 +000000000002ba91 l .debug_str 0000000000000000 .LASF88 +000000000002b8d0 l .debug_str 0000000000000000 .LASF89 +000000000002b5d5 l .debug_str 0000000000000000 .LASF90 +000000000002b6bc l .debug_str 0000000000000000 .LASF91 +000000000002bc23 l .debug_str 0000000000000000 .LASF92 +000000000002b819 l .debug_str 0000000000000000 .LASF93 +000000000002b478 l .debug_str 0000000000000000 .LASF94 +000000000002b865 l .debug_str 0000000000000000 .LASF95 +000000000002b594 l .debug_str 0000000000000000 .LASF96 +000000000002b5ef l .debug_str 0000000000000000 .LASF97 +000000000002bc16 l .debug_str 0000000000000000 .LASF98 +000000000002b955 l .debug_str 0000000000000000 .LASF99 +000000000002ba6a l .debug_str 0000000000000000 .LASF100 +000000000002b691 l .debug_str 0000000000000000 .LASF101 +000000000002b56a l .debug_str 0000000000000000 .LASF102 +000000000002b672 l .debug_str 0000000000000000 .LASF103 +000000000002ba31 l .debug_str 0000000000000000 .LASF104 +000000000002bcb1 l .debug_str 0000000000000000 .LASF105 +000000000002b800 l .debug_str 0000000000000000 .LASF106 +000000000002b549 l .debug_str 0000000000000000 .LASF107 +000000000002b7ce l .debug_str 0000000000000000 .LASF108 +000000000002b433 l .debug_str 0000000000000000 .LASF109 +000000000002bac5 l .debug_str 0000000000000000 .LASF110 +000000000002b518 l .debug_str 0000000000000000 .LASF111 +000000000002b38f l .debug_str 0000000000000000 .LASF112 +000000000002b2e3 l .debug_str 0000000000000000 .LASF113 +000000000002b8d9 l .debug_str 0000000000000000 .LASF114 +000000000002bc5d l .debug_str 0000000000000000 .LASF115 +000000000002b3dc l .debug_str 0000000000000000 .LASF116 +000000000002ba1a l .debug_str 0000000000000000 .LASF117 +000000000002b9cb l .debug_str 0000000000000000 .LASF118 +000000000002b30b l .debug_str 0000000000000000 .LASF119 +000000000002b73b l .debug_str 0000000000000000 .LASF120 +000000000002baf1 l .debug_str 0000000000000000 .LASF121 +000000000002b49d l .debug_str 0000000000000000 .LASF122 +000000000002b4f0 l .debug_str 0000000000000000 .LASF123 +000000000002ba9e l .debug_str 0000000000000000 .LASF124 +000000000002bb2e l .debug_str 0000000000000000 .LASF125 +000000000002b616 l .debug_str 0000000000000000 .LASF126 +000000000002b509 l .debug_str 0000000000000000 .LASF127 +000000000002b6f5 l .debug_str 0000000000000000 .LASF128 +000000000002bab9 l .debug_str 0000000000000000 .LASF129 +000000000002b59f l .debug_str 0000000000000000 .LASF130 +000000000002b7f4 l .debug_str 0000000000000000 .LASF131 +000000000002b923 l .debug_str 0000000000000000 .LASF132 +000000000002b851 l .debug_str 0000000000000000 .LASF133 +000000000002b37e l .debug_str 0000000000000000 .LASF134 +000000000002b651 l .debug_str 0000000000000000 .LASF135 +000000000002b9b7 l .debug_str 0000000000000000 .LASF136 +000000000002ba0d l .debug_str 0000000000000000 .LASF137 +000000000002bc77 l .debug_str 0000000000000000 .LASF138 +000000000002b35a l .debug_str 0000000000000000 .LASF139 +000000000002b8b2 l .debug_str 0000000000000000 .LASF140 +000000000002b57d l .debug_str 0000000000000000 .LASF141 +000000000002bc82 l .debug_str 0000000000000000 .LASF142 +000000000002b46a l .debug_str 0000000000000000 .LASF143 +000000000002bc04 l .debug_str 0000000000000000 .LASF144 +000000000002b3ac l .debug_str 0000000000000000 .LASF145 +000000000002b790 l .debug_str 0000000000000000 .LASF146 +000000000002b9f3 l .debug_str 0000000000000000 .LASF147 +000000000002b9fc l .debug_str 0000000000000000 .LASF148 +000000000002b912 l .debug_str 0000000000000000 .LASF149 +000000000002b52e l .debug_str 0000000000000000 .LASF150 +000000000002b6ad l .debug_str 0000000000000000 .LASF151 +000000000002b4e1 l .debug_str 0000000000000000 .LASF156 +000000000000a746 l .text 0000000000000000 .LFB7 +000000000000a756 l .text 0000000000000000 .LFE7 +000000000002b9ac l .debug_str 0000000000000000 .LASF152 +000000000001f5c1 l .debug_loc 0000000000000000 .LLST0 +000000000000a748 l .text 0000000000000000 .LBB4 +000000000000a752 l .text 0000000000000000 .LBE4 +000000000001f5fa l .debug_loc 0000000000000000 .LLST1 +000000000001f61f l .debug_loc 0000000000000000 .LLST2 +000000000002b58a l .debug_str 0000000000000000 .LASF157 +000000000000a746 l .text 0000000000000000 .LVL0 +000000000000a74c l .text 0000000000000000 .LVL2 +000000000000a748 l .text 0000000000000000 .LVL1 +000000000000a752 l .text 0000000000000000 .LVL3 +0000000000031b9b l .debug_info 0000000000000000 .Ldebug_info0 +000000000000a746 l .text 0000000000000000 .L0 +000000000000a746 l .text 0000000000000000 .L0 +000000000000a746 l .text 0000000000000000 .L0 +000000000000a748 l .text 0000000000000000 .L0 +000000000000a748 l .text 0000000000000000 .L0 +000000000000a74c l .text 0000000000000000 .L0 +000000000000a74c l .text 0000000000000000 .L0 +000000000000a750 l .text 0000000000000000 .L0 +000000000000a752 l .text 0000000000000000 .L0 +000000000000a752 l .text 0000000000000000 .L0 +000000000000a756 l .text 0000000000000000 .L0 +0000000000004110 l .debug_frame 0000000000000000 .L0 +000000000000a746 l .text 0000000000000000 .L0 +000000000000a756 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 PROXY_read.c +000000000000e395 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000002c50a l .debug_str 0000000000000000 .LASF155 +000000000002c60a l .debug_str 0000000000000000 .LASF156 +000000000002c33d l .debug_str 0000000000000000 .LASF157 +00000000000037b0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000022027 l .debug_line 0000000000000000 .Ldebug_line0 +000000000002be27 l .debug_str 0000000000000000 .LASF0 +000000000002c250 l .debug_str 0000000000000000 .LASF1 +000000000002c28d l .debug_str 0000000000000000 .LASF2 +000000000002c02b l .debug_str 0000000000000000 .LASF3 +000000000002bfc7 l .debug_str 0000000000000000 .LASF4 +000000000002be94 l .debug_str 0000000000000000 .LASF5 +000000000002bfef l .debug_str 0000000000000000 .LASF6 +000000000002c5ba l .debug_str 0000000000000000 .LASF7 +000000000002c0da l .debug_str 0000000000000000 .LASF8 +000000000002bd8e l .debug_str 0000000000000000 .LASF9 +000000000002bcf7 l .debug_str 0000000000000000 .LASF10 +000000000002bcf0 l .debug_str 0000000000000000 .LASF11 +000000000002bd3f l .debug_str 0000000000000000 .LASF12 +000000000002c369 l .debug_str 0000000000000000 .LASF13 +000000000002c152 l .debug_str 0000000000000000 .LASF14 +000000000002c2fa l .debug_str 0000000000000000 .LASF15 +000000000002bf96 l .debug_str 0000000000000000 .LASF16 +000000000002c1f0 l .debug_str 0000000000000000 .LASF17 +000000000002c67a l .debug_str 0000000000000000 .LASF18 +000000000002bde9 l .debug_str 0000000000000000 .LASF19 +000000000002c663 l .debug_str 0000000000000000 .LASF20 +000000000002c16b l .debug_str 0000000000000000 .LASF21 +000000000002c4d6 l .debug_str 0000000000000000 .LASF22 +000000000002c407 l .debug_str 0000000000000000 .LASF23 +000000000002c3f4 l .debug_str 0000000000000000 .LASF24 +000000000002c0f0 l .debug_str 0000000000000000 .LASF25 +000000000002c61f l .debug_str 0000000000000000 .LASF26 +000000000002bd0b l .debug_str 0000000000000000 .LASF27 +000000000002c323 l .debug_str 0000000000000000 .LASF28 +000000000002c18e l .debug_str 0000000000000000 .LASF29 +000000000002c313 l .debug_str 0000000000000000 .LASF30 +000000000002bfab l .debug_str 0000000000000000 .LASF31 +000000000002c067 l .debug_str 0000000000000000 .LASF32 +000000000002c20e l .debug_str 0000000000000000 .LASF33 +000000000002be80 l .debug_str 0000000000000000 .LASF34 +000000000002c092 l .debug_str 0000000000000000 .LASF35 +000000000002c120 l .debug_str 0000000000000000 .LASF36 +000000000002bd26 l .debug_str 0000000000000000 .LASF37 +000000000002c4ea l .debug_str 0000000000000000 .LASF38 +000000000002c2ee l .debug_str 0000000000000000 .LASF39 +000000000002c39e l .debug_str 0000000000000000 .LASF40 +000000000002bdd9 l .debug_str 0000000000000000 .LASF41 +000000000002c2e3 l .debug_str 0000000000000000 .LASF42 +000000000002c279 l .debug_str 0000000000000000 .LASF43 +000000000002bccb l .debug_str 0000000000000000 .LASF44 +000000000002bfd4 l .debug_str 0000000000000000 .LASF45 +000000000002c25e l .debug_str 0000000000000000 .LASF46 +000000000002bef3 l .debug_str 0000000000000000 .LASF47 +000000000002c4ac l .debug_str 0000000000000000 .LASF48 +000000000002c143 l .debug_str 0000000000000000 .LASF49 +000000000002be4b l .debug_str 0000000000000000 .LASF50 +000000000002bdc9 l .debug_str 0000000000000000 .LASF51 +000000000002c17a l .debug_str 0000000000000000 .LASF52 +000000000002bd6b l .debug_str 0000000000000000 .LASF53 +000000000002c436 l .debug_str 0000000000000000 .LASF54 +000000000002bf7a l .debug_str 0000000000000000 .LASF55 +000000000002c47c l .debug_str 0000000000000000 .LASF56 +000000000002c132 l .debug_str 0000000000000000 .LASF57 +000000000002c048 l .debug_str 0000000000000000 .LASF58 +000000000002bf44 l .debug_str 0000000000000000 .LASF59 +000000000002c00b l .debug_str 0000000000000000 .LASF60 +000000000002c0e2 l .debug_str 0000000000000000 .LASF61 +000000000002bf16 l .debug_str 0000000000000000 .LASF62 +000000000002c0a6 l .debug_str 0000000000000000 .LASF63 +000000000002be5c l .debug_str 0000000000000000 .LASF64 +000000000002c5fb l .debug_str 0000000000000000 .LASF65 +000000000002be1e l .debug_str 0000000000000000 .LASF66 +000000000002bf8c l .debug_str 0000000000000000 .LASF67 +000000000002bdbf l .debug_str 0000000000000000 .LASF68 +000000000002c1b5 l .debug_str 0000000000000000 .LASF69 +000000000002bcc2 l .debug_str 0000000000000000 .LASF70 +000000000002bd83 l .debug_str 0000000000000000 .LASF71 +000000000002bd35 l .debug_str 0000000000000000 .LASF72 +000000000002c0b5 l .debug_str 0000000000000000 .LASF73 +000000000002be9d l .debug_str 0000000000000000 .LASF74 +000000000002c206 l .debug_str 0000000000000000 .LASF75 +000000000002c297 l .debug_str 0000000000000000 .LASF76 +000000000002c001 l .debug_str 0000000000000000 .LASF77 +000000000002c5ed l .debug_str 0000000000000000 .LASF78 +000000000002be14 l .debug_str 0000000000000000 .LASF79 +000000000002bf2e l .debug_str 0000000000000000 .LASF80 +000000000002c4a3 l .debug_str 0000000000000000 .LASF81 +000000000002c1fb l .debug_str 0000000000000000 .LASF82 +000000000002c641 l .debug_str 0000000000000000 .LASF83 +000000000002c42c l .debug_str 0000000000000000 .LASF84 +000000000002bd01 l .debug_str 0000000000000000 .LASF85 +000000000002c0cf l .debug_str 0000000000000000 .LASF86 +000000000002c26d l .debug_str 0000000000000000 .LASF87 +000000000002c448 l .debug_str 0000000000000000 .LASF88 +000000000002c2a0 l .debug_str 0000000000000000 .LASF89 +000000000002bfa1 l .debug_str 0000000000000000 .LASF90 +000000000002c088 l .debug_str 0000000000000000 .LASF91 +000000000002c5e2 l .debug_str 0000000000000000 .LASF92 +000000000002c1e5 l .debug_str 0000000000000000 .LASF93 +000000000002be41 l .debug_str 0000000000000000 .LASF94 +000000000002c231 l .debug_str 0000000000000000 .LASF95 +000000000002bf60 l .debug_str 0000000000000000 .LASF96 +000000000002bfbb l .debug_str 0000000000000000 .LASF97 +000000000002c5d5 l .debug_str 0000000000000000 .LASF98 +000000000002c306 l .debug_str 0000000000000000 .LASF99 +000000000002c421 l .debug_str 0000000000000000 .LASF100 +000000000002c05d l .debug_str 0000000000000000 .LASF101 +000000000002bf24 l .debug_str 0000000000000000 .LASF102 +000000000002c03e l .debug_str 0000000000000000 .LASF103 +000000000002c3e8 l .debug_str 0000000000000000 .LASF104 +000000000002c684 l .debug_str 0000000000000000 .LASF105 +000000000002c1cc l .debug_str 0000000000000000 .LASF106 +000000000002bf03 l .debug_str 0000000000000000 .LASF107 +000000000002c19a l .debug_str 0000000000000000 .LASF108 +000000000002bdfc l .debug_str 0000000000000000 .LASF109 +000000000002c48d l .debug_str 0000000000000000 .LASF110 +000000000002bed2 l .debug_str 0000000000000000 .LASF111 +000000000002bd58 l .debug_str 0000000000000000 .LASF112 +000000000002c23c l .debug_str 0000000000000000 .LASF113 +000000000002c2a9 l .debug_str 0000000000000000 .LASF114 +000000000002c630 l .debug_str 0000000000000000 .LASF115 +000000000002bda5 l .debug_str 0000000000000000 .LASF116 +000000000002c3d1 l .debug_str 0000000000000000 .LASF117 +000000000002c382 l .debug_str 0000000000000000 .LASF118 +000000000002bcd6 l .debug_str 0000000000000000 .LASF119 +000000000002c107 l .debug_str 0000000000000000 .LASF120 +000000000002c4b9 l .debug_str 0000000000000000 .LASF121 +000000000002be66 l .debug_str 0000000000000000 .LASF122 +000000000002beaa l .debug_str 0000000000000000 .LASF123 +000000000002c455 l .debug_str 0000000000000000 .LASF124 +000000000002c4f6 l .debug_str 0000000000000000 .LASF125 +000000000002bfe2 l .debug_str 0000000000000000 .LASF126 +000000000002bec3 l .debug_str 0000000000000000 .LASF127 +000000000002c0c1 l .debug_str 0000000000000000 .LASF128 +000000000002c470 l .debug_str 0000000000000000 .LASF129 +000000000002bf6b l .debug_str 0000000000000000 .LASF130 +000000000002c1c0 l .debug_str 0000000000000000 .LASF131 +000000000002c2d4 l .debug_str 0000000000000000 .LASF132 +000000000002c21d l .debug_str 0000000000000000 .LASF133 +000000000002bd47 l .debug_str 0000000000000000 .LASF134 +000000000002c01d l .debug_str 0000000000000000 .LASF135 +000000000002c36e l .debug_str 0000000000000000 .LASF136 +000000000002c3c4 l .debug_str 0000000000000000 .LASF137 +000000000002c64a l .debug_str 0000000000000000 .LASF138 +000000000002bd1b l .debug_str 0000000000000000 .LASF139 +000000000002c282 l .debug_str 0000000000000000 .LASF140 +000000000002bf37 l .debug_str 0000000000000000 .LASF141 +000000000002c655 l .debug_str 0000000000000000 .LASF142 +000000000002be33 l .debug_str 0000000000000000 .LASF143 +000000000002c5c3 l .debug_str 0000000000000000 .LASF144 +000000000002bd75 l .debug_str 0000000000000000 .LASF145 +000000000002c15c l .debug_str 0000000000000000 .LASF146 +000000000002c3aa l .debug_str 0000000000000000 .LASF147 +000000000002c3b3 l .debug_str 0000000000000000 .LASF148 +000000000002c2c3 l .debug_str 0000000000000000 .LASF149 +000000000002bee8 l .debug_str 0000000000000000 .LASF150 +000000000002c079 l .debug_str 0000000000000000 .LASF151 +000000000002c605 l .debug_str 0000000000000000 .LASF158 +000000000000a756 l .text 0000000000000000 .LFB7 +000000000000a76c l .text 0000000000000000 .LFE7 +000000000002c35d l .debug_str 0000000000000000 .LASF152 +000000000001f64a l .debug_loc 0000000000000000 .LLST0 +000000000002c363 l .debug_str 0000000000000000 .LASF153 +000000000001f683 l .debug_loc 0000000000000000 .LLST1 +000000000002bcbc l .debug_str 0000000000000000 .LASF154 +000000000001f6b9 l .debug_loc 0000000000000000 .LLST2 +000000000000a75c l .text 0000000000000000 .LBB4 +000000000000a76a l .text 0000000000000000 .LBE4 +000000000001f6ef l .debug_loc 0000000000000000 .LLST3 +000000000001f714 l .debug_loc 0000000000000000 .LLST4 +000000000001f74a l .debug_loc 0000000000000000 .LLST5 +000000000001f780 l .debug_loc 0000000000000000 .LLST6 +000000000002bf56 l .debug_str 0000000000000000 .LASF159 +000000000000a756 l .text 0000000000000000 .LVL0 +000000000000a760 l .text 0000000000000000 .LVL4 +000000000000a762 l .text 0000000000000000 .LVL5 +000000000000a764 l .text 0000000000000000 .LVL6 +000000000000a75c l .text 0000000000000000 .LVL3 +000000000000a76a l .text 0000000000000000 .LVL7 +000000000000a75a l .text 0000000000000000 .LVL2 +000000000000a758 l .text 0000000000000000 .LVL1 +0000000000032036 l .debug_info 0000000000000000 .Ldebug_info0 +000000000000a756 l .text 0000000000000000 .L0 +000000000000a756 l .text 0000000000000000 .L0 +000000000000a756 l .text 0000000000000000 .L0 +000000000000a75c l .text 0000000000000000 .L0 +000000000000a75c l .text 0000000000000000 .L0 +000000000000a760 l .text 0000000000000000 .L0 +000000000000a760 l .text 0000000000000000 .L0 +000000000000a762 l .text 0000000000000000 .L0 +000000000000a762 l .text 0000000000000000 .L0 +000000000000a764 l .text 0000000000000000 .L0 +000000000000a764 l .text 0000000000000000 .L0 +000000000000a768 l .text 0000000000000000 .L0 +000000000000a76a l .text 0000000000000000 .L0 +000000000000a76a l .text 0000000000000000 .L0 +000000000000a76c l .text 0000000000000000 .L0 +0000000000004138 l .debug_frame 0000000000000000 .L0 +000000000000a756 l .text 0000000000000000 .L0 +000000000000a76c l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 PROXY_rename.c +000000000000e483 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000002c7a1 l .debug_str 0000000000000000 .LASF154 +000000000002c75c l .debug_str 0000000000000000 .LASF155 +000000000002cd95 l .debug_str 0000000000000000 .LASF156 +00000000000037d0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000022192 l .debug_line 0000000000000000 .Ldebug_line0 +000000000002cf9b l .debug_str 0000000000000000 .LASF0 +000000000002ced8 l .debug_str 0000000000000000 .LASF1 +000000000002cd79 l .debug_str 0000000000000000 .LASF2 +000000000002cfa7 l .debug_str 0000000000000000 .LASF3 +000000000002c711 l .debug_str 0000000000000000 .LASF4 +000000000002cdd9 l .debug_str 0000000000000000 .LASF5 +000000000002ce96 l .debug_str 0000000000000000 .LASF6 +000000000002c9ad l .debug_str 0000000000000000 .LASF8 +000000000002c94e l .debug_str 0000000000000000 .LASF7 +000000000002ce77 l .debug_str 0000000000000000 .LASF9 +000000000002cb3f l .debug_str 0000000000000000 .LASF10 +000000000002cbfa l .debug_str 0000000000000000 .LASF11 +000000000002cd34 l .debug_str 0000000000000000 .LASF12 +000000000002ca6e l .debug_str 0000000000000000 .LASF13 +000000000002ce32 l .debug_str 0000000000000000 .LASF14 +000000000002cc15 l .debug_str 0000000000000000 .LASF15 +000000000002c796 l .debug_str 0000000000000000 .LASF16 +000000000002cdff l .debug_str 0000000000000000 .LASF17 +000000000002cdf5 l .debug_str 0000000000000000 .LASF18 +000000000002ca8f l .debug_str 0000000000000000 .LASF19 +000000000002c972 l .debug_str 0000000000000000 .LASF20 +000000000002cdb5 l .debug_str 0000000000000000 .LASF21 +000000000002c8ca l .debug_str 0000000000000000 .LASF22 +000000000002cfd7 l .debug_str 0000000000000000 .LASF23 +000000000002ce4e l .debug_str 0000000000000000 .LASF24 +000000000002cc2f l .debug_str 0000000000000000 .LASF25 +000000000002cba9 l .debug_str 0000000000000000 .LASF26 +000000000002cea8 l .debug_str 0000000000000000 .LASF27 +000000000002c9ed l .debug_str 0000000000000000 .LASF28 +000000000002c8b3 l .debug_str 0000000000000000 .LASF29 +000000000002c9ce l .debug_str 0000000000000000 .LASF30 +000000000002c8a3 l .debug_str 0000000000000000 .LASF31 +000000000002cca2 l .debug_str 0000000000000000 .LASF32 +000000000002c9de l .debug_str 0000000000000000 .LASF33 +000000000002c93a l .debug_str 0000000000000000 .LASF34 +000000000002c729 l .debug_str 0000000000000000 .LASF35 +000000000002cee6 l .debug_str 0000000000000000 .LASF36 +000000000002c773 l .debug_str 0000000000000000 .LASF37 +000000000002cb1f l .debug_str 0000000000000000 .LASF38 +000000000002ca07 l .debug_str 0000000000000000 .LASF39 +000000000002ce61 l .debug_str 0000000000000000 .LASF40 +000000000002c893 l .debug_str 0000000000000000 .LASF41 +000000000002c998 l .debug_str 0000000000000000 .LASF42 +000000000002cff1 l .debug_str 0000000000000000 .LASF43 +000000000002cc8a l .debug_str 0000000000000000 .LASF44 +000000000002ccd7 l .debug_str 0000000000000000 .LASF45 +000000000002cb4e l .debug_str 0000000000000000 .LASF46 +000000000002c914 l .debug_str 0000000000000000 .LASF47 +000000000002cc08 l .debug_str 0000000000000000 .LASF48 +000000000002c868 l .debug_str 0000000000000000 .LASF49 +000000000002c6a4 l .debug_str 0000000000000000 .LASF50 +000000000002ce16 l .debug_str 0000000000000000 .LASF51 +000000000002c6d4 l .debug_str 0000000000000000 .LASF52 +000000000002cb44 l .debug_str 0000000000000000 .LASF53 +000000000002cd83 l .debug_str 0000000000000000 .LASF54 +000000000002cfc5 l .debug_str 0000000000000000 .LASF55 +000000000002c882 l .debug_str 0000000000000000 .LASF56 +000000000002cffa l .debug_str 0000000000000000 .LASF57 +000000000002cdc4 l .debug_str 0000000000000000 .LASF58 +000000000002caf8 l .debug_str 0000000000000000 .LASF59 +000000000002c6e8 l .debug_str 0000000000000000 .LASF60 +000000000002cb81 l .debug_str 0000000000000000 .LASF61 +000000000002cf1e l .debug_str 0000000000000000 .LASF62 +000000000002ca13 l .debug_str 0000000000000000 .LASF63 +000000000002cbd4 l .debug_str 0000000000000000 .LASF64 +000000000002cb15 l .debug_str 0000000000000000 .LASF65 +000000000002cd70 l .debug_str 0000000000000000 .LASF66 +000000000002cd40 l .debug_str 0000000000000000 .LASF67 +000000000002c930 l .debug_str 0000000000000000 .LASF68 +000000000002c6fa l .debug_str 0000000000000000 .LASF69 +000000000002c90b l .debug_str 0000000000000000 .LASF70 +000000000002c68f l .debug_str 0000000000000000 .LASF71 +000000000002ce81 l .debug_str 0000000000000000 .LASF72 +000000000002ce0a l .debug_str 0000000000000000 .LASF73 +000000000002d035 l .debug_str 0000000000000000 .LASF74 +000000000002d042 l .debug_str 0000000000000000 .LASF75 +000000000002cf15 l .debug_str 0000000000000000 .LASF76 +000000000002cf6a l .debug_str 0000000000000000 .LASF77 +000000000002cc21 l .debug_str 0000000000000000 .LASF78 +000000000002cbf0 l .debug_str 0000000000000000 .LASF79 +000000000002d02c l .debug_str 0000000000000000 .LASF80 +000000000002ccbf l .debug_str 0000000000000000 .LASF81 +000000000002ccb4 l .debug_str 0000000000000000 .LASF82 +000000000002cd00 l .debug_str 0000000000000000 .LASF83 +000000000002c8de l .debug_str 0000000000000000 .LASF84 +000000000002c9a3 l .debug_str 0000000000000000 .LASF85 +000000000002cfba l .debug_str 0000000000000000 .LASF86 +000000000002ce26 l .debug_str 0000000000000000 .LASF87 +000000000002cac3 l .debug_str 0000000000000000 .LASF88 +000000000002c6cb l .debug_str 0000000000000000 .LASF89 +000000000002c73d l .debug_str 0000000000000000 .LASF90 +000000000002c747 l .debug_str 0000000000000000 .LASF91 +000000000002c71e l .debug_str 0000000000000000 .LASF92 +000000000002cbde l .debug_str 0000000000000000 .LASF93 +000000000002cb5d l .debug_str 0000000000000000 .LASF94 +000000000002cb0a l .debug_str 0000000000000000 .LASF95 +000000000002ce8b l .debug_str 0000000000000000 .LASF96 +000000000002c705 l .debug_str 0000000000000000 .LASF97 +000000000002c965 l .debug_str 0000000000000000 .LASF98 +000000000002d05b l .debug_str 0000000000000000 .LASF99 +000000000002d04a l .debug_str 0000000000000000 .LASF100 +000000000002ce6d l .debug_str 0000000000000000 .LASF101 +000000000002cae1 l .debug_str 0000000000000000 .LASF102 +000000000002cd66 l .debug_str 0000000000000000 .LASF103 +000000000002c924 l .debug_str 0000000000000000 .LASF104 +000000000002ca63 l .debug_str 0000000000000000 .LASF105 +000000000002c9b5 l .debug_str 0000000000000000 .LASF106 +000000000002cde2 l .debug_str 0000000000000000 .LASF107 +000000000002cce5 l .debug_str 0000000000000000 .LASF108 +000000000002ca28 l .debug_str 0000000000000000 .LASF109 +000000000002c6b5 l .debug_str 0000000000000000 .LASF110 +000000000002d016 l .debug_str 0000000000000000 .LASF111 +000000000002cab0 l .debug_str 0000000000000000 .LASF112 +000000000002c782 l .debug_str 0000000000000000 .LASF113 +000000000002cd09 l .debug_str 0000000000000000 .LASF114 +000000000002ceb8 l .debug_str 0000000000000000 .LASF115 +000000000002cb8f l .debug_str 0000000000000000 .LASF116 +000000000002c851 l .debug_str 0000000000000000 .LASF117 +000000000002cd4a l .debug_str 0000000000000000 .LASF118 +000000000002cc70 l .debug_str 0000000000000000 .LASF119 +000000000002cf82 l .debug_str 0000000000000000 .LASF120 +000000000002cc53 l .debug_str 0000000000000000 .LASF121 +000000000002cb67 l .debug_str 0000000000000000 .LASF122 +000000000002cf51 l .debug_str 0000000000000000 .LASF123 +000000000002ca74 l .debug_str 0000000000000000 .LASF124 +000000000002cb2b l .debug_str 0000000000000000 .LASF125 +000000000002caeb l .debug_str 0000000000000000 .LASF126 +000000000002ca54 l .debug_str 0000000000000000 .LASF127 +000000000002caa2 l .debug_str 0000000000000000 .LASF128 +000000000002c8e8 l .debug_str 0000000000000000 .LASF129 +000000000002c989 l .debug_str 0000000000000000 .LASF130 +000000000002cbba l .debug_str 0000000000000000 .LASF131 +000000000002cec9 l .debug_str 0000000000000000 .LASF132 +000000000002ca40 l .debug_str 0000000000000000 .LASF133 +000000000002cad0 l .debug_str 0000000000000000 .LASF134 +000000000002cef8 l .debug_str 0000000000000000 .LASF135 +000000000002cf2c l .debug_str 0000000000000000 .LASF136 +000000000002cc46 l .debug_str 0000000000000000 .LASF137 +000000000002c751 l .debug_str 0000000000000000 .LASF138 +000000000002d00b l .debug_str 0000000000000000 .LASF139 +000000000002c8bf l .debug_str 0000000000000000 .LASF140 +000000000002cc95 l .debug_str 0000000000000000 .LASF141 +000000000002cbc6 l .debug_str 0000000000000000 .LASF142 +000000000002c8f4 l .debug_str 0000000000000000 .LASF143 +000000000002ce3c l .debug_str 0000000000000000 .LASF144 +000000000002cf74 l .debug_str 0000000000000000 .LASF145 +000000000002ccc8 l .debug_str 0000000000000000 .LASF146 +000000000002c902 l .debug_str 0000000000000000 .LASF147 +000000000002cd23 l .debug_str 0000000000000000 .LASF148 +000000000002cf40 l .debug_str 0000000000000000 .LASF149 +000000000002c877 l .debug_str 0000000000000000 .LASF150 +000000000002cf06 l .debug_str 0000000000000000 .LASF151 +000000000002cbe9 l .debug_str 0000000000000000 .LASF157 +000000000000a76c l .text 0000000000000000 .LFB11 +000000000000a780 l .text 0000000000000000 .LFE11 +000000000002d055 l .debug_str 0000000000000000 .LASF152 +000000000001f7ab l .debug_loc 0000000000000000 .LLST0 +000000000002ca22 l .debug_str 0000000000000000 .LASF153 +000000000001f7e1 l .debug_loc 0000000000000000 .LLST1 +000000000000a770 l .text 0000000000000000 .LBB4 +000000000000a77c l .text 0000000000000000 .LBE4 +000000000001f817 l .debug_loc 0000000000000000 .LLST2 +000000000001f83c l .debug_loc 0000000000000000 .LLST3 +000000000001f872 l .debug_loc 0000000000000000 .LLST4 +000000000002c69a l .debug_str 0000000000000000 .LASF158 +000000000000a76c l .text 0000000000000000 .LVL0 +000000000000a774 l .text 0000000000000000 .LVL3 +000000000000a776 l .text 0000000000000000 .LVL4 +000000000000a770 l .text 0000000000000000 .LVL2 +000000000000a77c l .text 0000000000000000 .LVL5 +000000000000a76e l .text 0000000000000000 .LVL1 +0000000000032546 l .debug_info 0000000000000000 .Ldebug_info0 +000000000000a76c l .text 0000000000000000 .L0 +000000000000a76c l .text 0000000000000000 .L0 +000000000000a76c l .text 0000000000000000 .L0 +000000000000a770 l .text 0000000000000000 .L0 +000000000000a770 l .text 0000000000000000 .L0 +000000000000a774 l .text 0000000000000000 .L0 +000000000000a774 l .text 0000000000000000 .L0 +000000000000a776 l .text 0000000000000000 .L0 +000000000000a776 l .text 0000000000000000 .L0 +000000000000a77a l .text 0000000000000000 .L0 +000000000000a77c l .text 0000000000000000 .L0 +000000000000a77c l .text 0000000000000000 .L0 +000000000000a780 l .text 0000000000000000 .L0 +0000000000004160 l .debug_frame 0000000000000000 .L0 +000000000000a76c l .text 0000000000000000 .L0 +000000000000a780 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 PROXY_rmdir.c +000000000000e57a l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000002d8a5 l .debug_str 0000000000000000 .LASF150 +000000000002d397 l .debug_str 0000000000000000 .LASF151 +000000000002d6ef l .debug_str 0000000000000000 .LASF152 +00000000000037f0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +00000000000222e1 l .debug_line 0000000000000000 .Ldebug_line0 +000000000002d1cf l .debug_str 0000000000000000 .LASF0 +000000000002d602 l .debug_str 0000000000000000 .LASF1 +000000000002d63f l .debug_str 0000000000000000 .LASF2 +000000000002d3dd l .debug_str 0000000000000000 .LASF3 +000000000002d35d l .debug_str 0000000000000000 .LASF4 +000000000002d23c l .debug_str 0000000000000000 .LASF5 +000000000002d385 l .debug_str 0000000000000000 .LASF6 +000000000002d48c l .debug_str 0000000000000000 .LASF8 +000000000002d136 l .debug_str 0000000000000000 .LASF7 +000000000002d0a7 l .debug_str 0000000000000000 .LASF9 +000000000002d715 l .debug_str 0000000000000000 .LASF10 +000000000002d504 l .debug_str 0000000000000000 .LASF11 +000000000002d6ac l .debug_str 0000000000000000 .LASF12 +000000000002d32c l .debug_str 0000000000000000 .LASF13 +000000000002d5a2 l .debug_str 0000000000000000 .LASF14 +000000000002da04 l .debug_str 0000000000000000 .LASF15 +000000000002d191 l .debug_str 0000000000000000 .LASF16 +000000000002d9ed l .debug_str 0000000000000000 .LASF17 +000000000002d51d l .debug_str 0000000000000000 .LASF18 +000000000002d871 l .debug_str 0000000000000000 .LASF19 +000000000002d7b3 l .debug_str 0000000000000000 .LASF20 +000000000002d7a0 l .debug_str 0000000000000000 .LASF21 +000000000002d4a2 l .debug_str 0000000000000000 .LASF22 +000000000002d9a9 l .debug_str 0000000000000000 .LASF23 +000000000002d0bb l .debug_str 0000000000000000 .LASF24 +000000000002d6d5 l .debug_str 0000000000000000 .LASF25 +000000000002d540 l .debug_str 0000000000000000 .LASF26 +000000000002d6c5 l .debug_str 0000000000000000 .LASF27 +000000000002d341 l .debug_str 0000000000000000 .LASF28 +000000000002d419 l .debug_str 0000000000000000 .LASF29 +000000000002d5c0 l .debug_str 0000000000000000 .LASF30 +000000000002d228 l .debug_str 0000000000000000 .LASF31 +000000000002d444 l .debug_str 0000000000000000 .LASF32 +000000000002d4d2 l .debug_str 0000000000000000 .LASF33 +000000000002d0d6 l .debug_str 0000000000000000 .LASF34 +000000000002d885 l .debug_str 0000000000000000 .LASF35 +000000000002d6a0 l .debug_str 0000000000000000 .LASF36 +000000000002d74a l .debug_str 0000000000000000 .LASF37 +000000000002d181 l .debug_str 0000000000000000 .LASF38 +000000000002d695 l .debug_str 0000000000000000 .LASF39 +000000000002d62b l .debug_str 0000000000000000 .LASF40 +000000000002d071 l .debug_str 0000000000000000 .LASF41 +000000000002d36a l .debug_str 0000000000000000 .LASF42 +000000000002d610 l .debug_str 0000000000000000 .LASF43 +000000000002d29b l .debug_str 0000000000000000 .LASF44 +000000000002d847 l .debug_str 0000000000000000 .LASF45 +000000000002d4f5 l .debug_str 0000000000000000 .LASF46 +000000000002d1f3 l .debug_str 0000000000000000 .LASF47 +000000000002d171 l .debug_str 0000000000000000 .LASF48 +000000000002d52c l .debug_str 0000000000000000 .LASF49 +000000000002d113 l .debug_str 0000000000000000 .LASF50 +000000000002d7e2 l .debug_str 0000000000000000 .LASF51 +000000000002d310 l .debug_str 0000000000000000 .LASF52 +000000000002d096 l .debug_str 0000000000000000 .LASF53 +000000000002d4e4 l .debug_str 0000000000000000 .LASF54 +000000000002d3fa l .debug_str 0000000000000000 .LASF55 +000000000002d955 l .debug_str 0000000000000000 .LASF56 +000000000002d3bd l .debug_str 0000000000000000 .LASF57 +000000000002d494 l .debug_str 0000000000000000 .LASF58 +000000000002d2be l .debug_str 0000000000000000 .LASF59 +000000000002d458 l .debug_str 0000000000000000 .LASF60 +000000000002d204 l .debug_str 0000000000000000 .LASF61 +000000000002d99f l .debug_str 0000000000000000 .LASF62 +000000000002d1c6 l .debug_str 0000000000000000 .LASF63 +000000000002d322 l .debug_str 0000000000000000 .LASF64 +000000000002d167 l .debug_str 0000000000000000 .LASF65 +000000000002d567 l .debug_str 0000000000000000 .LASF66 +000000000002d068 l .debug_str 0000000000000000 .LASF67 +000000000002d12b l .debug_str 0000000000000000 .LASF68 +000000000002d0e5 l .debug_str 0000000000000000 .LASF69 +000000000002d467 l .debug_str 0000000000000000 .LASF70 +000000000002d245 l .debug_str 0000000000000000 .LASF71 +000000000002d5b8 l .debug_str 0000000000000000 .LASF72 +000000000002d649 l .debug_str 0000000000000000 .LASF73 +000000000002d3b3 l .debug_str 0000000000000000 .LASF74 +000000000002d991 l .debug_str 0000000000000000 .LASF75 +000000000002d1bc l .debug_str 0000000000000000 .LASF76 +000000000002d2d6 l .debug_str 0000000000000000 .LASF77 +000000000002d83e l .debug_str 0000000000000000 .LASF78 +000000000002d5ad l .debug_str 0000000000000000 .LASF79 +000000000002d9cb l .debug_str 0000000000000000 .LASF80 +000000000002d7d8 l .debug_str 0000000000000000 .LASF81 +000000000002d0b1 l .debug_str 0000000000000000 .LASF82 +000000000002d481 l .debug_str 0000000000000000 .LASF83 +000000000002d61f l .debug_str 0000000000000000 .LASF84 +000000000002d7f4 l .debug_str 0000000000000000 .LASF85 +000000000002d652 l .debug_str 0000000000000000 .LASF86 +000000000002d337 l .debug_str 0000000000000000 .LASF87 +000000000002d43a l .debug_str 0000000000000000 .LASF88 +000000000002d986 l .debug_str 0000000000000000 .LASF89 +000000000002d597 l .debug_str 0000000000000000 .LASF90 +000000000002d1e9 l .debug_str 0000000000000000 .LASF91 +000000000002d5e3 l .debug_str 0000000000000000 .LASF92 +000000000002d2f6 l .debug_str 0000000000000000 .LASF93 +000000000002d351 l .debug_str 0000000000000000 .LASF94 +000000000002d979 l .debug_str 0000000000000000 .LASF95 +000000000002d6b8 l .debug_str 0000000000000000 .LASF96 +000000000002d7cd l .debug_str 0000000000000000 .LASF97 +000000000002d40f l .debug_str 0000000000000000 .LASF98 +000000000002d2cc l .debug_str 0000000000000000 .LASF99 +000000000002d3f0 l .debug_str 0000000000000000 .LASF100 +000000000002d794 l .debug_str 0000000000000000 .LASF101 +000000000002da0e l .debug_str 0000000000000000 .LASF102 +000000000002d57e l .debug_str 0000000000000000 .LASF103 +000000000002d2ab l .debug_str 0000000000000000 .LASF104 +000000000002d54c l .debug_str 0000000000000000 .LASF105 +000000000002d1a4 l .debug_str 0000000000000000 .LASF106 +000000000002d828 l .debug_str 0000000000000000 .LASF107 +000000000002d27a l .debug_str 0000000000000000 .LASF108 +000000000002d100 l .debug_str 0000000000000000 .LASF109 +000000000002d5ee l .debug_str 0000000000000000 .LASF110 +000000000002d65b l .debug_str 0000000000000000 .LASF111 +000000000002d9ba l .debug_str 0000000000000000 .LASF112 +000000000002d14d l .debug_str 0000000000000000 .LASF113 +000000000002d77d l .debug_str 0000000000000000 .LASF114 +000000000002d72e l .debug_str 0000000000000000 .LASF115 +000000000002d07c l .debug_str 0000000000000000 .LASF116 +000000000002d4b9 l .debug_str 0000000000000000 .LASF117 +000000000002d854 l .debug_str 0000000000000000 .LASF118 +000000000002d20e l .debug_str 0000000000000000 .LASF119 +000000000002d252 l .debug_str 0000000000000000 .LASF120 +000000000002d801 l .debug_str 0000000000000000 .LASF121 +000000000002d891 l .debug_str 0000000000000000 .LASF122 +000000000002d378 l .debug_str 0000000000000000 .LASF123 +000000000002d26b l .debug_str 0000000000000000 .LASF124 +000000000002d473 l .debug_str 0000000000000000 .LASF125 +000000000002d81c l .debug_str 0000000000000000 .LASF126 +000000000002d301 l .debug_str 0000000000000000 .LASF127 +000000000002d572 l .debug_str 0000000000000000 .LASF128 +000000000002d686 l .debug_str 0000000000000000 .LASF129 +000000000002d5cf l .debug_str 0000000000000000 .LASF130 +000000000002d0ef l .debug_str 0000000000000000 .LASF131 +000000000002d3cf l .debug_str 0000000000000000 .LASF132 +000000000002d71a l .debug_str 0000000000000000 .LASF133 +000000000002d770 l .debug_str 0000000000000000 .LASF134 +000000000002d9d4 l .debug_str 0000000000000000 .LASF135 +000000000002d0cb l .debug_str 0000000000000000 .LASF136 +000000000002d634 l .debug_str 0000000000000000 .LASF137 +000000000002d2df l .debug_str 0000000000000000 .LASF138 +000000000002d9df l .debug_str 0000000000000000 .LASF139 +000000000002d1db l .debug_str 0000000000000000 .LASF140 +000000000002d967 l .debug_str 0000000000000000 .LASF141 +000000000002d11d l .debug_str 0000000000000000 .LASF142 +000000000002d50e l .debug_str 0000000000000000 .LASF143 +000000000002d756 l .debug_str 0000000000000000 .LASF144 +000000000002d75f l .debug_str 0000000000000000 .LASF145 +000000000002d675 l .debug_str 0000000000000000 .LASF146 +000000000002d290 l .debug_str 0000000000000000 .LASF147 +000000000002d42b l .debug_str 0000000000000000 .LASF148 +000000000002d3ad l .debug_str 0000000000000000 .LASF153 +000000000000a780 l .text 0000000000000000 .LFB7 +000000000000a790 l .text 0000000000000000 .LFE7 +000000000002d70f l .debug_str 0000000000000000 .LASF149 +000000000001f8a8 l .debug_loc 0000000000000000 .LLST0 +000000000000a782 l .text 0000000000000000 .LBB4 +000000000000a78c l .text 0000000000000000 .LBE4 +000000000001f8de l .debug_loc 0000000000000000 .LLST1 +000000000001f903 l .debug_loc 0000000000000000 .LLST2 +000000000002d2ec l .debug_str 0000000000000000 .LASF154 +000000000000a780 l .text 0000000000000000 .LVL0 +000000000000a786 l .text 0000000000000000 .LVL2 +000000000000a782 l .text 0000000000000000 .LVL1 +000000000000a78c l .text 0000000000000000 .LVL3 +0000000000032a18 l .debug_info 0000000000000000 .Ldebug_info0 +000000000000a780 l .text 0000000000000000 .L0 +000000000000a780 l .text 0000000000000000 .L0 +000000000000a780 l .text 0000000000000000 .L0 +000000000000a782 l .text 0000000000000000 .L0 +000000000000a782 l .text 0000000000000000 .L0 +000000000000a786 l .text 0000000000000000 .L0 +000000000000a786 l .text 0000000000000000 .L0 +000000000000a78a l .text 0000000000000000 .L0 +000000000000a78c l .text 0000000000000000 .L0 +000000000000a78c l .text 0000000000000000 .L0 +000000000000a790 l .text 0000000000000000 .L0 +0000000000004188 l .debug_frame 0000000000000000 .L0 +000000000000a780 l .text 0000000000000000 .L0 +000000000000a790 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 PROXY_sched_getscheduler.c +000000000000e671 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000002e28a l .debug_str 0000000000000000 .LASF153 +000000000002e0d1 l .debug_str 0000000000000000 .LASF154 +000000000002e0b1 l .debug_str 0000000000000000 .LASF155 +0000000000003810 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000022420 l .debug_line 0000000000000000 .Ldebug_line0 +000000000002db8e l .debug_str 0000000000000000 .LASF0 +000000000002dfb1 l .debug_str 0000000000000000 .LASF1 +000000000002e001 l .debug_str 0000000000000000 .LASF2 +000000000002dd80 l .debug_str 0000000000000000 .LASF3 +000000000002dd1c l .debug_str 0000000000000000 .LASF4 +000000000002dbfb l .debug_str 0000000000000000 .LASF5 +000000000002dd44 l .debug_str 0000000000000000 .LASF6 +000000000002de2f l .debug_str 0000000000000000 .LASF8 +000000000002dae7 l .debug_str 0000000000000000 .LASF7 +000000000002da58 l .debug_str 0000000000000000 .LASF9 +000000000002e38e l .debug_str 0000000000000000 .LASF10 +000000000002e0fa l .debug_str 0000000000000000 .LASF11 +000000000002db80 l .debug_str 0000000000000000 .LASF12 +000000000002deb1 l .debug_str 0000000000000000 .LASF13 +000000000002dea7 l .debug_str 0000000000000000 .LASF14 +000000000002e06e l .debug_str 0000000000000000 .LASF15 +000000000002dceb l .debug_str 0000000000000000 .LASF16 +000000000002df51 l .debug_str 0000000000000000 .LASF17 +000000000002e3ef l .debug_str 0000000000000000 .LASF18 +000000000002db42 l .debug_str 0000000000000000 .LASF19 +000000000002e3d8 l .debug_str 0000000000000000 .LASF20 +000000000002decc l .debug_str 0000000000000000 .LASF21 +000000000002e256 l .debug_str 0000000000000000 .LASF22 +000000000002e198 l .debug_str 0000000000000000 .LASF23 +000000000002e185 l .debug_str 0000000000000000 .LASF24 +000000000002de45 l .debug_str 0000000000000000 .LASF25 +000000000002e394 l .debug_str 0000000000000000 .LASF26 +000000000002da6c l .debug_str 0000000000000000 .LASF27 +000000000002e097 l .debug_str 0000000000000000 .LASF28 +000000000002deef l .debug_str 0000000000000000 .LASF29 +000000000002e087 l .debug_str 0000000000000000 .LASF30 +000000000002dd00 l .debug_str 0000000000000000 .LASF31 +000000000002ddbc l .debug_str 0000000000000000 .LASF32 +000000000002df6f l .debug_str 0000000000000000 .LASF33 +000000000002dbe7 l .debug_str 0000000000000000 .LASF34 +000000000002dde7 l .debug_str 0000000000000000 .LASF35 +000000000002de75 l .debug_str 0000000000000000 .LASF36 +000000000002da87 l .debug_str 0000000000000000 .LASF37 +000000000002e26a l .debug_str 0000000000000000 .LASF38 +000000000002e062 l .debug_str 0000000000000000 .LASF39 +000000000002e12f l .debug_str 0000000000000000 .LASF40 +000000000002db32 l .debug_str 0000000000000000 .LASF41 +000000000002e057 l .debug_str 0000000000000000 .LASF42 +000000000002dfda l .debug_str 0000000000000000 .LASF43 +000000000002da22 l .debug_str 0000000000000000 .LASF44 +000000000002dd29 l .debug_str 0000000000000000 .LASF45 +000000000002dfbf l .debug_str 0000000000000000 .LASF46 +000000000002dc5a l .debug_str 0000000000000000 .LASF47 +000000000002e22c l .debug_str 0000000000000000 .LASF48 +000000000002de98 l .debug_str 0000000000000000 .LASF49 +000000000002dbb2 l .debug_str 0000000000000000 .LASF50 +000000000002db22 l .debug_str 0000000000000000 .LASF51 +000000000002dedb l .debug_str 0000000000000000 .LASF52 +000000000002dac4 l .debug_str 0000000000000000 .LASF53 +000000000002e1c7 l .debug_str 0000000000000000 .LASF54 +000000000002dccf l .debug_str 0000000000000000 .LASF55 +000000000002da47 l .debug_str 0000000000000000 .LASF56 +000000000002de87 l .debug_str 0000000000000000 .LASF57 +000000000002dd9d l .debug_str 0000000000000000 .LASF58 +000000000002e33a l .debug_str 0000000000000000 .LASF59 +000000000002dd60 l .debug_str 0000000000000000 .LASF60 +000000000002de37 l .debug_str 0000000000000000 .LASF61 +000000000002dc7d l .debug_str 0000000000000000 .LASF62 +000000000002ddfb l .debug_str 0000000000000000 .LASF63 +000000000002dbc3 l .debug_str 0000000000000000 .LASF64 +000000000002e384 l .debug_str 0000000000000000 .LASF65 +000000000002db77 l .debug_str 0000000000000000 .LASF66 +000000000002dce1 l .debug_str 0000000000000000 .LASF67 +000000000002db18 l .debug_str 0000000000000000 .LASF68 +000000000002df16 l .debug_str 0000000000000000 .LASF69 +000000000002da19 l .debug_str 0000000000000000 .LASF70 +000000000002dadc l .debug_str 0000000000000000 .LASF71 +000000000002da96 l .debug_str 0000000000000000 .LASF72 +000000000002de0a l .debug_str 0000000000000000 .LASF73 +000000000002dc04 l .debug_str 0000000000000000 .LASF74 +000000000002df67 l .debug_str 0000000000000000 .LASF75 +000000000002e00b l .debug_str 0000000000000000 .LASF76 +000000000002dd56 l .debug_str 0000000000000000 .LASF77 +000000000002e376 l .debug_str 0000000000000000 .LASF78 +000000000002db6d l .debug_str 0000000000000000 .LASF79 +000000000002dc95 l .debug_str 0000000000000000 .LASF80 +000000000002e223 l .debug_str 0000000000000000 .LASF81 +000000000002df5c l .debug_str 0000000000000000 .LASF82 +000000000002e3b6 l .debug_str 0000000000000000 .LASF83 +000000000002e1bd l .debug_str 0000000000000000 .LASF84 +000000000002da62 l .debug_str 0000000000000000 .LASF85 +000000000002de24 l .debug_str 0000000000000000 .LASF86 +000000000002dfce l .debug_str 0000000000000000 .LASF87 +000000000002e1d9 l .debug_str 0000000000000000 .LASF88 +000000000002e014 l .debug_str 0000000000000000 .LASF89 +000000000002dcf6 l .debug_str 0000000000000000 .LASF90 +000000000002dddd l .debug_str 0000000000000000 .LASF91 +000000000002e36b l .debug_str 0000000000000000 .LASF92 +000000000002df46 l .debug_str 0000000000000000 .LASF93 +000000000002dba8 l .debug_str 0000000000000000 .LASF94 +000000000002df92 l .debug_str 0000000000000000 .LASF95 +000000000002dcb5 l .debug_str 0000000000000000 .LASF96 +000000000002dd10 l .debug_str 0000000000000000 .LASF97 +000000000002e35e l .debug_str 0000000000000000 .LASF98 +000000000002e07a l .debug_str 0000000000000000 .LASF99 +000000000002e1b2 l .debug_str 0000000000000000 .LASF100 +000000000002ddb2 l .debug_str 0000000000000000 .LASF101 +000000000002dc8b l .debug_str 0000000000000000 .LASF102 +000000000002dd93 l .debug_str 0000000000000000 .LASF103 +000000000002e179 l .debug_str 0000000000000000 .LASF104 +000000000002e3f9 l .debug_str 0000000000000000 .LASF105 +000000000002df2d l .debug_str 0000000000000000 .LASF106 +000000000002dc6a l .debug_str 0000000000000000 .LASF107 +000000000002defb l .debug_str 0000000000000000 .LASF108 +000000000002db55 l .debug_str 0000000000000000 .LASF109 +000000000002e20d l .debug_str 0000000000000000 .LASF110 +000000000002dc39 l .debug_str 0000000000000000 .LASF111 +000000000002dab1 l .debug_str 0000000000000000 .LASF112 +000000000002df9d l .debug_str 0000000000000000 .LASF113 +000000000002e01d l .debug_str 0000000000000000 .LASF114 +000000000002e3a5 l .debug_str 0000000000000000 .LASF115 +000000000002dafe l .debug_str 0000000000000000 .LASF116 +000000000002e162 l .debug_str 0000000000000000 .LASF117 +000000000002e113 l .debug_str 0000000000000000 .LASF118 +000000000002da2d l .debug_str 0000000000000000 .LASF119 +000000000002de5c l .debug_str 0000000000000000 .LASF120 +000000000002e239 l .debug_str 0000000000000000 .LASF121 +000000000002dbcd l .debug_str 0000000000000000 .LASF122 +000000000002dc11 l .debug_str 0000000000000000 .LASF123 +000000000002e1e6 l .debug_str 0000000000000000 .LASF124 +000000000002e276 l .debug_str 0000000000000000 .LASF125 +000000000002dd37 l .debug_str 0000000000000000 .LASF126 +000000000002dc2a l .debug_str 0000000000000000 .LASF127 +000000000002de16 l .debug_str 0000000000000000 .LASF128 +000000000002e201 l .debug_str 0000000000000000 .LASF129 +000000000002dcc0 l .debug_str 0000000000000000 .LASF130 +000000000002df21 l .debug_str 0000000000000000 .LASF131 +000000000002e048 l .debug_str 0000000000000000 .LASF132 +000000000002df7e l .debug_str 0000000000000000 .LASF133 +000000000002daa0 l .debug_str 0000000000000000 .LASF134 +000000000002dd72 l .debug_str 0000000000000000 .LASF135 +000000000002e0ff l .debug_str 0000000000000000 .LASF136 +000000000002e155 l .debug_str 0000000000000000 .LASF137 +000000000002e3bf l .debug_str 0000000000000000 .LASF138 +000000000002da7c l .debug_str 0000000000000000 .LASF139 +000000000002dff6 l .debug_str 0000000000000000 .LASF140 +000000000002dc9e l .debug_str 0000000000000000 .LASF141 +000000000002e3ca l .debug_str 0000000000000000 .LASF142 +000000000002db9a l .debug_str 0000000000000000 .LASF143 +000000000002e34c l .debug_str 0000000000000000 .LASF144 +000000000002dace l .debug_str 0000000000000000 .LASF145 +000000000002debd l .debug_str 0000000000000000 .LASF146 +000000000002e13b l .debug_str 0000000000000000 .LASF147 +000000000002e144 l .debug_str 0000000000000000 .LASF148 +000000000002e037 l .debug_str 0000000000000000 .LASF149 +000000000002dc4f l .debug_str 0000000000000000 .LASF150 +000000000002ddce l .debug_str 0000000000000000 .LASF151 +000000000002dfe3 l .debug_str 0000000000000000 .LASF156 +000000000000a790 l .text 0000000000000000 .LFB7 +000000000000a79e l .text 0000000000000000 .LFE7 +000000000002e0f4 l .debug_str 0000000000000000 .LASF152 +000000000001f939 l .debug_loc 0000000000000000 .LLST0 +000000000000a792 l .text 0000000000000000 .LBB4 +000000000000a79a l .text 0000000000000000 .LBE4 +000000000001f972 l .debug_loc 0000000000000000 .LLST1 +000000000001f996 l .debug_loc 0000000000000000 .LLST2 +000000000002dcab l .debug_str 0000000000000000 .LASF157 +000000000000a790 l .text 0000000000000000 .LVL0 +000000000000a794 l .text 0000000000000000 .LVL2 +000000000000a792 l .text 0000000000000000 .LVL1 +000000000000a79a l .text 0000000000000000 .LVL3 +0000000000032e9f l .debug_info 0000000000000000 .Ldebug_info0 +000000000000a790 l .text 0000000000000000 .L0 +000000000000a790 l .text 0000000000000000 .L0 +000000000000a790 l .text 0000000000000000 .L0 +000000000000a792 l .text 0000000000000000 .L0 +000000000000a792 l .text 0000000000000000 .L0 +000000000000a794 l .text 0000000000000000 .L0 +000000000000a794 l .text 0000000000000000 .L0 +000000000000a798 l .text 0000000000000000 .L0 +000000000000a79a l .text 0000000000000000 .L0 +000000000000a79a l .text 0000000000000000 .L0 +000000000000a79e l .text 0000000000000000 .L0 +00000000000041b0 l .debug_frame 0000000000000000 .L0 +000000000000a790 l .text 0000000000000000 .L0 +000000000000a79e l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 PROXY_sched_lock.c +000000000000e758 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000002ec5f l .debug_str 0000000000000000 .LASF151 +000000000002e4e9 l .debug_str 0000000000000000 .LASF152 +000000000002eaaf l .debug_str 0000000000000000 .LASF153 +0000000000003830 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000022574 l .debug_line 0000000000000000 .Ldebug_line0 +000000000002e594 l .debug_str 0000000000000000 .LASF0 +000000000002e9c2 l .debug_str 0000000000000000 .LASF1 +000000000002e9ff l .debug_str 0000000000000000 .LASF2 +000000000002e786 l .debug_str 0000000000000000 .LASF3 +000000000002e722 l .debug_str 0000000000000000 .LASF4 +000000000002e601 l .debug_str 0000000000000000 .LASF5 +000000000002e74a l .debug_str 0000000000000000 .LASF6 +000000000002e835 l .debug_str 0000000000000000 .LASF8 +000000000002e4d2 l .debug_str 0000000000000000 .LASF7 +000000000002e443 l .debug_str 0000000000000000 .LASF9 +000000000002eacf l .debug_str 0000000000000000 .LASF10 +000000000002e586 l .debug_str 0000000000000000 .LASF11 +000000000002e8c2 l .debug_str 0000000000000000 .LASF12 +000000000002e8b8 l .debug_str 0000000000000000 .LASF13 +000000000002ea6c l .debug_str 0000000000000000 .LASF14 +000000000002e6f1 l .debug_str 0000000000000000 .LASF15 +000000000002e962 l .debug_str 0000000000000000 .LASF16 +000000000002edbe l .debug_str 0000000000000000 .LASF17 +000000000002e548 l .debug_str 0000000000000000 .LASF18 +000000000002eda7 l .debug_str 0000000000000000 .LASF19 +000000000002e8dd l .debug_str 0000000000000000 .LASF20 +000000000002ec2b l .debug_str 0000000000000000 .LASF21 +000000000002eb6d l .debug_str 0000000000000000 .LASF22 +000000000002eb5a l .debug_str 0000000000000000 .LASF23 +000000000002e84b l .debug_str 0000000000000000 .LASF24 +000000000002ed63 l .debug_str 0000000000000000 .LASF25 +000000000002e457 l .debug_str 0000000000000000 .LASF26 +000000000002ea95 l .debug_str 0000000000000000 .LASF27 +000000000002e900 l .debug_str 0000000000000000 .LASF28 +000000000002ea85 l .debug_str 0000000000000000 .LASF29 +000000000002e706 l .debug_str 0000000000000000 .LASF30 +000000000002e7c2 l .debug_str 0000000000000000 .LASF31 +000000000002e980 l .debug_str 0000000000000000 .LASF32 +000000000002e5ed l .debug_str 0000000000000000 .LASF33 +000000000002e7ed l .debug_str 0000000000000000 .LASF34 +000000000002e87b l .debug_str 0000000000000000 .LASF35 +000000000002e472 l .debug_str 0000000000000000 .LASF36 +000000000002ec3f l .debug_str 0000000000000000 .LASF37 +000000000002ea60 l .debug_str 0000000000000000 .LASF38 +000000000002eb04 l .debug_str 0000000000000000 .LASF39 +000000000002e538 l .debug_str 0000000000000000 .LASF40 +000000000002ea55 l .debug_str 0000000000000000 .LASF41 +000000000002e9eb l .debug_str 0000000000000000 .LASF42 +000000000002e40d l .debug_str 0000000000000000 .LASF43 +000000000002e72f l .debug_str 0000000000000000 .LASF44 +000000000002e9d0 l .debug_str 0000000000000000 .LASF45 +000000000002e660 l .debug_str 0000000000000000 .LASF46 +000000000002ec01 l .debug_str 0000000000000000 .LASF47 +000000000002e89e l .debug_str 0000000000000000 .LASF48 +000000000002e5b8 l .debug_str 0000000000000000 .LASF49 +000000000002e528 l .debug_str 0000000000000000 .LASF50 +000000000002e8ec l .debug_str 0000000000000000 .LASF51 +000000000002e4af l .debug_str 0000000000000000 .LASF52 +000000000002eb9c l .debug_str 0000000000000000 .LASF53 +000000000002e6d5 l .debug_str 0000000000000000 .LASF54 +000000000002e432 l .debug_str 0000000000000000 .LASF55 +000000000002e88d l .debug_str 0000000000000000 .LASF56 +000000000002e7a3 l .debug_str 0000000000000000 .LASF57 +000000000002ed0f l .debug_str 0000000000000000 .LASF58 +000000000002e766 l .debug_str 0000000000000000 .LASF59 +000000000002e83d l .debug_str 0000000000000000 .LASF60 +000000000002e683 l .debug_str 0000000000000000 .LASF61 +000000000002e801 l .debug_str 0000000000000000 .LASF62 +000000000002e5c9 l .debug_str 0000000000000000 .LASF63 +000000000002ed59 l .debug_str 0000000000000000 .LASF64 +000000000002e57d l .debug_str 0000000000000000 .LASF65 +000000000002e6e7 l .debug_str 0000000000000000 .LASF66 +000000000002e51e l .debug_str 0000000000000000 .LASF67 +000000000002e927 l .debug_str 0000000000000000 .LASF68 +000000000002e404 l .debug_str 0000000000000000 .LASF69 +000000000002e4c7 l .debug_str 0000000000000000 .LASF70 +000000000002e481 l .debug_str 0000000000000000 .LASF71 +000000000002e810 l .debug_str 0000000000000000 .LASF72 +000000000002e60a l .debug_str 0000000000000000 .LASF73 +000000000002e978 l .debug_str 0000000000000000 .LASF74 +000000000002ea09 l .debug_str 0000000000000000 .LASF75 +000000000002e75c l .debug_str 0000000000000000 .LASF76 +000000000002ed4b l .debug_str 0000000000000000 .LASF77 +000000000002e573 l .debug_str 0000000000000000 .LASF78 +000000000002e69b l .debug_str 0000000000000000 .LASF79 +000000000002ebf8 l .debug_str 0000000000000000 .LASF80 +000000000002e96d l .debug_str 0000000000000000 .LASF81 +000000000002ed85 l .debug_str 0000000000000000 .LASF82 +000000000002eb92 l .debug_str 0000000000000000 .LASF83 +000000000002e44d l .debug_str 0000000000000000 .LASF84 +000000000002e82a l .debug_str 0000000000000000 .LASF85 +000000000002e9df l .debug_str 0000000000000000 .LASF86 +000000000002ebae l .debug_str 0000000000000000 .LASF87 +000000000002ea12 l .debug_str 0000000000000000 .LASF88 +000000000002e6fc l .debug_str 0000000000000000 .LASF89 +000000000002e7e3 l .debug_str 0000000000000000 .LASF90 +000000000002ed40 l .debug_str 0000000000000000 .LASF91 +000000000002e957 l .debug_str 0000000000000000 .LASF92 +000000000002e5ae l .debug_str 0000000000000000 .LASF93 +000000000002e9a3 l .debug_str 0000000000000000 .LASF94 +000000000002e6bb l .debug_str 0000000000000000 .LASF95 +000000000002e716 l .debug_str 0000000000000000 .LASF96 +000000000002ed33 l .debug_str 0000000000000000 .LASF97 +000000000002ea78 l .debug_str 0000000000000000 .LASF98 +000000000002eb87 l .debug_str 0000000000000000 .LASF99 +000000000002e7b8 l .debug_str 0000000000000000 .LASF100 +000000000002e691 l .debug_str 0000000000000000 .LASF101 +000000000002e799 l .debug_str 0000000000000000 .LASF102 +000000000002eb4e l .debug_str 0000000000000000 .LASF103 +000000000002edc8 l .debug_str 0000000000000000 .LASF104 +000000000002e93e l .debug_str 0000000000000000 .LASF105 +000000000002e670 l .debug_str 0000000000000000 .LASF106 +000000000002e90c l .debug_str 0000000000000000 .LASF107 +000000000002e55b l .debug_str 0000000000000000 .LASF108 +000000000002ebe2 l .debug_str 0000000000000000 .LASF109 +000000000002e63f l .debug_str 0000000000000000 .LASF110 +000000000002e49c l .debug_str 0000000000000000 .LASF111 +000000000002e9ae l .debug_str 0000000000000000 .LASF112 +000000000002ea1b l .debug_str 0000000000000000 .LASF113 +000000000002ed74 l .debug_str 0000000000000000 .LASF114 +000000000002e504 l .debug_str 0000000000000000 .LASF115 +000000000002eb37 l .debug_str 0000000000000000 .LASF116 +000000000002eae8 l .debug_str 0000000000000000 .LASF117 +000000000002e418 l .debug_str 0000000000000000 .LASF118 +000000000002e862 l .debug_str 0000000000000000 .LASF119 +000000000002ec0e l .debug_str 0000000000000000 .LASF120 +000000000002e5d3 l .debug_str 0000000000000000 .LASF121 +000000000002e617 l .debug_str 0000000000000000 .LASF122 +000000000002ebbb l .debug_str 0000000000000000 .LASF123 +000000000002ec4b l .debug_str 0000000000000000 .LASF124 +000000000002e73d l .debug_str 0000000000000000 .LASF125 +000000000002e630 l .debug_str 0000000000000000 .LASF126 +000000000002e81c l .debug_str 0000000000000000 .LASF127 +000000000002ebd6 l .debug_str 0000000000000000 .LASF128 +000000000002e6c6 l .debug_str 0000000000000000 .LASF129 +000000000002e932 l .debug_str 0000000000000000 .LASF130 +000000000002ea46 l .debug_str 0000000000000000 .LASF131 +000000000002e98f l .debug_str 0000000000000000 .LASF132 +000000000002e48b l .debug_str 0000000000000000 .LASF133 +000000000002e778 l .debug_str 0000000000000000 .LASF134 +000000000002ead4 l .debug_str 0000000000000000 .LASF135 +000000000002eb2a l .debug_str 0000000000000000 .LASF136 +000000000002ed8e l .debug_str 0000000000000000 .LASF137 +000000000002e467 l .debug_str 0000000000000000 .LASF138 +000000000002e9f4 l .debug_str 0000000000000000 .LASF139 +000000000002e6a4 l .debug_str 0000000000000000 .LASF140 +000000000002ed99 l .debug_str 0000000000000000 .LASF141 +000000000002e5a0 l .debug_str 0000000000000000 .LASF142 +000000000002ed21 l .debug_str 0000000000000000 .LASF143 +000000000002e4b9 l .debug_str 0000000000000000 .LASF144 +000000000002e8ce l .debug_str 0000000000000000 .LASF145 +000000000002eb10 l .debug_str 0000000000000000 .LASF146 +000000000002eb19 l .debug_str 0000000000000000 .LASF147 +000000000002ea35 l .debug_str 0000000000000000 .LASF148 +000000000002e655 l .debug_str 0000000000000000 .LASF149 +000000000002e7d4 l .debug_str 0000000000000000 .LASF150 +000000000002e8ad l .debug_str 0000000000000000 .LASF154 +000000000000a79e l .text 0000000000000000 .LFB7 +000000000000a7aa l .text 0000000000000000 .LFE7 +000000000000a79e l .text 0000000000000000 .LBB4 +000000000000a7a6 l .text 0000000000000000 .LBE4 +000000000001f9c1 l .debug_loc 0000000000000000 .LLST0 +000000000002e6b1 l .debug_str 0000000000000000 .LASF155 +000000000000a79e l .text 0000000000000000 .LVL0 +000000000000a7a6 l .text 0000000000000000 .LVL1 +0000000000033334 l .debug_info 0000000000000000 .Ldebug_info0 +000000000000a79e l .text 0000000000000000 .L0 +000000000000a79e l .text 0000000000000000 .L0 +000000000000a79e l .text 0000000000000000 .L0 +000000000000a79e l .text 0000000000000000 .L0 +000000000000a7a0 l .text 0000000000000000 .L0 +000000000000a7a4 l .text 0000000000000000 .L0 +000000000000a7a6 l .text 0000000000000000 .L0 +000000000000a7a6 l .text 0000000000000000 .L0 +000000000000a7aa l .text 0000000000000000 .L0 +00000000000041d8 l .debug_frame 0000000000000000 .L0 +000000000000a79e l .text 0000000000000000 .L0 +000000000000a7aa l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 PROXY_sched_unlock.c +000000000000e81f l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000002f632 l .debug_str 0000000000000000 .LASF151 +000000000002f14d l .debug_str 0000000000000000 .LASF152 +000000000002f482 l .debug_str 0000000000000000 .LASF153 +0000000000003850 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +00000000000226a3 l .debug_line 0000000000000000 .Ldebug_line0 +000000000002ef48 l .debug_str 0000000000000000 .LASF0 +000000000002f395 l .debug_str 0000000000000000 .LASF1 +000000000002f3d2 l .debug_str 0000000000000000 .LASF2 +000000000002f13a l .debug_str 0000000000000000 .LASF3 +000000000002f0d6 l .debug_str 0000000000000000 .LASF4 +000000000002efb5 l .debug_str 0000000000000000 .LASF5 +000000000002f0fe l .debug_str 0000000000000000 .LASF6 +000000000002f206 l .debug_str 0000000000000000 .LASF8 +000000000002eea1 l .debug_str 0000000000000000 .LASF7 +000000000002ee12 l .debug_str 0000000000000000 .LASF9 +000000000002f4a2 l .debug_str 0000000000000000 .LASF10 +000000000002ef3a l .debug_str 0000000000000000 .LASF11 +000000000002f288 l .debug_str 0000000000000000 .LASF12 +000000000002f27e l .debug_str 0000000000000000 .LASF13 +000000000002f43f l .debug_str 0000000000000000 .LASF14 +000000000002f0a5 l .debug_str 0000000000000000 .LASF15 +000000000002f328 l .debug_str 0000000000000000 .LASF16 +000000000002f791 l .debug_str 0000000000000000 .LASF17 +000000000002eefc l .debug_str 0000000000000000 .LASF18 +000000000002f77a l .debug_str 0000000000000000 .LASF19 +000000000002f2a3 l .debug_str 0000000000000000 .LASF20 +000000000002f5fe l .debug_str 0000000000000000 .LASF21 +000000000002f540 l .debug_str 0000000000000000 .LASF22 +000000000002f52d l .debug_str 0000000000000000 .LASF23 +000000000002f21c l .debug_str 0000000000000000 .LASF24 +000000000002f736 l .debug_str 0000000000000000 .LASF25 +000000000002ee26 l .debug_str 0000000000000000 .LASF26 +000000000002f468 l .debug_str 0000000000000000 .LASF27 +000000000002f2c6 l .debug_str 0000000000000000 .LASF28 +000000000002f458 l .debug_str 0000000000000000 .LASF29 +000000000002f0ba l .debug_str 0000000000000000 .LASF30 +000000000002f193 l .debug_str 0000000000000000 .LASF31 +000000000002f353 l .debug_str 0000000000000000 .LASF32 +000000000002efa1 l .debug_str 0000000000000000 .LASF33 +000000000002f1be l .debug_str 0000000000000000 .LASF34 +000000000002f24c l .debug_str 0000000000000000 .LASF35 +000000000002ee41 l .debug_str 0000000000000000 .LASF36 +000000000002f612 l .debug_str 0000000000000000 .LASF37 +000000000002f433 l .debug_str 0000000000000000 .LASF38 +000000000002f4d7 l .debug_str 0000000000000000 .LASF39 +000000000002eeec l .debug_str 0000000000000000 .LASF40 +000000000002f428 l .debug_str 0000000000000000 .LASF41 +000000000002f3be l .debug_str 0000000000000000 .LASF42 +000000000002eddc l .debug_str 0000000000000000 .LASF43 +000000000002f0e3 l .debug_str 0000000000000000 .LASF44 +000000000002f3a3 l .debug_str 0000000000000000 .LASF45 +000000000002f014 l .debug_str 0000000000000000 .LASF46 +000000000002f5d4 l .debug_str 0000000000000000 .LASF47 +000000000002f26f l .debug_str 0000000000000000 .LASF48 +000000000002ef6c l .debug_str 0000000000000000 .LASF49 +000000000002eedc l .debug_str 0000000000000000 .LASF50 +000000000002f2b2 l .debug_str 0000000000000000 .LASF51 +000000000002ee7e l .debug_str 0000000000000000 .LASF52 +000000000002f56f l .debug_str 0000000000000000 .LASF53 +000000000002f089 l .debug_str 0000000000000000 .LASF54 +000000000002ee01 l .debug_str 0000000000000000 .LASF55 +000000000002f25e l .debug_str 0000000000000000 .LASF56 +000000000002f174 l .debug_str 0000000000000000 .LASF57 +000000000002f6e2 l .debug_str 0000000000000000 .LASF58 +000000000002f11a l .debug_str 0000000000000000 .LASF59 +000000000002f20e l .debug_str 0000000000000000 .LASF60 +000000000002f037 l .debug_str 0000000000000000 .LASF61 +000000000002f1d2 l .debug_str 0000000000000000 .LASF62 +000000000002ef7d l .debug_str 0000000000000000 .LASF63 +000000000002f72c l .debug_str 0000000000000000 .LASF64 +000000000002ef31 l .debug_str 0000000000000000 .LASF65 +000000000002f09b l .debug_str 0000000000000000 .LASF66 +000000000002eed2 l .debug_str 0000000000000000 .LASF67 +000000000002f2ed l .debug_str 0000000000000000 .LASF68 +000000000002edd3 l .debug_str 0000000000000000 .LASF69 +000000000002ee96 l .debug_str 0000000000000000 .LASF70 +000000000002ee50 l .debug_str 0000000000000000 .LASF71 +000000000002f1e1 l .debug_str 0000000000000000 .LASF72 +000000000002efbe l .debug_str 0000000000000000 .LASF73 +000000000002f34b l .debug_str 0000000000000000 .LASF74 +000000000002f3dc l .debug_str 0000000000000000 .LASF75 +000000000002f110 l .debug_str 0000000000000000 .LASF76 +000000000002f71e l .debug_str 0000000000000000 .LASF77 +000000000002ef27 l .debug_str 0000000000000000 .LASF78 +000000000002f04f l .debug_str 0000000000000000 .LASF79 +000000000002f5cb l .debug_str 0000000000000000 .LASF80 +000000000002f340 l .debug_str 0000000000000000 .LASF81 +000000000002f758 l .debug_str 0000000000000000 .LASF82 +000000000002f565 l .debug_str 0000000000000000 .LASF83 +000000000002ee1c l .debug_str 0000000000000000 .LASF84 +000000000002f1fb l .debug_str 0000000000000000 .LASF85 +000000000002f3b2 l .debug_str 0000000000000000 .LASF86 +000000000002f581 l .debug_str 0000000000000000 .LASF87 +000000000002f3e5 l .debug_str 0000000000000000 .LASF88 +000000000002f0b0 l .debug_str 0000000000000000 .LASF89 +000000000002f1b4 l .debug_str 0000000000000000 .LASF90 +000000000002f713 l .debug_str 0000000000000000 .LASF91 +000000000002f31d l .debug_str 0000000000000000 .LASF92 +000000000002ef62 l .debug_str 0000000000000000 .LASF93 +000000000002f376 l .debug_str 0000000000000000 .LASF94 +000000000002f06f l .debug_str 0000000000000000 .LASF95 +000000000002f0ca l .debug_str 0000000000000000 .LASF96 +000000000002f706 l .debug_str 0000000000000000 .LASF97 +000000000002f44b l .debug_str 0000000000000000 .LASF98 +000000000002f55a l .debug_str 0000000000000000 .LASF99 +000000000002f189 l .debug_str 0000000000000000 .LASF100 +000000000002f045 l .debug_str 0000000000000000 .LASF101 +000000000002f16a l .debug_str 0000000000000000 .LASF102 +000000000002f521 l .debug_str 0000000000000000 .LASF103 +000000000002f79b l .debug_str 0000000000000000 .LASF104 +000000000002f304 l .debug_str 0000000000000000 .LASF105 +000000000002f024 l .debug_str 0000000000000000 .LASF106 +000000000002f2d2 l .debug_str 0000000000000000 .LASF107 +000000000002ef0f l .debug_str 0000000000000000 .LASF108 +000000000002f5b5 l .debug_str 0000000000000000 .LASF109 +000000000002eff3 l .debug_str 0000000000000000 .LASF110 +000000000002ee6b l .debug_str 0000000000000000 .LASF111 +000000000002f381 l .debug_str 0000000000000000 .LASF112 +000000000002f3ee l .debug_str 0000000000000000 .LASF113 +000000000002f747 l .debug_str 0000000000000000 .LASF114 +000000000002eeb8 l .debug_str 0000000000000000 .LASF115 +000000000002f50a l .debug_str 0000000000000000 .LASF116 +000000000002f4bb l .debug_str 0000000000000000 .LASF117 +000000000002ede7 l .debug_str 0000000000000000 .LASF118 +000000000002f233 l .debug_str 0000000000000000 .LASF119 +000000000002f5e1 l .debug_str 0000000000000000 .LASF120 +000000000002ef87 l .debug_str 0000000000000000 .LASF121 +000000000002efcb l .debug_str 0000000000000000 .LASF122 +000000000002f58e l .debug_str 0000000000000000 .LASF123 +000000000002f61e l .debug_str 0000000000000000 .LASF124 +000000000002f0f1 l .debug_str 0000000000000000 .LASF125 +000000000002efe4 l .debug_str 0000000000000000 .LASF126 +000000000002f1ed l .debug_str 0000000000000000 .LASF127 +000000000002f5a9 l .debug_str 0000000000000000 .LASF128 +000000000002f07a l .debug_str 0000000000000000 .LASF129 +000000000002f2f8 l .debug_str 0000000000000000 .LASF130 +000000000002f419 l .debug_str 0000000000000000 .LASF131 +000000000002f362 l .debug_str 0000000000000000 .LASF132 +000000000002ee5a l .debug_str 0000000000000000 .LASF133 +000000000002f12c l .debug_str 0000000000000000 .LASF134 +000000000002f4a7 l .debug_str 0000000000000000 .LASF135 +000000000002f4fd l .debug_str 0000000000000000 .LASF136 +000000000002f761 l .debug_str 0000000000000000 .LASF137 +000000000002ee36 l .debug_str 0000000000000000 .LASF138 +000000000002f3c7 l .debug_str 0000000000000000 .LASF139 +000000000002f058 l .debug_str 0000000000000000 .LASF140 +000000000002f76c l .debug_str 0000000000000000 .LASF141 +000000000002ef54 l .debug_str 0000000000000000 .LASF142 +000000000002f6f4 l .debug_str 0000000000000000 .LASF143 +000000000002ee88 l .debug_str 0000000000000000 .LASF144 +000000000002f294 l .debug_str 0000000000000000 .LASF145 +000000000002f4e3 l .debug_str 0000000000000000 .LASF146 +000000000002f4ec l .debug_str 0000000000000000 .LASF147 +000000000002f408 l .debug_str 0000000000000000 .LASF148 +000000000002f009 l .debug_str 0000000000000000 .LASF149 +000000000002f1a5 l .debug_str 0000000000000000 .LASF150 +000000000002f333 l .debug_str 0000000000000000 .LASF154 +000000000000a7aa l .text 0000000000000000 .LFB7 +000000000000a7b6 l .text 0000000000000000 .LFE7 +000000000000a7aa l .text 0000000000000000 .LBB4 +000000000000a7b2 l .text 0000000000000000 .LBE4 +000000000001f9e5 l .debug_loc 0000000000000000 .LLST0 +000000000002f065 l .debug_str 0000000000000000 .LASF155 +000000000000a7aa l .text 0000000000000000 .LVL0 +000000000000a7b2 l .text 0000000000000000 .LVL1 +0000000000033787 l .debug_info 0000000000000000 .Ldebug_info0 +000000000000a7aa l .text 0000000000000000 .L0 +000000000000a7aa l .text 0000000000000000 .L0 +000000000000a7aa l .text 0000000000000000 .L0 +000000000000a7aa l .text 0000000000000000 .L0 +000000000000a7ac l .text 0000000000000000 .L0 +000000000000a7b0 l .text 0000000000000000 .L0 +000000000000a7b2 l .text 0000000000000000 .L0 +000000000000a7b2 l .text 0000000000000000 .L0 +000000000000a7b6 l .text 0000000000000000 .L0 +0000000000004200 l .debug_frame 0000000000000000 .L0 +000000000000a7aa l .text 0000000000000000 .L0 +000000000000a7b6 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 PROXY_setenv.c +000000000000e8e6 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000002fff1 l .debug_str 0000000000000000 .LASF152 +000000000002f833 l .debug_str 0000000000000000 .LASF153 +000000000002fe2e l .debug_str 0000000000000000 .LASF154 +0000000000003870 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +00000000000227d4 l .debug_line 0000000000000000 .Ldebug_line0 +000000000002f92a l .debug_str 0000000000000000 .LASF0 +000000000002fd41 l .debug_str 0000000000000000 .LASF1 +000000000002fd7e l .debug_str 0000000000000000 .LASF2 +000000000002fb1c l .debug_str 0000000000000000 .LASF3 +000000000002fab8 l .debug_str 0000000000000000 .LASF4 +000000000002f997 l .debug_str 0000000000000000 .LASF5 +000000000002fae0 l .debug_str 0000000000000000 .LASF6 +000000000002fbcb l .debug_str 0000000000000000 .LASF8 +000000000002f891 l .debug_str 0000000000000000 .LASF7 +000000000002f7eb l .debug_str 0000000000000000 .LASF9 +000000000002fe5a l .debug_str 0000000000000000 .LASF10 +000000000002fc43 l .debug_str 0000000000000000 .LASF11 +000000000002fdeb l .debug_str 0000000000000000 .LASF12 +000000000002fa87 l .debug_str 0000000000000000 .LASF13 +000000000002fce1 l .debug_str 0000000000000000 .LASF14 +0000000000030150 l .debug_str 0000000000000000 .LASF15 +000000000002f8ec l .debug_str 0000000000000000 .LASF16 +0000000000030139 l .debug_str 0000000000000000 .LASF17 +000000000002fc5c l .debug_str 0000000000000000 .LASF18 +000000000002ffb6 l .debug_str 0000000000000000 .LASF19 +000000000002fef8 l .debug_str 0000000000000000 .LASF20 +000000000002fee5 l .debug_str 0000000000000000 .LASF21 +000000000002fbe1 l .debug_str 0000000000000000 .LASF22 +00000000000300f5 l .debug_str 0000000000000000 .LASF23 +000000000002f7ff l .debug_str 0000000000000000 .LASF24 +000000000002fe14 l .debug_str 0000000000000000 .LASF25 +000000000002fc7f l .debug_str 0000000000000000 .LASF26 +000000000002fe04 l .debug_str 0000000000000000 .LASF27 +000000000002fa9c l .debug_str 0000000000000000 .LASF28 +000000000002fb58 l .debug_str 0000000000000000 .LASF29 +000000000002fcff l .debug_str 0000000000000000 .LASF30 +000000000002f983 l .debug_str 0000000000000000 .LASF31 +000000000002fb83 l .debug_str 0000000000000000 .LASF32 +000000000002fc11 l .debug_str 0000000000000000 .LASF33 +000000000002f81a l .debug_str 0000000000000000 .LASF34 +000000000002ffca l .debug_str 0000000000000000 .LASF35 +000000000002fddf l .debug_str 0000000000000000 .LASF36 +000000000002fe8f l .debug_str 0000000000000000 .LASF37 +000000000002f8dc l .debug_str 0000000000000000 .LASF38 +000000000002fdd4 l .debug_str 0000000000000000 .LASF39 +000000000002fd6a l .debug_str 0000000000000000 .LASF40 +000000000002f7b5 l .debug_str 0000000000000000 .LASF41 +000000000002fac5 l .debug_str 0000000000000000 .LASF42 +000000000002fd4f l .debug_str 0000000000000000 .LASF43 +000000000002f9f6 l .debug_str 0000000000000000 .LASF44 +000000000002ff8c l .debug_str 0000000000000000 .LASF45 +000000000002fc34 l .debug_str 0000000000000000 .LASF46 +000000000002f94e l .debug_str 0000000000000000 .LASF47 +000000000002f8cc l .debug_str 0000000000000000 .LASF48 +000000000002fc6b l .debug_str 0000000000000000 .LASF49 +000000000002f86e l .debug_str 0000000000000000 .LASF50 +000000000002ff27 l .debug_str 0000000000000000 .LASF51 +000000000002fa6b l .debug_str 0000000000000000 .LASF52 +000000000002f7da l .debug_str 0000000000000000 .LASF53 +000000000002fc23 l .debug_str 0000000000000000 .LASF54 +000000000002fb39 l .debug_str 0000000000000000 .LASF55 +00000000000300a1 l .debug_str 0000000000000000 .LASF56 +000000000002fafc l .debug_str 0000000000000000 .LASF57 +000000000002fbd3 l .debug_str 0000000000000000 .LASF58 +000000000002fa19 l .debug_str 0000000000000000 .LASF59 +000000000002fb97 l .debug_str 0000000000000000 .LASF60 +000000000002f95f l .debug_str 0000000000000000 .LASF61 +00000000000300eb l .debug_str 0000000000000000 .LASF62 +000000000002f921 l .debug_str 0000000000000000 .LASF63 +000000000002fa7d l .debug_str 0000000000000000 .LASF64 +000000000002f8c2 l .debug_str 0000000000000000 .LASF65 +000000000002fca6 l .debug_str 0000000000000000 .LASF66 +000000000002f7ac l .debug_str 0000000000000000 .LASF67 +000000000002f886 l .debug_str 0000000000000000 .LASF68 +000000000002f829 l .debug_str 0000000000000000 .LASF69 +000000000002fba6 l .debug_str 0000000000000000 .LASF70 +000000000002f9a0 l .debug_str 0000000000000000 .LASF71 +000000000002fcf7 l .debug_str 0000000000000000 .LASF72 +000000000002fd88 l .debug_str 0000000000000000 .LASF73 +000000000002faf2 l .debug_str 0000000000000000 .LASF74 +00000000000300dd l .debug_str 0000000000000000 .LASF75 +000000000002f917 l .debug_str 0000000000000000 .LASF76 +000000000002fa31 l .debug_str 0000000000000000 .LASF77 +000000000002ff83 l .debug_str 0000000000000000 .LASF78 +000000000002fcec l .debug_str 0000000000000000 .LASF79 +0000000000030117 l .debug_str 0000000000000000 .LASF80 +000000000002ff1d l .debug_str 0000000000000000 .LASF81 +000000000002f7f5 l .debug_str 0000000000000000 .LASF82 +000000000002fbc0 l .debug_str 0000000000000000 .LASF83 +000000000002fd5e l .debug_str 0000000000000000 .LASF84 +000000000002ff39 l .debug_str 0000000000000000 .LASF85 +000000000002fd91 l .debug_str 0000000000000000 .LASF86 +000000000002fa92 l .debug_str 0000000000000000 .LASF87 +000000000002fb79 l .debug_str 0000000000000000 .LASF88 +00000000000300d2 l .debug_str 0000000000000000 .LASF89 +000000000002fcd6 l .debug_str 0000000000000000 .LASF90 +000000000002f944 l .debug_str 0000000000000000 .LASF91 +000000000002fd22 l .debug_str 0000000000000000 .LASF92 +000000000002fa51 l .debug_str 0000000000000000 .LASF93 +000000000002faac l .debug_str 0000000000000000 .LASF94 +00000000000300c5 l .debug_str 0000000000000000 .LASF95 +000000000002fdf7 l .debug_str 0000000000000000 .LASF96 +000000000002ff12 l .debug_str 0000000000000000 .LASF97 +000000000002fb4e l .debug_str 0000000000000000 .LASF98 +000000000002fa27 l .debug_str 0000000000000000 .LASF99 +000000000002fb2f l .debug_str 0000000000000000 .LASF100 +000000000002fed9 l .debug_str 0000000000000000 .LASF101 +000000000003015a l .debug_str 0000000000000000 .LASF102 +000000000002fcbd l .debug_str 0000000000000000 .LASF103 +000000000002fa06 l .debug_str 0000000000000000 .LASF104 +000000000002fc8b l .debug_str 0000000000000000 .LASF105 +000000000002f8ff l .debug_str 0000000000000000 .LASF106 +000000000002ff6d l .debug_str 0000000000000000 .LASF107 +000000000002f9d5 l .debug_str 0000000000000000 .LASF108 +000000000002f85b l .debug_str 0000000000000000 .LASF109 +000000000002fd2d l .debug_str 0000000000000000 .LASF110 +000000000002fd9a l .debug_str 0000000000000000 .LASF111 +0000000000030106 l .debug_str 0000000000000000 .LASF112 +000000000002f8a8 l .debug_str 0000000000000000 .LASF113 +000000000002fec2 l .debug_str 0000000000000000 .LASF114 +000000000002fe73 l .debug_str 0000000000000000 .LASF115 +000000000002f7c0 l .debug_str 0000000000000000 .LASF116 +000000000002fbf8 l .debug_str 0000000000000000 .LASF117 +000000000002ff99 l .debug_str 0000000000000000 .LASF118 +000000000002f969 l .debug_str 0000000000000000 .LASF119 +000000000002f9ad l .debug_str 0000000000000000 .LASF120 +000000000002ff46 l .debug_str 0000000000000000 .LASF121 +000000000002ffdd l .debug_str 0000000000000000 .LASF122 +000000000002fad3 l .debug_str 0000000000000000 .LASF123 +000000000002f9c6 l .debug_str 0000000000000000 .LASF124 +000000000002fbb2 l .debug_str 0000000000000000 .LASF125 +000000000002ff61 l .debug_str 0000000000000000 .LASF126 +000000000002fa5c l .debug_str 0000000000000000 .LASF127 +000000000002fcb1 l .debug_str 0000000000000000 .LASF128 +000000000002fdc5 l .debug_str 0000000000000000 .LASF129 +000000000002fd0e l .debug_str 0000000000000000 .LASF130 +000000000002f84a l .debug_str 0000000000000000 .LASF131 +000000000002fb0e l .debug_str 0000000000000000 .LASF132 +000000000002fe5f l .debug_str 0000000000000000 .LASF133 +000000000002feb5 l .debug_str 0000000000000000 .LASF134 +0000000000030120 l .debug_str 0000000000000000 .LASF135 +000000000002f80f l .debug_str 0000000000000000 .LASF136 +000000000002fd73 l .debug_str 0000000000000000 .LASF137 +000000000002fa3a l .debug_str 0000000000000000 .LASF138 +000000000003012b l .debug_str 0000000000000000 .LASF139 +000000000002f936 l .debug_str 0000000000000000 .LASF140 +00000000000300b3 l .debug_str 0000000000000000 .LASF141 +000000000002f878 l .debug_str 0000000000000000 .LASF142 +000000000002fc4d l .debug_str 0000000000000000 .LASF143 +000000000002fe9b l .debug_str 0000000000000000 .LASF144 +000000000002fea4 l .debug_str 0000000000000000 .LASF145 +000000000002fdb4 l .debug_str 0000000000000000 .LASF146 +000000000002f9eb l .debug_str 0000000000000000 .LASF147 +000000000002fb6a l .debug_str 0000000000000000 .LASF148 +000000000002ffd6 l .debug_str 0000000000000000 .LASF155 +000000000000a7b6 l .text 0000000000000000 .LFB7 +000000000000a7ce l .text 0000000000000000 .LFE7 +000000000002fe4e l .debug_str 0000000000000000 .LASF149 +000000000001fa09 l .debug_loc 0000000000000000 .LLST0 +000000000002fe54 l .debug_str 0000000000000000 .LASF150 +000000000001fa3f l .debug_loc 0000000000000000 .LLST1 +000000000002f7a6 l .debug_str 0000000000000000 .LASF151 +000000000001fa75 l .debug_loc 0000000000000000 .LLST2 +000000000000a7bc l .text 0000000000000000 .LBB4 +000000000000a7ca l .text 0000000000000000 .LBE4 +000000000001faae l .debug_loc 0000000000000000 .LLST3 +000000000001fad3 l .debug_loc 0000000000000000 .LLST4 +000000000001fafe l .debug_loc 0000000000000000 .LLST5 +000000000001fb34 l .debug_loc 0000000000000000 .LLST6 +000000000002fa47 l .debug_str 0000000000000000 .LASF156 +000000000000a7b6 l .text 0000000000000000 .LVL0 +000000000000a7c0 l .text 0000000000000000 .LVL4 +000000000000a7c2 l .text 0000000000000000 .LVL5 +000000000000a7c4 l .text 0000000000000000 .LVL6 +000000000000a7bc l .text 0000000000000000 .LVL3 +000000000000a7ca l .text 0000000000000000 .LVL7 +000000000000a7ba l .text 0000000000000000 .LVL2 +000000000000a7b8 l .text 0000000000000000 .LVL1 +0000000000033bda l .debug_info 0000000000000000 .Ldebug_info0 +000000000000a7b6 l .text 0000000000000000 .L0 +000000000000a7b6 l .text 0000000000000000 .L0 +000000000000a7b6 l .text 0000000000000000 .L0 +000000000000a7bc l .text 0000000000000000 .L0 +000000000000a7bc l .text 0000000000000000 .L0 +000000000000a7c0 l .text 0000000000000000 .L0 +000000000000a7c0 l .text 0000000000000000 .L0 +000000000000a7c2 l .text 0000000000000000 .L0 +000000000000a7c2 l .text 0000000000000000 .L0 +000000000000a7c4 l .text 0000000000000000 .L0 +000000000000a7c4 l .text 0000000000000000 .L0 +000000000000a7c8 l .text 0000000000000000 .L0 +000000000000a7ca l .text 0000000000000000 .L0 +000000000000a7ca l .text 0000000000000000 .L0 +000000000000a7ce l .text 0000000000000000 .L0 +0000000000004228 l .debug_frame 0000000000000000 .L0 +000000000000a7b6 l .text 0000000000000000 .L0 +000000000000a7ce l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 PROXY_stat.c +000000000000e9dd l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000030aa7 l .debug_str 0000000000000000 .LASF186 +0000000000030746 l .debug_str 0000000000000000 .LASF187 +00000000000308c9 l .debug_str 0000000000000000 .LASF188 +0000000000003890 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000022938 l .debug_line 0000000000000000 .Ldebug_line0 +0000000000030302 l .debug_str 0000000000000000 .LASF0 +00000000000307bf l .debug_str 0000000000000000 .LASF1 +0000000000030be1 l .debug_str 0000000000000000 .LASF3 +00000000000307fc l .debug_str 0000000000000000 .LASF2 +00000000000306d8 l .debug_str 0000000000000000 .LASF4 +000000000003054d l .debug_str 0000000000000000 .LASF5 +0000000000030664 l .debug_str 0000000000000000 .LASF6 +00000000000301e4 l .debug_str 0000000000000000 .LASF7 +00000000000304ca l .debug_str 0000000000000000 .LASF8 +0000000000030380 l .debug_str 0000000000000000 .LASF9 +00000000000304fb l .debug_str 0000000000000000 .LASF10 +000000000003060e l .debug_str 0000000000000000 .LASF11 +0000000000030266 l .debug_str 0000000000000000 .LASF12 +00000000000302f1 l .debug_str 0000000000000000 .LASF13 +00000000000303c9 l .debug_str 0000000000000000 .LASF14 +00000000000307b7 l .debug_str 0000000000000000 .LASF15 +00000000000308a6 l .debug_str 0000000000000000 .LASF16 +00000000000301c6 l .debug_str 0000000000000000 .LASF17 +0000000000030a99 l .debug_str 0000000000000000 .LASF18 +0000000000030539 l .debug_str 0000000000000000 .LASF19 +0000000000030443 l .debug_str 0000000000000000 .LASF20 +0000000000030739 l .debug_str 0000000000000000 .LASF21 +0000000000030c1a l .debug_str 0000000000000000 .LASF22 +000000000003042c l .debug_str 0000000000000000 .LASF23 +00000000000304f2 l .debug_str 0000000000000000 .LASF24 +000000000003043d l .debug_str 0000000000000000 .LASF25 +0000000000030b81 l .debug_str 0000000000000000 .LASF26 +000000000003073f l .debug_str 0000000000000000 .LASF27 +00000000000308f7 l .debug_str 0000000000000000 .LASF28 +000000000003081a l .debug_str 0000000000000000 .LASF31 +00000000000306ae l .debug_str 0000000000000000 .LASF29 +000000000003068d l .debug_str 0000000000000000 .LASF30 +00000000000302ec l .debug_str 0000000000000000 .LASF32 +0000000000030aa0 l .debug_str 0000000000000000 .LASF33 +0000000000030337 l .debug_str 0000000000000000 .LASF34 +000000000003065c l .debug_str 0000000000000000 .LASF35 +00000000000307ae l .debug_str 0000000000000000 .LASF36 +000000000003049d l .debug_str 0000000000000000 .LASF37 +00000000000309ee l .debug_str 0000000000000000 .LASF38 +00000000000308e9 l .debug_str 0000000000000000 .LASF39 +0000000000030616 l .debug_str 0000000000000000 .LASF40 +00000000000303d2 l .debug_str 0000000000000000 .LASF41 +0000000000030b96 l .debug_str 0000000000000000 .LASF42 +000000000003017f l .debug_str 0000000000000000 .LASF43 +0000000000030806 l .debug_str 0000000000000000 .LASF44 +0000000000030489 l .debug_str 0000000000000000 .LASF45 +0000000000030695 l .debug_str 0000000000000000 .LASF46 +000000000003087d l .debug_str 0000000000000000 .LASF47 +0000000000030396 l .debug_str 0000000000000000 .LASF48 +0000000000030b69 l .debug_str 0000000000000000 .LASF49 +0000000000030493 l .debug_str 0000000000000000 .LASF50 +00000000000302c1 l .debug_str 0000000000000000 .LASF51 +0000000000030c03 l .debug_str 0000000000000000 .LASF52 +00000000000306b5 l .debug_str 0000000000000000 .LASF53 +0000000000030a65 l .debug_str 0000000000000000 .LASF54 +0000000000030995 l .debug_str 0000000000000000 .LASF55 +0000000000030982 l .debug_str 0000000000000000 .LASF56 +000000000003062c l .debug_str 0000000000000000 .LASF57 +0000000000030bb6 l .debug_str 0000000000000000 .LASF58 +000000000003050d l .debug_str 0000000000000000 .LASF59 +00000000000308af l .debug_str 0000000000000000 .LASF60 +00000000000306e2 l .debug_str 0000000000000000 .LASF61 +0000000000030896 l .debug_str 0000000000000000 .LASF62 +00000000000304ae l .debug_str 0000000000000000 .LASF63 +000000000003059b l .debug_str 0000000000000000 .LASF64 +0000000000030780 l .debug_str 0000000000000000 .LASF65 +0000000000030362 l .debug_str 0000000000000000 .LASF66 +00000000000305c6 l .debug_str 0000000000000000 .LASF67 +000000000003075b l .debug_str 0000000000000000 .LASF68 +00000000000301f9 l .debug_str 0000000000000000 .LASF69 +0000000000030a79 l .debug_str 0000000000000000 .LASF70 +0000000000030871 l .debug_str 0000000000000000 .LASF71 +000000000003092c l .debug_str 0000000000000000 .LASF72 +00000000000302b1 l .debug_str 0000000000000000 .LASF73 +0000000000030866 l .debug_str 0000000000000000 .LASF74 +00000000000307e8 l .debug_str 0000000000000000 .LASF75 +0000000000030190 l .debug_str 0000000000000000 .LASF76 +00000000000304d7 l .debug_str 0000000000000000 .LASF77 +00000000000307cd l .debug_str 0000000000000000 .LASF78 +00000000000303fb l .debug_str 0000000000000000 .LASF79 +0000000000030a3b l .debug_str 0000000000000000 .LASF80 +000000000003067e l .debug_str 0000000000000000 .LASF81 +0000000000030326 l .debug_str 0000000000000000 .LASF82 +00000000000302a1 l .debug_str 0000000000000000 .LASF83 +00000000000306c4 l .debug_str 0000000000000000 .LASF84 +0000000000030243 l .debug_str 0000000000000000 .LASF85 +00000000000309cf l .debug_str 0000000000000000 .LASF86 +000000000003046d l .debug_str 0000000000000000 .LASF87 +00000000000301b5 l .debug_str 0000000000000000 .LASF88 +000000000003066d l .debug_str 0000000000000000 .LASF89 +000000000003057c l .debug_str 0000000000000000 .LASF90 +0000000000030b57 l .debug_str 0000000000000000 .LASF91 +0000000000030527 l .debug_str 0000000000000000 .LASF92 +000000000003061e l .debug_str 0000000000000000 .LASF93 +000000000003041e l .debug_str 0000000000000000 .LASF94 +00000000000305da l .debug_str 0000000000000000 .LASF95 +000000000003033e l .debug_str 0000000000000000 .LASF96 +0000000000030bac l .debug_str 0000000000000000 .LASF97 +00000000000302f9 l .debug_str 0000000000000000 .LASF98 +000000000003047f l .debug_str 0000000000000000 .LASF99 +0000000000030297 l .debug_str 0000000000000000 .LASF100 +0000000000030709 l .debug_str 0000000000000000 .LASF101 +0000000000030187 l .debug_str 0000000000000000 .LASF102 +000000000003025b l .debug_str 0000000000000000 .LASF103 +0000000000030208 l .debug_str 0000000000000000 .LASF104 +00000000000305e9 l .debug_str 0000000000000000 .LASF105 +0000000000030389 l .debug_str 0000000000000000 .LASF106 +0000000000030778 l .debug_str 0000000000000000 .LASF107 +0000000000030811 l .debug_str 0000000000000000 .LASF108 +000000000003051d l .debug_str 0000000000000000 .LASF109 +0000000000030b9e l .debug_str 0000000000000000 .LASF110 +0000000000030376 l .debug_str 0000000000000000 .LASF111 +0000000000030434 l .debug_str 0000000000000000 .LASF112 +0000000000030a32 l .debug_str 0000000000000000 .LASF113 +000000000003076d l .debug_str 0000000000000000 .LASF114 +0000000000030bd8 l .debug_str 0000000000000000 .LASF115 +00000000000309c5 l .debug_str 0000000000000000 .LASF116 +00000000000301da l .debug_str 0000000000000000 .LASF117 +0000000000030603 l .debug_str 0000000000000000 .LASF118 +00000000000307dc l .debug_str 0000000000000000 .LASF119 +00000000000309e1 l .debug_str 0000000000000000 .LASF120 +0000000000030823 l .debug_str 0000000000000000 .LASF121 +00000000000304a4 l .debug_str 0000000000000000 .LASF122 +00000000000305bc l .debug_str 0000000000000000 .LASF123 +0000000000030b8b l .debug_str 0000000000000000 .LASF124 +00000000000309ba l .debug_str 0000000000000000 .LASF125 +000000000003031c l .debug_str 0000000000000000 .LASF126 +00000000000307a3 l .debug_str 0000000000000000 .LASF127 +0000000000030453 l .debug_str 0000000000000000 .LASF128 +00000000000304be l .debug_str 0000000000000000 .LASF129 +0000000000030b74 l .debug_str 0000000000000000 .LASF130 +0000000000030889 l .debug_str 0000000000000000 .LASF131 +00000000000309af l .debug_str 0000000000000000 .LASF132 +0000000000030591 l .debug_str 0000000000000000 .LASF133 +00000000000301d0 l .debug_str 0000000000000000 .LASF134 +0000000000030572 l .debug_str 0000000000000000 .LASF135 +0000000000030976 l .debug_str 0000000000000000 .LASF136 +0000000000030c20 l .debug_str 0000000000000000 .LASF137 +0000000000030720 l .debug_str 0000000000000000 .LASF138 +000000000003040b l .debug_str 0000000000000000 .LASF139 +00000000000306ee l .debug_str 0000000000000000 .LASF140 +00000000000302d4 l .debug_str 0000000000000000 .LASF141 +0000000000030a1c l .debug_str 0000000000000000 .LASF142 +00000000000303da l .debug_str 0000000000000000 .LASF143 +0000000000030230 l .debug_str 0000000000000000 .LASF144 +000000000003016b l .debug_str 0000000000000000 .LASF145 +000000000003082c l .debug_str 0000000000000000 .LASF146 +0000000000030bc7 l .debug_str 0000000000000000 .LASF147 +000000000003027d l .debug_str 0000000000000000 .LASF148 +000000000003095f l .debug_str 0000000000000000 .LASF149 +0000000000030910 l .debug_str 0000000000000000 .LASF150 +000000000003019b l .debug_str 0000000000000000 .LASF151 +0000000000030643 l .debug_str 0000000000000000 .LASF152 +0000000000030a48 l .debug_str 0000000000000000 .LASF153 +0000000000030348 l .debug_str 0000000000000000 .LASF154 +00000000000303a1 l .debug_str 0000000000000000 .LASF155 +00000000000309f5 l .debug_str 0000000000000000 .LASF156 +0000000000030a85 l .debug_str 0000000000000000 .LASF157 +00000000000304e5 l .debug_str 0000000000000000 .LASF158 +00000000000303ba l .debug_str 0000000000000000 .LASF159 +00000000000305f5 l .debug_str 0000000000000000 .LASF160 +0000000000030a10 l .debug_str 0000000000000000 .LASF161 +000000000003045e l .debug_str 0000000000000000 .LASF162 +0000000000030714 l .debug_str 0000000000000000 .LASF163 +0000000000030857 l .debug_str 0000000000000000 .LASF164 +000000000003078f l .debug_str 0000000000000000 .LASF165 +000000000003021f l .debug_str 0000000000000000 .LASF166 +000000000003053f l .debug_str 0000000000000000 .LASF167 +00000000000308fc l .debug_str 0000000000000000 .LASF168 +0000000000030952 l .debug_str 0000000000000000 .LASF169 +0000000000030bea l .debug_str 0000000000000000 .LASF170 +00000000000301ee l .debug_str 0000000000000000 .LASF171 +00000000000307f1 l .debug_str 0000000000000000 .LASF172 +0000000000030212 l .debug_str 0000000000000000 .LASF173 +0000000000030bf5 l .debug_str 0000000000000000 .LASF174 +000000000003030e l .debug_str 0000000000000000 .LASF175 +0000000000030560 l .debug_str 0000000000000000 .LASF176 +000000000003024d l .debug_str 0000000000000000 .LASF177 +000000000003069f l .debug_str 0000000000000000 .LASF178 +0000000000030938 l .debug_str 0000000000000000 .LASF179 +0000000000030941 l .debug_str 0000000000000000 .LASF180 +0000000000030846 l .debug_str 0000000000000000 .LASF181 +00000000000303f0 l .debug_str 0000000000000000 .LASF182 +00000000000305ad l .debug_str 0000000000000000 .LASF183 +000000000000a7ce l .text 0000000000000000 .LFB7 +000000000000a7e2 l .text 0000000000000000 .LFE7 +0000000000030165 l .debug_str 0000000000000000 .LASF184 +000000000001fb6a l .debug_loc 0000000000000000 .LLST0 +00000000000308f1 l .debug_str 0000000000000000 .LASF185 +000000000001fba0 l .debug_loc 0000000000000000 .LLST1 +000000000000a7d2 l .text 0000000000000000 .LBB4 +000000000000a7de l .text 0000000000000000 .LBE4 +000000000001fbd6 l .debug_loc 0000000000000000 .LLST2 +000000000001fbfb l .debug_loc 0000000000000000 .LLST3 +000000000001fc31 l .debug_loc 0000000000000000 .LLST4 +0000000000030449 l .debug_str 0000000000000000 .LASF189 +000000000000a7ce l .text 0000000000000000 .LVL0 +000000000000a7d6 l .text 0000000000000000 .LVL3 +000000000000a7d8 l .text 0000000000000000 .LVL4 +000000000000a7d2 l .text 0000000000000000 .LVL2 +000000000000a7de l .text 0000000000000000 .LVL5 +000000000000a7d0 l .text 0000000000000000 .LVL1 +00000000000340ce l .debug_info 0000000000000000 .Ldebug_info0 +000000000000a7ce l .text 0000000000000000 .L0 +000000000000a7ce l .text 0000000000000000 .L0 +000000000000a7ce l .text 0000000000000000 .L0 +000000000000a7d2 l .text 0000000000000000 .L0 +000000000000a7d2 l .text 0000000000000000 .L0 +000000000000a7d6 l .text 0000000000000000 .L0 +000000000000a7d6 l .text 0000000000000000 .L0 +000000000000a7d8 l .text 0000000000000000 .L0 +000000000000a7d8 l .text 0000000000000000 .L0 +000000000000a7dc l .text 0000000000000000 .L0 +000000000000a7de l .text 0000000000000000 .L0 +000000000000a7de l .text 0000000000000000 .L0 +000000000000a7e2 l .text 0000000000000000 .L0 +0000000000004250 l .debug_frame 0000000000000000 .L0 +000000000000a7ce l .text 0000000000000000 .L0 +000000000000a7e2 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 PROXY_sysinfo.c +000000000000eaf6 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +00000000000314c4 l .debug_str 0000000000000000 .LASF162 +0000000000031189 l .debug_str 0000000000000000 .LASF163 +0000000000031300 l .debug_str 0000000000000000 .LASF164 +00000000000038b0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000022a99 l .debug_line 0000000000000000 .Ldebug_line0 +0000000000031418 l .debug_str 0000000000000000 .LASF165 +00000000000312cf l .debug_str 0000000000000000 .LASF0 +00000000000315f3 l .debug_str 0000000000000000 .LASF1 +00000000000315c8 l .debug_str 0000000000000000 .LASF2 +00000000000311fa l .debug_str 0000000000000000 .LASF3 +0000000000031249 l .debug_str 0000000000000000 .LASF4 +0000000000030fa5 l .debug_str 0000000000000000 .LASF5 +0000000000030ebd l .debug_str 0000000000000000 .LASF6 +00000000000311be l .debug_str 0000000000000000 .LASF7 +00000000000310ba l .debug_str 0000000000000000 .LASF8 +000000000003138e l .debug_str 0000000000000000 .LASF9 +0000000000030d39 l .debug_str 0000000000000000 .LASF10 +0000000000030f7c l .debug_str 0000000000000000 .LASF11 +0000000000030f60 l .debug_str 0000000000000000 .LASF12 +00000000000313f8 l .debug_str 0000000000000000 .LASF13 +0000000000030f38 l .debug_str 0000000000000000 .LASF14 +0000000000030da0 l .debug_str 0000000000000000 .LASF15 +0000000000031202 l .debug_str 0000000000000000 .LASF16 +000000000003123f l .debug_str 0000000000000000 .LASF17 +0000000000030e0d l .debug_str 0000000000000000 .LASF18 +000000000003104b l .debug_str 0000000000000000 .LASF20 +0000000000030cfe l .debug_str 0000000000000000 .LASF19 +0000000000030c6a l .debug_str 0000000000000000 .LASF21 +00000000000310e0 l .debug_str 0000000000000000 .LASF22 +00000000000312b6 l .debug_str 0000000000000000 .LASF23 +0000000000030f07 l .debug_str 0000000000000000 .LASF24 +000000000003117e l .debug_str 0000000000000000 .LASF25 +0000000000031632 l .debug_str 0000000000000000 .LASF26 +0000000000030d52 l .debug_str 0000000000000000 .LASF27 +000000000003161b l .debug_str 0000000000000000 .LASF28 +00000000000310f9 l .debug_str 0000000000000000 .LASF29 +0000000000031490 l .debug_str 0000000000000000 .LASF30 +00000000000313b7 l .debug_str 0000000000000000 .LASF31 +00000000000313a4 l .debug_str 0000000000000000 .LASF32 +0000000000031061 l .debug_str 0000000000000000 .LASF33 +00000000000315d1 l .debug_str 0000000000000000 .LASF34 +0000000000030c83 l .debug_str 0000000000000000 .LASF35 +00000000000312e6 l .debug_str 0000000000000000 .LASF36 +000000000003111c l .debug_str 0000000000000000 .LASF37 +00000000000312d6 l .debug_str 0000000000000000 .LASF38 +0000000000030f1c l .debug_str 0000000000000000 .LASF39 +0000000000030fd8 l .debug_str 0000000000000000 .LASF40 +0000000000030c74 l .debug_str 0000000000000000 .LASF41 +0000000000030df9 l .debug_str 0000000000000000 .LASF42 +0000000000031003 l .debug_str 0000000000000000 .LASF43 +00000000000310a8 l .debug_str 0000000000000000 .LASF44 +0000000000030c9e l .debug_str 0000000000000000 .LASF45 +00000000000314a4 l .debug_str 0000000000000000 .LASF46 +00000000000312aa l .debug_str 0000000000000000 .LASF47 +000000000003135b l .debug_str 0000000000000000 .LASF48 +0000000000030d42 l .debug_str 0000000000000000 .LASF49 +000000000003129f l .debug_str 0000000000000000 .LASF50 +000000000003122b l .debug_str 0000000000000000 .LASF51 +0000000000030c34 l .debug_str 0000000000000000 .LASF52 +0000000000030f45 l .debug_str 0000000000000000 .LASF53 +0000000000031210 l .debug_str 0000000000000000 .LASF54 +0000000000030e6c l .debug_str 0000000000000000 .LASF55 +0000000000031466 l .debug_str 0000000000000000 .LASF56 +00000000000310d1 l .debug_str 0000000000000000 .LASF57 +0000000000030dc4 l .debug_str 0000000000000000 .LASF58 +0000000000030d65 l .debug_str 0000000000000000 .LASF59 +0000000000031108 l .debug_str 0000000000000000 .LASF60 +0000000000030cdb l .debug_str 0000000000000000 .LASF61 +00000000000313e6 l .debug_str 0000000000000000 .LASF62 +0000000000030eeb l .debug_str 0000000000000000 .LASF63 +0000000000030c59 l .debug_str 0000000000000000 .LASF64 +00000000000310c0 l .debug_str 0000000000000000 .LASF65 +0000000000030fb9 l .debug_str 0000000000000000 .LASF66 +0000000000031574 l .debug_str 0000000000000000 .LASF67 +0000000000030f85 l .debug_str 0000000000000000 .LASF68 +0000000000031053 l .debug_str 0000000000000000 .LASF69 +0000000000030e8f l .debug_str 0000000000000000 .LASF70 +0000000000031017 l .debug_str 0000000000000000 .LASF71 +0000000000030dd5 l .debug_str 0000000000000000 .LASF72 +00000000000315be l .debug_str 0000000000000000 .LASF73 +0000000000030d97 l .debug_str 0000000000000000 .LASF74 +0000000000030efd l .debug_str 0000000000000000 .LASF75 +0000000000030d2f l .debug_str 0000000000000000 .LASF76 +0000000000031143 l .debug_str 0000000000000000 .LASF77 +0000000000030c2b l .debug_str 0000000000000000 .LASF78 +0000000000030cf3 l .debug_str 0000000000000000 .LASF79 +0000000000030cad l .debug_str 0000000000000000 .LASF80 +0000000000031026 l .debug_str 0000000000000000 .LASF81 +0000000000030e16 l .debug_str 0000000000000000 .LASF82 +00000000000311b6 l .debug_str 0000000000000000 .LASF83 +0000000000031253 l .debug_str 0000000000000000 .LASF84 +0000000000030f72 l .debug_str 0000000000000000 .LASF85 +00000000000315b0 l .debug_str 0000000000000000 .LASF86 +0000000000030d8d l .debug_str 0000000000000000 .LASF87 +0000000000030ea7 l .debug_str 0000000000000000 .LASF88 +000000000003145d l .debug_str 0000000000000000 .LASF89 +00000000000311ab l .debug_str 0000000000000000 .LASF90 +00000000000315f9 l .debug_str 0000000000000000 .LASF91 +00000000000313dc l .debug_str 0000000000000000 .LASF92 +00000000000311a1 l .debug_str 0000000000000000 .LASF93 +0000000000031040 l .debug_str 0000000000000000 .LASF94 +000000000003121f l .debug_str 0000000000000000 .LASF95 +000000000003140b l .debug_str 0000000000000000 .LASF96 +000000000003125c l .debug_str 0000000000000000 .LASF97 +0000000000030f12 l .debug_str 0000000000000000 .LASF98 +0000000000030ff9 l .debug_str 0000000000000000 .LASF99 +00000000000315a5 l .debug_str 0000000000000000 .LASF100 +0000000000031173 l .debug_str 0000000000000000 .LASF101 +0000000000030dba l .debug_str 0000000000000000 .LASF102 +00000000000311db l .debug_str 0000000000000000 .LASF103 +0000000000030ed1 l .debug_str 0000000000000000 .LASF104 +0000000000030f2c l .debug_str 0000000000000000 .LASF105 +0000000000031598 l .debug_str 0000000000000000 .LASF106 +00000000000312c2 l .debug_str 0000000000000000 .LASF107 +00000000000313d1 l .debug_str 0000000000000000 .LASF108 +0000000000030fce l .debug_str 0000000000000000 .LASF109 +0000000000030e9d l .debug_str 0000000000000000 .LASF110 +0000000000030faf l .debug_str 0000000000000000 .LASF111 +0000000000031398 l .debug_str 0000000000000000 .LASF112 +000000000003163c l .debug_str 0000000000000000 .LASF113 +000000000003115a l .debug_str 0000000000000000 .LASF114 +0000000000030e7c l .debug_str 0000000000000000 .LASF115 +0000000000031128 l .debug_str 0000000000000000 .LASF116 +0000000000030d75 l .debug_str 0000000000000000 .LASF117 +0000000000031447 l .debug_str 0000000000000000 .LASF118 +0000000000030e4b l .debug_str 0000000000000000 .LASF119 +0000000000030cc8 l .debug_str 0000000000000000 .LASF120 +00000000000311e6 l .debug_str 0000000000000000 .LASF121 +0000000000031265 l .debug_str 0000000000000000 .LASF122 +00000000000315e2 l .debug_str 0000000000000000 .LASF123 +0000000000030d15 l .debug_str 0000000000000000 .LASF124 +0000000000031091 l .debug_str 0000000000000000 .LASF125 +000000000003133f l .debug_str 0000000000000000 .LASF126 +0000000000030c3f l .debug_str 0000000000000000 .LASF127 +0000000000031078 l .debug_str 0000000000000000 .LASF128 +0000000000031473 l .debug_str 0000000000000000 .LASF129 +0000000000030ddf l .debug_str 0000000000000000 .LASF130 +0000000000030e23 l .debug_str 0000000000000000 .LASF131 +0000000000031420 l .debug_str 0000000000000000 .LASF132 +00000000000314b0 l .debug_str 0000000000000000 .LASF133 +0000000000030f53 l .debug_str 0000000000000000 .LASF134 +0000000000030e3c l .debug_str 0000000000000000 .LASF135 +0000000000031032 l .debug_str 0000000000000000 .LASF136 +000000000003143b l .debug_str 0000000000000000 .LASF137 +0000000000030edc l .debug_str 0000000000000000 .LASF138 +000000000003114e l .debug_str 0000000000000000 .LASF139 +0000000000031290 l .debug_str 0000000000000000 .LASF140 +00000000000311c7 l .debug_str 0000000000000000 .LASF141 +0000000000030cb7 l .debug_str 0000000000000000 .LASF142 +0000000000030f97 l .debug_str 0000000000000000 .LASF143 +000000000003132b l .debug_str 0000000000000000 .LASF144 +0000000000031381 l .debug_str 0000000000000000 .LASF145 +0000000000031602 l .debug_str 0000000000000000 .LASF146 +0000000000030c93 l .debug_str 0000000000000000 .LASF147 +0000000000031234 l .debug_str 0000000000000000 .LASF148 +0000000000030eb0 l .debug_str 0000000000000000 .LASF149 +000000000003160d l .debug_str 0000000000000000 .LASF150 +0000000000030dac l .debug_str 0000000000000000 .LASF151 +0000000000031586 l .debug_str 0000000000000000 .LASF152 +0000000000030ce5 l .debug_str 0000000000000000 .LASF153 +00000000000310ea l .debug_str 0000000000000000 .LASF154 +0000000000031367 l .debug_str 0000000000000000 .LASF155 +0000000000031370 l .debug_str 0000000000000000 .LASF156 +000000000003127f l .debug_str 0000000000000000 .LASF157 +0000000000030e61 l .debug_str 0000000000000000 .LASF158 +0000000000030fea l .debug_str 0000000000000000 .LASF159 +0000000000031326 l .debug_str 0000000000000000 .LASF160 +000000000000a7e2 l .text 0000000000000000 .LFB7 +000000000000a7f0 l .text 0000000000000000 .LFE7 +0000000000031320 l .debug_str 0000000000000000 .LASF161 +000000000001fc67 l .debug_loc 0000000000000000 .LLST0 +000000000000a7e4 l .text 0000000000000000 .LBB4 +000000000000a7ec l .text 0000000000000000 .LBE4 +000000000001fc9d l .debug_loc 0000000000000000 .LLST1 +000000000001fcc1 l .debug_loc 0000000000000000 .LLST2 +0000000000030ec7 l .debug_str 0000000000000000 .LASF166 +000000000000a7e2 l .text 0000000000000000 .LVL0 +000000000000a7e6 l .text 0000000000000000 .LVL2 +000000000000a7e4 l .text 0000000000000000 .LVL1 +000000000000a7ec l .text 0000000000000000 .LVL3 +0000000000034748 l .debug_info 0000000000000000 .Ldebug_info0 +000000000000a7e2 l .text 0000000000000000 .L0 +000000000000a7e2 l .text 0000000000000000 .L0 +000000000000a7e2 l .text 0000000000000000 .L0 +000000000000a7e4 l .text 0000000000000000 .L0 +000000000000a7e4 l .text 0000000000000000 .L0 +000000000000a7e6 l .text 0000000000000000 .L0 +000000000000a7e6 l .text 0000000000000000 .L0 +000000000000a7ea l .text 0000000000000000 .L0 +000000000000a7ec l .text 0000000000000000 .L0 +000000000000a7ec l .text 0000000000000000 .L0 +000000000000a7f0 l .text 0000000000000000 .L0 +0000000000004278 l .debug_frame 0000000000000000 .L0 +000000000000a7e2 l .text 0000000000000000 .L0 +000000000000a7f0 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 PROXY_umount2.c +000000000000ec2b l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000031e8e l .debug_str 0000000000000000 .LASF151 +0000000000031647 l .debug_str 0000000000000000 .LASF152 +0000000000031cd2 l .debug_str 0000000000000000 .LASF153 +00000000000038d0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000022bd9 l .debug_line 0000000000000000 .Ldebug_line0 +00000000000317ce l .debug_str 0000000000000000 .LASF0 +0000000000031be5 l .debug_str 0000000000000000 .LASF1 +0000000000031c22 l .debug_str 0000000000000000 .LASF2 +00000000000319c0 l .debug_str 0000000000000000 .LASF3 +000000000003195c l .debug_str 0000000000000000 .LASF4 +000000000003183b l .debug_str 0000000000000000 .LASF5 +0000000000031984 l .debug_str 0000000000000000 .LASF6 +0000000000031a6f l .debug_str 0000000000000000 .LASF8 +0000000000031735 l .debug_str 0000000000000000 .LASF7 +000000000003169e l .debug_str 0000000000000000 .LASF9 +0000000000031cfe l .debug_str 0000000000000000 .LASF10 +0000000000031ae7 l .debug_str 0000000000000000 .LASF11 +0000000000031c8f l .debug_str 0000000000000000 .LASF12 +000000000003192b l .debug_str 0000000000000000 .LASF13 +0000000000031b85 l .debug_str 0000000000000000 .LASF14 +0000000000031fed l .debug_str 0000000000000000 .LASF15 +0000000000031790 l .debug_str 0000000000000000 .LASF16 +0000000000031fd6 l .debug_str 0000000000000000 .LASF17 +0000000000031b00 l .debug_str 0000000000000000 .LASF18 +0000000000031e5a l .debug_str 0000000000000000 .LASF19 +0000000000031d9c l .debug_str 0000000000000000 .LASF20 +0000000000031d89 l .debug_str 0000000000000000 .LASF21 +0000000000031a85 l .debug_str 0000000000000000 .LASF22 +0000000000031f92 l .debug_str 0000000000000000 .LASF23 +00000000000316b2 l .debug_str 0000000000000000 .LASF24 +0000000000031cb8 l .debug_str 0000000000000000 .LASF25 +0000000000031b23 l .debug_str 0000000000000000 .LASF26 +0000000000031ca8 l .debug_str 0000000000000000 .LASF27 +0000000000031940 l .debug_str 0000000000000000 .LASF28 +00000000000319fc l .debug_str 0000000000000000 .LASF29 +0000000000031ba3 l .debug_str 0000000000000000 .LASF30 +0000000000031827 l .debug_str 0000000000000000 .LASF31 +0000000000031a27 l .debug_str 0000000000000000 .LASF32 +0000000000031ab5 l .debug_str 0000000000000000 .LASF33 +00000000000316cd l .debug_str 0000000000000000 .LASF34 +0000000000031e6e l .debug_str 0000000000000000 .LASF35 +0000000000031c83 l .debug_str 0000000000000000 .LASF36 +0000000000031d33 l .debug_str 0000000000000000 .LASF37 +0000000000031780 l .debug_str 0000000000000000 .LASF38 +0000000000031c78 l .debug_str 0000000000000000 .LASF39 +0000000000031c0e l .debug_str 0000000000000000 .LASF40 +0000000000031668 l .debug_str 0000000000000000 .LASF41 +0000000000031969 l .debug_str 0000000000000000 .LASF42 +0000000000031bf3 l .debug_str 0000000000000000 .LASF43 +000000000003189a l .debug_str 0000000000000000 .LASF44 +0000000000031e30 l .debug_str 0000000000000000 .LASF45 +0000000000031ad8 l .debug_str 0000000000000000 .LASF46 +00000000000317f2 l .debug_str 0000000000000000 .LASF47 +0000000000031770 l .debug_str 0000000000000000 .LASF48 +0000000000031b0f l .debug_str 0000000000000000 .LASF49 +000000000003170a l .debug_str 0000000000000000 .LASF50 +0000000000031dcb l .debug_str 0000000000000000 .LASF51 +000000000003190f l .debug_str 0000000000000000 .LASF52 +000000000003168d l .debug_str 0000000000000000 .LASF53 +0000000000031ac7 l .debug_str 0000000000000000 .LASF54 +00000000000319dd l .debug_str 0000000000000000 .LASF55 +0000000000031f3e l .debug_str 0000000000000000 .LASF56 +00000000000319a0 l .debug_str 0000000000000000 .LASF57 +0000000000031a77 l .debug_str 0000000000000000 .LASF58 +00000000000318bd l .debug_str 0000000000000000 .LASF59 +0000000000031a3b l .debug_str 0000000000000000 .LASF60 +0000000000031803 l .debug_str 0000000000000000 .LASF61 +0000000000031f88 l .debug_str 0000000000000000 .LASF62 +00000000000317c5 l .debug_str 0000000000000000 .LASF63 +0000000000031921 l .debug_str 0000000000000000 .LASF64 +0000000000031766 l .debug_str 0000000000000000 .LASF65 +0000000000031b4a l .debug_str 0000000000000000 .LASF66 +000000000003165f l .debug_str 0000000000000000 .LASF67 +000000000003172a l .debug_str 0000000000000000 .LASF68 +00000000000316dc l .debug_str 0000000000000000 .LASF69 +0000000000031a4a l .debug_str 0000000000000000 .LASF70 +0000000000031844 l .debug_str 0000000000000000 .LASF71 +0000000000031b9b l .debug_str 0000000000000000 .LASF72 +0000000000031c2c l .debug_str 0000000000000000 .LASF73 +0000000000031996 l .debug_str 0000000000000000 .LASF74 +0000000000031f7a l .debug_str 0000000000000000 .LASF75 +00000000000317bb l .debug_str 0000000000000000 .LASF76 +00000000000318d5 l .debug_str 0000000000000000 .LASF77 +0000000000031e27 l .debug_str 0000000000000000 .LASF78 +0000000000031b90 l .debug_str 0000000000000000 .LASF79 +0000000000031fb4 l .debug_str 0000000000000000 .LASF80 +0000000000031dc1 l .debug_str 0000000000000000 .LASF81 +00000000000316a8 l .debug_str 0000000000000000 .LASF82 +0000000000031a64 l .debug_str 0000000000000000 .LASF83 +0000000000031c02 l .debug_str 0000000000000000 .LASF84 +0000000000031ddd l .debug_str 0000000000000000 .LASF85 +0000000000031c35 l .debug_str 0000000000000000 .LASF86 +0000000000031936 l .debug_str 0000000000000000 .LASF87 +0000000000031a1d l .debug_str 0000000000000000 .LASF88 +0000000000031f6f l .debug_str 0000000000000000 .LASF89 +0000000000031b7a l .debug_str 0000000000000000 .LASF90 +00000000000317e8 l .debug_str 0000000000000000 .LASF91 +0000000000031bc6 l .debug_str 0000000000000000 .LASF92 +00000000000318f5 l .debug_str 0000000000000000 .LASF93 +0000000000031950 l .debug_str 0000000000000000 .LASF94 +0000000000031f62 l .debug_str 0000000000000000 .LASF95 +0000000000031c9b l .debug_str 0000000000000000 .LASF96 +0000000000031db6 l .debug_str 0000000000000000 .LASF97 +00000000000319f2 l .debug_str 0000000000000000 .LASF98 +00000000000318cb l .debug_str 0000000000000000 .LASF99 +00000000000319d3 l .debug_str 0000000000000000 .LASF100 +0000000000031d7d l .debug_str 0000000000000000 .LASF101 +0000000000031ff7 l .debug_str 0000000000000000 .LASF102 +0000000000031b61 l .debug_str 0000000000000000 .LASF103 +00000000000318aa l .debug_str 0000000000000000 .LASF104 +0000000000031b2f l .debug_str 0000000000000000 .LASF105 +00000000000317a3 l .debug_str 0000000000000000 .LASF106 +0000000000031e11 l .debug_str 0000000000000000 .LASF107 +0000000000031879 l .debug_str 0000000000000000 .LASF108 +00000000000316f7 l .debug_str 0000000000000000 .LASF109 +0000000000031bd1 l .debug_str 0000000000000000 .LASF110 +0000000000031c3e l .debug_str 0000000000000000 .LASF111 +0000000000031fa3 l .debug_str 0000000000000000 .LASF112 +000000000003174c l .debug_str 0000000000000000 .LASF113 +0000000000031d66 l .debug_str 0000000000000000 .LASF114 +0000000000031d17 l .debug_str 0000000000000000 .LASF115 +0000000000031673 l .debug_str 0000000000000000 .LASF116 +0000000000031a9c l .debug_str 0000000000000000 .LASF117 +0000000000031e3d l .debug_str 0000000000000000 .LASF118 +000000000003180d l .debug_str 0000000000000000 .LASF119 +0000000000031851 l .debug_str 0000000000000000 .LASF120 +0000000000031dea l .debug_str 0000000000000000 .LASF121 +0000000000031e7a l .debug_str 0000000000000000 .LASF122 +0000000000031977 l .debug_str 0000000000000000 .LASF123 +000000000003186a l .debug_str 0000000000000000 .LASF124 +0000000000031a56 l .debug_str 0000000000000000 .LASF125 +0000000000031e05 l .debug_str 0000000000000000 .LASF126 +0000000000031900 l .debug_str 0000000000000000 .LASF127 +0000000000031b55 l .debug_str 0000000000000000 .LASF128 +0000000000031c69 l .debug_str 0000000000000000 .LASF129 +0000000000031bb2 l .debug_str 0000000000000000 .LASF130 +00000000000316e6 l .debug_str 0000000000000000 .LASF131 +00000000000319b2 l .debug_str 0000000000000000 .LASF132 +0000000000031d03 l .debug_str 0000000000000000 .LASF133 +0000000000031d59 l .debug_str 0000000000000000 .LASF134 +0000000000031fbd l .debug_str 0000000000000000 .LASF135 +00000000000316c2 l .debug_str 0000000000000000 .LASF136 +0000000000031c17 l .debug_str 0000000000000000 .LASF137 +00000000000318de l .debug_str 0000000000000000 .LASF138 +0000000000031fc8 l .debug_str 0000000000000000 .LASF139 +00000000000317da l .debug_str 0000000000000000 .LASF140 +0000000000031f50 l .debug_str 0000000000000000 .LASF141 +0000000000031714 l .debug_str 0000000000000000 .LASF142 +0000000000031af1 l .debug_str 0000000000000000 .LASF143 +0000000000031d3f l .debug_str 0000000000000000 .LASF144 +0000000000031d48 l .debug_str 0000000000000000 .LASF145 +0000000000031c58 l .debug_str 0000000000000000 .LASF146 +000000000003188f l .debug_str 0000000000000000 .LASF147 +0000000000031a0e l .debug_str 0000000000000000 .LASF148 +0000000000031722 l .debug_str 0000000000000000 .LASF154 +000000000000a7f0 l .text 0000000000000000 .LFB7 +000000000000a808 l .text 0000000000000000 .LFE7 +0000000000031cf2 l .debug_str 0000000000000000 .LASF149 +000000000001fcf7 l .debug_loc 0000000000000000 .LLST0 +0000000000031cf8 l .debug_str 0000000000000000 .LASF150 +000000000001fd2d l .debug_loc 0000000000000000 .LLST1 +000000000000a7f4 l .text 0000000000000000 .LBB4 +000000000000a804 l .text 0000000000000000 .LBE4 +000000000001fd66 l .debug_loc 0000000000000000 .LLST2 +000000000001fd8b l .debug_loc 0000000000000000 .LLST3 +000000000001fdb6 l .debug_loc 0000000000000000 .LLST4 +00000000000318eb l .debug_str 0000000000000000 .LASF155 +000000000000a7f0 l .text 0000000000000000 .LVL0 +000000000000a7fa l .text 0000000000000000 .LVL3 +000000000000a7fc l .text 0000000000000000 .LVL4 +000000000000a7f4 l .text 0000000000000000 .LVL1 +000000000000a804 l .text 0000000000000000 .LVL5 +000000000000a7f6 l .text 0000000000000000 .LVL2 +0000000000034c90 l .debug_info 0000000000000000 .Ldebug_info0 +000000000000a7f0 l .text 0000000000000000 .L0 +000000000000a7f0 l .text 0000000000000000 .L0 +000000000000a7f0 l .text 0000000000000000 .L0 +000000000000a7f4 l .text 0000000000000000 .L0 +000000000000a7f4 l .text 0000000000000000 .L0 +000000000000a7f6 l .text 0000000000000000 .L0 +000000000000a7fa l .text 0000000000000000 .L0 +000000000000a7fa l .text 0000000000000000 .L0 +000000000000a7fc l .text 0000000000000000 .L0 +000000000000a7fc l .text 0000000000000000 .L0 +000000000000a7fe l .text 0000000000000000 .L0 +000000000000a802 l .text 0000000000000000 .L0 +000000000000a804 l .text 0000000000000000 .L0 +000000000000a804 l .text 0000000000000000 .L0 +000000000000a808 l .text 0000000000000000 .L0 +00000000000042a0 l .debug_frame 0000000000000000 .L0 +000000000000a7f0 l .text 0000000000000000 .L0 +000000000000a808 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 PROXY_unlink.c +000000000000ed22 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000032841 l .debug_str 0000000000000000 .LASF150 +00000000000322d1 l .debug_str 0000000000000000 .LASF151 +000000000003268b l .debug_str 0000000000000000 .LASF152 +00000000000038f0 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000022d3f l .debug_line 0000000000000000 .Ldebug_line0 +0000000000032169 l .debug_str 0000000000000000 .LASF0 +000000000003259e l .debug_str 0000000000000000 .LASF1 +00000000000325db l .debug_str 0000000000000000 .LASF2 +0000000000032372 l .debug_str 0000000000000000 .LASF3 +000000000003230e l .debug_str 0000000000000000 .LASF4 +00000000000321d6 l .debug_str 0000000000000000 .LASF5 +0000000000032336 l .debug_str 0000000000000000 .LASF6 +0000000000032421 l .debug_str 0000000000000000 .LASF8 +00000000000320d0 l .debug_str 0000000000000000 .LASF7 +0000000000032041 l .debug_str 0000000000000000 .LASF9 +00000000000326b1 l .debug_str 0000000000000000 .LASF10 +00000000000324a0 l .debug_str 0000000000000000 .LASF11 +0000000000032648 l .debug_str 0000000000000000 .LASF12 +00000000000322c6 l .debug_str 0000000000000000 .LASF13 +000000000003253e l .debug_str 0000000000000000 .LASF14 +00000000000329a0 l .debug_str 0000000000000000 .LASF15 +000000000003212b l .debug_str 0000000000000000 .LASF16 +0000000000032989 l .debug_str 0000000000000000 .LASF17 +00000000000324b9 l .debug_str 0000000000000000 .LASF18 +000000000003280d l .debug_str 0000000000000000 .LASF19 +000000000003274f l .debug_str 0000000000000000 .LASF20 +000000000003273c l .debug_str 0000000000000000 .LASF21 +0000000000032437 l .debug_str 0000000000000000 .LASF22 +0000000000032945 l .debug_str 0000000000000000 .LASF23 +0000000000032055 l .debug_str 0000000000000000 .LASF24 +0000000000032671 l .debug_str 0000000000000000 .LASF25 +00000000000324dc l .debug_str 0000000000000000 .LASF26 +0000000000032661 l .debug_str 0000000000000000 .LASF27 +00000000000322f2 l .debug_str 0000000000000000 .LASF28 +00000000000323ae l .debug_str 0000000000000000 .LASF29 +000000000003255c l .debug_str 0000000000000000 .LASF30 +00000000000321c2 l .debug_str 0000000000000000 .LASF31 +00000000000323d9 l .debug_str 0000000000000000 .LASF32 +0000000000032467 l .debug_str 0000000000000000 .LASF33 +0000000000032070 l .debug_str 0000000000000000 .LASF34 +0000000000032821 l .debug_str 0000000000000000 .LASF35 +000000000003263c l .debug_str 0000000000000000 .LASF36 +00000000000326e6 l .debug_str 0000000000000000 .LASF37 +000000000003211b l .debug_str 0000000000000000 .LASF38 +0000000000032631 l .debug_str 0000000000000000 .LASF39 +00000000000325c7 l .debug_str 0000000000000000 .LASF40 +000000000003200b l .debug_str 0000000000000000 .LASF41 +000000000003231b l .debug_str 0000000000000000 .LASF42 +00000000000325ac l .debug_str 0000000000000000 .LASF43 +0000000000032235 l .debug_str 0000000000000000 .LASF44 +00000000000327e3 l .debug_str 0000000000000000 .LASF45 +0000000000032491 l .debug_str 0000000000000000 .LASF46 +000000000003218d l .debug_str 0000000000000000 .LASF47 +000000000003210b l .debug_str 0000000000000000 .LASF48 +00000000000324c8 l .debug_str 0000000000000000 .LASF49 +00000000000320ad l .debug_str 0000000000000000 .LASF50 +000000000003277e l .debug_str 0000000000000000 .LASF51 +00000000000322aa l .debug_str 0000000000000000 .LASF52 +0000000000032030 l .debug_str 0000000000000000 .LASF53 +0000000000032479 l .debug_str 0000000000000000 .LASF54 +000000000003238f l .debug_str 0000000000000000 .LASF55 +00000000000328f1 l .debug_str 0000000000000000 .LASF56 +0000000000032352 l .debug_str 0000000000000000 .LASF57 +0000000000032429 l .debug_str 0000000000000000 .LASF58 +0000000000032258 l .debug_str 0000000000000000 .LASF59 +00000000000323ed l .debug_str 0000000000000000 .LASF60 +000000000003219e l .debug_str 0000000000000000 .LASF61 +000000000003293b l .debug_str 0000000000000000 .LASF62 +0000000000032160 l .debug_str 0000000000000000 .LASF63 +00000000000322bc l .debug_str 0000000000000000 .LASF64 +0000000000032101 l .debug_str 0000000000000000 .LASF65 +0000000000032503 l .debug_str 0000000000000000 .LASF66 +0000000000032002 l .debug_str 0000000000000000 .LASF67 +00000000000320c5 l .debug_str 0000000000000000 .LASF68 +000000000003207f l .debug_str 0000000000000000 .LASF69 +00000000000323fc l .debug_str 0000000000000000 .LASF70 +00000000000321df l .debug_str 0000000000000000 .LASF71 +0000000000032554 l .debug_str 0000000000000000 .LASF72 +00000000000325e5 l .debug_str 0000000000000000 .LASF73 +0000000000032348 l .debug_str 0000000000000000 .LASF74 +000000000003292d l .debug_str 0000000000000000 .LASF75 +0000000000032156 l .debug_str 0000000000000000 .LASF76 +0000000000032270 l .debug_str 0000000000000000 .LASF77 +00000000000327da l .debug_str 0000000000000000 .LASF78 +0000000000032549 l .debug_str 0000000000000000 .LASF79 +0000000000032967 l .debug_str 0000000000000000 .LASF80 +0000000000032774 l .debug_str 0000000000000000 .LASF81 +000000000003204b l .debug_str 0000000000000000 .LASF82 +0000000000032416 l .debug_str 0000000000000000 .LASF83 +00000000000325bb l .debug_str 0000000000000000 .LASF84 +0000000000032790 l .debug_str 0000000000000000 .LASF85 +00000000000325ee l .debug_str 0000000000000000 .LASF86 +00000000000322e8 l .debug_str 0000000000000000 .LASF87 +00000000000323cf l .debug_str 0000000000000000 .LASF88 +0000000000032922 l .debug_str 0000000000000000 .LASF89 +0000000000032533 l .debug_str 0000000000000000 .LASF90 +0000000000032183 l .debug_str 0000000000000000 .LASF91 +000000000003257f l .debug_str 0000000000000000 .LASF92 +0000000000032290 l .debug_str 0000000000000000 .LASF93 +0000000000032302 l .debug_str 0000000000000000 .LASF94 +0000000000032915 l .debug_str 0000000000000000 .LASF95 +0000000000032654 l .debug_str 0000000000000000 .LASF96 +0000000000032769 l .debug_str 0000000000000000 .LASF97 +00000000000323a4 l .debug_str 0000000000000000 .LASF98 +0000000000032266 l .debug_str 0000000000000000 .LASF99 +0000000000032385 l .debug_str 0000000000000000 .LASF100 +0000000000032730 l .debug_str 0000000000000000 .LASF101 +00000000000329aa l .debug_str 0000000000000000 .LASF102 +000000000003251a l .debug_str 0000000000000000 .LASF103 +0000000000032245 l .debug_str 0000000000000000 .LASF104 +00000000000324e8 l .debug_str 0000000000000000 .LASF105 +000000000003213e l .debug_str 0000000000000000 .LASF106 +00000000000327c4 l .debug_str 0000000000000000 .LASF107 +0000000000032214 l .debug_str 0000000000000000 .LASF108 +000000000003209a l .debug_str 0000000000000000 .LASF109 +000000000003258a l .debug_str 0000000000000000 .LASF110 +00000000000325f7 l .debug_str 0000000000000000 .LASF111 +0000000000032956 l .debug_str 0000000000000000 .LASF112 +00000000000320e7 l .debug_str 0000000000000000 .LASF113 +0000000000032719 l .debug_str 0000000000000000 .LASF114 +00000000000326ca l .debug_str 0000000000000000 .LASF115 +0000000000032016 l .debug_str 0000000000000000 .LASF116 +000000000003244e l .debug_str 0000000000000000 .LASF117 +00000000000327f0 l .debug_str 0000000000000000 .LASF118 +00000000000321a8 l .debug_str 0000000000000000 .LASF119 +00000000000321ec l .debug_str 0000000000000000 .LASF120 +000000000003279d l .debug_str 0000000000000000 .LASF121 +000000000003282d l .debug_str 0000000000000000 .LASF122 +0000000000032329 l .debug_str 0000000000000000 .LASF123 +0000000000032205 l .debug_str 0000000000000000 .LASF124 +0000000000032408 l .debug_str 0000000000000000 .LASF125 +00000000000327b8 l .debug_str 0000000000000000 .LASF126 +000000000003229b l .debug_str 0000000000000000 .LASF127 +000000000003250e l .debug_str 0000000000000000 .LASF128 +0000000000032622 l .debug_str 0000000000000000 .LASF129 +000000000003256b l .debug_str 0000000000000000 .LASF130 +0000000000032089 l .debug_str 0000000000000000 .LASF131 +0000000000032364 l .debug_str 0000000000000000 .LASF132 +00000000000326b6 l .debug_str 0000000000000000 .LASF133 +000000000003270c l .debug_str 0000000000000000 .LASF134 +0000000000032970 l .debug_str 0000000000000000 .LASF135 +0000000000032065 l .debug_str 0000000000000000 .LASF136 +00000000000325d0 l .debug_str 0000000000000000 .LASF137 +0000000000032279 l .debug_str 0000000000000000 .LASF138 +000000000003297b l .debug_str 0000000000000000 .LASF139 +0000000000032175 l .debug_str 0000000000000000 .LASF140 +0000000000032903 l .debug_str 0000000000000000 .LASF141 +00000000000320b7 l .debug_str 0000000000000000 .LASF142 +00000000000324aa l .debug_str 0000000000000000 .LASF143 +00000000000326f2 l .debug_str 0000000000000000 .LASF144 +00000000000326fb l .debug_str 0000000000000000 .LASF145 +0000000000032611 l .debug_str 0000000000000000 .LASF146 +000000000003222a l .debug_str 0000000000000000 .LASF147 +00000000000323c0 l .debug_str 0000000000000000 .LASF148 +000000000003248a l .debug_str 0000000000000000 .LASF153 +000000000000a808 l .text 0000000000000000 .LFB7 +000000000000a818 l .text 0000000000000000 .LFE7 +00000000000326ab l .debug_str 0000000000000000 .LASF149 +000000000001fdec l .debug_loc 0000000000000000 .LLST0 +000000000000a80a l .text 0000000000000000 .LBB4 +000000000000a814 l .text 0000000000000000 .LBE4 +000000000001fe22 l .debug_loc 0000000000000000 .LLST1 +000000000001fe47 l .debug_loc 0000000000000000 .LLST2 +0000000000032286 l .debug_str 0000000000000000 .LASF154 +000000000000a808 l .text 0000000000000000 .LVL0 +000000000000a80e l .text 0000000000000000 .LVL2 +000000000000a80a l .text 0000000000000000 .LVL1 +000000000000a814 l .text 0000000000000000 .LVL3 +000000000003514d l .debug_info 0000000000000000 .Ldebug_info0 +000000000000a808 l .text 0000000000000000 .L0 +000000000000a808 l .text 0000000000000000 .L0 +000000000000a808 l .text 0000000000000000 .L0 +000000000000a80a l .text 0000000000000000 .L0 +000000000000a80a l .text 0000000000000000 .L0 +000000000000a80e l .text 0000000000000000 .L0 +000000000000a80e l .text 0000000000000000 .L0 +000000000000a812 l .text 0000000000000000 .L0 +000000000000a814 l .text 0000000000000000 .L0 +000000000000a814 l .text 0000000000000000 .L0 +000000000000a818 l .text 0000000000000000 .L0 +00000000000042c8 l .debug_frame 0000000000000000 .L0 +000000000000a808 l .text 0000000000000000 .L0 +000000000000a818 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 PROXY_unsetenv.c +000000000000ee19 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +00000000000331f8 l .debug_str 0000000000000000 .LASF150 +0000000000032cd2 l .debug_str 0000000000000000 .LASF151 +0000000000033042 l .debug_str 0000000000000000 .LASF152 +0000000000003910 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000022e7f l .debug_line 0000000000000000 .Ldebug_line0 +0000000000032b1c l .debug_str 0000000000000000 .LASF0 +0000000000032f55 l .debug_str 0000000000000000 .LASF1 +0000000000032f92 l .debug_str 0000000000000000 .LASF2 +0000000000032d27 l .debug_str 0000000000000000 .LASF3 +0000000000032caa l .debug_str 0000000000000000 .LASF4 +0000000000032b89 l .debug_str 0000000000000000 .LASF5 +0000000000032ceb l .debug_str 0000000000000000 .LASF6 +0000000000032ddf l .debug_str 0000000000000000 .LASF8 +0000000000032a83 l .debug_str 0000000000000000 .LASF7 +00000000000329f4 l .debug_str 0000000000000000 .LASF9 +0000000000033068 l .debug_str 0000000000000000 .LASF10 +0000000000032e57 l .debug_str 0000000000000000 .LASF11 +0000000000032fff l .debug_str 0000000000000000 .LASF12 +0000000000032c79 l .debug_str 0000000000000000 .LASF13 +0000000000032ef5 l .debug_str 0000000000000000 .LASF14 +0000000000033357 l .debug_str 0000000000000000 .LASF15 +0000000000032ade l .debug_str 0000000000000000 .LASF16 +0000000000033340 l .debug_str 0000000000000000 .LASF17 +0000000000032e70 l .debug_str 0000000000000000 .LASF18 +00000000000331c4 l .debug_str 0000000000000000 .LASF19 +0000000000033106 l .debug_str 0000000000000000 .LASF20 +00000000000330f3 l .debug_str 0000000000000000 .LASF21 +0000000000032df5 l .debug_str 0000000000000000 .LASF22 +00000000000332fc l .debug_str 0000000000000000 .LASF23 +0000000000032a08 l .debug_str 0000000000000000 .LASF24 +0000000000033028 l .debug_str 0000000000000000 .LASF25 +0000000000032e93 l .debug_str 0000000000000000 .LASF26 +0000000000033018 l .debug_str 0000000000000000 .LASF27 +0000000000032c8e l .debug_str 0000000000000000 .LASF28 +0000000000032d6c l .debug_str 0000000000000000 .LASF29 +0000000000032f13 l .debug_str 0000000000000000 .LASF30 +0000000000032b75 l .debug_str 0000000000000000 .LASF31 +0000000000032d97 l .debug_str 0000000000000000 .LASF32 +0000000000032e25 l .debug_str 0000000000000000 .LASF33 +0000000000032a23 l .debug_str 0000000000000000 .LASF34 +00000000000331d8 l .debug_str 0000000000000000 .LASF35 +0000000000032ff3 l .debug_str 0000000000000000 .LASF36 +000000000003309d l .debug_str 0000000000000000 .LASF37 +0000000000032ace l .debug_str 0000000000000000 .LASF38 +0000000000032fe8 l .debug_str 0000000000000000 .LASF39 +0000000000032f7e l .debug_str 0000000000000000 .LASF40 +00000000000329be l .debug_str 0000000000000000 .LASF41 +0000000000032cb7 l .debug_str 0000000000000000 .LASF42 +0000000000032f63 l .debug_str 0000000000000000 .LASF43 +0000000000032be8 l .debug_str 0000000000000000 .LASF44 +000000000003319a l .debug_str 0000000000000000 .LASF45 +0000000000032e48 l .debug_str 0000000000000000 .LASF46 +0000000000032b40 l .debug_str 0000000000000000 .LASF47 +0000000000032abe l .debug_str 0000000000000000 .LASF48 +0000000000032e7f l .debug_str 0000000000000000 .LASF49 +0000000000032a60 l .debug_str 0000000000000000 .LASF50 +0000000000033135 l .debug_str 0000000000000000 .LASF51 +0000000000032c5d l .debug_str 0000000000000000 .LASF52 +00000000000329e3 l .debug_str 0000000000000000 .LASF53 +0000000000032e37 l .debug_str 0000000000000000 .LASF54 +0000000000032d4d l .debug_str 0000000000000000 .LASF55 +00000000000332a8 l .debug_str 0000000000000000 .LASF56 +0000000000032d07 l .debug_str 0000000000000000 .LASF57 +0000000000032de7 l .debug_str 0000000000000000 .LASF58 +0000000000032c0b l .debug_str 0000000000000000 .LASF59 +0000000000032dab l .debug_str 0000000000000000 .LASF60 +0000000000032b51 l .debug_str 0000000000000000 .LASF61 +00000000000332f2 l .debug_str 0000000000000000 .LASF62 +0000000000032b13 l .debug_str 0000000000000000 .LASF63 +0000000000032c6f l .debug_str 0000000000000000 .LASF64 +0000000000032ab4 l .debug_str 0000000000000000 .LASF65 +0000000000032eba l .debug_str 0000000000000000 .LASF66 +00000000000329b5 l .debug_str 0000000000000000 .LASF67 +0000000000032a78 l .debug_str 0000000000000000 .LASF68 +0000000000032a32 l .debug_str 0000000000000000 .LASF69 +0000000000032dba l .debug_str 0000000000000000 .LASF70 +0000000000032b92 l .debug_str 0000000000000000 .LASF71 +0000000000032f0b l .debug_str 0000000000000000 .LASF72 +0000000000032f9c l .debug_str 0000000000000000 .LASF73 +0000000000032cfd l .debug_str 0000000000000000 .LASF74 +00000000000332e4 l .debug_str 0000000000000000 .LASF75 +0000000000032b09 l .debug_str 0000000000000000 .LASF76 +0000000000032c23 l .debug_str 0000000000000000 .LASF77 +0000000000033191 l .debug_str 0000000000000000 .LASF78 +0000000000032f00 l .debug_str 0000000000000000 .LASF79 +000000000003331e l .debug_str 0000000000000000 .LASF80 +000000000003312b l .debug_str 0000000000000000 .LASF81 +00000000000329fe l .debug_str 0000000000000000 .LASF82 +0000000000032dd4 l .debug_str 0000000000000000 .LASF83 +0000000000032f72 l .debug_str 0000000000000000 .LASF84 +0000000000033147 l .debug_str 0000000000000000 .LASF85 +0000000000032fa5 l .debug_str 0000000000000000 .LASF86 +0000000000032c84 l .debug_str 0000000000000000 .LASF87 +0000000000032d8d l .debug_str 0000000000000000 .LASF88 +00000000000332d9 l .debug_str 0000000000000000 .LASF89 +0000000000032eea l .debug_str 0000000000000000 .LASF90 +0000000000032b36 l .debug_str 0000000000000000 .LASF91 +0000000000032f36 l .debug_str 0000000000000000 .LASF92 +0000000000032c43 l .debug_str 0000000000000000 .LASF93 +0000000000032c9e l .debug_str 0000000000000000 .LASF94 +00000000000332cc l .debug_str 0000000000000000 .LASF95 +000000000003300b l .debug_str 0000000000000000 .LASF96 +0000000000033120 l .debug_str 0000000000000000 .LASF97 +0000000000032d62 l .debug_str 0000000000000000 .LASF98 +0000000000032c19 l .debug_str 0000000000000000 .LASF99 +0000000000032d43 l .debug_str 0000000000000000 .LASF100 +00000000000330e7 l .debug_str 0000000000000000 .LASF101 +0000000000033361 l .debug_str 0000000000000000 .LASF102 +0000000000032ed1 l .debug_str 0000000000000000 .LASF103 +0000000000032bf8 l .debug_str 0000000000000000 .LASF104 +0000000000032e9f l .debug_str 0000000000000000 .LASF105 +0000000000032af1 l .debug_str 0000000000000000 .LASF106 +000000000003317b l .debug_str 0000000000000000 .LASF107 +0000000000032bc7 l .debug_str 0000000000000000 .LASF108 +0000000000032a4d l .debug_str 0000000000000000 .LASF109 +0000000000032f41 l .debug_str 0000000000000000 .LASF110 +0000000000032fae l .debug_str 0000000000000000 .LASF111 +000000000003330d l .debug_str 0000000000000000 .LASF112 +0000000000032a9a l .debug_str 0000000000000000 .LASF113 +00000000000330d0 l .debug_str 0000000000000000 .LASF114 +0000000000033081 l .debug_str 0000000000000000 .LASF115 +00000000000329c9 l .debug_str 0000000000000000 .LASF116 +0000000000032e0c l .debug_str 0000000000000000 .LASF117 +00000000000331a7 l .debug_str 0000000000000000 .LASF118 +0000000000032b5b l .debug_str 0000000000000000 .LASF119 +0000000000032b9f l .debug_str 0000000000000000 .LASF120 +0000000000033154 l .debug_str 0000000000000000 .LASF121 +00000000000331e4 l .debug_str 0000000000000000 .LASF122 +0000000000032cc5 l .debug_str 0000000000000000 .LASF123 +0000000000032bb8 l .debug_str 0000000000000000 .LASF124 +0000000000032dc6 l .debug_str 0000000000000000 .LASF125 +000000000003316f l .debug_str 0000000000000000 .LASF126 +0000000000032c4e l .debug_str 0000000000000000 .LASF127 +0000000000032ec5 l .debug_str 0000000000000000 .LASF128 +0000000000032fd9 l .debug_str 0000000000000000 .LASF129 +0000000000032f22 l .debug_str 0000000000000000 .LASF130 +0000000000032a3c l .debug_str 0000000000000000 .LASF131 +0000000000032d19 l .debug_str 0000000000000000 .LASF132 +000000000003306d l .debug_str 0000000000000000 .LASF133 +00000000000330c3 l .debug_str 0000000000000000 .LASF134 +0000000000033327 l .debug_str 0000000000000000 .LASF135 +0000000000032a18 l .debug_str 0000000000000000 .LASF136 +0000000000032f87 l .debug_str 0000000000000000 .LASF137 +0000000000032c2c l .debug_str 0000000000000000 .LASF138 +0000000000033332 l .debug_str 0000000000000000 .LASF139 +0000000000032b28 l .debug_str 0000000000000000 .LASF140 +00000000000332ba l .debug_str 0000000000000000 .LASF141 +0000000000032a6a l .debug_str 0000000000000000 .LASF142 +0000000000032e61 l .debug_str 0000000000000000 .LASF143 +00000000000330a9 l .debug_str 0000000000000000 .LASF144 +00000000000330b2 l .debug_str 0000000000000000 .LASF145 +0000000000032fc8 l .debug_str 0000000000000000 .LASF146 +0000000000032bdd l .debug_str 0000000000000000 .LASF147 +0000000000032d7e l .debug_str 0000000000000000 .LASF148 +0000000000032d3a l .debug_str 0000000000000000 .LASF153 +000000000000a818 l .text 0000000000000000 .LFB7 +000000000000a828 l .text 0000000000000000 .LFE7 +0000000000033062 l .debug_str 0000000000000000 .LASF149 +000000000001fe7d l .debug_loc 0000000000000000 .LLST0 +000000000000a81a l .text 0000000000000000 .LBB4 +000000000000a824 l .text 0000000000000000 .LBE4 +000000000001feb3 l .debug_loc 0000000000000000 .LLST1 +000000000001fed8 l .debug_loc 0000000000000000 .LLST2 +0000000000032c39 l .debug_str 0000000000000000 .LASF154 +000000000000a818 l .text 0000000000000000 .LVL0 +000000000000a81e l .text 0000000000000000 .LVL2 +000000000000a81a l .text 0000000000000000 .LVL1 +000000000000a824 l .text 0000000000000000 .LVL3 +00000000000355d4 l .debug_info 0000000000000000 .Ldebug_info0 +000000000000a818 l .text 0000000000000000 .L0 +000000000000a818 l .text 0000000000000000 .L0 +000000000000a818 l .text 0000000000000000 .L0 +000000000000a81a l .text 0000000000000000 .L0 +000000000000a81a l .text 0000000000000000 .L0 +000000000000a81e l .text 0000000000000000 .L0 +000000000000a81e l .text 0000000000000000 .L0 +000000000000a822 l .text 0000000000000000 .L0 +000000000000a824 l .text 0000000000000000 .L0 +000000000000a824 l .text 0000000000000000 .L0 +000000000000a828 l .text 0000000000000000 .L0 +00000000000042f0 l .debug_frame 0000000000000000 .L0 +000000000000a818 l .text 0000000000000000 .L0 +000000000000a828 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 PROXY_waitpid.c +000000000000ef10 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000033bb9 l .debug_str 0000000000000000 .LASF153 +0000000000033842 l .debug_str 0000000000000000 .LASF154 +00000000000339fd l .debug_str 0000000000000000 .LASF155 +0000000000003930 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000022fc1 l .debug_line 0000000000000000 .Ldebug_line0 +00000000000334d9 l .debug_str 0000000000000000 .LASF0 +0000000000033910 l .debug_str 0000000000000000 .LASF1 +000000000003394d l .debug_str 0000000000000000 .LASF2 +00000000000336d3 l .debug_str 0000000000000000 .LASF3 +0000000000033667 l .debug_str 0000000000000000 .LASF4 +0000000000033546 l .debug_str 0000000000000000 .LASF5 +000000000003368f l .debug_str 0000000000000000 .LASF6 +0000000000033782 l .debug_str 0000000000000000 .LASF8 +0000000000033440 l .debug_str 0000000000000000 .LASF7 +00000000000333b1 l .debug_str 0000000000000000 .LASF9 +0000000000033cbd l .debug_str 0000000000000000 .LASF10 +0000000000033a29 l .debug_str 0000000000000000 .LASF11 +00000000000337fa l .debug_str 0000000000000000 .LASF12 +00000000000339ba l .debug_str 0000000000000000 .LASF13 +0000000000033636 l .debug_str 0000000000000000 .LASF14 +00000000000338b0 l .debug_str 0000000000000000 .LASF15 +0000000000033d1e l .debug_str 0000000000000000 .LASF16 +000000000003349b l .debug_str 0000000000000000 .LASF17 +0000000000033d07 l .debug_str 0000000000000000 .LASF18 +0000000000033813 l .debug_str 0000000000000000 .LASF19 +0000000000033b85 l .debug_str 0000000000000000 .LASF20 +0000000000033ac7 l .debug_str 0000000000000000 .LASF21 +0000000000033ab4 l .debug_str 0000000000000000 .LASF22 +0000000000033798 l .debug_str 0000000000000000 .LASF23 +0000000000033cc3 l .debug_str 0000000000000000 .LASF24 +00000000000333c5 l .debug_str 0000000000000000 .LASF25 +00000000000339e3 l .debug_str 0000000000000000 .LASF26 +0000000000033836 l .debug_str 0000000000000000 .LASF27 +00000000000339d3 l .debug_str 0000000000000000 .LASF28 +000000000003364b l .debug_str 0000000000000000 .LASF29 +000000000003370f l .debug_str 0000000000000000 .LASF30 +00000000000338ce l .debug_str 0000000000000000 .LASF31 +0000000000033532 l .debug_str 0000000000000000 .LASF32 +000000000003373a l .debug_str 0000000000000000 .LASF33 +00000000000337c8 l .debug_str 0000000000000000 .LASF34 +00000000000333e0 l .debug_str 0000000000000000 .LASF35 +0000000000033b99 l .debug_str 0000000000000000 .LASF36 +00000000000339ae l .debug_str 0000000000000000 .LASF37 +0000000000033a5e l .debug_str 0000000000000000 .LASF38 +000000000003348b l .debug_str 0000000000000000 .LASF39 +00000000000339a3 l .debug_str 0000000000000000 .LASF40 +0000000000033939 l .debug_str 0000000000000000 .LASF41 +000000000003337b l .debug_str 0000000000000000 .LASF42 +0000000000033674 l .debug_str 0000000000000000 .LASF43 +000000000003391e l .debug_str 0000000000000000 .LASF44 +00000000000335a5 l .debug_str 0000000000000000 .LASF45 +0000000000033b5b l .debug_str 0000000000000000 .LASF46 +00000000000337eb l .debug_str 0000000000000000 .LASF47 +00000000000334fd l .debug_str 0000000000000000 .LASF48 +000000000003347b l .debug_str 0000000000000000 .LASF49 +0000000000033822 l .debug_str 0000000000000000 .LASF50 +000000000003341d l .debug_str 0000000000000000 .LASF51 +0000000000033af6 l .debug_str 0000000000000000 .LASF52 +000000000003361a l .debug_str 0000000000000000 .LASF53 +00000000000333a0 l .debug_str 0000000000000000 .LASF54 +00000000000337da l .debug_str 0000000000000000 .LASF55 +00000000000336f0 l .debug_str 0000000000000000 .LASF56 +0000000000033c69 l .debug_str 0000000000000000 .LASF57 +00000000000336b3 l .debug_str 0000000000000000 .LASF58 +000000000003378a l .debug_str 0000000000000000 .LASF59 +00000000000335c8 l .debug_str 0000000000000000 .LASF60 +000000000003374e l .debug_str 0000000000000000 .LASF61 +000000000003350e l .debug_str 0000000000000000 .LASF62 +0000000000033cb3 l .debug_str 0000000000000000 .LASF63 +00000000000334d0 l .debug_str 0000000000000000 .LASF64 +000000000003362c l .debug_str 0000000000000000 .LASF65 +0000000000033471 l .debug_str 0000000000000000 .LASF66 +0000000000033875 l .debug_str 0000000000000000 .LASF67 +0000000000033372 l .debug_str 0000000000000000 .LASF68 +0000000000033435 l .debug_str 0000000000000000 .LASF69 +00000000000333ef l .debug_str 0000000000000000 .LASF70 +000000000003375d l .debug_str 0000000000000000 .LASF71 +000000000003354f l .debug_str 0000000000000000 .LASF72 +00000000000338c6 l .debug_str 0000000000000000 .LASF73 +0000000000033957 l .debug_str 0000000000000000 .LASF74 +00000000000336a9 l .debug_str 0000000000000000 .LASF75 +0000000000033ca5 l .debug_str 0000000000000000 .LASF76 +00000000000334c6 l .debug_str 0000000000000000 .LASF77 +00000000000335e0 l .debug_str 0000000000000000 .LASF78 +0000000000033b52 l .debug_str 0000000000000000 .LASF79 +00000000000338bb l .debug_str 0000000000000000 .LASF80 +0000000000033ce5 l .debug_str 0000000000000000 .LASF81 +0000000000033aec l .debug_str 0000000000000000 .LASF82 +00000000000333bb l .debug_str 0000000000000000 .LASF83 +0000000000033777 l .debug_str 0000000000000000 .LASF84 +000000000003392d l .debug_str 0000000000000000 .LASF85 +0000000000033b08 l .debug_str 0000000000000000 .LASF86 +0000000000033960 l .debug_str 0000000000000000 .LASF87 +0000000000033641 l .debug_str 0000000000000000 .LASF88 +0000000000033730 l .debug_str 0000000000000000 .LASF89 +0000000000033c9a l .debug_str 0000000000000000 .LASF90 +00000000000338a5 l .debug_str 0000000000000000 .LASF91 +00000000000334f3 l .debug_str 0000000000000000 .LASF92 +00000000000338f1 l .debug_str 0000000000000000 .LASF93 +0000000000033600 l .debug_str 0000000000000000 .LASF94 +000000000003365b l .debug_str 0000000000000000 .LASF95 +0000000000033c8d l .debug_str 0000000000000000 .LASF96 +00000000000339c6 l .debug_str 0000000000000000 .LASF97 +0000000000033ae1 l .debug_str 0000000000000000 .LASF98 +0000000000033705 l .debug_str 0000000000000000 .LASF99 +00000000000335d6 l .debug_str 0000000000000000 .LASF100 +00000000000336e6 l .debug_str 0000000000000000 .LASF101 +0000000000033aa8 l .debug_str 0000000000000000 .LASF102 +0000000000033d28 l .debug_str 0000000000000000 .LASF103 +000000000003388c l .debug_str 0000000000000000 .LASF104 +00000000000335b5 l .debug_str 0000000000000000 .LASF105 +000000000003385a l .debug_str 0000000000000000 .LASF106 +00000000000334ae l .debug_str 0000000000000000 .LASF107 +0000000000033b3c l .debug_str 0000000000000000 .LASF108 +0000000000033584 l .debug_str 0000000000000000 .LASF109 +000000000003340a l .debug_str 0000000000000000 .LASF110 +00000000000338fc l .debug_str 0000000000000000 .LASF111 +0000000000033969 l .debug_str 0000000000000000 .LASF112 +0000000000033cd4 l .debug_str 0000000000000000 .LASF113 +0000000000033457 l .debug_str 0000000000000000 .LASF114 +0000000000033a91 l .debug_str 0000000000000000 .LASF115 +0000000000033a42 l .debug_str 0000000000000000 .LASF116 +0000000000033386 l .debug_str 0000000000000000 .LASF117 +00000000000337af l .debug_str 0000000000000000 .LASF118 +0000000000033b68 l .debug_str 0000000000000000 .LASF119 +0000000000033518 l .debug_str 0000000000000000 .LASF120 +000000000003355c l .debug_str 0000000000000000 .LASF121 +0000000000033b15 l .debug_str 0000000000000000 .LASF122 +0000000000033ba5 l .debug_str 0000000000000000 .LASF123 +0000000000033682 l .debug_str 0000000000000000 .LASF124 +0000000000033575 l .debug_str 0000000000000000 .LASF125 +0000000000033769 l .debug_str 0000000000000000 .LASF126 +0000000000033b30 l .debug_str 0000000000000000 .LASF127 +000000000003360b l .debug_str 0000000000000000 .LASF128 +0000000000033880 l .debug_str 0000000000000000 .LASF129 +0000000000033994 l .debug_str 0000000000000000 .LASF130 +00000000000338dd l .debug_str 0000000000000000 .LASF131 +00000000000333f9 l .debug_str 0000000000000000 .LASF132 +00000000000336c5 l .debug_str 0000000000000000 .LASF133 +0000000000033a2e l .debug_str 0000000000000000 .LASF134 +0000000000033a84 l .debug_str 0000000000000000 .LASF135 +0000000000033cee l .debug_str 0000000000000000 .LASF136 +00000000000333d5 l .debug_str 0000000000000000 .LASF137 +0000000000033942 l .debug_str 0000000000000000 .LASF138 +00000000000335e9 l .debug_str 0000000000000000 .LASF139 +0000000000033cf9 l .debug_str 0000000000000000 .LASF140 +00000000000334e5 l .debug_str 0000000000000000 .LASF141 +0000000000033c7b l .debug_str 0000000000000000 .LASF142 +0000000000033427 l .debug_str 0000000000000000 .LASF143 +0000000000033804 l .debug_str 0000000000000000 .LASF144 +0000000000033a6a l .debug_str 0000000000000000 .LASF145 +0000000000033a73 l .debug_str 0000000000000000 .LASF146 +0000000000033983 l .debug_str 0000000000000000 .LASF147 +000000000003359a l .debug_str 0000000000000000 .LASF148 +0000000000033721 l .debug_str 0000000000000000 .LASF149 +00000000000336a1 l .debug_str 0000000000000000 .LASF156 +000000000000a828 l .text 0000000000000000 .LFB7 +000000000000a840 l .text 0000000000000000 .LFE7 +0000000000033a1d l .debug_str 0000000000000000 .LASF150 +000000000001ff0e l .debug_loc 0000000000000000 .LLST0 +0000000000033a23 l .debug_str 0000000000000000 .LASF151 +000000000001ff47 l .debug_loc 0000000000000000 .LLST1 +000000000003336c l .debug_str 0000000000000000 .LASF152 +000000000001ff7d l .debug_loc 0000000000000000 .LLST2 +000000000000a82e l .text 0000000000000000 .LBB4 +000000000000a83c l .text 0000000000000000 .LBE4 +000000000001ffb6 l .debug_loc 0000000000000000 .LLST3 +000000000001ffdb l .debug_loc 0000000000000000 .LLST4 +0000000000020006 l .debug_loc 0000000000000000 .LLST5 +000000000002003c l .debug_loc 0000000000000000 .LLST6 +00000000000335f6 l .debug_str 0000000000000000 .LASF157 +000000000000a828 l .text 0000000000000000 .LVL0 +000000000000a832 l .text 0000000000000000 .LVL4 +000000000000a834 l .text 0000000000000000 .LVL5 +000000000000a836 l .text 0000000000000000 .LVL6 +000000000000a82e l .text 0000000000000000 .LVL3 +000000000000a83c l .text 0000000000000000 .LVL7 +000000000000a82c l .text 0000000000000000 .LVL2 +000000000000a82a l .text 0000000000000000 .LVL1 +0000000000035a5a l .debug_info 0000000000000000 .Ldebug_info0 +000000000000a828 l .text 0000000000000000 .L0 +000000000000a828 l .text 0000000000000000 .L0 +000000000000a828 l .text 0000000000000000 .L0 +000000000000a82e l .text 0000000000000000 .L0 +000000000000a82e l .text 0000000000000000 .L0 +000000000000a832 l .text 0000000000000000 .L0 +000000000000a832 l .text 0000000000000000 .L0 +000000000000a834 l .text 0000000000000000 .L0 +000000000000a834 l .text 0000000000000000 .L0 +000000000000a836 l .text 0000000000000000 .L0 +000000000000a836 l .text 0000000000000000 .L0 +000000000000a83a l .text 0000000000000000 .L0 +000000000000a83c l .text 0000000000000000 .L0 +000000000000a83c l .text 0000000000000000 .L0 +000000000000a840 l .text 0000000000000000 .L0 +0000000000004318 l .debug_frame 0000000000000000 .L0 +000000000000a828 l .text 0000000000000000 .L0 +000000000000a840 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 libgcc2.c +000000000000001c l .text 0000000000000000 .L0 +0000000000000012 l .text 0000000000000000 .L2 +0000000000000004 l .text 0000000000000000 .L3 +000000000000f000 l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +0000000000033db8 l .debug_str 0000000000000000 .LASF24 +0000000000033ec0 l .debug_str 0000000000000000 .LASF25 +0000000000033efd l .debug_str 0000000000000000 .LASF26 +0000000000000000 l .text 0000000000000000 .Ltext0 +0000000000000030 l .text 0000000000000000 .Letext0 +000000000002312f l .debug_line 0000000000000000 .Ldebug_line0 +0000000000033fd8 l .debug_str 0000000000000000 .LASF0 +0000000000033d93 l .debug_str 0000000000000000 .LASF1 +0000000000033eea l .debug_str 0000000000000000 .LASF2 +0000000000033fe1 l .debug_str 0000000000000000 .LASF3 +0000000000033fed l .debug_str 0000000000000000 .LASF4 +0000000000033d85 l .debug_str 0000000000000000 .LASF5 +0000000000033e68 l .debug_str 0000000000000000 .LASF6 +0000000000033da5 l .debug_str 0000000000000000 .LASF7 +0000000000033e98 l .debug_str 0000000000000000 .LASF8 +0000000000033ead l .debug_str 0000000000000000 .LASF9 +0000000000033d6e l .debug_str 0000000000000000 .LASF10 +0000000000033e86 l .debug_str 0000000000000000 .LASF11 +0000000000034002 l .debug_str 0000000000000000 .LASF12 +0000000000033ea5 l .debug_str 0000000000000000 .LASF13 +0000000000033d65 l .debug_str 0000000000000000 .LASF14 +0000000000033d33 l .debug_str 0000000000000000 .LASF15 +0000000000033d45 l .debug_str 0000000000000000 .LASF16 +0000000000033d4e l .debug_str 0000000000000000 .LASF17 +0000000000033d5f l .debug_str 0000000000000000 .LASF18 +0000000000033eb2 l .debug_str 0000000000000000 .LASF19 +0000000000033e61 l .debug_str 0000000000000000 .LASF20 +0000000000033fc9 l .debug_str 0000000000000000 .LASF21 +0000000000033e72 l .debug_str 0000000000000000 .LASF22 +0000000000033e8e l .debug_str 0000000000000000 .LASF27 +0000000000033ff9 l .debug_str 0000000000000000 .LASF28 +0000000000000000 l .text 0000000000000000 .LFB4 +0000000000000030 l .text 0000000000000000 .LFE4 +0000000000020067 l .debug_loc 0000000000000000 .LLST0 +0000000000003950 l .debug_ranges 0000000000000000 .Ldebug_ranges0 +0000000000033ef8 l .debug_str 0000000000000000 .LASF23 +00000000000200a0 l .debug_loc 0000000000000000 .LLST1 +00000000000200d9 l .debug_loc 0000000000000000 .LLST2 +0000000000000000 l .text 0000000000000000 .LVL0 +000000000000001c l .text 0000000000000000 .LVL4 +0000000000000004 l .text 0000000000000000 .LVL1 +0000000000000024 l .text 0000000000000000 .LVL5 +0000000000035f55 l .debug_info 0000000000000000 .Ldebug_info0 +0000000000000000 l .text 0000000000000000 .LBB2 +0000000000000012 l .text 0000000000000000 .LBE2 +0000000000000012 l .text 0000000000000000 .LBB3 +000000000000002a l .text 0000000000000000 .LBE3 +0000000000000000 l .text 0000000000000000 .L0 +0000000000000000 l .text 0000000000000000 .L0 +0000000000000000 l .text 0000000000000000 .L0 +0000000000000000 l .text 0000000000000000 .L0 +0000000000000000 l .text 0000000000000000 .L0 +0000000000000000 l .text 0000000000000000 .L0 +0000000000000000 l .text 0000000000000000 .L0 +0000000000000000 l .text 0000000000000000 .L0 +0000000000000004 l .text 0000000000000000 .L0 +000000000000000e l .text 0000000000000000 .L0 +0000000000000010 l .text 0000000000000000 .L0 +0000000000000012 l .text 0000000000000000 .L0 +0000000000000012 l .text 0000000000000000 .L0 +0000000000000012 l .text 0000000000000000 .L0 +0000000000000012 l .text 0000000000000000 .L0 +000000000000002a l .text 0000000000000000 .L0 +0000000000000030 l .text 0000000000000000 .L0 +0000000000004340 l .debug_frame 0000000000000000 .L0 +0000000000000000 l .text 0000000000000000 .L0 +0000000000000030 l .text 0000000000000000 .L0 +0000000000000000 l df *ABS* 0000000000000000 libgcc2.c +000000000000f0ca l .debug_abbrev 0000000000000000 .Ldebug_abbrev0 +000000000003420d l .debug_str 0000000000000000 .LASF20 +0000000000034062 l .debug_str 0000000000000000 .LASF21 +000000000003408c l .debug_str 0000000000000000 .LASF22 +000000000002321c l .debug_line 0000000000000000 .Ldebug_line0 +000000000003418c l .debug_str 0000000000000000 .LASF0 +0000000000034050 l .debug_str 0000000000000000 .LASF1 +0000000000034009 l .debug_str 0000000000000000 .LASF2 +00000000000341e0 l .debug_str 0000000000000000 .LASF3 +00000000000342b6 l .debug_str 0000000000000000 .LASF4 +000000000003416f l .debug_str 0000000000000000 .LASF5 +0000000000034203 l .debug_str 0000000000000000 .LASF6 +00000000000341bf l .debug_str 0000000000000000 .LASF7 +0000000000034017 l .debug_str 0000000000000000 .LASF8 +000000000003417d l .debug_str 0000000000000000 .LASF9 +0000000000034158 l .debug_str 0000000000000000 .LASF10 +00000000000341f5 l .debug_str 0000000000000000 .LASF23 +00000000000341ec l .debug_str 0000000000000000 .LASF11 +000000000003419c l .debug_str 0000000000000000 .LASF12 +0000000000034024 l .debug_str 0000000000000000 .LASF13 +00000000000341ae l .debug_str 0000000000000000 .LASF14 +00000000000341fd l .debug_str 0000000000000000 .LASF15 +00000000000341d2 l .debug_str 0000000000000000 .LASF16 +0000000000034195 l .debug_str 0000000000000000 .LASF17 +0000000000034041 l .debug_str 0000000000000000 .LASF18 +000000000003402d l .debug_str 0000000000000000 .LASF19 +0000000000034182 l .debug_str 0000000000000000 .LASF24 +00000000000360c5 l .debug_info 0000000000000000 .Ldebug_info0 +0000000000001942 g F .text 0000000000000014 clock_gettime +000000000000a70c g F .text 0000000000000016 pgalloc +00000000000018d4 g F .text 000000000000001c nxsem_get_value +0000000000001962 g F .text 000000000000000e nx_pthread_exit +000000000000a6a2 g F .text 0000000000000020 nx_pthread_create +0000000000009930 g F .text 0000000000000066 lib_isbasedigit +000000000000a818 g F .text 0000000000000010 unsetenv +0000000000008cfc g F .text 00000000000000ca mm_shrinkchunk +0000000000005e30 g F .text 00000000000000d2 cmd_rm +000000000000a828 g F .text 0000000000000018 waitpid +000000000000124c g F .text 0000000000000034 lib_fflush +000000000000758e g F .text 0000000000000108 cmd_kill +0000000000003632 g F .text 000000000000017e cmd_alias +000000000000a5fe g F .text 000000000000002c ioctl +0000000000005ade g F .text 0000000000000112 cmd_mkdir +0000000000004ac4 g F .text 000000000000016a cmd_set +0000000000001970 g F .text 0000000000000016 nxsem_clockwait +000000000000a158 g F .text 0000000000000022 clock_isleapyear +0000000000008c2c g F .text 000000000000008a mm_addfreechunk +000000000000a79e g F .text 000000000000000c sched_lock +0000000000005534 g F .text 000000000000011e cmd_dmesg +00000000000012e8 g F .text 000000000000000a task_get_info +00000000000083da g F .text 0000000000000156 mm_delayfree +000000000000136a g F .text 0000000000000022 nxmutex_is_locked +0000000000009258 g F .text 0000000000000018 pthread_create +0000000000000001 g .dtors 0000000000000000 _edtors +0000000000009f6a g F .text 000000000000000c sigemptyset +0000000000003cdc g F .text 0000000000000090 nsh_command +0000000000001564 g F .text 000000000000000e nxmutex_restorelock +00000000000091d8 g F .text 0000000000000024 pthread_attr_init +0000000000007696 g F .text 0000000000000054 cmd_sleep +000000000000176a g F .text 000000000000001e pthread_exit +000000000000948a g F .text 0000000000000048 snprintf +0000000000001956 g F .text 000000000000000c gettid +00000000000019f8 g F .text 000000000000004a nsh_consolemain +0000000000008f1e g F .text 0000000000000008 iscntrl_l +000000000000874c g F .text 00000000000002d8 mm_realloc +00000000000019be g F .text 0000000000000012 sched_getparam +0000000000001740 g F .text 000000000000002a nxrmutex_restorelock +0000000000000001 g .dtors 0000000000000000 _sdtors +0000000000009f76 g F .text 000000000000001a add_file_action +0000000000009996 g F .text 000000000000002a lib_skipspace +0000000000000fd8 g F .text 0000000000000016 __errno +0000000000009270 g F .text 0000000000000016 sq_remfirst +0000000000006980 g F .text 000000000000006c nsh_getdirpath +000000000000a5de g F .text 000000000000000e getenv +0000000000002fea g F .text 00000000000000f0 nsh_parse +0000000000003274 g F .text 0000000000000280 readline_common +000000000000613e g F .text 00000000000001c2 cmd_truncate +000000000000a840 g .text 0000000000000000 _etext +0000000000000554 g .bss 0000000000000000 _sbss +00000000000093e0 g F .text 0000000000000008 posix_spawn_file_actions_init +00000000000054ac g F .text 0000000000000088 cmd_cat +0000000000009e14 g F .text 0000000000000040 usleep +0000000000006a2a g F .text 0000000000000014 cmd_free +000000000000aed8 g O .rodata 0000000000000019 g_fmtinternalerror +000000000000773e g F .text 00000000000002a2 cmd_uptime +0000000000008bfa g F .text 0000000000000032 mm_unlock +0000000000009f06 g F .text 0000000000000064 truncate +00000000000011c4 g F .text 0000000000000088 lib_fflush_unlocked +0000000000000b1c g F .text 0000000000000040 __ultoa_invert +0000000000015bf8 g O .rodata 0000000000000018 g_default_pthread_attr +00000000000090be g F .text 0000000000000080 dirname +0000000000000df8 g F .text 0000000000000004 lib_noflush +000000000000ae58 g O .rodata 000000000000001c g_fmtcmdnotfound +000000000000af90 g O .rodata 0000000000000023 g_nshgreeting +0000000000005f78 g F .text 0000000000000010 cmd_source +0000000000000fee g F .text 000000000000006c task_setcancelstate +0000000000005652 g F .text 0000000000000272 cmd_cp +0000000000000fa6 g F .text 000000000000001c memcpy +0000000000008dc6 g F .text 0000000000000144 mm_malloc +00000000000082b2 g F .text 000000000000002c mm_brkaddr +00000000000017dc g F .text 0000000000000044 nxsem_init +000000000000add8 g O .rodata 000000000000001b g_fmtarginvalid +000000000000362a g F .text 0000000000000008 nsh_aliasfree +0000000000015e84 g .rodata 0000000000000000 _srodata +0000000000008f66 g F .text 0000000000000010 tolower +0000000000001ea4 g F .text 0000000000000096 nsh_newconsole +0000000000008f76 g F .text 0000000000000008 tolower_l +0000000000008130 g F .text 000000000000000c malloc +000000000000a722 g F .text 0000000000000024 posix_spawn +0000000000000d1c g F .text 000000000000001e quick_exit +0000000000009dcc g F .text 0000000000000048 sleep +000000000000191e g F .text 0000000000000018 _assert +000000000000a7e2 g F .text 000000000000000e sysinfo +0000000000001572 g F .text 000000000000000c nxrmutex_init +0000000000001986 g F .text 000000000000000e nxsem_destroy +0000000000006da6 g F .text 0000000000000078 cmd_umount +0000000000009644 g F .text 000000000000010e strtoul +0000000000000000 w O .sdata.__dso_handle 0000000000000008 __dso_handle +0000000000001cf6 g F .text 000000000000003a readline_fd +00000000000013fa g F .text 0000000000000056 nxmutex_trylock +00000000000076ea g F .text 0000000000000054 cmd_usleep +000000000000a17a g F .text 0000000000000042 clock_dayoftheweek +000000000000a790 g F .text 000000000000000e sched_getscheduler +0000000000009da6 g F .text 0000000000000012 getoptargp +0000000000000030 g .data 0000000000000000 _sdata +0000000000008a56 g F .text 0000000000000048 umm_try_initialize +0000000000001788 g F .text 0000000000000026 clock_ticks2time +000000000000a780 g F .text 0000000000000010 rmdir +0000000000003f2a g F .text 000000000000021a cmd_hexdump +0000000000009014 g F .text 000000000000003c readdir +000000000000aa40 g O .rodata 0000000000000048 g_dtoa_scale_up +000000000000138c g F .text 000000000000006e nxmutex_lock +000000000000a7aa g F .text 000000000000000c sched_unlock +00000000000016fe g F .text 0000000000000042 nxrmutex_breaklock +0000000000008a36 g F .text 0000000000000020 umm_initialize +00000000000041c2 g F .text 00000000000004c0 cmd_dd +0000000000008f26 g F .text 0000000000000014 isspace +00000000000010a0 g F .text 0000000000000046 fflush +000000000000132a g F .text 0000000000000020 nxmutex_destroy +000000000000a5be g F .text 0000000000000014 ftruncate +0000000000009f90 g F .text 00000000000001a8 realpath +00000000000068e6 g F .text 000000000000003c nsh_trimdir +000000000000a63e g F .text 0000000000000018 lseek +000000000000aeb8 g O .rodata 000000000000001b g_fmtdeepnesting +000000000000802a g F .text 00000000000000f4 cmd_time +0000000000000d3a g F .text 000000000000000c _Exit +0000000000008a9e g F .text 000000000000008e mm_addregion +0000000000004682 g F .text 0000000000000024 nsh_getcwd +000000000000a746 g F .text 0000000000000010 pthread_detach +00000000000064a6 g F .text 000000000000019e nsh_catfile +0000000000004c84 g F .text 00000000000001b2 nsh_fileapp +00000000000012da g F .text 000000000000000e abort +0000000000008f5e g F .text 0000000000000008 isxdigit_l +0000000000005480 g F .text 000000000000002c cmd_dirname +000000000000a978 g O .rodata 0000000000000080 g_dtoa_round +0000000000009c0c g F .text 0000000000000184 gmtime_r +000000000000128a g F .text 000000000000000a ftrylockfile +00000000000015a6 g F .text 0000000000000008 nxrmutex_is_locked +0000000000008f42 g F .text 000000000000001c isxdigit +00000000000046a6 g F .text 0000000000000080 nsh_getfullpath +000000000000959c g F .text 00000000000000a8 strtol +0000000000008bcc g F .text 000000000000002e mm_lock +000000000000af70 g O .rodata 000000000000001d g_fmttoomanyargs +0000000000000f8e g F .text 0000000000000018 strnlen +0000000000000dd2 g F .text 0000000000000026 lib_rawoutstream +00000000000093e8 g F .text 000000000000007c posix_spawnattr_init +000000000000913e g F .text 000000000000009a uname +0000000000008a24 g F .text 0000000000000012 mm_heapmember +0000000000000554 g .bss 0000000000000000 _ebss +000000000000a76c g F .text 0000000000000014 rename +000000000000a6c2 g F .text 0000000000000018 nx_vsyslog +0000000000009a5c g F .text 0000000000000014 strrchr +0000000000009050 g F .text 000000000000006e basename +0000000000006300 g F .text 00000000000000ba cmd_fdinfo +000000000000ae40 g O .rodata 0000000000000018 g_fmtcmdfailed +000000000000a5d2 g F .text 000000000000000c get_environ_ptr +00000000000019e2 g F .text 0000000000000016 write +000000000000a62a g F .text 0000000000000014 kill +00000000000016ae g F .text 0000000000000050 nxrmutex_unlock +0000000000000136 g F .text 0000000000000010 lib_vsprintf_internal +000000000000a7f0 g F .text 0000000000000018 umount2 +0000000000008f3a g F .text 0000000000000008 isspace_l +0000000000009e54 g F .text 00000000000000b2 chdir +00000000000030da g F .text 000000000000002e cmd_break +000000000000a4d4 g F .text 000000000000000a getoptvars +00000000000012f2 g F .text 0000000000000038 nxmutex_init +0000000000000000 g O .srodata.g_nshprompt 0000000000000006 g_nshprompt +00000000000014c2 g F .text 0000000000000066 nxmutex_unlock +0000000000001820 g F .text 0000000000000044 sem_init +00000000000000d2 g F .text 0000000000000022 dprintf +000000000000004a g F .text 0000000000000024 _start +000000000000a656 g F .text 0000000000000014 lstat +00000000000069ec g F .text 000000000000003e nsh_getpid +000000000000a756 g F .text 0000000000000016 read +0000000000009866 g F .text 000000000000002e lib_memoutstream +0000000000001450 g F .text 0000000000000072 nxmutex_timedlock +000000000000750a g F .text 0000000000000084 cmd_pidof +0000000000009910 g F .text 0000000000000020 flsl +0000000000009b24 g F .text 0000000000000038 strlcpy +0000000000009a32 g F .text 000000000000002a strncmp +0000000000008b2c g F .text 0000000000000098 mm_initialize +000000000000ae90 g O .rodata 0000000000000024 g_fmtcontext +000000000000a808 g F .text 0000000000000010 unlink +000000000000a7b6 g F .text 0000000000000018 setenv +0000000000001994 g F .text 000000000000000e nxsem_post +0000000000003108 g F .text 000000000000016c nsh_script +00000000000092a8 g F .text 0000000000000024 sched_get_priority_max +0000000000001294 g F .text 000000000000000a funlockfile +0000000000008196 g F .text 000000000000005a realloc +0000000000001528 g F .text 000000000000003c nxmutex_breaklock +00000000000019b0 g F .text 000000000000000e nxsem_wait +00000000000019a2 g F .text 000000000000000e nxsem_trywait +0000000000000b5c g F .text 0000000000000198 __dtoa_engine +0000000000009a70 g F .text 000000000000002c memcmp +00000000000092cc g F .text 000000000000002a sched_get_priority_min +00000000000012b4 g F .text 0000000000000026 lib_get_stream +0000000000004a82 g F .text 0000000000000014 cmd_env +000000000000857c g F .text 00000000000001d0 mm_memalign +00000000000018a6 g F .text 000000000000002e sem_setprotocol +000000000000821a g F .text 0000000000000098 sbrk +00000000000099f8 g F .text 000000000000003a strdup +0000000000005408 g F .text 0000000000000078 cmd_basename +0000000000008530 g F .text 000000000000004c mm_free +0000000000007fb8 g F .text 000000000000000c cmd_test +000000000000129e g F .text 0000000000000016 lib_get_streams +00000000000035ca g F .text 0000000000000022 alias_init +0000000000005bf0 g F .text 0000000000000184 cmd_mkrd +000000000000a138 g F .text 0000000000000020 clock_daysbeforemonth +0000000000009d98 g F .text 000000000000000e getopt +0000000000009c04 g F .text 0000000000000008 localtime +0000000000000ec2 g F .text 00000000000000cc memset +000000000000006e g F .text 0000000000000064 main +00000000000017ae g F .text 000000000000002e clock_timespec_add +0000000000009ac6 g F .text 000000000000005e strlcat +00000000000092f6 g F .text 00000000000000a2 posix_spawn_file_actions_addopen +0000000000006b8e g F .text 0000000000000218 cmd_mount +0000000000004a96 g F .text 000000000000002e cmd_pwd +0000000000009bcc g F .text 0000000000000028 time +0000000000008f7e g F .text 0000000000000058 opendir +000000000000134a g F .text 0000000000000020 nxmutex_is_hold +0000000000006760 g F .text 00000000000000d2 nsh_writefile +0000000000009b96 g F .text 0000000000000022 syslog +00000000000010e6 g F .text 0000000000000064 lib_flushall_unlocked +0000000000001656 g F .text 0000000000000058 nxrmutex_timedlock +00000000000037b0 g F .text 00000000000000b6 cmd_unalias +000000000000a682 g F .text 0000000000000020 mount +0000000000009aae g F .text 0000000000000018 strcmp +0000000000006922 g F .text 000000000000005e nsh_trimspaces +000000000000a4de g F .text 000000000000009c getcwd +0000000000000146 g F .text 0000000000000008 lib_vsprintf +000000000000a5ec g F .text 0000000000000012 gethostname +000000000000813c g F .text 000000000000005a memalign +00000000000015ae g F .text 0000000000000054 nxrmutex_lock +000000000000a840 g O .rodata 0000000000000100 .hidden __clz_tab +0000000000009468 g F .text 0000000000000022 asprintf +00000000000099c0 g F .text 0000000000000038 strcspn +00000000000035ec g F .text 000000000000003e nsh_aliasfind +00000000000082de g F .text 00000000000000fc mm_extend +0000000000009286 g F .text 0000000000000022 sq_remafter +0000000000001280 g F .text 000000000000000a flockfile +0000000000009bb8 g F .text 0000000000000014 setlogmask +000000000000a57a g F .text 0000000000000018 boardctl +0000000000005d74 g F .text 00000000000000bc cmd_mv +00000000000019d0 g F .text 0000000000000012 sched_setparam +0000000000001a42 g F .text 0000000000000010 nsh_initialize +000000000000af18 g O .rodata 0000000000000019 g_fmtnosuch +0000000000000001 g .ctors 0000000000000000 _sctors +000000000000ae18 g O .rodata 0000000000000027 g_fmtargrequired +0000000000006644 g F .text 000000000000011c nsh_readfile +0000000000009d90 g F .text 0000000000000008 localtime_r +000000000000105a g F .text 0000000000000046 fflush_unlocked +000000000000157e g F .text 0000000000000020 nxrmutex_destroy +000000000000a7ce g F .text 0000000000000014 stat +0000000000009752 g F .text 0000000000000094 lib_checkbase +0000000000004732 g F .text 000000000000011a cmd_cd +000000000000aef8 g O .rodata 0000000000000019 g_fmtnomatching +00000000000098ec g F .text 0000000000000024 lib_nulloutstream +00000000000079e0 g F .text 000000000000020c cmd_uname +0000000000004726 g F .text 000000000000000c nsh_freefullpath +0000000000003eb0 g F .text 000000000000007a cmd_xd +00000000000058c4 g F .text 000000000000021a cmd_ls +0000000000000030 g .data 0000000000000000 _edata +000000000000159e g F .text 0000000000000008 nxrmutex_is_hold +0000000000009398 g F .text 0000000000000048 posix_spawn_file_actions_destroy +00000000000081f0 g F .text 000000000000002a zalloc +0000000000006b44 g F .text 000000000000004a cmd_df +0000000000007454 g F .text 00000000000000b6 cmd_ps +0000000000005f88 g F .text 00000000000001b6 cmd_cmp +00000000000018f0 g F .text 000000000000002e sem_getvalue +0000000000001864 g F .text 0000000000000042 nxsem_set_protocol +0000000000008bc4 g F .text 0000000000000008 mm_uninitialize +0000000000003d6c g F .text 0000000000000144 nsh_dumpbuffer +0000000000000cf4 g F .text 0000000000000028 exit +0000000000007fc4 g F .text 0000000000000066 cmd_lbracket +000000000000484c g F .text 0000000000000236 cmd_echo +0000000000001a52 g F .text 00000000000001a8 nsh_session +0000000000000af4 g F .text 0000000000000028 lib_sprintf_internal +0000000000009db8 g F .text 0000000000000014 getoptindp +0000000000000001 g .ctors 0000000000000000 _ectors +0000000000009584 g F .text 0000000000000018 atoi +0000000000008f0a g F .text 0000000000000014 iscntrl +000000000000af58 g O .rodata 0000000000000017 g_fmtsyntax +0000000000006832 g F .text 00000000000000b4 nsh_foreach_direntry +000000000000ae78 g O .rodata 0000000000000018 g_fmtcmdoutofmemory +0000000000009b6e g F .text 0000000000000028 vsyslog +00000000000091fc g F .text 0000000000000018 pthread_attr_setschedpolicy +000000000000114a g F .text 000000000000007a lib_flushall +0000000000001936 g F .text 000000000000000c _exit +0000000000009bf4 g F .text 0000000000000010 gmtime +0000000000001602 g F .text 0000000000000054 nxrmutex_trylock +000000000000a840 g .text 0000000000000000 _stext +0000000000009b5c g F .text 0000000000000012 strlen +000000000000a9f8 g O .rodata 0000000000000048 g_dtoa_scale_down +000000000000a6da g F .text 0000000000000032 open +000000000000adf8 g O .rodata 000000000000001d g_fmtargrange +00000000000000f4 g F .text 0000000000000042 vdprintf +0000000000000fc2 g F .text 0000000000000016 __assert +0000000000009a9c g F .text 0000000000000012 strchr +0000000000009214 g F .text 0000000000000014 pthread_attr_setschedparam +0000000000006e1e g F .text 0000000000000160 cmd_printf +0000000000008fd6 g F .text 000000000000003e closedir +0000000000000e98 g F .text 000000000000002a lib_bufferedoutstream +0000000000000000 g F .text 0000000000000030 .hidden __clzdi2 +00000000000094d2 g F .text 00000000000000b2 vasprintf +000000000000a592 g F .text 000000000000001c clock_nanosleep +00000000000073ee g F .text 0000000000000066 cmd_exec +0000000000004c2e g F .text 0000000000000056 cmd_unset +000000000000a66a g F .text 0000000000000018 mkdir +0000000000000000 g O .sdata.g_syslog_mask 0000000000000001 g_syslog_mask +000000000000a5ae g F .text 0000000000000010 close +000000000000af38 g O .rodata 0000000000000020 g_fmtsignalrecvd +0000000000006a3e g F .text 0000000000000106 cmd_memdump +0000000000009464 g F .text 0000000000000004 posix_spawnattr_destroy +0000000000005f02 g F .text 0000000000000076 cmd_rmdir +000000000000a2c8 g F .text 000000000000020c getopt_common +000000000000811e g F .text 0000000000000012 free +0000000000015e84 g .rodata 0000000000000000 _erodata +0000000000008cb6 g F .text 0000000000000046 mm_size2ndx +0000000000000008 g O .data 0000000000000028 g_getopt_vars + + + +Disassembly of section .text: + +0000000000000000 <__clzdi2>: +__clzdi2(): +/scratch/jenkins/workspace/tpp-freedom-tools/tpp01--build-binary-packages--parameterized/obj/x86_64-apple-darwin/build/riscv64-unknown-elf-gcc/build-gcc-stage2/riscv64-unknown-elf/rv64imafdc/lp64d/libgcc/../../../../../riscv-gcc/libgcc/libgcc2.c:710 + 0: 03800793 li a5,56 + +0000000000000004 <.L3>: +/scratch/jenkins/workspace/tpp-freedom-tools/tpp01--build-binary-packages--parameterized/obj/x86_64-apple-darwin/build/riscv64-unknown-elf-gcc/build-gcc-stage2/riscv64-unknown-elf/rv64imafdc/lp64d/libgcc/../../../../../riscv-gcc/libgcc/libgcc2.c:710 (discriminator 20) + 4: 00f55733 srl a4,a0,a5 + 8: 0ff77713 zext.b a4,a4 + c: e319 bnez a4,12 <.L2> c: R_RISCV_RVC_BRANCH .L2 +/scratch/jenkins/workspace/tpp-freedom-tools/tpp01--build-binary-packages--parameterized/obj/x86_64-apple-darwin/build/riscv64-unknown-elf-gcc/build-gcc-stage2/riscv64-unknown-elf/rv64imafdc/lp64d/libgcc/../../../../../riscv-gcc/libgcc/libgcc2.c:710 (discriminator 18) + e: 17e1 addi a5,a5,-8 + 10: fbf5 bnez a5,4 <.L3> 10: R_RISCV_RVC_BRANCH .L3 + +0000000000000012 <.L2>: +/scratch/jenkins/workspace/tpp-freedom-tools/tpp01--build-binary-packages--parameterized/obj/x86_64-apple-darwin/build/riscv64-unknown-elf-gcc/build-gcc-stage2/riscv64-unknown-elf/rv64imafdc/lp64d/libgcc/../../../../../riscv-gcc/libgcc/libgcc2.c:710 (discriminator 21) + 12: 04000713 li a4,64 + 16: 8f1d sub a4,a4,a5 + 18: 00f55533 srl a0,a0,a5 + +000000000000001c <.LVL4>: + 1c: 00000797 auipc a5,0x0 1c: R_RISCV_PCREL_HI20 __clz_tab + 1c: R_RISCV_RELAX *ABS* + 20: 00078793 mv a5,a5 20: R_RISCV_PCREL_LO12_I .L0 + 20: R_RISCV_RELAX *ABS* + +0000000000000024 <.LVL5>: + 24: 953e add a0,a0,a5 + 26: 00054503 lbu a0,0(a0) + +000000000000002a <.LBE3>: +/scratch/jenkins/workspace/tpp-freedom-tools/tpp01--build-binary-packages--parameterized/obj/x86_64-apple-darwin/build/riscv64-unknown-elf-gcc/build-gcc-stage2/riscv64-unknown-elf/rv64imafdc/lp64d/libgcc/../../../../../riscv-gcc/libgcc/libgcc2.c:713 (discriminator 21) + 2a: 40a7053b subw a0,a4,a0 + 2e: 8082 ret + +0000000000000030 : +sig_trampoline(): +/Users/Luppy/ox64/nuttx/arch/risc-v/src/common/crt0.c:70 + ****************************************************************************/ + +static void sig_trampoline(void) naked_function; +static void sig_trampoline(void) +{ + __asm__ __volatile__ + 30: 1141 addi sp,sp,-16 + 32: e006 sd ra,0(sp) + 34: 82aa mv t0,a0 + 36: 852e mv a0,a1 + 38: 85b2 mv a1,a2 + 3a: 8636 mv a2,a3 + 3c: 9282 jalr t0 + 3e: 6082 ld ra,0(sp) + 40: 0141 addi sp,sp,16 + 42: 451d li a0,7 + 44: 00000073 ecall + 48: 0001 nop + +000000000000004a <_start>: +_start(): +/Users/Luppy/ox64/nuttx/arch/risc-v/src/common/crt0.c:166 + * exit. + * + ****************************************************************************/ + +void _start(int argc, char *argv[]) +{ + 4a: 1141 addi sp,sp,-16 +/Users/Luppy/ox64/nuttx/arch/risc-v/src/common/crt0.c:173 + + /* Initialize the reserved area at the beginning of the .bss/.data region + * that is visible to the RTOS. + */ + + ARCH_DATA_RESERVE->ar_sigtramp = (addrenv_sigtramp_t)sig_trampoline; + 4c: 008017b7 lui a5,0x801 +/Users/Luppy/ox64/nuttx/arch/risc-v/src/common/crt0.c:166 +{ + 50: e406 sd ra,8(sp) +/Users/Luppy/ox64/nuttx/arch/risc-v/src/common/crt0.c:173 + ARCH_DATA_RESERVE->ar_sigtramp = (addrenv_sigtramp_t)sig_trampoline; + 52: 07a2 slli a5,a5,0x8 + 54: 00000717 auipc a4,0x0 54: R_RISCV_PCREL_HI20 sig_trampoline + 54: R_RISCV_RELAX *ABS* + 58: 00070713 mv a4,a4 58: R_RISCV_PCREL_LO12_I .L0 + 58: R_RISCV_RELAX *ABS* + 5c: e398 sd a4,0(a5) +/Users/Luppy/ox64/nuttx/arch/risc-v/src/common/crt0.c:187 + atexit(exec_dtors); +#endif + + /* Call the main() entry point passing argc and argv. */ + + ret = main(argc, argv); + 5e: 00000097 auipc ra,0x0 5e: R_RISCV_CALL main + 5e: R_RISCV_RELAX *ABS* + 62: 000080e7 jalr ra # 5e <_start+0x14> + +0000000000000066 <.LVL1>: +/Users/Luppy/ox64/nuttx/arch/risc-v/src/common/crt0.c:191 + + /* Call exit() if/when the main() returns */ + + exit(ret); + 66: 00000097 auipc ra,0x0 66: R_RISCV_CALL exit + 66: R_RISCV_RELAX *ABS* + 6a: 000080e7 jalr ra # 66 <.LVL1> + +000000000000006e
: +main(): +/Users/Luppy/ox64/apps/system/nsh/nsh_main.c:52 + * current console device. + * + ****************************************************************************/ + +int main(int argc, FAR char *argv[]) +{ + 6e: 7179 addi sp,sp,-48 + 70: f022 sd s0,32(sp) + 72: ec26 sd s1,24(sp) + 74: 842a mv s0,a0 + 76: 84ae mv s1,a1 +/Users/Luppy/ox64/apps/system/nsh/nsh_main.c:58 + struct sched_param param; + int ret = 0; + + /* Check the task priority that we were started with */ + + sched_getparam(0, ¶m); + 78: 4501 li a0,0 + +000000000000007a <.LVL1>: + 7a: 002c addi a1,sp,8 + +000000000000007c <.LVL2>: +/Users/Luppy/ox64/apps/system/nsh/nsh_main.c:52 +{ + 7c: f406 sd ra,40(sp) +/Users/Luppy/ox64/apps/system/nsh/nsh_main.c:58 + sched_getparam(0, ¶m); + 7e: 00000097 auipc ra,0x0 7e: R_RISCV_CALL sched_getparam + 7e: R_RISCV_RELAX *ABS* + 82: 000080e7 jalr ra # 7e <.LVL2+0x2> + +0000000000000086 <.LVL3>: +/Users/Luppy/ox64/apps/system/nsh/nsh_main.c:59 + if (param.sched_priority != CONFIG_SYSTEM_NSH_PRIORITY) + 86: 4722 lw a4,8(sp) + 88: 06400793 li a5,100 + 8c: 00f70963 beq a4,a5,9e <.L2> 8c: R_RISCV_BRANCH .L2 +/Users/Luppy/ox64/apps/system/nsh/nsh_main.c:64 + { + /* If not then set the priority to the configured priority */ + + param.sched_priority = CONFIG_SYSTEM_NSH_PRIORITY; + sched_setparam(0, ¶m); + 90: 002c addi a1,sp,8 + 92: 4501 li a0,0 +/Users/Luppy/ox64/apps/system/nsh/nsh_main.c:63 + param.sched_priority = CONFIG_SYSTEM_NSH_PRIORITY; + 94: c43e sw a5,8(sp) +/Users/Luppy/ox64/apps/system/nsh/nsh_main.c:64 + sched_setparam(0, ¶m); + 96: 00000097 auipc ra,0x0 96: R_RISCV_CALL sched_setparam + 96: R_RISCV_RELAX *ABS* + 9a: 000080e7 jalr ra # 96 <.LVL3+0x10> + +000000000000009e <.L2>: +/Users/Luppy/ox64/apps/system/nsh/nsh_main.c:69 + } + + /* Initialize the NSH library */ + + nsh_initialize(); + 9e: 00000097 auipc ra,0x0 9e: R_RISCV_CALL nsh_initialize + 9e: R_RISCV_RELAX *ABS* + a2: 000080e7 jalr ra # 9e <.L2> + +00000000000000a6 <.LVL5>: +/Users/Luppy/ox64/apps/system/nsh/nsh_main.c:74 + +#ifdef CONFIG_NSH_CONSOLE + /* If the serial console front end is selected, run it on this thread */ + + ret = nsh_consolemain(argc, argv); + a6: 85a6 mv a1,s1 + a8: 8522 mv a0,s0 + aa: 00000097 auipc ra,0x0 aa: R_RISCV_CALL nsh_consolemain + aa: R_RISCV_RELAX *ABS* + ae: 000080e7 jalr ra # aa <.LVL5+0x4> + +00000000000000b2 <.LVL6>: + b2: 862a mv a2,a0 + +00000000000000b4 <.LVL7>: +/Users/Luppy/ox64/apps/system/nsh/nsh_main.c:80 + + /* nsh_consolemain() should not return. So if we get here, something + * is wrong. + */ + + dprintf(STDERR_FILENO, "ERROR: nsh_consolemain() returned: %d\n", ret); + b4: 00000597 auipc a1,0x0 b4: R_RISCV_PCREL_HI20 .LC0 + b4: R_RISCV_RELAX *ABS* + b8: 00058593 mv a1,a1 b8: R_RISCV_PCREL_LO12_I .L0 + b8: R_RISCV_RELAX *ABS* + bc: 4509 li a0,2 + be: 00000097 auipc ra,0x0 be: R_RISCV_CALL dprintf + be: R_RISCV_RELAX *ABS* + c2: 000080e7 jalr ra # be <.LVL7+0xa> + +00000000000000c6 <.LVL8>: +/Users/Luppy/ox64/apps/system/nsh/nsh_main.c:85 + ret = 1; +#endif + + return ret; +} + c6: 70a2 ld ra,40(sp) + c8: 7402 ld s0,32(sp) + ca: 64e2 ld s1,24(sp) + +00000000000000cc <.LVL9>: + cc: 4505 li a0,1 + ce: 6145 addi sp,sp,48 + d0: 8082 ret + +00000000000000d2 : +dprintf(): +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_dprintf.c:36 +/**************************************************************************** + * Name: dprintf + ****************************************************************************/ + +int dprintf(int fd, FAR const IPTR char *fmt, ...) +{ + d2: 715d addi sp,sp,-80 + d4: f032 sd a2,32(sp) +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_dprintf.c:40 + va_list ap; + int ret; + + va_start(ap, fmt); + d6: 1010 addi a2,sp,32 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_dprintf.c:36 +{ + d8: ec06 sd ra,24(sp) + da: f436 sd a3,40(sp) + dc: f83a sd a4,48(sp) + de: fc3e sd a5,56(sp) + e0: e0c2 sd a6,64(sp) + e2: e4c6 sd a7,72(sp) +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_dprintf.c:40 + va_start(ap, fmt); + e4: e432 sd a2,8(sp) +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_dprintf.c:41 + ret = vdprintf(fd, fmt, ap); + e6: 00000097 auipc ra,0x0 e6: R_RISCV_CALL vdprintf + e6: R_RISCV_RELAX *ABS* + ea: 000080e7 jalr ra # e6 + +00000000000000ee <.LVL1>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_dprintf.c:45 + va_end(ap); + + return ret; +} + ee: 60e2 ld ra,24(sp) + f0: 6161 addi sp,sp,80 + f2: 8082 ret + +00000000000000f4 : +vdprintf(): +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_vdprintf.c:52 +/**************************************************************************** + * Public Functions + ****************************************************************************/ + +int vdprintf(int fd, FAR const IPTR char *fmt, va_list ap) +{ + f4: 7131 addi sp,sp,-192 + f6: f922 sd s0,176(sp) + f8: 842e mv s0,a1 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_vdprintf.c:59 + struct lib_rawoutstream_s rawoutstream; + struct lib_bufferedoutstream_s outstream; + + /* Wrap the fd in a stream object and let lib_vsprintf do the work. */ + + lib_rawoutstream(&rawoutstream, fd); + fa: 85aa mv a1,a0 + +00000000000000fc <.LVL1>: + fc: 0828 addi a0,sp,24 + +00000000000000fe <.LVL2>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_vdprintf.c:52 +{ + fe: fd06 sd ra,184(sp) + 100: e432 sd a2,8(sp) +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_vdprintf.c:59 + lib_rawoutstream(&rawoutstream, fd); + 102: 00000097 auipc ra,0x0 102: R_RISCV_CALL lib_rawoutstream + 102: R_RISCV_RELAX *ABS* + 106: 000080e7 jalr ra # 102 <.LVL2+0x4> + +000000000000010a <.LVL3>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_vdprintf.c:60 + lib_bufferedoutstream(&outstream, &rawoutstream.common); + 10a: 082c addi a1,sp,24 + 10c: 0088 addi a0,sp,64 + 10e: 00000097 auipc ra,0x0 10e: R_RISCV_CALL lib_bufferedoutstream + 10e: R_RISCV_RELAX *ABS* + 112: 000080e7 jalr ra # 10e <.LVL3+0x4> + +0000000000000116 <.LVL4>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_vdprintf.c:61 + ret = lib_vsprintf(&outstream.common, fmt, ap); + 116: 6622 ld a2,8(sp) + 118: 85a2 mv a1,s0 + 11a: 0088 addi a0,sp,64 + 11c: 00000097 auipc ra,0x0 11c: R_RISCV_CALL lib_vsprintf + 11c: R_RISCV_RELAX *ABS* + 120: 000080e7 jalr ra # 11c <.LVL4+0x6> + +0000000000000124 <.LVL5>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_vdprintf.c:62 + lib_stream_flush(&outstream.common); + 124: 67e6 ld a5,88(sp) +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_vdprintf.c:61 + ret = lib_vsprintf(&outstream.common, fmt, ap); + 126: 842a mv s0,a0 + +0000000000000128 <.LVL6>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_vdprintf.c:62 + lib_stream_flush(&outstream.common); + 128: 0088 addi a0,sp,64 + 12a: 9782 jalr a5 + +000000000000012c <.LVL7>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_vdprintf.c:64 + return ret; +} + 12c: 70ea ld ra,184(sp) + 12e: 8522 mv a0,s0 + 130: 744a ld s0,176(sp) + +0000000000000132 <.LVL8>: + 132: 6129 addi sp,sp,192 + +0000000000000134 <.LVL9>: + 134: 8082 ret + +0000000000000136 : +lib_vsprintf_internal(): +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1404 + * + ****************************************************************************/ + +int lib_vsprintf_internal(FAR struct lib_outstream_s *stream, + FAR const IPTR char *fmt, va_list ap) +{ + 136: 86ae mv a3,a1 + 138: 8732 mv a4,a2 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1405 + return vsprintf_internal(stream, NULL, 0, fmt, ap); + 13a: 4581 li a1,0 + +000000000000013c <.LVL1>: + 13c: 4601 li a2,0 + +000000000000013e <.LVL2>: + 13e: 00000317 auipc t1,0x0 13e: R_RISCV_CALL vsprintf_internal.constprop.0 + 13e: R_RISCV_RELAX *ABS* + 142: 00030067 jr t1 # 13e <.LVL2> + +0000000000000146 : +lib_vsprintf(): + 146: 00000317 auipc t1,0x0 146: R_RISCV_CALL lib_vsprintf_internal + 146: R_RISCV_RELAX *ABS* + 14a: 00030067 jr t1 # 146 + +000000000000014e : +vsprintf_internal(): +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:158 +static int vsprintf_internal(FAR struct lib_outstream_s *stream, + 14e: 7171 addi sp,sp,-176 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:432 + flags &= ~FL_SHORT; + 150: 6785 lui a5,0x1 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:158 +static int vsprintf_internal(FAR struct lib_outstream_s *stream, + 152: f4de sd s7,104(sp) +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:432 + flags &= ~FL_SHORT; + 154: a0078b93 addi s7,a5,-1536 # a00 <.L133+0x8> +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1232 + flags &= ~(FL_ALT | FL_ALTHEX | FL_ALTUPP); + 158: 77e9 lui a5,0xffffa + 15a: 17bd addi a5,a5,-17 + 15c: e83e sd a5,16(sp) +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1221 + if ((flags & FL_ALT) != 0 && (flags & FL_ALTHEX) == 0) + 15e: 6791 lui a5,0x4 + 160: 07c1 addi a5,a5,16 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:158 +static int vsprintf_internal(FAR struct lib_outstream_s *stream, + 162: f122 sd s0,160(sp) + 164: e54e sd s3,136(sp) + 166: e152 sd s4,128(sp) + 168: f0e2 sd s8,96(sp) + 16a: f506 sd ra,168(sp) + 16c: ed26 sd s1,152(sp) + 16e: e94a sd s2,144(sp) + 170: fcd6 sd s5,120(sp) + 172: f8da sd s6,112(sp) + 174: ece6 sd s9,88(sp) + 176: e8ea sd s10,80(sp) + 178: e4ee sd s11,72(sp) + 17a: 8c2a mv s8,a0 + 17c: 8a36 mv s4,a3 + 17e: 89ba mv s3,a4 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:184 + int total_len = 0; + 180: 4401 li s0,0 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1221 + if ((flags & FL_ALT) != 0 && (flags & FL_ALTHEX) == 0) + 182: ec3e sd a5,24(sp) + +0000000000000184 <.L4>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:194 + c = fmt_char(fmt); + 184: 000a4903 lbu s2,0(s4) + +0000000000000188 <.LVL6>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:195 + if (c == '\0') + 188: 140906e3 beqz s2,ad4 <.L5> 188: R_RISCV_BRANCH .L5 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:200 + if (c == '%') + 18c: 02500713 li a4,37 + 190: 87ca mv a5,s2 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:194 + c = fmt_char(fmt); + 192: 001a0b13 addi s6,s4,1 + +0000000000000196 <.LVL7>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:200 + if (c == '%') + 196: 00e91863 bne s2,a4,1a6 <.L7> 196: R_RISCV_BRANCH .L7 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:202 + c = fmt_char(fmt); + 19a: 001a4903 lbu s2,1(s4) + +000000000000019e <.LVL8>: + 19e: 002a0b13 addi s6,s4,2 + +00000000000001a2 <.LVL9>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:203 + if (c != '%') + 1a2: 00f91b63 bne s2,a5,1b8 <.L153> 1a2: R_RISCV_BRANCH .L153 + +00000000000001a6 <.L7>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:215 + stream_putc(c, stream); + 1a6: 008c3783 ld a5,8(s8) + 1aa: 85ca mv a1,s2 + 1ac: 8562 mv a0,s8 + 1ae: 9782 jalr a5 + +00000000000001b0 <.LVL11>: + 1b0: 2405 addiw s0,s0,1 + +00000000000001b2 <.LVL12>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:194 + c = fmt_char(fmt); + 1b2: e04e sd s3,0(sp) + 1b4: 1190006f j acc <.L244> 1b4: R_RISCV_JAL .L244 + +00000000000001b8 <.L153>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:221 + prec = 0; + 1b8: 4481 li s1,0 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:220 + width = 0; + 1ba: 4c81 li s9,0 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:219 + flags = 0; + 1bc: 4d01 li s10,0 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:225 + if (flags < FL_ASTERISK) + 1be: 03f00813 li a6,63 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:390 + if (c == 'z' || c == 't') + 1c2: 07a00593 li a1,122 + 1c6: 07400513 li a0,116 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:424 + if (c == 'j') + 1ca: 06a00313 li t1,106 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:436 + if (c == 'l') + 1ce: 06c00e13 li t3,108 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:451 + if (c == 'h') + 1d2: 06800e93 li t4,104 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:325 + if (c >= '0' && c <= '9') + 1d6: 4f25 li t5,9 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:339 + if (c == '*') + 1d8: 02a00f93 li t6,42 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:376 + if (c == '.') + 1dc: 02e00293 li t0,46 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:334 + width = 10 * width + c; + 1e0: 46a9 li a3,10 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:252 + if (flags < FL_LONG) + 1e2: 1ff00393 li t2,511 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:227 + switch (c) + 1e6: 02b00613 li a2,43 + 1ea: 02d00a13 li s4,45 + 1ee: 03000a93 li s5,48 + 1f2: 02300d93 li s11,35 + +00000000000001f6 <.L8>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:225 + if (flags < FL_ASTERISK) + 1f6: 000d071b sext.w a4,s10 + 1fa: 15a86b63 bltu a6,s10,350 <.L10> 1fa: R_RISCV_BRANCH .L10 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:227 + switch (c) + 1fe: 12c90e63 beq s2,a2,33a <.L11> 1fe: R_RISCV_BRANCH .L11 + 202: 03266763 bltu a2,s2,230 <.L12> 202: R_RISCV_BRANCH .L12 + 206: 02000793 li a5,32 + 20a: 12f90a63 beq s2,a5,33e <.L13> 20a: R_RISCV_BRANCH .L13 + 20e: 13b90e63 beq s2,s11,34a <.L14> 20e: R_RISCV_BRANCH .L14 + +0000000000000212 <.L15>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:325 + if (c >= '0' && c <= '9') + 212: fd09071b addiw a4,s2,-48 + 216: 0ff77713 zext.b a4,a4 + 21a: 16ef6563 bltu t5,a4,384 <.L19> 21a: R_RISCV_BRANCH .L19 + +000000000000021e <.LVL14>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:328 + if ((flags & FL_PREC) != 0) + 21e: 100d7913 andi s2,s10,256 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:330 + prec = 10 * prec + c; + 222: 2701 sext.w a4,a4 + +0000000000000224 <.LVL15>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:328 + if ((flags & FL_PREC) != 0) + 224: 14090963 beqz s2,376 <.L20> 224: R_RISCV_BRANCH .L20 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:330 + prec = 10 * prec + c; + 228: 029684bb mulw s1,a3,s1 + +000000000000022c <.LVL16>: + 22c: 9cb9 addw s1,s1,a4 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:331 + continue; + 22e: a039 j 23c <.L17> 22e: R_RISCV_RVC_JUMP .L17 + +0000000000000230 <.L12>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:227 + switch (c) + 230: 11490a63 beq s2,s4,344 <.L16> 230: R_RISCV_BRANCH .L16 + 234: fd591fe3 bne s2,s5,212 <.L15> 234: R_RISCV_BRANCH .L15 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:230 + flags |= FL_ZFILL; + 238: 001d6d13 ori s10,s10,1 + +000000000000023c <.L17>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:468 + while ((c = fmt_char(fmt)) != 0); + 23c: 000b4903 lbu s2,0(s6) + 240: 0b05 addi s6,s6,1 + +0000000000000242 <.LVL19>: + 242: fa091ae3 bnez s2,1f6 <.L8> 242: R_RISCV_BRANCH .L8 + +0000000000000246 <.L33>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:905 + buf[0] = va_arg(ap, int); + 246: 00898793 addi a5,s3,8 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:551 + if (c >= 'E' && c <= 'G') + 24a: fbb9071b addiw a4,s2,-69 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:905 + buf[0] = va_arg(ap, int); + 24e: e03e sd a5,0(sp) +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:551 + if (c >= 'E' && c <= 'G') + 250: 0ff77713 zext.b a4,a4 + 254: 4689 li a3,2 + 256: 1ee6e063 bltu a3,a4,436 <.L34> 256: R_RISCV_BRANCH .L34 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:553 + flags |= FL_FLTUPP; + 25a: 6709 lui a4,0x2 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:554 + c += 'e' - 'E'; + 25c: 0209091b addiw s2,s2,32 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:553 + flags |= FL_FLTUPP; + 260: 00ed6d33 or s10,s10,a4 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:554 + c += 'e' - 'E'; + 264: 0ff97913 zext.b s2,s2 + +0000000000000268 <.L35>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:571 + if ((flags & FL_PREC) == 0) + 268: 100d7713 andi a4,s10,256 + 26c: e311 bnez a4,270 <.L37> 26c: R_RISCV_RVC_BRANCH .L37 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:573 + prec = 6; + 26e: 4499 li s1,6 + +0000000000000270 <.L37>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:578 + if (c == 'e') + 270: 06500693 li a3,101 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:580 + ndigs = prec + 1; + 274: 0ff4f713 zext.b a4,s1 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:578 + if (c == 'e') + 278: 20d91363 bne s2,a3,47e <.L38> 278: R_RISCV_BRANCH .L38 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:580 + ndigs = prec + 1; + 27c: 2705 addiw a4,a4,1 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:582 + flags |= FL_FLTEXP; + 27e: 6691 lui a3,0x4 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:580 + ndigs = prec + 1; + 280: 0ff77713 zext.b a4,a4 + +0000000000000284 <.LVL24>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:582 + flags |= FL_FLTEXP; + 284: 00dd6d33 or s10,s10,a3 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:581 + ndecimal = 0; + 288: 4601 li a2,0 + +000000000000028a <.L39>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:614 + ndigs = __dtoa_engine(value, &_dtoa, ndigs, + 28a: 46bd li a3,15 + 28c: 2601 sext.w a2,a2 + +000000000000028e <.LVL27>: + 28e: 0ff77593 zext.b a1,a4 + 292: 00e6f363 bgeu a3,a4,298 <.L40> 292: R_RISCV_BRANCH .L40 + 296: 45bd li a1,15 + +0000000000000298 <.L40>: + 298: 0009b507 fld fa0,0(s3) + 29c: 02810d93 addi s11,sp,40 + 2a0: 856e mv a0,s11 + 2a2: 00000097 auipc ra,0x0 2a2: R_RISCV_CALL __dtoa_engine + 2a2: R_RISCV_RELAX *ABS* + 2a6: 000080e7 jalr ra # 2a2 <.L40+0xa> + +00000000000002aa <.LVL28>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:619 + if (_dtoa.flags & DTOA_MINUS) + 2aa: 02c14703 lbu a4,44(sp) + 2ae: 00177993 andi s3,a4,1 + +00000000000002b2 <.LVL29>: + 2b2: 1e099163 bnez s3,494 <.L155> 2b2: R_RISCV_BRANCH .L155 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:623 + else if ((flags & FL_PLUS) != 0) + 2b6: 002d7613 andi a2,s10,2 + 2ba: 1e061063 bnez a2,49a <.L156> 2ba: R_RISCV_BRANCH .L156 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:627 + else if ((flags & FL_SPACE) != 0) + 2be: 004d7613 andi a2,s10,4 + 2c2: c219 beqz a2,2c8 <.L41> 2c2: R_RISCV_RVC_BRANCH .L41 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:629 + sign = ' '; + 2c4: 02000993 li s3,32 + +00000000000002c8 <.L41>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:632 + if (_dtoa.flags & (DTOA_NAN | DTOA_INF)) + 2c8: 8b31 andi a4,a4,12 + 2ca: 1e070663 beqz a4,4b6 <.L42> 2ca: R_RISCV_BRANCH .L42 + +00000000000002ce <.LBB11>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:636 + ndigs = sign ? 4 : 3; + 2ce: 013034b3 snez s1,s3 + +00000000000002d2 <.LVL31>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:637 + if (width > ndigs) + 2d2: 048d addi s1,s1,3 + +00000000000002d4 <.LVL32>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:651 + width = 0; + 2d4: 4901 li s2,0 + +00000000000002d6 <.LVL33>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:637 + if (width > ndigs) + 2d6: 0394d263 bge s1,s9,2fa <.L44> 2d6: R_RISCV_BRANCH .L44 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:639 + width -= ndigs; + 2da: 409c893b subw s2,s9,s1 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:640 + if ((flags & FL_LPAD) == 0) + 2de: 008d7713 andi a4,s10,8 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:639 + width -= ndigs; + 2e2: 84ca mv s1,s2 + +00000000000002e4 <.LVL34>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:640 + if ((flags & FL_LPAD) == 0) + 2e4: eb19 bnez a4,2fa <.L44> 2e4: R_RISCV_RVC_BRANCH .L44 + +00000000000002e6 <.L45>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:644 + stream_putc(' ', stream); + 2e6: 008c3703 ld a4,8(s8) + 2ea: 02000593 li a1,32 + 2ee: 8562 mv a0,s8 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:646 + while (--width); + 2f0: 397d addiw s2,s2,-1 + +00000000000002f2 <.LVL36>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:644 + stream_putc(' ', stream); + 2f2: 9702 jalr a4 + +00000000000002f4 <.LVL37>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:646 + while (--width); + 2f4: fe0919e3 bnez s2,2e6 <.L45> 2f4: R_RISCV_BRANCH .L45 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:644 + stream_putc(' ', stream); + 2f8: 9c25 addw s0,s0,s1 + +00000000000002fa <.L44>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:654 + if (sign) + 2fa: 00098863 beqz s3,30a <.L46> 2fa: R_RISCV_BRANCH .L46 + +00000000000002fe <.LVL39>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:656 + stream_putc(sign, stream); + 2fe: 008c3703 ld a4,8(s8) + 302: 85ce mv a1,s3 + 304: 8562 mv a0,s8 + 306: 2405 addiw s0,s0,1 + +0000000000000308 <.LVL40>: + 308: 9702 jalr a4 + +000000000000030a <.L46>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:660 + if (_dtoa.flags & DTOA_NAN) + 30a: 02c14703 lbu a4,44(sp) +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:659 + p = "inf"; + 30e: 00000497 auipc s1,0x0 30e: R_RISCV_PCREL_HI20 .LC0 + 30e: R_RISCV_RELAX *ABS* + 312: 00048493 mv s1,s1 312: R_RISCV_PCREL_LO12_I .L0 + 312: R_RISCV_RELAX *ABS* +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:660 + if (_dtoa.flags & DTOA_NAN) + 316: 8b21 andi a4,a4,8 + 318: c709 beqz a4,322 <.L47> 318: R_RISCV_RVC_BRANCH .L47 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:662 + p = "nan"; + 31a: 00000497 auipc s1,0x0 31a: R_RISCV_PCREL_HI20 .LC1 + 31a: R_RISCV_RELAX *ABS* + 31e: 00048493 mv s1,s1 31e: R_RISCV_PCREL_LO12_I .L0 + 31e: R_RISCV_RELAX *ABS* + +0000000000000322 <.L47>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:670 + if ((flags & FL_FLTUPP) != 0) + 322: 6a09 lui s4,0x2 + 324: 9c05 subw s0,s0,s1 + 326: 014d7a33 and s4,s10,s4 + +000000000000032a <.L48>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:668 + while ((ndigs = *p) != 0) + 32a: 0004c583 lbu a1,0(s1) # 31a <.L46+0x10> + 32e: 009409bb addw s3,s0,s1 + +0000000000000332 <.LVL44>: + 332: 16059763 bnez a1,4a0 <.L50> 332: R_RISCV_BRANCH .L50 + +0000000000000336 <.L51>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1304 +tail: + 336: 844a mv s0,s2 + 338: a779 j ac6 <.L150> 338: R_RISCV_RVC_JUMP .L150 + +000000000000033a <.L11>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:234 + flags |= FL_PLUS; + 33a: 002d6d13 ori s10,s10,2 + +000000000000033e <.L13>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:239 + flags |= FL_SPACE; + 33e: 004d6d13 ori s10,s10,4 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:240 + continue; + 342: bded j 23c <.L17> 342: R_RISCV_RVC_JUMP .L17 + +0000000000000344 <.L16>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:243 + flags |= FL_LPAD; + 344: 008d6d13 ori s10,s10,8 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:244 + continue; + 348: bdd5 j 23c <.L17> 348: R_RISCV_RVC_JUMP .L17 + +000000000000034a <.L14>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:247 + flags |= FL_ALT; + 34a: 010d6d13 ori s10,s10,16 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:248 + continue; + 34e: b5fd j 23c <.L17> 34e: R_RISCV_RVC_JUMP .L17 + +0000000000000350 <.L10>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:252 + if (flags < FL_LONG) + 350: ece3f1e3 bgeu t2,a4,212 <.L15> 350: R_RISCV_BRANCH .L15 + +0000000000000354 <.L18>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:390 + if (c == 'z' || c == 't') + 354: 06b90d63 beq s2,a1,3ce <.L25> 354: R_RISCV_BRANCH .L25 + 358: 06a90b63 beq s2,a0,3ce <.L25> 358: R_RISCV_BRANCH .L25 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:424 + if (c == 'j') + 35c: 06691763 bne s2,t1,3ca <.L26> 35c: R_RISCV_BRANCH .L26 + +0000000000000360 <.LVL51>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:432 + flags &= ~FL_SHORT; + 360: bffd7793 andi a5,s10,-1025 + 364: 17c2 slli a5,a5,0x30 + 366: 93c1 srli a5,a5,0x30 + 368: 0177e7b3 or a5,a5,s7 + +000000000000036c <.L245>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:462 + flags &= ~FL_LONG; + 36c: 03079d13 slli s10,a5,0x30 + 370: 030d5d13 srli s10,s10,0x30 + +0000000000000374 <.LVL53>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:463 + continue; + 374: b5e1 j 23c <.L17> 374: R_RISCV_RVC_JUMP .L17 + +0000000000000376 <.L20>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:334 + width = 10 * width + c; + 376: 039688bb mulw a7,a3,s9 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:335 + flags |= FL_WIDTH; + 37a: 080d6d13 ori s10,s10,128 + +000000000000037e <.LVL54>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:334 + width = 10 * width + c; + 37e: 00e88cbb addw s9,a7,a4 + +0000000000000382 <.LVL55>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:336 + continue; + 382: bd6d j 23c <.L17> 382: R_RISCV_RVC_JUMP .L17 + +0000000000000384 <.L19>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:339 + if (c == '*') + 384: 03f91a63 bne s2,t6,3b8 <.L21> 384: R_RISCV_BRANCH .L21 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:353 + if ((flags & FL_PREC) != 0) + 388: 100d7913 andi s2,s10,256 + +000000000000038c <.LVL57>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:355 + prec = va_arg(ap, int); + 38c: 0009a703 lw a4,0(s3) + 390: 09a1 addi s3,s3,8 + +0000000000000392 <.LVL58>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:353 + if ((flags & FL_PREC) != 0) + 392: 00090863 beqz s2,3a2 <.L22> 392: R_RISCV_BRANCH .L22 + +0000000000000396 <.LVL59>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:356 + if (prec < 0) + 396: 0007049b sext.w s1,a4 + 39a: ea0751e3 bgez a4,23c <.L17> 39a: R_RISCV_BRANCH .L17 + 39e: 4481 li s1,0 + 3a0: bd71 j 23c <.L17> 3a0: R_RISCV_RVC_JUMP .L17 + +00000000000003a2 <.L22>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:366 + if (width < 0) + 3a2: 00074663 bltz a4,3ae <.L24> 3a2: R_RISCV_BRANCH .L24 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:364 + flags |= FL_WIDTH; + 3a6: 080d6d13 ori s10,s10,128 + +00000000000003aa <.LVL61>: + 3aa: 8cba mv s9,a4 + 3ac: bd41 j 23c <.L17> 3ac: R_RISCV_RVC_JUMP .L17 + +00000000000003ae <.L24>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:368 + width = -width; + 3ae: 40e00cbb negw s9,a4 + +00000000000003b2 <.LVL63>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:369 + flags |= FL_LPAD; + 3b2: 088d6d13 ori s10,s10,136 + +00000000000003b6 <.LVL64>: + 3b6: b559 j 23c <.L17> 3b6: R_RISCV_RVC_JUMP .L17 + +00000000000003b8 <.L21>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:376 + if (c == '.') + 3b8: f8591ee3 bne s2,t0,354 <.L18> 3b8: R_RISCV_BRANCH .L18 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:378 + if ((flags & FL_PREC) != 0) + 3bc: 100d7713 andi a4,s10,256 + 3c0: 70071a63 bnez a4,ad4 <.L5> 3c0: R_RISCV_BRANCH .L5 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:383 + flags |= FL_PREC; + 3c4: 100d6d13 ori s10,s10,256 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:384 + continue; + 3c8: bd95 j 23c <.L17> 3c8: R_RISCV_RVC_JUMP .L17 + +00000000000003ca <.L26>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:436 + if (c == 'l') + 3ca: 03c91363 bne s2,t3,3f0 <.L27> 3ca: R_RISCV_BRANCH .L27 + +00000000000003ce <.L25>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:438 + if ((flags & FL_LONG) != 0) + 3ce: 200d7913 andi s2,s10,512 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:444 + flags |= FL_LONG; + 3d2: 200d6713 ori a4,s10,512 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:438 + if ((flags & FL_LONG) != 0) + 3d6: 00090a63 beqz s2,3ea <.L29> 3d6: R_RISCV_BRANCH .L29 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:440 + flags |= FL_REPD_TYPE; + 3da: 6785 lui a5,0x1 + 3dc: 80078793 addi a5,a5,-2048 # 800 <.L111+0xc> + 3e0: 00fd67b3 or a5,s10,a5 + 3e4: 03079713 slli a4,a5,0x30 + 3e8: 9341 srli a4,a4,0x30 + +00000000000003ea <.L29>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:447 + flags &= ~FL_SHORT; + 3ea: bff77793 andi a5,a4,-1025 + 3ee: bfbd j 36c <.L245> 3ee: R_RISCV_RVC_JUMP .L245 + +00000000000003f0 <.L27>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:451 + if (c == 'h') + 3f0: 03d91363 bne s2,t4,416 <.L30> 3f0: R_RISCV_BRANCH .L30 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:453 + if ((flags & FL_SHORT) != 0) + 3f4: 400d7913 andi s2,s10,1024 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:459 + flags |= FL_SHORT; + 3f8: 400d6713 ori a4,s10,1024 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:453 + if ((flags & FL_SHORT) != 0) + 3fc: 00090a63 beqz s2,410 <.L32> 3fc: R_RISCV_BRANCH .L32 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:455 + flags |= FL_REPD_TYPE; + 400: 6785 lui a5,0x1 + 402: 80078793 addi a5,a5,-2048 # 800 <.L111+0xc> + 406: 00fd67b3 or a5,s10,a5 + 40a: 03079713 slli a4,a5,0x30 + 40e: 9341 srli a4,a4,0x30 + +0000000000000410 <.L32>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:462 + flags &= ~FL_LONG; + 410: dff77793 andi a5,a4,-513 + 414: bfa1 j 36c <.L245> 414: R_RISCV_RVC_JUMP .L245 + +0000000000000416 <.L30>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:476 + if (c == 'p') + 416: 07000713 li a4,112 + 41a: e2e916e3 bne s2,a4,246 <.L33> 41a: R_RISCV_BRANCH .L33 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:480 + flags &= ~(FL_LONG | FL_REPD_TYPE); + 41e: 777d lui a4,0xfffff + 420: 5ff70713 addi a4,a4,1535 # fffffffffffff5ff <.Ldebug_info0+0xfffffffffffc953a> + 424: 00ed77b3 and a5,s10,a4 + +0000000000000428 <.LVL72>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:485 + flags |= (FL_LONG | FL_REPD_TYPE); + 428: 0177e7b3 or a5,a5,s7 + +000000000000042c <.LVL73>: + 42c: 03079d13 slli s10,a5,0x30 + +0000000000000430 <.LVL74>: + 430: 030d5d13 srli s10,s10,0x30 + +0000000000000434 <.LVL75>: + 434: bd09 j 246 <.L33> 434: R_RISCV_RVC_JUMP .L33 + +0000000000000436 <.L34>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:557 + else if (c >= 'e' && c <= 'g') + 436: f9b9071b addiw a4,s2,-101 + 43a: 0ff77713 zext.b a4,a4 + 43e: e2e6f5e3 bgeu a3,a4,268 <.L35> 43e: R_RISCV_BRANCH .L35 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:892 + switch (c) + 442: 06300713 li a4,99 + 446: 2ee90c63 beq s2,a4,73e <.L93> 446: R_RISCV_BRANCH .L93 + 44a: 0df97713 andi a4,s2,223 + 44e: 05300693 li a3,83 + 452: 34d71363 bne a4,a3,798 <.L241> 452: R_RISCV_BRANCH .L241 + +0000000000000456 <.LVL77>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:923 + pnt = va_arg(ap, FAR char *); + 456: 0009ba03 ld s4,0(s3) +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:925 + if (pnt == NULL) + 45a: 000a1663 bnez s4,466 <.L97> 45a: R_RISCV_BRANCH .L97 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:927 + pnt = g_nullstring; + 45e: 00000a17 auipc s4,0x0 45e: R_RISCV_PCREL_HI20 .LANCHOR0 + 45e: R_RISCV_RELAX *ABS* + 462: 000a0a13 mv s4,s4 462: R_RISCV_PCREL_LO12_I .L0 + 462: R_RISCV_RELAX *ABS* + +0000000000000466 <.L97>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:930 + size = strnlen(pnt, (flags & FL_PREC) ? prec : ~0); + 466: 100d7713 andi a4,s10,256 + 46a: 55fd li a1,-1 + 46c: c311 beqz a4,470 <.L98> 46c: R_RISCV_RVC_BRANCH .L98 + 46e: 85a6 mv a1,s1 + +0000000000000470 <.L98>: + 470: 8552 mv a0,s4 + 472: 00000097 auipc ra,0x0 472: R_RISCV_CALL strnlen + 472: R_RISCV_RELAX *ABS* + 476: 000080e7 jalr ra # 472 <.L98+0x2> + +000000000000047a <.LVL79>: + 47a: 84aa mv s1,a0 + +000000000000047c <.LVL80>: + 47c: acc1 j 74c <.L96> 47c: R_RISCV_RVC_JUMP .L96 + +000000000000047e <.L38>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:584 + else if (c == 'f') + 47e: 06600693 li a3,102 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:593 + ndecimal = 0; + 482: 4601 li a2,0 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:584 + else if (c == 'f') + 484: e0d913e3 bne s2,a3,28a <.L39> 484: R_RISCV_BRANCH .L39 + +0000000000000488 <.LVL82>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:588 + flags |= FL_FLTFIX; + 488: 66a1 lui a3,0x8 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:587 + ndecimal = prec; + 48a: 863a mv a2,a4 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:588 + flags |= FL_FLTFIX; + 48c: 00dd6d33 or s10,s10,a3 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:586 + ndigs = DTOA_MAX_DIG; + 490: 473d li a4,15 + 492: bbe5 j 28a <.L39> 492: R_RISCV_RVC_JUMP .L39 + +0000000000000494 <.L155>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:621 + sign = '-'; + 494: 02d00993 li s3,45 + 498: bd05 j 2c8 <.L41> 498: R_RISCV_RVC_JUMP .L41 + +000000000000049a <.L156>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:625 + sign = '+'; + 49a: 02b00993 li s3,43 + 49e: b52d j 2c8 <.L41> 49e: R_RISCV_RVC_JUMP .L41 + +00000000000004a0 <.L50>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:670 + if ((flags & FL_FLTUPP) != 0) + 4a0: 000a0563 beqz s4,4aa <.L49> 4a0: R_RISCV_BRANCH .L49 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:672 + ndigs += 'I' - 'i'; + 4a4: 3581 addiw a1,a1,-32 + +00000000000004a6 <.LVL86>: + 4a6: 0ff5f593 zext.b a1,a1 + +00000000000004aa <.L49>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:675 + stream_putc(ndigs, stream); + 4aa: 008c3783 ld a5,8(s8) + 4ae: 8562 mv a0,s8 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:676 + p++; + 4b0: 0485 addi s1,s1,1 + +00000000000004b2 <.LVL88>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:675 + stream_putc(ndigs, stream); + 4b2: 9782 jalr a5 + +00000000000004b4 <.LVL89>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:676 + p++; + 4b4: bd9d j 32a <.L48> 4b4: R_RISCV_RVC_JUMP .L48 + +00000000000004b6 <.L42>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:682 + if ((flags & (FL_FLTEXP | FL_FLTFIX)) == 0) + 4b6: 7771 lui a4,0xffffc + 4b8: 00ed7733 and a4,s10,a4 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:616 + exp = _dtoa.exp; + 4bc: 5a22 lw s4,40(sp) +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:614 + ndigs = __dtoa_engine(value, &_dtoa, ndigs, + 4be: 0ff57a93 zext.b s5,a0 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:682 + if ((flags & (FL_FLTEXP | FL_FLTFIX)) == 0) + 4c2: e329 bnez a4,504 <.L52> 4c2: R_RISCV_RVC_BRANCH .L52 + +00000000000004c4 <.LVL91>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:690 + while (ndigs > 0 && _dtoa.digits[ndigs - 1] == '0') + 4c4: 015d8733 add a4,s11,s5 + 4c8: 03000613 li a2,48 + +00000000000004cc <.L53>: + 4cc: 000a8763 beqz s5,4da <.L54> 4cc: R_RISCV_BRANCH .L54 + 4d0: 00474583 lbu a1,4(a4) # ffffffffffffc004 <.Ldebug_info0+0xfffffffffffc5f3f> + 4d4: 177d addi a4,a4,-1 + 4d6: 06c58563 beq a1,a2,540 <.L55> 4d6: R_RISCV_BRANCH .L55 + +00000000000004da <.L54>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:695 + if (-4 <= exp && exp < prec) + 4da: 5671 li a2,-4 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:699 + if (exp < 0 || ndigs > exp) + 4dc: 000a871b sext.w a4,s5 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:695 + if (-4 <= exp && exp < prec) + 4e0: 06ca4463 blt s4,a2,548 <.L56> 4e0: R_RISCV_BRANCH .L56 + 4e4: 0ff57513 zext.b a0,a0 + +00000000000004e8 <.LVL93>: + 4e8: 06aa5063 bge s4,a0,548 <.L56> 4e8: R_RISCV_BRANCH .L56 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:697 + flags |= FL_FLTFIX; + 4ec: 6621 lui a2,0x8 + 4ee: 00cd6d33 or s10,s10,a2 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:699 + if (exp < 0 || ndigs > exp) + 4f2: 000a4563 bltz s4,4fc <.L57> 4f2: R_RISCV_BRANCH .L57 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:705 + prec = 0; + 4f6: 4481 li s1,0 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:699 + if (exp < 0 || ndigs > exp) + 4f8: 00ea5663 bge s4,a4,504 <.L52> 4f8: R_RISCV_BRANCH .L52 + +00000000000004fc <.L57>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:701 + prec = ndigs - (exp + 1); + 4fc: 001a049b addiw s1,s4,1 + 500: 409704bb subw s1,a4,s1 + +0000000000000504 <.L52>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:718 + if ((flags & FL_FLTFIX) != 0) + 504: 010d179b slliw a5,s10,0x10 + 508: 4107d79b sraiw a5,a5,0x10 + 50c: e43e sd a5,8(sp) +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:724 + n = 5; /* 1e+00 */ + 50e: 4715 li a4,5 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:718 + if ((flags & FL_FLTFIX) != 0) + 510: 0007d763 bgez a5,51e <.L58> 510: R_RISCV_BRANCH .L58 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:720 + n = (exp > 0 ? exp + 1 : 1); + 514: 8752 mv a4,s4 + 516: 000a5363 bgez s4,51c <.L59> 516: R_RISCV_BRANCH .L59 + 51a: 4701 li a4,0 + +000000000000051c <.L59>: + 51c: 2705 addiw a4,a4,1 + +000000000000051e <.L58>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:727 + if (sign != 0) + 51e: 00098363 beqz s3,524 <.L60> 51e: R_RISCV_BRANCH .L60 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:729 + n += 1; + 522: 2705 addiw a4,a4,1 + +0000000000000524 <.L60>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:732 + if (prec != 0) + 524: c48d beqz s1,54e <.L61> 524: R_RISCV_RVC_BRANCH .L61 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:734 + n += prec + 1; + 526: 0014861b addiw a2,s1,1 + 52a: 9f31 addw a4,a4,a2 + +000000000000052c <.L62>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:741 + width = width > n ? width - n : 0; + 52c: 4901 li s2,0 + +000000000000052e <.LVL99>: + 52e: 01975463 bge a4,s9,536 <.L63> 52e: R_RISCV_BRANCH .L63 + 532: 40ec893b subw s2,s9,a4 + +0000000000000536 <.L63>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:745 + if ((flags & (FL_LPAD | FL_ZFILL)) == 0) + 536: 009d7713 andi a4,s10,9 + +000000000000053a <.LVL101>: + 53a: eb1d bnez a4,570 <.L65> 53a: R_RISCV_RVC_BRANCH .L65 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:741 + width = width > n ? width - n : 0; + 53c: 8cca mv s9,s2 + 53e: a015 j 562 <.L64> 53e: R_RISCV_RVC_JUMP .L64 + +0000000000000540 <.L55>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:692 + ndigs--; + 540: 3afd addiw s5,s5,-1 + +0000000000000542 <.LVL103>: + 542: 0ffafa93 zext.b s5,s5 + +0000000000000546 <.LVL104>: + 546: b759 j 4cc <.L53> 546: R_RISCV_RVC_JUMP .L53 + +0000000000000548 <.L56>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:712 + prec = ndigs - 1; + 548: fff7049b addiw s1,a4,-1 + +000000000000054c <.LVL106>: + 54c: bf65 j 504 <.L52> 54c: R_RISCV_RVC_JUMP .L52 + +000000000000054e <.L61>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:736 + else if ((flags & FL_ALT) != 0) + 54e: 010d7613 andi a2,s10,16 + 552: de69 beqz a2,52c <.L62> 552: R_RISCV_RVC_BRANCH .L62 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:738 + n += 1; + 554: 2705 addiw a4,a4,1 + +0000000000000556 <.LVL108>: + 556: bfd9 j 52c <.L62> 556: R_RISCV_RVC_JUMP .L62 + +0000000000000558 <.L66>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:749 + stream_putc(' ', stream); + 558: 02000593 li a1,32 + 55c: 8562 mv a0,s8 + 55e: 9602 jalr a2 + +0000000000000560 <.LVL110>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:750 + width--; + 560: 3cfd addiw s9,s9,-1 + +0000000000000562 <.L64>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:749 + stream_putc(' ', stream); + 562: 008c3603 ld a2,8(s8) +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:747 + while (width) + 566: fe0c99e3 bnez s9,558 <.L66> 566: R_RISCV_BRANCH .L66 + +000000000000056a <.LVL112>: + 56a: 0124043b addw s0,s0,s2 + 56e: 4901 li s2,0 + +0000000000000570 <.L65>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:754 + if (sign != 0) + 570: 00098863 beqz s3,580 <.L67> 570: R_RISCV_BRANCH .L67 + +0000000000000574 <.LVL114>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:756 + stream_putc(sign, stream); + 574: 008c3703 ld a4,8(s8) + 578: 85ce mv a1,s3 + 57a: 8562 mv a0,s8 + 57c: 2405 addiw s0,s0,1 + +000000000000057e <.LVL115>: + 57e: 9702 jalr a4 + +0000000000000580 <.L67>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:759 + if ((flags & FL_LPAD) == 0) + 580: 008d7713 andi a4,s10,8 + 584: ef19 bnez a4,5a2 <.L69> 584: R_RISCV_RVC_BRANCH .L69 + 586: 8cca mv s9,s2 + 588: a031 j 594 <.L68> 588: R_RISCV_RVC_JUMP .L68 + +000000000000058a <.L70>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:763 + stream_putc('0', stream); + 58a: 03000593 li a1,48 + 58e: 8562 mv a0,s8 + 590: 9682 jalr a3 + +0000000000000592 <.LVL118>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:764 + width--; + 592: 3cfd addiw s9,s9,-1 + +0000000000000594 <.L68>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:763 + stream_putc('0', stream); + 594: 008c3683 ld a3,8(s8) +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:761 + while (width) + 598: fe0c99e3 bnez s9,58a <.L70> 598: R_RISCV_BRANCH .L70 + 59c: 0089043b addw s0,s2,s0 + 5a0: 4901 li s2,0 + +00000000000005a2 <.L69>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:768 + if ((flags & FL_FLTFIX) != 0) + 5a2: 67a2 ld a5,8(sp) + 5a4: 0807df63 bgez a5,642 <.L71> 5a4: R_RISCV_BRANCH .L71 + +00000000000005a8 <.LBB13>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:780 + n = exp > 0 ? exp : 0; /* Exponent of left digit */ + 5a8: 8752 mv a4,s4 + 5aa: 000a5363 bgez s4,5b0 <.L72> 5aa: R_RISCV_BRANCH .L72 + 5ae: 4701 li a4,0 + +00000000000005b0 <.L72>: + 5b0: 00070c9b sext.w s9,a4 + +00000000000005b4 <.LVL121>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:785 + if (n == -1) + 5b4: 40ea073b subw a4,s4,a4 + +00000000000005b8 <.LVL122>: + 5b8: 9dba add s11,s11,a4 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:792 + if (0 <= exp - n && exp - n < ndigs) + 5ba: 2a81 sext.w s5,s5 + +00000000000005bc <.LVL123>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:801 + if (--n < -prec) + 5bc: 409004bb negw s1,s1 + +00000000000005c0 <.L73>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:792 + if (0 <= exp - n && exp - n < ndigs) + 5c0: 419a063b subw a2,s4,s9 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:798 + out = '0'; + 5c4: 03000593 li a1,48 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:792 + if (0 <= exp - n && exp - n < ndigs) + 5c8: 01567463 bgeu a2,s5,5d0 <.L74> 5c8: R_RISCV_BRANCH .L74 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:794 + out = _dtoa.digits[exp - n]; + 5cc: 005dc583 lbu a1,5(s11) + +00000000000005d0 <.L74>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:801 + if (--n < -prec) + 5d0: 3cfd addiw s9,s9,-1 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:806 + stream_putc(out, stream); + 5d2: 008c3603 ld a2,8(s8) + 5d6: 0014099b addiw s3,s0,1 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:801 + if (--n < -prec) + 5da: 029cc263 blt s9,s1,5fe <.L75> 5da: R_RISCV_BRANCH .L75 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:806 + stream_putc(out, stream); + 5de: 8562 mv a0,s8 + 5e0: 9602 jalr a2 + +00000000000005e2 <.LVL126>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:785 + if (n == -1) + 5e2: 57fd li a5,-1 + 5e4: 00fc9a63 bne s9,a5,5f8 <.L77> 5e4: R_RISCV_BRANCH .L77 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:787 + stream_putc('.', stream); + 5e8: 008c3603 ld a2,8(s8) + 5ec: 02e00593 li a1,46 + 5f0: 8562 mv a0,s8 + 5f2: 0024099b addiw s3,s0,2 + +00000000000005f6 <.LVL127>: + 5f6: 9602 jalr a2 + +00000000000005f8 <.L77>: + 5f8: 0d85 addi s11,s11,1 + +00000000000005fa <.LBE13>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:761 + while (width) + 5fa: 844e mv s0,s3 + 5fc: b7d1 j 5c0 <.L73> 5fc: R_RISCV_RVC_JUMP .L73 + +00000000000005fe <.L75>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:810 + if (n == exp && (_dtoa.digits[0] > '5' || + 5fe: 039a1063 bne s4,s9,61e <.L78> 5fe: R_RISCV_BRANCH .L78 + 602: 02d14503 lbu a0,45(sp) + 606: 03500713 li a4,53 + 60a: 00a76863 bltu a4,a0,61a <.L166> 60a: R_RISCV_BRANCH .L166 + 60e: 00e51863 bne a0,a4,61e <.L78> 60e: R_RISCV_BRANCH .L78 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:811 + (_dtoa.digits[0] == '5' && !(_dtoa.flags & DTOA_CARRY)))) + 612: 02c14703 lbu a4,44(sp) + 616: 8b41 andi a4,a4,16 + 618: e319 bnez a4,61e <.L78> 618: R_RISCV_RVC_BRANCH .L78 + +000000000000061a <.L166>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:813 + out = '1'; + 61a: 03100593 li a1,49 + +000000000000061e <.L78>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:816 + stream_putc(out, stream); + 61e: 8562 mv a0,s8 + 620: 9602 jalr a2 + +0000000000000622 <.LVL131>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:818 + if ((flags & FL_ALT) != 0 && n == -1) + 622: 010d7793 andi a5,s10,16 + 626: d00788e3 beqz a5,336 <.L51> 626: R_RISCV_BRANCH .L51 + 62a: 57fd li a5,-1 + 62c: d0fc95e3 bne s9,a5,336 <.L51> 62c: R_RISCV_BRANCH .L51 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:820 + stream_putc('.', stream); + 630: 008c3783 ld a5,8(s8) + 634: 02e00593 li a1,46 + 638: 8562 mv a0,s8 + 63a: 0024099b addiw s3,s0,2 + +000000000000063e <.LVL132>: + 63e: 9782 jalr a5 + +0000000000000640 <.LVL133>: + 640: b9dd j 336 <.L51> 640: R_RISCV_RVC_JUMP .L51 + +0000000000000642 <.L71>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:830 + if (_dtoa.digits[0] != '1') + 642: 02d14583 lbu a1,45(sp) + 646: 03100713 li a4,49 + 64a: 00e58763 beq a1,a4,658 <.L79> 64a: R_RISCV_BRANCH .L79 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:832 + _dtoa.flags &= ~DTOA_CARRY; + 64e: 02c14703 lbu a4,44(sp) + 652: 9b3d andi a4,a4,-17 + 654: 02e10623 sb a4,44(sp) + +0000000000000658 <.L79>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:835 + stream_putc(_dtoa.digits[0], stream); + 658: 008c3703 ld a4,8(s8) + 65c: 8562 mv a0,s8 + 65e: 9702 jalr a4 + +0000000000000660 <.LVL135>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:836 + if (prec > 0) + 660: 008c3703 ld a4,8(s8) + 664: 0a905263 blez s1,708 <.L80> 664: R_RISCV_BRANCH .L80 + +0000000000000668 <.LBB15>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:840 + stream_putc('.', stream); + 668: 02e00593 li a1,46 + 66c: 8562 mv a0,s8 + 66e: 2409 addiw s0,s0,2 + 670: 9702 jalr a4 + +0000000000000672 <.LVL136>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:841 + for (pos = 1; pos < 1 + prec; pos++) + 672: 4985 li s3,1 + +0000000000000674 <.L81>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:843 + stream_putc(pos < ndigs ? _dtoa.digits[pos] : '0', + 674: 008c3683 ld a3,8(s8) +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:841 + for (pos = 1; pos < 1 + prec; pos++) + 678: 0009871b sext.w a4,s3 + 67c: 0734d763 bge s1,s3,6ea <.L83> 67c: R_RISCV_BRANCH .L83 + +0000000000000680 <.L84>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:854 + stream_putc(flags & FL_FLTUPP ? 'E' : 'e', stream); + 680: 6709 lui a4,0x2 + 682: 00ed77b3 and a5,s10,a4 + 686: 008c3683 ld a3,8(s8) + 68a: 04500593 li a1,69 + 68e: e399 bnez a5,694 <.L86> 68e: R_RISCV_RVC_BRANCH .L86 + 690: 06500593 li a1,101 + +0000000000000694 <.L86>: + 694: 8562 mv a0,s8 + 696: 9682 jalr a3 + +0000000000000698 <.LVL139>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:856 + if (exp < 0 || (exp == 0 && (_dtoa.flags & DTOA_CARRY) != 0)) + 698: 000a4a63 bltz s4,6ac <.L87> 698: R_RISCV_BRANCH .L87 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:855 + ndigs = '+'; + 69c: 02b00593 li a1,43 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:856 + if (exp < 0 || (exp == 0 && (_dtoa.flags & DTOA_CARRY) != 0)) + 6a0: 000a1a63 bnez s4,6b4 <.L88> 6a0: R_RISCV_BRANCH .L88 + 6a4: 02c14783 lbu a5,44(sp) + 6a8: 8bc1 andi a5,a5,16 + 6aa: c789 beqz a5,6b4 <.L88> 6aa: R_RISCV_RVC_BRANCH .L88 + +00000000000006ac <.L87>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:858 + exp = -exp; + 6ac: 41400a3b negw s4,s4 + +00000000000006b0 <.LVL140>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:859 + ndigs = '-'; + 6b0: 02d00593 li a1,45 + +00000000000006b4 <.L88>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:862 + stream_putc(ndigs, stream); + 6b4: 008c3783 ld a5,8(s8) + 6b8: 8562 mv a0,s8 + 6ba: 9782 jalr a5 + +00000000000006bc <.LVL142>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:863 + c = __ultoa_invert(exp, buf, 10) - buf; + 6bc: 4629 li a2,10 + 6be: 85ee mv a1,s11 + 6c0: 8552 mv a0,s4 + 6c2: 00000097 auipc ra,0x0 6c2: R_RISCV_CALL __ultoa_invert + 6c2: R_RISCV_RELAX *ABS* + 6c6: 000080e7 jalr ra # 6c2 <.LVL142+0x6> + +00000000000006ca <.LVL143>: + 6ca: 41b504b3 sub s1,a0,s11 + +00000000000006ce <.LVL144>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:865 + if (exp >= 0 && exp <= 9) + 6ce: 47a5 li a5,9 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:863 + c = __ultoa_invert(exp, buf, 10) - buf; + 6d0: 0ff4f993 zext.b s3,s1 + +00000000000006d4 <.LVL145>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:865 + if (exp >= 0 && exp <= 9) + 6d4: 0547f563 bgeu a5,s4,71e <.L89> 6d4: R_RISCV_BRANCH .L89 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:862 + stream_putc(ndigs, stream); + 6d8: 2409 addiw s0,s0,2 + +00000000000006da <.L90>: + 6da: 0ff4f493 zext.b s1,s1 + 6de: 94ee add s1,s1,s11 + +00000000000006e0 <.L91>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:870 + while (c > 0) + 6e0: 049d9763 bne s11,s1,72e <.L92> 6e0: R_RISCV_BRANCH .L92 + 6e4: 008989bb addw s3,s3,s0 + 6e8: b1b9 j 336 <.L51> 6e8: R_RISCV_RVC_JUMP .L51 + +00000000000006ea <.L83>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:843 + stream_putc(pos < ndigs ? _dtoa.digits[pos] : '0', + 6ea: 2405 addiw s0,s0,1 + +00000000000006ec <.LVL149>: + 6ec: 03000593 li a1,48 + 6f0: 0159f663 bgeu s3,s5,6fc <.L82> 6f0: R_RISCV_BRANCH .L82 + 6f4: 009c addi a5,sp,64 + 6f6: 973e add a4,a4,a5 + 6f8: fed74583 lbu a1,-19(a4) # 1fed <.LBB16+0x17> + +00000000000006fc <.L82>: + 6fc: 8562 mv a0,s8 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:841 + for (pos = 1; pos < 1 + prec; pos++) + 6fe: 2985 addiw s3,s3,1 + +0000000000000700 <.LVL150>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:843 + stream_putc(pos < ndigs ? _dtoa.digits[pos] : '0', + 700: 9682 jalr a3 + +0000000000000702 <.LVL151>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:841 + for (pos = 1; pos < 1 + prec; pos++) + 702: 0ff9f993 zext.b s3,s3 + +0000000000000706 <.LVL152>: + 706: b7bd j 674 <.L81> 706: R_RISCV_RVC_JUMP .L81 + +0000000000000708 <.L80>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:847 + else if ((flags & FL_ALT) != 0) + 708: 010d7693 andi a3,s10,16 + 70c: e299 bnez a3,712 <.L85> 70c: R_RISCV_RVC_BRANCH .L85 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:835 + stream_putc(_dtoa.digits[0], stream); + 70e: 2405 addiw s0,s0,1 + 710: bf85 j 680 <.L84> 710: R_RISCV_RVC_JUMP .L84 + +0000000000000712 <.L85>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:849 + stream_putc('.', stream); + 712: 02e00593 li a1,46 + 716: 8562 mv a0,s8 + 718: 2409 addiw s0,s0,2 + 71a: 9702 jalr a4 + +000000000000071c <.LVL154>: + 71c: b795 j 680 <.L84> 71c: R_RISCV_RVC_JUMP .L84 + +000000000000071e <.L89>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:867 + stream_putc('0', stream); + 71e: 008c3783 ld a5,8(s8) + 722: 03000593 li a1,48 + 726: 8562 mv a0,s8 + 728: 240d addiw s0,s0,3 + +000000000000072a <.LVL156>: + 72a: 9782 jalr a5 + +000000000000072c <.LVL157>: + 72c: b77d j 6da <.L90> 72c: R_RISCV_RVC_JUMP .L90 + +000000000000072e <.L92>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:872 + stream_putc(buf[c - 1], stream); + 72e: fff4c583 lbu a1,-1(s1) + 732: 008c3783 ld a5,8(s8) + 736: 8562 mv a0,s8 + 738: 14fd addi s1,s1,-1 + +000000000000073a <.LVL159>: + 73a: 9782 jalr a5 + +000000000000073c <.LVL160>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:873 + c--; + 73c: b755 j 6e0 <.L91> 73c: R_RISCV_RVC_JUMP .L91 + +000000000000073e <.L93>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:905 + buf[0] = va_arg(ap, int); + 73e: 0009a703 lw a4,0(s3) +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:908 + size = 1; + 742: 4485 li s1,1 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:907 + pnt = buf; + 744: 02810a13 addi s4,sp,40 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:905 + buf[0] = va_arg(ap, int); + 748: 02e10423 sb a4,40(sp) + +000000000000074c <.L96>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:933 + if ((flags & FL_LPAD) == 0) + 74c: 008d7793 andi a5,s10,8 + 750: 89a2 mv s3,s0 + 752: e39d bnez a5,778 <.L100> 752: R_RISCV_RVC_BRANCH .L100 + 754: 4901 li s2,0 + 756: a801 j 766 <.L99> 756: R_RISCV_RVC_JUMP .L99 + +0000000000000758 <.L101>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:937 + stream_putc(' ', stream); + 758: 008c3783 ld a5,8(s8) + 75c: 02000593 li a1,32 + 760: 8562 mv a0,s8 + 762: 9782 jalr a5 + +0000000000000764 <.LVL164>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:938 + width--; + 764: 0905 addi s2,s2,1 + +0000000000000766 <.L99>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:935 + while (size < width) + 766: 412c8733 sub a4,s9,s2 + 76a: 412c87bb subw a5,s9,s2 + 76e: 008909bb addw s3,s2,s0 + +0000000000000772 <.LVL166>: + 772: fee4e3e3 bltu s1,a4,758 <.L101> 772: R_RISCV_BRANCH .L101 + 776: 8cbe mv s9,a5 + +0000000000000778 <.L100>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:942 + stream_puts(pnt, size, stream); + 778: 010c3783 ld a5,16(s8) + 77c: 0004841b sext.w s0,s1 + 780: 8622 mv a2,s0 + 782: 85d2 mv a1,s4 + 784: 8562 mv a0,s8 + 786: 013489bb addw s3,s1,s3 + +000000000000078a <.LVL168>: + 78a: 9782 jalr a5 + +000000000000078c <.LVL169>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:943 + width = width >= size ? width - size : 0; + 78c: 4901 li s2,0 + 78e: ba9ce4e3 bltu s9,s1,336 <.L51> 78e: R_RISCV_BRANCH .L51 + 792: 408c893b subw s2,s9,s0 + 796: b645 j 336 <.L51> 796: R_RISCV_RVC_JUMP .L51 + +0000000000000798 <.L241>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:949 + if (c == 'd' || c == 'i') + 798: 06400693 li a3,100 + 79c: 017d7733 and a4,s10,s7 + 7a0: 00d90663 beq s2,a3,7ac <.L102> 7a0: R_RISCV_BRANCH .L102 + 7a4: 06900693 li a3,105 + 7a8: 10d91763 bne s2,a3,8b6 <.L103> 7a8: R_RISCV_BRANCH .L103 + +00000000000007ac <.L102>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:956 + if ((flags & FL_LONG) != 0 && (flags & FL_REPD_TYPE) != 0) + 7ac: 0d771d63 bne a4,s7,886 <.L104> 7ac: R_RISCV_BRANCH .L104 + +00000000000007b0 <.L246>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:985 + x = va_arg(ap, long); + 7b0: 0009b503 ld a0,0(s3) + +00000000000007b4 <.L105>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1015 + flags &= ~(FL_NEGATIVE | FL_ALT); + 7b4: 79fd lui s3,0xfffff + 7b6: 19bd addi s3,s3,-17 + 7b8: 013d79b3 and s3,s10,s3 + +00000000000007bc <.LVL173>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1016 + if (x < 0) + 7bc: 00055a63 bgez a0,7d0 <.L109> 7bc: R_RISCV_BRANCH .L109 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1019 + flags |= FL_NEGATIVE; + 7c0: 6785 lui a5,0x1 + 7c2: 00f9e9b3 or s3,s3,a5 + +00000000000007c6 <.LVL174>: + 7c6: 19c2 slli s3,s3,0x30 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1018 + x = -x; + 7c8: 40a00533 neg a0,a0 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1019 + flags |= FL_NEGATIVE; + 7cc: 0309d993 srli s3,s3,0x30 + +00000000000007d0 <.L109>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1022 + if ((flags & FL_PREC) != 0 && prec == 0 && x == 0) + 7d0: 1009f793 andi a5,s3,256 + 7d4: c781 beqz a5,7dc <.L110> 7d4: R_RISCV_RVC_BRANCH .L110 + 7d6: e099 bnez s1,7dc <.L110> 7d6: R_RISCV_RVC_BRANCH .L110 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1024 + c = 0; + 7d8: 4a01 li s4,0 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1022 + if ((flags & FL_PREC) != 0 && prec == 0 && x == 0) + 7da: cd09 beqz a0,7f4 <.L111> 7da: R_RISCV_RVC_BRANCH .L111 + +00000000000007dc <.L110>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1031 + c = __ultoa_invert(x, buf, 10) - buf; + 7dc: 02810a13 addi s4,sp,40 + 7e0: 4629 li a2,10 + +00000000000007e2 <.L249>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1207 + c = __ultoa_invert(x, buf, base) - buf; + 7e2: 85d2 mv a1,s4 + 7e4: 00000097 auipc ra,0x0 7e4: R_RISCV_CALL __ultoa_invert + 7e4: R_RISCV_RELAX *ABS* + 7e8: 000080e7 jalr ra # 7e4 <.L249+0x2> + +00000000000007ec <.LVL178>: + 7ec: 41450533 sub a0,a0,s4 + 7f0: 0ff57a13 zext.b s4,a0 + +00000000000007f4 <.L111>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1215 + if ((flags & FL_PREC) != 0) + 7f4: 1009f793 andi a5,s3,256 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1218 + if (len < prec) + 7f8: 000a0a9b sext.w s5,s4 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1215 + if ((flags & FL_PREC) != 0) + 7fc: 1a078d63 beqz a5,9b6 <.L179> 7fc: R_RISCV_BRANCH .L179 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1217 + flags &= ~FL_ZFILL; + 800: ffe9f793 andi a5,s3,-2 + 804: 03079d93 slli s11,a5,0x30 + 808: 030ddd93 srli s11,s11,0x30 + +000000000000080c <.LVL180>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1213 + len = c; + 80c: 87d2 mv a5,s4 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1218 + if (len < prec) + 80e: 029ad063 bge s5,s1,82e <.L128> 80e: R_RISCV_BRANCH .L128 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1221 + if ((flags & FL_ALT) != 0 && (flags & FL_ALTHEX) == 0) + 812: 6762 ld a4,24(sp) + 814: 46c1 li a3,16 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1220 + len = prec; + 816: 0ff4f793 zext.b a5,s1 + +000000000000081a <.LVL181>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1221 + if ((flags & FL_ALT) != 0 && (flags & FL_ALTHEX) == 0) + 81a: 00e9f733 and a4,s3,a4 + 81e: 00d71863 bne a4,a3,82e <.L128> 81e: R_RISCV_BRANCH .L128 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1223 + flags &= ~FL_ALT; + 822: fee9f993 andi s3,s3,-18 + 826: 03099d93 slli s11,s3,0x30 + +000000000000082a <.LVL182>: + 82a: 030ddd93 srli s11,s11,0x30 + +000000000000082e <.L128>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1228 + if ((flags & FL_ALT) != 0) + 82e: 010df713 andi a4,s11,16 + 832: 18070f63 beqz a4,9d0 <.L129> 832: R_RISCV_BRANCH .L129 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1230 + if (buf[c - 1] == '0') + 836: 0094 addi a3,sp,64 + 838: fffa871b addiw a4,s5,-1 + 83c: 9736 add a4,a4,a3 + 83e: fe874683 lbu a3,-24(a4) + 842: 03000713 li a4,48 + 846: 16e69b63 bne a3,a4,9bc <.L130> 846: R_RISCV_BRANCH .L130 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1232 + flags &= ~(FL_ALT | FL_ALTHEX | FL_ALTUPP); + 84a: 6742 ld a4,16(sp) + 84c: 00edfdb3 and s11,s11,a4 + +0000000000000850 <.LVL184>: + 850: 1dc2 slli s11,s11,0x30 + 852: 030ddd93 srli s11,s11,0x30 + +0000000000000856 <.L131>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1248 + if ((flags & FL_LPAD) == 0) + 856: 008df713 andi a4,s11,8 + 85a: 89a2 mv s3,s0 + 85c: 18071e63 bnez a4,9f8 <.L133> 85c: R_RISCV_BRANCH .L133 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1250 + if ((flags & FL_ZFILL) != 0) + 860: 001df713 andi a4,s11,1 + 864: cf01 beqz a4,87c <.L134> 864: R_RISCV_RVC_BRANCH .L134 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1253 + if (len < width) + 866: 0007871b sext.w a4,a5 + +000000000000086a <.LVL186>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1218 + if (len < prec) + 86a: 84d6 mv s1,s5 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1253 + if (len < width) + 86c: 01975863 bge a4,s9,87c <.L134> 86c: R_RISCV_BRANCH .L134 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1255 + prec += width - len; + 870: 40ec873b subw a4,s9,a4 + 874: 015704bb addw s1,a4,s5 + +0000000000000878 <.LVL187>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1256 + len = width; + 878: 0ffcf793 zext.b a5,s9 + +000000000000087c <.L134>: + 87c: 9f81 subw a5,a5,s0 + +000000000000087e <.LVL189>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1218 + if (len < prec) + 87e: 89a2 mv s3,s0 + 880: 0ff7f413 zext.b s0,a5 + 884: a2a5 j 9ec <.L135> 884: R_RISCV_RVC_JUMP .L135 + +0000000000000886 <.L104>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:973 + if ((flags & FL_LONG) != 0) + 886: 200d7713 andi a4,s10,512 + 88a: f31d bnez a4,7b0 <.L246> 88a: R_RISCV_RVC_BRANCH .L246 + +000000000000088c <.LVL191>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1002 + if ((flags & FL_SHORT) != 0) + 88c: 400d7713 andi a4,s10,1024 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1000 + x = va_arg(ap, int); + 890: 0009a503 lw a0,0(s3) # fffffffffffff000 <.Ldebug_info0+0xfffffffffffc8f3b> + +0000000000000894 <.LVL192>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1002 + if ((flags & FL_SHORT) != 0) + 894: d305 beqz a4,7b4 <.L105> 894: R_RISCV_RVC_BRANCH .L105 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1004 + if ((flags & FL_REPD_TYPE) == 0) + 896: 6785 lui a5,0x1 + 898: 80078793 addi a5,a5,-2048 # 800 <.L111+0xc> + 89c: 00fd7733 and a4,s10,a5 + 8a0: e711 bnez a4,8ac <.L108> 8a0: R_RISCV_RVC_BRANCH .L108 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1006 + x = (short)x; + 8a2: 0105151b slliw a0,a0,0x10 + +00000000000008a6 <.LVL193>: + 8a6: 4105551b sraiw a0,a0,0x10 + +00000000000008aa <.LVL194>: + 8aa: b729 j 7b4 <.L105> 8aa: R_RISCV_RVC_JUMP .L105 + +00000000000008ac <.L108>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1010 + x = (signed char)x; + 8ac: 0185151b slliw a0,a0,0x18 + +00000000000008b0 <.LVL196>: + 8b0: 4185551b sraiw a0,a0,0x18 + +00000000000008b4 <.LVL197>: + 8b4: b701 j 7b4 <.L105> 8b4: R_RISCV_RVC_JUMP .L105 + +00000000000008b6 <.L103>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1042 + if ((flags & FL_LONG) != 0 && (flags & FL_REPD_TYPE) != 0) + 8b6: 05771563 bne a4,s7,900 <.L112> 8b6: R_RISCV_BRANCH .L112 + +00000000000008ba <.L247>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1071 + x = va_arg(ap, unsigned long); + 8ba: 0009b503 ld a0,0(s3) + +00000000000008be <.L113>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1101 + flags &= ~(FL_PLUS | FL_SPACE); + 8be: ff9d7993 andi s3,s10,-7 + 8c2: 19c2 slli s3,s3,0x30 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1103 + switch (c) + 8c4: 07000713 li a4,112 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1101 + flags &= ~(FL_PLUS | FL_SPACE); + 8c8: 0309d993 srli s3,s3,0x30 + +00000000000008cc <.LVL201>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1103 + switch (c) + 8cc: 0ae90363 beq s2,a4,972 <.L117> 8cc: R_RISCV_BRANCH .L117 + 8d0: 07276063 bltu a4,s2,930 <.L118> 8d0: R_RISCV_BRANCH .L118 + 8d4: 05800713 li a4,88 + 8d8: 0ce90863 beq s2,a4,9a8 <.L119> 8d8: R_RISCV_BRANCH .L119 + 8dc: 06f00793 li a5,111 + 8e0: 4621 li a2,8 + 8e2: 06f90e63 beq s2,a5,95e <.L120> 8e2: R_RISCV_BRANCH .L120 + +00000000000008e6 <.L121>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1193 + stream_putc('%', stream); + 8e6: 008c3783 ld a5,8(s8) + 8ea: 8562 mv a0,s8 + +00000000000008ec <.LVL202>: + 8ec: 02500593 li a1,37 + 8f0: 9782 jalr a5 + +00000000000008f2 <.LVL203>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1194 + stream_putc(c, stream); + 8f2: 008c3783 ld a5,8(s8) + 8f6: 85ca mv a1,s2 + 8f8: 8562 mv a0,s8 + 8fa: 2409 addiw s0,s0,2 + +00000000000008fc <.LVL204>: + 8fc: 9782 jalr a5 + +00000000000008fe <.LVL205>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1195 + continue; + 8fe: a2f9 j acc <.L244> 8fe: R_RISCV_RVC_JUMP .L244 + +0000000000000900 <.L112>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1059 + if ((flags & FL_LONG) != 0) + 900: 200d7713 andi a4,s10,512 + 904: fb5d bnez a4,8ba <.L247> 904: R_RISCV_RVC_BRANCH .L247 + +0000000000000906 <.LVL207>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1088 + if ((flags & FL_SHORT) != 0) + 906: 400d7693 andi a3,s10,1024 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1086 + x = va_arg(ap, unsigned int); + 90a: 0009a703 lw a4,0(s3) + +000000000000090e <.LVL208>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1088 + if ((flags & FL_SHORT) != 0) + 90e: e689 bnez a3,918 <.L115> 90e: R_RISCV_RVC_BRANCH .L115 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1086 + x = va_arg(ap, unsigned int); + 910: 02071513 slli a0,a4,0x20 + 914: 9101 srli a0,a0,0x20 + 916: b765 j 8be <.L113> 916: R_RISCV_RVC_JUMP .L113 + +0000000000000918 <.L115>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1090 + if ((flags & FL_REPD_TYPE) == 0) + 918: 6785 lui a5,0x1 + 91a: 80078793 addi a5,a5,-2048 # 800 <.L111+0xc> + 91e: 00fd76b3 and a3,s10,a5 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1096 + x = (unsigned char)x; + 922: 0ff77513 zext.b a0,a4 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1090 + if ((flags & FL_REPD_TYPE) == 0) + 926: fec1 bnez a3,8be <.L113> 926: R_RISCV_RVC_BRANCH .L113 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1092 + x = (unsigned short)x; + 928: 03071513 slli a0,a4,0x30 + 92c: 9141 srli a0,a0,0x30 + +000000000000092e <.LVL209>: + 92e: bf41 j 8be <.L113> 92e: R_RISCV_RVC_JUMP .L113 + +0000000000000930 <.L118>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1103 + switch (c) + 930: 07500713 li a4,117 + 934: 00e90e63 beq s2,a4,950 <.L122> 934: R_RISCV_BRANCH .L122 + 938: 07800793 li a5,120 + 93c: faf915e3 bne s2,a5,8e6 <.L121> 93c: R_RISCV_BRANCH .L121 + +0000000000000940 <.L123>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1175 + if ((flags & FL_ALT) != 0) + 940: 0109f793 andi a5,s3,16 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1180 + base = 16; + 944: 4641 li a2,16 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1175 + if ((flags & FL_ALT) != 0) + 946: cf81 beqz a5,95e <.L120> 946: R_RISCV_RVC_BRANCH .L120 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1177 + flags |= FL_ALTHEX; + 948: 6791 lui a5,0x4 + +000000000000094a <.L248>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1186 + flags |= (FL_ALTHEX | FL_ALTUPP); + 94a: 00f9e9b3 or s3,s3,a5 + 94e: a801 j 95e <.L120> 94e: R_RISCV_RVC_JUMP .L120 + +0000000000000950 <.L122>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1106 + flags &= ~FL_ALT; + 950: fe9d7793 andi a5,s10,-23 + 954: 03079993 slli s3,a5,0x30 + +0000000000000958 <.LVL214>: + 958: 0309d993 srli s3,s3,0x30 + +000000000000095c <.LVL215>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1107 + base = 10; + 95c: 4629 li a2,10 + +000000000000095e <.L120>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1198 + if ((flags & FL_PREC) != 0 && prec == 0 && x == 0) + 95e: 1009f793 andi a5,s3,256 + 962: c789 beqz a5,96c <.L127> 962: R_RISCV_RVC_BRANCH .L127 + 964: e481 bnez s1,96c <.L127> 964: R_RISCV_RVC_BRANCH .L127 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1200 + c = 0; + 966: 4a01 li s4,0 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1198 + if ((flags & FL_PREC) != 0 && prec == 0 && x == 0) + 968: e80506e3 beqz a0,7f4 <.L111> 968: R_RISCV_BRANCH .L111 + +000000000000096c <.L127>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1207 + c = __ultoa_invert(x, buf, base) - buf; + 96c: 02810a13 addi s4,sp,40 + 970: bd8d j 7e2 <.L249> 970: R_RISCV_RVC_JUMP .L249 + +0000000000000972 <.L117>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1115 + c = fmt_char(fmt); + 972: 000b4783 lbu a5,0(s6) + 976: 05600713 li a4,86 + 97a: 001b0a13 addi s4,s6,1 + +000000000000097e <.LVL218>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1116 + switch (c) + 97e: 00e78c63 beq a5,a4,996 <.L124> 97e: R_RISCV_BRANCH .L124 + 982: 0df7f793 andi a5,a5,223 + +0000000000000986 <.LVL219>: + 986: 05300713 li a4,83 + 98a: 00e79363 bne a5,a4,990 <.L126> 98a: R_RISCV_BRANCH .L126 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1115 + c = fmt_char(fmt); + 98e: 8b52 mv s6,s4 + +0000000000000990 <.L126>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1170 + flags |= FL_ALT; + 990: 0109e993 ori s3,s3,16 + 994: b775 j 940 <.L123> 994: R_RISCV_RVC_JUMP .L123 + +0000000000000996 <.L124>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1124 + va_copy(copy, *vaf->va); + 996: 651c ld a5,8(a0) + +0000000000000998 <.LVL223>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1125 + lib_vsprintf(stream, vaf->fmt, copy); + 998: 610c ld a1,0(a0) + 99a: 8562 mv a0,s8 + +000000000000099c <.LVL224>: + 99c: 6390 ld a2,0(a5) + 99e: 00000097 auipc ra,0x0 99e: R_RISCV_CALL lib_vsprintf_internal + 99e: R_RISCV_RELAX *ABS* + 9a2: 000080e7 jalr ra # 99e <.LVL224+0x2> + +00000000000009a6 <.LVL225>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1130 + continue; + 9a6: a225 j ace <.L9> 9a6: R_RISCV_RVC_JUMP .L9 + +00000000000009a8 <.L119>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1184 + if ((flags & FL_ALT) != 0) + 9a8: 010d7793 andi a5,s10,16 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1189 + base = 16 | XTOA_UPPER; + 9ac: 21000613 li a2,528 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1184 + if ((flags & FL_ALT) != 0) + 9b0: d7dd beqz a5,95e <.L120> 9b0: R_RISCV_RVC_BRANCH .L120 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1186 + flags |= (FL_ALTHEX | FL_ALTUPP); + 9b2: 6799 lui a5,0x6 + 9b4: bf59 j 94a <.L248> 9b4: R_RISCV_RVC_JUMP .L248 + +00000000000009b6 <.L179>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1213 + len = c; + 9b6: 87d2 mv a5,s4 + 9b8: 8dce mv s11,s3 + 9ba: bd95 j 82e <.L128> 9ba: R_RISCV_RVC_JUMP .L128 + +00000000000009bc <.L130>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1237 + if ((flags & FL_ALTHEX) != 0) + 9bc: 6711 lui a4,0x4 + 9be: 00edf733 and a4,s11,a4 + 9c2: e319 bnez a4,9c8 <.L132> 9c2: R_RISCV_RVC_BRANCH .L132 + +00000000000009c4 <.L250>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1245 + len += 1; + 9c4: 2785 addiw a5,a5,1 + 9c6: a011 j 9ca <.L251> 9c6: R_RISCV_RVC_JUMP .L251 + +00000000000009c8 <.L132>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1239 + len += 1; + 9c8: 2789 addiw a5,a5,2 + +00000000000009ca <.L251>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1245 + len += 1; + 9ca: 0ff7f793 zext.b a5,a5 + +00000000000009ce <.LVL232>: + 9ce: b561 j 856 <.L131> 9ce: R_RISCV_RVC_JUMP .L131 + +00000000000009d0 <.L129>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1243 + else if ((flags & (FL_NEGATIVE | FL_PLUS | FL_SPACE)) != 0) + 9d0: 6705 lui a4,0x1 + 9d2: 0719 addi a4,a4,6 + 9d4: 00edf733 and a4,s11,a4 + 9d8: e6070fe3 beqz a4,856 <.L131> 9d8: R_RISCV_BRANCH .L131 + 9dc: b7e5 j 9c4 <.L250> 9dc: R_RISCV_RVC_JUMP .L250 + +00000000000009de <.L136>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1262 + stream_putc(' ', stream); + 9de: 008c3783 ld a5,8(s8) + +00000000000009e2 <.LVL234>: + 9e2: 02000593 li a1,32 + 9e6: 8562 mv a0,s8 + 9e8: 2985 addiw s3,s3,1 + +00000000000009ea <.LVL235>: + 9ea: 9782 jalr a5 + +00000000000009ec <.L135>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1263 + len++; + 9ec: 0089873b addw a4,s3,s0 + 9f0: 0ff77793 zext.b a5,a4 + +00000000000009f4 <.LVL237>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1260 + while (len < width) + 9f4: ff97c5e3 blt a5,s9,9de <.L136> 9f4: R_RISCV_BRANCH .L136 + +00000000000009f8 <.L133>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1267 + width = (len < width) ? width - len : 0; + 9f8: 0007871b sext.w a4,a5 + 9fc: 4901 li s2,0 + 9fe: 01975463 bge a4,s9,a06 <.L137> 9fe: R_RISCV_BRANCH .L137 + a02: 40ec893b subw s2,s9,a4 + +0000000000000a06 <.L137>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1269 + if ((flags & FL_ALT) != 0) + a06: 010df793 andi a5,s11,16 + a0a: cba9 beqz a5,a5c <.L138> a0a: R_RISCV_RVC_BRANCH .L138 + +0000000000000a0c <.LVL240>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1271 + stream_putc('0', stream); + a0c: 008c3783 ld a5,8(s8) + a10: 03000593 li a1,48 + a14: 8562 mv a0,s8 + a16: 9782 jalr a5 + +0000000000000a18 <.LVL241>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1272 + if ((flags & FL_ALTHEX) != 0) + a18: 6791 lui a5,0x4 + a1a: 00fdf7b3 and a5,s11,a5 + a1e: e38d bnez a5,a40 <.L139> a1e: R_RISCV_RVC_BRANCH .L139 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1271 + stream_putc('0', stream); + a20: 2985 addiw s3,s3,1 + +0000000000000a22 <.L140>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1287 + z = '-'; + a22: 8426 mv s0,s1 + +0000000000000a24 <.L144>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1293 + while (prec > c) + a24: 068ac463 blt s5,s0,a8c <.L145> a24: R_RISCV_BRANCH .L145 + a28: 4781 li a5,0 + a2a: 0154c463 blt s1,s5,a32 <.L147> a2a: R_RISCV_BRANCH .L147 + a2e: 414487bb subw a5,s1,s4 + +0000000000000a32 <.L147>: + a32: 013789bb addw s3,a5,s3 + +0000000000000a36 <.L148>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1299 + while (c) + a36: 060a1363 bnez s4,a9c <.L149> a36: R_RISCV_BRANCH .L149 + a3a: 015989bb addw s3,s3,s5 + a3e: b8e5 j 336 <.L51> a3e: R_RISCV_RVC_JUMP .L51 + +0000000000000a40 <.L139>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1274 + stream_putc(flags & FL_ALTUPP ? 'X' : 'x', stream); + a40: 6789 lui a5,0x2 + a42: 00fdf7b3 and a5,s11,a5 + a46: 008c3703 ld a4,8(s8) + a4a: 2989 addiw s3,s3,2 + +0000000000000a4c <.LVL245>: + a4c: 05800593 li a1,88 + a50: e399 bnez a5,a56 <.L141> a50: R_RISCV_RVC_BRANCH .L141 + a52: 07800593 li a1,120 + +0000000000000a56 <.L141>: + a56: 8562 mv a0,s8 + a58: 9702 jalr a4 + +0000000000000a5a <.LVL246>: + a5a: b7e1 j a22 <.L140> a5a: R_RISCV_RVC_JUMP .L140 + +0000000000000a5c <.L138>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1277 + else if ((flags & (FL_NEGATIVE | FL_PLUS | FL_SPACE)) != 0) + a5c: 6785 lui a5,0x1 + a5e: 0799 addi a5,a5,6 + a60: 00fdf7b3 and a5,s11,a5 + a64: dfdd beqz a5,a22 <.L140> a64: R_RISCV_RVC_BRANCH .L140 + +0000000000000a66 <.LBB24>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1280 + if ((flags & FL_PLUS) != 0) + a66: 002df793 andi a5,s11,2 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1279 + unsigned char z = ' '; + a6a: 02000593 li a1,32 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1280 + if ((flags & FL_PLUS) != 0) + a6e: c399 beqz a5,a74 <.L142> a6e: R_RISCV_RVC_BRANCH .L142 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1282 + z = '+'; + a70: 02b00593 li a1,43 + +0000000000000a74 <.L142>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1285 + if ((flags & FL_NEGATIVE) != 0) + a74: 6785 lui a5,0x1 + a76: 00fdf7b3 and a5,s11,a5 + a7a: c399 beqz a5,a80 <.L143> a7a: R_RISCV_RVC_BRANCH .L143 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1287 + z = '-'; + a7c: 02d00593 li a1,45 + +0000000000000a80 <.L143>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1290 + stream_putc(z, stream); + a80: 008c3783 ld a5,8(s8) + a84: 8562 mv a0,s8 + a86: 2985 addiw s3,s3,1 + +0000000000000a88 <.LVL251>: + a88: 9782 jalr a5 + +0000000000000a8a <.LVL252>: + a8a: bf61 j a22 <.L140> a8a: R_RISCV_RVC_JUMP .L140 + +0000000000000a8c <.L145>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1295 + stream_putc('0', stream); + a8c: 008c3783 ld a5,8(s8) + a90: 03000593 li a1,48 + a94: 8562 mv a0,s8 + a96: 9782 jalr a5 + +0000000000000a98 <.LVL254>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1296 + prec--; + a98: 347d addiw s0,s0,-1 + +0000000000000a9a <.LVL255>: + a9a: b769 j a24 <.L144> a9a: R_RISCV_RVC_JUMP .L144 + +0000000000000a9c <.L149>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1301 + stream_putc(buf[--c], stream); + a9c: fffa079b addiw a5,s4,-1 + aa0: 0098 addi a4,sp,64 + aa2: 0ff7fa13 zext.b s4,a5 + aa6: 014707b3 add a5,a4,s4 + aaa: fe87c583 lbu a1,-24(a5) # fe8 <.LBE7+0xc> + aae: 008c3703 ld a4,8(s8) + ab2: 8562 mv a0,s8 + ab4: 9702 jalr a4 + +0000000000000ab6 <.LVL258>: + ab6: b741 j a36 <.L148> ab6: R_RISCV_RVC_JUMP .L148 + +0000000000000ab8 <.L151>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1310 + stream_putc(' ', stream); + ab8: 008c3783 ld a5,8(s8) + abc: 02000593 li a1,32 + ac0: 8562 mv a0,s8 + ac2: 9782 jalr a5 + +0000000000000ac4 <.LVL260>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1311 + width--; + ac4: 347d addiw s0,s0,-1 + +0000000000000ac6 <.L150>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1308 + while (width) + ac6: f86d bnez s0,ab8 <.L151> ac6: R_RISCV_RVC_BRANCH .L151 + ac8: 0139043b addw s0,s2,s3 + +0000000000000acc <.L244>: + acc: 8a5a mv s4,s6 + +0000000000000ace <.L9>: + ace: 6982 ld s3,0(sp) + ad0: eb4ff06f j 184 <.L4> ad0: R_RISCV_JAL .L4 + +0000000000000ad4 <.L5>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1317 +} + ad4: 70aa ld ra,168(sp) + ad6: 8522 mv a0,s0 + ad8: 740a ld s0,160(sp) + ada: 64ea ld s1,152(sp) + adc: 694a ld s2,144(sp) + +0000000000000ade <.LVL264>: + ade: 69aa ld s3,136(sp) + +0000000000000ae0 <.LVL265>: + ae0: 6a0a ld s4,128(sp) + ae2: 7ae6 ld s5,120(sp) + ae4: 7b46 ld s6,112(sp) + ae6: 7ba6 ld s7,104(sp) + ae8: 7c06 ld s8,96(sp) + +0000000000000aea <.LVL266>: + aea: 6ce6 ld s9,88(sp) + aec: 6d46 ld s10,80(sp) + aee: 6da6 ld s11,72(sp) + af0: 614d addi sp,sp,176 + af2: 8082 ret + +0000000000000af4 : +lib_sprintf_internal(): +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1380 +{ + af4: 715d addi sp,sp,-80 + af6: f032 sd a2,32(sp) + af8: f436 sd a3,40(sp) + afa: f83a sd a4,48(sp) +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1387 + n = vsprintf_internal(stream, NULL, 0, fmt, ap); + afc: 86ae mv a3,a1 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1386 + va_start(ap, fmt); + afe: 1018 addi a4,sp,32 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1387 + n = vsprintf_internal(stream, NULL, 0, fmt, ap); + b00: 4601 li a2,0 + b02: 4581 li a1,0 + +0000000000000b04 <.LVL268>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1380 +{ + b04: ec06 sd ra,24(sp) + b06: fc3e sd a5,56(sp) + b08: e0c2 sd a6,64(sp) + b0a: e4c6 sd a7,72(sp) +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1386 + va_start(ap, fmt); + b0c: e43a sd a4,8(sp) +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1387 + n = vsprintf_internal(stream, NULL, 0, fmt, ap); + b0e: 00000097 auipc ra,0x0 b0e: R_RISCV_CALL vsprintf_internal.constprop.0 + b0e: R_RISCV_RELAX *ABS* + b12: 000080e7 jalr ra # b0e <.LVL268+0xa> + +0000000000000b16 <.LVL269>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libvsprintf.c:1391 +} + b16: 60e2 ld ra,24(sp) + b18: 6161 addi sp,sp,80 + b1a: 8082 ret + +0000000000000b1c <__ultoa_invert>: +__ultoa_invert(): +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_ultoa_invert.c:54 +FAR char *__ultoa_invert(unsigned long val, FAR char *str, int base) +#endif +{ + int upper = 0; + + if (base & XTOA_UPPER) + b1c: 20067693 andi a3,a2,512 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_ultoa_invert.c:51 +{ + b20: 872a mv a4,a0 + b22: 852e mv a0,a1 + +0000000000000b24 <.LVL1>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_ultoa_invert.c:54 + if (base & XTOA_UPPER) + b24: c681 beqz a3,b2c <.L2> b24: R_RISCV_RVC_BRANCH .L2 + +0000000000000b26 <.LVL2>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_ultoa_invert.c:57 + { + upper = 1; + base &= ~XTOA_UPPER; + b26: dff67613 andi a2,a2,-513 + +0000000000000b2a <.LVL3>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_ultoa_invert.c:56 + upper = 1; + b2a: 4685 li a3,1 + +0000000000000b2c <.L2>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_ultoa_invert.c:67 + int v; + + v = val % base; + val = val / base; + + if (v <= 9) + b2c: 4825 li a6,9 + +0000000000000b2e <.L6>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_ultoa_invert.c:64 + v = val % base; + b2e: 02c777b3 remu a5,a4,a2 + b32: 85ba mv a1,a4 + b34: 2781 sext.w a5,a5 + +0000000000000b36 <.LVL6>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_ultoa_invert.c:65 + val = val / base; + b36: 02c75733 divu a4,a4,a2 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_ultoa_invert.c:67 + if (v <= 9) + b3a: 00f84a63 blt a6,a5,b4e <.L3> b3a: R_RISCV_BRANCH .L3 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_ultoa_invert.c:69 + { + v += '0'; + b3e: 0307879b addiw a5,a5,48 + +0000000000000b42 <.L4>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_ultoa_invert.c:79 + v += 'A' - 10; + else + v += 'a' - 10; + } + + *str++ = v; + b42: 00f50023 sb a5,0(a0) + b46: 0505 addi a0,a0,1 + +0000000000000b48 <.LBE3>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_ultoa_invert.c:81 + } + while (val); + b48: fec5f3e3 bgeu a1,a2,b2e <.L6> b48: R_RISCV_BRANCH .L6 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_ultoa_invert.c:84 + + return str; +} + b4c: 8082 ret + +0000000000000b4e <.L3>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_ultoa_invert.c:73 + if (upper) + b4e: c681 beqz a3,b56 <.L5> b4e: R_RISCV_RVC_BRANCH .L5 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_ultoa_invert.c:74 + v += 'A' - 10; + b50: 0377879b addiw a5,a5,55 + +0000000000000b54 <.LVL10>: + b54: b7fd j b42 <.L4> b54: R_RISCV_RVC_JUMP .L4 + +0000000000000b56 <.L5>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_ultoa_invert.c:76 + v += 'a' - 10; + b56: 0577879b addiw a5,a5,87 + +0000000000000b5a <.LVL12>: + b5a: b7e5 j b42 <.L4> b5a: R_RISCV_RVC_JUMP .L4 + +0000000000000b5c <__dtoa_engine>: +__dtoa_engine(): +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_dtoa_engine.c:67 + * Public Functions + ****************************************************************************/ + +int __dtoa_engine(double x, FAR struct dtoa_s *dtoa, int max_digits, + int max_decimals) +{ + b5c: 7179 addi sp,sp,-48 + b5e: a42a fsd fa0,8(sp) +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_dtoa_engine.c:72 + int32_t exp = 0; + uint8_t flags = 0; + int i; + + if (__builtin_signbit(x)) + b60: 67a2 ld a5,8(sp) +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_dtoa_engine.c:67 +{ + b62: f022 sd s0,32(sp) + b64: ec26 sd s1,24(sp) + b66: e84a sd s2,16(sp) + b68: f406 sd ra,40(sp) + b6a: 892a mv s2,a0 + b6c: 842e mv s0,a1 + b6e: 4481 li s1,0 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_dtoa_engine.c:72 + if (__builtin_signbit(x)) + b70: 0007d663 bgez a5,b7c <.L2> b70: R_RISCV_BRANCH .L2 + +0000000000000b74 <.LVL1>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_dtoa_engine.c:75 + { + flags |= DTOA_MINUS; + x = -x; + b74: 22a517d3 fneg.d fa5,fa0 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_dtoa_engine.c:74 + flags |= DTOA_MINUS; + b78: 4485 li s1,1 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_dtoa_engine.c:75 + x = -x; + b7a: a43e fsd fa5,8(sp) + +0000000000000b7c <.L2>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_dtoa_engine.c:78 + } + + if (x == 0) + b7c: f20007d3 fmv.d.x fa5,zero + b80: 2722 fld fa4,8(sp) + b82: a2f727d3 feq.d a5,fa4,fa5 + b86: c3a1 beqz a5,bc6 <.L3> b86: R_RISCV_RVC_BRANCH .L3 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_dtoa_engine.c:80 + { + flags |= DTOA_ZERO; + b88: 0024e493 ori s1,s1,2 + +0000000000000b8c <.LVL3>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_dtoa_engine.c:82 + for (i = 0; i < max_digits; i++) + dtoa->digits[i] = '0'; + b8c: 0004061b sext.w a2,s0 + +0000000000000b90 <.LVL4>: + b90: 00045363 bgez s0,b96 <.L5> b90: R_RISCV_BRANCH .L5 + b94: 4601 li a2,0 + +0000000000000b96 <.L5>: + b96: 03000593 li a1,48 + +0000000000000b9a <.LVL5>: + b9a: 00590513 addi a0,s2,5 + +0000000000000b9e <.LVL6>: + b9e: 00000097 auipc ra,0x0 b9e: R_RISCV_CALL memset + b9e: R_RISCV_RELAX *ABS* + ba2: 000080e7 jalr ra # b9e <.LVL6> + +0000000000000ba6 <.L39>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_dtoa_engine.c:68 + int32_t exp = 0; + ba6: 4781 li a5,0 + +0000000000000ba8 <.L6>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_dtoa_engine.c:165 + mant %= decimal; + decimal /= 10; + } + } + + dtoa->digits[max_digits] = '\0'; + ba8: 00890733 add a4,s2,s0 + bac: 000702a3 sb zero,5(a4) # 1005 <.LVL2+0xd> +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_dtoa_engine.c:169 + dtoa->flags = flags; + dtoa->exp = exp; + return max_digits; +} + bb0: 70a2 ld ra,40(sp) + bb2: 8522 mv a0,s0 + bb4: 7402 ld s0,32(sp) + +0000000000000bb6 <.LVL9>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_dtoa_engine.c:166 + dtoa->flags = flags; + bb6: 00990223 sb s1,4(s2) +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_dtoa_engine.c:167 + dtoa->exp = exp; + bba: 00f92023 sw a5,0(s2) +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_dtoa_engine.c:169 +} + bbe: 64e2 ld s1,24(sp) + +0000000000000bc0 <.LVL10>: + bc0: 6942 ld s2,16(sp) + +0000000000000bc2 <.LVL11>: + bc2: 6145 addi sp,sp,48 + bc4: 8082 ret + +0000000000000bc6 <.L3>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_dtoa_engine.c:84 + else if (isnan(x)) + bc6: 27a2 fld fa5,8(sp) + bc8: a2f7a7d3 feq.d a5,fa5,fa5 + bcc: e781 bnez a5,bd4 <.L7> bcc: R_RISCV_RVC_BRANCH .L7 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_dtoa_engine.c:86 + flags |= DTOA_NAN; + bce: 0084e493 ori s1,s1,8 + +0000000000000bd2 <.LVL13>: + bd2: bfd1 j ba6 <.L39> bd2: R_RISCV_RVC_JUMP .L39 + +0000000000000bd4 <.L7>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_dtoa_engine.c:88 + else if (isinf(x)) + bd4: 27a2 fld fa5,8(sp) + bd6: 00000797 auipc a5,0x0 bd6: R_RISCV_PCREL_HI20 .LC1 + bd6: R_RISCV_RELAX *ABS* + bda: 0007b707 fld fa4,0(a5) # bd6 <.L7+0x2> bda: R_RISCV_PCREL_LO12_I .L0 + bda: R_RISCV_RELAX *ABS* + +0000000000000bde <.LVL15>: + bde: 22f7a7d3 fabs.d fa5,fa5 + be2: 00102773 frflags a4 + be6: a2f717d3 flt.d a5,fa4,fa5 + bea: 00171073 fsflags a4 + bee: c781 beqz a5,bf6 <.L8> bee: R_RISCV_RVC_BRANCH .L8 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_dtoa_engine.c:90 + flags |= DTOA_INF; + bf0: 0044e493 ori s1,s1,4 + bf4: bf4d j ba6 <.L39> bf4: R_RISCV_RVC_JUMP .L39 + +0000000000000bf6 <.L8>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_dtoa_engine.c:102 + if (x < MIN_MANT) + bf6: 27a2 fld fa5,8(sp) + bf8: 00000797 auipc a5,0x0 bf8: R_RISCV_PCREL_HI20 .LC2 + bf8: R_RISCV_RELAX *ABS* + bfc: 0007b707 fld fa4,0(a5) # bf8 <.L8+0x2> bfc: R_RISCV_PCREL_LO12_I .L0 + bfc: R_RISCV_RELAX *ABS* + c00: a2e797d3 flt.d a5,fa5,fa4 + c04: cfd5 beqz a5,cc0 <.L36> c04: R_RISCV_RVC_BRANCH .L36 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_dtoa_engine.c:107 + if (y < MAX_MANT) + c06: 00000597 auipc a1,0x0 c06: R_RISCV_PCREL_HI20 .LC3 + c06: R_RISCV_RELAX *ABS* + c0a: 0005b707 fld fa4,0(a1) # c06 <.L8+0x10> c0a: R_RISCV_PCREL_LO12_I .L0 + c0a: R_RISCV_RELAX *ABS* + +0000000000000c0e <.LVL18>: + c0e: 00000697 auipc a3,0x0 c0e: R_RISCV_PCREL_HI20 g_dtoa_scale_up + c0e: R_RISCV_RELAX *ABS* + c12: 00068693 mv a3,a3 c12: R_RISCV_PCREL_LO12_I .L0 + c12: R_RISCV_RELAX *ABS* +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_dtoa_engine.c:104 + for (i = DTOA_SCALE_UP_NUM - 1; i >= 0; i--) + c16: 4721 li a4,8 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_dtoa_engine.c:96 + exp = MIN_MANT_EXP; + c18: 47bd li a5,15 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_dtoa_engine.c:110 + exp -= (1 << i); + c1a: 4505 li a0,1 + +0000000000000c1c <.LVL19>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_dtoa_engine.c:104 + for (i = DTOA_SCALE_UP_NUM - 1; i >= 0; i--) + c1c: 55fd li a1,-1 + +0000000000000c1e <.L13>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_dtoa_engine.c:106 + y = x * g_dtoa_scale_up[i]; + c1e: 22bc fld fa5,64(a3) + c20: 26a2 fld fa3,8(sp) + c22: 12f6f7d3 fmul.d fa5,fa3,fa5 + +0000000000000c26 <.LVL21>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_dtoa_engine.c:107 + if (y < MAX_MANT) + c26: a2e79853 flt.d a6,fa5,fa4 + c2a: 00080763 beqz a6,c38 <.L11> c2a: R_RISCV_BRANCH .L11 + +0000000000000c2e <.LVL22>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_dtoa_engine.c:110 + exp -= (1 << i); + c2e: 00e5183b sllw a6,a0,a4 + c32: 410787bb subw a5,a5,a6 + +0000000000000c36 <.LVL23>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_dtoa_engine.c:109 + x = y; + c36: a43e fsd fa5,8(sp) + +0000000000000c38 <.L11>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_dtoa_engine.c:104 (discriminator 2) + for (i = DTOA_SCALE_UP_NUM - 1; i >= 0; i--) + c38: 377d addiw a4,a4,-1 + +0000000000000c3a <.LVL25>: + c3a: 16e1 addi a3,a3,-8 + c3c: feb711e3 bne a4,a1,c1e <.L13> c3c: R_RISCV_BRANCH .L13 + +0000000000000c40 <.L14>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_dtoa_engine.c:133 + if (max_decimals != 0) + c40: ce09 beqz a2,c5a <.L18> c40: R_RISCV_RVC_BRANCH .L18 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_dtoa_engine.c:135 + max_digits = MIN(max_digits, max_decimals + MAX(exp + 1, 0)); + c42: 873e mv a4,a5 + c44: 0007d363 bgez a5,c4a <.L19> c44: R_RISCV_BRANCH .L19 + c48: 577d li a4,-1 + +0000000000000c4a <.L19>: + c4a: 2705 addiw a4,a4,1 + c4c: 9f31 addw a4,a4,a2 + c4e: 863a mv a2,a4 + +0000000000000c50 <.LVL26>: + c50: 00e45363 bge s0,a4,c56 <.L20> c50: R_RISCV_BRANCH .L20 + c54: 8622 mv a2,s0 + +0000000000000c56 <.L20>: + c56: 0006041b sext.w s0,a2 + +0000000000000c5a <.L18>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_dtoa_engine.c:142 + x = x + g_dtoa_round[max_digits]; + c5a: 00341693 slli a3,s0,0x3 + c5e: 00000717 auipc a4,0x0 c5e: R_RISCV_PCREL_HI20 g_dtoa_round + c5e: R_RISCV_RELAX *ABS* + c62: 00070713 mv a4,a4 c62: R_RISCV_PCREL_LO12_I .L0 + c62: R_RISCV_RELAX *ABS* + c66: 9736 add a4,a4,a3 + c68: 231c fld fa5,0(a4) + +0000000000000c6a <.LVL28>: + c6a: 2722 fld fa4,8(sp) + c6c: 02f777d3 fadd.d fa5,fa4,fa5 + +0000000000000c70 <.LVL29>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_dtoa_engine.c:144 + if (x >= MAX_MANT) + c70: 00000717 auipc a4,0x0 c70: R_RISCV_PCREL_HI20 .LC3 + c70: R_RISCV_RELAX *ABS* + c74: 00073707 fld fa4,0(a4) # c70 <.LVL29> c74: R_RISCV_PCREL_LO12_I .L0 + c74: R_RISCV_RELAX *ABS* + c78: a2f70753 fle.d a4,fa4,fa5 + c7c: cb01 beqz a4,c8c <.L21> c7c: R_RISCV_RVC_BRANCH .L21 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_dtoa_engine.c:146 + x /= 10.0; + c7e: 00000717 auipc a4,0x0 c7e: R_RISCV_PCREL_HI20 .LC4 + c7e: R_RISCV_RELAX *ABS* + c82: 00073707 fld fa4,0(a4) # c7e <.LVL29+0xe> c82: R_RISCV_PCREL_LO12_I .L0 + c82: R_RISCV_RELAX *ABS* + c86: 1ae7f7d3 fdiv.d fa5,fa5,fa4 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_dtoa_engine.c:147 + exp++; + c8a: 2785 addiw a5,a5,1 + +0000000000000c8c <.L21>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_dtoa_engine.c:152 + uint64_t mant = (uint64_t)x; + c8c: c2379653 fcvt.lu.d a2,fa5,rtz + +0000000000000c90 <.LVL32>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_dtoa_engine.c:157 + for (i = 0; i < max_digits; i++) + c90: 4701 li a4,0 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_dtoa_engine.c:153 + uint64_t decimal = MIN_MANT_INT; + c92: 00000697 auipc a3,0x0 c92: R_RISCV_PCREL_HI20 .LC0 + c92: R_RISCV_RELAX *ABS* + c96: 0006b683 ld a3,0(a3) # c92 <.LVL32+0x2> c96: R_RISCV_PCREL_LO12_I .L0 + c96: R_RISCV_RELAX *ABS* +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_dtoa_engine.c:161 + decimal /= 10; + c9a: 4529 li a0,10 + +0000000000000c9c <.L23>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_dtoa_engine.c:157 (discriminator 1) + for (i = 0; i < max_digits; i++) + c9c: 0007059b sext.w a1,a4 + ca0: f085d4e3 bge a1,s0,ba8 <.L6> ca0: R_RISCV_BRANCH .L6 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_dtoa_engine.c:159 (discriminator 3) + dtoa->digits[i] = mant / decimal + '0'; + ca4: 02d655b3 divu a1,a2,a3 + ca8: 00e90833 add a6,s2,a4 + cac: 0705 addi a4,a4,1 + +0000000000000cae <.LVL34>: + cae: 0305859b addiw a1,a1,48 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_dtoa_engine.c:160 (discriminator 3) + mant %= decimal; + cb2: 02d67633 remu a2,a2,a3 + +0000000000000cb6 <.LVL35>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_dtoa_engine.c:159 (discriminator 3) + dtoa->digits[i] = mant / decimal + '0'; + cb6: 00b802a3 sb a1,5(a6) + +0000000000000cba <.LVL36>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_dtoa_engine.c:161 (discriminator 3) + decimal /= 10; + cba: 02a6d6b3 divu a3,a3,a0 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_dtoa_engine.c:157 (discriminator 3) + for (i = 0; i < max_digits; i++) + cbe: bff9 j c9c <.L23> cbe: R_RISCV_RVC_JUMP .L23 + +0000000000000cc0 <.L36>: + cc0: 00000697 auipc a3,0x0 cc0: R_RISCV_PCREL_HI20 g_dtoa_scale_down + cc0: R_RISCV_RELAX *ABS* + cc4: 00068693 mv a3,a3 cc4: R_RISCV_PCREL_LO12_I .L0 + cc4: R_RISCV_RELAX *ABS* +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_dtoa_engine.c:116 + for (i = DTOA_SCALE_DOWN_NUM - 1; i >= 0; i--) + cc8: 4721 li a4,8 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_dtoa_engine.c:96 + exp = MIN_MANT_EXP; + cca: 47bd li a5,15 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_dtoa_engine.c:122 + exp += (1 << i); + ccc: 4505 li a0,1 + +0000000000000cce <.LVL39>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_dtoa_engine.c:116 + for (i = DTOA_SCALE_DOWN_NUM - 1; i >= 0; i--) + cce: 55fd li a1,-1 + +0000000000000cd0 <.L17>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_dtoa_engine.c:118 + y = x * g_dtoa_scale_down[i]; + cd0: 22bc fld fa5,64(a3) + cd2: 26a2 fld fa3,8(sp) + cd4: 12f6f7d3 fmul.d fa5,fa3,fa5 + +0000000000000cd8 <.LVL41>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_dtoa_engine.c:119 + if (y >= MIN_MANT) + cd8: a2f70853 fle.d a6,fa4,fa5 + cdc: 00080763 beqz a6,cea <.L15> cdc: R_RISCV_BRANCH .L15 + +0000000000000ce0 <.LVL42>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_dtoa_engine.c:122 + exp += (1 << i); + ce0: 00e5183b sllw a6,a0,a4 + ce4: 00f807bb addw a5,a6,a5 + +0000000000000ce8 <.LVL43>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_dtoa_engine.c:121 + x = y; + ce8: a43e fsd fa5,8(sp) + +0000000000000cea <.L15>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_dtoa_engine.c:116 (discriminator 2) + for (i = DTOA_SCALE_DOWN_NUM - 1; i >= 0; i--) + cea: 377d addiw a4,a4,-1 + +0000000000000cec <.LVL45>: + cec: 16e1 addi a3,a3,-8 + cee: feb711e3 bne a4,a1,cd0 <.L17> cee: R_RISCV_BRANCH .L17 + cf2: b7b9 j c40 <.L14> cf2: R_RISCV_RVC_JUMP .L14 + +0000000000000cf4 : +exit(): +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_exit.c:94 + * Does not return. + * + ****************************************************************************/ + +void exit(int status) +{ + cf4: 1141 addi sp,sp,-16 + cf6: e022 sd s0,0(sp) +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_exit.c:100 + /* Mark the pthread as non-cancelable to avoid additional calls to + * pthread_exit() due to any cancellation point logic that might get + * kicked off by actions taken during pthread_exit processing. + */ + + task_setcancelstate(TASK_CANCEL_DISABLE, NULL); + cf8: 4581 li a1,0 +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_exit.c:94 +{ + cfa: 842a mv s0,a0 +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_exit.c:100 + task_setcancelstate(TASK_CANCEL_DISABLE, NULL); + cfc: 4505 li a0,1 + +0000000000000cfe <.LVL1>: +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_exit.c:94 +{ + cfe: e406 sd ra,8(sp) +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_exit.c:100 + task_setcancelstate(TASK_CANCEL_DISABLE, NULL); + d00: 00000097 auipc ra,0x0 d00: R_RISCV_CALL task_setcancelstate + d00: R_RISCV_RELAX *ABS* + d04: 000080e7 jalr ra # d00 <.LVL1+0x2> + +0000000000000d08 <.LVL2>: +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_exit.c:121 +#endif + +#ifdef CONFIG_FILE_STREAM + /* Flush all streams */ + + fflush(NULL); + d08: 4501 li a0,0 + d0a: 00000097 auipc ra,0x0 d0a: R_RISCV_CALL fflush + d0a: R_RISCV_RELAX *ABS* + d0e: 000080e7 jalr ra # d0a <.LVL2+0x2> + +0000000000000d12 <.LVL3>: +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_exit.c:126 +#endif + + /* Then perform the exit */ + + _exit(status); + d12: 8522 mv a0,s0 + d14: 00000097 auipc ra,0x0 d14: R_RISCV_CALL _exit + d14: R_RISCV_RELAX *ABS* + d18: 000080e7 jalr ra # d14 <.LVL3+0x2> + +0000000000000d1c : +quick_exit(): +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_exit.c:147 + * Does not return. + * + ****************************************************************************/ + +void quick_exit(int status) +{ + d1c: 1141 addi sp,sp,-16 + d1e: e022 sd s0,0(sp) +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_exit.c:153 + /* Mark the pthread as non-cancelable to avoid additional calls to + * pthread_exit() due to any cancellation point logic that might get + * kicked off by actions taken during pthread_exit processing. + */ + + task_setcancelstate(TASK_CANCEL_DISABLE, NULL); + d20: 4581 li a1,0 +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_exit.c:147 +{ + d22: 842a mv s0,a0 +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_exit.c:153 + task_setcancelstate(TASK_CANCEL_DISABLE, NULL); + d24: 4505 li a0,1 + +0000000000000d26 <.LVL6>: +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_exit.c:147 +{ + d26: e406 sd ra,8(sp) +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_exit.c:153 + task_setcancelstate(TASK_CANCEL_DISABLE, NULL); + d28: 00000097 auipc ra,0x0 d28: R_RISCV_CALL task_setcancelstate + d28: R_RISCV_RELAX *ABS* + d2c: 000080e7 jalr ra # d28 <.LVL6+0x2> + +0000000000000d30 <.LVL7>: +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_exit.c:169 + + atexit_call_exitfuncs(status, true); + + /* Then perform the exit */ + + _exit(status); + d30: 8522 mv a0,s0 + d32: 00000097 auipc ra,0x0 d32: R_RISCV_CALL _exit + d32: R_RISCV_RELAX *ABS* + d36: 000080e7 jalr ra # d32 <.LVL7+0x2> + +0000000000000d3a <_Exit>: +_Exit(): +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_exit.c:190 + * Does not return. + * + ****************************************************************************/ + +void _Exit(int status) +{ + d3a: 1141 addi sp,sp,-16 + d3c: e406 sd ra,8(sp) +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_exit.c:191 + _exit(status); + d3e: 00000097 auipc ra,0x0 d3e: R_RISCV_CALL _exit + d3e: R_RISCV_RELAX *ABS* + d42: 000080e7 jalr ra # d3e <_Exit+0x4> + +0000000000000d46 : +rawoutstream_puts(): +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_rawoutstream.c:45 + * Name: rawoutstream_puts + ****************************************************************************/ + +static int rawoutstream_puts(FAR struct lib_outstream_s *self, + FAR const void *buf, int len) +{ + d46: 7179 addi sp,sp,-48 + d48: f022 sd s0,32(sp) + d4a: ec26 sd s1,24(sp) + d4c: e84a sd s2,16(sp) + d4e: e44e sd s3,8(sp) + d50: f406 sd ra,40(sp) + d52: 842a mv s0,a0 + d54: 84ae mv s1,a1 + +0000000000000d56 <.LVL1>: + d56: 8932 mv s2,a2 +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_rawoutstream.c:67 + */ + + nwritten = _NX_GETERRVAL(nwritten); + DEBUGASSERT(nwritten < 0); + } + while (nwritten == -EINTR); + d58: 4991 li s3,4 + +0000000000000d5a <.L5>: +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_rawoutstream.c:52 + nwritten = _NX_WRITE(stream->fd, buf, len); + d5a: 5008 lw a0,32(s0) + d5c: 864a mv a2,s2 + d5e: 85a6 mv a1,s1 + d60: 00000097 auipc ra,0x0 d60: R_RISCV_CALL write + d60: R_RISCV_RELAX *ABS* + d64: 000080e7 jalr ra # d60 <.L5+0x6> + +0000000000000d68 <.LVL3>: + d68: 2501 sext.w a0,a0 + +0000000000000d6a <.LVL4>: +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_rawoutstream.c:53 + if (nwritten >= 0) + d6a: 00054c63 bltz a0,d82 <.L2> d6a: R_RISCV_BRANCH .L2 +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_rawoutstream.c:55 + self->nput += nwritten; + d6e: 401c lw a5,0(s0) + d70: 9fa9 addw a5,a5,a0 + d72: c01c sw a5,0(s0) + +0000000000000d74 <.L3>: +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_rawoutstream.c:70 + + return nwritten; +} + d74: 70a2 ld ra,40(sp) + d76: 7402 ld s0,32(sp) + +0000000000000d78 <.LVL6>: + d78: 64e2 ld s1,24(sp) + +0000000000000d7a <.LVL7>: + d7a: 6942 ld s2,16(sp) + d7c: 69a2 ld s3,8(sp) + d7e: 6145 addi sp,sp,48 + d80: 8082 ret + +0000000000000d82 <.L2>: +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_rawoutstream.c:64 + nwritten = _NX_GETERRVAL(nwritten); + d82: 00000097 auipc ra,0x0 d82: R_RISCV_CALL __errno + d82: R_RISCV_RELAX *ABS* + d86: 000080e7 jalr ra # d82 <.L2> + +0000000000000d8a <.LVL9>: + d8a: 411c lw a5,0(a0) + +0000000000000d8c <.LVL10>: +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_rawoutstream.c:65 + DEBUGASSERT(nwritten < 0); + d8c: 02f04063 bgtz a5,dac <.L4> d8c: R_RISCV_BRANCH .L4 + +0000000000000d90 <.LBB4>: + d90: 00000617 auipc a2,0x0 d90: R_RISCV_PCREL_HI20 .LC0 + d90: R_RISCV_RELAX *ABS* + d94: 00060613 mv a2,a2 d94: R_RISCV_PCREL_LO12_I .L0 + d94: R_RISCV_RELAX *ABS* + d98: 04100593 li a1,65 + d9c: 00000517 auipc a0,0x0 d9c: R_RISCV_PCREL_HI20 .LC1 + d9c: R_RISCV_RELAX *ABS* + da0: 00050513 mv a0,a0 da0: R_RISCV_PCREL_LO12_I .L0 + da0: R_RISCV_RELAX *ABS* + da4: 00000097 auipc ra,0x0 da4: R_RISCV_CALL __assert + da4: R_RISCV_RELAX *ABS* + da8: 000080e7 jalr ra # da4 <.LBB4+0x14> + +0000000000000dac <.L4>: +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_rawoutstream.c:67 (discriminator 2) + while (nwritten == -EINTR); + dac: fb3787e3 beq a5,s3,d5a <.L5> dac: R_RISCV_BRANCH .L5 +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_rawoutstream.c:64 + nwritten = _NX_GETERRVAL(nwritten); + db0: 40f0053b negw a0,a5 + db4: b7c1 j d74 <.L3> db4: R_RISCV_RVC_JUMP .L3 + +0000000000000db6 : +rawoutstream_putc(): +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_rawoutstream.c:77 +/**************************************************************************** + * Name: rawoutstream_putc + ****************************************************************************/ + +static void rawoutstream_putc(FAR struct lib_outstream_s *self, int ch) +{ + db6: 1101 addi sp,sp,-32 +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_rawoutstream.c:78 + char tmp = ch; + db8: 00b107a3 sb a1,15(sp) +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_rawoutstream.c:79 + rawoutstream_puts(self, &tmp, 1); + dbc: 4605 li a2,1 + dbe: 00f10593 addi a1,sp,15 + +0000000000000dc2 <.LVL14>: +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_rawoutstream.c:77 +{ + dc2: ec06 sd ra,24(sp) +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_rawoutstream.c:79 + rawoutstream_puts(self, &tmp, 1); + dc4: 00000097 auipc ra,0x0 dc4: R_RISCV_CALL rawoutstream_puts + dc4: R_RISCV_RELAX *ABS* + dc8: 000080e7 jalr ra # dc4 <.LVL14+0x2> + +0000000000000dcc <.LVL15>: +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_rawoutstream.c:80 +} + dcc: 60e2 ld ra,24(sp) + dce: 6105 addi sp,sp,32 + dd0: 8082 ret + +0000000000000dd2 : +lib_rawoutstream(): +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_rawoutstream.c:105 + * + ****************************************************************************/ + +void lib_rawoutstream(FAR struct lib_rawoutstream_s *stream, int fd) +{ + stream->common.putc = rawoutstream_putc; + dd2: 00000797 auipc a5,0x0 dd2: R_RISCV_PCREL_HI20 rawoutstream_putc + dd2: R_RISCV_RELAX *ABS* + dd6: 00078793 mv a5,a5 dd6: R_RISCV_PCREL_LO12_I .L0 + dd6: R_RISCV_RELAX *ABS* + dda: e51c sd a5,8(a0) +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_rawoutstream.c:106 + stream->common.puts = rawoutstream_puts; + ddc: 00000797 auipc a5,0x0 ddc: R_RISCV_PCREL_HI20 rawoutstream_puts + ddc: R_RISCV_RELAX *ABS* + de0: 00078793 mv a5,a5 de0: R_RISCV_PCREL_LO12_I .L0 + de0: R_RISCV_RELAX *ABS* + de4: e91c sd a5,16(a0) +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_rawoutstream.c:107 + stream->common.flush = lib_noflush; + de6: 00000797 auipc a5,0x0 de6: R_RISCV_PCREL_HI20 lib_noflush + de6: R_RISCV_RELAX *ABS* + dea: 00078793 mv a5,a5 dea: R_RISCV_PCREL_LO12_I .L0 + dea: R_RISCV_RELAX *ABS* + dee: ed1c sd a5,24(a0) +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_rawoutstream.c:108 + stream->common.nput = 0; + df0: 00052023 sw zero,0(a0) # d9c <.LBB4+0xc> +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_rawoutstream.c:109 + stream->fd = fd; + df4: d10c sw a1,32(a0) +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_rawoutstream.c:110 +} + df6: 8082 ret + +0000000000000df8 : +lib_noflush(): +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_libnoflush.c:57 + +int lib_noflush(FAR struct lib_outstream_s *self) +{ + UNUSED(self); + return OK; +} + df8: 4501 li a0,0 + +0000000000000dfa <.LVL1>: + dfa: 8082 ret + +0000000000000dfc : +bufferedoutstream_flush(): +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_bufferedoutstream.c:44 +/**************************************************************************** + * Name: bufferedoutstream_flush + ****************************************************************************/ + +static int bufferedoutstream_flush(FAR struct lib_outstream_s *self) +{ + dfc: 1141 addi sp,sp,-16 + dfe: e022 sd s0,0(sp) + e00: e406 sd ra,8(sp) + e02: 842a mv s0,a0 +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_bufferedoutstream.c:49 + FAR struct lib_bufferedoutstream_s *stream = + (FAR struct lib_bufferedoutstream_s *)self; + int ret = OK; + + ret = lib_stream_puts(stream->backend, stream->buffer, + e04: 7108 ld a0,32(a0) + +0000000000000e06 <.LVL1>: + e06: 5410 lw a2,40(s0) + e08: 02c40593 addi a1,s0,44 + e0c: 691c ld a5,16(a0) + e0e: 9782 jalr a5 + +0000000000000e10 <.LVL2>: +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_bufferedoutstream.c:52 + stream->pending); + + if (ret >= 0) + e10: 00054463 bltz a0,e18 <.L2> e10: R_RISCV_BRANCH .L2 +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_bufferedoutstream.c:54 + { + stream->pending = 0; + e14: 02042423 sw zero,40(s0) + +0000000000000e18 <.L2>: +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_bufferedoutstream.c:58 + } + + return ret; +} + e18: 60a2 ld ra,8(sp) + e1a: 6402 ld s0,0(sp) + +0000000000000e1c <.LVL3>: + e1c: 0141 addi sp,sp,16 + e1e: 8082 ret + +0000000000000e20 : +bufferedoutstream_puts(): +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_bufferedoutstream.c:66 + * Name: bufferedoutstream_puts + ****************************************************************************/ + +static int bufferedoutstream_puts(FAR struct lib_outstream_s *self, + FAR const void *buf, int len) +{ + e20: 1101 addi sp,sp,-32 + e22: e822 sd s0,16(sp) + e24: e426 sd s1,8(sp) + e26: ec06 sd ra,24(sp) + e28: e04a sd s2,0(sp) +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_bufferedoutstream.c:71 + FAR struct lib_bufferedoutstream_s *stream = + (FAR struct lib_bufferedoutstream_s *)self; + int ret = len; + + if (stream->pending + len <= CONFIG_STREAM_OUT_BUFFER_SIZE) + e2a: 551c lw a5,40(a0) + e2c: 04000713 li a4,64 +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_bufferedoutstream.c:66 +{ + e30: 842a mv s0,a0 +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_bufferedoutstream.c:71 + if (stream->pending + len <= CONFIG_STREAM_OUT_BUFFER_SIZE) + e32: 00c786bb addw a3,a5,a2 +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_bufferedoutstream.c:66 +{ + e36: 84b2 mv s1,a2 +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_bufferedoutstream.c:71 + if (stream->pending + len <= CONFIG_STREAM_OUT_BUFFER_SIZE) + e38: 02d74363 blt a4,a3,e5e <.L5> e38: R_RISCV_BRANCH .L5 +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_bufferedoutstream.c:75 + { + /* If buffer is enough to save incoming data, cache it */ + + memcpy(stream->buffer + stream->pending, buf, len); + e3c: 02c50513 addi a0,a0,44 + +0000000000000e40 <.LVL5>: + e40: 953e add a0,a0,a5 + e42: 00000097 auipc ra,0x0 e42: R_RISCV_CALL memcpy + e42: R_RISCV_RELAX *ABS* + e46: 000080e7 jalr ra # e42 <.LVL5+0x2> + +0000000000000e4a <.LVL6>: +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_bufferedoutstream.c:76 + stream->pending += len; + e4a: 541c lw a5,40(s0) +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_bufferedoutstream.c:69 + int ret = len; + e4c: 8526 mv a0,s1 +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_bufferedoutstream.c:76 + stream->pending += len; + e4e: 9fa5 addw a5,a5,s1 + e50: d41c sw a5,40(s0) + +0000000000000e52 <.L6>: +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_bufferedoutstream.c:90 + ret = lib_stream_puts(stream->backend, buf, len); + } + } + + return ret; +} + e52: 60e2 ld ra,24(sp) + e54: 6442 ld s0,16(sp) + +0000000000000e56 <.LVL8>: + e56: 64a2 ld s1,8(sp) + e58: 6902 ld s2,0(sp) + e5a: 6105 addi sp,sp,32 + e5c: 8082 ret + +0000000000000e5e <.L5>: +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_bufferedoutstream.c:82 + ret = lib_stream_flush(self); + e5e: 6d1c ld a5,24(a0) + e60: 892e mv s2,a1 + +0000000000000e62 <.LVL10>: + e62: 9782 jalr a5 + +0000000000000e64 <.LVL11>: +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_bufferedoutstream.c:83 + if (ret >= 0) + e64: fe0547e3 bltz a0,e52 <.L6> e64: R_RISCV_BRANCH .L6 +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_bufferedoutstream.c:85 + ret = lib_stream_puts(stream->backend, buf, len); + e68: 7008 ld a0,32(s0) + +0000000000000e6a <.LBE4>: +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_bufferedoutstream.c:90 +} + e6a: 6442 ld s0,16(sp) + +0000000000000e6c <.LVL13>: + e6c: 60e2 ld ra,24(sp) + +0000000000000e6e <.LBB8>: +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_bufferedoutstream.c:85 + ret = lib_stream_puts(stream->backend, buf, len); + e6e: 691c ld a5,16(a0) + e70: 8626 mv a2,s1 + e72: 85ca mv a1,s2 + +0000000000000e74 <.LBE8>: +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_bufferedoutstream.c:90 +} + e74: 64a2 ld s1,8(sp) + +0000000000000e76 <.LVL14>: + e76: 6902 ld s2,0(sp) + +0000000000000e78 <.LVL15>: + e78: 6105 addi sp,sp,32 + +0000000000000e7a <.LBB9>: +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_bufferedoutstream.c:85 + ret = lib_stream_puts(stream->backend, buf, len); + e7a: 8782 jr a5 + +0000000000000e7c : +bufferedoutstream_putc(): +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_bufferedoutstream.c:97 +/**************************************************************************** + * Name: bufferedoutstream_putc + ****************************************************************************/ + +static void bufferedoutstream_putc(FAR struct lib_outstream_s *self, int ch) +{ + e7c: 1101 addi sp,sp,-32 +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_bufferedoutstream.c:98 + char c = ch; + e7e: 00b107a3 sb a1,15(sp) +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_bufferedoutstream.c:100 + + bufferedoutstream_puts(self, &c, 1); + e82: 4605 li a2,1 + e84: 00f10593 addi a1,sp,15 + +0000000000000e88 <.LVL18>: +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_bufferedoutstream.c:97 +{ + e88: ec06 sd ra,24(sp) +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_bufferedoutstream.c:100 + bufferedoutstream_puts(self, &c, 1); + e8a: 00000097 auipc ra,0x0 e8a: R_RISCV_CALL bufferedoutstream_puts + e8a: R_RISCV_RELAX *ABS* + e8e: 000080e7 jalr ra # e8a <.LVL18+0x2> + +0000000000000e92 <.LVL19>: +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_bufferedoutstream.c:101 +} + e92: 60e2 ld ra,24(sp) + e94: 6105 addi sp,sp,32 + e96: 8082 ret + +0000000000000e98 : +lib_bufferedoutstream(): +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_bufferedoutstream.c:114 + ****************************************************************************/ + +void lib_bufferedoutstream(FAR struct lib_bufferedoutstream_s *stream, + FAR struct lib_outstream_s *backend) +{ + stream->common.putc = bufferedoutstream_putc; + e98: 00000797 auipc a5,0x0 e98: R_RISCV_PCREL_HI20 bufferedoutstream_putc + e98: R_RISCV_RELAX *ABS* + e9c: 00078793 mv a5,a5 e9c: R_RISCV_PCREL_LO12_I .L0 + e9c: R_RISCV_RELAX *ABS* + ea0: e51c sd a5,8(a0) +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_bufferedoutstream.c:115 + stream->common.puts = bufferedoutstream_puts; + ea2: 00000797 auipc a5,0x0 ea2: R_RISCV_PCREL_HI20 bufferedoutstream_puts + ea2: R_RISCV_RELAX *ABS* + ea6: 00078793 mv a5,a5 ea6: R_RISCV_PCREL_LO12_I .L0 + ea6: R_RISCV_RELAX *ABS* + eaa: e91c sd a5,16(a0) +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_bufferedoutstream.c:116 + stream->common.flush = bufferedoutstream_flush; + eac: 00000797 auipc a5,0x0 eac: R_RISCV_PCREL_HI20 bufferedoutstream_flush + eac: R_RISCV_RELAX *ABS* + eb0: 00078793 mv a5,a5 eb0: R_RISCV_PCREL_LO12_I .L0 + eb0: R_RISCV_RELAX *ABS* + eb4: ed1c sd a5,24(a0) +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_bufferedoutstream.c:117 + stream->common.nput = 0; + eb6: 00052023 sw zero,0(a0) +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_bufferedoutstream.c:118 + stream->backend = backend; + eba: f10c sd a1,32(a0) +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_bufferedoutstream.c:119 + stream->pending = 0; + ebc: 02052423 sw zero,40(a0) +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_bufferedoutstream.c:120 +} + ec0: 8082 ret + +0000000000000ec2 : +memset(): +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_memset.c:71 + uint64_t val64 = ((uint64_t)val32 << 32) | (uint64_t)val32; +#endif + + /* Make sure that there is something to be cleared */ + + if (n > 0) + ec2: c669 beqz a2,f8c <.L18> ec2: R_RISCV_RVC_BRANCH .L18 +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_memset.c:75 + { + /* Align to a 16-bit boundary */ + + if ((addr & 1) != 0) + ec4: 00157713 andi a4,a0,1 +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_memset.c:62 + uintptr_t addr = (uintptr_t)s; + ec8: 87aa mv a5,a0 +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_memset.c:75 + if ((addr & 1) != 0) + eca: cf4d beqz a4,f84 <.L4> eca: R_RISCV_RVC_BRANCH .L4 +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_memset.c:77 + { + *(FAR uint8_t *)addr = (uint8_t)c; + ecc: 00b50023 sb a1,0(a0) +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_memset.c:79 + addr += 1; + n -= 1; + ed0: 167d addi a2,a2,-1 + +0000000000000ed2 <.LVL1>: +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_memset.c:84 + } + + /* Check if there are at least 16-bits left to be written */ + + if (n >= 2) + ed2: 4705 li a4,1 +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_memset.c:78 + addr += 1; + ed4: 00150793 addi a5,a0,1 + +0000000000000ed8 <.LVL2>: +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_memset.c:84 + if (n >= 2) + ed8: 08c77863 bgeu a4,a2,f68 <.L5> ed8: R_RISCV_BRANCH .L5 + +0000000000000edc <.L14>: +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_memset.c:63 + uint16_t val16 = ((uint16_t)c << 8) | (uint16_t)c; + edc: 010006b7 lui a3,0x1000 + ee0: f0068693 addi a3,a3,-256 # ffff00 <.Ldebug_info0+0xfc9e3b> + ee4: 0085971b slliw a4,a1,0x8 + ee8: 8f75 and a4,a4,a3 + eea: 8f4d or a4,a4,a1 + eec: 1742 slli a4,a4,0x30 +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_memset.c:90 + { + /* Align to a 32-bit boundary (we know that the destination + * address is already aligned to at least a 16-bit boundary). + */ + + if ((addr & 3) != 0) + eee: 0037f693 andi a3,a5,3 +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_memset.c:63 + uint16_t val16 = ((uint16_t)c << 8) | (uint16_t)c; + ef2: 9341 srli a4,a4,0x30 +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_memset.c:90 + if ((addr & 3) != 0) + ef4: c6c1 beqz a3,f7c <.L6> ef4: R_RISCV_RVC_BRANCH .L6 +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_memset.c:92 + { + *(FAR uint16_t *)addr = val16; + ef6: 00e79023 sh a4,0(a5) # eac +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_memset.c:94 + addr += 2; + n -= 2; + efa: 1679 addi a2,a2,-2 + +0000000000000efc <.LVL3>: +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_memset.c:109 + n -= 4; + } +#else + /* Check if there are at least 32-bits left to be written */ + + if (n >= 4) + efc: 468d li a3,3 +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_memset.c:93 + addr += 2; + efe: 0789 addi a5,a5,2 + +0000000000000f00 <.LVL4>: +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_memset.c:109 + if (n >= 4) + f00: 04c6fd63 bgeu a3,a2,f5a <.L7> f00: R_RISCV_BRANCH .L7 + +0000000000000f04 <.L12>: +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_memset.c:64 + uint32_t val32 = ((uint32_t)val16 << 16) | (uint32_t)val16; + f04: 0107181b slliw a6,a4,0x10 + f08: 01076833 or a6,a4,a6 +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_memset.c:115 + { + /* Align to a 64-bit boundary (we know that the destination + * address is already aligned to at least a 32-bit boundary). + */ + + if ((addr & 7) != 0) + f0c: 0077f893 andi a7,a5,7 +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_memset.c:64 + uint32_t val32 = ((uint32_t)val16 << 16) | (uint32_t)val16; + f10: 2801 sext.w a6,a6 +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_memset.c:115 + if ((addr & 7) != 0) + f12: 86b2 mv a3,a2 + f14: 00088663 beqz a7,f20 <.L8> f14: R_RISCV_BRANCH .L8 +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_memset.c:117 + { + *(FAR uint32_t *)addr = val32; + f18: 0107a023 sw a6,0(a5) +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_memset.c:119 + addr += 4; + n -= 4; + f1c: 16f1 addi a3,a3,-4 +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_memset.c:118 + addr += 4; + f1e: 0791 addi a5,a5,4 + +0000000000000f20 <.L8>: +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_memset.c:66 + uint64_t val64 = ((uint64_t)val32 << 32) | (uint64_t)val32; + f20: 02081893 slli a7,a6,0x20 + f24: 02081613 slli a2,a6,0x20 + f28: 0208d893 srli a7,a7,0x20 + f2c: 011668b3 or a7,a2,a7 +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_memset.c:124 + } + + /* Loop while there are at least 64-bits left to be written */ + + while (n >= 8) + f30: 431d li t1,7 +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_memset.c:66 + uint64_t val64 = ((uint64_t)val32 << 32) | (uint64_t)val32; + f32: 8636 mv a2,a3 +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_memset.c:126 + { + *(FAR uint64_t *)addr = val64; + f34: 00d78e33 add t3,a5,a3 + +0000000000000f38 <.L9>: +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_memset.c:124 + while (n >= 8) + f38: 02c36c63 bltu t1,a2,f70 <.L10> f38: R_RISCV_BRANCH .L10 + f3c: 0036d613 srli a2,a3,0x3 + +0000000000000f40 <.LVL7>: + f40: 58e1 li a7,-8 + f42: 03160633 mul a2,a2,a7 + f46: 9636 add a2,a2,a3 + f48: 9ae1 andi a3,a3,-8 + f4a: 97b6 add a5,a5,a3 + +0000000000000f4c <.LVL8>: +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_memset.c:139 +#ifdef CONFIG_MEMSET_64BIT + /* We may get here with n in the range 0..7. If n >= 4, then we should + * have 64-bit alignment. + */ + + if (n >= 4) + f4c: 468d li a3,3 + f4e: 00c6f663 bgeu a3,a2,f5a <.L7> f4e: R_RISCV_BRANCH .L7 +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_memset.c:141 + { + *(FAR uint32_t *)addr = val32; + f52: 0107a023 sw a6,0(a5) +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_memset.c:143 + addr += 4; + n -= 4; + f56: 1671 addi a2,a2,-4 + +0000000000000f58 <.LVL9>: +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_memset.c:142 + addr += 4; + f58: 0791 addi a5,a5,4 + +0000000000000f5a <.L7>: +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_memset.c:155 + * n = 1, addr is aligned to at least a 16-bit boundary + * n = 2, addr is aligned to a 32-bit boundary + * n = 3, addr is aligned to a 32-bit boundary + */ + + if (n >= 2) + f5a: 4685 li a3,1 + f5c: 00c6f663 bgeu a3,a2,f68 <.L5> f5c: R_RISCV_BRANCH .L5 + +0000000000000f60 <.L13>: +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_memset.c:157 + { + *(FAR uint16_t *)addr = val16; + f60: 00e79023 sh a4,0(a5) +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_memset.c:159 + addr += 2; + n -= 2; + f64: 1679 addi a2,a2,-2 + +0000000000000f66 <.LVL11>: +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_memset.c:158 + addr += 2; + f66: 0789 addi a5,a5,2 + +0000000000000f68 <.L5>: +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_memset.c:162 + } + + if (n >= 1) + f68: c215 beqz a2,f8c <.L18> f68: R_RISCV_RVC_BRANCH .L18 + +0000000000000f6a <.L15>: +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_memset.c:164 + { + *(FAR uint8_t *)addr = (uint8_t)c; + f6a: 00b78023 sb a1,0(a5) +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_memset.c:173 + /* This version is optimized for size */ + + FAR unsigned char *p = (FAR unsigned char *)s; + while (n-- > 0) *p++ = c; +#endif + return s; + f6e: 8082 ret + +0000000000000f70 <.L10>: +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_memset.c:126 + *(FAR uint64_t *)addr = val64; + f70: 40ce0eb3 sub t4,t3,a2 + f74: 011eb023 sd a7,0(t4) + +0000000000000f78 <.LVL15>: +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_memset.c:128 + n -= 8; + f78: 1661 addi a2,a2,-8 + +0000000000000f7a <.LVL16>: + f7a: bf7d j f38 <.L9> f7a: R_RISCV_RVC_JUMP .L9 + +0000000000000f7c <.L6>: +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_memset.c:109 + if (n >= 4) + f7c: 468d li a3,3 + f7e: f8c6e3e3 bltu a3,a2,f04 <.L12> f7e: R_RISCV_BRANCH .L12 + f82: bff9 j f60 <.L13> f82: R_RISCV_RVC_JUMP .L13 + +0000000000000f84 <.L4>: +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_memset.c:84 + if (n >= 2) + f84: 4705 li a4,1 + f86: f4e61be3 bne a2,a4,edc <.L14> f86: R_RISCV_BRANCH .L14 + f8a: b7c5 j f6a <.L15> f8a: R_RISCV_RVC_JUMP .L15 + +0000000000000f8c <.L18>: +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_memset.c:174 +} + f8c: 8082 ret + +0000000000000f8e : +strnlen(): +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_strnlen.c:40 +#if !defined(CONFIG_LIBC_ARCH_STRNLEN) && defined(LIBC_BUILD_STRNLEN) +#undef strnlen /* See mm/README.txt */ +size_t strnlen(FAR const char *s, size_t maxlen) +{ + FAR const char *sc; + for (sc = s; maxlen != 0 && *sc != '\0'; maxlen--, ++sc); + f8e: 95aa add a1,a1,a0 + +0000000000000f90 <.LVL1>: + f90: 87aa mv a5,a0 + +0000000000000f92 <.L2>: +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_strnlen.c:40 (discriminator 1) + f92: 00b78563 beq a5,a1,f9c <.L5> f92: R_RISCV_BRANCH .L5 +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_strnlen.c:40 (discriminator 3) + f96: 0007c703 lbu a4,0(a5) + f9a: e701 bnez a4,fa2 <.L4> f9a: R_RISCV_RVC_BRANCH .L4 + +0000000000000f9c <.L5>: +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_strnlen.c:41 + return sc - s; + f9c: 40a78533 sub a0,a5,a0 + +0000000000000fa0 <.LVL3>: +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_strnlen.c:42 +} + fa0: 8082 ret + +0000000000000fa2 <.L4>: +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_strnlen.c:40 (discriminator 4) + for (sc = s; maxlen != 0 && *sc != '\0'; maxlen--, ++sc); + fa2: 0785 addi a5,a5,1 + +0000000000000fa4 <.LVL5>: + fa4: b7fd j f92 <.L2> fa4: R_RISCV_RVC_JUMP .L2 + +0000000000000fa6 : +memcpy(): +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_memcpy.c:46 +no_builtin("memcpy") +FAR void *memcpy(FAR void *dest, FAR const void *src, size_t n) +{ + FAR unsigned char *pout = (FAR unsigned char *)dest; + FAR unsigned char *pin = (FAR unsigned char *)src; + while (n-- > 0) + fa6: 4781 li a5,0 + +0000000000000fa8 <.L2>: + fa8: 00f61363 bne a2,a5,fae <.L3> fa8: R_RISCV_BRANCH .L3 +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_memcpy.c:52 + { + *pout++ = *pin++; + } + + return dest; +} + fac: 8082 ret + +0000000000000fae <.L3>: +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_memcpy.c:48 + *pout++ = *pin++; + fae: 00f58733 add a4,a1,a5 + fb2: 00074683 lbu a3,0(a4) + fb6: 00f50733 add a4,a0,a5 + fba: 0785 addi a5,a5,1 + +0000000000000fbc <.LVL3>: + fbc: 00d70023 sb a3,0(a4) + fc0: b7e5 j fa8 <.L2> fc0: R_RISCV_RVC_JUMP .L2 + +0000000000000fc2 <__assert>: +__assert(): +/Users/Luppy/ox64/nuttx/libs/libc/assert/lib_assert.c:35 +/**************************************************************************** + * Public Functions + ****************************************************************************/ + +void __assert(FAR const char *filename, int linenum, FAR const char *msg) +{ + fc2: 1141 addi sp,sp,-16 +/Users/Luppy/ox64/nuttx/libs/libc/assert/lib_assert.c:36 + _assert(filename, linenum, msg, NULL); + fc4: 4681 li a3,0 +/Users/Luppy/ox64/nuttx/libs/libc/assert/lib_assert.c:35 +{ + fc6: e406 sd ra,8(sp) +/Users/Luppy/ox64/nuttx/libs/libc/assert/lib_assert.c:36 + _assert(filename, linenum, msg, NULL); + fc8: 00000097 auipc ra,0x0 fc8: R_RISCV_CALL _assert + fc8: R_RISCV_RELAX *ABS* + fcc: 000080e7 jalr ra # fc8 <__assert+0x6> + +0000000000000fd0 <.LVL1>: +/Users/Luppy/ox64/nuttx/libs/libc/assert/lib_assert.c:37 + abort(); + fd0: 00000097 auipc ra,0x0 fd0: R_RISCV_CALL abort + fd0: R_RISCV_RELAX *ABS* + fd4: 000080e7 jalr ra # fd0 <.LVL1> + +0000000000000fd8 <__errno>: +__errno(): +/Users/Luppy/ox64/nuttx/libs/libc/errno/lib_errno.c:59 + +FAR int *__errno(void) +{ + /* Get the TLS tls_info_s structure instance for this thread */ + + FAR struct tls_info_s *tlsinfo = tls_get_info(); + fd8: 7779 lui a4,0xffffe + +0000000000000fda <.LBB7>: +up_getsp(): +/Users/Luppy/ox64/nuttx/include/arch/irq.h:601 +/* Return the current value of the stack pointer */ + +static inline uintptr_t up_getsp(void) +{ + register uintptr_t sp; + __asm__ + fda: 878a mv a5,sp + +0000000000000fdc <.LBE7>: +__errno(): +/Users/Luppy/ox64/nuttx/libs/libc/errno/lib_errno.c:59 + fdc: 8ff9 and a5,a5,a4 +/Users/Luppy/ox64/nuttx/libs/libc/errno/lib_errno.c:63 + + /* And return the return reference to the error number */ + + return tlsinfo ? &tlsinfo->tl_errno : &g_errno; + fde: 00000517 auipc a0,0x0 fde: R_RISCV_PCREL_HI20 .LANCHOR0 + fde: R_RISCV_RELAX *ABS* + fe2: 00050513 mv a0,a0 fe2: R_RISCV_PCREL_LO12_I .L0 + fe2: R_RISCV_RELAX *ABS* + fe6: c399 beqz a5,fec <.L1> fe6: R_RISCV_RVC_BRANCH .L1 +/Users/Luppy/ox64/nuttx/libs/libc/errno/lib_errno.c:63 (discriminator 1) + fe8: 00c78513 addi a0,a5,12 + +0000000000000fec <.L1>: +/Users/Luppy/ox64/nuttx/libs/libc/errno/lib_errno.c:64 +} + fec: 8082 ret + +0000000000000fee : +task_setcancelstate(): +/Users/Luppy/ox64/nuttx/libs/libc/sched/task_setcancelstate.c:64 + * errno value set appropriately. + * + ****************************************************************************/ + +int task_setcancelstate(int state, FAR int *oldstate) +{ + fee: 1141 addi sp,sp,-16 +/Users/Luppy/ox64/nuttx/libs/libc/sched/task_setcancelstate.c:65 + FAR struct tls_info_s *tls = tls_get_info(); + ff0: 7779 lui a4,0xffffe +/Users/Luppy/ox64/nuttx/libs/libc/sched/task_setcancelstate.c:64 +{ + ff2: e406 sd ra,8(sp) + +0000000000000ff4 <.LBB7>: +up_getsp(): +/Users/Luppy/ox64/nuttx/include/arch/irq.h:601 + ff4: 878a mv a5,sp + +0000000000000ff6 <.LBE7>: +task_setcancelstate(): +/Users/Luppy/ox64/nuttx/libs/libc/sched/task_setcancelstate.c:65 + FAR struct tls_info_s *tls = tls_get_info(); + ff6: 8ff9 and a5,a5,a4 + +0000000000000ff8 <.LVL2>: +/Users/Luppy/ox64/nuttx/libs/libc/sched/task_setcancelstate.c:70 + int ret = OK; + + /* Return the current state if so requested */ + + if (oldstate != NULL) + ff8: c599 beqz a1,1006 <.L2> ff8: R_RISCV_RVC_BRANCH .L2 +/Users/Luppy/ox64/nuttx/libs/libc/sched/task_setcancelstate.c:72 + { + if ((tls->tl_cpstate & CANCEL_FLAG_NONCANCELABLE) != 0) + ffa: 0087c703 lbu a4,8(a5) + ffe: 8b05 andi a4,a4,1 + 1000: c70d beqz a4,102a <.L3> 1000: R_RISCV_RVC_BRANCH .L3 +/Users/Luppy/ox64/nuttx/libs/libc/sched/task_setcancelstate.c:74 + { + *oldstate = TASK_CANCEL_DISABLE; + 1002: 4705 li a4,1 + 1004: c198 sw a4,0(a1) + +0000000000001006 <.L2>: +/Users/Luppy/ox64/nuttx/libs/libc/sched/task_setcancelstate.c:84 + } + } + + /* Set the new cancellation state */ + + if (state == TASK_CANCEL_ENABLE) + 1006: e50d bnez a0,1030 <.L4> 1006: R_RISCV_RVC_BRANCH .L4 +/Users/Luppy/ox64/nuttx/libs/libc/sched/task_setcancelstate.c:88 + { + /* Clear the non-cancelable flag */ + + tls->tl_cpstate &= ~CANCEL_FLAG_NONCANCELABLE; + 1008: 0087c703 lbu a4,8(a5) + 100c: ffe77693 andi a3,a4,-2 + 1010: 00d78423 sb a3,8(a5) +/Users/Luppy/ox64/nuttx/libs/libc/sched/task_setcancelstate.c:92 + + /* Check if a cancellation was pending */ + + if ((tls->tl_cpstate & CANCEL_FLAG_CANCEL_PENDING) != 0) + 1014: 00477693 andi a3,a4,4 + 1018: c695 beqz a3,1044 <.L5> 1018: R_RISCV_RVC_BRANCH .L5 +/Users/Luppy/ox64/nuttx/libs/libc/sched/task_setcancelstate.c:104 + { + /* No.. We are using asynchronous cancellation. If the + * cancellation was pending in this case, then just exit. + */ + + tls->tl_cpstate &= ~CANCEL_FLAG_CANCEL_PENDING; + 101a: 9b69 andi a4,a4,-6 + 101c: 00e78423 sb a4,8(a5) +/Users/Luppy/ox64/nuttx/libs/libc/sched/task_setcancelstate.c:107 + +#ifndef CONFIG_DISABLE_PTHREAD + pthread_exit(PTHREAD_CANCELED); + 1020: 557d li a0,-1 + +0000000000001022 <.LVL3>: + 1022: 00000097 auipc ra,0x0 1022: R_RISCV_CALL pthread_exit + 1022: R_RISCV_RELAX *ABS* + 1026: 000080e7 jalr ra # 1022 <.LVL3> + +000000000000102a <.L3>: +/Users/Luppy/ox64/nuttx/libs/libc/sched/task_setcancelstate.c:78 + *oldstate = TASK_CANCEL_ENABLE; + 102a: 0005a023 sw zero,0(a1) + 102e: bfe1 j 1006 <.L2> 102e: R_RISCV_RVC_JUMP .L2 + +0000000000001030 <.L4>: +/Users/Luppy/ox64/nuttx/libs/libc/sched/task_setcancelstate.c:114 + exit(EXIT_FAILURE); +#endif + } + } + } + else if (state == TASK_CANCEL_DISABLE) + 1030: 4705 li a4,1 + 1032: 00e51c63 bne a0,a4,104a <.L6> 1032: R_RISCV_BRANCH .L6 +/Users/Luppy/ox64/nuttx/libs/libc/sched/task_setcancelstate.c:118 + { + /* Set the non-cancelable state */ + + tls->tl_cpstate |= CANCEL_FLAG_NONCANCELABLE; + 1036: 0087c703 lbu a4,8(a5) +/Users/Luppy/ox64/nuttx/libs/libc/sched/task_setcancelstate.c:66 + int ret = OK; + 103a: 4501 li a0,0 + +000000000000103c <.LVL5>: +/Users/Luppy/ox64/nuttx/libs/libc/sched/task_setcancelstate.c:118 + tls->tl_cpstate |= CANCEL_FLAG_NONCANCELABLE; + 103c: 00176713 ori a4,a4,1 + 1040: 00e78423 sb a4,8(a5) + +0000000000001044 <.L5>: +/Users/Luppy/ox64/nuttx/libs/libc/sched/task_setcancelstate.c:127 + set_errno(EINVAL); + ret = ERROR; + } + + return ret; +} + 1044: 60a2 ld ra,8(sp) + 1046: 0141 addi sp,sp,16 + 1048: 8082 ret + +000000000000104a <.L6>: +/Users/Luppy/ox64/nuttx/libs/libc/sched/task_setcancelstate.c:122 + set_errno(EINVAL); + 104a: 00000097 auipc ra,0x0 104a: R_RISCV_CALL __errno + 104a: R_RISCV_RELAX *ABS* + 104e: 000080e7 jalr ra # 104a <.L6> + +0000000000001052 <.LVL8>: + 1052: 47d9 li a5,22 + 1054: c11c sw a5,0(a0) + +0000000000001056 <.LVL9>: +/Users/Luppy/ox64/nuttx/libs/libc/sched/task_setcancelstate.c:123 + ret = ERROR; + 1056: 557d li a0,-1 + 1058: b7f5 j 1044 <.L5> 1058: R_RISCV_RVC_JUMP .L5 + +000000000000105a : +fflush_unlocked(): +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_fflush.c:56 + * OK on success EOF on failure (with errno set appropriately) + * + ****************************************************************************/ + +int fflush_unlocked(FAR FILE *stream) +{ + 105a: 1141 addi sp,sp,-16 + 105c: e406 sd ra,8(sp) + 105e: e022 sd s0,0(sp) +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_fflush.c:61 + int ret; + + /* Is the stream argument NULL? */ + + if (stream == NULL) + 1060: e90d bnez a0,1092 <.L2> 1060: R_RISCV_RVC_BRANCH .L2 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_fflush.c:65 + { + /* Yes... then this is a request to flush all streams */ + + ret = lib_flushall_unlocked(lib_get_streams()); + 1062: 00000097 auipc ra,0x0 1062: R_RISCV_CALL lib_get_streams + 1062: R_RISCV_RELAX *ABS* + 1066: 000080e7 jalr ra # 1062 + +000000000000106a <.LVL1>: + 106a: 00000097 auipc ra,0x0 106a: R_RISCV_CALL lib_flushall_unlocked + 106a: R_RISCV_RELAX *ABS* + 106e: 000080e7 jalr ra # 106a <.LVL1> + +0000000000001072 <.LVL2>: + 1072: 842a mv s0,a0 + +0000000000001074 <.L3>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_fflush.c:87 + /* And return EOF on failure. */ + + return EOF; + } + + return OK; + 1074: 4501 li a0,0 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_fflush.c:74 + if (ret < 0) + 1076: 00045a63 bgez s0,108a <.L4> 1076: R_RISCV_BRANCH .L4 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_fflush.c:80 + set_errno(-ret); + 107a: 00000097 auipc ra,0x0 107a: R_RISCV_CALL __errno + 107a: R_RISCV_RELAX *ABS* + 107e: 000080e7 jalr ra # 107a <.L3+0x6> + +0000000000001082 <.LVL4>: + 1082: 4080043b negw s0,s0 + +0000000000001086 <.LVL5>: + 1086: c100 sw s0,0(a0) +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_fflush.c:84 + return EOF; + 1088: 557d li a0,-1 + +000000000000108a <.L4>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_fflush.c:88 +} + 108a: 60a2 ld ra,8(sp) + 108c: 6402 ld s0,0(sp) + 108e: 0141 addi sp,sp,16 + 1090: 8082 ret + +0000000000001092 <.L2>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_fflush.c:69 + ret = lib_fflush_unlocked(stream); + 1092: 00000097 auipc ra,0x0 1092: R_RISCV_CALL lib_fflush_unlocked + 1092: R_RISCV_RELAX *ABS* + 1096: 000080e7 jalr ra # 1092 <.L2> + +000000000000109a <.LVL8>: + 109a: 0005041b sext.w s0,a0 + +000000000000109e <.LVL9>: + 109e: bfd9 j 1074 <.L3> 109e: R_RISCV_RVC_JUMP .L3 + +00000000000010a0 : +fflush(): +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_fflush.c:91 + +int fflush(FAR FILE *stream) +{ + 10a0: 1141 addi sp,sp,-16 + 10a2: e406 sd ra,8(sp) + 10a4: e022 sd s0,0(sp) +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_fflush.c:96 + int ret; + + /* Is the stream argument NULL? */ + + if (stream == NULL) + 10a6: e90d bnez a0,10d8 <.L8> 10a6: R_RISCV_RVC_BRANCH .L8 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_fflush.c:100 + { + /* Yes... then this is a request to flush all streams */ + + ret = lib_flushall(lib_get_streams()); + 10a8: 00000097 auipc ra,0x0 10a8: R_RISCV_CALL lib_get_streams + 10a8: R_RISCV_RELAX *ABS* + 10ac: 000080e7 jalr ra # 10a8 + +00000000000010b0 <.LVL11>: + 10b0: 00000097 auipc ra,0x0 10b0: R_RISCV_CALL lib_flushall + 10b0: R_RISCV_RELAX *ABS* + 10b4: 000080e7 jalr ra # 10b0 <.LVL11> + +00000000000010b8 <.LVL12>: + 10b8: 842a mv s0,a0 + +00000000000010ba <.L9>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_fflush.c:122 + /* And return EOF on failure. */ + + return EOF; + } + + return OK; + 10ba: 4501 li a0,0 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_fflush.c:109 + if (ret < 0) + 10bc: 00045a63 bgez s0,10d0 <.L10> 10bc: R_RISCV_BRANCH .L10 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_fflush.c:115 + set_errno(-ret); + 10c0: 00000097 auipc ra,0x0 10c0: R_RISCV_CALL __errno + 10c0: R_RISCV_RELAX *ABS* + 10c4: 000080e7 jalr ra # 10c0 <.L9+0x6> + +00000000000010c8 <.LVL14>: + 10c8: 4080043b negw s0,s0 + +00000000000010cc <.LVL15>: + 10cc: c100 sw s0,0(a0) +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_fflush.c:119 + return EOF; + 10ce: 557d li a0,-1 + +00000000000010d0 <.L10>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_fflush.c:123 +} + 10d0: 60a2 ld ra,8(sp) + 10d2: 6402 ld s0,0(sp) + 10d4: 0141 addi sp,sp,16 + 10d6: 8082 ret + +00000000000010d8 <.L8>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_fflush.c:104 + ret = lib_fflush(stream); + 10d8: 00000097 auipc ra,0x0 10d8: R_RISCV_CALL lib_fflush + 10d8: R_RISCV_RELAX *ABS* + 10dc: 000080e7 jalr ra # 10d8 <.L8> + +00000000000010e0 <.LVL18>: + 10e0: 0005041b sext.w s0,a0 + +00000000000010e4 <.LVL19>: + 10e4: bfd9 j 10ba <.L9> 10e4: R_RISCV_RVC_JUMP .L9 + +00000000000010e6 : +lib_flushall_unlocked(): +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libflushall.c:49 + * when a NULL stream argument is provided. + * + ****************************************************************************/ + +int lib_flushall_unlocked(FAR struct streamlist *list) +{ + 10e6: 1101 addi sp,sp,-32 + 10e8: e426 sd s1,8(sp) + 10ea: ec06 sd ra,24(sp) + 10ec: e822 sd s0,16(sp) +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libflushall.c:50 + int lasterrno = OK; + 10ee: 4481 li s1,0 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libflushall.c:55 + int ret; + + /* Make sure that there are streams associated with this thread */ + + if (list != NULL) + 10f0: c905 beqz a0,1120 <.L2> 10f0: R_RISCV_RVC_BRANCH .L2 + 10f2: 842a mv s0,a0 + +00000000000010f4 <.LBB2>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libflushall.c:64 + + /* Process each stream in the thread's stream list */ + + for (i = 0; i < 3; i++) + { + lib_fflush_unlocked(&list->sl_std[i]); + 10f4: 02050513 addi a0,a0,32 # ffe <.LVL2+0x6> + +00000000000010f8 <.LVL2>: + 10f8: 00000097 auipc ra,0x0 10f8: R_RISCV_CALL lib_fflush_unlocked + 10f8: R_RISCV_RELAX *ABS* + 10fc: 000080e7 jalr ra # 10f8 <.LVL2> + +0000000000001100 <.LVL3>: + 1100: 0e040513 addi a0,s0,224 + 1104: 00000097 auipc ra,0x0 1104: R_RISCV_CALL lib_fflush_unlocked + 1104: R_RISCV_RELAX *ABS* + 1108: 000080e7 jalr ra # 1104 <.LVL3+0x4> + +000000000000110c <.LVL4>: + 110c: 1a040513 addi a0,s0,416 + 1110: 00000097 auipc ra,0x0 1110: R_RISCV_CALL lib_fflush_unlocked + 1110: R_RISCV_RELAX *ABS* + 1114: 000080e7 jalr ra # 1110 <.LVL4+0x4> + +0000000000001118 <.LVL5>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libflushall.c:67 + } + + for (stream = list->sl_head; stream != NULL; stream = stream->fs_next) + 1118: 26043403 ld s0,608(s0) + +000000000000111c <.LBE2>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libflushall.c:50 + int lasterrno = OK; + 111c: 4481 li s1,0 + +000000000000111e <.L3>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libflushall.c:67 (discriminator 1) + for (stream = list->sl_head; stream != NULL; stream = stream->fs_next) + 111e: e419 bnez s0,112c <.L5> 111e: R_RISCV_RVC_BRANCH .L5 + +0000000000001120 <.L2>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libflushall.c:94 + } + + /* If any flush failed, return the errorcode of the last failed flush */ + + return lasterrno; +} + 1120: 60e2 ld ra,24(sp) + 1122: 6442 ld s0,16(sp) + 1124: 8526 mv a0,s1 + 1126: 64a2 ld s1,8(sp) + +0000000000001128 <.LVL9>: + 1128: 6105 addi sp,sp,32 + 112a: 8082 ret + +000000000000112c <.L5>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libflushall.c:73 + if ((stream->fs_oflags & O_WROK) != 0) + 112c: 0b845783 lhu a5,184(s0) + 1130: 8b89 andi a5,a5,2 + 1132: cb91 beqz a5,1146 <.L4> 1132: R_RISCV_RVC_BRANCH .L4 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libflushall.c:77 + ret = lib_fflush_unlocked(stream); + 1134: 8522 mv a0,s0 + 1136: 00000097 auipc ra,0x0 1136: R_RISCV_CALL lib_fflush_unlocked + 1136: R_RISCV_RELAX *ABS* + 113a: 000080e7 jalr ra # 1136 <.L5+0xa> + +000000000000113e <.LVL11>: + 113e: 2501 sext.w a0,a0 + +0000000000001140 <.LVL12>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libflushall.c:78 + if (ret < 0) + 1140: 00055363 bgez a0,1146 <.L4> 1140: R_RISCV_BRANCH .L4 + 1144: 84aa mv s1,a0 + +0000000000001146 <.L4>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libflushall.c:67 (discriminator 2) + for (stream = list->sl_head; stream != NULL; stream = stream->fs_next) + 1146: 6000 ld s0,0(s0) + 1148: bfd9 j 111e <.L3> 1148: R_RISCV_RVC_JUMP .L3 + +000000000000114a : +lib_flushall(): +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libflushall.c:97 + +int lib_flushall(FAR struct streamlist *list) +{ + 114a: 1101 addi sp,sp,-32 + 114c: e04a sd s2,0(sp) + 114e: ec06 sd ra,24(sp) + 1150: e822 sd s0,16(sp) + 1152: e426 sd s1,8(sp) +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libflushall.c:98 + int lasterrno = OK; + 1154: 4901 li s2,0 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libflushall.c:103 + int ret; + + /* Make sure that there are streams associated with this thread */ + + if (list != NULL) + 1156: c129 beqz a0,1198 <.L12> 1156: R_RISCV_RVC_BRANCH .L12 + 1158: 842a mv s0,a0 + +000000000000115a <.LBB5>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libflushall.c:110 + FAR FILE *stream; + int i; + + /* Process each stream in the thread's stream list */ + + nxmutex_lock(&list->sl_lock); + 115a: 00000097 auipc ra,0x0 115a: R_RISCV_CALL nxmutex_lock + 115a: R_RISCV_RELAX *ABS* + 115e: 000080e7 jalr ra # 115a <.LBB5> + +0000000000001162 <.LVL16>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libflushall.c:114 + + for (i = 0; i < 3; i++) + { + lib_fflush(&list->sl_std[i]); + 1162: 02040513 addi a0,s0,32 + 1166: 00000097 auipc ra,0x0 1166: R_RISCV_CALL lib_fflush + 1166: R_RISCV_RELAX *ABS* + 116a: 000080e7 jalr ra # 1166 <.LVL16+0x4> + +000000000000116e <.LVL17>: + 116e: 0e040513 addi a0,s0,224 + 1172: 00000097 auipc ra,0x0 1172: R_RISCV_CALL lib_fflush + 1172: R_RISCV_RELAX *ABS* + 1176: 000080e7 jalr ra # 1172 <.LVL17+0x4> + +000000000000117a <.LVL18>: + 117a: 1a040513 addi a0,s0,416 + 117e: 00000097 auipc ra,0x0 117e: R_RISCV_CALL lib_fflush + 117e: R_RISCV_RELAX *ABS* + 1182: 000080e7 jalr ra # 117e <.LVL18+0x4> + +0000000000001186 <.LVL19>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libflushall.c:117 + } + + for (stream = list->sl_head; stream != NULL; stream = stream->fs_next) + 1186: 26043483 ld s1,608(s0) + +000000000000118a <.LBE5>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libflushall.c:98 + int lasterrno = OK; + 118a: 4901 li s2,0 + +000000000000118c <.L13>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libflushall.c:117 (discriminator 1) + for (stream = list->sl_head; stream != NULL; stream = stream->fs_next) + 118c: ec89 bnez s1,11a6 <.L15> 118c: R_RISCV_RVC_BRANCH .L15 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libflushall.c:140 + lasterrno = ret; + } + } + } + + nxmutex_unlock(&list->sl_lock); + 118e: 8522 mv a0,s0 + 1190: 00000097 auipc ra,0x0 1190: R_RISCV_CALL nxmutex_unlock + 1190: R_RISCV_RELAX *ABS* + 1194: 000080e7 jalr ra # 1190 <.L13+0x4> + +0000000000001198 <.L12>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libflushall.c:146 + } + + /* If any flush failed, return the errorcode of the last failed flush */ + + return lasterrno; +} + 1198: 60e2 ld ra,24(sp) + 119a: 6442 ld s0,16(sp) + 119c: 64a2 ld s1,8(sp) + 119e: 854a mv a0,s2 + 11a0: 6902 ld s2,0(sp) + +00000000000011a2 <.LVL23>: + 11a2: 6105 addi sp,sp,32 + 11a4: 8082 ret + +00000000000011a6 <.L15>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libflushall.c:123 + if ((stream->fs_oflags & O_WROK) != 0) + 11a6: 0b84d783 lhu a5,184(s1) + 11aa: 8b89 andi a5,a5,2 + 11ac: cb91 beqz a5,11c0 <.L14> 11ac: R_RISCV_RVC_BRANCH .L14 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libflushall.c:127 + ret = lib_fflush(stream); + 11ae: 8526 mv a0,s1 + 11b0: 00000097 auipc ra,0x0 11b0: R_RISCV_CALL lib_fflush + 11b0: R_RISCV_RELAX *ABS* + 11b4: 000080e7 jalr ra # 11b0 <.L15+0xa> + +00000000000011b8 <.LVL25>: + 11b8: 2501 sext.w a0,a0 + +00000000000011ba <.LVL26>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libflushall.c:128 + if (ret < 0) + 11ba: 00055363 bgez a0,11c0 <.L14> 11ba: R_RISCV_BRANCH .L14 + 11be: 892a mv s2,a0 + +00000000000011c0 <.L14>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libflushall.c:117 (discriminator 2) + for (stream = list->sl_head; stream != NULL; stream = stream->fs_next) + 11c0: 6084 ld s1,0(s1) + 11c2: b7e9 j 118c <.L13> 11c2: R_RISCV_RVC_JUMP .L13 + +00000000000011c4 : +lib_fflush_unlocked(): +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfflush.c:67 + ssize_t bytes_written; + ssize_t nbuffer; + + /* Return EBADF if the file is not opened for writing */ + + if ((stream->fs_oflags & O_WROK) == 0) + 11c4: 0b855783 lhu a5,184(a0) + 11c8: 8b89 andi a5,a5,2 + 11ca: cfbd beqz a5,1248 <.L8> 11ca: R_RISCV_RVC_BRANCH .L8 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfflush.c:59 +{ + 11cc: 1101 addi sp,sp,-32 + 11ce: e822 sd s0,16(sp) + 11d0: ec06 sd ra,24(sp) + 11d2: e426 sd s1,8(sp) + 11d4: e04a sd s2,0(sp) +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfflush.c:74 + return -EBADF; + } + + /* Check if there is an allocated I/O buffer */ + + if (stream->fs_bufstart == NULL) + 11d6: 05853903 ld s2,88(a0) + 11da: 842a mv s0,a0 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfflush.c:78 + { + /* No, then there can be nothing remaining in the buffer. */ + + return 0; + 11dc: 4501 li a0,0 + +00000000000011de <.LVL1>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfflush.c:74 + if (stream->fs_bufstart == NULL) + 11de: 02090f63 beqz s2,121c <.L1> 11de: R_RISCV_BRANCH .L1 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfflush.c:83 + } + + /* Make sure that the buffer holds valid data */ + + if (stream->fs_bufpos != stream->fs_bufstart) + 11e2: 7424 ld s1,104(s0) + 11e4: 04990e63 beq s2,s1,1240 <.L3> 11e4: R_RISCV_BRANCH .L3 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfflush.c:89 + { + /* Make sure that the buffer holds buffered write data. We do not + * support concurrent read/write buffer usage. + */ + + if (stream->fs_bufread != stream->fs_bufstart) + 11e8: 783c ld a5,112(s0) + 11ea: 02f91963 bne s2,a5,121c <.L1> 11ea: R_RISCV_BRANCH .L1 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfflush.c:100 + return 0; + } + + /* How many bytes of write data are used in the buffer now */ + + nbuffer = stream->fs_bufpos - stream->fs_bufstart; + 11ee: 412484b3 sub s1,s1,s2 + +00000000000011f2 <.L7>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfflush.c:109 + src = stream->fs_bufstart; + do + { + /* Perform the write */ + + if (stream->fs_iofunc.write != NULL) + 11f2: 7c1c ld a5,56(s0) +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfflush.c:111 + { + bytes_written = stream->fs_iofunc.write(stream->fs_cookie, + 11f4: 6828 ld a0,80(s0) + 11f6: 8626 mv a2,s1 + 11f8: 85ca mv a1,s2 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfflush.c:109 + if (stream->fs_iofunc.write != NULL) + 11fa: c79d beqz a5,1228 <.L4> 11fa: R_RISCV_RVC_BRANCH .L4 + +00000000000011fc <.LVL3>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfflush.c:111 + bytes_written = stream->fs_iofunc.write(stream->fs_cookie, + 11fc: 9782 jalr a5 + +00000000000011fe <.L5>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfflush.c:121 + { + bytes_written = _NX_WRITE((int)(intptr_t)stream->fs_cookie, + src, nbuffer); + } + + if (bytes_written < 0) + 11fe: 02055b63 bgez a0,1234 <.L6> 11fe: R_RISCV_BRANCH .L6 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfflush.c:127 + { + /* Write failed. The cause of the failure is in 'errno'. + * returned the negated errno value. + */ + + stream->fs_flags |= __FS_FLAG_ERROR; + 1202: 0ba44783 lbu a5,186(s0) + 1206: 0027e793 ori a5,a5,2 + 120a: 0af40d23 sb a5,186(s0) +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfflush.c:128 + return _NX_GETERRVAL(bytes_written); + 120e: 00000097 auipc ra,0x0 120e: R_RISCV_CALL __errno + 120e: R_RISCV_RELAX *ABS* + 1212: 000080e7 jalr ra # 120e <.L5+0x10> + +0000000000001216 <.LVL5>: + 1216: 4108 lw a0,0(a0) + 1218: 40a0053b negw a0,a0 + +000000000000121c <.L1>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfflush.c:168 +#else + /* Return no bytes remaining in the buffer */ + + return 0; +#endif +} + 121c: 60e2 ld ra,24(sp) + 121e: 6442 ld s0,16(sp) + +0000000000001220 <.LVL7>: + 1220: 64a2 ld s1,8(sp) + 1222: 6902 ld s2,0(sp) + 1224: 6105 addi sp,sp,32 + 1226: 8082 ret + +0000000000001228 <.L4>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfflush.c:117 + bytes_written = _NX_WRITE((int)(intptr_t)stream->fs_cookie, + 1228: 2501 sext.w a0,a0 + 122a: 00000097 auipc ra,0x0 122a: R_RISCV_CALL write + 122a: R_RISCV_RELAX *ABS* + 122e: 000080e7 jalr ra # 122a <.L4+0x2> + +0000000000001232 <.LVL9>: + 1232: b7f1 j 11fe <.L5> 1232: R_RISCV_RVC_JUMP .L5 + +0000000000001234 <.L6>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfflush.c:137 + nbuffer -= bytes_written; + 1234: 8c89 sub s1,s1,a0 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfflush.c:136 + src += bytes_written; + 1236: 992a add s2,s2,a0 + +0000000000001238 <.LVL11>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfflush.c:139 + while (nbuffer > 0); + 1238: fa904de3 bgtz s1,11f2 <.L7> 1238: R_RISCV_BRANCH .L7 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfflush.c:143 + stream->fs_bufpos = stream->fs_bufstart; + 123c: 6c3c ld a5,88(s0) + 123e: f43c sd a5,104(s0) + +0000000000001240 <.L3>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfflush.c:161 + return stream->fs_bufpos - stream->fs_bufstart; + 1240: 7428 ld a0,104(s0) + 1242: 6c3c ld a5,88(s0) + 1244: 8d1d sub a0,a0,a5 + 1246: bfd9 j 121c <.L1> 1246: R_RISCV_RVC_JUMP .L1 + +0000000000001248 <.L8>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfflush.c:69 + return -EBADF; + 1248: 555d li a0,-9 + +000000000000124a <.LVL14>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfflush.c:168 +} + 124a: 8082 ret + +000000000000124c : +lib_fflush(): +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfflush.c:171 + +ssize_t lib_fflush(FAR FILE *stream) +{ + 124c: 1101 addi sp,sp,-32 + 124e: ec06 sd ra,24(sp) + 1250: e822 sd s0,16(sp) + 1252: e426 sd s1,8(sp) + 1254: 842a mv s0,a0 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfflush.c:176 + ssize_t ret; + + /* Make sure that we have exclusive access to the stream */ + + flockfile(stream); + 1256: 00000097 auipc ra,0x0 1256: R_RISCV_CALL flockfile + 1256: R_RISCV_RELAX *ABS* + 125a: 000080e7 jalr ra # 1256 + +000000000000125e <.LVL16>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfflush.c:177 + ret = lib_fflush_unlocked(stream); + 125e: 8522 mv a0,s0 + 1260: 00000097 auipc ra,0x0 1260: R_RISCV_CALL lib_fflush_unlocked + 1260: R_RISCV_RELAX *ABS* + 1264: 000080e7 jalr ra # 1260 <.LVL16+0x2> + +0000000000001268 <.LVL17>: + 1268: 84aa mv s1,a0 + +000000000000126a <.LVL18>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfflush.c:178 + funlockfile(stream); + 126a: 8522 mv a0,s0 + 126c: 00000097 auipc ra,0x0 126c: R_RISCV_CALL funlockfile + 126c: R_RISCV_RELAX *ABS* + 1270: 000080e7 jalr ra # 126c <.LVL18+0x2> + +0000000000001274 <.LVL19>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfflush.c:180 + return ret; +} + 1274: 60e2 ld ra,24(sp) + 1276: 6442 ld s0,16(sp) + +0000000000001278 <.LVL20>: + 1278: 8526 mv a0,s1 + 127a: 64a2 ld s1,8(sp) + +000000000000127c <.LVL21>: + 127c: 6105 addi sp,sp,32 + 127e: 8082 ret + +0000000000001280 : +flockfile(): +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfilelock.c:46 + * flockfile + ****************************************************************************/ + +void flockfile(FAR struct file_struct *stream) +{ + nxrmutex_lock(&stream->fs_lock); + 1280: 0521 addi a0,a0,8 + +0000000000001282 <.LVL1>: + 1282: 00000317 auipc t1,0x0 1282: R_RISCV_CALL nxrmutex_lock + 1282: R_RISCV_RELAX *ABS* + 1286: 00030067 jr t1 # 1282 <.LVL1> + +000000000000128a : +ftrylockfile(): +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfilelock.c:55 + * flockfile + ****************************************************************************/ + +int ftrylockfile(FAR struct file_struct *stream) +{ + return nxrmutex_trylock(&stream->fs_lock); + 128a: 0521 addi a0,a0,8 + +000000000000128c <.LVL4>: + 128c: 00000317 auipc t1,0x0 128c: R_RISCV_CALL nxrmutex_trylock + 128c: R_RISCV_RELAX *ABS* + 1290: 00030067 jr t1 # 128c <.LVL4> + +0000000000001294 : +funlockfile(): +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libfilelock.c:64 + * funlockfile + ****************************************************************************/ + +void funlockfile(FAR struct file_struct *stream) +{ + nxrmutex_unlock(&stream->fs_lock); + 1294: 0521 addi a0,a0,8 + +0000000000001296 <.LVL7>: + 1296: 00000317 auipc t1,0x0 1296: R_RISCV_CALL nxrmutex_unlock + 1296: R_RISCV_RELAX *ABS* + 129a: 00030067 jr t1 # 1296 <.LVL7> + +000000000000129e : +lib_get_streams(): +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libgetstreams.c:54 + * Assumptions: + * + ****************************************************************************/ + +FAR struct streamlist *lib_get_streams(void) +{ + 129e: 1141 addi sp,sp,-16 + 12a0: e406 sd ra,8(sp) +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libgetstreams.c:57 + FAR struct task_info_s *info; + + info = task_get_info(); + 12a2: 00000097 auipc ra,0x0 12a2: R_RISCV_CALL task_get_info + 12a2: R_RISCV_RELAX *ABS* + 12a6: 000080e7 jalr ra # 12a2 + +00000000000012aa <.LVL0>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libgetstreams.c:59 + return &info->ta_streamlist; +} + 12aa: 60a2 ld ra,8(sp) + 12ac: 02850513 addi a0,a0,40 + +00000000000012b0 <.LVL1>: + 12b0: 0141 addi sp,sp,16 + 12b2: 8082 ret + +00000000000012b4 : +lib_get_stream(): +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libgetstreams.c:71 + * Note: only reserved fd number 0/1/2 is valid. + * + ****************************************************************************/ + +FAR struct file_struct *lib_get_stream(int fd) +{ + 12b4: 1141 addi sp,sp,-16 + 12b6: e022 sd s0,0(sp) + 12b8: e406 sd ra,8(sp) + 12ba: 842a mv s0,a0 + +00000000000012bc <.LBB7>: +lib_get_streams(): +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libgetstreams.c:57 + info = task_get_info(); + 12bc: 00000097 auipc ra,0x0 12bc: R_RISCV_CALL task_get_info + 12bc: R_RISCV_RELAX *ABS* + 12c0: 000080e7 jalr ra # 12bc <.LBB7> + +00000000000012c4 <.LBE7>: +lib_get_stream(): +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libgetstreams.c:72 + return &lib_get_streams()->sl_std[fd]; + 12c4: 0c000793 li a5,192 + 12c8: 02f40433 mul s0,s0,a5 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libgetstreams.c:73 +} + 12cc: 60a2 ld ra,8(sp) +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libgetstreams.c:72 + return &lib_get_streams()->sl_std[fd]; + 12ce: 9522 add a0,a0,s0 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_libgetstreams.c:73 +} + 12d0: 6402 ld s0,0(sp) + 12d2: 04850513 addi a0,a0,72 + 12d6: 0141 addi sp,sp,16 + 12d8: 8082 ret + +00000000000012da : +abort(): +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_abort.c:60 + * This function does not return, + * + ****************************************************************************/ + +void abort(void) +{ + 12da: 1141 addi sp,sp,-16 +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_abort.c:69 + * signal the calling thread all. + * + * _exit() will close all open files and terminate the thread. + */ + + _exit(EXIT_FAILURE); + 12dc: 4505 li a0,1 +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_abort.c:60 +{ + 12de: e406 sd ra,8(sp) +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_abort.c:69 + _exit(EXIT_FAILURE); + 12e0: 00000097 auipc ra,0x0 12e0: R_RISCV_CALL _exit + 12e0: R_RISCV_RELAX *ABS* + 12e4: 000080e7 jalr ra # 12e0 + +00000000000012e8 : +task_get_info(): +/Users/Luppy/ox64/nuttx/libs/libc/tls/task_getinfo.c:50 + * + ****************************************************************************/ + +FAR struct task_info_s *task_get_info(void) +{ + FAR struct tls_info_s *info = tls_get_info(); + 12e8: 7779 lui a4,0xffffe + +00000000000012ea <.LBB7>: +up_getsp(): +/Users/Luppy/ox64/nuttx/include/arch/irq.h:601 + 12ea: 878a mv a5,sp + +00000000000012ec <.LBE7>: +task_get_info(): +/Users/Luppy/ox64/nuttx/libs/libc/tls/task_getinfo.c:50 + 12ec: 8ff9 and a5,a5,a4 + +00000000000012ee <.LVL1>: +/Users/Luppy/ox64/nuttx/libs/libc/tls/task_getinfo.c:53 + + return info->tl_task; +} + 12ee: 6388 ld a0,0(a5) + 12f0: 8082 ret + +00000000000012f2 : +nxmutex_init(): +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:84 + * returned on success. A negated errno value is returned on failure. + * + ****************************************************************************/ + +int nxmutex_init(FAR mutex_t *mutex) +{ + 12f2: 1101 addi sp,sp,-32 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:85 + int ret = nxsem_init(&mutex->sem, 0, 1); + 12f4: 4605 li a2,1 + 12f6: 4581 li a1,0 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:84 +{ + 12f8: e822 sd s0,16(sp) + 12fa: e426 sd s1,8(sp) + 12fc: ec06 sd ra,24(sp) + 12fe: 84aa mv s1,a0 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:85 + int ret = nxsem_init(&mutex->sem, 0, 1); + 1300: 00000097 auipc ra,0x0 1300: R_RISCV_CALL nxsem_init + 1300: R_RISCV_RELAX *ABS* + 1304: 000080e7 jalr ra # 1300 + +0000000000001308 <.LVL1>: + 1308: 842a mv s0,a0 + +000000000000130a <.LVL2>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:87 + + if (ret < 0) + 130a: 00054a63 bltz a0,131e <.L2> 130a: R_RISCV_BRANCH .L2 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:92 + { + return ret; + } + + mutex->holder = NXMUTEX_NO_HOLDER; + 130e: 57fd li a5,-1 + 1310: cc9c sw a5,24(s1) +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:96 +#ifdef CONFIG_PRIORITY_INHERITANCE + nxsem_set_protocol(&mutex->sem, SEM_TYPE_MUTEX | SEM_PRIO_INHERIT); +#else + nxsem_set_protocol(&mutex->sem, SEM_TYPE_MUTEX); + 1312: 4591 li a1,4 + 1314: 8526 mv a0,s1 + +0000000000001316 <.LVL3>: + 1316: 00000097 auipc ra,0x0 1316: R_RISCV_CALL nxsem_set_protocol + 1316: R_RISCV_RELAX *ABS* + 131a: 000080e7 jalr ra # 1316 <.LVL3> + +000000000000131e <.L2>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:99 +#endif + return ret; +} + 131e: 60e2 ld ra,24(sp) + 1320: 8522 mv a0,s0 + 1322: 6442 ld s0,16(sp) + 1324: 64a2 ld s1,8(sp) + +0000000000001326 <.LVL5>: + 1326: 6105 addi sp,sp,32 + 1328: 8082 ret + +000000000000132a : +nxmutex_destroy(): +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:121 + * returned on success. A negated errno value is returned on failure. + * + ****************************************************************************/ + +int nxmutex_destroy(FAR mutex_t *mutex) +{ + 132a: 1141 addi sp,sp,-16 + 132c: e022 sd s0,0(sp) + 132e: e406 sd ra,8(sp) + 1330: 842a mv s0,a0 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:122 + int ret = nxsem_destroy(&mutex->sem); + 1332: 00000097 auipc ra,0x0 1332: R_RISCV_CALL nxsem_destroy + 1332: R_RISCV_RELAX *ABS* + 1336: 000080e7 jalr ra # 1332 + +000000000000133a <.LVL7>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:124 + + if (ret < 0) + 133a: 00054463 bltz a0,1342 <.L5> 133a: R_RISCV_BRANCH .L5 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:129 + { + return ret; + } + + mutex->holder = NXMUTEX_NO_HOLDER; + 133e: 57fd li a5,-1 + 1340: cc1c sw a5,24(s0) + +0000000000001342 <.L5>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:131 + return ret; +} + 1342: 60a2 ld ra,8(sp) + 1344: 6402 ld s0,0(sp) + +0000000000001346 <.LVL8>: + 1346: 0141 addi sp,sp,16 + 1348: 8082 ret + +000000000000134a : +nxmutex_is_hold(): +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:148 + * Return Value: + * + ****************************************************************************/ + +bool nxmutex_is_hold(FAR mutex_t *mutex) +{ + 134a: 1141 addi sp,sp,-16 + 134c: e406 sd ra,8(sp) + 134e: e022 sd s0,0(sp) +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:149 + return mutex->holder == _SCHED_GETTID(); + 1350: 4d00 lw s0,24(a0) + 1352: 00000097 auipc ra,0x0 1352: R_RISCV_CALL gettid + 1352: R_RISCV_RELAX *ABS* + 1356: 000080e7 jalr ra # 1352 + +000000000000135a <.LVL10>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:150 +} + 135a: 60a2 ld ra,8(sp) +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:149 + return mutex->holder == _SCHED_GETTID(); + 135c: 40a40533 sub a0,s0,a0 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:150 +} + 1360: 6402 ld s0,0(sp) + 1362: 00153513 seqz a0,a0 + 1366: 0141 addi sp,sp,16 + 1368: 8082 ret + +000000000000136a : +nxmutex_is_locked(): +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:166 + * Return Value: + * + ****************************************************************************/ + +bool nxmutex_is_locked(FAR mutex_t *mutex) +{ + 136a: 1101 addi sp,sp,-32 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:170 + int cnt; + int ret; + + ret = nxsem_get_value(&mutex->sem, &cnt); + 136c: 006c addi a1,sp,12 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:166 +{ + 136e: ec06 sd ra,24(sp) +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:170 + ret = nxsem_get_value(&mutex->sem, &cnt); + 1370: 00000097 auipc ra,0x0 1370: R_RISCV_CALL nxsem_get_value + 1370: R_RISCV_RELAX *ABS* + 1374: 000080e7 jalr ra # 1370 + +0000000000001378 <.LVL12>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:172 + + return ret >= 0 && cnt < 1; + 1378: 00054863 bltz a0,1388 <.L11> 1378: R_RISCV_BRANCH .L11 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:172 (discriminator 1) + 137c: 4532 lw a0,12(sp) + +000000000000137e <.LVL13>: + 137e: 00152513 slti a0,a0,1 + +0000000000001382 <.L10>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:173 (discriminator 6) +} + 1382: 60e2 ld ra,24(sp) + 1384: 6105 addi sp,sp,32 + 1386: 8082 ret + +0000000000001388 <.L11>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:172 + return ret >= 0 && cnt < 1; + 1388: 4501 li a0,0 + +000000000000138a <.LVL15>: + 138a: bfe5 j 1382 <.L10> 138a: R_RISCV_RVC_JUMP .L10 + +000000000000138c : +nxmutex_lock(): +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:196 + * Possible returned errors: + * + ****************************************************************************/ + +int nxmutex_lock(FAR mutex_t *mutex) +{ + 138c: 7179 addi sp,sp,-48 + 138e: ec26 sd s1,24(sp) + 1390: f406 sd ra,40(sp) + 1392: f022 sd s0,32(sp) + 1394: e84a sd s2,16(sp) + 1396: e44e sd s3,8(sp) + 1398: 84aa mv s1,a0 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:199 + int ret; + + DEBUGASSERT(!nxmutex_is_hold(mutex)); + 139a: 00000097 auipc ra,0x0 139a: R_RISCV_CALL nxmutex_is_hold + 139a: R_RISCV_RELAX *ABS* + 139e: 000080e7 jalr ra # 139a + +00000000000013a2 <.LVL17>: + 13a2: e90d bnez a0,13d4 <.L20> 13a2: R_RISCV_RVC_BRANCH .L20 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:210 + if (ret >= 0) + { + mutex->holder = _SCHED_GETTID(); + break; + } + else if (ret != -EINTR && ret != -ECANCELED) + 13a4: 59f1 li s3,-4 + 13a6: f8300913 li s2,-125 + +00000000000013aa <.L18>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:204 (discriminator 2) + ret = nxsem_wait(&mutex->sem); + 13aa: 8526 mv a0,s1 + 13ac: 00000097 auipc ra,0x0 13ac: R_RISCV_CALL nxsem_wait + 13ac: R_RISCV_RELAX *ABS* + 13b0: 000080e7 jalr ra # 13ac <.L18+0x2> + +00000000000013b4 <.LVL18>: + 13b4: 842a mv s0,a0 + +00000000000013b6 <.LVL19>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:205 (discriminator 2) + if (ret >= 0) + 13b6: 02054d63 bltz a0,13f0 <.L15> 13b6: R_RISCV_BRANCH .L15 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:207 + mutex->holder = _SCHED_GETTID(); + 13ba: 00000097 auipc ra,0x0 13ba: R_RISCV_CALL gettid + 13ba: R_RISCV_RELAX *ABS* + 13be: 000080e7 jalr ra # 13ba <.LVL19+0x4> + +00000000000013c2 <.LVL20>: + 13c2: cc88 sw a0,24(s1) + +00000000000013c4 <.L16>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:217 + break; + } + } + + return ret; +} + 13c4: 70a2 ld ra,40(sp) + 13c6: 8522 mv a0,s0 + 13c8: 7402 ld s0,32(sp) + 13ca: 64e2 ld s1,24(sp) + +00000000000013cc <.LVL21>: + 13cc: 6942 ld s2,16(sp) + 13ce: 69a2 ld s3,8(sp) + 13d0: 6145 addi sp,sp,48 + 13d2: 8082 ret + +00000000000013d4 <.L20>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:199 + DEBUGASSERT(!nxmutex_is_hold(mutex)); + 13d4: 00000617 auipc a2,0x0 13d4: R_RISCV_PCREL_HI20 .LC0 + 13d4: R_RISCV_RELAX *ABS* + 13d8: 00060613 mv a2,a2 13d8: R_RISCV_PCREL_LO12_I .L0 + 13d8: R_RISCV_RELAX *ABS* + 13dc: 0c700593 li a1,199 + 13e0: 00000517 auipc a0,0x0 13e0: R_RISCV_PCREL_HI20 .LC1 + 13e0: R_RISCV_RELAX *ABS* + 13e4: 00050513 mv a0,a0 13e4: R_RISCV_PCREL_LO12_I .L0 + 13e4: R_RISCV_RELAX *ABS* + 13e8: 00000097 auipc ra,0x0 13e8: R_RISCV_CALL __assert + 13e8: R_RISCV_RELAX *ABS* + 13ec: 000080e7 jalr ra # 13e8 <.L20+0x14> + +00000000000013f0 <.L15>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:210 + else if (ret != -EINTR && ret != -ECANCELED) + 13f0: fb350de3 beq a0,s3,13aa <.L18> 13f0: R_RISCV_BRANCH .L18 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:210 (discriminator 1) + 13f4: fb250be3 beq a0,s2,13aa <.L18> 13f4: R_RISCV_BRANCH .L18 + 13f8: b7f1 j 13c4 <.L16> 13f8: R_RISCV_RVC_JUMP .L16 + +00000000000013fa : +nxmutex_trylock(): +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:241 + * -EAGAIN - The mutex is not available. + * + ****************************************************************************/ + +int nxmutex_trylock(FAR mutex_t *mutex) +{ + 13fa: 1101 addi sp,sp,-32 + 13fc: e426 sd s1,8(sp) + 13fe: ec06 sd ra,24(sp) + 1400: e822 sd s0,16(sp) + 1402: 84aa mv s1,a0 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:244 + int ret; + + DEBUGASSERT(!nxmutex_is_hold(mutex)); + 1404: 00000097 auipc ra,0x0 1404: R_RISCV_CALL nxmutex_is_hold + 1404: R_RISCV_RELAX *ABS* + 1408: 000080e7 jalr ra # 1404 + +000000000000140c <.LVL25>: + 140c: cd19 beqz a0,142a <.L23> 140c: R_RISCV_RVC_BRANCH .L23 + +000000000000140e <.LBB20>: + 140e: 00000617 auipc a2,0x0 140e: R_RISCV_PCREL_HI20 .LC0 + 140e: R_RISCV_RELAX *ABS* + 1412: 00060613 mv a2,a2 1412: R_RISCV_PCREL_LO12_I .L0 + 1412: R_RISCV_RELAX *ABS* + 1416: 0f400593 li a1,244 + 141a: 00000517 auipc a0,0x0 141a: R_RISCV_PCREL_HI20 .LC1 + 141a: R_RISCV_RELAX *ABS* + 141e: 00050513 mv a0,a0 141e: R_RISCV_PCREL_LO12_I .L0 + 141e: R_RISCV_RELAX *ABS* + 1422: 00000097 auipc ra,0x0 1422: R_RISCV_CALL __assert + 1422: R_RISCV_RELAX *ABS* + 1426: 000080e7 jalr ra # 1422 <.LBB20+0x14> + +000000000000142a <.L23>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:245 (discriminator 2) + ret = nxsem_trywait(&mutex->sem); + 142a: 8526 mv a0,s1 + 142c: 00000097 auipc ra,0x0 142c: R_RISCV_CALL nxsem_trywait + 142c: R_RISCV_RELAX *ABS* + 1430: 000080e7 jalr ra # 142c <.L23+0x2> + +0000000000001434 <.LVL28>: + 1434: 842a mv s0,a0 + +0000000000001436 <.LVL29>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:246 (discriminator 2) + if (ret < 0) + 1436: 00054763 bltz a0,1444 <.L24> 1436: R_RISCV_BRANCH .L24 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:251 + { + return ret; + } + + mutex->holder = _SCHED_GETTID(); + 143a: 00000097 auipc ra,0x0 143a: R_RISCV_CALL gettid + 143a: R_RISCV_RELAX *ABS* + 143e: 000080e7 jalr ra # 143a <.LVL29+0x4> + +0000000000001442 <.LVL30>: + 1442: cc88 sw a0,24(s1) + +0000000000001444 <.L24>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:253 + return ret; +} + 1444: 60e2 ld ra,24(sp) + 1446: 8522 mv a0,s0 + 1448: 6442 ld s0,16(sp) + 144a: 64a2 ld s1,8(sp) + +000000000000144c <.LVL31>: + 144c: 6105 addi sp,sp,32 + 144e: 8082 ret + +0000000000001450 : +nxmutex_timedlock(): +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:280 + * EDEADLK A deadlock condition was detected. + * + ****************************************************************************/ + +int nxmutex_timedlock(FAR mutex_t *mutex, unsigned int timeout) +{ + 1450: 711d addi sp,sp,-96 + 1452: e8a2 sd s0,80(sp) + 1454: e4a6 sd s1,72(sp) + 1456: 842e mv s0,a1 + 1458: 84aa mv s1,a0 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:286 + int ret; + struct timespec now; + struct timespec delay; + struct timespec rqtp; + + clock_gettime(CLOCK_MONOTONIC, &now); + 145a: 858a mv a1,sp + +000000000000145c <.LVL33>: + 145c: 4505 li a0,1 + +000000000000145e <.LVL34>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:280 +{ + 145e: ec86 sd ra,88(sp) + 1460: e0ca sd s2,64(sp) + 1462: fc4e sd s3,56(sp) +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:286 + clock_gettime(CLOCK_MONOTONIC, &now); + 1464: 00000097 auipc ra,0x0 1464: R_RISCV_CALL clock_gettime + 1464: R_RISCV_RELAX *ABS* + 1468: 000080e7 jalr ra # 1464 <.LVL34+0x6> + +000000000000146c <.LVL35>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:287 + clock_ticks2time(MSEC2TICK(timeout), &delay); + 146c: 080c addi a1,sp,16 + 146e: 8522 mv a0,s0 + 1470: 00000097 auipc ra,0x0 1470: R_RISCV_CALL clock_ticks2time + 1470: R_RISCV_RELAX *ABS* + 1474: 000080e7 jalr ra # 1470 <.LVL35+0x4> + +0000000000001478 <.LVL36>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:288 + clock_timespec_add(&now, &delay, &rqtp); + 1478: 1010 addi a2,sp,32 + 147a: 080c addi a1,sp,16 + 147c: 850a mv a0,sp + 147e: 00000097 auipc ra,0x0 147e: R_RISCV_CALL clock_timespec_add + 147e: R_RISCV_RELAX *ABS* + 1482: 000080e7 jalr ra # 147e <.LVL36+0x6> + +0000000000001486 <.LVL37>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:296 + + do + { + ret = nxsem_clockwait(&mutex->sem, CLOCK_MONOTONIC, &rqtp); + } + while (ret == -EINTR || ret == -ECANCELED); + 1486: 59f1 li s3,-4 + 1488: f8300913 li s2,-125 + +000000000000148c <.L29>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:294 (discriminator 3) + ret = nxsem_clockwait(&mutex->sem, CLOCK_MONOTONIC, &rqtp); + 148c: 1010 addi a2,sp,32 + 148e: 4585 li a1,1 + 1490: 8526 mv a0,s1 + 1492: 00000097 auipc ra,0x0 1492: R_RISCV_CALL nxsem_clockwait + 1492: R_RISCV_RELAX *ABS* + 1496: 000080e7 jalr ra # 1492 <.L29+0x6> + +000000000000149a <.LVL38>: + 149a: 842a mv s0,a0 + +000000000000149c <.LVL39>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:296 (discriminator 3) + while (ret == -EINTR || ret == -ECANCELED); + 149c: ff3508e3 beq a0,s3,148c <.L29> 149c: R_RISCV_BRANCH .L29 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:296 (discriminator 2) + 14a0: ff2506e3 beq a0,s2,148c <.L29> 14a0: R_RISCV_BRANCH .L29 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:298 + + if (ret >= 0) + 14a4: 00054763 bltz a0,14b2 <.L28> 14a4: R_RISCV_BRANCH .L28 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:300 + { + mutex->holder = _SCHED_GETTID(); + 14a8: 00000097 auipc ra,0x0 14a8: R_RISCV_CALL gettid + 14a8: R_RISCV_RELAX *ABS* + 14ac: 000080e7 jalr ra # 14a8 <.LVL39+0xc> + +00000000000014b0 <.LVL40>: + 14b0: cc88 sw a0,24(s1) + +00000000000014b2 <.L28>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:304 + } + + return ret; +} + 14b2: 60e6 ld ra,88(sp) + 14b4: 8522 mv a0,s0 + 14b6: 6446 ld s0,80(sp) + 14b8: 64a6 ld s1,72(sp) + +00000000000014ba <.LVL41>: + 14ba: 6906 ld s2,64(sp) + 14bc: 79e2 ld s3,56(sp) + 14be: 6125 addi sp,sp,96 + 14c0: 8082 ret + +00000000000014c2 : +nxmutex_unlock(): +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:327 + * This function may be called from an interrupt handler. + * + ****************************************************************************/ + +int nxmutex_unlock(FAR mutex_t *mutex) +{ + 14c2: 1101 addi sp,sp,-32 + 14c4: ec06 sd ra,24(sp) + 14c6: e822 sd s0,16(sp) + 14c8: e426 sd s1,8(sp) +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:330 + int ret; + + if (nxmutex_is_reset(mutex)) + 14ca: 4d18 lw a4,24(a0) + 14cc: 57f9 li a5,-2 + 14ce: 04f70b63 beq a4,a5,1524 <.L34> 14ce: R_RISCV_BRANCH .L34 + 14d2: 842a mv s0,a0 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:335 + { + return OK; + } + + DEBUGASSERT(nxmutex_is_hold(mutex)); + 14d4: 00000097 auipc ra,0x0 14d4: R_RISCV_CALL nxmutex_is_hold + 14d4: R_RISCV_RELAX *ABS* + 14d8: 000080e7 jalr ra # 14d4 + +00000000000014dc <.LVL43>: + 14dc: ed19 bnez a0,14fa <.L33> 14dc: R_RISCV_RVC_BRANCH .L33 + +00000000000014de <.LBB30>: + 14de: 00000617 auipc a2,0x0 14de: R_RISCV_PCREL_HI20 .LC2 + 14de: R_RISCV_RELAX *ABS* + 14e2: 00060613 mv a2,a2 14e2: R_RISCV_PCREL_LO12_I .L0 + 14e2: R_RISCV_RELAX *ABS* + 14e6: 14f00593 li a1,335 + 14ea: 00000517 auipc a0,0x0 14ea: R_RISCV_PCREL_HI20 .LC1 + 14ea: R_RISCV_RELAX *ABS* + 14ee: 00050513 mv a0,a0 14ee: R_RISCV_PCREL_LO12_I .L0 + 14ee: R_RISCV_RELAX *ABS* + 14f2: 00000097 auipc ra,0x0 14f2: R_RISCV_CALL __assert + 14f2: R_RISCV_RELAX *ABS* + 14f6: 000080e7 jalr ra # 14f2 <.LBB30+0x14> + +00000000000014fa <.L33>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:337 (discriminator 2) + + mutex->holder = NXMUTEX_NO_HOLDER; + 14fa: 57fd li a5,-1 + 14fc: cc1c sw a5,24(s0) +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:339 (discriminator 2) + + ret = nxsem_post(&mutex->sem); + 14fe: 8522 mv a0,s0 + 1500: 00000097 auipc ra,0x0 1500: R_RISCV_CALL nxsem_post + 1500: R_RISCV_RELAX *ABS* + 1504: 000080e7 jalr ra # 1500 <.L33+0x6> + +0000000000001508 <.LVL46>: + 1508: 84aa mv s1,a0 + +000000000000150a <.LVL47>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:340 (discriminator 2) + if (ret < 0) + 150a: 00055763 bgez a0,1518 <.L32> 150a: R_RISCV_BRANCH .L32 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:342 + { + mutex->holder = _SCHED_GETTID(); + 150e: 00000097 auipc ra,0x0 150e: R_RISCV_CALL gettid + 150e: R_RISCV_RELAX *ABS* + 1512: 000080e7 jalr ra # 150e <.LVL47+0x4> + +0000000000001516 <.LVL48>: + 1516: cc08 sw a0,24(s0) + +0000000000001518 <.L32>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:346 + } + + return ret; +} + 1518: 60e2 ld ra,24(sp) + 151a: 6442 ld s0,16(sp) + 151c: 8526 mv a0,s1 + 151e: 64a2 ld s1,8(sp) + 1520: 6105 addi sp,sp,32 + 1522: 8082 ret + +0000000000001524 <.L34>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:332 + return OK; + 1524: 4481 li s1,0 + 1526: bfcd j 1518 <.L32> 1526: R_RISCV_RVC_JUMP .L32 + +0000000000001528 : +nxmutex_breaklock(): +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:387 + * Possible returned errors: + * + ****************************************************************************/ + +int nxmutex_breaklock(FAR mutex_t *mutex, FAR bool *locked) +{ + 1528: 1101 addi sp,sp,-32 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:390 + int ret = OK; + + *locked = false; + 152a: 00058023 sb zero,0(a1) +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:387 +{ + 152e: e822 sd s0,16(sp) + 1530: e426 sd s1,8(sp) + 1532: ec06 sd ra,24(sp) + 1534: 84aa mv s1,a0 + 1536: 842e mv s0,a1 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:391 + if (nxmutex_is_hold(mutex)) + 1538: 00000097 auipc ra,0x0 1538: R_RISCV_CALL nxmutex_is_hold + 1538: R_RISCV_RELAX *ABS* + 153c: 000080e7 jalr ra # 1538 + +0000000000001540 <.LVL52>: + 1540: c105 beqz a0,1560 <.L38> 1540: R_RISCV_RVC_BRANCH .L38 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:393 + { + ret = nxmutex_unlock(mutex); + 1542: 8526 mv a0,s1 + 1544: 00000097 auipc ra,0x0 1544: R_RISCV_CALL nxmutex_unlock + 1544: R_RISCV_RELAX *ABS* + 1548: 000080e7 jalr ra # 1544 <.LVL52+0x4> + +000000000000154c <.LVL53>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:394 + if (ret >= 0) + 154c: 00054563 bltz a0,1556 <.L37> 154c: R_RISCV_BRANCH .L37 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:396 + { + *locked = true; + 1550: 4785 li a5,1 + 1552: 00f40023 sb a5,0(s0) + +0000000000001556 <.L37>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:401 + } + } + + return ret; +} + 1556: 60e2 ld ra,24(sp) + 1558: 6442 ld s0,16(sp) + +000000000000155a <.LVL55>: + 155a: 64a2 ld s1,8(sp) + +000000000000155c <.LVL56>: + 155c: 6105 addi sp,sp,32 + 155e: 8082 ret + +0000000000001560 <.L38>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:388 + int ret = OK; + 1560: 4501 li a0,0 + 1562: bfd5 j 1556 <.L37> 1562: R_RISCV_RVC_JUMP .L37 + +0000000000001564 : +nxmutex_restorelock(): +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:422 + * + ****************************************************************************/ + +int nxmutex_restorelock(FAR mutex_t *mutex, bool locked) +{ + return locked ? nxmutex_lock(mutex) : OK; + 1564: c589 beqz a1,156e <.L41> 1564: R_RISCV_RVC_BRANCH .L41 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:422 (discriminator 1) + 1566: 00000317 auipc t1,0x0 1566: R_RISCV_CALL nxmutex_lock + 1566: R_RISCV_RELAX *ABS* + 156a: 00030067 jr t1 # 1566 + +000000000000156e <.L41>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:423 (discriminator 4) +} + 156e: 4501 li a0,0 + +0000000000001570 <.LVL60>: + 1570: 8082 ret + +0000000000001572 : +nxrmutex_init(): +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:447 + * + ****************************************************************************/ + +int nxrmutex_init(FAR rmutex_t *rmutex) +{ + rmutex->count = 0; + 1572: 02052023 sw zero,32(a0) # 150a <.LVL47> +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:448 + return nxmutex_init(&rmutex->mutex); + 1576: 00000317 auipc t1,0x0 1576: R_RISCV_CALL nxmutex_init + 1576: R_RISCV_RELAX *ABS* + 157a: 00030067 jr t1 # 1576 + +000000000000157e : +nxrmutex_destroy(): +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:468 + * returned on success. A negated errno value is returned on failure. + * + ****************************************************************************/ + +int nxrmutex_destroy(FAR rmutex_t *rmutex) +{ + 157e: 1141 addi sp,sp,-16 + 1580: e022 sd s0,0(sp) + 1582: e406 sd ra,8(sp) + 1584: 842a mv s0,a0 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:469 + int ret = nxmutex_destroy(&rmutex->mutex); + 1586: 00000097 auipc ra,0x0 1586: R_RISCV_CALL nxmutex_destroy + 1586: R_RISCV_RELAX *ABS* + 158a: 000080e7 jalr ra # 1586 + +000000000000158e <.LVL64>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:471 + + if (ret >= 0) + 158e: 00054463 bltz a0,1596 <.L44> 158e: R_RISCV_BRANCH .L44 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:473 + { + rmutex->count = 0; + 1592: 02042023 sw zero,32(s0) + +0000000000001596 <.L44>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:477 + } + + return ret; +} + 1596: 60a2 ld ra,8(sp) + 1598: 6402 ld s0,0(sp) + +000000000000159a <.LVL65>: + 159a: 0141 addi sp,sp,16 + 159c: 8082 ret + +000000000000159e : +nxrmutex_is_hold(): +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:495 + * + ****************************************************************************/ + +bool nxrmutex_is_hold(FAR rmutex_t *rmutex) +{ + return nxmutex_is_hold(&rmutex->mutex); + 159e: 00000317 auipc t1,0x0 159e: R_RISCV_CALL nxmutex_is_hold + 159e: R_RISCV_RELAX *ABS* + 15a2: 00030067 jr t1 # 159e + +00000000000015a6 : +nxrmutex_is_locked(): +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:514 + * + ****************************************************************************/ + +bool nxrmutex_is_locked(FAR rmutex_t *rmutex) +{ + return nxmutex_is_locked(&rmutex->mutex); + 15a6: 00000317 auipc t1,0x0 15a6: R_RISCV_CALL nxmutex_is_locked + 15a6: R_RISCV_RELAX *ABS* + 15aa: 00030067 jr t1 # 15a6 + +00000000000015ae : +nxrmutex_lock(): +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:537 + * Possible returned errors: + * + ****************************************************************************/ + +int nxrmutex_lock(FAR rmutex_t *rmutex) +{ + 15ae: 1141 addi sp,sp,-16 + 15b0: e022 sd s0,0(sp) + 15b2: e406 sd ra,8(sp) + 15b4: 842a mv s0,a0 + +00000000000015b6 <.LBB32>: +nxrmutex_is_hold(): +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:495 + return nxmutex_is_hold(&rmutex->mutex); + 15b6: 00000097 auipc ra,0x0 15b6: R_RISCV_CALL nxmutex_is_hold + 15b6: R_RISCV_RELAX *ABS* + 15ba: 000080e7 jalr ra # 15b6 <.LBB32> + +00000000000015be <.LVL72>: + 15be: 87aa mv a5,a0 + 15c0: 4501 li a0,0 + +00000000000015c2 <.LBE32>: +nxrmutex_lock(): +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:540 + int ret = OK; + + if (!nxrmutex_is_hold(rmutex)) + 15c2: eb81 bnez a5,15d2 <.L49> 15c2: R_RISCV_RVC_BRANCH .L49 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:542 + { + ret = nxmutex_lock(&rmutex->mutex); + 15c4: 8522 mv a0,s0 + 15c6: 00000097 auipc ra,0x0 15c6: R_RISCV_CALL nxmutex_lock + 15c6: R_RISCV_RELAX *ABS* + 15ca: 000080e7 jalr ra # 15c6 <.LBE32+0x4> + +00000000000015ce <.LVL73>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:545 + } + + if (ret >= 0) + 15ce: 02054663 bltz a0,15fa <.L50> 15ce: R_RISCV_BRANCH .L50 + +00000000000015d2 <.L49>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:547 + { + DEBUGASSERT(rmutex->count < UINT_MAX); + 15d2: 501c lw a5,32(s0) + 15d4: 577d li a4,-1 + 15d6: 02e79063 bne a5,a4,15f6 <.L51> 15d6: R_RISCV_BRANCH .L51 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:547 (discriminator 1) + 15da: 00000617 auipc a2,0x0 15da: R_RISCV_PCREL_HI20 .LC3 + 15da: R_RISCV_RELAX *ABS* + 15de: 00060613 mv a2,a2 15de: R_RISCV_PCREL_LO12_I .L0 + 15de: R_RISCV_RELAX *ABS* + 15e2: 22300593 li a1,547 + 15e6: 00000517 auipc a0,0x0 15e6: R_RISCV_PCREL_HI20 .LC1 + 15e6: R_RISCV_RELAX *ABS* + 15ea: 00050513 mv a0,a0 15ea: R_RISCV_PCREL_LO12_I .L0 + 15ea: R_RISCV_RELAX *ABS* + 15ee: 00000097 auipc ra,0x0 15ee: R_RISCV_CALL __assert + 15ee: R_RISCV_RELAX *ABS* + 15f2: 000080e7 jalr ra # 15ee <.L49+0x1c> + +00000000000015f6 <.L51>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:548 (discriminator 2) + ++rmutex->count; + 15f6: 2785 addiw a5,a5,1 + 15f8: d01c sw a5,32(s0) + +00000000000015fa <.L50>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:552 + } + + return ret; +} + 15fa: 60a2 ld ra,8(sp) + 15fc: 6402 ld s0,0(sp) + +00000000000015fe <.LVL76>: + 15fe: 0141 addi sp,sp,16 + 1600: 8082 ret + +0000000000001602 : +nxrmutex_trylock(): +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:578 + * -EAGAIN - The recursive mutex is not available. + * + ****************************************************************************/ + +int nxrmutex_trylock(FAR rmutex_t *rmutex) +{ + 1602: 1141 addi sp,sp,-16 + 1604: e022 sd s0,0(sp) + 1606: e406 sd ra,8(sp) + 1608: 842a mv s0,a0 + +000000000000160a <.LBB34>: +nxrmutex_is_hold(): +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:495 + return nxmutex_is_hold(&rmutex->mutex); + 160a: 00000097 auipc ra,0x0 160a: R_RISCV_CALL nxmutex_is_hold + 160a: R_RISCV_RELAX *ABS* + 160e: 000080e7 jalr ra # 160a <.LBB34> + +0000000000001612 <.LVL79>: + 1612: 87aa mv a5,a0 + 1614: 4501 li a0,0 + +0000000000001616 <.LBE34>: +nxrmutex_trylock(): +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:581 + int ret = OK; + + if (!nxrmutex_is_hold(rmutex)) + 1616: eb81 bnez a5,1626 <.L56> 1616: R_RISCV_RVC_BRANCH .L56 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:583 + { + ret = nxmutex_trylock(&rmutex->mutex); + 1618: 8522 mv a0,s0 + 161a: 00000097 auipc ra,0x0 161a: R_RISCV_CALL nxmutex_trylock + 161a: R_RISCV_RELAX *ABS* + 161e: 000080e7 jalr ra # 161a <.LBE34+0x4> + +0000000000001622 <.LVL80>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:586 + } + + if (ret >= 0) + 1622: 02054663 bltz a0,164e <.L57> 1622: R_RISCV_BRANCH .L57 + +0000000000001626 <.L56>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:588 + { + DEBUGASSERT(rmutex->count < UINT_MAX); + 1626: 501c lw a5,32(s0) + 1628: 577d li a4,-1 + 162a: 02e79063 bne a5,a4,164a <.L58> 162a: R_RISCV_BRANCH .L58 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:588 (discriminator 1) + 162e: 00000617 auipc a2,0x0 162e: R_RISCV_PCREL_HI20 .LC3 + 162e: R_RISCV_RELAX *ABS* + 1632: 00060613 mv a2,a2 1632: R_RISCV_PCREL_LO12_I .L0 + 1632: R_RISCV_RELAX *ABS* + 1636: 24c00593 li a1,588 + 163a: 00000517 auipc a0,0x0 163a: R_RISCV_PCREL_HI20 .LC1 + 163a: R_RISCV_RELAX *ABS* + 163e: 00050513 mv a0,a0 163e: R_RISCV_PCREL_LO12_I .L0 + 163e: R_RISCV_RELAX *ABS* + 1642: 00000097 auipc ra,0x0 1642: R_RISCV_CALL __assert + 1642: R_RISCV_RELAX *ABS* + 1646: 000080e7 jalr ra # 1642 <.L56+0x1c> + +000000000000164a <.L58>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:589 (discriminator 2) + ++rmutex->count; + 164a: 2785 addiw a5,a5,1 + 164c: d01c sw a5,32(s0) + +000000000000164e <.L57>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:593 + } + + return ret; +} + 164e: 60a2 ld ra,8(sp) + 1650: 6402 ld s0,0(sp) + +0000000000001652 <.LVL83>: + 1652: 0141 addi sp,sp,16 + 1654: 8082 ret + +0000000000001656 : +nxrmutex_timedlock(): +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:621 + * ECANCELED May be returned if the thread is canceled while waiting. + * + ****************************************************************************/ + +int nxrmutex_timedlock(FAR rmutex_t *rmutex, unsigned int timeout) +{ + 1656: 1101 addi sp,sp,-32 + 1658: e822 sd s0,16(sp) + 165a: e42e sd a1,8(sp) + 165c: ec06 sd ra,24(sp) + 165e: 842a mv s0,a0 + +0000000000001660 <.LBB36>: +nxrmutex_is_hold(): +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:495 + return nxmutex_is_hold(&rmutex->mutex); + 1660: 00000097 auipc ra,0x0 1660: R_RISCV_CALL nxmutex_is_hold + 1660: R_RISCV_RELAX *ABS* + 1664: 000080e7 jalr ra # 1660 <.LBB36> + +0000000000001668 <.LVL86>: + 1668: 87aa mv a5,a0 + +000000000000166a <.LBE36>: +nxrmutex_timedlock(): +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:624 + int ret = OK; + + if (!nxrmutex_is_hold(rmutex)) + 166a: 65a2 ld a1,8(sp) + 166c: 4501 li a0,0 + 166e: eb81 bnez a5,167e <.L63> 166e: R_RISCV_RVC_BRANCH .L63 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:626 + { + ret = nxmutex_timedlock(&rmutex->mutex, timeout); + 1670: 8522 mv a0,s0 + 1672: 00000097 auipc ra,0x0 1672: R_RISCV_CALL nxmutex_timedlock + 1672: R_RISCV_RELAX *ABS* + 1676: 000080e7 jalr ra # 1672 <.LBE36+0x8> + +000000000000167a <.LVL87>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:629 + } + + if (ret >= 0) + 167a: 02054663 bltz a0,16a6 <.L64> 167a: R_RISCV_BRANCH .L64 + +000000000000167e <.L63>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:631 + { + DEBUGASSERT(rmutex->count < UINT_MAX); + 167e: 501c lw a5,32(s0) + 1680: 577d li a4,-1 + 1682: 02e79063 bne a5,a4,16a2 <.L65> 1682: R_RISCV_BRANCH .L65 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:631 (discriminator 1) + 1686: 00000617 auipc a2,0x0 1686: R_RISCV_PCREL_HI20 .LC3 + 1686: R_RISCV_RELAX *ABS* + 168a: 00060613 mv a2,a2 168a: R_RISCV_PCREL_LO12_I .L0 + 168a: R_RISCV_RELAX *ABS* + 168e: 27700593 li a1,631 + 1692: 00000517 auipc a0,0x0 1692: R_RISCV_PCREL_HI20 .LC1 + 1692: R_RISCV_RELAX *ABS* + 1696: 00050513 mv a0,a0 1696: R_RISCV_PCREL_LO12_I .L0 + 1696: R_RISCV_RELAX *ABS* + 169a: 00000097 auipc ra,0x0 169a: R_RISCV_CALL __assert + 169a: R_RISCV_RELAX *ABS* + 169e: 000080e7 jalr ra # 169a <.L63+0x1c> + +00000000000016a2 <.L65>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:632 (discriminator 2) + ++rmutex->count; + 16a2: 2785 addiw a5,a5,1 + 16a4: d01c sw a5,32(s0) + +00000000000016a6 <.L64>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:636 + } + + return ret; +} + 16a6: 60e2 ld ra,24(sp) + 16a8: 6442 ld s0,16(sp) + +00000000000016aa <.LVL90>: + 16aa: 6105 addi sp,sp,32 + 16ac: 8082 ret + +00000000000016ae : +nxrmutex_unlock(): +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:660 + * This function may be called from an interrupt handler. + * + ****************************************************************************/ + +int nxrmutex_unlock(FAR rmutex_t *rmutex) +{ + 16ae: 1141 addi sp,sp,-16 + 16b0: e406 sd ra,8(sp) + 16b2: e022 sd s0,0(sp) +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:663 + int ret = OK; + + DEBUGASSERT(rmutex->count > 0); + 16b4: 511c lw a5,32(a0) + 16b6: ef99 bnez a5,16d4 <.L70> 16b6: R_RISCV_RVC_BRANCH .L70 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:663 (discriminator 1) + 16b8: 00000617 auipc a2,0x0 16b8: R_RISCV_PCREL_HI20 .LC4 + 16b8: R_RISCV_RELAX *ABS* + 16bc: 00060613 mv a2,a2 16bc: R_RISCV_PCREL_LO12_I .L0 + 16bc: R_RISCV_RELAX *ABS* + 16c0: 29700593 li a1,663 + 16c4: 00000517 auipc a0,0x0 16c4: R_RISCV_PCREL_HI20 .LC1 + 16c4: R_RISCV_RELAX *ABS* + 16c8: 00050513 mv a0,a0 16c8: R_RISCV_PCREL_LO12_I .L0 + 16c8: R_RISCV_RELAX *ABS* + +00000000000016cc <.LVL92>: + 16cc: 00000097 auipc ra,0x0 16cc: R_RISCV_CALL __assert + 16cc: R_RISCV_RELAX *ABS* + 16d0: 000080e7 jalr ra # 16cc <.LVL92> + +00000000000016d4 <.L70>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:665 (discriminator 2) + + if (--rmutex->count == 0) + 16d4: fff7871b addiw a4,a5,-1 + 16d8: d118 sw a4,32(a0) + 16da: 842a mv s0,a0 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:661 (discriminator 2) + int ret = OK; + 16dc: 4781 li a5,0 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:665 (discriminator 2) + if (--rmutex->count == 0) + 16de: eb19 bnez a4,16f4 <.L71> 16de: R_RISCV_RVC_BRANCH .L71 + +00000000000016e0 <.LVL94>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:667 + { + ret = nxmutex_unlock(&rmutex->mutex); + 16e0: 00000097 auipc ra,0x0 16e0: R_RISCV_CALL nxmutex_unlock + 16e0: R_RISCV_RELAX *ABS* + 16e4: 000080e7 jalr ra # 16e0 <.LVL94> + +00000000000016e8 <.LVL95>: + 16e8: 87aa mv a5,a0 + +00000000000016ea <.LVL96>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:668 + if (ret < 0) + 16ea: 00055563 bgez a0,16f4 <.L71> 16ea: R_RISCV_BRANCH .L71 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:670 + { + ++rmutex->count; + 16ee: 5018 lw a4,32(s0) + 16f0: 2705 addiw a4,a4,1 + 16f2: d018 sw a4,32(s0) + +00000000000016f4 <.L71>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:675 + } + } + + return ret; +} + 16f4: 60a2 ld ra,8(sp) + 16f6: 6402 ld s0,0(sp) + +00000000000016f8 <.LVL98>: + 16f8: 853e mv a0,a5 + 16fa: 0141 addi sp,sp,16 + 16fc: 8082 ret + +00000000000016fe : +nxrmutex_breaklock(): +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:714 + * Possible returned errors: + * + ****************************************************************************/ + +int nxrmutex_breaklock(FAR rmutex_t *rmutex, FAR unsigned int *count) +{ + 16fe: 1101 addi sp,sp,-32 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:717 + int ret = OK; + + *count = 0; + 1700: 0005a023 sw zero,0(a1) +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:714 +{ + 1704: e822 sd s0,16(sp) + 1706: e426 sd s1,8(sp) + 1708: ec06 sd ra,24(sp) + 170a: 842a mv s0,a0 + +000000000000170c <.LBB38>: + 170c: 84ae mv s1,a1 + +000000000000170e <.LBB41>: +nxrmutex_is_hold(): +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:495 + return nxmutex_is_hold(&rmutex->mutex); + 170e: 00000097 auipc ra,0x0 170e: R_RISCV_CALL nxmutex_is_hold + 170e: R_RISCV_RELAX *ABS* + 1712: 000080e7 jalr ra # 170e <.LBB41> + +0000000000001716 <.LBE41>: +nxrmutex_breaklock(): +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:718 + if (nxrmutex_is_hold(rmutex)) + 1716: c11d beqz a0,173c <.L76> 1716: R_RISCV_RVC_BRANCH .L76 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:720 + { + *count = rmutex->count; + 1718: 501c lw a5,32(s0) +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:722 + rmutex->count = 0; + ret = nxmutex_unlock(&rmutex->mutex); + 171a: 8522 mv a0,s0 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:720 + *count = rmutex->count; + 171c: c09c sw a5,0(s1) +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:721 + rmutex->count = 0; + 171e: 02042023 sw zero,32(s0) +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:722 + ret = nxmutex_unlock(&rmutex->mutex); + 1722: 00000097 auipc ra,0x0 1722: R_RISCV_CALL nxmutex_unlock + 1722: R_RISCV_RELAX *ABS* + 1726: 000080e7 jalr ra # 1722 <.LBE41+0xc> + +000000000000172a <.LVL102>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:723 + if (ret < 0) + 172a: 00055463 bgez a0,1732 <.L75> 172a: R_RISCV_BRANCH .L75 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:725 + { + rmutex->count = *count; + 172e: 409c lw a5,0(s1) + 1730: d01c sw a5,32(s0) + +0000000000001732 <.L75>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:730 + } + } + + return ret; +} + 1732: 60e2 ld ra,24(sp) + 1734: 6442 ld s0,16(sp) + +0000000000001736 <.LVL104>: + 1736: 64a2 ld s1,8(sp) + +0000000000001738 <.LVL105>: + 1738: 6105 addi sp,sp,32 + 173a: 8082 ret + +000000000000173c <.L76>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:715 + int ret = OK; + 173c: 4501 li a0,0 + 173e: bfd5 j 1732 <.L75> 173e: R_RISCV_RVC_JUMP .L75 + +0000000000001740 : +nxrmutex_restorelock(): +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:753 + +int nxrmutex_restorelock(FAR rmutex_t *rmutex, unsigned int count) +{ + int ret = OK; + + if (count != 0) + 1740: c19d beqz a1,1766 <.L80> 1740: R_RISCV_RVC_BRANCH .L80 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:750 +{ + 1742: 1101 addi sp,sp,-32 + 1744: e822 sd s0,16(sp) + 1746: e426 sd s1,8(sp) + 1748: ec06 sd ra,24(sp) + 174a: 84aa mv s1,a0 + 174c: 842e mv s0,a1 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:755 + { + ret = nxmutex_lock(&rmutex->mutex); + 174e: 00000097 auipc ra,0x0 174e: R_RISCV_CALL nxmutex_lock + 174e: R_RISCV_RELAX *ABS* + 1752: 000080e7 jalr ra # 174e + +0000000000001756 <.LVL108>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:756 + if (ret >= 0) + 1756: 00054363 bltz a0,175c <.L79> 1756: R_RISCV_BRANCH .L79 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:758 + { + rmutex->count = count; + 175a: d080 sw s0,32(s1) + +000000000000175c <.L79>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:763 + } + } + + return ret; +} + 175c: 60e2 ld ra,24(sp) + 175e: 6442 ld s0,16(sp) + 1760: 64a2 ld s1,8(sp) + +0000000000001762 <.LVL109>: + 1762: 6105 addi sp,sp,32 + 1764: 8082 ret + +0000000000001766 <.L80>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:751 + int ret = OK; + 1766: 4501 li a0,0 + +0000000000001768 <.LVL111>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_mutex.c:763 +} + 1768: 8082 ret + +000000000000176a : +pthread_exit(): +/Users/Luppy/ox64/nuttx/libs/libc/pthread/pthread_exit.c:55 + * Assumptions: + * + ****************************************************************************/ + +void pthread_exit(FAR void *exit_value) +{ + 176a: 1141 addi sp,sp,-16 + 176c: e022 sd s0,0(sp) +/Users/Luppy/ox64/nuttx/libs/libc/pthread/pthread_exit.c:61 + /* Mark the pthread as non-cancelable to avoid additional calls to + * pthread_exit() due to any cancellation point logic that might get + * kicked off by actions taken during pthread_exit processing. + */ + + task_setcancelstate(TASK_CANCEL_DISABLE, NULL); + 176e: 4581 li a1,0 +/Users/Luppy/ox64/nuttx/libs/libc/pthread/pthread_exit.c:55 +{ + 1770: 842a mv s0,a0 +/Users/Luppy/ox64/nuttx/libs/libc/pthread/pthread_exit.c:61 + task_setcancelstate(TASK_CANCEL_DISABLE, NULL); + 1772: 4505 li a0,1 + +0000000000001774 <.LVL1>: +/Users/Luppy/ox64/nuttx/libs/libc/pthread/pthread_exit.c:55 +{ + 1774: e406 sd ra,8(sp) +/Users/Luppy/ox64/nuttx/libs/libc/pthread/pthread_exit.c:61 + task_setcancelstate(TASK_CANCEL_DISABLE, NULL); + 1776: 00000097 auipc ra,0x0 1776: R_RISCV_CALL task_setcancelstate + 1776: R_RISCV_RELAX *ABS* + 177a: 000080e7 jalr ra # 1776 <.LVL1+0x2> + +000000000000177e <.LVL2>: +/Users/Luppy/ox64/nuttx/libs/libc/pthread/pthread_exit.c:71 + +#if defined(CONFIG_TLS_NELEM) && CONFIG_TLS_NELEM > 0 + tls_destruct(); +#endif + + nx_pthread_exit(exit_value); + 177e: 8522 mv a0,s0 + 1780: 00000097 auipc ra,0x0 1780: R_RISCV_CALL nx_pthread_exit + 1780: R_RISCV_RELAX *ABS* + 1784: 000080e7 jalr ra # 1780 <.LVL2+0x2> + +0000000000001788 : +clock_ticks2time(): +/Users/Luppy/ox64/nuttx/libs/libc/sched/clock_ticks2time.c:55 + +int clock_ticks2time(sclock_t ticks, FAR struct timespec *reltime) +{ + sclock_t remainder; + + reltime->tv_sec = ticks / TICK_PER_SEC; + 1788: 3e800793 li a5,1000 + 178c: 02f5473b divw a4,a0,a5 +/Users/Luppy/ox64/nuttx/libs/libc/sched/clock_ticks2time.c:56 + remainder = ticks - TICK_PER_SEC * reltime->tv_sec; + 1790: c1800793 li a5,-1000 + 1794: 02e787bb mulw a5,a5,a4 +/Users/Luppy/ox64/nuttx/libs/libc/sched/clock_ticks2time.c:55 + reltime->tv_sec = ticks / TICK_PER_SEC; + 1798: c198 sw a4,0(a1) + +000000000000179a <.LVL1>: +/Users/Luppy/ox64/nuttx/libs/libc/sched/clock_ticks2time.c:56 + remainder = ticks - TICK_PER_SEC * reltime->tv_sec; + 179a: 9d3d addw a0,a0,a5 + +000000000000179c <.LVL2>: +/Users/Luppy/ox64/nuttx/libs/libc/sched/clock_ticks2time.c:57 + reltime->tv_nsec = remainder * NSEC_PER_TICK; + 179c: 000f47b7 lui a5,0xf4 + 17a0: 2407879b addiw a5,a5,576 + 17a4: 02f5053b mulw a0,a0,a5 + +00000000000017a8 <.LVL3>: + 17a8: e588 sd a0,8(a1) +/Users/Luppy/ox64/nuttx/libs/libc/sched/clock_ticks2time.c:59 + return OK; +} + 17aa: 4501 li a0,0 + 17ac: 8082 ret + +00000000000017ae : +clock_timespec_add(): +/Users/Luppy/ox64/nuttx/libs/libc/sched/clock_timespec_add.c:55 + +void clock_timespec_add(FAR const struct timespec *ts1, + FAR const struct timespec *ts2, + FAR struct timespec *ts3) +{ + time_t sec = ts1->tv_sec + ts2->tv_sec; + 17ae: 419c lw a5,0(a1) + 17b0: 4118 lw a4,0(a0) +/Users/Luppy/ox64/nuttx/libs/libc/sched/clock_timespec_add.c:56 + long nsec = ts1->tv_nsec + ts2->tv_nsec; + 17b2: 6594 ld a3,8(a1) +/Users/Luppy/ox64/nuttx/libs/libc/sched/clock_timespec_add.c:55 + time_t sec = ts1->tv_sec + ts2->tv_sec; + 17b4: 00f7083b addw a6,a4,a5 +/Users/Luppy/ox64/nuttx/libs/libc/sched/clock_timespec_add.c:56 + long nsec = ts1->tv_nsec + ts2->tv_nsec; + 17b8: 651c ld a5,8(a0) + 17ba: 97b6 add a5,a5,a3 +/Users/Luppy/ox64/nuttx/libs/libc/sched/clock_timespec_add.c:58 + + if (nsec >= NSEC_PER_SEC) + 17bc: 3b9ad6b7 lui a3,0x3b9ad + 17c0: 9ff68693 addi a3,a3,-1537 # 3b9ac9ff <.Ldebug_info0+0x3b97693a> + 17c4: 00f6d863 bge a3,a5,17d4 <.L2> 17c4: R_RISCV_BRANCH .L2 +/Users/Luppy/ox64/nuttx/libs/libc/sched/clock_timespec_add.c:60 + { + nsec -= NSEC_PER_SEC; + 17c8: c46536b7 lui a3,0xc4653 + 17cc: 60068693 addi a3,a3,1536 # ffffffffc4653600 <.Ldebug_info0+0xffffffffc461d53b> + 17d0: 97b6 add a5,a5,a3 +/Users/Luppy/ox64/nuttx/libs/libc/sched/clock_timespec_add.c:61 + sec++; + 17d2: 2805 addiw a6,a6,1 + +00000000000017d4 <.L2>: +/Users/Luppy/ox64/nuttx/libs/libc/sched/clock_timespec_add.c:64 + } + + ts3->tv_sec = sec; + 17d4: 01062023 sw a6,0(a2) # 16b8 +/Users/Luppy/ox64/nuttx/libs/libc/sched/clock_timespec_add.c:65 + ts3->tv_nsec = nsec; + 17d8: e61c sd a5,8(a2) +/Users/Luppy/ox64/nuttx/libs/libc/sched/clock_timespec_add.c:66 +} + 17da: 8082 ret + +00000000000017dc : +nxsem_init(): +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_init.c:67 + +int nxsem_init(FAR sem_t *sem, int pshared, unsigned int value) +{ + UNUSED(pshared); + + DEBUGASSERT(sem != NULL && value <= SEM_VALUE_MAX); + 17dc: c501 beqz a0,17e4 <.L2> 17dc: R_RISCV_RVC_BRANCH .L2 +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_init.c:67 (discriminator 2) + 17de: 67a1 lui a5,0x8 + 17e0: 02f66263 bltu a2,a5,1804 <.L3> 17e0: R_RISCV_BRANCH .L3 + +00000000000017e4 <.L2>: +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_init.c:64 +{ + 17e4: 1141 addi sp,sp,-16 + +00000000000017e6 <.LBB8>: +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_init.c:67 + DEBUGASSERT(sem != NULL && value <= SEM_VALUE_MAX); + 17e6: 00000617 auipc a2,0x0 17e6: R_RISCV_PCREL_HI20 .LC0 + 17e6: R_RISCV_RELAX *ABS* + 17ea: 00060613 mv a2,a2 17ea: R_RISCV_PCREL_LO12_I .L0 + 17ea: R_RISCV_RELAX *ABS* + +00000000000017ee <.LVL2>: + 17ee: 04300593 li a1,67 + +00000000000017f2 <.LVL3>: + 17f2: 00000517 auipc a0,0x0 17f2: R_RISCV_PCREL_HI20 .LC1 + 17f2: R_RISCV_RELAX *ABS* + 17f6: 00050513 mv a0,a0 17f6: R_RISCV_PCREL_LO12_I .L0 + 17f6: R_RISCV_RELAX *ABS* + +00000000000017fa <.LBE8>: +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_init.c:64 +{ + 17fa: e406 sd ra,8(sp) + +00000000000017fc <.LBB9>: +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_init.c:67 + DEBUGASSERT(sem != NULL && value <= SEM_VALUE_MAX); + 17fc: 00000097 auipc ra,0x0 17fc: R_RISCV_CALL __assert + 17fc: R_RISCV_RELAX *ABS* + 1800: 000080e7 jalr ra # 17fc <.LBB9> + +0000000000001804 <.L3>: +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_init.c:71 (discriminator 4) + + /* Initialize the semaphore count */ + + sem->semcount = (int16_t)value; + 1804: 0106161b slliw a2,a2,0x10 + +0000000000001808 <.LVL6>: + 1808: 4106561b sraiw a2,a2,0x10 + 180c: 00c51023 sh a2,0(a0) # 17f2 <.LVL3> +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_init.c:75 (discriminator 4) + + /* Initialize semaphore wait list */ + + dq_init(&sem->waitlist); + 1810: 00053423 sd zero,8(a0) + 1814: 00053823 sd zero,16(a0) +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_init.c:79 (discriminator 4) + + /* Initialize to support priority inheritance */ + + sem->flags = 0; + 1818: 00050123 sb zero,2(a0) +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_init.c:89 (discriminator 4) +# else + INITIALIZE_SEMHOLDER(&sem->holder); +# endif +#endif + return OK; +} + 181c: 4501 li a0,0 + +000000000000181e <.LVL7>: + 181e: 8082 ret + +0000000000001820 : +sem_init(): +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_init.c:116 + * returned and the errno value is set appropriately. + * + ****************************************************************************/ + +int sem_init(FAR sem_t *sem, int pshared, unsigned int value) +{ + 1820: 1141 addi sp,sp,-16 + 1822: e406 sd ra,8(sp) + 1824: e022 sd s0,0(sp) +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_init.c:123 + + /* Verify that a semaphore was provided and the count is within the valid + * range. + */ + + if (sem == NULL || value > SEM_VALUE_MAX) + 1826: c501 beqz a0,182e <.L10> 1826: R_RISCV_RVC_BRANCH .L10 +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_init.c:123 (discriminator 1) + 1828: 6721 lui a4,0x8 + 182a: 00e66e63 bltu a2,a4,1846 <.L11> 182a: R_RISCV_BRANCH .L11 + +000000000000182e <.L10>: +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_init.c:125 + { + set_errno(EINVAL); + 182e: 00000097 auipc ra,0x0 182e: R_RISCV_CALL __errno + 182e: R_RISCV_RELAX *ABS* + 1832: 000080e7 jalr ra # 182e <.L10> + +0000000000001836 <.LVL9>: + 1836: 47d9 li a5,22 + 1838: c11c sw a5,0(a0) + +000000000000183a <.L17>: +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_init.c:133 + + ret = nxsem_init(sem, pshared, value); + if (ret < 0) + { + set_errno(-ret); + ret = ERROR; + 183a: 547d li s0,-1 + +000000000000183c <.L12>: +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_init.c:137 + } + + return ret; +} + 183c: 60a2 ld ra,8(sp) + 183e: 8522 mv a0,s0 + 1840: 6402 ld s0,0(sp) + 1842: 0141 addi sp,sp,16 + 1844: 8082 ret + +0000000000001846 <.L11>: +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_init.c:129 + ret = nxsem_init(sem, pshared, value); + 1846: 00000097 auipc ra,0x0 1846: R_RISCV_CALL nxsem_init + 1846: R_RISCV_RELAX *ABS* + 184a: 000080e7 jalr ra # 1846 <.L11> + +000000000000184e <.LVL13>: + 184e: 842a mv s0,a0 + +0000000000001850 <.LVL14>: +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_init.c:130 + if (ret < 0) + 1850: fe0556e3 bgez a0,183c <.L12> 1850: R_RISCV_BRANCH .L12 +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_init.c:132 + set_errno(-ret); + 1854: 00000097 auipc ra,0x0 1854: R_RISCV_CALL __errno + 1854: R_RISCV_RELAX *ABS* + 1858: 000080e7 jalr ra # 1854 <.LVL14+0x4> + +000000000000185c <.LVL15>: + 185c: 4080043b negw s0,s0 + 1860: c100 sw s0,0(a0) + 1862: bfe1 j 183a <.L17> 1862: R_RISCV_RVC_JUMP .L17 + +0000000000001864 : +nxsem_set_protocol(): +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_setprotocol.c:78 + * + ****************************************************************************/ + +int nxsem_set_protocol(FAR sem_t *sem, int protocol) +{ + DEBUGASSERT(sem != NULL); + 1864: e10d bnez a0,1886 <.L2> 1864: R_RISCV_RVC_BRANCH .L2 + +0000000000001866 <.LBB4>: +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_setprotocol.c:77 +{ + 1866: 1141 addi sp,sp,-16 + +0000000000001868 <.LBB8>: +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_setprotocol.c:78 + DEBUGASSERT(sem != NULL); + 1868: 00000617 auipc a2,0x0 1868: R_RISCV_PCREL_HI20 .LC0 + 1868: R_RISCV_RELAX *ABS* + 186c: 00060613 mv a2,a2 186c: R_RISCV_PCREL_LO12_I .L0 + 186c: R_RISCV_RELAX *ABS* + 1870: 04e00593 li a1,78 + +0000000000001874 <.LVL2>: + 1874: 00000517 auipc a0,0x0 1874: R_RISCV_PCREL_HI20 .LC1 + 1874: R_RISCV_RELAX *ABS* + 1878: 00050513 mv a0,a0 1878: R_RISCV_PCREL_LO12_I .L0 + 1878: R_RISCV_RELAX *ABS* + +000000000000187c <.LBE8>: +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_setprotocol.c:77 +{ + 187c: e406 sd ra,8(sp) + +000000000000187e <.LBB9>: +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_setprotocol.c:78 + DEBUGASSERT(sem != NULL); + 187e: 00000097 auipc ra,0x0 187e: R_RISCV_CALL __assert + 187e: R_RISCV_RELAX *ABS* + 1882: 000080e7 jalr ra # 187e <.LBB9> + +0000000000001886 <.L2>: + 1886: 87aa mv a5,a0 + +0000000000001888 <.LBE9>: +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_setprotocol.c:80 (discriminator 2) + + switch (protocol & SEM_PRIO_MASK) + 1888: 0035f513 andi a0,a1,3 + +000000000000188c <.LVL5>: + 188c: c911 beqz a0,18a0 <.L3> 188c: R_RISCV_RVC_BRANCH .L3 +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_setprotocol.c:80 + 188e: fff5071b addiw a4,a0,-1 + 1892: 4785 li a5,1 + +0000000000001894 <.LVL6>: +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_setprotocol.c:87 + case SEM_PRIO_NONE: + break; + + case SEM_PRIO_INHERIT: + case SEM_PRIO_PROTECT: + return -ENOTSUP; + 1894: f7600513 li a0,-138 +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_setprotocol.c:80 + switch (protocol & SEM_PRIO_MASK) + 1898: 00e7f663 bgeu a5,a4,18a4 <.L4> 1898: R_RISCV_BRANCH .L4 + 189c: 5529 li a0,-22 + 189e: 8082 ret + +00000000000018a0 <.L3>: +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_setprotocol.c:93 + + default: + return -EINVAL; + } + + sem->flags = protocol; + 18a0: 00b78123 sb a1,2(a5) # 8002 <.LVL80+0x2> + +00000000000018a4 <.L4>: +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_setprotocol.c:95 + return OK; +} + 18a4: 8082 ret + +00000000000018a6 : +sem_setprotocol(): +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_setprotocol.c:137 + * the errno value is set appropriately. + * + ****************************************************************************/ + +int sem_setprotocol(FAR sem_t *sem, int protocol) +{ + 18a6: 1141 addi sp,sp,-16 + 18a8: e022 sd s0,0(sp) + 18aa: e406 sd ra,8(sp) +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_setprotocol.c:140 + int ret; + + ret = nxsem_set_protocol(sem, protocol); + 18ac: 00000097 auipc ra,0x0 18ac: R_RISCV_CALL nxsem_set_protocol + 18ac: R_RISCV_RELAX *ABS* + 18b0: 000080e7 jalr ra # 18ac + +00000000000018b4 <.LVL10>: + 18b4: 842a mv s0,a0 + +00000000000018b6 <.LVL11>: +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_setprotocol.c:141 + if (ret < 0) + 18b6: 00055a63 bgez a0,18ca <.L10> 18b6: R_RISCV_BRANCH .L10 +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_setprotocol.c:143 + { + set_errno(-ret); + 18ba: 4080043b negw s0,s0 + 18be: 00000097 auipc ra,0x0 18be: R_RISCV_CALL __errno + 18be: R_RISCV_RELAX *ABS* + 18c2: 000080e7 jalr ra # 18be <.LVL11+0x8> + +00000000000018c6 <.LVL12>: + 18c6: c100 sw s0,0(a0) + +00000000000018c8 <.LVL13>: +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_setprotocol.c:144 + ret = ERROR; + 18c8: 547d li s0,-1 + +00000000000018ca <.L10>: +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_setprotocol.c:148 + } + + return ret; +} + 18ca: 60a2 ld ra,8(sp) + 18cc: 8522 mv a0,s0 + 18ce: 6402 ld s0,0(sp) + +00000000000018d0 <.LVL15>: + 18d0: 0141 addi sp,sp,16 + 18d2: 8082 ret + +00000000000018d4 : +nxsem_get_value(): +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_getvalue.c:62 + * returned on success. A negated errno value is returned on failure. + * + ****************************************************************************/ + +int nxsem_get_value(FAR sem_t *sem, FAR int *sval) +{ + 18d4: 87aa mv a5,a0 +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_getvalue.c:69 + { + *sval = sem->semcount; + return OK; + } + + return -EINVAL; + 18d6: 5529 li a0,-22 + +00000000000018d8 <.LVL1>: +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_getvalue.c:63 + if (sem != NULL && sval != NULL) + 18d8: cb99 beqz a5,18ee <.L2> 18d8: R_RISCV_RVC_BRANCH .L2 +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_getvalue.c:63 (discriminator 1) + 18da: c991 beqz a1,18ee <.L2> 18da: R_RISCV_RVC_BRANCH .L2 +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_getvalue.c:65 + *sval = sem->semcount; + 18dc: 0007d783 lhu a5,0(a5) + +00000000000018e0 <.LVL2>: +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_getvalue.c:66 + return OK; + 18e0: 4501 li a0,0 +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_getvalue.c:65 + *sval = sem->semcount; + 18e2: 0107979b slliw a5,a5,0x10 + 18e6: 4107d79b sraiw a5,a5,0x10 + 18ea: c19c sw a5,0(a1) +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_getvalue.c:66 + return OK; + 18ec: 8082 ret + +00000000000018ee <.L2>: +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_getvalue.c:70 +} + 18ee: 8082 ret + +00000000000018f0 : +sem_getvalue(): +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_getvalue.c:97 + * returned and the errno value is set appropriately. + * + ****************************************************************************/ + +int sem_getvalue(FAR sem_t *sem, FAR int *sval) +{ + 18f0: 1141 addi sp,sp,-16 + 18f2: e022 sd s0,0(sp) + 18f4: e406 sd ra,8(sp) +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_getvalue.c:100 + int ret; + + ret = nxsem_get_value(sem, sval); + 18f6: 00000097 auipc ra,0x0 18f6: R_RISCV_CALL nxsem_get_value + 18f6: R_RISCV_RELAX *ABS* + 18fa: 000080e7 jalr ra # 18f6 + +00000000000018fe <.LVL5>: + 18fe: 842a mv s0,a0 + +0000000000001900 <.LVL6>: +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_getvalue.c:101 + if (ret < 0) + 1900: 00055a63 bgez a0,1914 <.L6> 1900: R_RISCV_BRANCH .L6 +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_getvalue.c:103 + { + set_errno(-ret); + 1904: 4080043b negw s0,s0 + 1908: 00000097 auipc ra,0x0 1908: R_RISCV_CALL __errno + 1908: R_RISCV_RELAX *ABS* + 190c: 000080e7 jalr ra # 1908 <.LVL6+0x8> + +0000000000001910 <.LVL7>: + 1910: c100 sw s0,0(a0) + +0000000000001912 <.LVL8>: +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_getvalue.c:104 + ret = ERROR; + 1912: 547d li s0,-1 + +0000000000001914 <.L6>: +/Users/Luppy/ox64/nuttx/libs/libc/semaphore/sem_getvalue.c:108 + } + + return ret; +} + 1914: 60a2 ld ra,8(sp) + 1916: 8522 mv a0,s0 + 1918: 6402 ld s0,0(sp) + +000000000000191a <.LVL10>: + 191a: 0141 addi sp,sp,16 + 191c: 8082 ret + +000000000000191e <_assert>: +_assert(): +/Users/Luppy/ox64/nuttx/syscall/proxies/PROXY__assert.c:8 +#include +#include +#include + +void _assert(FAR const char * parm1, int parm2, FAR const char * parm3, FAR void * parm4) +{ + 191e: 88aa mv a7,a0 + +0000000000001920 <.LVL1>: + 1920: 882e mv a6,a1 + +0000000000001922 <.LVL2>: + 1922: 87b2 mv a5,a2 + +0000000000001924 <.LVL3>: + 1924: 8736 mv a4,a3 + +0000000000001926 <.LBB4>: +sys_call4(): +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:281 + +static inline uintptr_t sys_call4(unsigned int nbr, uintptr_t parm1, + uintptr_t parm2, uintptr_t parm3, + uintptr_t parm4) +{ + register long r0 asm("a0") = (long)(nbr); + 1926: 4525 li a0,9 + +0000000000001928 <.LVL5>: +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:282 + register long r1 asm("a1") = (long)(parm1); + 1928: 85c6 mv a1,a7 + +000000000000192a <.LVL6>: +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:283 + register long r2 asm("a2") = (long)(parm2); + 192a: 8642 mv a2,a6 + +000000000000192c <.LVL7>: +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:284 + register long r3 asm("a3") = (long)(parm3); + 192c: 86be mv a3,a5 + +000000000000192e <.LVL8>: +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:287 + register long r4 asm("a4") = (long)(parm4); + + asm volatile + 192e: 00000073 ecall +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:294 + "ecall" + :: "r"(r0), "r"(r1), "r"(r2), "r"(r3), "r"(r4) + : "memory" + ); + + asm volatile("nop" : "=r"(r0)); + 1932: 0001 nop + +0000000000001934 <.LBE4>: +_assert(): +/Users/Luppy/ox64/nuttx/syscall/proxies/PROXY__assert.c:10 + sys_call4((unsigned int)SYS__assert, (uintptr_t)parm1, (uintptr_t)parm2, (uintptr_t)parm3, (uintptr_t)parm4); +} + 1934: 8082 ret + +0000000000001936 <_exit>: +_exit(): +/Users/Luppy/ox64/nuttx/syscall/proxies/PROXY__exit.c:8 +#include +#include +#include + +void _exit(int parm1) +{ + 1936: 85aa mv a1,a0 + +0000000000001938 <.LBB4>: +sys_call1(): +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:199 + register long r0 asm("a0") = (long)(nbr); + 1938: 4521 li a0,8 + +000000000000193a <.LVL2>: +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:202 + asm volatile + 193a: 00000073 ecall +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:209 + asm volatile("nop" : "=r"(r0)); + 193e: 0001 nop + +0000000000001940 <.L2>: +_exit(): +/Users/Luppy/ox64/nuttx/syscall/proxies/PROXY__exit.c:10 (discriminator 1) + sys_call1((unsigned int)SYS__exit, (uintptr_t)parm1); + while(1); + 1940: a001 j 1940 <.L2> 1940: R_RISCV_RVC_JUMP .L2 + +0000000000001942 : +clock_gettime(): +/Users/Luppy/ox64/nuttx/syscall/proxies/PROXY_clock_gettime.c:8 +#include +#include +#include + +int clock_gettime(clockid_t parm1, FAR struct timespec * parm2) +{ + 1942: 87aa mv a5,a0 + +0000000000001944 <.LVL1>: + 1944: 862e mv a2,a1 + +0000000000001946 <.LBB4>: +sys_call2(): +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:225 + register long r0 asm("a0") = (long)(nbr); + 1946: 03000513 li a0,48 + +000000000000194a <.LVL3>: +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:226 + register long r1 asm("a1") = (long)(parm1); + 194a: 85be mv a1,a5 + +000000000000194c <.LVL4>: +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:229 + asm volatile + 194c: 00000073 ecall +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:236 + asm volatile("nop" : "=r"(r0)); + 1950: 0001 nop + +0000000000001952 <.LBE4>: +clock_gettime(): +/Users/Luppy/ox64/nuttx/syscall/proxies/PROXY_clock_gettime.c:10 + return (int)sys_call2((unsigned int)SYS_clock_gettime, (uintptr_t)parm1, (uintptr_t)parm2); +} + 1952: 2501 sext.w a0,a0 + 1954: 8082 ret + +0000000000001956 : +sys_call0(): +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:175 + register long r0 asm("a0") = (long)(nbr); + 1956: 452d li a0,11 +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:177 + asm volatile + 1958: 00000073 ecall +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:184 + asm volatile("nop" : "=r"(r0)); + 195c: 0001 nop + +000000000000195e <.LBE4>: +gettid(): +/Users/Luppy/ox64/nuttx/syscall/proxies/PROXY_gettid.c:10 +#include + +pid_t gettid(void) +{ + return (pid_t)sys_call0((unsigned int)SYS_gettid); +} + 195e: 2501 sext.w a0,a0 + 1960: 8082 ret + +0000000000001962 : +nx_pthread_exit(): +/Users/Luppy/ox64/nuttx/syscall/proxies/PROXY_nx_pthread_exit.c:10 +#include + +#if !defined(CONFIG_DISABLE_PTHREAD) + +void nx_pthread_exit(pthread_addr_t parm1) +{ + 1962: 85aa mv a1,a0 + +0000000000001964 <.LBB4>: +sys_call1(): +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:199 + register long r0 asm("a0") = (long)(nbr); + 1964: 06b00513 li a0,107 + +0000000000001968 <.LVL2>: +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:202 + asm volatile + 1968: 00000073 ecall +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:209 + asm volatile("nop" : "=r"(r0)); + 196c: 0001 nop + +000000000000196e <.L2>: +nx_pthread_exit(): +/Users/Luppy/ox64/nuttx/syscall/proxies/PROXY_nx_pthread_exit.c:12 (discriminator 1) + sys_call1((unsigned int)SYS_nx_pthread_exit, (uintptr_t)parm1); + while(1); + 196e: a001 j 196e <.L2> 196e: R_RISCV_RVC_JUMP .L2 + +0000000000001970 : +nxsem_clockwait(): +/Users/Luppy/ox64/nuttx/syscall/proxies/PROXY_nxsem_clockwait.c:8 +#include +#include +#include + +int nxsem_clockwait(FAR sem_t * parm1, clockid_t parm2, FAR const struct timespec * parm3) +{ + 1970: 872a mv a4,a0 + +0000000000001972 <.LVL1>: + 1972: 87ae mv a5,a1 + +0000000000001974 <.LVL2>: + 1974: 86b2 mv a3,a2 + +0000000000001976 <.LBB4>: +sys_call3(): +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:252 + register long r0 asm("a0") = (long)(nbr); + 1976: 4571 li a0,28 + +0000000000001978 <.LVL4>: +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:253 + register long r1 asm("a1") = (long)(parm1); + 1978: 85ba mv a1,a4 + +000000000000197a <.LVL5>: +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:254 + register long r2 asm("a2") = (long)(parm2); + 197a: 863e mv a2,a5 + +000000000000197c <.LVL6>: +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:257 + asm volatile + 197c: 00000073 ecall +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:264 + asm volatile("nop" : "=r"(r0)); + 1980: 0001 nop + +0000000000001982 <.LBE4>: +nxsem_clockwait(): +/Users/Luppy/ox64/nuttx/syscall/proxies/PROXY_nxsem_clockwait.c:10 + return (int)sys_call3((unsigned int)SYS_nxsem_clockwait, (uintptr_t)parm1, (uintptr_t)parm2, (uintptr_t)parm3); +} + 1982: 2501 sext.w a0,a0 + 1984: 8082 ret + +0000000000001986 : +nxsem_destroy(): +/Users/Luppy/ox64/nuttx/syscall/proxies/PROXY_nxsem_destroy.c:8 +#include +#include +#include + +int nxsem_destroy(FAR sem_t * parm1) +{ + 1986: 85aa mv a1,a0 + +0000000000001988 <.LBB4>: +sys_call1(): +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:199 + register long r0 asm("a0") = (long)(nbr); + 1988: 4569 li a0,26 + +000000000000198a <.LVL2>: +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:202 + asm volatile + 198a: 00000073 ecall +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:209 + asm volatile("nop" : "=r"(r0)); + 198e: 0001 nop + +0000000000001990 <.LBE4>: +nxsem_destroy(): +/Users/Luppy/ox64/nuttx/syscall/proxies/PROXY_nxsem_destroy.c:10 + return (int)sys_call1((unsigned int)SYS_nxsem_destroy, (uintptr_t)parm1); +} + 1990: 2501 sext.w a0,a0 + 1992: 8082 ret + +0000000000001994 : +nxsem_post(): +/Users/Luppy/ox64/nuttx/syscall/proxies/PROXY_nxsem_post.c:8 +#include +#include +#include + +int nxsem_post(FAR sem_t * parm1) +{ + 1994: 85aa mv a1,a0 + +0000000000001996 <.LBB4>: +sys_call1(): +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:199 + register long r0 asm("a0") = (long)(nbr); + 1996: 456d li a0,27 + +0000000000001998 <.LVL2>: +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:202 + asm volatile + 1998: 00000073 ecall +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:209 + asm volatile("nop" : "=r"(r0)); + 199c: 0001 nop + +000000000000199e <.LBE4>: +nxsem_post(): +/Users/Luppy/ox64/nuttx/syscall/proxies/PROXY_nxsem_post.c:10 + return (int)sys_call1((unsigned int)SYS_nxsem_post, (uintptr_t)parm1); +} + 199e: 2501 sext.w a0,a0 + 19a0: 8082 ret + +00000000000019a2 : +nxsem_trywait(): +/Users/Luppy/ox64/nuttx/syscall/proxies/PROXY_nxsem_trywait.c:8 +#include +#include +#include + +int nxsem_trywait(FAR sem_t * parm1) +{ + 19a2: 85aa mv a1,a0 + +00000000000019a4 <.LBB4>: +sys_call1(): +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:199 + register long r0 asm("a0") = (long)(nbr); + 19a4: 4579 li a0,30 + +00000000000019a6 <.LVL2>: +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:202 + asm volatile + 19a6: 00000073 ecall +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:209 + asm volatile("nop" : "=r"(r0)); + 19aa: 0001 nop + +00000000000019ac <.LBE4>: +nxsem_trywait(): +/Users/Luppy/ox64/nuttx/syscall/proxies/PROXY_nxsem_trywait.c:10 + return (int)sys_call1((unsigned int)SYS_nxsem_trywait, (uintptr_t)parm1); +} + 19ac: 2501 sext.w a0,a0 + 19ae: 8082 ret + +00000000000019b0 : +nxsem_wait(): +/Users/Luppy/ox64/nuttx/syscall/proxies/PROXY_nxsem_wait.c:8 +#include +#include +#include + +int nxsem_wait(FAR sem_t * parm1) +{ + 19b0: 85aa mv a1,a0 + +00000000000019b2 <.LBB4>: +sys_call1(): +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:199 + register long r0 asm("a0") = (long)(nbr); + 19b2: 457d li a0,31 + +00000000000019b4 <.LVL2>: +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:202 + asm volatile + 19b4: 00000073 ecall +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:209 + asm volatile("nop" : "=r"(r0)); + 19b8: 0001 nop + +00000000000019ba <.LBE4>: +nxsem_wait(): +/Users/Luppy/ox64/nuttx/syscall/proxies/PROXY_nxsem_wait.c:10 + return (int)sys_call1((unsigned int)SYS_nxsem_wait, (uintptr_t)parm1); +} + 19ba: 2501 sext.w a0,a0 + 19bc: 8082 ret + +00000000000019be : +sched_getparam(): +/Users/Luppy/ox64/nuttx/syscall/proxies/PROXY_sched_getparam.c:8 +#include +#include +#include + +int sched_getparam(pid_t parm1, FAR struct sched_param * parm2) +{ + 19be: 87aa mv a5,a0 + +00000000000019c0 <.LVL1>: + 19c0: 862e mv a2,a1 + +00000000000019c2 <.LBB4>: +sys_call2(): +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:225 + register long r0 asm("a0") = (long)(nbr); + 19c2: 4535 li a0,13 + +00000000000019c4 <.LVL3>: +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:226 + register long r1 asm("a1") = (long)(parm1); + 19c4: 85be mv a1,a5 + +00000000000019c6 <.LVL4>: +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:229 + asm volatile + 19c6: 00000073 ecall +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:236 + asm volatile("nop" : "=r"(r0)); + 19ca: 0001 nop + +00000000000019cc <.LBE4>: +sched_getparam(): +/Users/Luppy/ox64/nuttx/syscall/proxies/PROXY_sched_getparam.c:10 + return (int)sys_call2((unsigned int)SYS_sched_getparam, (uintptr_t)parm1, (uintptr_t)parm2); +} + 19cc: 2501 sext.w a0,a0 + 19ce: 8082 ret + +00000000000019d0 : +sched_setparam(): +/Users/Luppy/ox64/nuttx/syscall/proxies/PROXY_sched_setparam.c:8 +#include +#include +#include + +int sched_setparam(pid_t parm1, const struct sched_param * parm2) +{ + 19d0: 87aa mv a5,a0 + +00000000000019d2 <.LVL1>: + 19d2: 862e mv a2,a1 + +00000000000019d4 <.LBB4>: +sys_call2(): +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:225 + register long r0 asm("a0") = (long)(nbr); + 19d4: 4549 li a0,18 + +00000000000019d6 <.LVL3>: +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:226 + register long r1 asm("a1") = (long)(parm1); + 19d6: 85be mv a1,a5 + +00000000000019d8 <.LVL4>: +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:229 + asm volatile + 19d8: 00000073 ecall +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:236 + asm volatile("nop" : "=r"(r0)); + 19dc: 0001 nop + +00000000000019de <.LBE4>: +sched_setparam(): +/Users/Luppy/ox64/nuttx/syscall/proxies/PROXY_sched_setparam.c:10 + return (int)sys_call2((unsigned int)SYS_sched_setparam, (uintptr_t)parm1, (uintptr_t)parm2); +} + 19de: 2501 sext.w a0,a0 + 19e0: 8082 ret + +00000000000019e2 : +write(): +/Users/Luppy/ox64/nuttx/syscall/proxies/PROXY_write.c:8 +#include +#include +#include + +ssize_t write(int parm1, FAR const void * parm2, size_t parm3) +{ + 19e2: 872a mv a4,a0 + +00000000000019e4 <.LVL1>: + 19e4: 87ae mv a5,a1 + +00000000000019e6 <.LVL2>: + 19e6: 86b2 mv a3,a2 + +00000000000019e8 <.LBB4>: +sys_call3(): +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:252 + register long r0 asm("a0") = (long)(nbr); + 19e8: 03d00513 li a0,61 + +00000000000019ec <.LVL4>: +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:253 + register long r1 asm("a1") = (long)(parm1); + 19ec: 85ba mv a1,a4 + +00000000000019ee <.LVL5>: +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:254 + register long r2 asm("a2") = (long)(parm2); + 19ee: 863e mv a2,a5 + +00000000000019f0 <.LVL6>: +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:257 + asm volatile + 19f0: 00000073 ecall +/Users/Luppy/ox64/nuttx/include/arch/syscall.h:264 + asm volatile("nop" : "=r"(r0)); + 19f4: 0001 nop + +00000000000019f6 <.LBE4>: +write(): +/Users/Luppy/ox64/nuttx/syscall/proxies/PROXY_write.c:10 + return (ssize_t)sys_call3((unsigned int)SYS_write, (uintptr_t)parm1, (uintptr_t)parm2, (uintptr_t)parm3); +} + 19f6: 8082 ret + +00000000000019f8 : +nsh_consolemain(): +/Users/Luppy/ox64/apps/nshlib/nsh_consolemain.c:63 + * an error. In that case, a non-zero value is returned (EXIT_FAILURE=1). + * + ****************************************************************************/ + +int nsh_consolemain(int argc, FAR char *argv[]) +{ + 19f8: 1101 addi sp,sp,-32 + 19fa: e42a sd a0,8(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_consolemain.c:64 + FAR struct console_stdio_s *pstate = nsh_newconsole(true); + 19fc: 4505 li a0,1 + +00000000000019fe <.LVL1>: +/Users/Luppy/ox64/apps/nshlib/nsh_consolemain.c:63 +{ + 19fe: ec06 sd ra,24(sp) + 1a00: e822 sd s0,16(sp) + 1a02: e02e sd a1,0(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_consolemain.c:64 + FAR struct console_stdio_s *pstate = nsh_newconsole(true); + 1a04: 00000097 auipc ra,0x0 1a04: R_RISCV_CALL nsh_newconsole + 1a04: R_RISCV_RELAX *ABS* + 1a08: 000080e7 jalr ra # 1a04 <.LVL1+0x6> + +0000000000001a0c <.LVL2>: +/Users/Luppy/ox64/apps/nshlib/nsh_consolemain.c:67 + int ret; + + DEBUGASSERT(pstate != NULL); + 1a0c: 6682 ld a3,0(sp) + 1a0e: 6622 ld a2,8(sp) + 1a10: ed19 bnez a0,1a2e <.L2> 1a10: R_RISCV_RVC_BRANCH .L2 +/Users/Luppy/ox64/apps/nshlib/nsh_consolemain.c:67 (discriminator 1) + 1a12: 00000617 auipc a2,0x0 1a12: R_RISCV_PCREL_HI20 .LC0 + 1a12: R_RISCV_RELAX *ABS* + 1a16: 00060613 mv a2,a2 1a16: R_RISCV_PCREL_LO12_I .L0 + 1a16: R_RISCV_RELAX *ABS* + 1a1a: 04300593 li a1,67 + 1a1e: 00000517 auipc a0,0x0 1a1e: R_RISCV_PCREL_HI20 .LC1 + 1a1e: R_RISCV_RELAX *ABS* + 1a22: 00050513 mv a0,a0 1a22: R_RISCV_PCREL_LO12_I .L0 + 1a22: R_RISCV_RELAX *ABS* + +0000000000001a26 <.LVL3>: + 1a26: 00000097 auipc ra,0x0 1a26: R_RISCV_CALL __assert + 1a26: R_RISCV_RELAX *ABS* + 1a2a: 000080e7 jalr ra # 1a26 <.LVL3> + +0000000000001a2e <.L2>: +/Users/Luppy/ox64/apps/nshlib/nsh_consolemain.c:75 + return -ENOMEM; + } + + /* Execute the session */ + + ret = nsh_session(pstate, NSH_LOGIN_LOCAL, argc, argv); + 1a2e: 4585 li a1,1 + 1a30: 842a mv s0,a0 + 1a32: 00000097 auipc ra,0x0 1a32: R_RISCV_CALL nsh_session + 1a32: R_RISCV_RELAX *ABS* + 1a36: 000080e7 jalr ra # 1a32 <.L2+0x4> + +0000000000001a3a <.LVL5>: +/Users/Luppy/ox64/apps/nshlib/nsh_consolemain.c:79 + + /* Exit upon return */ + + nsh_exit(&pstate->cn_vtbl, ret); + 1a3a: 683c ld a5,80(s0) +/Users/Luppy/ox64/apps/nshlib/nsh_consolemain.c:75 + ret = nsh_session(pstate, NSH_LOGIN_LOCAL, argc, argv); + 1a3c: 85aa mv a1,a0 + +0000000000001a3e <.LVL6>: +/Users/Luppy/ox64/apps/nshlib/nsh_consolemain.c:79 + nsh_exit(&pstate->cn_vtbl, ret); + 1a3e: 8522 mv a0,s0 + 1a40: 9782 jalr a5 + +0000000000001a42 : +nsh_initialize(): +/Users/Luppy/ox64/apps/nshlib/nsh_init.c:143 +#endif + +#ifdef CONFIG_NSH_ARCHINIT + /* Perform architecture-specific initialization (if configured) */ + + boardctl(BOARDIOC_INIT, 0); + 1a42: 6541 lui a0,0x10 + 1a44: 4581 li a1,0 + 1a46: f0150513 addi a0,a0,-255 # ff01 <.LLST1+0x37> + 1a4a: 00000317 auipc t1,0x0 1a4a: R_RISCV_CALL boardctl + 1a4a: R_RISCV_RELAX *ABS* + 1a4e: 00030067 jr t1 # 1a4a + +0000000000001a52 : +nsh_session(): +/Users/Luppy/ox64/apps/nshlib/nsh_session.c:71 + * + ****************************************************************************/ + +int nsh_session(FAR struct console_stdio_s *pstate, + int login, int argc, FAR char *argv[]) +{ + 1a52: 7179 addi sp,sp,-48 + 1a54: f406 sd ra,40(sp) + 1a56: f022 sd s0,32(sp) + 1a58: ec26 sd s1,24(sp) + 1a5a: e84a sd s2,16(sp) + 1a5c: e44e sd s3,8(sp) + 1a5e: e052 sd s4,0(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_session.c:75 + FAR struct nsh_vtbl_s *vtbl; + int ret = EXIT_FAILURE; + + DEBUGASSERT(pstate); + 1a60: ed19 bnez a0,1a7e <.L2> 1a60: R_RISCV_RVC_BRANCH .L2 +/Users/Luppy/ox64/apps/nshlib/nsh_session.c:75 (discriminator 1) + 1a62: 00000617 auipc a2,0x0 1a62: R_RISCV_PCREL_HI20 .LC0 + 1a62: R_RISCV_RELAX *ABS* + 1a66: 00060613 mv a2,a2 1a66: R_RISCV_PCREL_LO12_I .L0 + 1a66: R_RISCV_RELAX *ABS* + +0000000000001a6a <.LVL1>: + 1a6a: 04b00593 li a1,75 + +0000000000001a6e <.LVL2>: + 1a6e: 00000517 auipc a0,0x0 1a6e: R_RISCV_PCREL_HI20 .LC1 + 1a6e: R_RISCV_RELAX *ABS* + 1a72: 00050513 mv a0,a0 1a72: R_RISCV_PCREL_LO12_I .L0 + 1a72: R_RISCV_RELAX *ABS* + +0000000000001a76 <.LVL3>: + 1a76: 00000097 auipc ra,0x0 1a76: R_RISCV_CALL __assert + 1a76: R_RISCV_RELAX *ABS* + 1a7a: 000080e7 jalr ra # 1a76 <.LVL3> + +0000000000001a7e <.L2>: + 1a7e: 842a mv s0,a0 + 1a80: 8a32 mv s4,a2 + 1a82: 8936 mv s2,a3 + +0000000000001a84 <.LVL5>: +/Users/Luppy/ox64/apps/nshlib/nsh_session.c:104 (discriminator 2) + return -1; /* nsh_exit does not return */ + } + } +#endif /* CONFIG_NSH_TELNET_LOGIN */ + + if (login != NSH_LOGIN_NONE) + 1a84: c585 beqz a1,1aac <.L3> 1a84: R_RISCV_RVC_BRANCH .L3 + +0000000000001a86 <.LVL6>: +/Users/Luppy/ox64/apps/nshlib/nsh_session.c:108 + { + /* Present a greeting and possibly a Message of the Day (MOTD) */ + + write(OUTFD(pstate), g_nshgreeting, strlen(g_nshgreeting)); + 1a86: 00000517 auipc a0,0x0 1a86: R_RISCV_PCREL_HI20 g_nshgreeting + 1a86: R_RISCV_RELAX *ABS* + 1a8a: 00050513 mv a0,a0 1a8a: R_RISCV_PCREL_LO12_I .L0 + 1a8a: R_RISCV_RELAX *ABS* + 1a8e: 00000097 auipc ra,0x0 1a8e: R_RISCV_CALL strlen + 1a8e: R_RISCV_RELAX *ABS* + 1a92: 000080e7 jalr ra # 1a8e <.LVL6+0x8> + +0000000000001a96 <.LVL7>: + 1a96: 862a mv a2,a0 + 1a98: 2f042503 lw a0,752(s0) + 1a9c: 00000597 auipc a1,0x0 1a9c: R_RISCV_PCREL_HI20 g_nshgreeting + 1a9c: R_RISCV_RELAX *ABS* + 1aa0: 00058593 mv a1,a1 1aa0: R_RISCV_PCREL_LO12_I .L0 + 1aa0: R_RISCV_RELAX *ABS* + 1aa4: 00000097 auipc ra,0x0 1aa4: R_RISCV_CALL write + 1aa4: R_RISCV_RELAX *ABS* + 1aa8: 000080e7 jalr ra # 1aa4 <.LVL7+0xe> + +0000000000001aac <.L3>: +/Users/Luppy/ox64/apps/nshlib/nsh_session.c:132 +#endif + } + + /* Process the command line option */ + + if (argc > 1) + 1aac: 4785 li a5,1 + 1aae: 0747cd63 blt a5,s4,1b28 <.L15> 1aae: R_RISCV_BRANCH .L15 +/Users/Luppy/ox64/apps/nshlib/nsh_session.c:221 + continue; + } +#else + /* Display the prompt string */ + + write(OUTFD(pstate), g_nshprompt, strlen(g_nshprompt)); + 1ab2: 00000917 auipc s2,0x0 1ab2: R_RISCV_PCREL_HI20 g_nshprompt + 1ab2: R_RISCV_RELAX *ABS* + 1ab6: 00090913 mv s2,s2 1ab6: R_RISCV_PCREL_LO12_I .L0 + 1ab6: R_RISCV_RELAX *ABS* + +0000000000001aba <.LVL9>: +/Users/Luppy/ox64/apps/nshlib/nsh_session.c:228 + /* readline() normally returns the number of characters read, but + * will return EOF on end of file or if an error occurs. EOF + * will cause the session to terminate. + */ + + ret = readline_fd(pstate->cn_line, CONFIG_NSH_LINELEN, + 1aba: 2f840493 addi s1,s0,760 +/Users/Luppy/ox64/apps/nshlib/nsh_session.c:230 + INFD(pstate), OUTFD(pstate)); + if (ret == EOF) + 1abe: 59fd li s3,-1 + +0000000000001ac0 <.L4>: +/Users/Luppy/ox64/apps/nshlib/nsh_session.c:221 + write(OUTFD(pstate), g_nshprompt, strlen(g_nshprompt)); + 1ac0: 854a mv a0,s2 + 1ac2: 00000097 auipc ra,0x0 1ac2: R_RISCV_CALL strlen + 1ac2: R_RISCV_RELAX *ABS* + 1ac6: 000080e7 jalr ra # 1ac2 <.L4+0x2> + +0000000000001aca <.LVL11>: + 1aca: 862a mv a2,a0 + 1acc: 2f042503 lw a0,752(s0) + 1ad0: 85ca mv a1,s2 + 1ad2: 00000097 auipc ra,0x0 1ad2: R_RISCV_CALL write + 1ad2: R_RISCV_RELAX *ABS* + 1ad6: 000080e7 jalr ra # 1ad2 <.LVL11+0x8> + +0000000000001ada <.LVL12>: +/Users/Luppy/ox64/apps/nshlib/nsh_session.c:228 + ret = readline_fd(pstate->cn_line, CONFIG_NSH_LINELEN, + 1ada: 2f042683 lw a3,752(s0) + 1ade: 4601 li a2,0 + 1ae0: 05000593 li a1,80 + 1ae4: 8526 mv a0,s1 + 1ae6: 00000097 auipc ra,0x0 1ae6: R_RISCV_CALL readline_fd + 1ae6: R_RISCV_RELAX *ABS* + 1aea: 000080e7 jalr ra # 1ae6 <.LVL12+0xc> + +0000000000001aee <.LVL13>: +/Users/Luppy/ox64/apps/nshlib/nsh_session.c:230 + if (ret == EOF) + 1aee: 2501 sext.w a0,a0 + 1af0: 0f351e63 bne a0,s3,1bec <.L10> 1af0: R_RISCV_BRANCH .L10 +/Users/Luppy/ox64/apps/nshlib/nsh_session.c:236 + { + /* NOTE: readline() does not set the errno variable, but + * perhaps we will be lucky and it will still be valid. + */ + + dprintf(ERRFD(pstate), g_fmtcmdfailed, "nsh_session", + 1af4: 2f442403 lw s0,756(s0) + +0000000000001af8 <.LVL14>: +/Users/Luppy/ox64/apps/nshlib/nsh_session.c:237 + "readline", NSH_ERRNO); + 1af8: 00000097 auipc ra,0x0 1af8: R_RISCV_CALL __errno + 1af8: R_RISCV_RELAX *ABS* + 1afc: 000080e7 jalr ra # 1af8 <.LVL14> + +0000000000001b00 <.LVL15>: +/Users/Luppy/ox64/apps/nshlib/nsh_session.c:236 + dprintf(ERRFD(pstate), g_fmtcmdfailed, "nsh_session", + 1b00: 4118 lw a4,0(a0) + 1b02: 00000697 auipc a3,0x0 1b02: R_RISCV_PCREL_HI20 .LC5 + 1b02: R_RISCV_RELAX *ABS* + 1b06: 00068693 mv a3,a3 1b06: R_RISCV_PCREL_LO12_I .L0 + 1b06: R_RISCV_RELAX *ABS* + 1b0a: 00000617 auipc a2,0x0 1b0a: R_RISCV_PCREL_HI20 .LC6 + 1b0a: R_RISCV_RELAX *ABS* + 1b0e: 00060613 mv a2,a2 1b0e: R_RISCV_PCREL_LO12_I .L0 + 1b0e: R_RISCV_RELAX *ABS* + 1b12: 00000597 auipc a1,0x0 1b12: R_RISCV_PCREL_HI20 g_fmtcmdfailed + 1b12: R_RISCV_RELAX *ABS* + 1b16: 00058593 mv a1,a1 1b16: R_RISCV_PCREL_LO12_I .L0 + 1b16: R_RISCV_RELAX *ABS* + 1b1a: 8522 mv a0,s0 + 1b1c: 00000097 auipc ra,0x0 1b1c: R_RISCV_CALL dprintf + 1b1c: R_RISCV_RELAX *ABS* + 1b20: 000080e7 jalr ra # 1b1c <.LVL15+0x1c> + +0000000000001b24 <.LVL16>: +/Users/Luppy/ox64/apps/nshlib/nsh_session.c:248 + /* Parse process the command */ + + nsh_parse(vtbl, pstate->cn_line); + } + + return ret; + 1b24: 4481 li s1,0 + +0000000000001b26 <.LVL17>: + 1b26: a03d j 1b54 <.L6> 1b26: R_RISCV_RVC_JUMP .L6 + +0000000000001b28 <.L15>: +/Users/Luppy/ox64/apps/nshlib/nsh_session.c:134 + if (strcmp(argv[1], "-h") == 0) + 1b28: 00893983 ld s3,8(s2) # 1aba <.LVL9> + 1b2c: 00000597 auipc a1,0x0 1b2c: R_RISCV_PCREL_HI20 .LC2 + 1b2c: R_RISCV_RELAX *ABS* + 1b30: 00058593 mv a1,a1 1b30: R_RISCV_PCREL_LO12_I .L0 + 1b30: R_RISCV_RELAX *ABS* + 1b34: 854e mv a0,s3 + 1b36: 00000097 auipc ra,0x0 1b36: R_RISCV_CALL strcmp + 1b36: R_RISCV_RELAX *ABS* + 1b3a: 000080e7 jalr ra # 1b36 <.L15+0xe> + +0000000000001b3e <.LVL19>: + 1b3e: 84aa mv s1,a0 + 1b40: e11d bnez a0,1b66 <.L5> 1b40: R_RISCV_RVC_BRANCH .L5 +/Users/Luppy/ox64/apps/nshlib/nsh_session.c:136 + nsh_output(vtbl, "Usage: %s [|-c ]\n", + 1b42: 781c ld a5,48(s0) + 1b44: 00093603 ld a2,0(s2) + 1b48: 00000597 auipc a1,0x0 1b48: R_RISCV_PCREL_HI20 .LC3 + 1b48: R_RISCV_RELAX *ABS* + 1b4c: 00058593 mv a1,a1 1b4c: R_RISCV_PCREL_LO12_I .L0 + 1b4c: R_RISCV_RELAX *ABS* + 1b50: 8522 mv a0,s0 + 1b52: 9782 jalr a5 + +0000000000001b54 <.L6>: +/Users/Luppy/ox64/apps/nshlib/nsh_session.c:249 +} + 1b54: 70a2 ld ra,40(sp) + 1b56: 7402 ld s0,32(sp) + 1b58: 6942 ld s2,16(sp) + 1b5a: 69a2 ld s3,8(sp) + 1b5c: 6a02 ld s4,0(sp) + 1b5e: 8526 mv a0,s1 + 1b60: 64e2 ld s1,24(sp) + 1b62: 6145 addi sp,sp,48 + 1b64: 8082 ret + +0000000000001b66 <.L5>: +/Users/Luppy/ox64/apps/nshlib/nsh_session.c:140 + else if (strcmp(argv[1], "-c") == 0) + 1b66: 00000597 auipc a1,0x0 1b66: R_RISCV_PCREL_HI20 .LC4 + 1b66: R_RISCV_RELAX *ABS* + 1b6a: 00058593 mv a1,a1 1b6a: R_RISCV_PCREL_LO12_I .L0 + 1b6a: R_RISCV_RELAX *ABS* + 1b6e: 854e mv a0,s3 + 1b70: 00000097 auipc ra,0x0 1b70: R_RISCV_CALL strcmp + 1b70: R_RISCV_RELAX *ABS* + 1b74: 000080e7 jalr ra # 1b70 <.L5+0xa> + +0000000000001b78 <.LVL22>: + 1b78: ed0d bnez a0,1bb2 <.L7> 1b78: R_RISCV_RVC_BRANCH .L7 +/Users/Luppy/ox64/apps/nshlib/nsh_session.c:144 + if (argc > 2) + 1b7a: 4789 li a5,2 + 1b7c: 02fa0063 beq s4,a5,1b9c <.L8> 1b7c: R_RISCV_BRANCH .L8 +/Users/Luppy/ox64/apps/nshlib/nsh_session.c:146 + return nsh_parse(vtbl, argv[2]); + 1b80: 8522 mv a0,s0 +/Users/Luppy/ox64/apps/nshlib/nsh_session.c:249 +} + 1b82: 7402 ld s0,32(sp) + +0000000000001b84 <.LVL23>: +/Users/Luppy/ox64/apps/nshlib/nsh_session.c:146 + return nsh_parse(vtbl, argv[2]); + 1b84: 01093583 ld a1,16(s2) +/Users/Luppy/ox64/apps/nshlib/nsh_session.c:249 +} + 1b88: 70a2 ld ra,40(sp) + 1b8a: 64e2 ld s1,24(sp) + 1b8c: 6942 ld s2,16(sp) + +0000000000001b8e <.LVL24>: + 1b8e: 69a2 ld s3,8(sp) + 1b90: 6a02 ld s4,0(sp) + 1b92: 6145 addi sp,sp,48 +/Users/Luppy/ox64/apps/nshlib/nsh_session.c:146 + return nsh_parse(vtbl, argv[2]); + 1b94: 00000317 auipc t1,0x0 1b94: R_RISCV_CALL nsh_parse + 1b94: R_RISCV_RELAX *ABS* + 1b98: 00030067 jr t1 # 1b94 <.LVL24+0x6> + +0000000000001b9c <.L8>: +/Users/Luppy/ox64/apps/nshlib/nsh_session.c:150 + nsh_error(vtbl, g_fmtargrequired, argv[0]); + 1b9c: 741c ld a5,40(s0) + 1b9e: 00093603 ld a2,0(s2) + 1ba2: 00000597 auipc a1,0x0 1ba2: R_RISCV_PCREL_HI20 g_fmtargrequired + 1ba2: R_RISCV_RELAX *ABS* + 1ba6: 00058593 mv a1,a1 1ba6: R_RISCV_PCREL_LO12_I .L0 + 1ba6: R_RISCV_RELAX *ABS* + +0000000000001baa <.L17>: +/Users/Luppy/ox64/apps/nshlib/nsh_session.c:158 + nsh_error(vtbl, g_fmtsyntax, argv[0]); + 1baa: 8522 mv a0,s0 + 1bac: 9782 jalr a5 + +0000000000001bae <.LVL26>: +/Users/Luppy/ox64/apps/nshlib/nsh_session.c:159 + return EXIT_FAILURE; + 1bae: 4485 li s1,1 + 1bb0: b755 j 1b54 <.L6> 1bb0: R_RISCV_RVC_JUMP .L6 + +0000000000001bb2 <.L7>: +/Users/Luppy/ox64/apps/nshlib/nsh_session.c:154 + else if (argv[1][0] == '-') + 1bb2: 0009c703 lbu a4,0(s3) + 1bb6: 02d00793 li a5,45 +/Users/Luppy/ox64/apps/nshlib/nsh_session.c:136 + nsh_output(vtbl, "Usage: %s [|-c ]\n", + 1bba: 00093583 ld a1,0(s2) +/Users/Luppy/ox64/apps/nshlib/nsh_session.c:154 + else if (argv[1][0] == '-') + 1bbe: 00f71963 bne a4,a5,1bd0 <.L9> 1bbe: R_RISCV_BRANCH .L9 +/Users/Luppy/ox64/apps/nshlib/nsh_session.c:158 + nsh_error(vtbl, g_fmtsyntax, argv[0]); + 1bc2: 862e mv a2,a1 + 1bc4: 741c ld a5,40(s0) + 1bc6: 00000597 auipc a1,0x0 1bc6: R_RISCV_PCREL_HI20 g_fmtsyntax + 1bc6: R_RISCV_RELAX *ABS* + 1bca: 00058593 mv a1,a1 1bca: R_RISCV_PCREL_LO12_I .L0 + 1bca: R_RISCV_RELAX *ABS* + 1bce: bff1 j 1baa <.L17> 1bce: R_RISCV_RVC_JUMP .L17 + +0000000000001bd0 <.L9>: +/Users/Luppy/ox64/apps/nshlib/nsh_session.c:166 + return nsh_script(vtbl, argv[0], argv[1], true); + 1bd0: 8522 mv a0,s0 +/Users/Luppy/ox64/apps/nshlib/nsh_session.c:249 +} + 1bd2: 7402 ld s0,32(sp) + +0000000000001bd4 <.LVL27>: + 1bd4: 70a2 ld ra,40(sp) + 1bd6: 64e2 ld s1,24(sp) + 1bd8: 6942 ld s2,16(sp) + +0000000000001bda <.LVL28>: + 1bda: 6a02 ld s4,0(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_session.c:166 + return nsh_script(vtbl, argv[0], argv[1], true); + 1bdc: 864e mv a2,s3 +/Users/Luppy/ox64/apps/nshlib/nsh_session.c:249 +} + 1bde: 69a2 ld s3,8(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_session.c:166 + return nsh_script(vtbl, argv[0], argv[1], true); + 1be0: 4685 li a3,1 +/Users/Luppy/ox64/apps/nshlib/nsh_session.c:249 +} + 1be2: 6145 addi sp,sp,48 +/Users/Luppy/ox64/apps/nshlib/nsh_session.c:166 + return nsh_script(vtbl, argv[0], argv[1], true); + 1be4: 00000317 auipc t1,0x0 1be4: R_RISCV_CALL nsh_script + 1be4: R_RISCV_RELAX *ABS* + 1be8: 00030067 jr t1 # 1be4 <.LVL28+0xa> + +0000000000001bec <.L10>: +/Users/Luppy/ox64/apps/nshlib/nsh_session.c:245 + nsh_parse(vtbl, pstate->cn_line); + 1bec: 85a6 mv a1,s1 + 1bee: 8522 mv a0,s0 + +0000000000001bf0 <.LVL30>: + 1bf0: 00000097 auipc ra,0x0 1bf0: R_RISCV_CALL nsh_parse + 1bf0: R_RISCV_RELAX *ABS* + 1bf4: 000080e7 jalr ra # 1bf0 <.LVL30> + +0000000000001bf8 <.LVL31>: +/Users/Luppy/ox64/apps/nshlib/nsh_session.c:221 + write(OUTFD(pstate), g_nshprompt, strlen(g_nshprompt)); + 1bf8: b5e1 j 1ac0 <.L4> 1bf8: R_RISCV_RVC_JUMP .L4 + +0000000000001bfa : +readline_putc(): +/Users/Luppy/ox64/apps/system/readline/readline_fd.c:113 + * Name: readline_putc + ****************************************************************************/ + +#ifdef CONFIG_READLINE_ECHO +static void readline_putc(FAR struct rl_common_s *vtbl, int ch) +{ + 1bfa: 7179 addi sp,sp,-48 + 1bfc: f406 sd ra,40(sp) + 1bfe: f022 sd s0,32(sp) + 1c00: ec26 sd s1,24(sp) +/Users/Luppy/ox64/apps/system/readline/readline_fd.c:115 + FAR struct readline_s *priv = (FAR struct readline_s *)vtbl; + char buffer = ch; + 1c02: 00b107a3 sb a1,15(sp) +/Users/Luppy/ox64/apps/system/readline/readline_fd.c:118 + ssize_t nwritten; + + DEBUGASSERT(priv); + 1c06: ed19 bnez a0,1c24 <.L2> 1c06: R_RISCV_RVC_BRANCH .L2 +/Users/Luppy/ox64/apps/system/readline/readline_fd.c:118 (discriminator 1) + 1c08: 00000617 auipc a2,0x0 1c08: R_RISCV_PCREL_HI20 .LC0 + 1c08: R_RISCV_RELAX *ABS* + 1c0c: 00060613 mv a2,a2 1c0c: R_RISCV_PCREL_LO12_I .L0 + 1c0c: R_RISCV_RELAX *ABS* + 1c10: 07600593 li a1,118 + +0000000000001c14 <.LVL1>: + 1c14: 00000517 auipc a0,0x0 1c14: R_RISCV_PCREL_HI20 .LC1 + 1c14: R_RISCV_RELAX *ABS* + 1c18: 00050513 mv a0,a0 1c18: R_RISCV_PCREL_LO12_I .L0 + 1c18: R_RISCV_RELAX *ABS* + +0000000000001c1c <.LVL2>: + 1c1c: 00000097 auipc ra,0x0 1c1c: R_RISCV_CALL __assert + 1c1c: R_RISCV_RELAX *ABS* + 1c20: 000080e7 jalr ra # 1c1c <.LVL2> + +0000000000001c24 <.L2>: +/Users/Luppy/ox64/apps/system/readline/readline_fd.c:122 (discriminator 2) + + /* If outfd is a invalid fd, return directly. */ + + if (priv->outfd < 0) + 1c24: 4d5c lw a5,28(a0) + 1c26: 842a mv s0,a0 + 1c28: 0207c463 bltz a5,1c50 <.L1> 1c28: R_RISCV_BRANCH .L1 + +0000000000001c2c <.LVL4>: +/Users/Luppy/ox64/apps/system/readline/readline_fd.c:139 + + nwritten = write(priv->outfd, &buffer, 1); + + /* Check for irrecoverable write errors. */ + + if (nwritten < 0 && errno != EINTR) + 1c2c: 4491 li s1,4 + +0000000000001c2e <.L3>: +/Users/Luppy/ox64/apps/system/readline/readline_fd.c:135 + nwritten = write(priv->outfd, &buffer, 1); + 1c2e: 4c48 lw a0,28(s0) + 1c30: 4605 li a2,1 + 1c32: 00f10593 addi a1,sp,15 + 1c36: 00000097 auipc ra,0x0 1c36: R_RISCV_CALL write + 1c36: R_RISCV_RELAX *ABS* + 1c3a: 000080e7 jalr ra # 1c36 <.L3+0x8> + +0000000000001c3e <.LVL6>: +/Users/Luppy/ox64/apps/system/readline/readline_fd.c:139 + if (nwritten < 0 && errno != EINTR) + 1c3e: 00055e63 bgez a0,1c5a <.L4> 1c3e: R_RISCV_BRANCH .L4 +/Users/Luppy/ox64/apps/system/readline/readline_fd.c:139 (discriminator 1) + 1c42: 00000097 auipc ra,0x0 1c42: R_RISCV_CALL __errno + 1c42: R_RISCV_RELAX *ABS* + 1c46: 000080e7 jalr ra # 1c42 <.LVL6+0x4> + +0000000000001c4a <.LVL7>: + 1c4a: 411c lw a5,0(a0) + 1c4c: fe9781e3 beq a5,s1,1c2e <.L3> 1c4c: R_RISCV_BRANCH .L3 + +0000000000001c50 <.L1>: +/Users/Luppy/ox64/apps/system/readline/readline_fd.c:145 + { + break; + } + } + while (nwritten < 1); +} + 1c50: 70a2 ld ra,40(sp) + 1c52: 7402 ld s0,32(sp) + +0000000000001c54 <.LVL8>: + 1c54: 64e2 ld s1,24(sp) + 1c56: 6145 addi sp,sp,48 + 1c58: 8082 ret + +0000000000001c5a <.L4>: +/Users/Luppy/ox64/apps/system/readline/readline_fd.c:144 + while (nwritten < 1); + 1c5a: d971 beqz a0,1c2e <.L3> 1c5a: R_RISCV_RVC_BRANCH .L3 + 1c5c: bfd5 j 1c50 <.L1> 1c5c: R_RISCV_RVC_JUMP .L1 + +0000000000001c5e : +readline_write(): +/Users/Luppy/ox64/apps/system/readline/readline_fd.c:157 +#ifdef CONFIG_READLINE_ECHO +static void readline_write(FAR struct rl_common_s *vtbl, + FAR const char *buffer, size_t buflen) +{ + FAR struct readline_s *priv = (FAR struct readline_s *)vtbl; + DEBUGASSERT(priv && buffer && buflen > 0); + 1c5e: c119 beqz a0,1c64 <.L14> 1c5e: R_RISCV_RVC_BRANCH .L14 +/Users/Luppy/ox64/apps/system/readline/readline_fd.c:157 (discriminator 2) + 1c60: c191 beqz a1,1c64 <.L14> 1c60: R_RISCV_RVC_BRANCH .L14 +/Users/Luppy/ox64/apps/system/readline/readline_fd.c:157 + 1c62: e20d bnez a2,1c84 <.L15> 1c62: R_RISCV_RVC_BRANCH .L15 + +0000000000001c64 <.L14>: +/Users/Luppy/ox64/apps/system/readline/readline_fd.c:155 +{ + 1c64: 1141 addi sp,sp,-16 + +0000000000001c66 <.LBB9>: +/Users/Luppy/ox64/apps/system/readline/readline_fd.c:157 + DEBUGASSERT(priv && buffer && buflen > 0); + 1c66: 00000617 auipc a2,0x0 1c66: R_RISCV_PCREL_HI20 .LC2 + 1c66: R_RISCV_RELAX *ABS* + 1c6a: 00060613 mv a2,a2 1c6a: R_RISCV_PCREL_LO12_I .L0 + 1c6a: R_RISCV_RELAX *ABS* + +0000000000001c6e <.LVL12>: + 1c6e: 09d00593 li a1,157 + +0000000000001c72 <.LVL13>: + 1c72: 00000517 auipc a0,0x0 1c72: R_RISCV_PCREL_HI20 .LC1 + 1c72: R_RISCV_RELAX *ABS* + 1c76: 00050513 mv a0,a0 1c76: R_RISCV_PCREL_LO12_I .L0 + 1c76: R_RISCV_RELAX *ABS* + +0000000000001c7a <.LBE9>: +/Users/Luppy/ox64/apps/system/readline/readline_fd.c:155 +{ + 1c7a: e406 sd ra,8(sp) + +0000000000001c7c <.LBB10>: +/Users/Luppy/ox64/apps/system/readline/readline_fd.c:157 + DEBUGASSERT(priv && buffer && buflen > 0); + 1c7c: 00000097 auipc ra,0x0 1c7c: R_RISCV_CALL __assert + 1c7c: R_RISCV_RELAX *ABS* + 1c80: 000080e7 jalr ra # 1c7c <.LBB10> + +0000000000001c84 <.L15>: +/Users/Luppy/ox64/apps/system/readline/readline_fd.c:161 (discriminator 10) + + /* If outfd is a invalid fd, return directly. */ + + if (priv->outfd < 0) + 1c84: 4d48 lw a0,28(a0) + +0000000000001c86 <.LVL16>: + 1c86: 00054663 bltz a0,1c92 <.L13> 1c86: R_RISCV_BRANCH .L13 +/Users/Luppy/ox64/apps/system/readline/readline_fd.c:166 + { + return; + } + + write(priv->outfd, buffer, buflen); + 1c8a: 00000317 auipc t1,0x0 1c8a: R_RISCV_CALL write + 1c8a: R_RISCV_RELAX *ABS* + 1c8e: 00030067 jr t1 # 1c8a <.LVL16+0x4> + +0000000000001c92 <.L13>: + 1c92: 8082 ret + +0000000000001c94 : +readline_getc(): +/Users/Luppy/ox64/apps/system/readline/readline_fd.c:57 +{ + 1c94: 7179 addi sp,sp,-48 + 1c96: f406 sd ra,40(sp) + 1c98: f022 sd s0,32(sp) + 1c9a: ec26 sd s1,24(sp) +/Users/Luppy/ox64/apps/system/readline/readline_fd.c:62 + DEBUGASSERT(priv); + 1c9c: c115 beqz a0,1cc0 <.L32> 1c9c: R_RISCV_RVC_BRANCH .L32 + 1c9e: 842a mv s0,a0 + +0000000000001ca0 <.LBB15>: +/Users/Luppy/ox64/apps/system/readline/readline_fd.c:92 + if (errcode != EINTR) + 1ca0: 4491 li s1,4 + +0000000000001ca2 <.L26>: +/Users/Luppy/ox64/apps/system/readline/readline_fd.c:72 (discriminator 2) + nread = read(priv->infd, &buffer, 1); + 1ca2: 4c08 lw a0,24(s0) + 1ca4: 4605 li a2,1 + 1ca6: 00f10593 addi a1,sp,15 + 1caa: 00000097 auipc ra,0x0 1caa: R_RISCV_CALL read + 1caa: R_RISCV_RELAX *ABS* + 1cae: 000080e7 jalr ra # 1caa <.L26+0x8> + +0000000000001cb2 <.LVL20>: +/Users/Luppy/ox64/apps/system/readline/readline_fd.c:76 (discriminator 2) + if (nread == 0) + 1cb2: e50d bnez a0,1cdc <.L27> 1cb2: R_RISCV_RVC_BRANCH .L27 + +0000000000001cb4 <.L30>: +/Users/Luppy/ox64/apps/system/readline/readline_fd.c:80 + return EOF; + 1cb4: 557d li a0,-1 + +0000000000001cb6 <.L28>: +/Users/Luppy/ox64/apps/system/readline/readline_fd.c:105 +} + 1cb6: 70a2 ld ra,40(sp) + 1cb8: 7402 ld s0,32(sp) + +0000000000001cba <.LVL22>: + 1cba: 64e2 ld s1,24(sp) + 1cbc: 6145 addi sp,sp,48 + 1cbe: 8082 ret + +0000000000001cc0 <.L32>: +/Users/Luppy/ox64/apps/system/readline/readline_fd.c:62 + DEBUGASSERT(priv); + 1cc0: 00000617 auipc a2,0x0 1cc0: R_RISCV_PCREL_HI20 .LC0 + 1cc0: R_RISCV_RELAX *ABS* + 1cc4: 00060613 mv a2,a2 1cc4: R_RISCV_PCREL_LO12_I .L0 + 1cc4: R_RISCV_RELAX *ABS* + 1cc8: 03e00593 li a1,62 + 1ccc: 00000517 auipc a0,0x0 1ccc: R_RISCV_PCREL_HI20 .LC1 + 1ccc: R_RISCV_RELAX *ABS* + 1cd0: 00050513 mv a0,a0 1cd0: R_RISCV_PCREL_LO12_I .L0 + 1cd0: R_RISCV_RELAX *ABS* + +0000000000001cd4 <.LVL24>: + 1cd4: 00000097 auipc ra,0x0 1cd4: R_RISCV_CALL __assert + 1cd4: R_RISCV_RELAX *ABS* + 1cd8: 000080e7 jalr ra # 1cd4 <.LVL24> + +0000000000001cdc <.L27>: +/Users/Luppy/ox64/apps/system/readline/readline_fd.c:85 + else if (nread < 0) + 1cdc: 00055a63 bgez a0,1cf0 <.L29> 1cdc: R_RISCV_BRANCH .L29 + +0000000000001ce0 <.LBB18>: +/Users/Luppy/ox64/apps/system/readline/readline_fd.c:91 + int errcode = errno; + 1ce0: 00000097 auipc ra,0x0 1ce0: R_RISCV_CALL __errno + 1ce0: R_RISCV_RELAX *ABS* + 1ce4: 000080e7 jalr ra # 1ce0 <.LBB18> + +0000000000001ce8 <.LVL26>: +/Users/Luppy/ox64/apps/system/readline/readline_fd.c:92 + if (errcode != EINTR) + 1ce8: 411c lw a5,0(a0) + 1cea: fa978ce3 beq a5,s1,1ca2 <.L26> 1cea: R_RISCV_BRANCH .L26 + 1cee: b7d9 j 1cb4 <.L30> 1cee: R_RISCV_RVC_JUMP .L30 + +0000000000001cf0 <.L29>: +/Users/Luppy/ox64/apps/system/readline/readline_fd.c:104 + return (int)buffer; + 1cf0: 00f14503 lbu a0,15(sp) + +0000000000001cf4 <.LVL28>: + 1cf4: b7c9 j 1cb6 <.L28> 1cf4: R_RISCV_RVC_JUMP .L28 + +0000000000001cf6 : +readline_fd(): +/Users/Luppy/ox64/apps/system/readline/readline_fd.c:204 + * failure. + * + ****************************************************************************/ + +ssize_t readline_fd(FAR char *buf, int buflen, int infd, int outfd) +{ + 1cf6: 7179 addi sp,sp,-48 +/Users/Luppy/ox64/apps/system/readline/readline_fd.c:211 + + struct readline_s vtbl; + + /* Set up the vtbl structure */ + + vtbl.vtbl.rl_getc = readline_getc; + 1cf8: 00000797 auipc a5,0x0 1cf8: R_RISCV_PCREL_HI20 readline_getc + 1cf8: R_RISCV_RELAX *ABS* + 1cfc: 00078793 mv a5,a5 1cfc: R_RISCV_PCREL_LO12_I .L0 + 1cfc: R_RISCV_RELAX *ABS* + 1d00: e03e sd a5,0(sp) +/Users/Luppy/ox64/apps/system/readline/readline_fd.c:215 + vtbl.infd = infd; + +#ifdef CONFIG_READLINE_ECHO + vtbl.vtbl.rl_putc = readline_putc; + 1d02: 00000797 auipc a5,0x0 1d02: R_RISCV_PCREL_HI20 readline_putc + 1d02: R_RISCV_RELAX *ABS* + 1d06: 00078793 mv a5,a5 1d06: R_RISCV_PCREL_LO12_I .L0 + 1d06: R_RISCV_RELAX *ABS* +/Users/Luppy/ox64/apps/system/readline/readline_fd.c:212 + vtbl.infd = infd; + 1d0a: cc32 sw a2,24(sp) +/Users/Luppy/ox64/apps/system/readline/readline_fd.c:215 + vtbl.vtbl.rl_putc = readline_putc; + 1d0c: e43e sd a5,8(sp) +/Users/Luppy/ox64/apps/system/readline/readline_fd.c:222 + vtbl.outfd = outfd; +#endif + + /* The let the common readline logic do the work */ + + return readline_common(&vtbl.vtbl, buf, buflen); + 1d0e: 862e mv a2,a1 + +0000000000001d10 <.LVL30>: +/Users/Luppy/ox64/apps/system/readline/readline_fd.c:216 + vtbl.vtbl.rl_write = readline_write; + 1d10: 00000797 auipc a5,0x0 1d10: R_RISCV_PCREL_HI20 readline_write + 1d10: R_RISCV_RELAX *ABS* + 1d14: 00078793 mv a5,a5 1d14: R_RISCV_PCREL_LO12_I .L0 + 1d14: R_RISCV_RELAX *ABS* +/Users/Luppy/ox64/apps/system/readline/readline_fd.c:222 + return readline_common(&vtbl.vtbl, buf, buflen); + 1d18: 85aa mv a1,a0 + +0000000000001d1a <.LVL31>: + 1d1a: 850a mv a0,sp + +0000000000001d1c <.LVL32>: +/Users/Luppy/ox64/apps/system/readline/readline_fd.c:204 +{ + 1d1c: f406 sd ra,40(sp) +/Users/Luppy/ox64/apps/system/readline/readline_fd.c:216 + vtbl.vtbl.rl_write = readline_write; + 1d1e: e83e sd a5,16(sp) +/Users/Luppy/ox64/apps/system/readline/readline_fd.c:217 + vtbl.outfd = outfd; + 1d20: ce36 sw a3,28(sp) +/Users/Luppy/ox64/apps/system/readline/readline_fd.c:222 + return readline_common(&vtbl.vtbl, buf, buflen); + 1d22: 00000097 auipc ra,0x0 1d22: R_RISCV_CALL readline_common + 1d22: R_RISCV_RELAX *ABS* + 1d26: 000080e7 jalr ra # 1d22 <.LVL32+0x6> + +0000000000001d2a <.LVL33>: +/Users/Luppy/ox64/apps/system/readline/readline_fd.c:223 +} + 1d2a: 70a2 ld ra,40(sp) + 1d2c: 6145 addi sp,sp,48 + 1d2e: 8082 ret + +0000000000001d30 : +nsh_consolelinebuffer(): +/Users/Luppy/ox64/apps/nshlib/nsh_console.c:209 + +static FAR char *nsh_consolelinebuffer(FAR struct nsh_vtbl_s *vtbl) +{ + FAR struct console_stdio_s *pstate = (FAR struct console_stdio_s *)vtbl; + return pstate->cn_line; +} + 1d30: 2f850513 addi a0,a0,760 # 1fc4 <.LBE9+0x2> + +0000000000001d34 <.LVL1>: + 1d34: 8082 ret + +0000000000001d36 : +nsh_consoleredirect(): +/Users/Luppy/ox64/apps/nshlib/nsh_console.c:301 + FAR struct console_stdio_s *pstate = (FAR struct console_stdio_s *)vtbl; + FAR struct serialsave_s *ssave = (FAR struct serialsave_s *)save; + + /* Redirected foreground commands */ + + if (ssave) + 1d36: c619 beqz a2,1d44 <.L3> 1d36: R_RISCV_RVC_BRANCH .L3 +/Users/Luppy/ox64/apps/nshlib/nsh_console.c:307 + { + /* Save the current fd and stream values. These will be restored + * when nsh_consoleundirect() is called. + */ + + ERRFD(ssave) = ERRFD(pstate); + 1d38: 2f452783 lw a5,756(a0) + 1d3c: c21c sw a5,0(a2) +/Users/Luppy/ox64/apps/nshlib/nsh_console.c:308 + OUTFD(ssave) = OUTFD(pstate); + 1d3e: 2f052783 lw a5,752(a0) + 1d42: c25c sw a5,4(a2) + +0000000000001d44 <.L3>: +/Users/Luppy/ox64/apps/nshlib/nsh_console.c:313 + } + + /* Set the fd of the new. */ + + OUTFD(pstate) = fd; + 1d44: 2eb52823 sw a1,752(a0) +/Users/Luppy/ox64/apps/nshlib/nsh_console.c:314 +} + 1d48: 8082 ret + +0000000000001d4a : +nsh_closeifnotclosed(): +/Users/Luppy/ox64/apps/nshlib/nsh_console.c:91 +{ + 1d4a: 1141 addi sp,sp,-16 + 1d4c: e022 sd s0,0(sp) + 1d4e: e406 sd ra,8(sp) + 1d50: 842a mv s0,a0 +/Users/Luppy/ox64/apps/nshlib/nsh_console.c:92 + if (OUTFD(pstate) >= 0 && OUTFD(pstate) != STDOUT_FILENO) + 1d52: 2f052503 lw a0,752(a0) + +0000000000001d56 <.LVL4>: + 1d56: 00054963 bltz a0,1d68 <.L8> 1d56: R_RISCV_BRANCH .L8 +/Users/Luppy/ox64/apps/nshlib/nsh_console.c:92 (discriminator 1) + 1d5a: 4785 li a5,1 + 1d5c: 00f50663 beq a0,a5,1d68 <.L8> 1d5c: R_RISCV_BRANCH .L8 +/Users/Luppy/ox64/apps/nshlib/nsh_console.c:94 + close(OUTFD(pstate)); + 1d60: 00000097 auipc ra,0x0 1d60: R_RISCV_CALL close + 1d60: R_RISCV_RELAX *ABS* + 1d64: 000080e7 jalr ra # 1d60 <.LVL4+0xa> + +0000000000001d68 <.L8>: +/Users/Luppy/ox64/apps/nshlib/nsh_console.c:97 + if (ERRFD(pstate) >= 0 && ERRFD(pstate) != STDERR_FILENO + 1d68: 2f442503 lw a0,756(s0) + 1d6c: 00054d63 bltz a0,1d86 <.L9> 1d6c: R_RISCV_BRANCH .L9 +/Users/Luppy/ox64/apps/nshlib/nsh_console.c:97 (discriminator 1) + 1d70: 4789 li a5,2 + 1d72: 00f50a63 beq a0,a5,1d86 <.L9> 1d72: R_RISCV_BRANCH .L9 +/Users/Luppy/ox64/apps/nshlib/nsh_console.c:98 + && ERRFD(pstate) != OUTFD(pstate)) + 1d76: 2f042783 lw a5,752(s0) + 1d7a: 00a78663 beq a5,a0,1d86 <.L9> 1d7a: R_RISCV_BRANCH .L9 +/Users/Luppy/ox64/apps/nshlib/nsh_console.c:100 + close(ERRFD(pstate)); + 1d7e: 00000097 auipc ra,0x0 1d7e: R_RISCV_CALL close + 1d7e: R_RISCV_RELAX *ABS* + 1d82: 000080e7 jalr ra # 1d7e <.L8+0x16> + +0000000000001d86 <.L9>: +/Users/Luppy/ox64/apps/nshlib/nsh_console.c:104 + OUTFD(pstate) = -1; + 1d86: 57fd li a5,-1 +/Users/Luppy/ox64/apps/nshlib/nsh_console.c:105 +} + 1d88: 60a2 ld ra,8(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_console.c:104 + OUTFD(pstate) = -1; + 1d8a: 2ef43823 sd a5,752(s0) +/Users/Luppy/ox64/apps/nshlib/nsh_console.c:105 +} + 1d8e: 6402 ld s0,0(sp) + +0000000000001d90 <.LVL7>: + 1d90: 0141 addi sp,sp,16 + 1d92: 8082 ret + +0000000000001d94 : +nsh_consoleundirect(): +/Users/Luppy/ox64/apps/nshlib/nsh_console.c:326 + * + ****************************************************************************/ + +static void nsh_consoleundirect(FAR struct nsh_vtbl_s *vtbl, + FAR uint8_t *save) +{ + 1d94: 1101 addi sp,sp,-32 + 1d96: e822 sd s0,16(sp) + 1d98: e426 sd s1,8(sp) + 1d9a: ec06 sd ra,24(sp) + 1d9c: 842a mv s0,a0 + +0000000000001d9e <.LVL9>: + 1d9e: 84ae mv s1,a1 + +0000000000001da0 <.LVL10>: +/Users/Luppy/ox64/apps/nshlib/nsh_console.c:330 + FAR struct console_stdio_s *pstate = (FAR struct console_stdio_s *)vtbl; + FAR struct serialsave_s *ssave = (FAR struct serialsave_s *)save; + + nsh_closeifnotclosed(pstate); + 1da0: 00000097 auipc ra,0x0 1da0: R_RISCV_CALL nsh_closeifnotclosed + 1da0: R_RISCV_RELAX *ABS* + 1da4: 000080e7 jalr ra # 1da0 <.LVL10> + +0000000000001da8 <.LVL11>: +/Users/Luppy/ox64/apps/nshlib/nsh_console.c:331 + ERRFD(pstate) = ERRFD(ssave); + 1da8: 409c lw a5,0(s1) +/Users/Luppy/ox64/apps/nshlib/nsh_console.c:333 + OUTFD(pstate) = OUTFD(ssave); +} + 1daa: 60e2 ld ra,24(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_console.c:331 + ERRFD(pstate) = ERRFD(ssave); + 1dac: 2ef42a23 sw a5,756(s0) +/Users/Luppy/ox64/apps/nshlib/nsh_console.c:332 + OUTFD(pstate) = OUTFD(ssave); + 1db0: 40dc lw a5,4(s1) +/Users/Luppy/ox64/apps/nshlib/nsh_console.c:333 +} + 1db2: 64a2 ld s1,8(sp) + +0000000000001db4 <.LVL12>: +/Users/Luppy/ox64/apps/nshlib/nsh_console.c:332 + OUTFD(pstate) = OUTFD(ssave); + 1db4: 2ef42823 sw a5,752(s0) +/Users/Luppy/ox64/apps/nshlib/nsh_console.c:333 +} + 1db8: 6442 ld s0,16(sp) + +0000000000001dba <.LVL13>: + 1dba: 6105 addi sp,sp,32 + 1dbc: 8082 ret + +0000000000001dbe : +nsh_erroroutput(): +/Users/Luppy/ox64/apps/nshlib/nsh_console.c:184 +{ + 1dbe: 715d addi sp,sp,-80 + 1dc0: ec06 sd ra,24(sp) + 1dc2: f032 sd a2,32(sp) + 1dc4: f436 sd a3,40(sp) + 1dc6: f83a sd a4,48(sp) + 1dc8: fc3e sd a5,56(sp) + 1dca: e0c2 sd a6,64(sp) + 1dcc: e4c6 sd a7,72(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_console.c:190 + ret = vdprintf(ERRFD(pstate), fmt, ap); + 1dce: 2f452503 lw a0,756(a0) + +0000000000001dd2 <.LVL15>: +/Users/Luppy/ox64/apps/nshlib/nsh_console.c:189 + va_start(ap, fmt); + 1dd2: 1010 addi a2,sp,32 + 1dd4: e432 sd a2,8(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_console.c:190 + ret = vdprintf(ERRFD(pstate), fmt, ap); + 1dd6: 00000097 auipc ra,0x0 1dd6: R_RISCV_CALL vdprintf + 1dd6: R_RISCV_RELAX *ABS* + 1dda: 000080e7 jalr ra # 1dd6 <.LVL15+0x4> + +0000000000001dde <.LVL16>: +/Users/Luppy/ox64/apps/nshlib/nsh_console.c:194 +} + 1dde: 60e2 ld ra,24(sp) + 1de0: 6161 addi sp,sp,80 + 1de2: 8082 ret + +0000000000001de4 : +nsh_consoleoutput(): +/Users/Luppy/ox64/apps/nshlib/nsh_console.c:161 +{ + 1de4: 715d addi sp,sp,-80 + 1de6: ec06 sd ra,24(sp) + 1de8: f032 sd a2,32(sp) + 1dea: f436 sd a3,40(sp) + 1dec: f83a sd a4,48(sp) + 1dee: fc3e sd a5,56(sp) + 1df0: e0c2 sd a6,64(sp) + 1df2: e4c6 sd a7,72(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_console.c:167 + ret = vdprintf(OUTFD(pstate), fmt, ap); + 1df4: 2f052503 lw a0,752(a0) + +0000000000001df8 <.LVL18>: +/Users/Luppy/ox64/apps/nshlib/nsh_console.c:166 + va_start(ap, fmt); + 1df8: 1010 addi a2,sp,32 + 1dfa: e432 sd a2,8(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_console.c:167 + ret = vdprintf(OUTFD(pstate), fmt, ap); + 1dfc: 00000097 auipc ra,0x0 1dfc: R_RISCV_CALL vdprintf + 1dfc: R_RISCV_RELAX *ABS* + 1e00: 000080e7 jalr ra # 1dfc <.LVL18+0x4> + +0000000000001e04 <.LVL19>: +/Users/Luppy/ox64/apps/nshlib/nsh_console.c:171 +} + 1e04: 60e2 ld ra,24(sp) + 1e06: 6161 addi sp,sp,80 + 1e08: 8082 ret + +0000000000001e0a : +nsh_consoleioctl(): +/Users/Luppy/ox64/apps/nshlib/nsh_console.c:148 + return ioctl(OUTFD(pstate), cmd, arg); + 1e0a: 2f052503 lw a0,752(a0) + +0000000000001e0e <.LVL21>: + 1e0e: 00000317 auipc t1,0x0 1e0e: R_RISCV_CALL ioctl + 1e0e: R_RISCV_RELAX *ABS* + 1e12: 00030067 jr t1 # 1e0e <.LVL21> + +0000000000001e16 : +nsh_consolerelease(): +/Users/Luppy/ox64/apps/nshlib/nsh_console.c:236 +{ + 1e16: 1141 addi sp,sp,-16 + 1e18: e022 sd s0,0(sp) + 1e1a: e406 sd ra,8(sp) + 1e1c: 842a mv s0,a0 + +0000000000001e1e <.LVL24>: +/Users/Luppy/ox64/apps/nshlib/nsh_console.c:241 + nsh_closeifnotclosed(pstate); + 1e1e: 00000097 auipc ra,0x0 1e1e: R_RISCV_CALL nsh_closeifnotclosed + 1e1e: R_RISCV_RELAX *ABS* + 1e22: 000080e7 jalr ra # 1e1e <.LVL24> + +0000000000001e26 <.LVL25>: +/Users/Luppy/ox64/apps/nshlib/nsh_console.c:260 + free(pstate); + 1e26: 8522 mv a0,s0 +/Users/Luppy/ox64/apps/nshlib/nsh_console.c:261 +} + 1e28: 6402 ld s0,0(sp) + +0000000000001e2a <.LVL26>: + 1e2a: 60a2 ld ra,8(sp) + 1e2c: 0141 addi sp,sp,16 +/Users/Luppy/ox64/apps/nshlib/nsh_console.c:260 + free(pstate); + 1e2e: 00000317 auipc t1,0x0 1e2e: R_RISCV_CALL free + 1e2e: R_RISCV_RELAX *ABS* + 1e32: 00030067 jr t1 # 1e2e <.LVL26+0x4> + +0000000000001e36 : +nsh_consoleexit(): +/Users/Luppy/ox64/apps/nshlib/nsh_console.c:344 + * Exit the shell task + * + ****************************************************************************/ + +static void nsh_consoleexit(FAR struct nsh_vtbl_s *vtbl, int exitstatus) +{ + 1e36: 1141 addi sp,sp,-16 + 1e38: e022 sd s0,0(sp) + 1e3a: e406 sd ra,8(sp) + 1e3c: 842e mv s0,a1 +/Users/Luppy/ox64/apps/nshlib/nsh_console.c:347 + /* Destroy ourself then exit with the provided status */ + + nsh_consolerelease(vtbl); + 1e3e: 00000097 auipc ra,0x0 1e3e: R_RISCV_CALL nsh_consolerelease + 1e3e: R_RISCV_RELAX *ABS* + 1e42: 000080e7 jalr ra # 1e3e + +0000000000001e46 <.LVL29>: +/Users/Luppy/ox64/apps/nshlib/nsh_console.c:348 + exit(exitstatus); + 1e46: 8522 mv a0,s0 + 1e48: 00000097 auipc ra,0x0 1e48: R_RISCV_CALL exit + 1e48: R_RISCV_RELAX *ABS* + 1e4c: 000080e7 jalr ra # 1e48 <.LVL29+0x2> + +0000000000001e50 : +nsh_consolewrite(): +/Users/Luppy/ox64/apps/nshlib/nsh_console.c:119 +{ + 1e50: 7179 addi sp,sp,-48 + 1e52: f022 sd s0,32(sp) + 1e54: ec26 sd s1,24(sp) + 1e56: f406 sd ra,40(sp) + 1e58: 84aa mv s1,a0 + +0000000000001e5a <.LVL32>: +/Users/Luppy/ox64/apps/nshlib/nsh_console.c:125 + ret = write(OUTFD(pstate), buffer, nbytes); + 1e5a: 2f052503 lw a0,752(a0) + +0000000000001e5e <.LVL33>: + 1e5e: 00000097 auipc ra,0x0 1e5e: R_RISCV_CALL write + 1e5e: R_RISCV_RELAX *ABS* + 1e62: 000080e7 jalr ra # 1e5e <.LVL33> + +0000000000001e66 <.LVL34>: + 1e66: 842a mv s0,a0 + +0000000000001e68 <.LVL35>: +/Users/Luppy/ox64/apps/nshlib/nsh_console.c:126 + if (ret < 0) + 1e68: 02055863 bgez a0,1e98 <.L22> 1e68: R_RISCV_BRANCH .L22 + +0000000000001e6c <.LBB4>: +/Users/Luppy/ox64/apps/nshlib/nsh_console.c:128 + _err("ERROR: [%d] Failed to send buffer: %d\n", + 1e6c: 2f04a683 lw a3,752(s1) + 1e70: e436 sd a3,8(sp) + 1e72: 00000097 auipc ra,0x0 1e72: R_RISCV_CALL __errno + 1e72: R_RISCV_RELAX *ABS* + 1e76: 000080e7 jalr ra # 1e72 <.LBB4+0x6> + +0000000000001e7a <.LVL37>: + 1e7a: 4118 lw a4,0(a0) + 1e7c: 66a2 ld a3,8(sp) + 1e7e: 00000617 auipc a2,0x0 1e7e: R_RISCV_PCREL_HI20 .LANCHOR0 + 1e7e: R_RISCV_RELAX *ABS* + 1e82: 00060613 mv a2,a2 1e82: R_RISCV_PCREL_LO12_I .L0 + 1e82: R_RISCV_RELAX *ABS* + 1e86: 00000597 auipc a1,0x0 1e86: R_RISCV_PCREL_HI20 .LC0 + 1e86: R_RISCV_RELAX *ABS* + 1e8a: 00058593 mv a1,a1 1e8a: R_RISCV_PCREL_LO12_I .L0 + 1e8a: R_RISCV_RELAX *ABS* + 1e8e: 450d li a0,3 + 1e90: 00000097 auipc ra,0x0 1e90: R_RISCV_CALL syslog + 1e90: R_RISCV_RELAX *ABS* + 1e94: 000080e7 jalr ra # 1e90 <.LVL37+0x16> + +0000000000001e98 <.L22>: +/Users/Luppy/ox64/apps/nshlib/nsh_console.c:133 +} + 1e98: 70a2 ld ra,40(sp) + 1e9a: 8522 mv a0,s0 + 1e9c: 7402 ld s0,32(sp) + +0000000000001e9e <.LVL39>: + 1e9e: 64e2 ld s1,24(sp) + +0000000000001ea0 <.LVL40>: + 1ea0: 6145 addi sp,sp,48 + 1ea2: 8082 ret + +0000000000001ea4 : +nsh_newconsole(): +/Users/Luppy/ox64/apps/nshlib/nsh_console.c:360 +/**************************************************************************** + * Name: nsh_newconsole + ****************************************************************************/ + +FAR struct console_stdio_s *nsh_newconsole(bool isctty) +{ + 1ea4: 1141 addi sp,sp,-16 + 1ea6: e022 sd s0,0(sp) + 1ea8: 842a mv s0,a0 +/Users/Luppy/ox64/apps/nshlib/nsh_console.c:362 + FAR struct console_stdio_s *pstate = + (FAR struct console_stdio_s *)zalloc(sizeof(struct console_stdio_s)); + 1eaa: 34800513 li a0,840 + +0000000000001eae <.LVL42>: +/Users/Luppy/ox64/apps/nshlib/nsh_console.c:360 +{ + 1eae: e406 sd ra,8(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_console.c:362 + (FAR struct console_stdio_s *)zalloc(sizeof(struct console_stdio_s)); + 1eb0: 00000097 auipc ra,0x0 1eb0: R_RISCV_CALL zalloc + 1eb0: R_RISCV_RELAX *ABS* + 1eb4: 000080e7 jalr ra # 1eb0 <.LVL42+0x2> + +0000000000001eb8 <.LVL43>: +/Users/Luppy/ox64/apps/nshlib/nsh_console.c:364 + + if (pstate) + 1eb8: cd2d beqz a0,1f32 <.L25> 1eb8: R_RISCV_RVC_BRANCH .L25 +/Users/Luppy/ox64/apps/nshlib/nsh_console.c:369 + { + /* Initialize the call table */ + +#ifndef CONFIG_NSH_DISABLEBG + pstate->cn_vtbl.clone = nsh_consoleclone; + 1eba: 00000797 auipc a5,0x0 1eba: R_RISCV_PCREL_HI20 nsh_consoleclone + 1eba: R_RISCV_RELAX *ABS* + 1ebe: 00078793 mv a5,a5 1ebe: R_RISCV_PCREL_LO12_I .L0 + 1ebe: R_RISCV_RELAX *ABS* + 1ec2: e11c sd a5,0(a0) +/Users/Luppy/ox64/apps/nshlib/nsh_console.c:371 +#endif + pstate->cn_vtbl.release = nsh_consolerelease; + 1ec4: 00000797 auipc a5,0x0 1ec4: R_RISCV_PCREL_HI20 nsh_consolerelease + 1ec4: R_RISCV_RELAX *ABS* + 1ec8: 00078793 mv a5,a5 1ec8: R_RISCV_PCREL_LO12_I .L0 + 1ec8: R_RISCV_RELAX *ABS* + 1ecc: e91c sd a5,16(a0) +/Users/Luppy/ox64/apps/nshlib/nsh_console.c:372 + pstate->cn_vtbl.write = nsh_consolewrite; + 1ece: 00000797 auipc a5,0x0 1ece: R_RISCV_PCREL_HI20 nsh_consolewrite + 1ece: R_RISCV_RELAX *ABS* + 1ed2: 00078793 mv a5,a5 1ed2: R_RISCV_PCREL_LO12_I .L0 + 1ed2: R_RISCV_RELAX *ABS* + 1ed6: ed1c sd a5,24(a0) +/Users/Luppy/ox64/apps/nshlib/nsh_console.c:373 + pstate->cn_vtbl.ioctl = nsh_consoleioctl; + 1ed8: 00000797 auipc a5,0x0 1ed8: R_RISCV_PCREL_HI20 nsh_consoleioctl + 1ed8: R_RISCV_RELAX *ABS* + 1edc: 00078793 mv a5,a5 1edc: R_RISCV_PCREL_LO12_I .L0 + 1edc: R_RISCV_RELAX *ABS* + 1ee0: f11c sd a5,32(a0) +/Users/Luppy/ox64/apps/nshlib/nsh_console.c:374 + pstate->cn_vtbl.output = nsh_consoleoutput; + 1ee2: 00000797 auipc a5,0x0 1ee2: R_RISCV_PCREL_HI20 nsh_consoleoutput + 1ee2: R_RISCV_RELAX *ABS* + 1ee6: 00078793 mv a5,a5 1ee6: R_RISCV_PCREL_LO12_I .L0 + 1ee6: R_RISCV_RELAX *ABS* + 1eea: f91c sd a5,48(a0) +/Users/Luppy/ox64/apps/nshlib/nsh_console.c:376 +#ifndef CONFIG_NSH_DISABLE_ERROR_PRINT + pstate->cn_vtbl.error = nsh_erroroutput; + 1eec: 00000797 auipc a5,0x0 1eec: R_RISCV_PCREL_HI20 nsh_erroroutput + 1eec: R_RISCV_RELAX *ABS* + 1ef0: 00078793 mv a5,a5 1ef0: R_RISCV_PCREL_LO12_I .L0 + 1ef0: R_RISCV_RELAX *ABS* + 1ef4: f51c sd a5,40(a0) +/Users/Luppy/ox64/apps/nshlib/nsh_console.c:378 +#endif + pstate->cn_vtbl.linebuffer = nsh_consolelinebuffer; + 1ef6: 00000797 auipc a5,0x0 1ef6: R_RISCV_PCREL_HI20 nsh_consolelinebuffer + 1ef6: R_RISCV_RELAX *ABS* + 1efa: 00078793 mv a5,a5 1efa: R_RISCV_PCREL_LO12_I .L0 + 1efa: R_RISCV_RELAX *ABS* + 1efe: fd1c sd a5,56(a0) +/Users/Luppy/ox64/apps/nshlib/nsh_console.c:379 + pstate->cn_vtbl.exit = nsh_consoleexit; + 1f00: 00000797 auipc a5,0x0 1f00: R_RISCV_PCREL_HI20 nsh_consoleexit + 1f00: R_RISCV_RELAX *ABS* + 1f04: 00078793 mv a5,a5 1f04: R_RISCV_PCREL_LO12_I .L0 + 1f04: R_RISCV_RELAX *ABS* + 1f08: e93c sd a5,80(a0) +/Users/Luppy/ox64/apps/nshlib/nsh_console.c:385 + pstate->cn_vtbl.isctty = isctty; + +#ifndef CONFIG_NSH_DISABLESCRIPT + /* Set the initial option flags */ + + pstate->cn_vtbl.np.np_flags = NSH_NP_SET_OPTIONS_INIT; + 1f0a: 4789 li a5,2 + 1f0c: 28f50da3 sb a5,667(a0) +/Users/Luppy/ox64/apps/nshlib/nsh_console.c:388 +#endif + + pstate->cn_vtbl.redirect = nsh_consoleredirect; + 1f10: 00000797 auipc a5,0x0 1f10: R_RISCV_PCREL_HI20 nsh_consoleredirect + 1f10: R_RISCV_RELAX *ABS* + 1f14: 00078793 mv a5,a5 1f14: R_RISCV_PCREL_LO12_I .L0 + 1f14: R_RISCV_RELAX *ABS* + 1f18: e13c sd a5,64(a0) +/Users/Luppy/ox64/apps/nshlib/nsh_console.c:389 + pstate->cn_vtbl.undirect = nsh_consoleundirect; + 1f1a: 00000797 auipc a5,0x0 1f1a: R_RISCV_PCREL_HI20 nsh_consoleundirect + 1f1a: R_RISCV_RELAX *ABS* + 1f1e: 00078793 mv a5,a5 1f1e: R_RISCV_PCREL_LO12_I .L0 + 1f1e: R_RISCV_RELAX *ABS* + 1f22: e53c sd a5,72(a0) +/Users/Luppy/ox64/apps/nshlib/nsh_console.c:397 + + ERRFD(pstate) = STDERR_FILENO; + + /* Initialize the output stream */ + + OUTFD(pstate) = STDOUT_FILENO; + 1f24: 4785 li a5,1 + 1f26: 1786 slli a5,a5,0x21 + 1f28: 0785 addi a5,a5,1 +/Users/Luppy/ox64/apps/nshlib/nsh_console.c:380 + pstate->cn_vtbl.isctty = isctty; + 1f2a: 2e850423 sb s0,744(a0) +/Users/Luppy/ox64/apps/nshlib/nsh_console.c:397 + OUTFD(pstate) = STDOUT_FILENO; + 1f2e: 2ef53823 sd a5,752(a0) + +0000000000001f32 <.L25>: +/Users/Luppy/ox64/apps/nshlib/nsh_console.c:401 + } + + return pstate; +} + 1f32: 60a2 ld ra,8(sp) + 1f34: 6402 ld s0,0(sp) + 1f36: 0141 addi sp,sp,16 + 1f38: 8082 ret + +0000000000001f3a : +nsh_consoleclone(): +/Users/Luppy/ox64/apps/nshlib/nsh_console.c:221 +{ + 1f3a: 1141 addi sp,sp,-16 + 1f3c: e406 sd ra,8(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_console.c:222 + FAR struct console_stdio_s *pclone = nsh_newconsole(vtbl->isctty); + 1f3e: 2e854503 lbu a0,744(a0) + +0000000000001f42 <.LVL45>: + 1f42: 00000097 auipc ra,0x0 1f42: R_RISCV_CALL nsh_newconsole + 1f42: R_RISCV_RELAX *ABS* + 1f46: 000080e7 jalr ra # 1f42 <.LVL45> + +0000000000001f4a <.LVL46>: +/Users/Luppy/ox64/apps/nshlib/nsh_console.c:224 +} + 1f4a: 60a2 ld ra,8(sp) + 1f4c: 0141 addi sp,sp,16 + 1f4e: 8082 ret + +0000000000001f50 : +nsh_strchr(): +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1124 + +#if defined(CONFIG_NSH_QUOTE) && defined(CONFIG_NSH_ARGCAT) +static FAR char *nsh_strchr(FAR const char *str, int ch) +{ + FAR const char *ptr; + bool quoted = false; + 1f50: 4781 li a5,0 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1128 + + for (ptr = str; ; ptr++) + { + if (*ptr == '\\' && !quoted) + 1f52: 05c00693 li a3,92 + +0000000000001f56 <.L6>: + 1f56: 00054703 lbu a4,0(a0) + 1f5a: 00d71363 bne a4,a3,1f60 <.L2> 1f5a: R_RISCV_BRANCH .L2 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1128 (discriminator 1) + 1f5e: cb81 beqz a5,1f6e <.L7> 1f5e: R_RISCV_RVC_BRANCH .L7 + +0000000000001f60 <.L2>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1132 + { + quoted = true; + } + else if ((int)*ptr == ch && !quoted) + 1f60: 00b71363 bne a4,a1,1f66 <.L4> 1f60: R_RISCV_BRANCH .L4 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1132 (discriminator 1) + 1f64: cb81 beqz a5,1f74 <.L1> 1f64: R_RISCV_RVC_BRANCH .L1 + +0000000000001f66 <.L4>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1136 + { + return (FAR char *)ptr; + } + else if (*ptr == '\0') + 1f66: c711 beqz a4,1f72 <.L8> 1f66: R_RISCV_RVC_BRANCH .L8 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1142 + { + return NULL; + } + else + { + quoted = false; + 1f68: 4781 li a5,0 + +0000000000001f6a <.L3>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1126 + for (ptr = str; ; ptr++) + 1f6a: 0505 addi a0,a0,1 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1128 + if (*ptr == '\\' && !quoted) + 1f6c: b7ed j 1f56 <.L6> 1f6c: R_RISCV_RVC_JUMP .L6 + +0000000000001f6e <.L7>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1130 + quoted = true; + 1f6e: 4785 li a5,1 + +0000000000001f70 <.LVL4>: + 1f70: bfed j 1f6a <.L3> 1f70: R_RISCV_RVC_JUMP .L3 + +0000000000001f72 <.L8>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1138 + return NULL; + 1f72: 4501 li a0,0 + +0000000000001f74 <.L1>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1145 + } + } +} + 1f74: 8082 ret + +0000000000001f76 : +nsh_dequote(): +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1274 +static void nsh_dequote(FAR char *cmdline) +{ + FAR char *ptr; + bool quoted; + + quoted = false; + 1f76: 4781 li a5,0 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1278 + + for (ptr = cmdline; *ptr != '\0'; ) + { + if (*ptr == '\\' && !quoted) + 1f78: 05c00613 li a2,92 + +0000000000001f7c <.L13>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1276 (discriminator 1) + for (ptr = cmdline; *ptr != '\0'; ) + 1f7c: 00054703 lbu a4,0(a0) + 1f80: e311 bnez a4,1f84 <.L16> 1f80: R_RISCV_RVC_BRANCH .L16 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1315 + } + + /* Make sure that the new, possibly shorted string is NUL terminated */ + + *ptr = '\0'; +} + 1f82: 8082 ret + +0000000000001f84 <.L16>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1281 + FAR const char *src = ptr + 1; + 1f84: 00150693 addi a3,a0,1 + +0000000000001f88 <.LBE3>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1278 + if (*ptr == '\\' && !quoted) + 1f88: 00c71e63 bne a4,a2,1fa4 <.L18> 1f88: R_RISCV_BRANCH .L18 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1278 (discriminator 1) + 1f8c: ef81 bnez a5,1fa4 <.L18> 1f8c: R_RISCV_RVC_BRANCH .L18 + 1f8e: 87aa mv a5,a0 + +0000000000001f90 <.L15>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1288 (discriminator 1) + ch = *src++; + 1f90: 0017c703 lbu a4,1(a5) # 1f1b <.LVL43+0x63> + +0000000000001f94 <.LVL10>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1289 (discriminator 1) + *dest++ = ch; + 1f94: 0785 addi a5,a5,1 + +0000000000001f96 <.LVL11>: + 1f96: fee78fa3 sb a4,-1(a5) +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1291 (discriminator 1) + while (ch != '\0'); + 1f9a: fb7d bnez a4,1f90 <.L15> 1f9a: R_RISCV_RVC_BRANCH .L15 + 1f9c: 86aa mv a3,a0 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1297 + quoted = true; + 1f9e: 4785 li a5,1 + +0000000000001fa0 <.L14>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1297 (discriminator 1) + 1fa0: 8536 mv a0,a3 + 1fa2: bfe9 j 1f7c <.L13> 1fa2: R_RISCV_RVC_JUMP .L13 + +0000000000001fa4 <.L18>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1307 + quoted = false; + 1fa4: 4781 li a5,0 + +0000000000001fa6 <.LVL14>: + 1fa6: bfed j 1fa0 <.L14> 1fa6: R_RISCV_RVC_JUMP .L14 + +0000000000001fa8 : +nsh_loop_enabled(): +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1921 + /* If we are looping and the disable bit is set, then we are skipping + * all data until we next get to the 'done' token at the end of the + * loop. + */ + + if (np->np_lpstate[np->np_lpndx].lp_state == NSH_LOOP_DO) + 1fa8: 2b354783 lbu a5,691(a0) + 1fac: 468d li a3,3 + 1fae: 0789 addi a5,a5,2 + 1fb0: 0792 slli a5,a5,0x4 + 1fb2: 97aa add a5,a5,a0 + 1fb4: 2987b783 ld a5,664(a5) + 1fb8: 0067d713 srli a4,a5,0x6 + 1fbc: 8b0d andi a4,a4,3 + 1fbe: 00d71663 bne a4,a3,1fca <.L21> 1fbe: R_RISCV_BRANCH .L21 + +0000000000001fc2 <.LBE9>: +nsh_cmdenabled(): +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1980 + /* Return true if command processing is enabled on this pass through the + * loop AND if command processing is enabled in this part of the if-then- + * else-fi sequence. + */ + + return (nsh_loop_enabled(vtbl) && nsh_itef_enabled(vtbl)); + 1fc2: 0017f713 andi a4,a5,1 + 1fc6: 4781 li a5,0 + 1fc8: c715 beqz a4,1ff4 <.L22> 1fc8: R_RISCV_RVC_BRANCH .L22 + +0000000000001fca <.L21>: +nsh_itef_enabled(): +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1942 + bool ret = !np->np_iestate[np->np_iendx].ie_disabled; + 1fca: 2b454783 lbu a5,692(a0) + +0000000000001fce <.LVL18>: + 1fce: 953e add a0,a0,a5 + +0000000000001fd0 <.LVL19>: + 1fd0: 2b554503 lbu a0,693(a0) + +0000000000001fd4 <.LBE11>: +nsh_cmdenabled(): +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1980 + return (nsh_loop_enabled(vtbl) && nsh_itef_enabled(vtbl)); + 1fd4: 4781 li a5,0 + +0000000000001fd6 <.LBB16>: +nsh_itef_enabled(): +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1942 + bool ret = !np->np_iestate[np->np_iendx].ie_disabled; + 1fd6: 0015571b srliw a4,a0,0x1 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1943 + if (ret) + 1fda: 8b05 andi a4,a4,1 + 1fdc: ef01 bnez a4,1ff4 <.L22> 1fdc: R_RISCV_RVC_BRANCH .L22 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1945 + switch (np->np_iestate[np->np_iendx].ie_state) + 1fde: 0065579b srliw a5,a0,0x6 + 1fe2: 0ff7f793 zext.b a5,a5 + 1fe6: 4709 li a4,2 + 1fe8: 00e78963 beq a5,a4,1ffa <.L23> 1fe8: R_RISCV_BRANCH .L23 + 1fec: 470d li a4,3 + 1fee: 00e78c63 beq a5,a4,2006 <.L24> 1fee: R_RISCV_BRANCH .L24 + 1ff2: 4785 li a5,1 + +0000000000001ff4 <.L22>: +nsh_cmdenabled(): +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1981 (discriminator 6) +} + 1ff4: 0017f513 andi a0,a5,1 + 1ff8: 8082 ret + +0000000000001ffa <.L23>: +nsh_itef_enabled(): +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1953 + ret = !np->np_iestate[np->np_iendx].ie_ifcond; + 1ffa: 00157793 andi a5,a0,1 + 1ffe: 0017c793 xori a5,a5,1 + +0000000000002002 <.L25>: +nsh_cmdenabled(): +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1980 + return (nsh_loop_enabled(vtbl) && nsh_itef_enabled(vtbl)); + 2002: 2781 sext.w a5,a5 + 2004: bfc5 j 1ff4 <.L22> 2004: R_RISCV_RVC_JUMP .L22 + +0000000000002006 <.L24>: +nsh_itef_enabled(): +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1957 + ret = np->np_iestate[np->np_iendx].ie_ifcond; + 2006: 00157793 andi a5,a0,1 + +000000000000200a <.LVL25>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1958 + break; + 200a: bfe5 j 2002 <.L25> 200a: R_RISCV_RVC_JUMP .L25 + +000000000000200c : +nsh_strcat(): +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1083 +{ + 200c: 7139 addi sp,sp,-64 + 200e: f822 sd s0,48(sp) + 2010: ec4e sd s3,24(sp) + 2012: e852 sd s4,16(sp) + 2014: e456 sd s5,8(sp) + 2016: fc06 sd ra,56(sp) + 2018: f426 sd s1,40(sp) + 201a: f04a sd s2,32(sp) + 201c: 8aaa mv s5,a0 + 201e: 89ae mv s3,a1 + 2020: 8a32 mv s4,a2 + 2022: 4401 li s0,0 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1090 + if (s1) + 2024: c981 beqz a1,2034 <.L30> 2024: R_RISCV_RVC_BRANCH .L30 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1092 + s1size = strlen(s1); + 2026: 852e mv a0,a1 + +0000000000002028 <.LVL27>: + 2028: 00000097 auipc ra,0x0 2028: R_RISCV_CALL strlen + 2028: R_RISCV_RELAX *ABS* + 202c: 000080e7 jalr ra # 2028 <.LVL27> + +0000000000002030 <.LVL28>: + 2030: 0005041b sext.w s0,a0 + +0000000000002034 <.L30>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1099 + allocsize = s1size + strlen(s2) + 1; + 2034: 8552 mv a0,s4 + 2036: 00000097 auipc ra,0x0 2036: R_RISCV_CALL strlen + 2036: R_RISCV_RELAX *ABS* + 203a: 000080e7 jalr ra # 2036 <.L30+0x2> + +000000000000203e <.LVL30>: + 203e: 0085093b addw s2,a0,s0 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1100 + argument = (FAR char *)realloc(s1, allocsize); + 2042: 2905 addiw s2,s2,1 + 2044: 85ca mv a1,s2 + 2046: 854e mv a0,s3 + +0000000000002048 <.LVL31>: + 2048: 00000097 auipc ra,0x0 2048: R_RISCV_CALL realloc + 2048: R_RISCV_RELAX *ABS* + 204c: 000080e7 jalr ra # 2048 <.LVL31> + +0000000000002050 <.LVL32>: + 2050: 84aa mv s1,a0 + +0000000000002052 <.LVL33>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1101 + if (!argument) + 2052: e905 bnez a0,2082 <.L31> 2052: R_RISCV_RVC_BRANCH .L31 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1103 + nsh_error(vtbl, g_fmtcmdoutofmemory, "$"); + 2054: 028ab783 ld a5,40(s5) + 2058: 00000617 auipc a2,0x0 2058: R_RISCV_PCREL_HI20 .LC0 + 2058: R_RISCV_RELAX *ABS* + 205c: 00060613 mv a2,a2 205c: R_RISCV_PCREL_LO12_I .L0 + 205c: R_RISCV_RELAX *ABS* + 2060: 00000597 auipc a1,0x0 2060: R_RISCV_PCREL_HI20 .LANCHOR0 + 2060: R_RISCV_RELAX *ABS* + 2064: 00058593 mv a1,a1 2064: R_RISCV_PCREL_LO12_I .L0 + 2064: R_RISCV_RELAX *ABS* + 2068: 8556 mv a0,s5 + 206a: 9782 jalr a5 + +000000000000206c <.LVL34>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1104 + argument = s1; + 206c: 84ce mv s1,s3 + +000000000000206e <.L29>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1113 +} + 206e: 70e2 ld ra,56(sp) + 2070: 7442 ld s0,48(sp) + 2072: 7902 ld s2,32(sp) + 2074: 69e2 ld s3,24(sp) + +0000000000002076 <.LVL36>: + 2076: 6a42 ld s4,16(sp) + +0000000000002078 <.LVL37>: + 2078: 6aa2 ld s5,8(sp) + +000000000000207a <.LVL38>: + 207a: 8526 mv a0,s1 + 207c: 74a2 ld s1,40(sp) + +000000000000207e <.LVL39>: + 207e: 6121 addi sp,sp,64 + 2080: 8082 ret + +0000000000002082 <.L31>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1108 + argument[s1size] = '\0'; /* (In case s1 was NULL) */ + 2082: 942a add s0,s0,a0 + +0000000000002084 <.LVL41>: + 2084: 00040023 sb zero,0(s0) +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1109 + strlcat(argument, s2, allocsize); + 2088: 864a mv a2,s2 + 208a: 85d2 mv a1,s4 + 208c: 00000097 auipc ra,0x0 208c: R_RISCV_CALL strlcat + 208c: R_RISCV_RELAX *ABS* + 2090: 000080e7 jalr ra # 208c <.LVL41+0x8> + +0000000000002094 <.LVL42>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1112 + return argument; + 2094: bfe9 j 206e <.L29> 2094: R_RISCV_RVC_JUMP .L29 + +0000000000002096 : +nsh_releaseargs(): +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:452 +{ + 2096: 1101 addi sp,sp,-32 + 2098: e822 sd s0,16(sp) + 209a: ec06 sd ra,24(sp) + 209c: e426 sd s1,8(sp) + 209e: e04a sd s2,0(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:453 + FAR struct nsh_vtbl_s *vtbl = arg->vtbl; + 20a0: 6104 ld s1,0(a0) + +00000000000020a2 <.LVL44>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:452 +{ + 20a2: 842a mv s0,a0 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:461 + if (vtbl->np.np_redirect) + 20a4: 2994c783 lbu a5,665(s1) + 20a8: c791 beqz a5,20b4 <.L37> 20a8: R_RISCV_RVC_BRANCH .L37 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:463 + close(arg->fd); + 20aa: 4508 lw a0,8(a0) + +00000000000020ac <.LVL45>: + 20ac: 00000097 auipc ra,0x0 20ac: R_RISCV_CALL close + 20ac: R_RISCV_RELAX *ABS* + 20b0: 000080e7 jalr ra # 20ac <.LVL45> + +00000000000020b4 <.L37>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:468 + nsh_release(vtbl); + 20b4: 689c ld a5,16(s1) + 20b6: 8526 mv a0,s1 + 20b8: 01040913 addi s2,s0,16 + 20bc: 9782 jalr a5 + +00000000000020be <.LVL47>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:472 + for (i = 0; i < arg->argc; i++) + 20be: 4481 li s1,0 + +00000000000020c0 <.L38>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:472 (discriminator 1) + 20c0: 445c lw a5,12(s0) + 20c2: 00f4cc63 blt s1,a5,20da <.L39> 20c2: R_RISCV_BRANCH .L39 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:477 + free(arg); + 20c6: 8522 mv a0,s0 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:478 +} + 20c8: 6442 ld s0,16(sp) + +00000000000020ca <.LVL49>: + 20ca: 60e2 ld ra,24(sp) + 20cc: 64a2 ld s1,8(sp) + +00000000000020ce <.LVL50>: + 20ce: 6902 ld s2,0(sp) + 20d0: 6105 addi sp,sp,32 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:477 + free(arg); + 20d2: 00000317 auipc t1,0x0 20d2: R_RISCV_CALL free + 20d2: R_RISCV_RELAX *ABS* + 20d6: 00030067 jr t1 # 20d2 <.LVL50+0x4> + +00000000000020da <.L39>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:474 (discriminator 3) + free(arg->argv[i]); + 20da: 00093503 ld a0,0(s2) +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:472 (discriminator 3) + for (i = 0; i < arg->argc; i++) + 20de: 2485 addiw s1,s1,1 + +00000000000020e0 <.LVL52>: + 20e0: 0921 addi s2,s2,8 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:474 (discriminator 3) + free(arg->argv[i]); + 20e2: 00000097 auipc ra,0x0 20e2: R_RISCV_CALL free + 20e2: R_RISCV_RELAX *ABS* + 20e6: 000080e7 jalr ra # 20e2 <.LVL52+0x2> + +00000000000020ea <.LVL53>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:472 (discriminator 3) + for (i = 0; i < arg->argc; i++) + 20ea: bfd9 j 20c0 <.L38> 20ea: R_RISCV_RVC_JUMP .L38 + +00000000000020ec : +nsh_child(): +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:487 +{ + 20ec: 1101 addi sp,sp,-32 + 20ee: ec06 sd ra,24(sp) + 20f0: e822 sd s0,16(sp) + 20f2: e426 sd s1,8(sp) + 20f4: e04a sd s2,0(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:491 + _info("BG %s\n", carg->argv[0]); + 20f6: 6914 ld a3,16(a0) + 20f8: 00000917 auipc s2,0x0 20f8: R_RISCV_PCREL_HI20 .LANCHOR1 + 20f8: R_RISCV_RELAX *ABS* + 20fc: 00090913 mv s2,s2 20fc: R_RISCV_PCREL_LO12_I .L0 + 20fc: R_RISCV_RELAX *ABS* +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:487 +{ + 2100: 842a mv s0,a0 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:491 + _info("BG %s\n", carg->argv[0]); + 2102: 864a mv a2,s2 + 2104: 00000597 auipc a1,0x0 2104: R_RISCV_PCREL_HI20 .LC1 + 2104: R_RISCV_RELAX *ABS* + 2108: 00058593 mv a1,a1 2108: R_RISCV_PCREL_LO12_I .L0 + 2108: R_RISCV_RELAX *ABS* + 210c: 4519 li a0,6 + +000000000000210e <.LVL55>: + 210e: 00000097 auipc ra,0x0 210e: R_RISCV_CALL syslog + 210e: R_RISCV_RELAX *ABS* + 2112: 000080e7 jalr ra # 210e <.LVL55> + +0000000000002116 <.LVL56>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:495 + ret = nsh_command(carg->vtbl, carg->argc, carg->argv); + 2116: 444c lw a1,12(s0) + 2118: 6008 ld a0,0(s0) + 211a: 01040613 addi a2,s0,16 + 211e: 00000097 auipc ra,0x0 211e: R_RISCV_CALL nsh_command + 211e: R_RISCV_RELAX *ABS* + 2122: 000080e7 jalr ra # 211e <.LVL56+0x8> + +0000000000002126 <.LVL57>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:499 + _info("BG %s complete\n", carg->argv[0]); + 2126: 6814 ld a3,16(s0) +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:495 + ret = nsh_command(carg->vtbl, carg->argc, carg->argv); + 2128: 84aa mv s1,a0 + +000000000000212a <.LVL58>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:499 + _info("BG %s complete\n", carg->argv[0]); + 212a: 864a mv a2,s2 + 212c: 00000597 auipc a1,0x0 212c: R_RISCV_PCREL_HI20 .LC2 + 212c: R_RISCV_RELAX *ABS* + 2130: 00058593 mv a1,a1 2130: R_RISCV_PCREL_LO12_I .L0 + 2130: R_RISCV_RELAX *ABS* + 2134: 4519 li a0,6 + 2136: 00000097 auipc ra,0x0 2136: R_RISCV_CALL syslog + 2136: R_RISCV_RELAX *ABS* + 213a: 000080e7 jalr ra # 2136 <.LVL58+0xc> + +000000000000213e <.LVL59>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:500 + nsh_releaseargs(carg); + 213e: 8522 mv a0,s0 + 2140: 00000097 auipc ra,0x0 2140: R_RISCV_CALL nsh_releaseargs + 2140: R_RISCV_RELAX *ABS* + 2144: 000080e7 jalr ra # 2140 <.LVL59+0x2> + +0000000000002148 <.LVL60>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:502 +} + 2148: 60e2 ld ra,24(sp) + 214a: 6442 ld s0,16(sp) + +000000000000214c <.LVL61>: + 214c: 6902 ld s2,0(sp) + 214e: 8526 mv a0,s1 + 2150: 64a2 ld s1,8(sp) + +0000000000002152 <.LVL62>: + 2152: 6105 addi sp,sp,32 + 2154: 8082 ret + +0000000000002156 : +nsh_memlist_add(): +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:361 + if (memlist && allocation) + 2156: c999 beqz a1,216c <.L46> 2156: R_RISCV_RVC_BRANCH .L46 + +0000000000002158 <.LBB23>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:363 + int index = memlist->nallocs; + 2158: 411c lw a5,0(a0) + +000000000000215a <.LVL65>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:364 + if (index < CONFIG_NSH_MAXALLOCS) + 215a: 473d li a4,15 + 215c: 00f74863 blt a4,a5,216c <.L46> 215c: R_RISCV_BRANCH .L46 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:366 + memlist->allocations[index] = allocation; + 2160: 00379713 slli a4,a5,0x3 + 2164: 972a add a4,a4,a0 + 2166: e70c sd a1,8(a4) +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:367 + memlist->nallocs = index + 1; + 2168: 2785 addiw a5,a5,1 + +000000000000216a <.LVL66>: + 216a: c11c sw a5,0(a0) + +000000000000216c <.L46>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:370 +} + 216c: 8082 ret + +000000000000216e : +nsh_argument(): +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1689 +{ + 216e: 7175 addi sp,sp,-144 + 2170: fca6 sd s1,120(sp) + 2172: f4ce sd s3,104(sp) + 2174: f0d2 sd s4,96(sp) + 2176: ecd6 sd s5,88(sp) + 2178: e8da sd s6,80(sp) + 217a: e0e2 sd s8,64(sp) + 217c: e506 sd ra,136(sp) + 217e: e122 sd s0,128(sp) + 2180: f8ca sd s2,112(sp) + 2182: e4de sd s7,72(sp) + 2184: fc66 sd s9,56(sp) + 2186: f86a sd s10,48(sp) + 2188: f46e sd s11,40(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1690 + FAR char *pbegin = *saveptr; + 218a: 6180 ld s0,0(a1) + +000000000000218c <.LVL69>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1689 +{ + 218c: 84aa mv s1,a0 + 218e: 89ae mv s3,a1 + 2190: 8b32 mv s6,a2 + 2192: 8a36 mv s4,a3 + 2194: 8aba mv s5,a4 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1704 + *pbegin && strchr(g_token_separator, *pbegin) != NULL; + 2196: 00000c17 auipc s8,0x0 2196: R_RISCV_PCREL_HI20 .LANCHOR7 + 2196: R_RISCV_RELAX *ABS* + 219a: 000c0c13 mv s8,s8 219a: R_RISCV_PCREL_LO12_I .L0 + 219a: R_RISCV_RELAX *ABS* + +000000000000219e <.L52>: + 219e: 00044b83 lbu s7,0(s0) +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1703 + for (; + 21a2: 3a0b8663 beqz s7,254e <.L91> 21a2: R_RISCV_BRANCH .L91 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1704 + *pbegin && strchr(g_token_separator, *pbegin) != NULL; + 21a6: 85de mv a1,s7 + 21a8: 8562 mv a0,s8 + 21aa: 00000097 auipc ra,0x0 21aa: R_RISCV_CALL strchr + 21aa: R_RISCV_RELAX *ABS* + 21ae: 000080e7 jalr ra # 21aa <.L52+0xc> + +00000000000021b2 <.LVL71>: + 21b2: 892a mv s2,a0 + 21b4: e905 bnez a0,21e4 <.L54> 21b4: R_RISCV_RVC_BRANCH .L54 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1719 + if (*pbegin == '>') + 21b6: 03e00793 li a5,62 + 21ba: 02fb9f63 bne s7,a5,21f8 <.L123> 21ba: R_RISCV_BRANCH .L123 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1723 + if (*(pbegin + 1) == '>') + 21be: 00144783 lbu a5,1(s0) + 21c2: 03779363 bne a5,s7,21e8 <.L56> 21c2: R_RISCV_BRANCH .L56 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1725 + *saveptr = pbegin + 2; + 21c6: 0409 addi s0,s0,2 + +00000000000021c8 <.LVL72>: + 21c8: 0089b023 sd s0,0(s3) + +00000000000021cc <.LVL73>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1726 + argument = (FAR char *)g_redirect2; + 21cc: 00000417 auipc s0,0x0 21cc: R_RISCV_PCREL_HI20 .LANCHOR6 + 21cc: R_RISCV_RELAX *ABS* + 21d0: 00040413 mv s0,s0 21d0: R_RISCV_PCREL_LO12_I .L0 + 21d0: R_RISCV_RELAX *ABS* + +00000000000021d4 <.L57>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1900 + NSH_MEMLIST_ADD(memlist, allocation); + 21d4: 85ca mv a1,s2 + 21d6: 855a mv a0,s6 + 21d8: 00000097 auipc ra,0x0 21d8: R_RISCV_CALL nsh_memlist_add + 21d8: R_RISCV_RELAX *ABS* + 21dc: 000080e7 jalr ra # 21d8 <.L57+0x4> + +00000000000021e0 <.LVL75>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1904 + return argument; + 21e0: 8722 mv a4,s0 + 21e2: a041 j 2262 <.L51> 21e2: R_RISCV_RVC_JUMP .L51 + +00000000000021e4 <.L54>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1705 + pbegin++); + 21e4: 0405 addi s0,s0,1 + 21e6: bf65 j 219e <.L52> 21e6: R_RISCV_RVC_JUMP .L52 + +00000000000021e8 <.L56>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1730 + *saveptr = pbegin + 1; + 21e8: 0405 addi s0,s0,1 + +00000000000021ea <.LVL78>: + 21ea: 0089b023 sd s0,0(s3) + +00000000000021ee <.LVL79>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1731 + argument = (FAR char *)g_redirect1; + 21ee: 00000417 auipc s0,0x0 21ee: R_RISCV_PCREL_HI20 .LANCHOR5 + 21ee: R_RISCV_RELAX *ABS* + 21f2: 00040413 mv s0,s0 21f2: R_RISCV_PCREL_LO12_I .L0 + 21f2: R_RISCV_RELAX *ABS* + +00000000000021f6 <.LVL80>: + 21f6: bff9 j 21d4 <.L57> 21f6: R_RISCV_RVC_JUMP .L57 + +00000000000021f8 <.L123>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1737 + else if (*pbegin == '#') + 21f8: 02300793 li a5,35 + 21fc: 20fb9363 bne s7,a5,2402 <.L92> 21fc: R_RISCV_BRANCH .L92 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1741 + *saveptr = pbegin; + 2200: 0089b023 sd s0,0(s3) +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1742 + argument = NULL; + 2204: 4401 li s0,0 + +0000000000002206 <.LVL82>: + 2206: b7f9 j 21d4 <.L57> 2206: R_RISCV_RVC_JUMP .L57 + +0000000000002208 <.L67>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1768 + if (prev != NULL && *prev == '\\' && !escaped) + 2208: c591 beqz a1,2214 <.L59> 2208: R_RISCV_RVC_BRANCH .L59 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1768 (discriminator 1) + 220a: 0005c583 lbu a1,0(a1) # 212c <.LVL58+0x2> + +000000000000220e <.LVL84>: + 220e: 01859363 bne a1,s8,2214 <.L59> 220e: R_RISCV_BRANCH .L59 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1768 (discriminator 2) + 2212: cb61 beqz a4,22e2 <.L93> 2212: R_RISCV_RVC_BRANCH .L93 + +0000000000002214 <.L59>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1780 + if (*pend == '\\' && !escaped) + 2214: 0d8d8563 beq s11,s8,22de <.L125> 2214: R_RISCV_BRANCH .L125 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1790 + if ((quoted = (nsh_strchr(g_quote_separator, *pend) != NULL))) + 2218: 000d859b sext.w a1,s11 + 221c: 00000517 auipc a0,0x0 221c: R_RISCV_PCREL_HI20 .LANCHOR8 + 221c: R_RISCV_RELAX *ABS* + 2220: 00050513 mv a0,a0 2220: R_RISCV_PCREL_LO12_I .L0 + 2220: R_RISCV_RELAX *ABS* + 2224: e42e sd a1,8(sp) + 2226: 00000097 auipc ra,0x0 2226: R_RISCV_CALL nsh_strchr + 2226: R_RISCV_RELAX *ABS* + 222a: 000080e7 jalr ra # 2226 <.L59+0x12> + +000000000000222e <.LVL86>: + 222e: 65a2 ld a1,8(sp) + +0000000000002230 <.LBB42>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1794 + FAR char *qend = nsh_strchr(pend + 1, *pend); + 2230: 001c8d13 addi s10,s9,1 + +0000000000002234 <.LBE42>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1790 + if ((quoted = (nsh_strchr(g_quote_separator, *pend) != NULL))) + 2234: c951 beqz a0,22c8 <.L61> 2234: R_RISCV_RVC_BRANCH .L61 + +0000000000002236 <.LBB48>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1794 + FAR char *qend = nsh_strchr(pend + 1, *pend); + 2236: 856a mv a0,s10 + +0000000000002238 <.LVL88>: + 2238: 00000097 auipc ra,0x0 2238: R_RISCV_CALL nsh_strchr + 2238: R_RISCV_RELAX *ABS* + 223c: 000080e7 jalr ra # 2238 <.LVL88> + +0000000000002240 <.LVL89>: + 2240: 872a mv a4,a0 + +0000000000002242 <.LVL90>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1795 + if (!qend) + 2242: e121 bnez a0,2282 <.L62> 2242: R_RISCV_RVC_BRANCH .L62 + +0000000000002244 <.LBB43>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1805 + nsh_error(vtbl, g_fmtnomatching, qterm, qterm); + 2244: 749c ld a5,40(s1) + 2246: 0834 addi a3,sp,24 + 2248: e42a sd a0,8(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1802 + qterm[0] = *pend; + 224a: 01b10c23 sb s11,24(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1803 + qterm[1] = '\0'; + 224e: 00010ca3 sb zero,25(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1805 + nsh_error(vtbl, g_fmtnomatching, qterm, qterm); + 2252: 8636 mv a2,a3 + 2254: 00000597 auipc a1,0x0 2254: R_RISCV_PCREL_HI20 .LANCHOR9 + 2254: R_RISCV_RELAX *ABS* + 2258: 00058593 mv a1,a1 2258: R_RISCV_PCREL_LO12_I .L0 + 2258: R_RISCV_RELAX *ABS* + 225c: 8526 mv a0,s1 + +000000000000225e <.LVL91>: + 225e: 9782 jalr a5 + +0000000000002260 <.LVL92>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1808 + return NULL; + 2260: 6722 ld a4,8(sp) + +0000000000002262 <.L51>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1905 +} + 2262: 60aa ld ra,136(sp) + 2264: 640a ld s0,128(sp) + 2266: 74e6 ld s1,120(sp) + +0000000000002268 <.LVL94>: + 2268: 7946 ld s2,112(sp) + 226a: 79a6 ld s3,104(sp) + 226c: 7a06 ld s4,96(sp) + 226e: 6ae6 ld s5,88(sp) + +0000000000002270 <.LVL95>: + 2270: 6b46 ld s6,80(sp) + +0000000000002272 <.LVL96>: + 2272: 6ba6 ld s7,72(sp) + 2274: 6c06 ld s8,64(sp) + 2276: 7ce2 ld s9,56(sp) + 2278: 7d42 ld s10,48(sp) + 227a: 7da2 ld s11,40(sp) + 227c: 853a mv a0,a4 + 227e: 6149 addi sp,sp,144 + 2280: 8082 ret + +0000000000002282 <.L62>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1813 + if (*pend == '\'') + 2282: 02700793 li a5,39 + 2286: 02fd8b63 beq s11,a5,22bc <.L95> 2286: R_RISCV_BRANCH .L95 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1822 + if (*pend == '"') + 228a: 02200793 li a5,34 + 228e: 02fd8963 beq s11,a5,22c0 <.L96> 228e: R_RISCV_BRANCH .L96 + +0000000000002292 <.LVL98>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1831 + if (*pend == '`') + 2292: 06000793 li a5,96 + 2296: 16fd8463 beq s11,a5,23fe <.L97> 2296: R_RISCV_BRANCH .L97 + +000000000000229a <.L63>: +nsh_rmquotes(): +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1339 + ptr++; + 229a: 00170593 addi a1,a4,1 # 8001 <.LVL80+0x1> + +000000000000229e <.L65>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1337 + if (ptr == qend) + 229e: 01a71363 bne a4,s10,22a4 <.L64> 229e: R_RISCV_BRANCH .L64 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1339 + ptr++; + 22a2: 8d2e mv s10,a1 + +00000000000022a4 <.L64>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1342 + ch = *ptr++; + 22a4: 000d4683 lbu a3,0(s10) +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1343 + *dst++ = ch; + 22a8: 0c85 addi s9,s9,1 + +00000000000022aa <.LVL102>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1342 + ch = *ptr++; + 22aa: 001d0613 addi a2,s10,1 + +00000000000022ae <.LVL103>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1343 + *dst++ = ch; + 22ae: fedc8fa3 sb a3,-1(s9) +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1345 + while (ch != '\0'); + 22b2: ea89 bnez a3,22c4 <.L98> 22b2: R_RISCV_RVC_BRANCH .L98 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1347 + return qend - 2; + 22b4: ffe70c93 addi s9,a4,-2 + +00000000000022b8 <.L126>: +nsh_argument(): +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1790 + if ((quoted = (nsh_strchr(g_quote_separator, *pend) != NULL))) + 22b8: 4685 li a3,1 + 22ba: a015 j 22de <.L125> 22ba: R_RISCV_RVC_JUMP .L125 + +00000000000022bc <.L95>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1817 + squote = true; + 22bc: 4b85 li s7,1 + +00000000000022be <.LVL106>: + 22be: bff1 j 229a <.L63> 22be: R_RISCV_RVC_JUMP .L63 + +00000000000022c0 <.L96>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1826 + isenvvar = NULL; + 22c0: 4a81 li s5,0 + +00000000000022c2 <.LVL108>: + 22c2: bfe1 j 229a <.L63> 22c2: R_RISCV_RVC_JUMP .L63 + +00000000000022c4 <.L98>: +nsh_rmquotes(): +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1342 + ch = *ptr++; + 22c4: 8d32 mv s10,a2 + 22c6: bfe1 j 229e <.L65> 22c6: R_RISCV_RVC_JUMP .L65 + +00000000000022c8 <.L61>: +nsh_argument(): +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1849 + else if (nsh_strchr(g_token_separator, *pend) != NULL) + 22c8: 00000517 auipc a0,0x0 22c8: R_RISCV_PCREL_HI20 .LANCHOR7 + 22c8: R_RISCV_RELAX *ABS* + 22cc: 00050513 mv a0,a0 22cc: R_RISCV_PCREL_LO12_I .L0 + 22cc: R_RISCV_RELAX *ABS* + +00000000000022d0 <.LVL111>: + 22d0: 00000097 auipc ra,0x0 22d0: R_RISCV_CALL nsh_strchr + 22d0: R_RISCV_RELAX *ABS* + 22d4: 000080e7 jalr ra # 22d0 <.LVL111> + +00000000000022d8 <.LVL112>: + 22d8: 26051d63 bnez a0,2552 <.L66> 22d8: R_RISCV_BRANCH .L66 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1790 + if ((quoted = (nsh_strchr(g_quote_separator, *pend) != NULL))) + 22dc: 4681 li a3,0 + +00000000000022de <.L125>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1776 + escaped = false; + 22de: 4701 li a4,0 + 22e0: a011 j 22e4 <.L60> 22e0: R_RISCV_RVC_JUMP .L60 + +00000000000022e2 <.L93>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1772 + escaped = true; + 22e2: 4705 li a4,1 + +00000000000022e4 <.L60>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1760 (discriminator 2) + for (prev = NULL, pend = pbegin; *pend != '\0'; prev = pend, pend++) + 22e4: 85e6 mv a1,s9 + 22e6: 0c85 addi s9,s9,1 + +00000000000022e8 <.L58>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1760 (discriminator 1) + 22e8: 000ccd83 lbu s11,0(s9) + 22ec: f00d9ee3 bnez s11,2208 <.L67> 22ec: R_RISCV_BRANCH .L67 + +00000000000022f0 <.L88>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1872 + *saveptr = pend; + 22f0: 0199b023 sd s9,0(s3) +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1877 + if (alist && !quoted) + 22f4: 0a0a0263 beqz s4,2398 <.L68> 22f4: R_RISCV_BRANCH .L68 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1877 (discriminator 1) + 22f8: e2c5 bnez a3,2398 <.L68> 22f8: R_RISCV_RVC_BRANCH .L68 + +00000000000022fa <.LBB51>: +nsh_aliasexpand(): +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1162 + alias = nsh_aliasfind(vtbl, cmdline); + 22fa: 85a2 mv a1,s0 + 22fc: 8526 mv a0,s1 + 22fe: 00000097 auipc ra,0x0 22fe: R_RISCV_CALL nsh_aliasfind + 22fe: R_RISCV_RELAX *ABS* + 2302: 000080e7 jalr ra # 22fe <.LBB51+0x4> + +0000000000002306 <.LVL119>: + 2306: 8c2a mv s8,a0 + +0000000000002308 <.LVL120>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1163 + if (alias) + 2308: c941 beqz a0,2398 <.L68> 2308: R_RISCV_RVC_BRANCH .L68 + +000000000000230a <.LBB53>: +nsh_alist_add(): +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:405 + int index = alist->nallocs; + 230a: 000a2783 lw a5,0(s4) # 45e <.LVL77+0x8> + +000000000000230e <.LBE54>: +nsh_aliasexpand(): +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1170 + cmdline = alias->value; + 230e: 6900 ld s0,16(a0) + +0000000000002310 <.LBB57>: +nsh_alist_add(): +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:406 + if (index < CONFIG_NSH_ALIAS_MAX_AMOUNT) + 2310: 00f04f63 bgtz a5,232e <.L69> 2310: R_RISCV_BRANCH .L69 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:408 + alias->exp = 1; + 2314: 01854703 lbu a4,24(a0) # 22e0 <.L125+0x2> + 2318: 00176713 ori a4,a4,1 + 231c: 00e50c23 sb a4,24(a0) +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:409 + alist->allocs[index] = alias; + 2320: 00379713 slli a4,a5,0x3 + 2324: 9752 add a4,a4,s4 + 2326: e708 sd a0,8(a4) +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:410 + alist->nallocs = index + 1; + 2328: 2785 addiw a5,a5,1 + +000000000000232a <.LVL122>: + 232a: 00fa2023 sw a5,0(s4) + +000000000000232e <.L69>: +nsh_aliasexpand(): +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1175 + len = strcspn(cmdline, g_token_separator); + 232e: 00000597 auipc a1,0x0 232e: R_RISCV_PCREL_HI20 .LANCHOR7 + 232e: R_RISCV_RELAX *ABS* + 2332: 00058593 mv a1,a1 2332: R_RISCV_PCREL_LO12_I .L0 + 2332: R_RISCV_RELAX *ABS* + 2336: 8522 mv a0,s0 + +0000000000002338 <.LVL124>: + 2338: 00000097 auipc ra,0x0 2338: R_RISCV_CALL strcspn + 2338: R_RISCV_RELAX *ABS* + 233c: 000080e7 jalr ra # 2338 <.LVL124> + +0000000000002340 <.LVL125>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1178 + if (*ptr != '\0') + 2340: 00a407b3 add a5,s0,a0 + 2344: 0007c783 lbu a5,0(a5) +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1175 + len = strcspn(cmdline, g_token_separator); + 2348: 8a2a mv s4,a0 + +000000000000234a <.LVL126>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1178 + if (*ptr != '\0') + 234a: c7b9 beqz a5,2398 <.L68> 234a: R_RISCV_RVC_BRANCH .L68 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1182 + if ((ptr = strdup(alias->value)) != NULL) + 234c: 010c3503 ld a0,16(s8) # 21a6 <.L52+0x8> + +0000000000002350 <.LVL127>: + 2350: 00000097 auipc ra,0x0 2350: R_RISCV_CALL strdup + 2350: R_RISCV_RELAX *ABS* + 2354: 000080e7 jalr ra # 2350 <.LVL127> + +0000000000002358 <.LVL128>: + 2358: 85aa mv a1,a0 + +000000000000235a <.LVL129>: + 235a: cd1d beqz a0,2398 <.L68> 235a: R_RISCV_RVC_BRANCH .L68 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1186 + ptr = nsh_strcat(vtbl, ptr, " "); + 235c: 00000617 auipc a2,0x0 235c: R_RISCV_PCREL_HI20 .LC3 + 235c: R_RISCV_RELAX *ABS* + 2360: 00060613 mv a2,a2 2360: R_RISCV_PCREL_LO12_I .L0 + 2360: R_RISCV_RELAX *ABS* + 2364: 8526 mv a0,s1 + +0000000000002366 <.LVL130>: + 2366: 00000097 auipc ra,0x0 2366: R_RISCV_CALL nsh_strcat + 2366: R_RISCV_RELAX *ABS* + 236a: 000080e7 jalr ra # 2366 <.LVL130> + +000000000000236e <.LVL131>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1187 + ptr = nsh_strcat(vtbl, ptr, *saveptr); + 236e: 0009b603 ld a2,0(s3) +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1186 + ptr = nsh_strcat(vtbl, ptr, " "); + 2372: 85aa mv a1,a0 + +0000000000002374 <.LVL132>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1187 + ptr = nsh_strcat(vtbl, ptr, *saveptr); + 2374: 8526 mv a0,s1 + +0000000000002376 <.LVL133>: + 2376: 00000097 auipc ra,0x0 2376: R_RISCV_CALL nsh_strcat + 2376: R_RISCV_RELAX *ABS* + 237a: 000080e7 jalr ra # 2376 <.LVL133> + +000000000000237e <.LVL134>: + 237e: 842a mv s0,a0 + +0000000000002380 <.LVL135>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1188 + NSH_MEMLIST_ADD(memlist, ptr); + 2380: 85aa mv a1,a0 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1196 + ptr = cmdline + len; + 2382: 9a22 add s4,s4,s0 + +0000000000002384 <.LVL136>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1188 + NSH_MEMLIST_ADD(memlist, ptr); + 2384: 855a mv a0,s6 + 2386: 00000097 auipc ra,0x0 2386: R_RISCV_CALL nsh_memlist_add + 2386: R_RISCV_RELAX *ABS* + 238a: 000080e7 jalr ra # 2386 <.LVL136+0x2> + +000000000000238e <.LVL137>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1197 + *ptr++ = '\0'; + 238e: 0a05 addi s4,s4,1 + +0000000000002390 <.LVL138>: + 2390: fe0a0fa3 sb zero,-1(s4) +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1201 + *saveptr = ptr; + 2394: 0149b023 sd s4,0(s3) + +0000000000002398 <.L68>: +nsh_argument(): +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1885 + if (squote) + 2398: e20b9ee3 bnez s7,21d4 <.L57> 2398: R_RISCV_BRANCH .L57 + +000000000000239c <.LBB61>: +nsh_argexpand(): +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1359 + FAR char *working = cmdline; + 239c: 89a2 mv s3,s0 + +000000000000239e <.LVL140>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1373 + len = strcspn(working, g_arg_separator); + 239e: 00000b97 auipc s7,0x0 239e: R_RISCV_PCREL_HI20 .LANCHOR10 + 239e: R_RISCV_RELAX *ABS* + 23a2: 000b8b93 mv s7,s7 23a2: R_RISCV_PCREL_LO12_I .L0 + 23a2: R_RISCV_RELAX *ABS* + +00000000000023a6 <.LBB63>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1389 + bcount < len && *prev == '\\'; + 23a6: 05c00c13 li s8,92 + +00000000000023aa <.LBE63>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1510 + if (*ptr == '$') + 23aa: 02400c93 li s9,36 + +00000000000023ae <.LBB64>: +nsh_envexpand(): +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1259 + return (FAR char *)g_nullstring; + 23ae: 00000d17 auipc s10,0x0 23ae: R_RISCV_PCREL_HI20 .LANCHOR4 + 23ae: R_RISCV_RELAX *ABS* + 23b2: 000d0d13 mv s10,s10 23b2: R_RISCV_PCREL_LO12_I .L0 + 23b2: R_RISCV_RELAX *ABS* + +00000000000023b6 <.LBE67>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1224 + return (FAR char *)g_failure; + 23b6: 00000d97 auipc s11,0x0 23b6: R_RISCV_PCREL_HI20 .LANCHOR2 + 23b6: R_RISCV_RELAX *ABS* + 23ba: 000d8d93 mv s11,s11 23ba: R_RISCV_PCREL_LO12_I .L0 + 23ba: R_RISCV_RELAX *ABS* + +00000000000023be <.L79>: +nsh_argexpand(): +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1373 + len = strcspn(working, g_arg_separator); + 23be: 85de mv a1,s7 + 23c0: 854e mv a0,s3 + 23c2: 00000097 auipc ra,0x0 23c2: R_RISCV_CALL strcspn + 23c2: R_RISCV_RELAX *ABS* + 23c6: 000080e7 jalr ra # 23c2 <.L79+0x4> + +00000000000023ca <.LVL144>: + 23ca: 8a2a mv s4,a0 + +00000000000023cc <.L127>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1400 + ptr = working + len; + 23cc: 014987b3 add a5,s3,s4 + +00000000000023d0 <.LBE73>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1380 + while (len > 0 && *ptr != '\0') + 23d0: 0007c603 lbu a2,0(a5) + +00000000000023d4 <.LBB74>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1401 + nextwork = ptr + 1; + 23d4: 00178513 addi a0,a5,1 + +00000000000023d8 <.LBE74>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1380 + while (len > 0 && *ptr != '\0') + 23d8: 060a0d63 beqz s4,2452 <.L75> 23d8: R_RISCV_BRANCH .L75 + 23dc: ee0d bnez a2,2416 <.L76> 23dc: R_RISCV_RVC_BRANCH .L76 + +00000000000023de <.L77>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1420 + if (argument) + 23de: 0c090f63 beqz s2,24bc <.L78> 23de: R_RISCV_BRANCH .L78 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1430 + argument = nsh_strcat(vtbl, argument, working); + 23e2: 85ca mv a1,s2 + 23e4: 864e mv a2,s3 + 23e6: 8526 mv a0,s1 + +00000000000023e8 <.LVL148>: + 23e8: 00000097 auipc ra,0x0 23e8: R_RISCV_CALL nsh_strcat + 23e8: R_RISCV_RELAX *ABS* + 23ec: 000080e7 jalr ra # 23e8 <.LVL148> + +00000000000023f0 <.LVL149>: + 23f0: 842a mv s0,a0 + +00000000000023f2 <.LVL150>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1431 + *allocation = argument; + 23f2: 8922 mv s2,s0 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1435 + nsh_dequote(argument); + 23f4: 00000097 auipc ra,0x0 23f4: R_RISCV_CALL nsh_dequote + 23f4: R_RISCV_RELAX *ABS* + 23f8: 000080e7 jalr ra # 23f4 <.LVL150+0x2> + +00000000000023fc <.LVL151>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1436 + return argument; + 23fc: bbe1 j 21d4 <.L57> 23fc: R_RISCV_RVC_JUMP .L57 + +00000000000023fe <.L97>: +nsh_argument(): +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1436 + 23fe: 8caa mv s9,a0 + +0000000000002400 <.LVL153>: + 2400: bd65 j 22b8 <.L126> 2400: R_RISCV_RVC_JUMP .L126 + +0000000000002402 <.L92>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1760 + for (prev = NULL, pend = pbegin; *pend != '\0'; prev = pend, pend++) + 2402: 4581 li a1,0 + 2404: 8ca2 mv s9,s0 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1756 + quoted = false; + 2406: 4681 li a3,0 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1755 + squote = false; + 2408: 4b81 li s7,0 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1758 + escaped = false; + 240a: 4701 li a4,0 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1780 + if (*pend == '\\' && !escaped) + 240c: 05c00c13 li s8,92 + 2410: bde1 j 22e8 <.L58> 2410: R_RISCV_RVC_JUMP .L58 + +0000000000002412 <.L99>: +nsh_argexpand(): +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1780 + 2412: 89aa mv s3,a0 + +0000000000002414 <.LVL156>: + 2414: b76d j 23be <.L79> 2414: R_RISCV_RVC_JUMP .L79 + +0000000000002416 <.L76>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1382 + FAR char *prev = working + len - 1; + 2416: fffa0713 addi a4,s4,-1 + 241a: 974e add a4,a4,s3 + +000000000000241c <.LVL158>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1388 + for (bcount = 0, quoted = false; + 241c: 4581 li a1,0 + 241e: 0017081b addiw a6,a4,1 + +0000000000002422 <.L71>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1389 + bcount < len && *prev == '\\'; + 2422: 00074683 lbu a3,0(a4) + 2426: 01869b63 bne a3,s8,243c <.L72> 2426: R_RISCV_BRANCH .L72 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1392 + quoted ^= true; + 242a: 40e806bb subw a3,a6,a4 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1389 + bcount < len && *prev == '\\'; + 242e: 1682 slli a3,a3,0x20 + 2430: 9281 srli a3,a3,0x20 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1392 + quoted ^= true; + 2432: 0015c593 xori a1,a1,1 + +0000000000002436 <.LVL160>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1389 + bcount < len && *prev == '\\'; + 2436: 177d addi a4,a4,-1 + +0000000000002438 <.LVL161>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1388 + for (bcount = 0, quoted = false; + 2438: ff46e5e3 bltu a3,s4,2422 <.L71> 2438: R_RISCV_BRANCH .L71 + +000000000000243c <.L72>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1395 + if (quoted) + 243c: cd81 beqz a1,2454 <.L74> 243c: R_RISCV_RVC_BRANCH .L74 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1399 + len += strcspn(ptr + 1, g_arg_separator) + 1; + 243e: 85de mv a1,s7 + +0000000000002440 <.LVL163>: + 2440: 00178513 addi a0,a5,1 + +0000000000002444 <.LVL164>: + 2444: 00000097 auipc ra,0x0 2444: R_RISCV_CALL strcspn + 2444: R_RISCV_RELAX *ABS* + 2448: 000080e7 jalr ra # 2444 <.LVL164> + +000000000000244c <.LVL165>: + 244c: 0505 addi a0,a0,1 + 244e: 9a2a add s4,s4,a0 + +0000000000002450 <.LVL166>: + 2450: bfb5 j 23cc <.L127> 2450: R_RISCV_RVC_JUMP .L127 + +0000000000002452 <.L75>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1416 + if (*ptr == '\0') + 2452: d651 beqz a2,23de <.L77> 2452: R_RISCV_RVC_BRANCH .L77 + +0000000000002454 <.L74>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1510 + if (*ptr == '$') + 2454: fb961fe3 bne a2,s9,2412 <.L99> 2454: R_RISCV_BRANCH .L99 + +0000000000002458 <.LBB76>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1519 + *ptr++ = '\0'; + 2458: 00078023 sb zero,0(a5) +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1520 + argument = nsh_strcat(vtbl, argument, working); + 245c: 85ca mv a1,s2 + 245e: 864e mv a2,s3 + 2460: 8526 mv a0,s1 + +0000000000002462 <.LVL168>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1519 + *ptr++ = '\0'; + 2462: 00178a13 addi s4,a5,1 + +0000000000002466 <.LVL169>: + 2466: e43e sd a5,8(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1520 + argument = nsh_strcat(vtbl, argument, working); + 2468: 00000097 auipc ra,0x0 2468: R_RISCV_CALL nsh_strcat + 2468: R_RISCV_RELAX *ABS* + 246c: 000080e7 jalr ra # 2468 <.LVL169+0x2> + +0000000000002470 <.LVL170>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1530 + if (*ptr == '{') + 2470: 67a2 ld a5,8(sp) + 2472: 07b00713 li a4,123 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1520 + argument = nsh_strcat(vtbl, argument, working); + 2476: 892a mv s2,a0 + +0000000000002478 <.LVL171>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1530 + if (*ptr == '{') + 2478: 0017c683 lbu a3,1(a5) + 247c: 0ae69863 bne a3,a4,252c <.L80> 247c: R_RISCV_BRANCH .L80 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1534 + ptr++; + 2480: 00278a13 addi s4,a5,2 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1538 + rptr = nsh_strchr(ptr, '}'); + 2484: 07d00593 li a1,125 + 2488: 8552 mv a0,s4 + +000000000000248a <.LVL173>: + 248a: 00000097 auipc ra,0x0 248a: R_RISCV_CALL nsh_strchr + 248a: R_RISCV_RELAX *ABS* + 248e: 000080e7 jalr ra # 248a <.LVL173> + +0000000000002492 <.LVL174>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1539 + if (!rptr) + 2492: e91d bnez a0,24c8 <.L81> 2492: R_RISCV_RVC_BRANCH .L81 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1541 + nsh_error(vtbl, g_fmtnomatching, "${", "}"); + 2494: 749c ld a5,40(s1) + 2496: 00000697 auipc a3,0x0 2496: R_RISCV_PCREL_HI20 .LC4 + 2496: R_RISCV_RELAX *ABS* + 249a: 00068693 mv a3,a3 249a: R_RISCV_PCREL_LO12_I .L0 + 249a: R_RISCV_RELAX *ABS* + 249e: 00000617 auipc a2,0x0 249e: R_RISCV_PCREL_HI20 .LC5 + 249e: R_RISCV_RELAX *ABS* + 24a2: 00060613 mv a2,a2 24a2: R_RISCV_PCREL_LO12_I .L0 + 24a2: R_RISCV_RELAX *ABS* + 24a6: 00000597 auipc a1,0x0 24a6: R_RISCV_PCREL_HI20 .LANCHOR9 + 24a6: R_RISCV_RELAX *ABS* + 24aa: 00058593 mv a1,a1 24aa: R_RISCV_PCREL_LO12_I .L0 + 24aa: R_RISCV_RELAX *ABS* + 24ae: 8526 mv a0,s1 + +00000000000024b0 <.LVL175>: + 24b0: 9782 jalr a5 + +00000000000024b2 <.LVL176>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1542 + return (FAR char *)g_nullstring; + 24b2: 00000417 auipc s0,0x0 24b2: R_RISCV_PCREL_HI20 .LANCHOR4 + 24b2: R_RISCV_RELAX *ABS* + 24b6: 00040413 mv s0,s0 24b6: R_RISCV_PCREL_LO12_I .L0 + 24b6: R_RISCV_RELAX *ABS* + +00000000000024ba <.LVL177>: + 24ba: bb29 j 21d4 <.L57> 24ba: R_RISCV_RVC_JUMP .L57 + +00000000000024bc <.L78>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1444 + nsh_dequote(cmdline); + 24bc: 8522 mv a0,s0 + +00000000000024be <.LVL179>: + 24be: 00000097 auipc ra,0x0 24be: R_RISCV_CALL nsh_dequote + 24be: R_RISCV_RELAX *ABS* + 24c2: 000080e7 jalr ra # 24be <.LVL179> + +00000000000024c6 <.LVL180>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1445 + return cmdline; + 24c6: b339 j 21d4 <.L57> 24c6: R_RISCV_RVC_JUMP .L57 + +00000000000024c8 <.L81>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1549 + *rptr = '\0'; + 24c8: 00050023 sb zero,0(a0) +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1550 + working = rptr + 1; + 24cc: 00150993 addi s3,a0,1 + +00000000000024d0 <.L82>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1568 + if (isenvvar != NULL) + 24d0: 000a8563 beqz s5,24da <.L83> 24d0: R_RISCV_BRANCH .L83 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1570 + *isenvvar = 1; + 24d4: 4785 li a5,1 + 24d6: 00faa023 sw a5,0(s5) + +00000000000024da <.L83>: +nsh_envexpand(): +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1220 + if (strcmp(varname, g_exitstatus) == 0) + 24da: 00000597 auipc a1,0x0 24da: R_RISCV_PCREL_HI20 .LANCHOR11 + 24da: R_RISCV_RELAX *ABS* + 24de: 00058593 mv a1,a1 24de: R_RISCV_PCREL_LO12_I .L0 + 24de: R_RISCV_RELAX *ABS* + 24e2: 8552 mv a0,s4 + 24e4: 00000097 auipc ra,0x0 24e4: R_RISCV_CALL strcmp + 24e4: R_RISCV_RELAX *ABS* + 24e8: 000080e7 jalr ra # 24e4 <.L83+0xa> + +00000000000024ec <.LVL184>: + 24ec: e921 bnez a0,253c <.L84> 24ec: R_RISCV_RVC_BRANCH .L84 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1222 + if (vtbl->np.np_fail) + 24ee: 29a4c783 lbu a5,666(s1) +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1224 + return (FAR char *)g_failure; + 24f2: 86ee mv a3,s11 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1222 + if (vtbl->np.np_fail) + 24f4: e789 bnez a5,24fe <.L85> 24f4: R_RISCV_RVC_BRANCH .L85 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1228 + return (FAR char *)g_success; + 24f6: 00000697 auipc a3,0x0 24f6: R_RISCV_PCREL_HI20 .LANCHOR3 + 24f6: R_RISCV_RELAX *ABS* + 24fa: 00068693 mv a3,a3 24fa: R_RISCV_PCREL_LO12_I .L0 + 24fa: R_RISCV_RELAX *ABS* + +00000000000024fe <.L85>: +nsh_argexpand(): +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1576 + if ((vtbl->np.np_flags & NSH_PFLAG_SILENT) == 0) + 24fe: 29b4c783 lbu a5,667(s1) + 2502: 8b89 andi a5,a5,2 + 2504: eb99 bnez a5,251a <.L86> 2504: R_RISCV_RVC_BRANCH .L86 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1579 + nsh_output(vtbl, " %s=%s\n", ptr, envstr ? envstr : "(null)"); + 2506: 789c ld a5,48(s1) + 2508: 8652 mv a2,s4 + 250a: 00000597 auipc a1,0x0 250a: R_RISCV_PCREL_HI20 .LC6 + 250a: R_RISCV_RELAX *ABS* + 250e: 00058593 mv a1,a1 250e: R_RISCV_PCREL_LO12_I .L0 + 250e: R_RISCV_RELAX *ABS* + 2512: 8526 mv a0,s1 + 2514: e436 sd a3,8(sp) + +0000000000002516 <.LVL186>: + 2516: 9782 jalr a5 + +0000000000002518 <.LVL187>: + 2518: 66a2 ld a3,8(sp) + +000000000000251a <.L86>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1587 + argument = nsh_strcat(vtbl, argument, envstr); + 251a: 85ca mv a1,s2 + 251c: 8636 mv a2,a3 + 251e: 8526 mv a0,s1 + 2520: 00000097 auipc ra,0x0 2520: R_RISCV_CALL nsh_strcat + 2520: R_RISCV_RELAX *ABS* + 2524: 000080e7 jalr ra # 2520 <.L86+0x6> + +0000000000002528 <.LVL189>: + 2528: 892a mv s2,a0 + +000000000000252a <.LBE77>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1588 + *allocation = argument; + 252a: bd51 j 23be <.L79> 252a: R_RISCV_RVC_JUMP .L79 + +000000000000252c <.L80>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1561 + working = ptr + strlen(ptr); + 252c: 8552 mv a0,s4 + +000000000000252e <.LVL192>: + 252e: 00000097 auipc ra,0x0 252e: R_RISCV_CALL strlen + 252e: R_RISCV_RELAX *ABS* + 2532: 000080e7 jalr ra # 252e <.LVL192> + +0000000000002536 <.LVL193>: + 2536: 00aa09b3 add s3,s4,a0 + 253a: bf59 j 24d0 <.L82> 253a: R_RISCV_RVC_JUMP .L82 + +000000000000253c <.L84>: +nsh_envexpand(): +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1252 + value = getenv(varname); + 253c: 8552 mv a0,s4 + 253e: 00000097 auipc ra,0x0 253e: R_RISCV_CALL getenv + 253e: R_RISCV_RELAX *ABS* + 2542: 000080e7 jalr ra # 253e <.L84+0x2> + +0000000000002546 <.LVL196>: + 2546: 86aa mv a3,a0 + +0000000000002548 <.LVL197>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1253 + if (value != NULL) + 2548: f95d bnez a0,24fe <.L85> 2548: R_RISCV_RVC_BRANCH .L85 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1259 + return (FAR char *)g_nullstring; + 254a: 86ea mv a3,s10 + 254c: bf4d j 24fe <.L85> 254c: R_RISCV_RVC_JUMP .L85 + +000000000000254e <.L91>: +nsh_argument(): +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1714 + return NULL; + 254e: 4701 li a4,0 + +0000000000002550 <.LVL199>: + 2550: bb09 j 2262 <.L51> 2550: R_RISCV_RVC_JUMP .L51 + +0000000000002552 <.L66>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1867 + *pend++ = '\0'; + 2552: 000c8023 sb zero,0(s9) +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1790 + if ((quoted = (nsh_strchr(g_quote_separator, *pend) != NULL))) + 2556: 4681 li a3,0 + +0000000000002558 <.LBB82>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:1794 + FAR char *qend = nsh_strchr(pend + 1, *pend); + 2558: 8cea mv s9,s10 + +000000000000255a <.LVL201>: + 255a: bb59 j 22f0 <.L88> 255a: R_RISCV_RVC_JUMP .L88 + +000000000000255c : +nsh_saveresult(): +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:551 + if (np->np_lpstate[np->np_lpndx].lp_state == NSH_LOOP_WHILE) + 255c: 2b354783 lbu a5,691(a0) + 2560: 4685 li a3,1 + 2562: 0789 addi a5,a5,2 + 2564: 0792 slli a5,a5,0x4 + 2566: 97aa add a5,a5,a0 + 2568: 2987b703 ld a4,664(a5) + 256c: 8319 srli a4,a4,0x6 + 256e: 8b0d andi a4,a4,3 + 2570: 00d71f63 bne a4,a3,258e <.L129> 2570: R_RISCV_BRANCH .L129 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:553 + np->np_fail = false; + 2574: 28050d23 sb zero,666(a0) +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:554 + np->np_lpstate[np->np_lpndx].lp_enable = (result == OK); + 2578: 2987c703 lbu a4,664(a5) + 257c: 0015c593 xori a1,a1,1 + +0000000000002580 <.LVL203>: + 2580: 8985 andi a1,a1,1 + 2582: 9b79 andi a4,a4,-2 + 2584: 8dd9 or a1,a1,a4 + +0000000000002586 <.L133>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:570 + np->np_lpstate[np->np_lpndx].lp_enable = (result != OK); + 2586: 28b78c23 sb a1,664(a5) + +000000000000258a <.L134>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:571 + return OK; + 258a: 4501 li a0,0 + 258c: 8082 ret + +000000000000258e <.L129>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:567 + else if (np->np_lpstate[np->np_lpndx].lp_state == NSH_LOOP_UNTIL) + 258e: 4609 li a2,2 + 2590: 00c71a63 bne a4,a2,25a4 <.L131> 2590: R_RISCV_BRANCH .L131 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:569 + np->np_fail = false; + 2594: 28050d23 sb zero,666(a0) +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:570 + np->np_lpstate[np->np_lpndx].lp_enable = (result != OK); + 2598: 2987c503 lbu a0,664(a5) + +000000000000259c <.LVL206>: + 259c: 8985 andi a1,a1,1 + +000000000000259e <.LVL207>: + 259e: 9979 andi a0,a0,-2 + 25a0: 8dc9 or a1,a1,a0 + 25a2: b7d5 j 2586 <.L133> 25a2: R_RISCV_RVC_JUMP .L133 + +00000000000025a4 <.L131>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:579 + if (np->np_iestate[np->np_iendx].ie_state == NSH_ITEF_IF) + 25a4: 2b454703 lbu a4,692(a0) + 25a8: 972a add a4,a4,a0 + 25aa: 2b574783 lbu a5,693(a4) + 25ae: 8399 srli a5,a5,0x6 + 25b0: 00d79f63 bne a5,a3,25ce <.L132> 25b0: R_RISCV_BRANCH .L132 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:581 + np->np_fail = false; + 25b4: 28050d23 sb zero,666(a0) +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:583 + np->np_iestate[np->np_iendx].ie_inverted ^ result; + 25b8: 2b574783 lbu a5,693(a4) + 25bc: 0027d51b srliw a0,a5,0x2 + +00000000000025c0 <.LVL209>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:582 + np->np_iestate[np->np_iendx].ie_ifcond = + 25c0: 8da9 xor a1,a1,a0 + +00000000000025c2 <.LVL210>: + 25c2: 8985 andi a1,a1,1 + 25c4: 9bf9 andi a5,a5,-2 + 25c6: 8ddd or a1,a1,a5 + 25c8: 2ab70aa3 sb a1,693(a4) +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:584 + return OK; + 25cc: bf7d j 258a <.L134> 25cc: R_RISCV_RVC_JUMP .L134 + +00000000000025ce <.L132>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:590 + np->np_fail = result; + 25ce: 28b50d23 sb a1,666(a0) +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:591 + return result ? ERROR : OK; + 25d2: 40b0053b negw a0,a1 + +00000000000025d6 <.LBE85>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:593 +} + 25d6: 8082 ret + +00000000000025d8 : +nsh_parse_command(): +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2539 + * This function parses and executes one NSH command from the command line. + * + ****************************************************************************/ + +static int nsh_parse_command(FAR struct nsh_vtbl_s *vtbl, FAR char *cmdline) +{ + 25d8: 7165 addi sp,sp,-400 + 25da: e322 sd s0,384(sp) + 25dc: fea6 sd s1,376(sp) + 25de: 842a mv s0,a0 + 25e0: 84ae mv s1,a1 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2553 + int ret; + bool redirect_save = false; + + /* Initialize parser state */ + + memset(argv, 0, MAX_ARGV_ENTRIES*sizeof(FAR char *)); + 25e2: 06000613 li a2,96 + 25e6: 4581 li a1,0 + +00000000000025e8 <.LVL214>: + 25e8: 00a8 addi a0,sp,72 + +00000000000025ea <.LVL215>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2539 +{ + 25ea: e706 sd ra,392(sp) + 25ec: faca sd s2,368(sp) + 25ee: f6ce sd s3,360(sp) + 25f0: f2d2 sd s4,352(sp) + 25f2: eed6 sd s5,344(sp) + 25f4: eada sd s6,336(sp) + 25f6: e6de sd s7,328(sp) + 25f8: e2e2 sd s8,320(sp) + 25fa: fe66 sd s9,312(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2553 + memset(argv, 0, MAX_ARGV_ENTRIES*sizeof(FAR char *)); + 25fc: 00000097 auipc ra,0x0 25fc: R_RISCV_CALL memset + 25fc: R_RISCV_RELAX *ABS* + 2600: 000080e7 jalr ra # 25fc <.LVL215+0x12> + +0000000000002604 <.LVL216>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2554 + NSH_MEMLIST_INIT(memlist); + 2604: 08800613 li a2,136 + 2608: 4581 li a1,0 + 260a: 1128 addi a0,sp,168 + 260c: 00000097 auipc ra,0x0 260c: R_RISCV_CALL memset + 260c: R_RISCV_RELAX *ABS* + 2610: 000080e7 jalr ra # 260c <.LVL216+0x8> + +0000000000002614 <.LVL217>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2566 + vtbl->np.np_redirect = false; + + /* Parse out the command at the beginning of the line */ + + saveptr = cmdline; + cmd = nsh_argument(vtbl, &saveptr, &memlist, &alist, NULL); + 2614: 4701 li a4,0 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2558 + vtbl->np.np_bg = false; + 2616: 28041c23 sh zero,664(s0) # 274a <.LVL242+0x10> +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2566 + cmd = nsh_argument(vtbl, &saveptr, &memlist, &alist, NULL); + 261a: 1014 addi a3,sp,32 + 261c: 1130 addi a2,sp,168 + 261e: 082c addi a1,sp,24 + 2620: 8522 mv a0,s0 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2555 + NSH_ALIASLIST_INIT(alist); + 2622: f002 sd zero,32(sp) + 2624: f402 sd zero,40(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2565 + saveptr = cmdline; + 2626: ec26 sd s1,24(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2566 + cmd = nsh_argument(vtbl, &saveptr, &memlist, &alist, NULL); + 2628: 00000097 auipc ra,0x0 2628: R_RISCV_CALL nsh_argument + 2628: R_RISCV_RELAX *ABS* + 262c: 000080e7 jalr ra # 2628 <.LVL217+0x14> + +0000000000002630 <.LBB113>: +nsh_loop(): +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2001 + if (cmd != NULL) + 2630: 1c050c63 beqz a0,2808 <.L136> 2630: R_RISCV_BRANCH .L136 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2005 + whilematch = strcmp(cmd, "while") == 0; + 2634: 00000597 auipc a1,0x0 2634: R_RISCV_PCREL_HI20 .LC7 + 2634: R_RISCV_RELAX *ABS* + 2638: 00058593 mv a1,a1 2638: R_RISCV_PCREL_LO12_I .L0 + 2638: R_RISCV_RELAX *ABS* + 263c: 84aa mv s1,a0 + +000000000000263e <.LVL219>: + 263e: 00000097 auipc ra,0x0 263e: R_RISCV_CALL strcmp + 263e: R_RISCV_RELAX *ABS* + 2642: 000080e7 jalr ra # 263e <.LVL219> + +0000000000002646 <.LVL220>: + 2646: 89aa mv s3,a0 + +0000000000002648 <.LVL221>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2008 + if (whilematch || untilmatch) + 2648: cd01 beqz a0,2660 <.L137> 2648: R_RISCV_RVC_BRANCH .L137 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2006 + untilmatch = strcmp(cmd, "until") == 0; + 264a: 00000597 auipc a1,0x0 264a: R_RISCV_PCREL_HI20 .LC8 + 264a: R_RISCV_RELAX *ABS* + 264e: 00058593 mv a1,a1 264e: R_RISCV_PCREL_LO12_I .L0 + 264e: R_RISCV_RELAX *ABS* + 2652: 8526 mv a0,s1 + +0000000000002654 <.LVL222>: + 2654: 00000097 auipc ra,0x0 2654: R_RISCV_CALL strcmp + 2654: R_RISCV_RELAX *ABS* + 2658: 000080e7 jalr ra # 2654 <.LVL222> + +000000000000265c <.LVL223>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2008 + if (whilematch || untilmatch) + 265c: 14051463 bnez a0,27a4 <.L138> 265c: R_RISCV_BRANCH .L138 + +0000000000002660 <.L137>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2014 + *ppcmd = nsh_argument(vtbl, saveptr, memlist, alist, 0); + 2660: 4701 li a4,0 + 2662: 1014 addi a3,sp,32 + +0000000000002664 <.LVL224>: + 2664: 1130 addi a2,sp,168 + +0000000000002666 <.LVL225>: + 2666: 082c addi a1,sp,24 + +0000000000002668 <.LVL226>: + 2668: 8522 mv a0,s0 + 266a: 00000097 auipc ra,0x0 266a: R_RISCV_CALL nsh_argument + 266a: R_RISCV_RELAX *ABS* + 266e: 000080e7 jalr ra # 266a <.LVL226+0x2> + +0000000000002672 <.LVL227>: + 2672: 8a2a mv s4,a0 + +0000000000002674 <.LVL228>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2015 + if (*ppcmd == NULL || **ppcmd == '\0') + 2674: c501 beqz a0,267c <.L139> 2674: R_RISCV_RVC_BRANCH .L139 + 2676: 00054783 lbu a5,0(a0) + 267a: eb81 bnez a5,268a <.L140> 267a: R_RISCV_RVC_BRANCH .L140 + +000000000000267c <.L139>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2017 + nsh_error(vtbl, g_fmtarginvalid, cmd); + 267c: 741c ld a5,40(s0) + 267e: 8626 mv a2,s1 + +0000000000002680 <.L304>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2094 + nsh_error(vtbl, g_fmtarginvalid, "done"); + 2680: 00000597 auipc a1,0x0 2680: R_RISCV_PCREL_HI20 .LANCHOR12 + 2680: R_RISCV_RELAX *ABS* + 2684: 00058593 mv a1,a1 2684: R_RISCV_PCREL_LO12_I .L0 + 2684: R_RISCV_RELAX *ABS* + 2688: a899 j 26de <.L141> 2688: R_RISCV_RVC_JUMP .L294 + +000000000000268a <.L140>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2025 + np->np_iestate[np->np_iendx].ie_state == NSH_ITEF_IF || + 268a: 2b444a83 lbu s5,692(s0) +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2023 + if ( + 268e: 4685 li a3,1 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2025 + np->np_iestate[np->np_iendx].ie_state == NSH_ITEF_IF || + 2690: 015407b3 add a5,s0,s5 + 2694: 2b57c783 lbu a5,693(a5) +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2023 + if ( + 2698: 8399 srli a5,a5,0x6 + 269a: 02d78763 beq a5,a3,26c8 <.L296> 269a: R_RISCV_BRANCH .L296 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2027 + np->np_lpstate[np->np_lpndx].lp_state == NSH_LOOP_WHILE || + 269e: 2b344903 lbu s2,691(s0) + 26a2: 00290793 addi a5,s2,2 # 20fa + 26a6: 0792 slli a5,a5,0x4 + 26a8: 97a2 add a5,a5,s0 + 26aa: 2987b783 ld a5,664(a5) + 26ae: 8399 srli a5,a5,0x6 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2025 + np->np_iestate[np->np_iendx].ie_state == NSH_ITEF_IF || + 26b0: 078d addi a5,a5,3 + 26b2: 8b8d andi a5,a5,3 + 26b4: 00f6fa63 bgeu a3,a5,26c8 <.L296> 26b4: R_RISCV_BRANCH .L296 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2028 + np->np_lpstate[np->np_lpndx].lp_state == NSH_LOOP_UNTIL || + 26b8: 2a042783 lw a5,672(s0) + 26bc: 0007c663 bltz a5,26c8 <.L296> 26bc: R_RISCV_BRANCH .L296 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2029 + np->np_fd < 0 || np->np_foffs < 0) + 26c0: 2a843b03 ld s6,680(s0) + 26c4: 000b5563 bgez s6,26ce <.L143> 26c4: R_RISCV_BRANCH .L143 + +00000000000026c8 <.L296>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2158 + nsh_error(vtbl, g_fmtcontext, cmd); + 26c8: 741c ld a5,40(s0) + 26ca: 8626 mv a2,s1 + 26cc: a215 j 27f0 <.L295> 26cc: R_RISCV_RVC_JUMP .L295 + +00000000000026ce <.L143>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2037 + if (np->np_lpndx >= CONFIG_NSH_NESTDEPTH - 1) + 26ce: 0326fe63 bgeu a3,s2,270a <.L144> 26ce: R_RISCV_BRANCH .L144 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2039 + nsh_error(vtbl, g_fmtdeepnesting, cmd); + 26d2: 741c ld a5,40(s0) + 26d4: 8626 mv a2,s1 + 26d6: 00000597 auipc a1,0x0 26d6: R_RISCV_PCREL_HI20 .LANCHOR14 + 26d6: R_RISCV_RELAX *ABS* + 26da: 00058593 mv a1,a1 26da: R_RISCV_PCREL_LO12_I .L0 + 26da: R_RISCV_RELAX *ABS* + +00000000000026de <.L141>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2158 + nsh_error(vtbl, g_fmtcontext, cmd); + 26de: 8522 mv a0,s0 + 26e0: 9782 jalr a5 + +00000000000026e2 <.LVL232>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2171 + np->np_lpstate[0].lp_enable = true; + 26e2: 2b844783 lbu a5,696(s0) +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2167 + np->np_jump = false; + 26e6: 2a041923 sh zero,690(s0) +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2172 + np->np_lpstate[0].lp_topoffs = 0; + 26ea: 2c043023 sd zero,704(s0) +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2171 + np->np_lpstate[0].lp_enable = true; + 26ee: 03e7f793 andi a5,a5,62 + 26f2: 0017e793 ori a5,a5,1 + 26f6: 2af40c23 sb a5,696(s0) + +00000000000026fa <.L302>: +nsh_parse_command(): +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2596 + /* Handle nice */ + +#ifndef CONFIG_NSH_DISABLEBG + if (nsh_nice(vtbl, &cmd, &saveptr, &memlist, &alist) != 0) + { + ret = nsh_saveresult(vtbl, true); + 26fa: 4585 li a1,1 + 26fc: 8522 mv a0,s0 + 26fe: 00000097 auipc ra,0x0 26fe: R_RISCV_CALL nsh_saveresult + 26fe: R_RISCV_RELAX *ABS* + 2702: 000080e7 jalr ra # 26fe <.L302+0x4> + +0000000000002706 <.LVL234>: + 2706: 892a mv s2,a0 + +0000000000002708 <.LVL235>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2597 + goto dynlist_free; + 2708: a2dd j 28ee <.L156> 2708: R_RISCV_RVC_JUMP .L156 + +000000000000270a <.L144>: +nsh_loop(): +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2046 + enable = nsh_cmdenabled(vtbl); + 270a: 8522 mv a0,s0 + +000000000000270c <.LVL237>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2056 + np->np_lpndx++; + 270c: 2905 addiw s2,s2,1 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2046 + enable = nsh_cmdenabled(vtbl); + 270e: 00000097 auipc ra,0x0 270e: R_RISCV_CALL nsh_cmdenabled + 270e: R_RISCV_RELAX *ABS* + 2712: 000080e7 jalr ra # 270e <.LVL237+0x2> + +0000000000002716 <.LVL238>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2056 + np->np_lpndx++; + 2716: 0ff97913 zext.b s2,s2 + 271a: 00290793 addi a5,s2,2 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2045 + state = whilematch ? NSH_LOOP_WHILE : NSH_LOOP_UNTIL; + 271e: 013034b3 snez s1,s3 + +0000000000002722 <.LVL239>: + 2722: 0485 addi s1,s1,1 + +0000000000002724 <.LVL240>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2050 + offset = np->np_foffs + np->np_loffs; + 2724: 0792 slli a5,a5,0x4 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2056 + np->np_lpndx++; + 2726: 2b2409a3 sb s2,691(s0) +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2054 + np->np_jump = false; + 272a: 2a040923 sb zero,690(s0) + 272e: 97a2 add a5,a5,s0 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2058 + np->np_lpstate[np->np_lpndx].lp_enable = enable; + 2730: 0064949b slliw s1,s1,0x6 + +0000000000002734 <.LVL241>: + 2734: 8cc9 or s1,s1,a0 + 2736: 2987c503 lbu a0,664(a5) + +000000000000273a <.LVL242>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2050 + offset = np->np_foffs + np->np_loffs; + 273a: 2b045703 lhu a4,688(s0) +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2058 + np->np_lpstate[np->np_lpndx].lp_enable = enable; + 273e: fc14f493 andi s1,s1,-63 + 2742: 03e57513 andi a0,a0,62 + 2746: 8cc9 or s1,s1,a0 + 2748: 0912 slli s2,s2,0x4 + 274a: 28978c23 sb s1,664(a5) + 274e: 9922 add s2,s2,s0 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2050 + offset = np->np_foffs + np->np_loffs; + 2750: 975a add a4,a4,s6 + +0000000000002752 <.LVL243>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2060 + np->np_lpstate[np->np_lpndx].lp_iendx = np->np_iendx; + 2752: 2b590ca3 sb s5,697(s2) +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2062 + np->np_lpstate[np->np_lpndx].lp_topoffs = offset; + 2756: 2ce93023 sd a4,704(s2) + +000000000000275a <.LVL244>: + 275a: 84d2 mv s1,s4 + +000000000000275c <.L146>: +nsh_itef(): +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2195 + if (strcmp(cmd, "if") == 0) + 275c: 00000597 auipc a1,0x0 275c: R_RISCV_PCREL_HI20 .LC12 + 275c: R_RISCV_RELAX *ABS* + 2760: 00058593 mv a1,a1 2760: R_RISCV_PCREL_LO12_I .L0 + 2760: R_RISCV_RELAX *ABS* + 2764: 8526 mv a0,s1 + 2766: 00000097 auipc ra,0x0 2766: R_RISCV_CALL strcmp + 2766: R_RISCV_RELAX *ABS* + 276a: 000080e7 jalr ra # 2766 <.L146+0xa> + +000000000000276e <.LVL246>: + 276e: 30051f63 bnez a0,2a8c <.L157> 276e: R_RISCV_BRANCH .L157 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2199 + *ppcmd = nsh_argument(vtbl, saveptr, memlist, alist, NULL); + 2772: 4701 li a4,0 + 2774: 1014 addi a3,sp,32 + +0000000000002776 <.LVL247>: + 2776: 1130 addi a2,sp,168 + +0000000000002778 <.LVL248>: + 2778: 082c addi a1,sp,24 + +000000000000277a <.LVL249>: + 277a: 8522 mv a0,s0 + 277c: 00000097 auipc ra,0x0 277c: R_RISCV_CALL nsh_argument + 277c: R_RISCV_RELAX *ABS* + 2780: 000080e7 jalr ra # 277c <.LVL249+0x2> + +0000000000002784 <.LVL250>: + 2784: 84aa mv s1,a0 + +0000000000002786 <.LVL251>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2200 + if (*ppcmd == NULL || **ppcmd == '\0') + 2786: c509 beqz a0,2790 <.L162> 2786: R_RISCV_RVC_BRANCH .L162 + 2788: 00054783 lbu a5,0(a0) + 278c: 18079963 bnez a5,291e <.L159> 278c: R_RISCV_BRANCH .L159 + +0000000000002790 <.L162>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2217 + nsh_error(vtbl, g_fmtarginvalid, "if"); + 2790: 741c ld a5,40(s0) + 2792: 00000617 auipc a2,0x0 2792: R_RISCV_PCREL_HI20 .LC12 + 2792: R_RISCV_RELAX *ABS* + 2796: 00060613 mv a2,a2 2796: R_RISCV_PCREL_LO12_I .L0 + 2796: R_RISCV_RELAX *ABS* + +000000000000279a <.L305>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2299 + nsh_error(vtbl, g_fmtarginvalid, "fi"); + 279a: 00000597 auipc a1,0x0 279a: R_RISCV_PCREL_HI20 .LANCHOR12 + 279a: R_RISCV_RELAX *ABS* + 279e: 00058593 mv a1,a1 279e: R_RISCV_PCREL_LO12_I .L0 + 279e: R_RISCV_RELAX *ABS* + 27a2: aac5 j 2992 <.L160> 27a2: R_RISCV_RVC_JUMP .L297 + +00000000000027a4 <.L138>: +nsh_loop(): +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2067 + else if (strcmp(cmd, "do") == 0) + 27a4: 00000597 auipc a1,0x0 27a4: R_RISCV_PCREL_HI20 .LC9 + 27a4: R_RISCV_RELAX *ABS* + 27a8: 00058593 mv a1,a1 27a8: R_RISCV_PCREL_LO12_I .L0 + 27a8: R_RISCV_RELAX *ABS* + 27ac: 8526 mv a0,s1 + 27ae: 00000097 auipc ra,0x0 27ae: R_RISCV_CALL strcmp + 27ae: R_RISCV_RELAX *ABS* + 27b2: 000080e7 jalr ra # 27ae <.L138+0xa> + +00000000000027b6 <.LVL255>: + 27b6: ed29 bnez a0,2810 <.L147> 27b6: R_RISCV_RVC_BRANCH .L147 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2071 + *ppcmd = nsh_argument(vtbl, saveptr, memlist, alist, NULL); + 27b8: 4701 li a4,0 + 27ba: 1014 addi a3,sp,32 + +00000000000027bc <.LVL256>: + 27bc: 1130 addi a2,sp,168 + +00000000000027be <.LVL257>: + 27be: 082c addi a1,sp,24 + +00000000000027c0 <.LVL258>: + 27c0: 8522 mv a0,s0 + 27c2: 00000097 auipc ra,0x0 27c2: R_RISCV_CALL nsh_argument + 27c2: R_RISCV_RELAX *ABS* + 27c6: 000080e7 jalr ra # 27c2 <.LVL258+0x2> + +00000000000027ca <.LVL259>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2075 + if (np->np_lpstate[np->np_lpndx].lp_state != NSH_LOOP_WHILE && + 27ca: 2b344783 lbu a5,691(s0) + 27ce: 4685 li a3,1 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2071 + *ppcmd = nsh_argument(vtbl, saveptr, memlist, alist, NULL); + 27d0: 84aa mv s1,a0 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2075 + if (np->np_lpstate[np->np_lpndx].lp_state != NSH_LOOP_WHILE && + 27d2: 0789 addi a5,a5,2 + 27d4: 0792 slli a5,a5,0x4 + 27d6: 97a2 add a5,a5,s0 + 27d8: 2987b703 ld a4,664(a5) + 27dc: 8319 srli a4,a4,0x6 + 27de: 070d addi a4,a4,3 + 27e0: 8b0d andi a4,a4,3 + 27e2: 00e6fc63 bgeu a3,a4,27fa <.L148> 27e2: R_RISCV_BRANCH .L148 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2078 + nsh_error(vtbl, g_fmtcontext, "do"); + 27e6: 741c ld a5,40(s0) + 27e8: 00000617 auipc a2,0x0 27e8: R_RISCV_PCREL_HI20 .LC9 + 27e8: R_RISCV_RELAX *ABS* + 27ec: 00060613 mv a2,a2 27ec: R_RISCV_PCREL_LO12_I .L0 + 27ec: R_RISCV_RELAX *ABS* + +00000000000027f0 <.L295>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2158 + nsh_error(vtbl, g_fmtcontext, cmd); + 27f0: 00000597 auipc a1,0x0 27f0: R_RISCV_PCREL_HI20 .LANCHOR13 + 27f0: R_RISCV_RELAX *ABS* + 27f4: 00058593 mv a1,a1 27f4: R_RISCV_PCREL_LO12_I .L0 + 27f4: R_RISCV_RELAX *ABS* + 27f8: b5dd j 26de <.L141> 27f8: R_RISCV_RVC_JUMP .L294 + +00000000000027fa <.L148>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2082 + np->np_lpstate[np->np_lpndx].lp_state = NSH_LOOP_DO; + 27fa: 2987c703 lbu a4,664(a5) + 27fe: fc076713 ori a4,a4,-64 + 2802: 28e78c23 sb a4,664(a5) + +0000000000002806 <.LBB144>: +nsh_itef(): +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2191 + if (cmd != NULL) + 2806: f939 bnez a0,275c <.L146> 2806: R_RISCV_RVC_BRANCH .L146 + +0000000000002808 <.L136>: +nsh_nice(): +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2357 + vtbl->np.np_nice = 0; + 2808: 28042e23 sw zero,668(s0) + +000000000000280c <.L174>: +nsh_parse_command(): +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2616 + /* An empty line is not an error and an unprocessed command cannot + * generate an error, but neither should it change the last command + * status. + */ + + ret = OK; + 280c: 4901 li s2,0 + 280e: a0c5 j 28ee <.L156> 280e: R_RISCV_RVC_JUMP .L156 + +0000000000002810 <.L147>: +nsh_loop(): +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2087 + else if (strcmp(cmd, "done") == 0) + 2810: 00000597 auipc a1,0x0 2810: R_RISCV_PCREL_HI20 .LC10 + 2810: R_RISCV_RELAX *ABS* + 2814: 00058593 mv a1,a1 2814: R_RISCV_PCREL_LO12_I .L0 + 2814: R_RISCV_RELAX *ABS* + 2818: 8526 mv a0,s1 + 281a: 00000097 auipc ra,0x0 281a: R_RISCV_CALL strcmp + 281a: R_RISCV_RELAX *ABS* + 281e: 000080e7 jalr ra # 281a <.L147+0xa> + +0000000000002822 <.LVL266>: + 2822: 892a mv s2,a0 + 2824: ed79 bnez a0,2902 <.L149> 2824: R_RISCV_RVC_BRANCH .L149 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2091 + *ppcmd = nsh_argument(vtbl, saveptr, memlist, alist, NULL); + 2826: 4701 li a4,0 + 2828: 1014 addi a3,sp,32 + +000000000000282a <.LVL267>: + 282a: 1130 addi a2,sp,168 + +000000000000282c <.LVL268>: + 282c: 082c addi a1,sp,24 + +000000000000282e <.LVL269>: + 282e: 8522 mv a0,s0 + 2830: 00000097 auipc ra,0x0 2830: R_RISCV_CALL nsh_argument + 2830: R_RISCV_RELAX *ABS* + 2834: 000080e7 jalr ra # 2830 <.LVL269+0x2> + +0000000000002838 <.LVL270>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2092 + if (*ppcmd) + 2838: c519 beqz a0,2846 <.L150> 2838: R_RISCV_RVC_BRANCH .L150 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2094 + nsh_error(vtbl, g_fmtarginvalid, "done"); + 283a: 741c ld a5,40(s0) + 283c: 00000617 auipc a2,0x0 283c: R_RISCV_PCREL_HI20 .LC10 + 283c: R_RISCV_RELAX *ABS* + 2840: 00060613 mv a2,a2 2840: R_RISCV_PCREL_LO12_I .L0 + 2840: R_RISCV_RELAX *ABS* + 2844: bd35 j 2680 <.L304> 2844: R_RISCV_RVC_JUMP .L304 + +0000000000002846 <.L150>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2100 + if (np->np_lpstate[np->np_lpndx].lp_state != NSH_LOOP_DO) + 2846: 2b344603 lbu a2,691(s0) + 284a: 458d li a1,3 + 284c: 00260793 addi a5,a2,2 # 283e <.LVL270+0x6> + 2850: 0792 slli a5,a5,0x4 + 2852: 97a2 add a5,a5,s0 + 2854: 2987b703 ld a4,664(a5) + 2858: 00675693 srli a3,a4,0x6 + 285c: 8a8d andi a3,a3,3 + 285e: 00b68863 beq a3,a1,286e <.L151> 285e: R_RISCV_BRANCH .L151 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2102 + nsh_error(vtbl, g_fmtcontext, "done"); + 2862: 741c ld a5,40(s0) + 2864: 00000617 auipc a2,0x0 2864: R_RISCV_PCREL_HI20 .LC10 + 2864: R_RISCV_RELAX *ABS* + 2868: 00060613 mv a2,a2 2868: R_RISCV_PCREL_LO12_I .L0 + 2868: R_RISCV_RELAX *ABS* + 286c: b751 j 27f0 <.L295> 286c: R_RISCV_RVC_JUMP .L295 + +000000000000286e <.L151>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2106 + if (np->np_lpndx < 1) /* Shouldn't happen */ + 286e: ea19 bnez a2,2884 <.L152> 286e: R_RISCV_RVC_BRANCH .L152 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2108 + nsh_error(vtbl, g_fmtinternalerror, "done"); + 2870: 741c ld a5,40(s0) + 2872: 00000617 auipc a2,0x0 2872: R_RISCV_PCREL_HI20 .LC10 + 2872: R_RISCV_RELAX *ABS* + 2876: 00060613 mv a2,a2 2876: R_RISCV_PCREL_LO12_I .L0 + 2876: R_RISCV_RELAX *ABS* + 287a: 00000597 auipc a1,0x0 287a: R_RISCV_PCREL_HI20 .LANCHOR15 + 287a: R_RISCV_RELAX *ABS* + 287e: 00058593 mv a1,a1 287e: R_RISCV_PCREL_LO12_I .L0 + 287e: R_RISCV_RELAX *ABS* + 2882: bdb1 j 26de <.L141> 2882: R_RISCV_RVC_JUMP .L294 + +0000000000002884 <.L152>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2117 + if (np->np_lpstate[np->np_lpndx].lp_enable) + 2884: 8b05 andi a4,a4,1 + 2886: c73d beqz a4,28f4 <.L153> 2886: R_RISCV_RVC_BRANCH .L153 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2121 + ret = lseek(np->np_fd, + 2888: 2a07a583 lw a1,672(a5) + 288c: 2a042503 lw a0,672(s0) + +0000000000002890 <.LVL271>: + 2890: 4601 li a2,0 + 2892: 00000097 auipc ra,0x0 2892: R_RISCV_CALL lseek + 2892: R_RISCV_RELAX *ABS* + 2896: 000080e7 jalr ra # 2892 <.LVL271+0x2> + +000000000000289a <.LVL272>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2124 + if (ret < 0) + 289a: 02055663 bgez a0,28c6 <.L154> 289a: R_RISCV_BRANCH .L154 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2126 + nsh_error(vtbl, g_fmtcmdfailed, "done", "lseek", + 289e: 7404 ld s1,40(s0) + +00000000000028a0 <.LVL273>: + 28a0: 00000097 auipc ra,0x0 28a0: R_RISCV_CALL __errno + 28a0: R_RISCV_RELAX *ABS* + 28a4: 000080e7 jalr ra # 28a0 <.LVL273> + +00000000000028a8 <.LVL274>: + 28a8: 4118 lw a4,0(a0) + 28aa: 00000697 auipc a3,0x0 28aa: R_RISCV_PCREL_HI20 .LC11 + 28aa: R_RISCV_RELAX *ABS* + 28ae: 00068693 mv a3,a3 28ae: R_RISCV_PCREL_LO12_I .L0 + 28ae: R_RISCV_RELAX *ABS* + 28b2: 00000617 auipc a2,0x0 28b2: R_RISCV_PCREL_HI20 .LC10 + 28b2: R_RISCV_RELAX *ABS* + 28b6: 00060613 mv a2,a2 28b6: R_RISCV_PCREL_LO12_I .L0 + 28b6: R_RISCV_RELAX *ABS* + 28ba: 00000597 auipc a1,0x0 28ba: R_RISCV_PCREL_HI20 .LANCHOR16 + 28ba: R_RISCV_RELAX *ABS* + 28be: 00058593 mv a1,a1 28be: R_RISCV_PCREL_LO12_I .L0 + 28be: R_RISCV_RELAX *ABS* + 28c2: 8522 mv a0,s0 + 28c4: 9482 jalr s1 + +00000000000028c6 <.L154>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2135 + np->np_jump = true; + 28c6: 4785 li a5,1 + 28c8: 2af40923 sb a5,690(s0) + +00000000000028cc <.L155>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2147 + np->np_lpstate[np->np_lpndx].lp_state = NSH_LOOP_NORMAL; + 28cc: 2b344703 lbu a4,691(s0) + 28d0: 00270793 addi a5,a4,2 + 28d4: 0792 slli a5,a5,0x4 + 28d6: 97a2 add a5,a5,s0 + 28d8: 2987c683 lbu a3,664(a5) +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2148 + np->np_lpndx--; + 28dc: 377d addiw a4,a4,-1 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2147 + np->np_lpstate[np->np_lpndx].lp_state = NSH_LOOP_NORMAL; + 28de: 03f6f693 andi a3,a3,63 + 28e2: 28d78c23 sb a3,664(a5) +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2148 + np->np_lpndx--; + 28e6: 2ae409a3 sb a4,691(s0) + +00000000000028ea <.L303>: +nsh_nice(): +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2357 + vtbl->np.np_nice = 0; + 28ea: 28042e23 sw zero,668(s0) + +00000000000028ee <.L156>: +nsh_parse_command(): +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:424 + if (vtbl && alist) + 28ee: 1004 addi s1,sp,32 + +00000000000028f0 <.LBB149>: +nsh_cloneargs(): +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:522 + for (i = 0; i < argc; i++) + 28f0: 4981 li s3,0 + 28f2: ad71 j 2f8e <.L217> 28f2: R_RISCV_RVC_JUMP .L217 + +00000000000028f4 <.L153>: +nsh_loop(): +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2140 + np->np_lpstate[np->np_lpndx].lp_enable = true; + 28f4: 2987c703 lbu a4,664(a5) + 28f8: 00176713 ori a4,a4,1 + 28fc: 28e78c23 sb a4,664(a5) + 2900: b7f1 j 28cc <.L155> 2900: R_RISCV_RVC_JUMP .L155 + +0000000000002902 <.L149>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2155 + else if (np->np_lpstate[np->np_lpndx].lp_state == NSH_LOOP_WHILE || + 2902: 2b344783 lbu a5,691(s0) + 2906: 4705 li a4,1 + 2908: 0789 addi a5,a5,2 + 290a: 0792 slli a5,a5,0x4 + 290c: 97a2 add a5,a5,s0 + 290e: 2987b783 ld a5,664(a5) + 2912: 8399 srli a5,a5,0x6 + 2914: 078d addi a5,a5,3 + 2916: 8b8d andi a5,a5,3 + 2918: e4f762e3 bltu a4,a5,275c <.L146> 2918: R_RISCV_BRANCH .L146 + 291c: b375 j 26c8 <.L296> 291c: R_RISCV_RVC_JUMP .L296 + +000000000000291e <.L159>: +nsh_itef(): +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2208 + if (strcmp(*ppcmd, "!") == 0) + 291e: 00000597 auipc a1,0x0 291e: R_RISCV_PCREL_HI20 .LC13 + 291e: R_RISCV_RELAX *ABS* + 2922: 00058593 mv a1,a1 2922: R_RISCV_PCREL_LO12_I .L0 + 2922: R_RISCV_RELAX *ABS* + 2926: 00000097 auipc ra,0x0 2926: R_RISCV_CALL strcmp + 2926: R_RISCV_RELAX *ABS* + 292a: 000080e7 jalr ra # 2926 <.L159+0x8> + +000000000000292e <.LVL282>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2189 + bool inverted = false; + 292e: 4981 li s3,0 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2208 + if (strcmp(*ppcmd, "!") == 0) + 2930: e115 bnez a0,2954 <.L161> 2930: R_RISCV_RVC_BRANCH .L161 + +0000000000002932 <.LVL283>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2214 + *ppcmd = nsh_argument(vtbl, saveptr, memlist, alist, 0); + 2932: 4701 li a4,0 + 2934: 1014 addi a3,sp,32 + +0000000000002936 <.LVL284>: + 2936: 1130 addi a2,sp,168 + +0000000000002938 <.LVL285>: + 2938: 082c addi a1,sp,24 + +000000000000293a <.LVL286>: + 293a: 8522 mv a0,s0 + 293c: 00000097 auipc ra,0x0 293c: R_RISCV_CALL nsh_argument + 293c: R_RISCV_RELAX *ABS* + 2940: 000080e7 jalr ra # 293c <.LVL286+0x2> + +0000000000002944 <.LVL287>: + 2944: 84aa mv s1,a0 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2215 + if (*ppcmd == NULL || **ppcmd == '\0') + 2946: e40505e3 beqz a0,2790 <.L162> 2946: R_RISCV_BRANCH .L162 + 294a: 00054783 lbu a5,0(a0) +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2210 + inverted = true; + 294e: 4985 li s3,1 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2215 + if (*ppcmd == NULL || **ppcmd == '\0') + 2950: e40780e3 beqz a5,2790 <.L162> 2950: R_RISCV_BRANCH .L162 + +0000000000002954 <.L161>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2224 + if (np->np_iestate[np->np_iendx].ie_state == NSH_ITEF_IF) + 2954: 2b444903 lbu s2,692(s0) + 2958: 4705 li a4,1 + 295a: 012407b3 add a5,s0,s2 + 295e: 2b57c783 lbu a5,693(a5) + 2962: 8399 srli a5,a5,0x6 + 2964: 00e79c63 bne a5,a4,297c <.L163> 2964: R_RISCV_BRANCH .L163 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2226 + nsh_error(vtbl, g_fmtcontext, "if"); + 2968: 741c ld a5,40(s0) + 296a: 00000617 auipc a2,0x0 296a: R_RISCV_PCREL_HI20 .LC12 + 296a: R_RISCV_RELAX *ABS* + 296e: 00060613 mv a2,a2 296e: R_RISCV_PCREL_LO12_I .L0 + 296e: R_RISCV_RELAX *ABS* + +0000000000002972 <.L298>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2329 + nsh_error(vtbl, g_fmtcontext, cmd); + 2972: 00000597 auipc a1,0x0 2972: R_RISCV_PCREL_HI20 .LANCHOR13 + 2972: R_RISCV_RELAX *ABS* + 2976: 00058593 mv a1,a1 2976: R_RISCV_PCREL_LO12_I .L0 + 2976: R_RISCV_RELAX *ABS* + 297a: a821 j 2992 <.L160> 297a: R_RISCV_RVC_JUMP .L297 + +000000000000297c <.L163>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2232 + if (np->np_iendx >= CONFIG_NSH_NESTDEPTH - 1) + 297c: 03277663 bgeu a4,s2,29a8 <.L164> 297c: R_RISCV_BRANCH .L164 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2234 + nsh_error(vtbl, g_fmtdeepnesting, "if"); + 2980: 741c ld a5,40(s0) + 2982: 00000617 auipc a2,0x0 2982: R_RISCV_PCREL_HI20 .LC12 + 2982: R_RISCV_RELAX *ABS* + 2986: 00060613 mv a2,a2 2986: R_RISCV_PCREL_LO12_I .L0 + 2986: R_RISCV_RELAX *ABS* + 298a: 00000597 auipc a1,0x0 298a: R_RISCV_PCREL_HI20 .LANCHOR14 + 298a: R_RISCV_RELAX *ABS* + 298e: 00058593 mv a1,a1 298e: R_RISCV_PCREL_LO12_I .L0 + 298e: R_RISCV_RELAX *ABS* + +0000000000002992 <.L160>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2329 + nsh_error(vtbl, g_fmtcontext, cmd); + 2992: 8522 mv a0,s0 + 2994: 9782 jalr a5 + +0000000000002996 <.LVL292>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2337 + np->np_iendx = 0; + 2996: 2b445783 lhu a5,692(s0) + 299a: 6711 lui a4,0x4 + 299c: 80070713 addi a4,a4,-2048 # 3800 <.LVL78+0x14> + 29a0: 8ff9 and a5,a5,a4 + 29a2: 2af41a23 sh a5,692(s0) + +00000000000029a6 <.LBE170>: +nsh_parse_command(): +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2584 + ret = nsh_saveresult(vtbl, true); + 29a6: bb91 j 26fa <.L302> 29a6: R_RISCV_RVC_JUMP .L302 + +00000000000029a8 <.L164>: +nsh_itef(): +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2240 + disabled = !nsh_cmdenabled(vtbl); + 29a8: 8522 mv a0,s0 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2241 + np->np_iendx++; + 29aa: 2905 addiw s2,s2,1 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2240 + disabled = !nsh_cmdenabled(vtbl); + 29ac: 00000097 auipc ra,0x0 29ac: R_RISCV_CALL nsh_cmdenabled + 29ac: R_RISCV_RELAX *ABS* + 29b0: 000080e7 jalr ra # 29ac <.L164+0x4> + +00000000000029b4 <.LVL295>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2241 + np->np_iendx++; + 29b4: 0ff97913 zext.b s2,s2 + 29b8: 2b240a23 sb s2,692(s0) +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2240 + disabled = !nsh_cmdenabled(vtbl); + 29bc: 00154793 xori a5,a0,1 + 29c0: 9922 add s2,s2,s0 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2244 + np->np_iestate[np->np_iendx].ie_ifcond = false; + 29c2: 2b594703 lbu a4,693(s2) + 29c6: 0017979b slliw a5,a5,0x1 + 29ca: 0407e793 ori a5,a5,64 + 29ce: 0029999b slliw s3,s3,0x2 + +00000000000029d2 <.LVL296>: + 29d2: 0137e7b3 or a5,a5,s3 + 29d6: fc77f793 andi a5,a5,-57 + 29da: 03877713 andi a4,a4,56 + 29de: 8fd9 or a5,a5,a4 + 29e0: 2af90aa3 sb a5,693(s2) + +00000000000029e4 <.L165>: +nsh_nice(): +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2357 + vtbl->np.np_nice = 0; + 29e4: 28042e23 sw zero,668(s0) +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2358 + if (cmd) + 29e8: e20482e3 beqz s1,280c <.L174> 29e8: R_RISCV_BRANCH .L174 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2362 + if (strcmp(cmd, "nice") == 0) + 29ec: 00000597 auipc a1,0x0 29ec: R_RISCV_PCREL_HI20 .LC17 + 29ec: R_RISCV_RELAX *ABS* + 29f0: 00058593 mv a1,a1 29f0: R_RISCV_PCREL_LO12_I .L0 + 29f0: R_RISCV_RELAX *ABS* + 29f4: 8526 mv a0,s1 + 29f6: 00000097 auipc ra,0x0 29f6: R_RISCV_CALL strcmp + 29f6: R_RISCV_RELAX *ABS* + 29fa: 000080e7 jalr ra # 29f6 <.L165+0x12> + +00000000000029fe <.LVL298>: + 29fe: 1e051163 bnez a0,2be0 <.L175> 29fe: R_RISCV_BRANCH .L175 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2368 + vtbl->np.np_nice = 10; + 2a02: 47a9 li a5,10 + 2a04: 28f42e23 sw a5,668(s0) +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2372 + cmd = nsh_argument(vtbl, saveptr, memlist, alist, NULL); + 2a08: 4701 li a4,0 + 2a0a: 1014 addi a3,sp,32 + +0000000000002a0c <.LVL299>: + 2a0c: 1130 addi a2,sp,168 + +0000000000002a0e <.LVL300>: + 2a0e: 082c addi a1,sp,24 + +0000000000002a10 <.LVL301>: + 2a10: 8522 mv a0,s0 + 2a12: 00000097 auipc ra,0x0 2a12: R_RISCV_CALL nsh_argument + 2a12: R_RISCV_RELAX *ABS* + 2a16: 000080e7 jalr ra # 2a12 <.LVL301+0x2> + +0000000000002a1a <.LVL302>: + 2a1a: 84aa mv s1,a0 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2373 + if (cmd && strcmp(cmd, "-d") == 0) + 2a1c: de0508e3 beqz a0,280c <.L174> 2a1c: R_RISCV_BRANCH .L174 + 2a20: 00000597 auipc a1,0x0 2a20: R_RISCV_PCREL_HI20 .LC18 + 2a20: R_RISCV_RELAX *ABS* + 2a24: 00058593 mv a1,a1 2a24: R_RISCV_PCREL_LO12_I .L0 + 2a24: R_RISCV_RELAX *ABS* + 2a28: 00000097 auipc ra,0x0 2a28: R_RISCV_CALL strcmp + 2a28: R_RISCV_RELAX *ABS* + 2a2c: 000080e7 jalr ra # 2a28 <.LVL302+0xe> + +0000000000002a30 <.LVL303>: + 2a30: 1a051863 bnez a0,2be0 <.L175> 2a30: R_RISCV_BRANCH .L175 + +0000000000002a34 <.LBB129>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2375 + FAR char *val = nsh_argument(vtbl, saveptr, memlist, alist, + 2a34: 4701 li a4,0 + 2a36: 1014 addi a3,sp,32 + +0000000000002a38 <.LVL304>: + 2a38: 1130 addi a2,sp,168 + +0000000000002a3a <.LVL305>: + 2a3a: 082c addi a1,sp,24 + +0000000000002a3c <.LVL306>: + 2a3c: 8522 mv a0,s0 + 2a3e: 00000097 auipc ra,0x0 2a3e: R_RISCV_CALL nsh_argument + 2a3e: R_RISCV_RELAX *ABS* + 2a42: 000080e7 jalr ra # 2a3e <.LVL306+0x2> + +0000000000002a46 <.LVL307>: + 2a46: 892a mv s2,a0 + +0000000000002a48 <.LVL308>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2377 + if (val) + 2a48: 18050c63 beqz a0,2be0 <.L175> 2a48: R_RISCV_BRANCH .L175 + +0000000000002a4c <.LBB127>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2380 + vtbl->np.np_nice = (int)strtol(val, &endptr, 0); + 2a4c: 4601 li a2,0 + 2a4e: 180c addi a1,sp,48 + 2a50: 00000097 auipc ra,0x0 2a50: R_RISCV_CALL strtol + 2a50: R_RISCV_RELAX *ABS* + 2a54: 000080e7 jalr ra # 2a50 <.LBB127+0x4> + +0000000000002a58 <.LVL309>: + 2a58: 28a42e23 sw a0,668(s0) +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2381 + if (vtbl->np.np_nice > 19 || vtbl->np.np_nice < -20 || + 2a5c: 02700793 li a5,39 + 2a60: 2551 addiw a0,a0,20 + 2a62: 00a7e963 bltu a5,a0,2a74 <.L176> 2a62: R_RISCV_BRANCH .L176 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2382 + endptr == val || *endptr != '\0') + 2a66: 77c2 ld a5,48(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2381 + if (vtbl->np.np_nice > 19 || vtbl->np.np_nice < -20 || + 2a68: 00f90663 beq s2,a5,2a74 <.L176> 2a68: R_RISCV_BRANCH .L176 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2382 + endptr == val || *endptr != '\0') + 2a6c: 0007c783 lbu a5,0(a5) + 2a70: 14078c63 beqz a5,2bc8 <.L177> 2a70: R_RISCV_BRANCH .L177 + +0000000000002a74 <.L176>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2384 + nsh_error(vtbl, g_fmtarginvalid, "nice"); + 2a74: 741c ld a5,40(s0) + 2a76: 00000617 auipc a2,0x0 2a76: R_RISCV_PCREL_HI20 .LC17 + 2a76: R_RISCV_RELAX *ABS* + 2a7a: 00060613 mv a2,a2 2a7a: R_RISCV_PCREL_LO12_I .L0 + 2a7a: R_RISCV_RELAX *ABS* + 2a7e: 00000597 auipc a1,0x0 2a7e: R_RISCV_PCREL_HI20 .LANCHOR12 + 2a7e: R_RISCV_RELAX *ABS* + 2a82: 00058593 mv a1,a1 2a82: R_RISCV_PCREL_LO12_I .L0 + 2a82: R_RISCV_RELAX *ABS* + 2a86: 8522 mv a0,s0 + 2a88: 9782 jalr a5 + +0000000000002a8a <.LVL310>: + 2a8a: b985 j 26fa <.L302> 2a8a: R_RISCV_RVC_JUMP .L302 + +0000000000002a8c <.L157>: +nsh_itef(): +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2250 + else if (strcmp(cmd, "then") == 0) + 2a8c: 00000597 auipc a1,0x0 2a8c: R_RISCV_PCREL_HI20 .LC14 + 2a8c: R_RISCV_RELAX *ABS* + 2a90: 00058593 mv a1,a1 2a90: R_RISCV_PCREL_LO12_I .L0 + 2a90: R_RISCV_RELAX *ABS* + 2a94: 8526 mv a0,s1 + 2a96: 00000097 auipc ra,0x0 2a96: R_RISCV_CALL strcmp + 2a96: R_RISCV_RELAX *ABS* + 2a9a: 000080e7 jalr ra # 2a96 <.L157+0xa> + +0000000000002a9e <.LVL312>: + 2a9e: e521 bnez a0,2ae6 <.L166> 2a9e: R_RISCV_RVC_BRANCH .L166 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2256 + *ppcmd = nsh_argument(vtbl, saveptr, memlist, alist, NULL); + 2aa0: 4701 li a4,0 + 2aa2: 1014 addi a3,sp,32 + +0000000000002aa4 <.LVL313>: + 2aa4: 1130 addi a2,sp,168 + +0000000000002aa6 <.LVL314>: + 2aa6: 082c addi a1,sp,24 + +0000000000002aa8 <.LVL315>: + 2aa8: 8522 mv a0,s0 + 2aaa: 00000097 auipc ra,0x0 2aaa: R_RISCV_CALL nsh_argument + 2aaa: R_RISCV_RELAX *ABS* + 2aae: 000080e7 jalr ra # 2aaa <.LVL315+0x2> + +0000000000002ab2 <.LVL316>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2260 + if (np->np_iestate[np->np_iendx].ie_state != NSH_ITEF_IF) + 2ab2: 2b444703 lbu a4,692(s0) + 2ab6: 4605 li a2,1 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2256 + *ppcmd = nsh_argument(vtbl, saveptr, memlist, alist, NULL); + 2ab8: 84aa mv s1,a0 + +0000000000002aba <.LVL317>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2260 + if (np->np_iestate[np->np_iendx].ie_state != NSH_ITEF_IF) + 2aba: 9722 add a4,a4,s0 + 2abc: 2b574783 lbu a5,693(a4) + 2ac0: 0067d69b srliw a3,a5,0x6 + 2ac4: 0ff6f693 zext.b a3,a3 + 2ac8: 00c68863 beq a3,a2,2ad8 <.L167> 2ac8: R_RISCV_BRANCH .L167 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2262 + nsh_error(vtbl, g_fmtcontext, "then"); + 2acc: 741c ld a5,40(s0) + 2ace: 00000617 auipc a2,0x0 2ace: R_RISCV_PCREL_HI20 .LC14 + 2ace: R_RISCV_RELAX *ABS* + 2ad2: 00060613 mv a2,a2 2ad2: R_RISCV_PCREL_LO12_I .L0 + 2ad2: R_RISCV_RELAX *ABS* + 2ad6: bd71 j 2972 <.L298> 2ad6: R_RISCV_RVC_JUMP .L298 + +0000000000002ad8 <.L167>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2266 + np->np_iestate[np->np_iendx].ie_state = NSH_ITEF_THEN; + 2ad8: 03f7f793 andi a5,a5,63 + 2adc: f807e793 ori a5,a5,-128 + 2ae0: 2af70aa3 sb a5,693(a4) + +0000000000002ae4 <.LVL318>: + 2ae4: b701 j 29e4 <.L165> 2ae4: R_RISCV_RVC_JUMP .L165 + +0000000000002ae6 <.L166>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2271 + else if (strcmp(cmd, "else") == 0) + 2ae6: 00000597 auipc a1,0x0 2ae6: R_RISCV_PCREL_HI20 .LC15 + 2ae6: R_RISCV_RELAX *ABS* + 2aea: 00058593 mv a1,a1 2aea: R_RISCV_PCREL_LO12_I .L0 + 2aea: R_RISCV_RELAX *ABS* + 2aee: 8526 mv a0,s1 + 2af0: 00000097 auipc ra,0x0 2af0: R_RISCV_CALL strcmp + 2af0: R_RISCV_RELAX *ABS* + 2af4: 000080e7 jalr ra # 2af0 <.L166+0xa> + +0000000000002af8 <.LVL320>: + 2af8: e131 bnez a0,2b3c <.L168> 2af8: R_RISCV_RVC_BRANCH .L168 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2277 + *ppcmd = nsh_argument(vtbl, saveptr, memlist, alist, NULL); + 2afa: 4701 li a4,0 + 2afc: 1014 addi a3,sp,32 + +0000000000002afe <.LVL321>: + 2afe: 1130 addi a2,sp,168 + +0000000000002b00 <.LVL322>: + 2b00: 082c addi a1,sp,24 + +0000000000002b02 <.LVL323>: + 2b02: 8522 mv a0,s0 + 2b04: 00000097 auipc ra,0x0 2b04: R_RISCV_CALL nsh_argument + 2b04: R_RISCV_RELAX *ABS* + 2b08: 000080e7 jalr ra # 2b04 <.LVL323+0x2> + +0000000000002b0c <.LVL324>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2281 + if (np->np_iestate[np->np_iendx].ie_state != NSH_ITEF_THEN) + 2b0c: 2b444783 lbu a5,692(s0) + 2b10: 4609 li a2,2 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2277 + *ppcmd = nsh_argument(vtbl, saveptr, memlist, alist, NULL); + 2b12: 84aa mv s1,a0 + +0000000000002b14 <.LVL325>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2281 + if (np->np_iestate[np->np_iendx].ie_state != NSH_ITEF_THEN) + 2b14: 97a2 add a5,a5,s0 + 2b16: 2b57c703 lbu a4,693(a5) + 2b1a: 0067569b srliw a3,a4,0x6 + 2b1e: 0ff6f693 zext.b a3,a3 + 2b22: 00c68863 beq a3,a2,2b32 <.L169> 2b22: R_RISCV_BRANCH .L169 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2283 + nsh_error(vtbl, g_fmtcontext, "else"); + 2b26: 741c ld a5,40(s0) + 2b28: 00000617 auipc a2,0x0 2b28: R_RISCV_PCREL_HI20 .LC15 + 2b28: R_RISCV_RELAX *ABS* + 2b2c: 00060613 mv a2,a2 2b2c: R_RISCV_PCREL_LO12_I .L0 + 2b2c: R_RISCV_RELAX *ABS* + 2b30: b589 j 2972 <.L298> 2b30: R_RISCV_RVC_JUMP .L298 + +0000000000002b32 <.L169>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2287 + np->np_iestate[np->np_iendx].ie_state = NSH_ITEF_ELSE; + 2b32: fc076713 ori a4,a4,-64 + 2b36: 2ae78aa3 sb a4,693(a5) + +0000000000002b3a <.LVL326>: + 2b3a: b56d j 29e4 <.L165> 2b3a: R_RISCV_RVC_JUMP .L165 + +0000000000002b3c <.L168>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2292 + else if (strcmp(cmd, "fi") == 0) + 2b3c: 00000597 auipc a1,0x0 2b3c: R_RISCV_PCREL_HI20 .LC16 + 2b3c: R_RISCV_RELAX *ABS* + 2b40: 00058593 mv a1,a1 2b40: R_RISCV_PCREL_LO12_I .L0 + 2b40: R_RISCV_RELAX *ABS* + 2b44: 8526 mv a0,s1 + 2b46: 00000097 auipc ra,0x0 2b46: R_RISCV_CALL strcmp + 2b46: R_RISCV_RELAX *ABS* + 2b4a: 000080e7 jalr ra # 2b46 <.L168+0xa> + +0000000000002b4e <.LVL328>: + 2b4e: 892a mv s2,a0 + 2b50: e125 bnez a0,2bb0 <.L170> 2b50: R_RISCV_RVC_BRANCH .L170 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2296 + *ppcmd = nsh_argument(vtbl, saveptr, memlist, alist, NULL); + 2b52: 4701 li a4,0 + 2b54: 1014 addi a3,sp,32 + +0000000000002b56 <.LVL329>: + 2b56: 1130 addi a2,sp,168 + +0000000000002b58 <.LVL330>: + 2b58: 082c addi a1,sp,24 + +0000000000002b5a <.LVL331>: + 2b5a: 8522 mv a0,s0 + 2b5c: 00000097 auipc ra,0x0 2b5c: R_RISCV_CALL nsh_argument + 2b5c: R_RISCV_RELAX *ABS* + 2b60: 000080e7 jalr ra # 2b5c <.LVL331+0x2> + +0000000000002b64 <.LVL332>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2297 + if (*ppcmd) + 2b64: c519 beqz a0,2b72 <.L171> 2b64: R_RISCV_RVC_BRANCH .L171 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2299 + nsh_error(vtbl, g_fmtarginvalid, "fi"); + 2b66: 741c ld a5,40(s0) + 2b68: 00000617 auipc a2,0x0 2b68: R_RISCV_PCREL_HI20 .LC16 + 2b68: R_RISCV_RELAX *ABS* + 2b6c: 00060613 mv a2,a2 2b6c: R_RISCV_PCREL_LO12_I .L0 + 2b6c: R_RISCV_RELAX *ABS* + 2b70: b12d j 279a <.L305> 2b70: R_RISCV_RVC_JUMP .L305 + +0000000000002b72 <.L171>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2305 + if (np->np_iestate[np->np_iendx].ie_state != NSH_ITEF_THEN && + 2b72: 2b444783 lbu a5,692(s0) + 2b76: 4685 li a3,1 + 2b78: 00f40733 add a4,s0,a5 + 2b7c: 2b574703 lbu a4,693(a4) + 2b80: 8319 srli a4,a4,0x6 + 2b82: 00e6e863 bltu a3,a4,2b92 <.L172> 2b82: R_RISCV_BRANCH .L172 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2308 + nsh_error(vtbl, g_fmtcontext, "fi"); + 2b86: 741c ld a5,40(s0) + 2b88: 00000617 auipc a2,0x0 2b88: R_RISCV_PCREL_HI20 .LC16 + 2b88: R_RISCV_RELAX *ABS* + 2b8c: 00060613 mv a2,a2 2b8c: R_RISCV_PCREL_LO12_I .L0 + 2b8c: R_RISCV_RELAX *ABS* + 2b90: b3cd j 2972 <.L298> 2b90: R_RISCV_RVC_JUMP .L298 + +0000000000002b92 <.L172>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2312 + if (np->np_iendx < 1) /* Shouldn't happen */ + 2b92: eb99 bnez a5,2ba8 <.L173> 2b92: R_RISCV_RVC_BRANCH .L173 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2314 + nsh_error(vtbl, g_fmtinternalerror, "if"); + 2b94: 741c ld a5,40(s0) + 2b96: 00000617 auipc a2,0x0 2b96: R_RISCV_PCREL_HI20 .LC12 + 2b96: R_RISCV_RELAX *ABS* + 2b9a: 00060613 mv a2,a2 2b9a: R_RISCV_PCREL_LO12_I .L0 + 2b9a: R_RISCV_RELAX *ABS* + 2b9e: 00000597 auipc a1,0x0 2b9e: R_RISCV_PCREL_HI20 .LANCHOR15 + 2b9e: R_RISCV_RELAX *ABS* + 2ba2: 00058593 mv a1,a1 2ba2: R_RISCV_PCREL_LO12_I .L0 + 2ba2: R_RISCV_RELAX *ABS* + 2ba6: b3f5 j 2992 <.L160> 2ba6: R_RISCV_RVC_JUMP .L297 + +0000000000002ba8 <.L173>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2320 + np->np_iendx--; + 2ba8: 37fd addiw a5,a5,-1 + 2baa: 2af40a23 sb a5,692(s0) + 2bae: bb35 j 28ea <.L303> 2bae: R_RISCV_RVC_JUMP .L303 + +0000000000002bb0 <.L170>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2327 + else if (np->np_iestate[np->np_iendx].ie_state == NSH_ITEF_IF) + 2bb0: 2b444783 lbu a5,692(s0) + 2bb4: 4705 li a4,1 + 2bb6: 97a2 add a5,a5,s0 + 2bb8: 2b57c783 lbu a5,693(a5) + 2bbc: 8399 srli a5,a5,0x6 + 2bbe: e2e793e3 bne a5,a4,29e4 <.L165> 2bbe: R_RISCV_BRANCH .L165 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2329 + nsh_error(vtbl, g_fmtcontext, cmd); + 2bc2: 741c ld a5,40(s0) + 2bc4: 8626 mv a2,s1 + 2bc6: b375 j 2972 <.L298> 2bc6: R_RISCV_RVC_JUMP .L298 + +0000000000002bc8 <.L177>: +nsh_nice(): +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2388 + cmd = nsh_argument(vtbl, saveptr, memlist, alist, NULL); + 2bc8: 4701 li a4,0 + 2bca: 1014 addi a3,sp,32 + +0000000000002bcc <.LVL335>: + 2bcc: 1130 addi a2,sp,168 + +0000000000002bce <.LVL336>: + 2bce: 082c addi a1,sp,24 + +0000000000002bd0 <.LVL337>: + 2bd0: 8522 mv a0,s0 + 2bd2: 00000097 auipc ra,0x0 2bd2: R_RISCV_CALL nsh_argument + 2bd2: R_RISCV_RELAX *ABS* + 2bd6: 000080e7 jalr ra # 2bd2 <.LVL337+0x2> + +0000000000002bda <.LVL338>: + 2bda: 84aa mv s1,a0 + +0000000000002bdc <.LBE128>: +nsh_parse_command(): +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2606 + if (!cmd || !nsh_cmdenabled(vtbl)) + 2bdc: c20508e3 beqz a0,280c <.L174> 2bdc: R_RISCV_BRANCH .L174 + +0000000000002be0 <.L175>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2606 (discriminator 1) + 2be0: 8522 mv a0,s0 + 2be2: 00000097 auipc ra,0x0 2be2: R_RISCV_CALL nsh_cmdenabled + 2be2: R_RISCV_RELAX *ABS* + 2be6: 000080e7 jalr ra # 2be2 <.L175+0x2> + +0000000000002bea <.LVL341>: + 2bea: c20501e3 beqz a0,280c <.L174> 2bea: R_RISCV_BRANCH .L174 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2634 + * argv[argc]: NULL terminating pointer + * + * Maximum size is CONFIG_NSH_MAXARGUMENTS+5 + */ + + argv[0] = cmd; + 2bee: e4a6 sd s1,72(sp) + +0000000000002bf0 <.LVL342>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2635 + for (argc = 1; argc < MAX_ARGV_ENTRIES - 1; argc++) + 2bf0: 4905 li s2,1 + +0000000000002bf2 <.LBB175>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2654 + { + FAR char *pbegin = argv[argc]; + + /* Find the end of the current token */ + + for (; *pbegin && !strchr(g_token_separator, *pbegin); + 2bf2: 00000b17 auipc s6,0x0 2bf2: R_RISCV_PCREL_HI20 .LANCHOR7 + 2bf2: R_RISCV_RELAX *ABS* + 2bf6: 000b0b13 mv s6,s6 2bf6: R_RISCV_PCREL_LO12_I .L0 + 2bf6: R_RISCV_RELAX *ABS* + +0000000000002bfa <.LBE176>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2648 + while (argc < MAX_ARGV_ENTRIES - 1) + 2bfa: 4bad li s7,11 + +0000000000002bfc <.LBE175>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2635 + for (argc = 1; argc < MAX_ARGV_ENTRIES - 1; argc++) + 2bfc: 4c29 li s8,10 + +0000000000002bfe <.L185>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2639 + argv[argc] = nsh_argument(vtbl, &saveptr, &memlist, NULL, &isenvvar); + 2bfe: 1818 addi a4,sp,48 + 2c00: 4681 li a3,0 + 2c02: 1130 addi a2,sp,168 + 2c04: 082c addi a1,sp,24 + 2c06: 8522 mv a0,s0 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2637 + int isenvvar = 0; /* flag for if an environment variable gets expanded */ + 2c08: d802 sw zero,48(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2639 + argv[argc] = nsh_argument(vtbl, &saveptr, &memlist, NULL, &isenvvar); + 2c0a: 00000097 auipc ra,0x0 2c0a: R_RISCV_CALL nsh_argument + 2c0a: R_RISCV_RELAX *ABS* + 2c0e: 000080e7 jalr ra # 2c0a <.L185+0xc> + +0000000000002c12 <.LVL344>: + 2c12: 00391793 slli a5,s2,0x3 + 2c16: 1a18 addi a4,sp,304 + 2c18: 973e add a4,a4,a5 + 2c1a: f0a73c23 sd a0,-232(a4) + 2c1e: 89aa mv s3,a0 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2641 + if (!argv[argc]) + 2c20: 14050c63 beqz a0,2d78 <.L178> 2c20: R_RISCV_BRANCH .L178 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2646 + if (isenvvar != 0) + 2c24: 5742 lw a4,48(sp) + 2c26: c731 beqz a4,2c72 <.L179> 2c26: R_RISCV_RVC_BRANCH .L179 + 2c28: 00b8 addi a4,sp,72 + 2c2a: 00f709b3 add s3,a4,a5 + +0000000000002c2e <.L184>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2650 + FAR char *pbegin = argv[argc]; + 2c2e: 0009ba83 ld s5,0(s3) + +0000000000002c32 <.L180>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2654 + for (; *pbegin && !strchr(g_token_separator, *pbegin); + 2c32: 000ac583 lbu a1,0(s5) + 2c36: cd95 beqz a1,2c72 <.L179> 2c36: R_RISCV_RVC_BRANCH .L179 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2654 (discriminator 1) + 2c38: 855a mv a0,s6 + 2c3a: 00000097 auipc ra,0x0 2c3a: R_RISCV_CALL strchr + 2c3a: R_RISCV_RELAX *ABS* + 2c3e: 000080e7 jalr ra # 2c3a <.L180+0x8> + +0000000000002c42 <.LVL347>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2655 (discriminator 1) + pbegin++) + 2c42: 001a8a13 addi s4,s5,1 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2654 (discriminator 1) + for (; *pbegin && !strchr(g_token_separator, *pbegin); + 2c46: c509 beqz a0,2c50 <.L224> 2c46: R_RISCV_RVC_BRANCH .L224 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2670 + break; + } + + /* Terminate the token to complete the argv variable */ + + *pbegin = '\0'; + 2c48: 000a8023 sb zero,0(s5) +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2674 + + /* We've inserted an extra parameter, so bump the count */ + + argc++; + 2c4c: 2905 addiw s2,s2,1 + +0000000000002c4e <.LVL348>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2682 + + pbegin++; + + /* Throw away any extra separator chars between tokens */ + + for (; *pbegin && strchr(g_token_separator, *pbegin) != NULL; + 2c4e: a021 j 2c56 <.L220> 2c4e: R_RISCV_RVC_JUMP .L220 + +0000000000002c50 <.L224>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2655 + pbegin++) + 2c50: 8ad2 mv s5,s4 + 2c52: b7c5 j 2c32 <.L180> 2c52: R_RISCV_RVC_JUMP .L180 + +0000000000002c54 <.L183>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2683 + pbegin++) + 2c54: 0a05 addi s4,s4,1 + +0000000000002c56 <.L220>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2682 + for (; *pbegin && strchr(g_token_separator, *pbegin) != NULL; + 2c56: 000a4583 lbu a1,0(s4) + 2c5a: c599 beqz a1,2c68 <.L182> 2c5a: R_RISCV_RVC_BRANCH .L182 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2682 (discriminator 1) + 2c5c: 855a mv a0,s6 + 2c5e: 00000097 auipc ra,0x0 2c5e: R_RISCV_CALL strchr + 2c5e: R_RISCV_RELAX *ABS* + 2c62: 000080e7 jalr ra # 2c5e <.L220+0x8> + +0000000000002c66 <.LVL352>: + 2c66: f57d bnez a0,2c54 <.L183> 2c66: R_RISCV_RVC_BRANCH .L183 + +0000000000002c68 <.L182>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2689 + { + } + + /* Prepare to loop again on the next argument token */ + + argv[argc] = pbegin; + 2c68: 0149b423 sd s4,8(s3) + +0000000000002c6c <.LBE177>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2648 + while (argc < MAX_ARGV_ENTRIES - 1) + 2c6c: 09a1 addi s3,s3,8 + 2c6e: fd7910e3 bne s2,s7,2c2e <.L184> 2c6e: R_RISCV_BRANCH .L184 + +0000000000002c72 <.L179>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2635 + for (argc = 1; argc < MAX_ARGV_ENTRIES - 1; argc++) + 2c72: 2905 addiw s2,s2,1 + +0000000000002c74 <.LVL354>: + 2c74: f92c55e3 bge s8,s2,2bfe <.L185> 2c74: R_RISCV_BRANCH .L185 + +0000000000002c78 <.L186>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2697 (discriminator 1) + } + + /* Check if the command should run in background */ + +#ifndef CONFIG_NSH_DISABLEBG + if (argc > 1 && strcmp(argv[argc - 1], "&") == 0) + 2c78: fff9099b addiw s3,s2,-1 + 2c7c: 00399793 slli a5,s3,0x3 + 2c80: 1a18 addi a4,sp,304 + 2c82: 97ba add a5,a5,a4 + 2c84: f187b503 ld a0,-232(a5) + 2c88: 00000597 auipc a1,0x0 2c88: R_RISCV_PCREL_HI20 .LC19 + 2c88: R_RISCV_RELAX *ABS* + 2c8c: 00058593 mv a1,a1 2c8c: R_RISCV_PCREL_LO12_I .L0 + 2c8c: R_RISCV_RELAX *ABS* + 2c90: 00000097 auipc ra,0x0 2c90: R_RISCV_CALL strcmp + 2c90: R_RISCV_RELAX *ABS* + 2c94: 000080e7 jalr ra # 2c90 <.L186+0x18> + +0000000000002c98 <.LVL355>: + 2c98: e509 bnez a0,2ca2 <.L188> 2c98: R_RISCV_RVC_BRANCH .L188 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2699 + { + vtbl->np.np_bg = true; + 2c9a: 4785 li a5,1 + 2c9c: 28f40c23 sb a5,664(s0) + +0000000000002ca0 <.LVL356>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2700 + argc--; + 2ca0: 894e mv s2,s3 + +0000000000002ca2 <.L188>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2706 + } +#endif + + /* Check if the output was re-directed using > or >> */ + + if (argc > 2) + 2ca2: 4789 li a5,2 + 2ca4: 1127de63 bge a5,s2,2dc0 <.L227> 2ca4: R_RISCV_BRANCH .L227 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2710 + { + /* Check for redirection to a new file */ + + if (strcmp(argv[argc - 2], g_redirect1) == 0) + 2ca8: ffe90a1b addiw s4,s2,-2 + 2cac: 003a1793 slli a5,s4,0x3 + 2cb0: 1a18 addi a4,sp,304 + 2cb2: 97ba add a5,a5,a4 + 2cb4: f187b983 ld s3,-232(a5) + 2cb8: 00000597 auipc a1,0x0 2cb8: R_RISCV_PCREL_HI20 .LANCHOR5 + 2cb8: R_RISCV_RELAX *ABS* + 2cbc: 00058593 mv a1,a1 2cbc: R_RISCV_PCREL_LO12_I .L0 + 2cbc: R_RISCV_RELAX *ABS* + 2cc0: 854e mv a0,s3 + 2cc2: 00000097 auipc ra,0x0 2cc2: R_RISCV_CALL strcmp + 2cc2: R_RISCV_RELAX *ABS* + 2cc6: 000080e7 jalr ra # 2cc2 <.L188+0x20> + +0000000000002cca <.LVL358>: + 2cca: ed4d bnez a0,2d84 <.L189> 2cca: R_RISCV_RVC_BRANCH .L189 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2713 + { + redirect_save = vtbl->np.np_redirect; + vtbl->np.np_redirect = true; + 2ccc: 4785 li a5,1 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2715 + oflags = O_WRONLY | O_CREAT | O_TRUNC; + redirfile = nsh_getfullpath(vtbl, argv[argc - 1]); + 2cce: 397d addiw s2,s2,-1 + +0000000000002cd0 <.LVL359>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2712 + redirect_save = vtbl->np.np_redirect; + 2cd0: 29944a83 lbu s5,665(s0) + +0000000000002cd4 <.LVL360>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2715 + redirfile = nsh_getfullpath(vtbl, argv[argc - 1]); + 2cd4: 090e slli s2,s2,0x3 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2713 + vtbl->np.np_redirect = true; + 2cd6: 28f40ca3 sb a5,665(s0) + +0000000000002cda <.LVL361>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2715 + redirfile = nsh_getfullpath(vtbl, argv[argc - 1]); + 2cda: 1a1c addi a5,sp,304 + 2cdc: 993e add s2,s2,a5 + 2cde: f1893583 ld a1,-232(s2) + 2ce2: 8522 mv a0,s0 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2716 + argc -= 2; + 2ce4: 8952 mv s2,s4 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2715 + redirfile = nsh_getfullpath(vtbl, argv[argc - 1]); + 2ce6: 00000097 auipc ra,0x0 2ce6: R_RISCV_CALL nsh_getfullpath + 2ce6: R_RISCV_RELAX *ABS* + 2cea: 000080e7 jalr ra # 2ce6 <.LVL361+0xc> + +0000000000002cee <.LVL362>: + 2cee: 89aa mv s3,a0 + +0000000000002cf0 <.LVL363>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2714 + oflags = O_WRONLY | O_CREAT | O_TRUNC; + 2cf0: 02600a13 li s4,38 + +0000000000002cf4 <.L187>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2733 + } + } + + /* Last argument vector must be empty */ + + argv[argc] = NULL; + 2cf4: 00391793 slli a5,s2,0x3 + 2cf8: 1a18 addi a4,sp,304 + 2cfa: 97ba add a5,a5,a4 + 2cfc: f007bc23 sd zero,-232(a5) +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2737 + + /* Check if the maximum number of arguments was exceeded */ + + if (argc > CONFIG_NSH_MAXARGUMENTS) + 2d00: 479d li a5,7 + 2d02: 0127da63 bge a5,s2,2d16 <.L190> 2d02: R_RISCV_BRANCH .L190 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2739 + { + nsh_error(vtbl, g_fmttoomanyargs, cmd); + 2d06: 741c ld a5,40(s0) + 2d08: 8626 mv a2,s1 + 2d0a: 00000597 auipc a1,0x0 2d0a: R_RISCV_PCREL_HI20 .LANCHOR17 + 2d0a: R_RISCV_RELAX *ABS* + 2d0e: 00058593 mv a1,a1 2d0e: R_RISCV_PCREL_LO12_I .L0 + 2d0e: R_RISCV_RELAX *ABS* + 2d12: 8522 mv a0,s0 + 2d14: 9782 jalr a5 + +0000000000002d16 <.L190>: +nsh_execute(): +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:678 + ret = nsh_fileapp(vtbl, argv[0], argv, redirfile, oflags); + 2d16: 65a6 ld a1,72(sp) + 2d18: 8752 mv a4,s4 + 2d1a: 86ce mv a3,s3 + 2d1c: 00b0 addi a2,sp,72 + +0000000000002d1e <.LVL366>: + 2d1e: 8522 mv a0,s0 + 2d20: 00000097 auipc ra,0x0 2d20: R_RISCV_CALL nsh_fileapp + 2d20: R_RISCV_RELAX *ABS* + 2d24: 000080e7 jalr ra # 2d20 <.LVL366+0x2> + +0000000000002d28 <.LVL367>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:688 + return nsh_saveresult(vtbl, ret != OK); + 2d28: 00a035b3 snez a1,a0 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:679 + if (ret >= 0) + 2d2c: 1e055563 bgez a0,2f16 <.L301> 2d2c: R_RISCV_BRANCH .L301 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:699 + if (vtbl->np.np_redirect) + 2d30: 29944783 lbu a5,665(s0) +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:603 + int fd = -1; + 2d34: 5b7d li s6,-1 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:699 + if (vtbl->np.np_redirect) + 2d36: cbc9 beqz a5,2dc8 <.L193> 2d36: R_RISCV_RVC_BRANCH .L193 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:707 + fd = open(redirfile, oflags, 0666); + 2d38: 1b600613 li a2,438 + 2d3c: 85d2 mv a1,s4 + 2d3e: 854e mv a0,s3 + +0000000000002d40 <.LVL368>: + 2d40: 00000097 auipc ra,0x0 2d40: R_RISCV_CALL open + 2d40: R_RISCV_RELAX *ABS* + 2d44: 000080e7 jalr ra # 2d40 <.LVL368> + +0000000000002d48 <.LVL369>: + 2d48: 8b2a mv s6,a0 + +0000000000002d4a <.LVL370>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:708 + if (fd < 0) + 2d4a: 06055f63 bgez a0,2dc8 <.L193> 2d4a: R_RISCV_BRANCH .L193 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:710 + nsh_error(vtbl, g_fmtcmdfailed, argv[0], "open", NSH_ERRNO); + 2d4e: 6626 ld a2,72(sp) + 2d50: 7404 ld s1,40(s0) + 2d52: e432 sd a2,8(sp) + 2d54: 00000097 auipc ra,0x0 2d54: R_RISCV_CALL __errno + 2d54: R_RISCV_RELAX *ABS* + 2d58: 000080e7 jalr ra # 2d54 <.LVL370+0xa> + +0000000000002d5c <.LVL371>: + 2d5c: 4118 lw a4,0(a0) + 2d5e: 6622 ld a2,8(sp) + 2d60: 00000697 auipc a3,0x0 2d60: R_RISCV_PCREL_HI20 .LC20 + 2d60: R_RISCV_RELAX *ABS* + 2d64: 00068693 mv a3,a3 2d64: R_RISCV_PCREL_LO12_I .L0 + 2d64: R_RISCV_RELAX *ABS* + 2d68: 00000597 auipc a1,0x0 2d68: R_RISCV_PCREL_HI20 .LANCHOR16 + 2d68: R_RISCV_RELAX *ABS* + 2d6c: 00058593 mv a1,a1 2d6c: R_RISCV_PCREL_LO12_I .L0 + 2d6c: R_RISCV_RELAX *ABS* + 2d70: 8522 mv a0,s0 + 2d72: 9482 jalr s1 + +0000000000002d74 <.L194>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:881 + return nsh_saveresult(vtbl, true); + 2d74: 4585 li a1,1 + 2d76: a245 j 2f16 <.L301> 2d76: R_RISCV_RVC_JUMP .L301 + +0000000000002d78 <.L178>: +nsh_parse_command(): +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2697 + if (argc > 1 && strcmp(argv[argc - 1], "&") == 0) + 2d78: 4785 li a5,1 + 2d7a: eef91fe3 bne s2,a5,2c78 <.L186> 2d7a: R_RISCV_BRANCH .L186 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2549 + bool redirect_save = false; + 2d7e: 4a81 li s5,0 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2546 + int oflags = 0; + 2d80: 4a01 li s4,0 + 2d82: bf8d j 2cf4 <.L187> 2d82: R_RISCV_RVC_JUMP .L187 + +0000000000002d84 <.L189>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2721 + else if (strcmp(argv[argc - 2], g_redirect2) == 0) + 2d84: 00000597 auipc a1,0x0 2d84: R_RISCV_PCREL_HI20 .LANCHOR6 + 2d84: R_RISCV_RELAX *ABS* + 2d88: 00058593 mv a1,a1 2d88: R_RISCV_PCREL_LO12_I .L0 + 2d88: R_RISCV_RELAX *ABS* + 2d8c: 854e mv a0,s3 + 2d8e: 00000097 auipc ra,0x0 2d8e: R_RISCV_CALL strcmp + 2d8e: R_RISCV_RELAX *ABS* + 2d92: 000080e7 jalr ra # 2d8e <.L189+0xa> + +0000000000002d96 <.LVL374>: + 2d96: e50d bnez a0,2dc0 <.L227> 2d96: R_RISCV_RVC_BRANCH .L227 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2724 + vtbl->np.np_redirect = true; + 2d98: 4785 li a5,1 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2726 + redirfile = nsh_getfullpath(vtbl, argv[argc - 1]); + 2d9a: 397d addiw s2,s2,-1 + +0000000000002d9c <.LVL375>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2723 + redirect_save = vtbl->np.np_redirect; + 2d9c: 29944a83 lbu s5,665(s0) + +0000000000002da0 <.LVL376>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2726 + redirfile = nsh_getfullpath(vtbl, argv[argc - 1]); + 2da0: 090e slli s2,s2,0x3 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2724 + vtbl->np.np_redirect = true; + 2da2: 28f40ca3 sb a5,665(s0) + +0000000000002da6 <.LVL377>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2726 + redirfile = nsh_getfullpath(vtbl, argv[argc - 1]); + 2da6: 1a1c addi a5,sp,304 + 2da8: 993e add s2,s2,a5 + 2daa: f1893583 ld a1,-232(s2) + 2dae: 8522 mv a0,s0 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2727 + argc -= 2; + 2db0: 8952 mv s2,s4 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2726 + redirfile = nsh_getfullpath(vtbl, argv[argc - 1]); + 2db2: 00000097 auipc ra,0x0 2db2: R_RISCV_CALL nsh_getfullpath + 2db2: R_RISCV_RELAX *ABS* + 2db6: 000080e7 jalr ra # 2db2 <.LVL377+0xc> + +0000000000002dba <.LVL378>: + 2dba: 89aa mv s3,a0 + +0000000000002dbc <.LVL379>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2725 + oflags = O_WRONLY | O_CREAT | O_APPEND; + 2dbc: 4a59 li s4,22 + 2dbe: bf1d j 2cf4 <.L187> 2dbe: R_RISCV_RVC_JUMP .L187 + +0000000000002dc0 <.L227>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2549 + bool redirect_save = false; + 2dc0: 4a81 li s5,0 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2546 + int oflags = 0; + 2dc2: 4a01 li s4,0 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2545 + FAR char *redirfile = NULL; + 2dc4: 4981 li s3,0 + 2dc6: b73d j 2cf4 <.L187> 2dc6: R_RISCV_RVC_JUMP .L187 + +0000000000002dc8 <.L193>: +nsh_execute(): +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:721 + if (vtbl->np.np_bg) + 2dc8: 29844783 lbu a5,664(s0) + 2dcc: 16078563 beqz a5,2f36 <.L195> 2dcc: R_RISCV_BRANCH .L195 + +0000000000002dd0 <.LBB162>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:734 + bkgvtbl = nsh_clone(vtbl); + 2dd0: 601c ld a5,0(s0) + 2dd2: 8522 mv a0,s0 + 2dd4: 9782 jalr a5 + +0000000000002dd6 <.LVL382>: + 2dd6: 84aa mv s1,a0 + +0000000000002dd8 <.LVL383>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:735 + if (!bkgvtbl) + 2dd8: 1e050f63 beqz a0,2fd6 <.L196> 2dd8: R_RISCV_BRANCH .L196 + +0000000000002ddc <.LBB156>: +nsh_cloneargs(): +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:513 + struct cmdarg_s *ret = (struct cmdarg_s *)zalloc(sizeof(struct cmdarg_s)); + 2ddc: 07000513 li a0,112 + 2de0: 00000097 auipc ra,0x0 2de0: R_RISCV_CALL zalloc + 2de0: R_RISCV_RELAX *ABS* + 2de4: 000080e7 jalr ra # 2de0 <.LBB156+0x4> + +0000000000002de8 <.LVL385>: + 2de8: 8a2a mv s4,a0 + +0000000000002dea <.LVL386>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:516 + if (ret) + 2dea: 1e050363 beqz a0,2fd0 <.L197> 2dea: R_RISCV_BRANCH .L197 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:518 + ret->vtbl = vtbl; + 2dee: e104 sd s1,0(a0) +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:519 + ret->fd = fd; + 2df0: 01652423 sw s6,8(a0) +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:520 + ret->argc = argc; + 2df4: 01252623 sw s2,12(a0) + +0000000000002df8 <.LVL387>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:522 + for (i = 0; i < argc; i++) + 2df8: 04810c93 addi s9,sp,72 + +0000000000002dfc <.LVL388>: + 2dfc: 01050c13 addi s8,a0,16 + 2e00: 4b81 li s7,0 + +0000000000002e02 <.L198>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:524 + ret->argv[i] = strdup(argv[i]); + 2e02: 000cb503 ld a0,0(s9) +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:522 + for (i = 0; i < argc; i++) + 2e06: 2b85 addiw s7,s7,1 + +0000000000002e08 <.LVL390>: + 2e08: 0ca1 addi s9,s9,8 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:524 + ret->argv[i] = strdup(argv[i]); + 2e0a: 00000097 auipc ra,0x0 2e0a: R_RISCV_CALL strdup + 2e0a: R_RISCV_RELAX *ABS* + 2e0e: 000080e7 jalr ra # 2e0a <.LVL390+0x2> + +0000000000002e12 <.LVL391>: + 2e12: 00ac3023 sd a0,0(s8) +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:522 + for (i = 0; i < argc; i++) + 2e16: 0c21 addi s8,s8,8 + 2e18: ff7915e3 bne s2,s7,2e02 <.L198> 2e18: R_RISCV_BRANCH .L198 + +0000000000002e1c <.LBE156>: +nsh_execute(): +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:751 + if (vtbl->np.np_redirect) + 2e1c: 29944783 lbu a5,665(s0) + 2e20: c791 beqz a5,2e2c <.L219> 2e20: R_RISCV_RVC_BRANCH .L219 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:753 + nsh_redirect(bkgvtbl, fd, NULL); + 2e22: 60bc ld a5,64(s1) + 2e24: 4601 li a2,0 + 2e26: 85da mv a1,s6 + 2e28: 8526 mv a0,s1 + 2e2a: 9782 jalr a5 + +0000000000002e2c <.L219>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:758 + ret = sched_getparam(0, ¶m); + 2e2c: 080c addi a1,sp,16 + 2e2e: 4501 li a0,0 + 2e30: 00000097 auipc ra,0x0 2e30: R_RISCV_CALL sched_getparam + 2e30: R_RISCV_RELAX *ABS* + 2e34: 000080e7 jalr ra # 2e30 <.L219+0x4> + +0000000000002e38 <.LVL394>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:759 + if (ret != 0) + 2e38: c915 beqz a0,2e6c <.L200> 2e38: R_RISCV_RVC_BRANCH .L200 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:761 + nsh_error(vtbl, g_fmtcmdfailed, argv[0], "sched_getparm", + 2e3a: 6626 ld a2,72(sp) + 2e3c: 7404 ld s1,40(s0) + +0000000000002e3e <.LVL395>: + 2e3e: e432 sd a2,8(sp) + 2e40: 00000097 auipc ra,0x0 2e40: R_RISCV_CALL __errno + 2e40: R_RISCV_RELAX *ABS* + 2e44: 000080e7 jalr ra # 2e40 <.LVL395+0x2> + +0000000000002e48 <.LVL396>: + 2e48: 4118 lw a4,0(a0) + 2e4a: 6622 ld a2,8(sp) + 2e4c: 00000697 auipc a3,0x0 2e4c: R_RISCV_PCREL_HI20 .LC21 + 2e4c: R_RISCV_RELAX *ABS* + 2e50: 00068693 mv a3,a3 2e50: R_RISCV_PCREL_LO12_I .L0 + 2e50: R_RISCV_RELAX *ABS* + 2e54: 00000597 auipc a1,0x0 2e54: R_RISCV_PCREL_HI20 .LANCHOR16 + 2e54: R_RISCV_RELAX *ABS* + 2e58: 00058593 mv a1,a1 2e58: R_RISCV_PCREL_LO12_I .L0 + 2e58: R_RISCV_RELAX *ABS* + 2e5c: 8522 mv a0,s0 + 2e5e: 9482 jalr s1 + +0000000000002e60 <.L300>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:813 + nsh_releaseargs(args); + 2e60: 8552 mv a0,s4 + 2e62: 00000097 auipc ra,0x0 2e62: R_RISCV_CALL nsh_releaseargs + 2e62: R_RISCV_RELAX *ABS* + 2e66: 000080e7 jalr ra # 2e62 <.L300+0x2> + +0000000000002e6a <.LVL398>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:814 + goto errout; + 2e6a: b729 j 2d74 <.L194> 2e6a: R_RISCV_RVC_JUMP .L194 + +0000000000002e6c <.L200>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:772 + if (vtbl->np.np_nice != 0) + 2e6c: 29c42783 lw a5,668(s0) + 2e70: cb85 beqz a5,2ea0 <.L202> 2e70: R_RISCV_RVC_BRANCH .L202 + +0000000000002e72 <.LBB157>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:774 + int priority = param.sched_priority - vtbl->np.np_nice; + 2e72: 44c2 lw s1,16(sp) + +0000000000002e74 <.LBB158>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:777 + int max_priority = sched_get_priority_max(SCHED_NSH); + 2e74: 4509 li a0,2 + +0000000000002e76 <.LBE158>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:774 + int priority = param.sched_priority - vtbl->np.np_nice; + 2e76: 40f4893b subw s2,s1,a5 + +0000000000002e7a <.LVL402>: + 2e7a: 84ca mv s1,s2 + +0000000000002e7c <.LVL403>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:775 + if (vtbl->np.np_nice < 0) + 2e7c: 0007db63 bgez a5,2e92 <.L203> 2e7c: R_RISCV_BRANCH .L203 + +0000000000002e80 <.LBB159>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:777 + int max_priority = sched_get_priority_max(SCHED_NSH); + 2e80: 00000097 auipc ra,0x0 2e80: R_RISCV_CALL sched_get_priority_max + 2e80: R_RISCV_RELAX *ABS* + 2e84: 000080e7 jalr ra # 2e80 <.LBB159> + +0000000000002e88 <.LVL404>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:778 + if (priority > max_priority) + 2e88: 01255b63 bge a0,s2,2e9e <.L205> 2e88: R_RISCV_BRANCH .L205 + +0000000000002e8c <.L299>: + 2e8c: 0005049b sext.w s1,a0 + 2e90: a039 j 2e9e <.L205> 2e90: R_RISCV_RVC_JUMP .L205 + +0000000000002e92 <.L203>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:785 + int min_priority = sched_get_priority_min(SCHED_NSH); + 2e92: 00000097 auipc ra,0x0 2e92: R_RISCV_CALL sched_get_priority_min + 2e92: R_RISCV_RELAX *ABS* + 2e96: 000080e7 jalr ra # 2e92 <.L203> + +0000000000002e9a <.LVL406>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:786 + if (priority < min_priority) + 2e9a: fea949e3 blt s2,a0,2e8c <.L299> 2e9a: R_RISCV_BRANCH .L299 + +0000000000002e9e <.L205>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:792 + param.sched_priority = priority; + 2e9e: c826 sw s1,16(sp) + +0000000000002ea0 <.L202>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:797 + pthread_attr_init(&attr); + 2ea0: 1808 addi a0,sp,48 + 2ea2: 00000097 auipc ra,0x0 2ea2: R_RISCV_CALL pthread_attr_init + 2ea2: R_RISCV_RELAX *ABS* + 2ea6: 000080e7 jalr ra # 2ea2 <.L202+0x2> + +0000000000002eaa <.LVL409>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:798 + pthread_attr_setschedpolicy(&attr, SCHED_NSH); + 2eaa: 4589 li a1,2 + 2eac: 1808 addi a0,sp,48 + 2eae: 00000097 auipc ra,0x0 2eae: R_RISCV_CALL pthread_attr_setschedpolicy + 2eae: R_RISCV_RELAX *ABS* + 2eb2: 000080e7 jalr ra # 2eae <.LVL409+0x4> + +0000000000002eb6 <.LVL410>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:799 + pthread_attr_setschedparam(&attr, ¶m); + 2eb6: 080c addi a1,sp,16 + 2eb8: 1808 addi a0,sp,48 + 2eba: 00000097 auipc ra,0x0 2eba: R_RISCV_CALL pthread_attr_setschedparam + 2eba: R_RISCV_RELAX *ABS* + 2ebe: 000080e7 jalr ra # 2eba <.LVL410+0x4> + +0000000000002ec2 <.LVL411>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:805 + ret = pthread_create(&thread, &attr, nsh_child, (pthread_addr_t)args); + 2ec2: 86d2 mv a3,s4 + 2ec4: 00000617 auipc a2,0x0 2ec4: R_RISCV_PCREL_HI20 nsh_child + 2ec4: R_RISCV_RELAX *ABS* + 2ec8: 00060613 mv a2,a2 2ec8: R_RISCV_PCREL_LO12_I .L0 + 2ec8: R_RISCV_RELAX *ABS* + 2ecc: 180c addi a1,sp,48 + 2ece: 0848 addi a0,sp,20 + 2ed0: 00000097 auipc ra,0x0 2ed0: R_RISCV_CALL pthread_create + 2ed0: R_RISCV_RELAX *ABS* + 2ed4: 000080e7 jalr ra # 2ed0 <.LVL411+0xe> + +0000000000002ed8 <.LVL412>: + 2ed8: 872a mv a4,a0 + +0000000000002eda <.LVL413>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:806 + if (ret != 0) + 2eda: cd11 beqz a0,2ef6 <.L207> 2eda: R_RISCV_RVC_BRANCH .L207 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:808 + nsh_error(vtbl, g_fmtcmdfailed, argv[0], "pthread_create", + 2edc: 741c ld a5,40(s0) + 2ede: 6626 ld a2,72(sp) + 2ee0: 00000697 auipc a3,0x0 2ee0: R_RISCV_PCREL_HI20 .LC22 + 2ee0: R_RISCV_RELAX *ABS* + 2ee4: 00068693 mv a3,a3 2ee4: R_RISCV_PCREL_LO12_I .L0 + 2ee4: R_RISCV_RELAX *ABS* + 2ee8: 00000597 auipc a1,0x0 2ee8: R_RISCV_PCREL_HI20 .LANCHOR16 + 2ee8: R_RISCV_RELAX *ABS* + 2eec: 00058593 mv a1,a1 2eec: R_RISCV_PCREL_LO12_I .L0 + 2eec: R_RISCV_RELAX *ABS* + 2ef0: 8522 mv a0,s0 + +0000000000002ef2 <.LVL414>: + 2ef2: 9782 jalr a5 + +0000000000002ef4 <.LVL415>: + 2ef4: b7b5 j 2e60 <.L300> 2ef4: R_RISCV_RVC_JUMP .L300 + +0000000000002ef6 <.L207>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:821 + pthread_detach(thread); + 2ef6: 4552 lw a0,20(sp) + +0000000000002ef8 <.LVL417>: + 2ef8: 00000097 auipc ra,0x0 2ef8: R_RISCV_CALL pthread_detach + 2ef8: R_RISCV_RELAX *ABS* + 2efc: 000080e7 jalr ra # 2ef8 <.LVL417> + +0000000000002f00 <.LVL418>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:823 + nsh_output(vtbl, "%s [%d:%d]\n", argv[0], thread, + 2f00: 781c ld a5,48(s0) + 2f02: 4742 lw a4,16(sp) + 2f04: 46d2 lw a3,20(sp) + 2f06: 6626 ld a2,72(sp) + 2f08: 00000597 auipc a1,0x0 2f08: R_RISCV_PCREL_HI20 .LC23 + 2f08: R_RISCV_RELAX *ABS* + 2f0c: 00058593 mv a1,a1 2f0c: R_RISCV_PCREL_LO12_I .L0 + 2f0c: R_RISCV_RELAX *ABS* + 2f10: 8522 mv a0,s0 + 2f12: 9782 jalr a5 + +0000000000002f14 <.L208>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:870 + return nsh_saveresult(vtbl, false); + 2f14: 4581 li a1,0 + +0000000000002f16 <.L301>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:881 + return nsh_saveresult(vtbl, true); + 2f16: 8522 mv a0,s0 + 2f18: 00000097 auipc ra,0x0 2f18: R_RISCV_CALL nsh_saveresult + 2f18: R_RISCV_RELAX *ABS* + 2f1c: 000080e7 jalr ra # 2f18 <.L301+0x2> + +0000000000002f20 <.LVL421>: + 2f20: 892a mv s2,a0 + +0000000000002f22 <.LBE180>: +nsh_parse_command(): +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2750 + + /* Free any allocated resources */ + + /* Free the redirected output file path */ + + if (redirfile) + 2f22: 9c0986e3 beqz s3,28ee <.L156> 2f22: R_RISCV_BRANCH .L156 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2752 + { + nsh_freefullpath(redirfile); + 2f26: 854e mv a0,s3 + 2f28: 00000097 auipc ra,0x0 2f28: R_RISCV_CALL nsh_freefullpath + 2f28: R_RISCV_RELAX *ABS* + 2f2c: 000080e7 jalr ra # 2f28 <.LBE180+0x6> + +0000000000002f30 <.LVL423>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2753 + vtbl->np.np_redirect = redirect_save; + 2f30: 29540ca3 sb s5,665(s0) + 2f34: ba6d j 28ee <.L156> 2f34: R_RISCV_RVC_JUMP .L156 + +0000000000002f36 <.L195>: +nsh_execute(): +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:833 + if (vtbl->np.np_redirect) + 2f36: 29944783 lbu a5,665(s0) + 2f3a: c791 beqz a5,2f46 <.L210> 2f3a: R_RISCV_RVC_BRANCH .L210 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:835 + nsh_redirect(vtbl, fd, save); + 2f3c: 603c ld a5,64(s0) + 2f3e: 1810 addi a2,sp,48 + 2f40: 85da mv a1,s6 + 2f42: 8522 mv a0,s0 + 2f44: 9782 jalr a5 + +0000000000002f46 <.L210>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:845 + ret = nsh_command(vtbl, argc, argv); + 2f46: 00b0 addi a2,sp,72 + +0000000000002f48 <.LVL426>: + 2f48: 85ca mv a1,s2 + 2f4a: 8522 mv a0,s0 + 2f4c: 00000097 auipc ra,0x0 2f4c: R_RISCV_CALL nsh_command + 2f4c: R_RISCV_RELAX *ABS* + 2f50: 000080e7 jalr ra # 2f4c <.LVL426+0x4> + +0000000000002f54 <.LVL427>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:851 + if (vtbl->np.np_redirect) + 2f54: 29944783 lbu a5,665(s0) +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:845 + ret = nsh_command(vtbl, argc, argv); + 2f58: 84aa mv s1,a0 + +0000000000002f5a <.LVL428>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:851 + if (vtbl->np.np_redirect) + 2f5a: c789 beqz a5,2f64 <.L211> 2f5a: R_RISCV_RVC_BRANCH .L211 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:853 + nsh_undirect(vtbl, save); + 2f5c: 643c ld a5,72(s0) + 2f5e: 180c addi a1,sp,48 + 2f60: 8522 mv a0,s0 + 2f62: 9782 jalr a5 + +0000000000002f64 <.L211>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:860 + if (ret < 0) + 2f64: fa04d8e3 bgez s1,2f14 <.L208> 2f64: R_RISCV_BRANCH .L208 + 2f68: b531 j 2d74 <.L194> 2f68: R_RISCV_RVC_JUMP .L194 + +0000000000002f6a <.L214>: +nsh_alist_free(): +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:431 + alias = alist->allocs[index]; + 2f6a: 648c ld a1,8(s1) + +0000000000002f6c <.LVL431>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:432 + alias->exp = 0; + 2f6c: 0185c783 lbu a5,24(a1) # 2f20 <.LVL421> + 2f70: ffe7f713 andi a4,a5,-2 + 2f74: 00e58c23 sb a4,24(a1) +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:433 + if (alias->rem == 1) + 2f78: 8b89 andi a5,a5,2 + 2f7a: c791 beqz a5,2f86 <.L213> 2f7a: R_RISCV_RVC_BRANCH .L213 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:435 + nsh_aliasfree(vtbl, alias); + 2f7c: 8522 mv a0,s0 + 2f7e: 00000097 auipc ra,0x0 2f7e: R_RISCV_CALL nsh_aliasfree + 2f7e: R_RISCV_RELAX *ABS* + 2f82: 000080e7 jalr ra # 2f7e <.LVL431+0x12> + +0000000000002f86 <.L213>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:438 + alist->allocs[index] = NULL; + 2f86: 0004b423 sd zero,8(s1) +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:429 + for (index = 0; index < alist->nallocs; index++) + 2f8a: 2985 addiw s3,s3,1 + +0000000000002f8c <.LVL433>: + 2f8c: 04a1 addi s1,s1,8 + +0000000000002f8e <.L217>: + 2f8e: 5782 lw a5,32(sp) + 2f90: fcf9cde3 blt s3,a5,2f6a <.L214> 2f90: R_RISCV_BRANCH .L214 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:441 + alist->nallocs = 0; + 2f94: d002 sw zero,32(sp) + 2f96: 1120 addi s0,sp,168 + +0000000000002f98 <.LVL435>: + 2f98: 4481 li s1,0 + +0000000000002f9a <.L215>: +nsh_memlist_free(): +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:384 + for (index = 0; index < memlist->nallocs; index++) + 2f9a: 57aa lw a5,168(sp) + 2f9c: 0421 addi s0,s0,8 + 2f9e: 02f4c063 blt s1,a5,2fbe <.L216> 2f9e: R_RISCV_BRANCH .L216 + +0000000000002fa2 <.LBE184>: +nsh_parse_command(): +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2760 + +dynlist_free: + NSH_ALIASLIST_FREE(vtbl, &alist); + NSH_MEMLIST_FREE(&memlist); + return ret; +} + 2fa2: 60ba ld ra,392(sp) + 2fa4: 641a ld s0,384(sp) + 2fa6: 74f6 ld s1,376(sp) + +0000000000002fa8 <.LVL437>: + 2fa8: 79b6 ld s3,360(sp) + 2faa: 7a16 ld s4,352(sp) + 2fac: 6af6 ld s5,344(sp) + 2fae: 6b56 ld s6,336(sp) + 2fb0: 6bb6 ld s7,328(sp) + 2fb2: 6c16 ld s8,320(sp) + 2fb4: 7cf2 ld s9,312(sp) + 2fb6: 854a mv a0,s2 + 2fb8: 7956 ld s2,368(sp) + +0000000000002fba <.LVL438>: + 2fba: 6159 addi sp,sp,400 + 2fbc: 8082 ret + +0000000000002fbe <.L216>: +nsh_memlist_free(): +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:386 + free(memlist->allocations[index]); + 2fbe: 6008 ld a0,0(s0) +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:384 + for (index = 0; index < memlist->nallocs; index++) + 2fc0: 2485 addiw s1,s1,1 + +0000000000002fc2 <.LVL440>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:386 + free(memlist->allocations[index]); + 2fc2: 00000097 auipc ra,0x0 2fc2: R_RISCV_CALL free + 2fc2: R_RISCV_RELAX *ABS* + 2fc6: 000080e7 jalr ra # 2fc2 <.LVL440> + +0000000000002fca <.LVL441>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:387 + memlist->allocations[index] = NULL; + 2fca: 00043023 sd zero,0(s0) +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:384 + for (index = 0; index < memlist->nallocs; index++) + 2fce: b7f1 j 2f9a <.L215> 2fce: R_RISCV_RVC_JUMP .L215 + +0000000000002fd0 <.L197>: +nsh_execute(): +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:745 + nsh_release(bkgvtbl); + 2fd0: 689c ld a5,16(s1) + 2fd2: 8526 mv a0,s1 + 2fd4: 9782 jalr a5 + +0000000000002fd6 <.L196>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:874 + if (vtbl->np.np_redirect) + 2fd6: 29944783 lbu a5,665(s0) + 2fda: d8078de3 beqz a5,2d74 <.L194> 2fda: R_RISCV_BRANCH .L194 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:876 + close(fd); + 2fde: 855a mv a0,s6 + 2fe0: 00000097 auipc ra,0x0 2fe0: R_RISCV_CALL close + 2fe0: R_RISCV_RELAX *ABS* + 2fe4: 000080e7 jalr ra # 2fe0 <.L196+0xa> + +0000000000002fe8 <.LVL444>: + 2fe8: b371 j 2d74 <.L194> 2fe8: R_RISCV_RVC_JUMP .L194 + +0000000000002fea : +nsh_parse(): +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2777 + * commands are separated by semi-colons. + * + ****************************************************************************/ + +int nsh_parse(FAR struct nsh_vtbl_s *vtbl, FAR char *cmdline) +{ + 2fea: 711d addi sp,sp,-96 + 2fec: fc4e sd s3,56(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2824 + * character was found. Anything after the newline or '#' character + * is ignored (there should not be anything after a newline, of + * course). + */ + + if (*ptr == '\0' || *ptr == '\n' || *ptr == '#') + 2fee: 4985 li s3,1 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2777 +{ + 2ff0: e8a2 sd s0,80(sp) + 2ff2: e4a6 sd s1,72(sp) + 2ff4: e0ca sd s2,64(sp) + 2ff6: f456 sd s5,40(sp) + 2ff8: f05a sd s6,32(sp) + 2ffa: ec5e sd s7,24(sp) + 2ffc: e862 sd s8,16(sp) + 2ffe: ec86 sd ra,88(sp) + 3000: f852 sd s4,48(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2824 + if (*ptr == '\0' || *ptr == '\n' || *ptr == '#') + 3002: 198e slli s3,s3,0x23 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2777 +{ + 3004: 84aa mv s1,a0 + 3006: 892e mv s2,a1 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2797 + for (np->np_jump = false; !np->np_jump; ) + 3008: 2a050923 sb zero,690(a0) +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2786 + FAR char *working = cmdline; + 300c: 842e mv s0,a1 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2785 + FAR char *start = cmdline; + 300e: 8c2e mv s8,a1 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2814 + len = strcspn(working, g_line_separator); + 3010: 00000b17 auipc s6,0x0 3010: R_RISCV_PCREL_HI20 .LANCHOR18 + 3010: R_RISCV_RELAX *ABS* + 3014: 000b0b13 mv s6,s6 3014: R_RISCV_PCREL_LO12_I .L0 + 3014: R_RISCV_RELAX *ABS* +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2824 + if (*ptr == '\0' || *ptr == '\n' || *ptr == '#') + 3018: 02300a93 li s5,35 + 301c: 40198993 addi s3,s3,1025 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2835 + + /* Check for a command terminated with ';'. There is probably another + * command on the command line after this one. + */ + + else if (*ptr == ';') + 3020: 03b00b93 li s7,59 + +0000000000003024 <.L312>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2805 + np->np_loffs = (uint16_t)(working - cmdline); + 3024: 412407b3 sub a5,s0,s2 + 3028: 2af49823 sh a5,688(s1) +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2814 + len = strcspn(working, g_line_separator); + 302c: 85da mv a1,s6 + 302e: 8522 mv a0,s0 + 3030: 00000097 auipc ra,0x0 3030: R_RISCV_CALL strcspn + 3030: R_RISCV_RELAX *ABS* + 3034: 000080e7 jalr ra # 3030 <.L312+0xc> + +0000000000003038 <.LVL447>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2815 + ptr = working + len; + 3038: 9522 add a0,a0,s0 + +000000000000303a <.LVL448>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2824 + if (*ptr == '\0' || *ptr == '\n' || *ptr == '#') + 303a: 00054a03 lbu s4,0(a0) + 303e: 034ae763 bltu s5,s4,306c <.L307> 303e: R_RISCV_BRANCH .L307 + 3042: 0149d7b3 srl a5,s3,s4 + 3046: 8b85 andi a5,a5,1 + 3048: c395 beqz a5,306c <.L307> 3048: R_RISCV_RVC_BRANCH .L307 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2894 + +#ifndef CONFIG_NSH_DISABLESCRIPT + return OK; +#endif +#endif +} + 304a: 6446 ld s0,80(sp) + +000000000000304c <.LVL449>: + 304c: 60e6 ld ra,88(sp) + 304e: 6906 ld s2,64(sp) + +0000000000003050 <.LVL450>: + 3050: 79e2 ld s3,56(sp) + 3052: 7a42 ld s4,48(sp) + 3054: 7aa2 ld s5,40(sp) + 3056: 7b02 ld s6,32(sp) + 3058: 6be2 ld s7,24(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2828 + return nsh_parse_command(vtbl, start); + 305a: 85e2 mv a1,s8 + 305c: 8526 mv a0,s1 + +000000000000305e <.LVL451>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2894 +} + 305e: 6c42 ld s8,16(sp) + +0000000000003060 <.LVL452>: + 3060: 64a6 ld s1,72(sp) + +0000000000003062 <.LVL453>: + 3062: 6125 addi sp,sp,96 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2828 + return nsh_parse_command(vtbl, start); + 3064: 00000317 auipc t1,0x0 3064: R_RISCV_CALL nsh_parse_command + 3064: R_RISCV_RELAX *ABS* + 3068: 00030067 jr t1 # 3064 <.LVL453+0x2> + +000000000000306c <.L307>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2839 + *ptr++ = '\0'; + 306c: 00150413 addi s0,a0,1 + +0000000000003070 <.LVL455>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2835 + else if (*ptr == ';') + 3070: 037a1163 bne s4,s7,3092 <.L308> 3070: R_RISCV_BRANCH .L308 + +0000000000003074 <.LVL456>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2839 + *ptr++ = '\0'; + 3074: 00050023 sb zero,0(a0) +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2843 + ret = nsh_parse_command(vtbl, start); + 3078: 85e2 mv a1,s8 + 307a: 8526 mv a0,s1 + 307c: 00000097 auipc ra,0x0 307c: R_RISCV_CALL nsh_parse_command + 307c: R_RISCV_RELAX *ABS* + 3080: 000080e7 jalr ra # 307c <.LVL456+0x8> + +0000000000003084 <.LVL457>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2844 + if (ret != OK) + 3084: ed05 bnez a0,30bc <.L309> 3084: R_RISCV_RVC_BRANCH .L309 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2857 + start = ptr; + 3086: 8c22 mv s8,s0 + +0000000000003088 <.L310>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2797 (discriminator 1) + for (np->np_jump = false; !np->np_jump; ) + 3088: 2b24c783 lbu a5,690(s1) + 308c: dfc1 beqz a5,3024 <.L312> 308c: R_RISCV_RVC_BRANCH .L312 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2891 + return OK; + 308e: 4501 li a0,0 + 3090: a035 j 30bc <.L309> 3090: R_RISCV_RVC_JUMP .L309 + +0000000000003092 <.L308>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2867 + FAR char *tmp = nsh_strchr(ptr + 1, *ptr); + 3092: 85d2 mv a1,s4 + 3094: 8522 mv a0,s0 + +0000000000003096 <.LVL460>: + 3096: 00000097 auipc ra,0x0 3096: R_RISCV_CALL nsh_strchr + 3096: R_RISCV_RELAX *ABS* + 309a: 000080e7 jalr ra # 3096 <.LVL460> + +000000000000309e <.LVL461>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2868 + if (!tmp) + 309e: e91d bnez a0,30d4 <.L311> 309e: R_RISCV_RVC_BRANCH .L311 + +00000000000030a0 <.LBB190>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2878 + nsh_error(vtbl, g_fmtnomatching, qterm, qterm); + 30a0: 749c ld a5,40(s1) + 30a2: 0034 addi a3,sp,8 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2875 + qterm[0] = *ptr; + 30a4: 01410423 sb s4,8(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2876 + qterm[1] = '\0'; + 30a8: 000104a3 sb zero,9(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2878 + nsh_error(vtbl, g_fmtnomatching, qterm, qterm); + 30ac: 8636 mv a2,a3 + 30ae: 00000597 auipc a1,0x0 30ae: R_RISCV_PCREL_HI20 .LANCHOR9 + 30ae: R_RISCV_RELAX *ABS* + 30b2: 00058593 mv a1,a1 30b2: R_RISCV_PCREL_LO12_I .L0 + 30b2: R_RISCV_RELAX *ABS* + 30b6: 8526 mv a0,s1 + +00000000000030b8 <.LVL462>: + 30b8: 9782 jalr a5 + +00000000000030ba <.LVL463>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2881 + return ERROR; + 30ba: 557d li a0,-1 + +00000000000030bc <.L309>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2894 (discriminator 1) +} + 30bc: 60e6 ld ra,88(sp) + 30be: 6446 ld s0,80(sp) + 30c0: 64a6 ld s1,72(sp) + +00000000000030c2 <.LVL465>: + 30c2: 6906 ld s2,64(sp) + +00000000000030c4 <.LVL466>: + 30c4: 79e2 ld s3,56(sp) + 30c6: 7a42 ld s4,48(sp) + 30c8: 7aa2 ld s5,40(sp) + 30ca: 7b02 ld s6,32(sp) + 30cc: 6be2 ld s7,24(sp) + 30ce: 6c42 ld s8,16(sp) + +00000000000030d0 <.LVL467>: + 30d0: 6125 addi sp,sp,96 + 30d2: 8082 ret + +00000000000030d4 <.L311>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2886 + working = ++tmp; + 30d4: 00150413 addi s0,a0,1 + +00000000000030d8 <.LVL469>: + 30d8: bf45 j 3088 <.L310> 30d8: R_RISCV_RVC_JUMP .L310 + +00000000000030da : +cmd_break(): +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2910 + + FAR struct nsh_parser_s *np = &vtbl->np; + + /* Break outside of a loop is ignored */ + + if (np->np_lpstate[np->np_lpndx].lp_state == NSH_LOOP_DO) + 30da: 2b354783 lbu a5,691(a0) + 30de: 468d li a3,3 + 30e0: 0789 addi a5,a5,2 + 30e2: 0792 slli a5,a5,0x4 + 30e4: 97aa add a5,a5,a0 + 30e6: 2987b703 ld a4,664(a5) + 30ea: 8319 srli a4,a4,0x6 + 30ec: 8b0d andi a4,a4,3 + 30ee: 00d71b63 bne a4,a3,3104 <.L317> 30ee: R_RISCV_BRANCH .L317 +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2915 + { +#ifndef CONFIG_NSH_DISABLE_ITEF + /* Yes... pop the original if-then-else-if state */ + + np->np_iendx = np->np_lpstate[np->np_lpndx].lp_iendx; + 30f2: 2997c703 lbu a4,665(a5) + 30f6: 2ae50a23 sb a4,692(a0) +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2919 +#endif + /* Disable all command processing until 'done' is encountered. */ + + np->np_lpstate[np->np_lpndx].lp_enable = false; + 30fa: 2987c703 lbu a4,664(a5) + 30fe: 9b79 andi a4,a4,-2 + 3100: 28e78c23 sb a4,664(a5) + +0000000000003104 <.L317>: +/Users/Luppy/ox64/apps/nshlib/nsh_parse.c:2927 + /* No syntax errors are detected(?). Break is a nop everywhere except + * the supported context. + */ + + return OK; +} + 3104: 4501 li a0,0 + +0000000000003106 <.LVL471>: + 3106: 8082 ret + +0000000000003108 : +nsh_script(): +/Users/Luppy/ox64/apps/nshlib/nsh_script.c:89 + * + ****************************************************************************/ + +int nsh_script(FAR struct nsh_vtbl_s *vtbl, FAR const FAR char *cmd, + FAR const char *path, bool log) +{ + 3108: 711d addi sp,sp,-96 + 310a: e4a6 sd s1,72(sp) + 310c: 84ae mv s1,a1 +/Users/Luppy/ox64/apps/nshlib/nsh_script.c:97 + FAR char *buffer; + int ret = ERROR; + + /* The path to the script may relative to the current working directory */ + + fullpath = nsh_getfullpath(vtbl, path); + 310e: 85b2 mv a1,a2 + +0000000000003110 <.LVL1>: +/Users/Luppy/ox64/apps/nshlib/nsh_script.c:89 +{ + 3110: e8a2 sd s0,80(sp) + 3112: f852 sd s4,48(sp) + 3114: ec86 sd ra,88(sp) + 3116: e0ca sd s2,64(sp) + 3118: fc4e sd s3,56(sp) + 311a: f456 sd s5,40(sp) + 311c: f05a sd s6,32(sp) + 311e: ec5e sd s7,24(sp) + 3120: e862 sd s8,16(sp) + 3122: e466 sd s9,8(sp) + 3124: 842a mv s0,a0 + 3126: 8a36 mv s4,a3 +/Users/Luppy/ox64/apps/nshlib/nsh_script.c:97 + fullpath = nsh_getfullpath(vtbl, path); + 3128: 00000097 auipc ra,0x0 3128: R_RISCV_CALL nsh_getfullpath + 3128: R_RISCV_RELAX *ABS* + 312c: 000080e7 jalr ra # 3128 <.LVL1+0x18> + +0000000000003130 <.LVL2>: +/Users/Luppy/ox64/apps/nshlib/nsh_script.c:98 + if (!fullpath) + 3130: cd65 beqz a0,3228 <.L11> 3130: R_RISCV_RVC_BRANCH .L11 +/Users/Luppy/ox64/apps/nshlib/nsh_script.c:105 + return ERROR; + } + + /* Get a reference to the common input buffer */ + + buffer = nsh_linebuffer(vtbl); + 3132: 7c1c ld a5,56(s0) + 3134: 89aa mv s3,a0 + 3136: 8522 mv a0,s0 + +0000000000003138 <.LVL3>: + 3138: 9782 jalr a5 + +000000000000313a <.LVL4>: + 313a: 892a mv s2,a0 + +000000000000313c <.LVL5>: +/Users/Luppy/ox64/apps/nshlib/nsh_script.c:106 + if (buffer) + 313c: 12050a63 beqz a0,3270 <.L12> 313c: R_RISCV_BRANCH .L12 +/Users/Luppy/ox64/apps/nshlib/nsh_script.c:114 + + savestream = vtbl->np.np_fd; + + /* Open the file containing the script */ + + vtbl->np.np_fd = open(fullpath, O_RDOK); + 3140: 4585 li a1,1 + 3142: 854e mv a0,s3 + +0000000000003144 <.LVL6>: +/Users/Luppy/ox64/apps/nshlib/nsh_script.c:110 + savestream = vtbl->np.np_fd; + 3144: 2a042a83 lw s5,672(s0) + +0000000000003148 <.LVL7>: +/Users/Luppy/ox64/apps/nshlib/nsh_script.c:114 + vtbl->np.np_fd = open(fullpath, O_RDOK); + 3148: 00000097 auipc ra,0x0 3148: R_RISCV_CALL open + 3148: R_RISCV_RELAX *ABS* + 314c: 000080e7 jalr ra # 3148 <.LVL7> + +0000000000003150 <.LVL8>: + 3150: 2aa42023 sw a0,672(s0) +/Users/Luppy/ox64/apps/nshlib/nsh_script.c:115 + if (vtbl->np.np_fd < 0) + 3154: 08054f63 bltz a0,31f2 <.L20> 3154: R_RISCV_BRANCH .L20 +/Users/Luppy/ox64/apps/nshlib/nsh_script.c:150 + vtbl->np.np_foffs = lseek(vtbl->np.np_fd, 0, SEEK_CUR); + vtbl->np.np_loffs = 0; + + if (vtbl->np.np_foffs < 0 && log) + { + nsh_error(vtbl, g_fmtcmdfailed, "loop", "lseek", NSH_ERRNO); + 3158: 00000b17 auipc s6,0x0 3158: R_RISCV_PCREL_HI20 .LC1 + 3158: R_RISCV_RELAX *ABS* + 315c: 000b0b13 mv s6,s6 315c: R_RISCV_PCREL_LO12_I .L0 + 315c: R_RISCV_RELAX *ABS* + 3160: 00000b97 auipc s7,0x0 3160: R_RISCV_PCREL_HI20 .LC2 + 3160: R_RISCV_RELAX *ABS* + 3164: 000b8b93 mv s7,s7 3164: R_RISCV_PCREL_LO12_I .L0 + 3164: R_RISCV_RELAX *ABS* + 3168: 00000c17 auipc s8,0x0 3168: R_RISCV_PCREL_HI20 g_fmtcmdfailed + 3168: R_RISCV_RELAX *ABS* + 316c: 000c0c13 mv s8,s8 316c: R_RISCV_PCREL_LO12_I .L0 + 316c: R_RISCV_RELAX *ABS* +/Users/Luppy/ox64/apps/nshlib/nsh_script.c:166 + * considerable amount of stack may be used. + */ + + if ((vtbl->np.np_flags & NSH_PFLAG_SILENT) == 0) + { + nsh_output(vtbl, "%s", buffer); + 3170: 00000c97 auipc s9,0x0 3170: R_RISCV_PCREL_HI20 .LC3 + 3170: R_RISCV_RELAX *ABS* + 3174: 000c8c93 mv s9,s9 3174: R_RISCV_PCREL_LO12_I .L0 + 3174: R_RISCV_RELAX *ABS* + +0000000000003178 <.L4>: +/Users/Luppy/ox64/apps/nshlib/nsh_script.c:145 + vtbl->np.np_foffs = lseek(vtbl->np.np_fd, 0, SEEK_CUR); + 3178: 2a042503 lw a0,672(s0) + 317c: 4605 li a2,1 + 317e: 4581 li a1,0 + 3180: 00000097 auipc ra,0x0 3180: R_RISCV_CALL lseek + 3180: R_RISCV_RELAX *ABS* + 3184: 000080e7 jalr ra # 3180 <.L4+0x8> + +0000000000003188 <.LVL10>: + 3188: 2aa43423 sd a0,680(s0) +/Users/Luppy/ox64/apps/nshlib/nsh_script.c:146 + vtbl->np.np_loffs = 0; + 318c: 2a041823 sh zero,688(s0) +/Users/Luppy/ox64/apps/nshlib/nsh_script.c:148 + if (vtbl->np.np_foffs < 0 && log) + 3190: 00055f63 bgez a0,31ae <.L6> 3190: R_RISCV_BRANCH .L6 +/Users/Luppy/ox64/apps/nshlib/nsh_script.c:148 (discriminator 1) + 3194: 000a0d63 beqz s4,31ae <.L6> 3194: R_RISCV_BRANCH .L6 +/Users/Luppy/ox64/apps/nshlib/nsh_script.c:150 + nsh_error(vtbl, g_fmtcmdfailed, "loop", "lseek", NSH_ERRNO); + 3198: 7404 ld s1,40(s0) + 319a: 00000097 auipc ra,0x0 319a: R_RISCV_CALL __errno + 319a: R_RISCV_RELAX *ABS* + 319e: 000080e7 jalr ra # 319a <.LVL10+0x12> + +00000000000031a2 <.LVL11>: + 31a2: 4118 lw a4,0(a0) + 31a4: 86da mv a3,s6 + 31a6: 865e mv a2,s7 + 31a8: 85e2 mv a1,s8 + 31aa: 8522 mv a0,s0 + 31ac: 9482 jalr s1 + +00000000000031ae <.L6>: +/Users/Luppy/ox64/apps/nshlib/nsh_script.c:156 + ret = readline_fd(buffer, CONFIG_NSH_LINELEN, vtbl->np.np_fd, -1); + 31ae: 2a042603 lw a2,672(s0) + 31b2: 56fd li a3,-1 + 31b4: 05000593 li a1,80 + 31b8: 854a mv a0,s2 + 31ba: 00000097 auipc ra,0x0 31ba: R_RISCV_CALL readline_fd + 31ba: R_RISCV_RELAX *ABS* + 31be: 000080e7 jalr ra # 31ba <.L6+0xc> + +00000000000031c2 <.LVL13>: + 31c2: 0005049b sext.w s1,a0 + +00000000000031c6 <.LVL14>: +/Users/Luppy/ox64/apps/nshlib/nsh_script.c:157 + if (ret >= 0) + 31c6: 0604ca63 bltz s1,323a <.L7> 31c6: R_RISCV_BRANCH .L7 +/Users/Luppy/ox64/apps/nshlib/nsh_script.c:164 + if ((vtbl->np.np_flags & NSH_PFLAG_SILENT) == 0) + 31ca: 29b44783 lbu a5,667(s0) + 31ce: 8b89 andi a5,a5,2 + 31d0: e791 bnez a5,31dc <.L8> 31d0: R_RISCV_RVC_BRANCH .L8 +/Users/Luppy/ox64/apps/nshlib/nsh_script.c:166 + nsh_output(vtbl, "%s", buffer); + 31d2: 781c ld a5,48(s0) + 31d4: 864a mv a2,s2 + 31d6: 85e6 mv a1,s9 + 31d8: 8522 mv a0,s0 + 31da: 9782 jalr a5 + +00000000000031dc <.L8>: +/Users/Luppy/ox64/apps/nshlib/nsh_script.c:169 + } + + if (vtbl->np.np_flags & NSH_PFLAG_IGNORE) + 31dc: 29b44783 lbu a5,667(s0) +/Users/Luppy/ox64/apps/nshlib/nsh_script.c:171 + { + nsh_parse(vtbl, buffer); + 31e0: 85ca mv a1,s2 + 31e2: 8522 mv a0,s0 +/Users/Luppy/ox64/apps/nshlib/nsh_script.c:169 + if (vtbl->np.np_flags & NSH_PFLAG_IGNORE) + 31e4: 8b85 andi a5,a5,1 + 31e6: c3b9 beqz a5,322c <.L9> 31e6: R_RISCV_RVC_BRANCH .L9 + +00000000000031e8 <.LVL16>: +/Users/Luppy/ox64/apps/nshlib/nsh_script.c:171 + nsh_parse(vtbl, buffer); + 31e8: 00000097 auipc ra,0x0 31e8: R_RISCV_CALL nsh_parse + 31e8: R_RISCV_RELAX *ABS* + 31ec: 000080e7 jalr ra # 31e8 <.LVL16> + +00000000000031f0 <.LVL17>: +/Users/Luppy/ox64/apps/nshlib/nsh_script.c:179 + { + ret = nsh_parse(vtbl, buffer); + } + } + } + while (ret >= 0); + 31f0: b761 j 3178 <.L4> 31f0: R_RISCV_RVC_JUMP .L4 + +00000000000031f2 <.L20>: +/Users/Luppy/ox64/apps/nshlib/nsh_script.c:117 + if (log) + 31f2: 020a0463 beqz s4,321a <.L5> 31f2: R_RISCV_BRANCH .L5 +/Users/Luppy/ox64/apps/nshlib/nsh_script.c:119 + nsh_error(vtbl, g_fmtcmdfailed, cmd, "open", NSH_ERRNO); + 31f6: 02843903 ld s2,40(s0) + +00000000000031fa <.LVL19>: + 31fa: 00000097 auipc ra,0x0 31fa: R_RISCV_CALL __errno + 31fa: R_RISCV_RELAX *ABS* + 31fe: 000080e7 jalr ra # 31fa <.LVL19> + +0000000000003202 <.LVL20>: + 3202: 4118 lw a4,0(a0) + 3204: 00000697 auipc a3,0x0 3204: R_RISCV_PCREL_HI20 .LC0 + 3204: R_RISCV_RELAX *ABS* + 3208: 00068693 mv a3,a3 3208: R_RISCV_PCREL_LO12_I .L0 + 3208: R_RISCV_RELAX *ABS* + 320c: 8626 mv a2,s1 + 320e: 00000597 auipc a1,0x0 320e: R_RISCV_PCREL_HI20 g_fmtcmdfailed + 320e: R_RISCV_RELAX *ABS* + 3212: 00058593 mv a1,a1 3212: R_RISCV_PCREL_LO12_I .L0 + 3212: R_RISCV_RELAX *ABS* + 3216: 8522 mv a0,s0 + 3218: 9902 jalr s2 + +000000000000321a <.L5>: +/Users/Luppy/ox64/apps/nshlib/nsh_script.c:124 + nsh_freefullpath(fullpath); + 321a: 854e mv a0,s3 + 321c: 00000097 auipc ra,0x0 321c: R_RISCV_CALL nsh_freefullpath + 321c: R_RISCV_RELAX *ABS* + 3220: 000080e7 jalr ra # 321c <.L5+0x2> + +0000000000003224 <.LVL22>: +/Users/Luppy/ox64/apps/nshlib/nsh_script.c:128 + vtbl->np.np_fd = savestream; + 3224: 2b542023 sw s5,672(s0) + +0000000000003228 <.L11>: +/Users/Luppy/ox64/apps/nshlib/nsh_script.c:100 + return ERROR; + 3228: 54fd li s1,-1 + +000000000000322a <.LVL24>: + 322a: a02d j 3254 <.L2> 322a: R_RISCV_RVC_JUMP .L2 + +000000000000322c <.L9>: +/Users/Luppy/ox64/apps/nshlib/nsh_script.c:175 + ret = nsh_parse(vtbl, buffer); + 322c: 00000097 auipc ra,0x0 322c: R_RISCV_CALL nsh_parse + 322c: R_RISCV_RELAX *ABS* + 3230: 000080e7 jalr ra # 322c <.L9> + +0000000000003234 <.LVL26>: + 3234: 84aa mv s1,a0 + +0000000000003236 <.LVL27>: +/Users/Luppy/ox64/apps/nshlib/nsh_script.c:179 + while (ret >= 0); + 3236: f40551e3 bgez a0,3178 <.L4> 3236: R_RISCV_BRANCH .L4 + +000000000000323a <.L7>: +/Users/Luppy/ox64/apps/nshlib/nsh_script.c:183 + + /* Close the script file */ + + close(vtbl->np.np_fd); + 323a: 2a042503 lw a0,672(s0) + 323e: 00000097 auipc ra,0x0 323e: R_RISCV_CALL close + 323e: R_RISCV_RELAX *ABS* + 3242: 000080e7 jalr ra # 323e <.L7+0x4> + +0000000000003246 <.LVL28>: +/Users/Luppy/ox64/apps/nshlib/nsh_script.c:187 + + /* Restore the parent script stream */ + + vtbl->np.np_fd = savestream; + 3246: 2b542023 sw s5,672(s0) + +000000000000324a <.L3>: +/Users/Luppy/ox64/apps/nshlib/nsh_script.c:192 + } + + /* Free the allocated path */ + + nsh_freefullpath(fullpath); + 324a: 854e mv a0,s3 + 324c: 00000097 auipc ra,0x0 324c: R_RISCV_CALL nsh_freefullpath + 324c: R_RISCV_RELAX *ABS* + 3250: 000080e7 jalr ra # 324c <.L3+0x2> + +0000000000003254 <.L2>: +/Users/Luppy/ox64/apps/nshlib/nsh_script.c:194 + return ret; +} + 3254: 60e6 ld ra,88(sp) + 3256: 6446 ld s0,80(sp) + +0000000000003258 <.LVL31>: + 3258: 6906 ld s2,64(sp) + 325a: 79e2 ld s3,56(sp) + 325c: 7a42 ld s4,48(sp) + 325e: 7aa2 ld s5,40(sp) + 3260: 7b02 ld s6,32(sp) + 3262: 6be2 ld s7,24(sp) + 3264: 6c42 ld s8,16(sp) + 3266: 6ca2 ld s9,8(sp) + 3268: 8526 mv a0,s1 + 326a: 64a6 ld s1,72(sp) + 326c: 6125 addi sp,sp,96 + 326e: 8082 ret + +0000000000003270 <.L12>: +/Users/Luppy/ox64/apps/nshlib/nsh_script.c:93 + int ret = ERROR; + 3270: 54fd li s1,-1 + +0000000000003272 <.LVL33>: + 3272: bfe1 j 324a <.L3> 3272: R_RISCV_RVC_JUMP .L3 + +0000000000003274 : +readline_common(): +/Users/Luppy/ox64/apps/system/readline/readline_common.c:476 + * + ****************************************************************************/ + +ssize_t readline_common(FAR struct rl_common_s *vtbl, FAR char *buf, + int buflen) +{ + 3274: 7119 addi sp,sp,-128 + 3276: fc86 sd ra,120(sp) + 3278: f8a2 sd s0,112(sp) + 327a: f4a6 sd s1,104(sp) + 327c: f0ca sd s2,96(sp) + 327e: ecce sd s3,88(sp) + 3280: e8d2 sd s4,80(sp) + 3282: e4d6 sd s5,72(sp) + 3284: e0da sd s6,64(sp) + 3286: fc5e sd s7,56(sp) + 3288: f862 sd s8,48(sp) + 328a: f466 sd s9,40(sp) + 328c: f06a sd s10,32(sp) + 328e: ec6e sd s11,24(sp) +/Users/Luppy/ox64/apps/system/readline/readline_common.c:485 + int i; +#endif + + /* Sanity checks */ + + DEBUGASSERT(buf && buflen > 0); + 3290: c581 beqz a1,3298 <.L2> 3290: R_RISCV_RVC_BRANCH .L2 + 3292: 8a32 mv s4,a2 +/Users/Luppy/ox64/apps/system/readline/readline_common.c:485 (discriminator 2) + 3294: 02c04063 bgtz a2,32b4 <.L3> 3294: R_RISCV_BRANCH .L3 + +0000000000003298 <.L2>: +/Users/Luppy/ox64/apps/system/readline/readline_common.c:485 (discriminator 3) + 3298: 00000617 auipc a2,0x0 3298: R_RISCV_PCREL_HI20 .LC0 + 3298: R_RISCV_RELAX *ABS* + 329c: 00060613 mv a2,a2 329c: R_RISCV_PCREL_LO12_I .L0 + 329c: R_RISCV_RELAX *ABS* + +00000000000032a0 <.LVL1>: + 32a0: 1e500593 li a1,485 + +00000000000032a4 <.LVL2>: + 32a4: 00000517 auipc a0,0x0 32a4: R_RISCV_PCREL_HI20 .LC1 + 32a4: R_RISCV_RELAX *ABS* + 32a8: 00050513 mv a0,a0 32a8: R_RISCV_PCREL_LO12_I .L0 + 32a8: R_RISCV_RELAX *ABS* + +00000000000032ac <.LVL3>: + 32ac: 00000097 auipc ra,0x0 32ac: R_RISCV_CALL __assert + 32ac: R_RISCV_RELAX *ABS* + 32b0: 000080e7 jalr ra # 32ac <.LVL3> + +00000000000032b4 <.L3>: +/Users/Luppy/ox64/apps/system/readline/readline_common.c:487 (discriminator 4) + + if (buflen < 2) + 32b4: 4785 li a5,1 + 32b6: 84ae mv s1,a1 + 32b8: 02f61463 bne a2,a5,32e0 <.L4> 32b8: R_RISCV_BRANCH .L4 + +00000000000032bc <.LVL5>: +/Users/Luppy/ox64/apps/system/readline/readline_common.c:489 + { + *buf = '\0'; + 32bc: 00058023 sb zero,0(a1) # 320e <.LVL20+0xc> +/Users/Luppy/ox64/apps/system/readline/readline_common.c:490 + return 0; + 32c0: 4501 li a0,0 + +00000000000032c2 <.L1>: +/Users/Luppy/ox64/apps/system/readline/readline_common.c:738 + { + tab_completion(vtbl, buf, buflen, &nch); + } +#endif + } +} + 32c2: 70e6 ld ra,120(sp) + 32c4: 7446 ld s0,112(sp) + 32c6: 74a6 ld s1,104(sp) + 32c8: 7906 ld s2,96(sp) + 32ca: 69e6 ld s3,88(sp) + 32cc: 6a46 ld s4,80(sp) + 32ce: 6aa6 ld s5,72(sp) + 32d0: 6b06 ld s6,64(sp) + 32d2: 7be2 ld s7,56(sp) + 32d4: 7c42 ld s8,48(sp) + 32d6: 7ca2 ld s9,40(sp) + 32d8: 7d02 ld s10,32(sp) + 32da: 6de2 ld s11,24(sp) + 32dc: 6109 addi sp,sp,128 + 32de: 8082 ret + +00000000000032e0 <.L4>: +/Users/Luppy/ox64/apps/system/readline/readline_common.c:496 + RL_WRITE(vtbl, g_erasetoeol, sizeof(g_erasetoeol)); + 32e0: 691c ld a5,16(a0) + 32e2: 460d li a2,3 + +00000000000032e4 <.LVL8>: + 32e4: 00000597 auipc a1,0x0 32e4: R_RISCV_PCREL_HI20 .LANCHOR0 + 32e4: R_RISCV_RELAX *ABS* + 32e8: 00058593 mv a1,a1 32e8: R_RISCV_PCREL_LO12_I .L0 + 32e8: R_RISCV_RELAX *ABS* + 32ec: 89aa mv s3,a0 +/Users/Luppy/ox64/apps/system/readline/readline_common.c:505 + nch = 0; + 32ee: 4401 li s0,0 +/Users/Luppy/ox64/apps/system/readline/readline_common.c:496 + RL_WRITE(vtbl, g_erasetoeol, sizeof(g_erasetoeol)); + 32f0: 9782 jalr a5 + +00000000000032f2 <.LVL9>: +/Users/Luppy/ox64/apps/system/readline/readline_common.c:504 + escape = 0; + 32f2: 4901 li s2,0 + +00000000000032f4 <.LBB2>: +/Users/Luppy/ox64/apps/system/readline/readline_common.c:635 + else if (ch == ASCII_BS || ch == ASCII_DEL) + 32f4: 4ba1 li s7,8 +/Users/Luppy/ox64/apps/system/readline/readline_common.c:650 + RL_WRITE(vtbl, g_erasetoeol, sizeof(g_erasetoeol)); + 32f6: 00000a97 auipc s5,0x0 32f6: R_RISCV_PCREL_HI20 .LANCHOR0 + 32f6: R_RISCV_RELAX *ABS* + 32fa: 000a8a93 mv s5,s5 32fa: R_RISCV_PCREL_LO12_I .L0 + 32fa: R_RISCV_RELAX *ABS* +/Users/Luppy/ox64/apps/system/readline/readline_common.c:635 + else if (ch == ASCII_BS || ch == ASCII_DEL) + 32fe: 07f00c13 li s8,127 +/Users/Luppy/ox64/apps/system/readline/readline_common.c:657 + else if (ch == ASCII_ESC) + 3302: 4ced li s9,27 +/Users/Luppy/ox64/apps/system/readline/readline_common.c:669 + else if (ch == '\n') + 3304: 4d29 li s10,10 +/Users/Luppy/ox64/apps/system/readline/readline_common.c:548 + if (g_cmdhist.len > 0) + 3306: 00000b17 auipc s6,0x0 3306: R_RISCV_PCREL_HI20 .LANCHOR1 + 3306: R_RISCV_RELAX *ABS* + 330a: 000b0b13 mv s6,s6 330a: R_RISCV_PCREL_LO12_I .L0 + 330a: R_RISCV_RELAX *ABS* + +000000000000330e <.L6>: +/Users/Luppy/ox64/apps/system/readline/readline_common.c:513 + int ch = RL_GETC(vtbl); + 330e: 0009b783 ld a5,0(s3) + 3312: 854e mv a0,s3 + 3314: 9782 jalr a5 + +0000000000003316 <.LVL11>: +/Users/Luppy/ox64/apps/system/readline/readline_common.c:517 + if (ch == EOF) + 3316: 57fd li a5,-1 +/Users/Luppy/ox64/apps/system/readline/readline_common.c:513 + int ch = RL_GETC(vtbl); + 3318: 8daa mv s11,a0 + +000000000000331a <.LVL12>: +/Users/Luppy/ox64/apps/system/readline/readline_common.c:517 + if (ch == EOF) + 331a: 00f51f63 bne a0,a5,3338 <.L7> 331a: R_RISCV_BRANCH .L7 +/Users/Luppy/ox64/apps/system/readline/readline_common.c:532 + return EOF; + 331e: 557d li a0,-1 + +0000000000003320 <.LVL13>: +/Users/Luppy/ox64/apps/system/readline/readline_common.c:521 + if (nch > 0) + 3320: d04d beqz s0,32c2 <.L1> 3320: R_RISCV_RVC_BRANCH .L1 +/Users/Luppy/ox64/apps/system/readline/readline_common.c:528 + buf[nch] = '\0'; + 3322: 94a2 add s1,s1,s0 + +0000000000003324 <.LVL14>: + 3324: 00048023 sb zero,0(s1) +/Users/Luppy/ox64/apps/system/readline/readline_common.c:529 + return nch; + 3328: 8522 mv a0,s0 + 332a: bf61 j 32c2 <.L1> 332a: R_RISCV_RVC_JUMP .L1 + +000000000000332c <.L34>: +/Users/Luppy/ox64/apps/system/readline/readline_common.c:622 + escape = 2; + 332c: 4909 li s2,2 + +000000000000332e <.LVL16>: + 332e: b7c5 j 330e <.L6> 332e: R_RISCV_RVC_JUMP .L6 + +0000000000003330 <.L36>: +/Users/Luppy/ox64/apps/system/readline/readline_common.c:661 + escape = 1; + 3330: 4905 li s2,1 + +0000000000003332 <.LVL18>: + 3332: bff1 j 330e <.L6> 3332: R_RISCV_RVC_JUMP .L6 + +0000000000003334 <.L37>: +/Users/Luppy/ox64/apps/system/readline/readline_common.c:719 + buf[nch++] = ch; + 3334: 842a mv s0,a0 + 3336: bfe1 j 330e <.L6> 3336: R_RISCV_RVC_JUMP .L6 + +0000000000003338 <.L7>: +/Users/Luppy/ox64/apps/system/readline/readline_common.c:537 + else if (escape) + 3338: 0c090b63 beqz s2,340e <.L8> 3338: R_RISCV_BRANCH .L8 +/Users/Luppy/ox64/apps/system/readline/readline_common.c:541 + if (ch != ASCII_LBRACKET || escape == 2) + 333c: 05b00793 li a5,91 + 3340: 00f51563 bne a0,a5,334a <.L9> 3340: R_RISCV_BRANCH .L9 +/Users/Luppy/ox64/apps/system/readline/readline_common.c:541 (discriminator 1) + 3344: 4789 li a5,2 + 3346: fef913e3 bne s2,a5,332c <.L34> 3346: R_RISCV_BRANCH .L34 + +000000000000334a <.L9>: +/Users/Luppy/ox64/apps/system/readline/readline_common.c:548 + if (g_cmdhist.len > 0) + 334a: 508b2603 lw a2,1288(s6) # 380e <.L84+0xc> +/Users/Luppy/ox64/apps/system/readline/readline_common.c:611 + escape = 0; + 334e: 4901 li s2,0 + +0000000000003350 <.LVL21>: +/Users/Luppy/ox64/apps/system/readline/readline_common.c:548 + if (g_cmdhist.len > 0) + 3350: fac05fe3 blez a2,330e <.L6> 3350: R_RISCV_BRANCH .L6 +/Users/Luppy/ox64/apps/system/readline/readline_common.c:550 + if (ch == 'A') /* up arrow */ + 3354: 04100793 li a5,65 + 3358: 00fd9e63 bne s11,a5,3374 <.L11> 3358: R_RISCV_BRANCH .L11 +/Users/Luppy/ox64/apps/system/readline/readline_common.c:554 + g_cmdhist.offset--; + 335c: 504b2683 lw a3,1284(s6) +/Users/Luppy/ox64/apps/system/readline/readline_common.c:556 + if (-g_cmdhist.offset >= g_cmdhist.len) + 3360: 4785 li a5,1 + 3362: 40d785bb subw a1,a5,a3 +/Users/Luppy/ox64/apps/system/readline/readline_common.c:554 + g_cmdhist.offset--; + 3366: 36fd addiw a3,a3,-1 +/Users/Luppy/ox64/apps/system/readline/readline_common.c:558 + g_cmdhist.offset = -(g_cmdhist.len - 1); + 3368: 9f91 subw a5,a5,a2 +/Users/Luppy/ox64/apps/system/readline/readline_common.c:556 + if (-g_cmdhist.offset >= g_cmdhist.len) + 336a: 02c5d163 bge a1,a2,338c <.L49> 336a: R_RISCV_BRANCH .L49 + +000000000000336e <.L15>: +/Users/Luppy/ox64/apps/system/readline/readline_common.c:569 + g_cmdhist.offset = 1; + 336e: 50db2223 sw a3,1284(s6) + 3372: a839 j 3390 <.L13> 3372: R_RISCV_RVC_JUMP .L13 + +0000000000003374 <.L11>: +/Users/Luppy/ox64/apps/system/readline/readline_common.c:561 + else if (ch == 'B') /* down arrow */ + 3374: 04200793 li a5,66 + 3378: 00fd9c63 bne s11,a5,3390 <.L13> 3378: R_RISCV_BRANCH .L13 +/Users/Luppy/ox64/apps/system/readline/readline_common.c:565 + g_cmdhist.offset++; + 337c: 504b2783 lw a5,1284(s6) +/Users/Luppy/ox64/apps/system/readline/readline_common.c:567 + if (g_cmdhist.offset > 1) + 3380: 4685 li a3,1 +/Users/Luppy/ox64/apps/system/readline/readline_common.c:565 + g_cmdhist.offset++; + 3382: 0017861b addiw a2,a5,1 + 3386: 87b2 mv a5,a2 +/Users/Luppy/ox64/apps/system/readline/readline_common.c:567 + if (g_cmdhist.offset > 1) + 3388: fec6c3e3 blt a3,a2,336e <.L15> 3388: R_RISCV_BRANCH .L15 + +000000000000338c <.L49>: +/Users/Luppy/ox64/apps/system/readline/readline_common.c:565 + g_cmdhist.offset++; + 338c: 50fb2223 sw a5,1284(s6) + +0000000000003390 <.L13>: +/Users/Luppy/ox64/apps/system/readline/readline_common.c:504 + escape = 0; + 3390: 8922 mv s2,s0 + +0000000000003392 <.L16>: +/Users/Luppy/ox64/apps/system/readline/readline_common.c:575 + while (nch > 0) + 3392: 00091a63 bnez s2,33a6 <.L17> 3392: R_RISCV_BRANCH .L17 +/Users/Luppy/ox64/apps/system/readline/readline_common.c:585 + if (g_cmdhist.offset != 1) + 3396: 504b2783 lw a5,1284(s6) + 339a: 4685 li a3,1 + 339c: 02d79263 bne a5,a3,33c0 <.L18> 339c: R_RISCV_BRANCH .L18 + +00000000000033a0 <.L25>: +/Users/Luppy/ox64/apps/system/readline/readline_common.c:476 +{ + 33a0: 4401 li s0,0 + +00000000000033a2 <.LBB6>: +/Users/Luppy/ox64/apps/system/readline/readline_common.c:611 + escape = 0; + 33a2: 4901 li s2,0 + 33a4: b7ad j 330e <.L6> 33a4: R_RISCV_RVC_JUMP .L6 + +00000000000033a6 <.L17>: +/Users/Luppy/ox64/apps/system/readline/readline_common.c:580 + RL_PUTC(vtbl, ASCII_BS); + 33a6: 0089b783 ld a5,8(s3) + 33aa: 854e mv a0,s3 + 33ac: 45a1 li a1,8 + 33ae: 9782 jalr a5 + +00000000000033b0 <.LVL25>: +/Users/Luppy/ox64/apps/system/readline/readline_common.c:581 + RL_WRITE(vtbl, g_erasetoeol, sizeof(g_erasetoeol)); + 33b0: 0109b783 ld a5,16(s3) + 33b4: 460d li a2,3 + 33b6: 85d6 mv a1,s5 + 33b8: 854e mv a0,s3 +/Users/Luppy/ox64/apps/system/readline/readline_common.c:577 + nch--; + 33ba: 397d addiw s2,s2,-1 + +00000000000033bc <.LVL26>: +/Users/Luppy/ox64/apps/system/readline/readline_common.c:581 + RL_WRITE(vtbl, g_erasetoeol, sizeof(g_erasetoeol)); + 33bc: 9782 jalr a5 + +00000000000033be <.LVL27>: + 33be: bfd1 j 3392 <.L16> 33be: R_RISCV_RVC_JUMP .L16 + +00000000000033c0 <.L18>: +/Users/Luppy/ox64/apps/system/readline/readline_common.c:587 + int idx = g_cmdhist.head + g_cmdhist.offset; + 33c0: 500b2683 lw a3,1280(s6) + 33c4: 9fb5 addw a5,a5,a3 + +00000000000033c6 <.LVL29>: +/Users/Luppy/ox64/apps/system/readline/readline_common.c:591 + if (idx < 0) + 33c6: 0207d463 bgez a5,33ee <.L19> 33c6: R_RISCV_BRANCH .L19 +/Users/Luppy/ox64/apps/system/readline/readline_common.c:593 + idx = idx + RL_CMDHIST_LEN; + 33ca: 27c1 addiw a5,a5,16 + +00000000000033cc <.L20>: +/Users/Luppy/ox64/apps/system/readline/readline_common.c:600 + for (i = 0; g_cmdhist.buf[idx][i] != '\0'; i++) + 33cc: 05000d93 li s11,80 + 33d0: 03b787b3 mul a5,a5,s11 + +00000000000033d4 <.LVL31>: + 33d4: 00fb0db3 add s11,s6,a5 + 33d8: 4781 li a5,0 + +00000000000033da <.L21>: +/Users/Luppy/ox64/apps/system/readline/readline_common.c:600 (discriminator 1) + 33da: 000dc583 lbu a1,0(s11) # 23b6 <.LBE67> + 33de: 0007841b sext.w s0,a5 + +00000000000033e2 <.LVL33>: + 33e2: 00f486b3 add a3,s1,a5 + 33e6: e989 bnez a1,33f8 <.L22> 33e6: R_RISCV_RVC_BRANCH .L22 +/Users/Luppy/ox64/apps/system/readline/readline_common.c:606 + buf[nch] = '\0'; + 33e8: 00068023 sb zero,0(a3) # 3204 <.LVL20+0x2> + 33ec: b70d j 330e <.L6> 33ec: R_RISCV_RVC_JUMP .L6 + +00000000000033ee <.L19>: +/Users/Luppy/ox64/apps/system/readline/readline_common.c:595 + else if (idx >= RL_CMDHIST_LEN) + 33ee: 463d li a2,15 + 33f0: fcf65ee3 bge a2,a5,33cc <.L20> 33f0: R_RISCV_BRANCH .L20 +/Users/Luppy/ox64/apps/system/readline/readline_common.c:597 + idx = idx - RL_CMDHIST_LEN; + 33f4: 37c1 addiw a5,a5,-16 + +00000000000033f6 <.LVL35>: + 33f6: bfd9 j 33cc <.L20> 33f6: R_RISCV_RVC_JUMP .L20 + +00000000000033f8 <.L22>: +/Users/Luppy/ox64/apps/system/readline/readline_common.c:602 (discriminator 3) + buf[nch++] = g_cmdhist.buf[idx][i]; + 33f8: 00b68023 sb a1,0(a3) +/Users/Luppy/ox64/apps/system/readline/readline_common.c:603 (discriminator 3) + RL_PUTC(vtbl, g_cmdhist.buf[idx][i]); + 33fc: 0089b683 ld a3,8(s3) + 3400: 854e mv a0,s3 + 3402: e43e sd a5,8(sp) + +0000000000003404 <.LVL37>: + 3404: 9682 jalr a3 + +0000000000003406 <.LVL38>: +/Users/Luppy/ox64/apps/system/readline/readline_common.c:600 (discriminator 3) + for (i = 0; g_cmdhist.buf[idx][i] != '\0'; i++) + 3406: 67a2 ld a5,8(sp) + 3408: 0d85 addi s11,s11,1 + 340a: 0785 addi a5,a5,1 + 340c: b7f9 j 33da <.L21> 340c: R_RISCV_RVC_JUMP .L21 + +000000000000340e <.L8>: +/Users/Luppy/ox64/apps/system/readline/readline_common.c:635 + else if (ch == ASCII_BS || ch == ASCII_DEL) + 340e: 01750463 beq a0,s7,3416 <.L23> 340e: R_RISCV_BRANCH .L23 +/Users/Luppy/ox64/apps/system/readline/readline_common.c:635 (discriminator 1) + 3412: 03851063 bne a0,s8,3432 <.L24> 3412: R_RISCV_BRANCH .L24 + +0000000000003416 <.L23>: +/Users/Luppy/ox64/apps/system/readline/readline_common.c:639 + if (nch > 0) + 3416: d449 beqz s0,33a0 <.L25> 3416: R_RISCV_RVC_BRANCH .L25 +/Users/Luppy/ox64/apps/system/readline/readline_common.c:649 + RL_PUTC(vtbl, ASCII_BS); + 3418: 0089b783 ld a5,8(s3) + 341c: 854e mv a0,s3 + +000000000000341e <.LVL40>: + 341e: 45a1 li a1,8 + 3420: 9782 jalr a5 + +0000000000003422 <.LVL41>: +/Users/Luppy/ox64/apps/system/readline/readline_common.c:650 + RL_WRITE(vtbl, g_erasetoeol, sizeof(g_erasetoeol)); + 3422: 0109b783 ld a5,16(s3) + 3426: 460d li a2,3 + 3428: 85d6 mv a1,s5 + 342a: 854e mv a0,s3 +/Users/Luppy/ox64/apps/system/readline/readline_common.c:641 + nch--; + 342c: 347d addiw s0,s0,-1 + +000000000000342e <.LVL42>: +/Users/Luppy/ox64/apps/system/readline/readline_common.c:650 + RL_WRITE(vtbl, g_erasetoeol, sizeof(g_erasetoeol)); + 342e: 9782 jalr a5 + +0000000000003430 <.LVL43>: + 3430: bdf9 j 330e <.L6> 3430: R_RISCV_RVC_JUMP .L6 + +0000000000003432 <.L24>: +/Users/Luppy/ox64/apps/system/readline/readline_common.c:657 + else if (ch == ASCII_ESC) + 3432: ef950fe3 beq a0,s9,3330 <.L36> 3432: R_RISCV_BRANCH .L36 +/Users/Luppy/ox64/apps/system/readline/readline_common.c:669 + else if (ch == '\n') + 3436: 09a51a63 bne a0,s10,34ca <.L26> 3436: R_RISCV_BRANCH .L26 +/Users/Luppy/ox64/apps/system/readline/readline_common.c:682 + if (strncmp(buf, g_cmdhist.buf[g_cmdhist.head], nch + 1) != 0) + 343a: 0014099b addiw s3,s0,1 + +000000000000343e <.LVL45>: +/Users/Luppy/ox64/apps/system/readline/readline_common.c:676 + if (nch >= 1) + 343e: cc2d beqz s0,34b8 <.L27> 343e: R_RISCV_RVC_BRANCH .L27 +/Users/Luppy/ox64/apps/system/readline/readline_common.c:682 + if (strncmp(buf, g_cmdhist.buf[g_cmdhist.head], nch + 1) != 0) + 3440: 00000a17 auipc s4,0x0 3440: R_RISCV_PCREL_HI20 .LANCHOR1 + 3440: R_RISCV_RELAX *ABS* + 3444: 000a0a13 mv s4,s4 3444: R_RISCV_PCREL_LO12_I .L0 + 3444: R_RISCV_RELAX *ABS* + 3448: 500a2b03 lw s6,1280(s4) # 3940 <.L11+0x26> + 344c: 05000a93 li s5,80 + 3450: 864e mv a2,s3 + 3452: 035b05b3 mul a1,s6,s5 + 3456: 8526 mv a0,s1 + +0000000000003458 <.LVL46>: + 3458: 95d2 add a1,a1,s4 + 345a: 00000097 auipc ra,0x0 345a: R_RISCV_CALL strncmp + 345a: R_RISCV_RELAX *ABS* + 345e: 000080e7 jalr ra # 345a <.LVL46+0x2> + +0000000000003462 <.LVL47>: + 3462: c921 beqz a0,34b2 <.L29> 3462: R_RISCV_RVC_BRANCH .L29 +/Users/Luppy/ox64/apps/system/readline/readline_common.c:684 + g_cmdhist.head = (g_cmdhist.head + 1) % RL_CMDHIST_LEN; + 3464: 2b05 addiw s6,s6,1 + 3466: 47c1 li a5,16 + 3468: 02fb67bb remw a5,s6,a5 + 346c: 86a6 mv a3,s1 +/Users/Luppy/ox64/apps/system/readline/readline_common.c:686 + for (i = 0; (i < nch) && i < (RL_CMDHIST_LINELEN - 1); i++) + 346e: 04f00613 li a2,79 + 3472: 03578733 mul a4,a5,s5 +/Users/Luppy/ox64/apps/system/readline/readline_common.c:684 + g_cmdhist.head = (g_cmdhist.head + 1) % RL_CMDHIST_LEN; + 3476: 50fa2023 sw a5,1280(s4) + +000000000000347a <.LVL48>: +/Users/Luppy/ox64/apps/system/readline/readline_common.c:686 + for (i = 0; (i < nch) && i < (RL_CMDHIST_LINELEN - 1); i++) + 347a: 9752 add a4,a4,s4 + +000000000000347c <.L31>: +/Users/Luppy/ox64/apps/system/readline/readline_common.c:688 (discriminator 4) + g_cmdhist.buf[g_cmdhist.head][i] = buf[i]; + 347c: 0006c583 lbu a1,0(a3) +/Users/Luppy/ox64/apps/system/readline/readline_common.c:686 (discriminator 4) + for (i = 0; (i < nch) && i < (RL_CMDHIST_LINELEN - 1); i++) + 3480: 2905 addiw s2,s2,1 + +0000000000003482 <.LVL50>: +/Users/Luppy/ox64/apps/system/readline/readline_common.c:688 (discriminator 4) + g_cmdhist.buf[g_cmdhist.head][i] = buf[i]; + 3482: 00b70023 sb a1,0(a4) +/Users/Luppy/ox64/apps/system/readline/readline_common.c:686 (discriminator 4) + for (i = 0; (i < nch) && i < (RL_CMDHIST_LINELEN - 1); i++) + 3486: 01240663 beq s0,s2,3492 <.L30> 3486: R_RISCV_BRANCH .L30 +/Users/Luppy/ox64/apps/system/readline/readline_common.c:686 (discriminator 3) + 348a: 0685 addi a3,a3,1 + 348c: 0705 addi a4,a4,1 + 348e: fec917e3 bne s2,a2,347c <.L31> 348e: R_RISCV_BRANCH .L31 + +0000000000003492 <.L30>: +/Users/Luppy/ox64/apps/system/readline/readline_common.c:691 + g_cmdhist.buf[g_cmdhist.head][i] = '\0'; + 3492: 05000713 li a4,80 + 3496: 02e787b3 mul a5,a5,a4 +/Users/Luppy/ox64/apps/system/readline/readline_common.c:693 + if (g_cmdhist.len < RL_CMDHIST_LEN) + 349a: 473d li a4,15 +/Users/Luppy/ox64/apps/system/readline/readline_common.c:691 + g_cmdhist.buf[g_cmdhist.head][i] = '\0'; + 349c: 97d2 add a5,a5,s4 + 349e: 993e add s2,s2,a5 +/Users/Luppy/ox64/apps/system/readline/readline_common.c:693 + if (g_cmdhist.len < RL_CMDHIST_LEN) + 34a0: 508a2783 lw a5,1288(s4) +/Users/Luppy/ox64/apps/system/readline/readline_common.c:691 + g_cmdhist.buf[g_cmdhist.head][i] = '\0'; + 34a4: 00090023 sb zero,0(s2) +/Users/Luppy/ox64/apps/system/readline/readline_common.c:693 + if (g_cmdhist.len < RL_CMDHIST_LEN) + 34a8: 00f74563 blt a4,a5,34b2 <.L29> 34a8: R_RISCV_BRANCH .L29 +/Users/Luppy/ox64/apps/system/readline/readline_common.c:695 + g_cmdhist.len++; + 34ac: 2785 addiw a5,a5,1 + 34ae: 50fa2423 sw a5,1288(s4) + +00000000000034b2 <.L29>: +/Users/Luppy/ox64/apps/system/readline/readline_common.c:699 + g_cmdhist.offset = 1; + 34b2: 4785 li a5,1 + 34b4: 50fa2223 sw a5,1284(s4) + +00000000000034b8 <.L27>: +/Users/Luppy/ox64/apps/system/readline/readline_common.c:707 + buf[nch++] = '\n'; + 34b8: 9426 add s0,s0,s1 + +00000000000034ba <.LVL52>: + 34ba: 47a9 li a5,10 + 34bc: 00f40023 sb a5,0(s0) +/Users/Luppy/ox64/apps/system/readline/readline_common.c:708 + buf[nch] = '\0'; + 34c0: 94ce add s1,s1,s3 + +00000000000034c2 <.LVL53>: + 34c2: 00048023 sb zero,0(s1) +/Users/Luppy/ox64/apps/system/readline/readline_common.c:710 + return nch; + 34c6: 854e mv a0,s3 + 34c8: bbed j 32c2 <.L1> 34c8: R_RISCV_RVC_JUMP .L1 + +00000000000034ca <.L26>: +/Users/Luppy/ox64/apps/system/readline/readline_common.c:717 + else if (!iscntrl(ch & 0xff)) + 34ca: 0ff57513 zext.b a0,a0 + +00000000000034ce <.LVL55>: + 34ce: 00000097 auipc ra,0x0 34ce: R_RISCV_CALL iscntrl + 34ce: R_RISCV_RELAX *ABS* + 34d2: 000080e7 jalr ra # 34ce <.LVL55> + +00000000000034d6 <.LVL56>: + 34d6: e2051ce3 bnez a0,330e <.L6> 34d6: R_RISCV_BRANCH .L6 +/Users/Luppy/ox64/apps/system/readline/readline_common.c:719 + buf[nch++] = ch; + 34da: 008487b3 add a5,s1,s0 + 34de: 0014051b addiw a0,s0,1 + +00000000000034e2 <.LVL57>: + 34e2: 01b78023 sb s11,0(a5) +/Users/Luppy/ox64/apps/system/readline/readline_common.c:725 + if (nch + 1 >= buflen) + 34e6: 2409 addiw s0,s0,2 + +00000000000034e8 <.LVL58>: + 34e8: e54446e3 blt s0,s4,3334 <.L37> 34e8: R_RISCV_BRANCH .L37 +/Users/Luppy/ox64/apps/system/readline/readline_common.c:727 + buf[nch] = '\0'; + 34ec: 94aa add s1,s1,a0 + +00000000000034ee <.LVL59>: + 34ee: 00048023 sb zero,0(s1) +/Users/Luppy/ox64/apps/system/readline/readline_common.c:728 + return nch; + 34f2: bbc1 j 32c2 <.L1> 34f2: R_RISCV_RVC_JUMP .L1 + +00000000000034f4 : +alias_delete(): +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:123 + ****************************************************************************/ + +static void alias_delete(FAR struct nsh_vtbl_s *vtbl, + FAR struct nsh_alias_s *alias) +{ + if (alias) + 34f4: c5c5 beqz a1,359c <.L24> 34f4: R_RISCV_RVC_BRANCH .L24 +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:122 +{ + 34f6: 7179 addi sp,sp,-48 + 34f8: f022 sd s0,32(sp) + 34fa: f406 sd ra,40(sp) + 34fc: ec26 sd s1,24(sp) + 34fe: e84a sd s2,16(sp) + 3500: e44e sd s3,8(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:125 + { + if (alias->exp) + 3502: 0185c783 lbu a5,24(a1) # 32fc <.LBB2+0x8> + 3506: 842e mv s0,a1 + 3508: 0017f713 andi a4,a5,1 + 350c: cf01 beqz a4,3524 <.L3> 350c: R_RISCV_RVC_BRANCH .L3 +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:129 + { + /* Mark it for removal, but keep the data intact */ + + alias->rem = 1; + 350e: 0027e793 ori a5,a5,2 + 3512: 00f58c23 sb a5,24(a1) + +0000000000003516 <.L1>: +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:150 + alias->flags = 0; + + sq_rem((FAR sq_entry_t *)alias, &vtbl->alist); + sq_addfirst((FAR sq_entry_t *)alias, &vtbl->afreelist); + } +} + 3516: 70a2 ld ra,40(sp) + 3518: 7402 ld s0,32(sp) + +000000000000351a <.LVL2>: + 351a: 64e2 ld s1,24(sp) + 351c: 6942 ld s2,16(sp) + 351e: 69a2 ld s3,8(sp) + 3520: 6145 addi sp,sp,48 + 3522: 8082 ret + +0000000000003524 <.L3>: + 3524: 84aa mv s1,a0 + +0000000000003526 <.LBB11>: +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:133 + if (alias->name) + 3526: 6588 ld a0,8(a1) + +0000000000003528 <.LVL5>: + 3528: c509 beqz a0,3532 <.L4> 3528: R_RISCV_RVC_BRANCH .L4 +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:135 + free(alias->name); + 352a: 00000097 auipc ra,0x0 352a: R_RISCV_CALL free + 352a: R_RISCV_RELAX *ABS* + 352e: 000080e7 jalr ra # 352a <.LVL5+0x2> + +0000000000003532 <.L4>: +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:138 + if (alias->value) + 3532: 6808 ld a0,16(s0) + 3534: c509 beqz a0,353e <.L5> 3534: R_RISCV_RVC_BRANCH .L5 +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:140 + free(alias->value); + 3536: 00000097 auipc ra,0x0 3536: R_RISCV_CALL free + 3536: R_RISCV_RELAX *ABS* + 353a: 000080e7 jalr ra # 3536 <.L4+0x4> + +000000000000353e <.L5>: +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:143 + alias->name = NULL; + 353e: 00043423 sd zero,8(s0) +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:144 + alias->value = NULL; + 3542: 00043823 sd zero,16(s0) +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:145 + alias->flags = 0; + 3546: 00040c23 sb zero,24(s0) + +000000000000354a <.LBB13>: +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:147 + sq_rem((FAR sq_entry_t *)alias, &vtbl->alist); + 354a: 2784b903 ld s2,632(s1) + 354e: 00090f63 beqz s2,356c <.L7> 354e: R_RISCV_BRANCH .L7 + +0000000000003552 <.LBB14>: + 3552: 27848993 addi s3,s1,632 + +0000000000003556 <.LBE14>: + 3556: 03241463 bne s0,s2,357e <.L8> 3556: R_RISCV_BRANCH .L8 + 355a: 601c ld a5,0(s0) + 355c: 26f4bc23 sd a5,632(s1) + 3560: 2804b783 ld a5,640(s1) + 3564: 00f41463 bne s0,a5,356c <.L7> 3564: R_RISCV_BRANCH .L7 + 3568: 2804b023 sd zero,640(s1) + +000000000000356c <.L7>: +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:148 + sq_addfirst((FAR sq_entry_t *)alias, &vtbl->afreelist); + 356c: 2884b783 ld a5,648(s1) + 3570: e01c sd a5,0(s0) + 3572: e399 bnez a5,3578 <.L11> 3572: R_RISCV_RVC_BRANCH .L11 + 3574: 2884b823 sd s0,656(s1) + +0000000000003578 <.L11>: + 3578: 2884b423 sd s0,648(s1) + +000000000000357c <.LBE11>: + 357c: bf69 j 3516 <.L1> 357c: R_RISCV_RVC_JUMP .L1 + +000000000000357e <.L8>: +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:147 + sq_rem((FAR sq_entry_t *)alias, &vtbl->alist); + 357e: 00093783 ld a5,0(s2) + 3582: 00f41863 bne s0,a5,3592 <.L10> 3582: R_RISCV_BRANCH .L10 + 3586: 85ce mv a1,s3 + 3588: 854a mv a0,s2 + 358a: 00000097 auipc ra,0x0 358a: R_RISCV_CALL sq_remafter + 358a: R_RISCV_RELAX *ABS* + 358e: 000080e7 jalr ra # 358a <.L8+0xc> + +0000000000003592 <.L10>: + 3592: 00093903 ld s2,0(s2) + 3596: fe0914e3 bnez s2,357e <.L8> 3596: R_RISCV_BRANCH .L8 + 359a: bfc9 j 356c <.L7> 359a: R_RISCV_RVC_JUMP .L7 + +000000000000359c <.L24>: + 359c: 8082 ret + +000000000000359e : +alias_find(): +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:100 +static FAR struct nsh_alias_s *alias_find(FAR struct nsh_vtbl_s *vtbl, + 359e: 1101 addi sp,sp,-32 + 35a0: e822 sd s0,16(sp) + 35a2: e426 sd s1,8(sp) + 35a4: ec06 sd ra,24(sp) + 35a6: 84ae mv s1,a1 +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:105 + for (alias = alias_head(&vtbl->alist); alias; alias = alias->next) + 35a8: 842a mv s0,a0 + +00000000000035aa <.L28>: + 35aa: e419 bnez s0,35b8 <.L30> 35aa: R_RISCV_RVC_BRANCH .L30 + +00000000000035ac <.L27>: +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:114 +} + 35ac: 60e2 ld ra,24(sp) + 35ae: 8522 mv a0,s0 + 35b0: 6442 ld s0,16(sp) + +00000000000035b2 <.LVL17>: + 35b2: 64a2 ld s1,8(sp) + +00000000000035b4 <.LVL18>: + 35b4: 6105 addi sp,sp,32 + 35b6: 8082 ret + +00000000000035b8 <.L30>: +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:107 + if (strcmp(alias->name, name) == 0) + 35b8: 6408 ld a0,8(s0) + 35ba: 85a6 mv a1,s1 + 35bc: 00000097 auipc ra,0x0 35bc: R_RISCV_CALL strcmp + 35bc: R_RISCV_RELAX *ABS* + 35c0: 000080e7 jalr ra # 35bc <.L30+0x4> + +00000000000035c4 <.LVL20>: + 35c4: d565 beqz a0,35ac <.L27> 35c4: R_RISCV_RVC_BRANCH .L27 +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:105 + for (alias = alias_head(&vtbl->alist); alias; alias = alias->next) + 35c6: 6000 ld s0,0(s0) + 35c8: b7cd j 35aa <.L28> 35c8: R_RISCV_RVC_JUMP .L28 + +00000000000035ca : +alias_init(): +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:78 + if (!sq_empty(&vtbl->alist) || !sq_empty(&vtbl->afreelist)) + 35ca: 27853783 ld a5,632(a0) # 351c <.LVL2+0x2> + 35ce: ef91 bnez a5,35ea <.L35> 35ce: R_RISCV_RVC_BRANCH .L35 +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:78 (discriminator 1) + 35d0: 28853783 ld a5,648(a0) + 35d4: eb99 bnez a5,35ea <.L35> 35d4: R_RISCV_RVC_BRANCH .L35 + +00000000000035d6 <.LBB23>: +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:90 + sq_addlast((FAR struct sq_entry_s *)&vtbl->atab[i], &vtbl->afreelist); + 35d6: 25850793 addi a5,a0,600 + +00000000000035da <.LBE25>: +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:85 + sq_init(&vtbl->alist); + 35da: 28053023 sd zero,640(a0) + +00000000000035de <.LBB26>: +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:90 + sq_addlast((FAR struct sq_entry_s *)&vtbl->atab[i], &vtbl->afreelist); + 35de: 24053c23 sd zero,600(a0) + 35e2: 28f53423 sd a5,648(a0) + 35e6: 28f53823 sd a5,656(a0) + +00000000000035ea <.L35>: +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:94 +} + 35ea: 8082 ret + +00000000000035ec : +nsh_aliasfind(): +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:248 + * + ****************************************************************************/ + +FAR struct nsh_alias_s *nsh_aliasfind(FAR struct nsh_vtbl_s *vtbl, + FAR const char *token) +{ + 35ec: 1101 addi sp,sp,-32 + 35ee: e822 sd s0,16(sp) + 35f0: e42e sd a1,8(sp) + 35f2: ec06 sd ra,24(sp) + 35f4: 842a mv s0,a0 +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:253 + FAR struct nsh_alias_s *alias; + + /* Init, if necessary */ + + alias_init(vtbl); + 35f6: 00000097 auipc ra,0x0 35f6: R_RISCV_CALL alias_init + 35f6: R_RISCV_RELAX *ABS* + 35fa: 000080e7 jalr ra # 35f6 + +00000000000035fe <.LVL27>: +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:255 + + if (token) + 35fe: 65a2 ld a1,8(sp) + 3600: c185 beqz a1,3620 <.L38> 3600: R_RISCV_RVC_BRANCH .L38 +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:259 + { + /* See if such an alias exists ? */ + + alias = alias_find(vtbl, token); + 3602: 27843503 ld a0,632(s0) + 3606: 00000097 auipc ra,0x0 3606: R_RISCV_CALL alias_find.isra.0 + 3606: R_RISCV_RELAX *ABS* + 360a: 000080e7 jalr ra # 3606 <.LVL27+0x8> + +000000000000360e <.LVL28>: + 360e: 85aa mv a1,a0 + +0000000000003610 <.LVL29>: +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:260 + if (alias && !alias->exp && alias->value) + 3610: c901 beqz a0,3620 <.L38> 3610: R_RISCV_RVC_BRANCH .L38 +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:260 (discriminator 1) + 3612: 01854783 lbu a5,24(a0) + 3616: 8b85 andi a5,a5,1 + 3618: e399 bnez a5,361e <.L40> 3618: R_RISCV_RVC_BRANCH .L40 +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:260 (discriminator 2) + 361a: 691c ld a5,16(a0) + 361c: e391 bnez a5,3620 <.L38> 361c: R_RISCV_RVC_BRANCH .L38 + +000000000000361e <.L40>: +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:268 + + return alias; + } + } + + return NULL; + 361e: 4581 li a1,0 + +0000000000003620 <.L38>: +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:269 +} + 3620: 60e2 ld ra,24(sp) + 3622: 6442 ld s0,16(sp) + +0000000000003624 <.LVL31>: + 3624: 852e mv a0,a1 + 3626: 6105 addi sp,sp,32 + +0000000000003628 <.LVL32>: + 3628: 8082 ret + +000000000000362a : +nsh_aliasfree(): +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:290 + ****************************************************************************/ + +void nsh_aliasfree(FAR struct nsh_vtbl_s *vtbl, + FAR struct nsh_alias_s *alias) +{ + alias_delete(vtbl, alias); + 362a: 00000317 auipc t1,0x0 362a: R_RISCV_CALL alias_delete + 362a: R_RISCV_RELAX *ABS* + 362e: 00030067 jr t1 # 362a + +0000000000003632 : +cmd_alias(): +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:317 + * Zero (OK) on success; a negated errno value on failure. + * + ****************************************************************************/ + +int cmd_alias(FAR struct nsh_vtbl_s *vtbl, int argc, FAR char **argv) +{ + 3632: 711d addi sp,sp,-96 + 3634: e8a2 sd s0,80(sp) + 3636: e4a6 sd s1,72(sp) + 3638: e0ca sd s2,64(sp) + 363a: ec86 sd ra,88(sp) + 363c: fc4e sd s3,56(sp) + 363e: f852 sd s4,48(sp) + 3640: f456 sd s5,40(sp) + 3642: f05a sd s6,32(sp) + 3644: ec5e sd s7,24(sp) + 3646: e862 sd s8,16(sp) + 3648: e466 sd s9,8(sp) + 364a: 842a mv s0,a0 + 364c: 84ae mv s1,a1 + 364e: 8932 mv s2,a2 +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:325 + FAR char *value; + int ret = OK; + + /* Init, if necessary */ + + alias_init(vtbl); + 3650: 00000097 auipc ra,0x0 3650: R_RISCV_CALL alias_init + 3650: R_RISCV_RELAX *ABS* + 3654: 000080e7 jalr ra # 3650 + +0000000000003658 <.LVL36>: +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:327 + + if (argc < 2) + 3658: 4785 li a5,1 + 365a: 0497c063 blt a5,s1,369a <.L50> 365a: R_RISCV_BRANCH .L50 + +000000000000365e <.LBB32>: +alias_printall(): +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:202 + for (alias = alias_head(&vtbl->alist); alias; alias = alias->next) + 365e: 27843483 ld s1,632(s0) + +0000000000003662 <.LVL38>: +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:204 + nsh_output(vtbl, g_aliasfmt, alias->name, alias->value); + 3662: 00000917 auipc s2,0x0 3662: R_RISCV_PCREL_HI20 .LANCHOR0 + 3662: R_RISCV_RELAX *ABS* + 3666: 00090913 mv s2,s2 3666: R_RISCV_PCREL_LO12_I .L0 + 3666: R_RISCV_RELAX *ABS* + +000000000000366a <.L51>: +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:202 + for (alias = alias_head(&vtbl->alist); alias; alias = alias->next) + 366a: e085 bnez s1,368a <.L52> 366a: R_RISCV_RVC_BRANCH .L52 + +000000000000366c <.LBE32>: +cmd_alias(): +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:332 + { + /* Print the alias list */ + + alias_printall(vtbl); + return ret; + 366c: 4981 li s3,0 + +000000000000366e <.L74>: +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:369 + ret = -ENOENT; + } + } + + return ret; +} + 366e: 60e6 ld ra,88(sp) + 3670: 6446 ld s0,80(sp) + +0000000000003672 <.LVL41>: + 3672: 64a6 ld s1,72(sp) + 3674: 6906 ld s2,64(sp) + 3676: 7a42 ld s4,48(sp) + 3678: 7aa2 ld s5,40(sp) + 367a: 7b02 ld s6,32(sp) + 367c: 6be2 ld s7,24(sp) + 367e: 6c42 ld s8,16(sp) + 3680: 6ca2 ld s9,8(sp) + 3682: 854e mv a0,s3 + 3684: 79e2 ld s3,56(sp) + 3686: 6125 addi sp,sp,96 + 3688: 8082 ret + +000000000000368a <.L52>: +alias_printall(): +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:204 + nsh_output(vtbl, g_aliasfmt, alias->name, alias->value); + 368a: 6894 ld a3,16(s1) + 368c: 6490 ld a2,8(s1) + 368e: 781c ld a5,48(s0) + 3690: 85ca mv a1,s2 + 3692: 8522 mv a0,s0 + 3694: 9782 jalr a5 + +0000000000003696 <.LVL43>: +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:202 + for (alias = alias_head(&vtbl->alist); alias; alias = alias->next) + 3696: 6084 ld s1,0(s1) + 3698: bfc9 j 366a <.L51> 3698: R_RISCV_RVC_JUMP .L51 + +000000000000369a <.L50>: +cmd_alias(): +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:337 + for (arg = argv + 1; *arg; arg++) + 369a: 0921 addi s2,s2,8 + +000000000000369c <.LVL46>: +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:321 + int ret = OK; + 369c: 4981 li s3,0 +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:363 + nsh_error(vtbl, g_noalias_format, "alias", *arg); + 369e: 00000a17 auipc s4,0x0 369e: R_RISCV_PCREL_HI20 .LC1 + 369e: R_RISCV_RELAX *ABS* + 36a2: 000a0a13 mv s4,s4 36a2: R_RISCV_PCREL_LO12_I .L0 + 36a2: R_RISCV_RELAX *ABS* + 36a6: 00000a97 auipc s5,0x0 36a6: R_RISCV_PCREL_HI20 .LC2 + 36a6: R_RISCV_RELAX *ABS* + 36aa: 000a8a93 mv s5,s5 36aa: R_RISCV_PCREL_LO12_I .L0 + 36aa: R_RISCV_RELAX *ABS* +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:357 + nsh_output(vtbl, g_aliasfmt, alias->name, alias->value); + 36ae: 00000b17 auipc s6,0x0 36ae: R_RISCV_PCREL_HI20 .LANCHOR0 + 36ae: R_RISCV_RELAX *ABS* + 36b2: 000b0b13 mv s6,s6 36b2: R_RISCV_PCREL_LO12_I .L0 + 36b2: R_RISCV_RELAX *ABS* +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:350 + nsh_error(vtbl, g_savefail_format, *arg, value); + 36b6: 00000b97 auipc s7,0x0 36b6: R_RISCV_PCREL_HI20 .LC0 + 36b6: R_RISCV_RELAX *ABS* + 36ba: 000b8b93 mv s7,s7 36ba: R_RISCV_PCREL_LO12_I .L0 + 36ba: R_RISCV_RELAX *ABS* + +00000000000036be <.LBB36>: +alias_save(): +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:174 + else if ((alias = alias_remfirst(&vtbl->afreelist)) != NULL) + 36be: 28840c13 addi s8,s0,648 + +00000000000036c2 <.L54>: +cmd_alias(): +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:337 (discriminator 1) + for (arg = argv + 1; *arg; arg++) + 36c2: 00093483 ld s1,0(s2) # 3662 <.LVL38> + 36c6: d4c5 beqz s1,366e <.L74> 36c6: R_RISCV_RVC_BRANCH .L74 +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:341 + if ((value = strchr(*arg, '=')) != NULL) + 36c8: 03d00593 li a1,61 + 36cc: 8526 mv a0,s1 + 36ce: 00000097 auipc ra,0x0 36ce: R_RISCV_CALL strchr + 36ce: R_RISCV_RELAX *ABS* + 36d2: 000080e7 jalr ra # 36ce <.L54+0xc> + +00000000000036d6 <.LVL48>: + 36d6: c945 beqz a0,3786 <.L55> 36d6: R_RISCV_RVC_BRANCH .L55 +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:345 + *value++ = '\0'; + 36d8: 00050023 sb zero,0(a0) +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:347 + ret = alias_save(vtbl, *arg, value); + 36dc: 00093983 ld s3,0(s2) + +00000000000036e0 <.LVL49>: +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:345 + *value++ = '\0'; + 36e0: 00150c93 addi s9,a0,1 + +00000000000036e4 <.LBB42>: +alias_save(): +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:162 + if (!name || *name == '\0' || !value) + 36e4: 08098f63 beqz s3,3782 <.L66> 36e4: R_RISCV_BRANCH .L66 + 36e8: 0009c783 lbu a5,0(s3) + 36ec: cbd9 beqz a5,3782 <.L66> 36ec: R_RISCV_RVC_BRANCH .L66 +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:167 + if ((alias = alias_find(vtbl, name)) != NULL) + 36ee: 27843503 ld a0,632(s0) + 36f2: 85ce mv a1,s3 + 36f4: 00000097 auipc ra,0x0 36f4: R_RISCV_CALL alias_find.isra.0 + 36f4: R_RISCV_RELAX *ABS* + 36f8: 000080e7 jalr ra # 36f4 <.LBB42+0x10> + +00000000000036fc <.LVL51>: + 36fc: 84aa mv s1,a0 + +00000000000036fe <.LVL52>: + 36fe: c129 beqz a0,3740 <.L57> 36fe: R_RISCV_RVC_BRANCH .L57 +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:171 + free(alias->value); + 3700: 6908 ld a0,16(a0) + 3702: 00000097 auipc ra,0x0 3702: R_RISCV_CALL free + 3702: R_RISCV_RELAX *ABS* + 3706: 000080e7 jalr ra # 3702 <.LVL52+0x4> + +000000000000370a <.LVL53>: +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:172 + alias->value = strdup(value); + 370a: 8566 mv a0,s9 + 370c: 00000097 auipc ra,0x0 370c: R_RISCV_CALL strdup + 370c: R_RISCV_RELAX *ABS* + 3710: 000080e7 jalr ra # 370c <.LVL53+0x2> + +0000000000003714 <.LVL54>: + 3714: e888 sd a0,16(s1) + +0000000000003716 <.L58>: +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:183 + if (!alias || !alias->name || !alias->value) + 3716: 649c ld a5,8(s1) + 3718: c781 beqz a5,3720 <.L59> 3718: R_RISCV_RVC_BRANCH .L59 + 371a: 689c ld a5,16(s1) +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:160 + int ret = OK; + 371c: 4981 li s3,0 + +000000000000371e <.LVL55>: +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:183 + if (!alias || !alias->name || !alias->value) + 371e: ef99 bnez a5,373c <.L61> 371e: R_RISCV_RVC_BRANCH .L61 + +0000000000003720 <.L59>: +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:187 + alias_delete(vtbl, alias); + 3720: 85a6 mv a1,s1 + 3722: 8522 mv a0,s0 + 3724: 00000097 auipc ra,0x0 3724: R_RISCV_CALL alias_delete + 3724: R_RISCV_RELAX *ABS* + 3728: 000080e7 jalr ra # 3724 <.L59+0x4> + +000000000000372c <.LBB43>: +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:188 + ret = -ENOMEM; + 372c: 59d1 li s3,-12 + +000000000000372e <.L56>: +cmd_alias(): +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:350 + nsh_error(vtbl, g_savefail_format, *arg, value); + 372e: 741c ld a5,40(s0) + 3730: 00093603 ld a2,0(s2) + 3734: 86e6 mv a3,s9 + 3736: 85de mv a1,s7 + +0000000000003738 <.L77>: +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:357 + nsh_output(vtbl, g_aliasfmt, alias->name, alias->value); + 3738: 8522 mv a0,s0 + 373a: 9782 jalr a5 + +000000000000373c <.L61>: +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:337 (discriminator 2) + for (arg = argv + 1; *arg; arg++) + 373c: 0921 addi s2,s2,8 + 373e: b751 j 36c2 <.L54> 373e: R_RISCV_RVC_JUMP .L54 + +0000000000003740 <.L57>: +alias_save(): +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:174 + else if ((alias = alias_remfirst(&vtbl->afreelist)) != NULL) + 3740: 8562 mv a0,s8 + 3742: 00000097 auipc ra,0x0 3742: R_RISCV_CALL sq_remfirst + 3742: R_RISCV_RELAX *ABS* + 3746: 000080e7 jalr ra # 3742 <.L57+0x2> + +000000000000374a <.LVL63>: + 374a: 84aa mv s1,a0 + 374c: d971 beqz a0,3720 <.L59> 374c: R_RISCV_RVC_BRANCH .L59 +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:178 + alias->name = strdup(name); + 374e: 854e mv a0,s3 + 3750: 00000097 auipc ra,0x0 3750: R_RISCV_CALL strdup + 3750: R_RISCV_RELAX *ABS* + 3754: 000080e7 jalr ra # 3750 <.LVL63+0x6> + +0000000000003758 <.LVL65>: + 3758: e488 sd a0,8(s1) +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:179 + alias->value = strdup(value); + 375a: 8566 mv a0,s9 + 375c: 00000097 auipc ra,0x0 375c: R_RISCV_CALL strdup + 375c: R_RISCV_RELAX *ABS* + 3760: 000080e7 jalr ra # 375c <.LVL65+0x4> + +0000000000003764 <.LVL66>: + 3764: e888 sd a0,16(s1) + +0000000000003766 <.LBB38>: +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:180 + sq_addlast((FAR sq_entry_t *)alias, &vtbl->alist); + 3766: 0004b023 sd zero,0(s1) + 376a: 27843783 ld a5,632(s0) + 376e: e791 bnez a5,377a <.L60> 376e: R_RISCV_RVC_BRANCH .L60 + 3770: 26943c23 sd s1,632(s0) + +0000000000003774 <.L78>: + 3774: 28943023 sd s1,640(s0) + 3778: bf79 j 3716 <.L58> 3778: R_RISCV_RVC_JUMP .L58 + +000000000000377a <.L60>: + 377a: 28043783 ld a5,640(s0) + 377e: e384 sd s1,0(a5) + 3780: bfd5 j 3774 <.L78> 3780: R_RISCV_RVC_JUMP .L78 + +0000000000003782 <.L66>: +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:164 + return -EINVAL; + 3782: 59a9 li s3,-22 + +0000000000003784 <.LVL69>: + 3784: b76d j 372e <.L56> 3784: R_RISCV_RVC_JUMP .L56 + +0000000000003786 <.L55>: +cmd_alias(): +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:353 + else if ((alias = alias_find(vtbl, *arg)) != NULL) + 3786: 27843503 ld a0,632(s0) + +000000000000378a <.LVL71>: + 378a: 85a6 mv a1,s1 + 378c: 00000097 auipc ra,0x0 378c: R_RISCV_CALL alias_find.isra.0 + 378c: R_RISCV_RELAX *ABS* + 3790: 000080e7 jalr ra # 378c <.LVL71+0x2> + +0000000000003794 <.LVL72>: + 3794: c511 beqz a0,37a0 <.L62> 3794: R_RISCV_RVC_BRANCH .L62 +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:357 + nsh_output(vtbl, g_aliasfmt, alias->name, alias->value); + 3796: 781c ld a5,48(s0) + 3798: 6914 ld a3,16(a0) + 379a: 6510 ld a2,8(a0) + 379c: 85da mv a1,s6 + 379e: bf69 j 3738 <.L77> 379e: R_RISCV_RVC_JUMP .L77 + +00000000000037a0 <.L62>: +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:363 + nsh_error(vtbl, g_noalias_format, "alias", *arg); + 37a0: 741c ld a5,40(s0) + 37a2: 86a6 mv a3,s1 + 37a4: 8652 mv a2,s4 + 37a6: 85d6 mv a1,s5 + 37a8: 8522 mv a0,s0 + +00000000000037aa <.LVL73>: + 37aa: 9782 jalr a5 + +00000000000037ac <.LVL74>: +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:364 + ret = -ENOENT; + 37ac: 59f9 li s3,-2 + 37ae: b779 j 373c <.L61> 37ae: R_RISCV_RVC_JUMP .L61 + +00000000000037b0 : +cmd_unalias(): +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:392 + * Zero (OK) on success; a negated errno value on failure. + * + ****************************************************************************/ + +int cmd_unalias(FAR struct nsh_vtbl_s *vtbl, int argc, FAR char **argv) +{ + 37b0: 7139 addi sp,sp,-64 + 37b2: f822 sd s0,48(sp) + 37b4: f426 sd s1,40(sp) + 37b6: f04a sd s2,32(sp) + 37b8: fc06 sd ra,56(sp) + 37ba: ec4e sd s3,24(sp) + 37bc: e852 sd s4,16(sp) + 37be: 84aa mv s1,a0 + 37c0: 892e mv s2,a1 + 37c2: 8432 mv s0,a2 +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:400 + int option; + int ret = OK; + + /* Init, if necessary */ + + alias_init(vtbl); + 37c4: 00000097 auipc ra,0x0 37c4: R_RISCV_CALL alias_init + 37c4: R_RISCV_RELAX *ABS* + 37c8: 000080e7 jalr ra # 37c4 + +00000000000037cc <.LVL76>: +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:402 + + if (argc < 2) + 37cc: 4785 li a5,1 + 37ce: 0927da63 bge a5,s2,3862 <.L88> 37ce: R_RISCV_BRANCH .L88 +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:411 + return -EINVAL; + } + + /* If '-a' is provided, then just wipe them all */ + + if ((option = getopt(argc, argv, "a")) == 'a') + 37d2: 85a2 mv a1,s0 + 37d4: 854a mv a0,s2 + 37d6: 00000617 auipc a2,0x0 37d6: R_RISCV_PCREL_HI20 .LC3 + 37d6: R_RISCV_RELAX *ABS* + 37da: 00060613 mv a2,a2 37da: R_RISCV_PCREL_LO12_I .L0 + 37da: R_RISCV_RELAX *ABS* + 37de: 00000097 auipc ra,0x0 37de: R_RISCV_CALL getopt + 37de: R_RISCV_RELAX *ABS* + 37e2: 000080e7 jalr ra # 37de <.LVL76+0x12> + +00000000000037e6 <.LVL77>: + 37e6: 06100793 li a5,97 +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:419 + return ret; + } + + /* Traverse through the argument vector */ + + for (arg = argv + 1; *arg; arg++) + 37ea: 0421 addi s0,s0,8 + +00000000000037ec <.LVL78>: +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:396 + int ret = OK; + 37ec: 4901 li s2,0 +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:411 + if ((option = getopt(argc, argv, "a")) == 'a') + 37ee: 02f50e63 beq a0,a5,382a <.L90> 37ee: R_RISCV_BRANCH .L90 +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:431 + } + else + { + /* Nothing found */ + + nsh_error(vtbl, g_noalias_format, "unalias", *arg); + 37f2: 00000997 auipc s3,0x0 37f2: R_RISCV_PCREL_HI20 .LC4 + 37f2: R_RISCV_RELAX *ABS* + 37f6: 00098993 mv s3,s3 37f6: R_RISCV_PCREL_LO12_I .L0 + 37f6: R_RISCV_RELAX *ABS* + 37fa: 00000a17 auipc s4,0x0 37fa: R_RISCV_PCREL_HI20 .LC2 + 37fa: R_RISCV_RELAX *ABS* + 37fe: 000a0a13 mv s4,s4 37fe: R_RISCV_PCREL_LO12_I .L0 + 37fe: R_RISCV_RELAX *ABS* + +0000000000003802 <.L84>: +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:419 (discriminator 1) + for (arg = argv + 1; *arg; arg++) + 3802: 6014 ld a3,0(s0) + 3804: c69d beqz a3,3832 <.L80> 3804: R_RISCV_RVC_BRANCH .L80 +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:421 + if ((alias = alias_find(vtbl, *arg)) != NULL) + 3806: 2784b503 ld a0,632(s1) + 380a: 85b6 mv a1,a3 + 380c: e436 sd a3,8(sp) + 380e: 00000097 auipc ra,0x0 380e: R_RISCV_CALL alias_find.isra.0 + 380e: R_RISCV_RELAX *ABS* + 3812: 000080e7 jalr ra # 380e <.L84+0xc> + +0000000000003816 <.LVL80>: + 3816: 66a2 ld a3,8(sp) + 3818: 85aa mv a1,a0 + +000000000000381a <.LVL81>: + 381a: cd0d beqz a0,3854 <.L85> 381a: R_RISCV_RVC_BRANCH .L85 +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:425 + alias_delete(vtbl, alias); + 381c: 8526 mv a0,s1 + +000000000000381e <.LVL82>: + 381e: 00000097 auipc ra,0x0 381e: R_RISCV_CALL alias_delete + 381e: R_RISCV_RELAX *ABS* + 3822: 000080e7 jalr ra # 381e <.LVL82> + +0000000000003826 <.L86>: +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:419 (discriminator 2) + for (arg = argv + 1; *arg; arg++) + 3826: 0421 addi s0,s0,8 + 3828: bfe9 j 3802 <.L84> 3828: R_RISCV_RVC_JUMP .L84 + +000000000000382a <.L90>: +alias_removeall(): +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:217 + alias = alias_head(&vtbl->alist); + 382a: 2784b583 ld a1,632(s1) + +000000000000382e <.L82>: +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:219 + while (alias) + 382e: e999 bnez a1,3844 <.L83> 382e: R_RISCV_RVC_BRANCH .L83 + +0000000000003830 <.LBE47>: +cmd_unalias(): +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:414 + return ret; + 3830: 4901 li s2,0 + +0000000000003832 <.L80>: +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:437 + ret = -ENOENT; + } + } + + return ret; +} + 3832: 70e2 ld ra,56(sp) + 3834: 7442 ld s0,48(sp) + 3836: 74a2 ld s1,40(sp) + +0000000000003838 <.LVL88>: + 3838: 69e2 ld s3,24(sp) + 383a: 6a42 ld s4,16(sp) + 383c: 854a mv a0,s2 + 383e: 7902 ld s2,32(sp) + 3840: 6121 addi sp,sp,64 + 3842: 8082 ret + +0000000000003844 <.L83>: +alias_removeall(): +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:221 + next = alias->next; + 3844: 6180 ld s0,0(a1) + +0000000000003846 <.LVL90>: +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:222 + alias_delete(vtbl, alias); + 3846: 8526 mv a0,s1 + 3848: 00000097 auipc ra,0x0 3848: R_RISCV_CALL alias_delete + 3848: R_RISCV_RELAX *ABS* + 384c: 000080e7 jalr ra # 3848 <.LVL90+0x2> + +0000000000003850 <.LVL91>: +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:223 + alias = next; + 3850: 85a2 mv a1,s0 + 3852: bff1 j 382e <.L82> 3852: R_RISCV_RVC_JUMP .L82 + +0000000000003854 <.L85>: +cmd_unalias(): +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:431 + nsh_error(vtbl, g_noalias_format, "unalias", *arg); + 3854: 749c ld a5,40(s1) + 3856: 864e mv a2,s3 + 3858: 85d2 mv a1,s4 + 385a: 8526 mv a0,s1 + +000000000000385c <.LVL93>: + 385c: 9782 jalr a5 + +000000000000385e <.LVL94>: +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:432 + ret = -ENOENT; + 385e: 5979 li s2,-2 + 3860: b7d9 j 3826 <.L86> 3860: R_RISCV_RVC_JUMP .L86 + +0000000000003862 <.L88>: +/Users/Luppy/ox64/apps/nshlib/nsh_alias.c:406 + return -EINVAL; + 3862: 5929 li s2,-22 + 3864: b7f9 j 3832 <.L80> 3864: R_RISCV_RVC_JUMP .L80 + +0000000000003866 : +cmd_unrecognized(): +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:1057 + * Name: cmd_unrecognized + ****************************************************************************/ + +static int cmd_unrecognized(FAR struct nsh_vtbl_s *vtbl, int argc, + FAR char **argv) +{ + 3866: 1141 addi sp,sp,-16 + 3868: e406 sd ra,8(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:1060 + UNUSED(argc); + + nsh_error(vtbl, g_fmtcmdnotfound, argv[0]); + 386a: 751c ld a5,40(a0) + 386c: 6210 ld a2,0(a2) + +000000000000386e <.LVL1>: + 386e: 00000597 auipc a1,0x0 386e: R_RISCV_PCREL_HI20 g_fmtcmdnotfound + 386e: R_RISCV_RELAX *ABS* + 3872: 00058593 mv a1,a1 3872: R_RISCV_PCREL_LO12_I .L0 + 3872: R_RISCV_RELAX *ABS* + +0000000000003876 <.LVL2>: + 3876: 9782 jalr a5 + +0000000000003878 <.LVL3>: +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:1062 + return ERROR; +} + 3878: 60a2 ld ra,8(sp) + 387a: 557d li a0,-1 + 387c: 0141 addi sp,sp,16 + 387e: 8082 ret + +0000000000003880 : +cmd_true(): +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:1076 + UNUSED(vtbl); + UNUSED(argc); + UNUSED(argv); + + return OK; +} + 3880: 4501 li a0,0 + +0000000000003882 <.LVL5>: + 3882: 8082 ret + +0000000000003884 : +cmd_false(): +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:1092 + UNUSED(vtbl); + UNUSED(argc); + UNUSED(argv); + + return ERROR; +} + 3884: 557d li a0,-1 + +0000000000003886 <.LVL7>: + 3886: 8082 ret + +0000000000003888 : +cmd_exit(): +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:1101 + * Name: cmd_exit + ****************************************************************************/ + +#ifndef CONFIG_NSH_DISABLE_EXIT +static int cmd_exit(FAR struct nsh_vtbl_s *vtbl, int argc, FAR char **argv) +{ + 3888: 1141 addi sp,sp,-16 + 388a: e406 sd ra,8(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:1105 + UNUSED(argc); + UNUSED(argv); + + nsh_exit(vtbl, 0); + 388c: 693c ld a5,80(a0) + 388e: 4581 li a1,0 + +0000000000003890 <.LVL9>: + 3890: 9782 jalr a5 + +0000000000003892 : +cmd_expr(): +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:1112 +} +#endif + +#ifndef CONFIG_NSH_DISABLE_EXPR +static int cmd_expr(FAR struct nsh_vtbl_s *vtbl, int argc, FAR char **argv) +{ + 3892: 7179 addi sp,sp,-48 + 3894: ec26 sd s1,24(sp) + 3896: e84a sd s2,16(sp) + 3898: f406 sd ra,40(sp) + 389a: f022 sd s0,32(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:1118 + int operand1; + int operand2; + int result; + FAR char *endptr; + + if (argc != 4) + 389c: 4791 li a5,4 +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:1112 +{ + 389e: 84aa mv s1,a0 + 38a0: 8932 mv s2,a2 +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:1118 + if (argc != 4) + 38a2: 02f58063 beq a1,a5,38c2 <.L8> 38a2: R_RISCV_BRANCH .L8 +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:1120 + { + nsh_output(vtbl, "Usage: %s \n", + 38a6: 791c ld a5,48(a0) + 38a8: 6210 ld a2,0(a2) + +00000000000038aa <.LVL12>: + 38aa: 00000597 auipc a1,0x0 38aa: R_RISCV_PCREL_HI20 .LC0 + 38aa: R_RISCV_RELAX *ABS* + 38ae: 00058593 mv a1,a1 38ae: R_RISCV_PCREL_LO12_I .L0 + 38ae: R_RISCV_RELAX *ABS* + +00000000000038b2 <.LVL13>: + 38b2: 9782 jalr a5 + +00000000000038b4 <.L23>: +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:1129 + + operand1 = strtol(argv[1], &endptr, 0); + if (*endptr != '\0') + { + nsh_output(vtbl, "operand1 invalid\n"); + return ERROR; + 38b4: 557d li a0,-1 + +00000000000038b6 <.L9>: +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:1175 + return ERROR; + } + + nsh_output(vtbl, "%d\n", result); + return OK; +} + 38b6: 70a2 ld ra,40(sp) + 38b8: 7402 ld s0,32(sp) + 38ba: 64e2 ld s1,24(sp) + +00000000000038bc <.LVL15>: + 38bc: 6942 ld s2,16(sp) + +00000000000038be <.LVL16>: + 38be: 6145 addi sp,sp,48 + 38c0: 8082 ret + +00000000000038c2 <.L8>: +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:1125 + operand1 = strtol(argv[1], &endptr, 0); + 38c2: 00893503 ld a0,8(s2) + 38c6: 4601 li a2,0 + +00000000000038c8 <.LVL18>: + 38c8: 002c addi a1,sp,8 + +00000000000038ca <.LVL19>: + 38ca: 00000097 auipc ra,0x0 38ca: R_RISCV_CALL strtol + 38ca: R_RISCV_RELAX *ABS* + 38ce: 000080e7 jalr ra # 38ca <.LVL19> + +00000000000038d2 <.LVL20>: +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:1126 + if (*endptr != '\0') + 38d2: 67a2 ld a5,8(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:1125 + operand1 = strtol(argv[1], &endptr, 0); + 38d4: 0005041b sext.w s0,a0 +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:1126 + if (*endptr != '\0') + 38d8: 0007c783 lbu a5,0(a5) + 38dc: cb89 beqz a5,38ee <.L10> 38dc: R_RISCV_RVC_BRANCH .L10 +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:1128 + nsh_output(vtbl, "operand1 invalid\n"); + 38de: 789c ld a5,48(s1) + 38e0: 00000597 auipc a1,0x0 38e0: R_RISCV_PCREL_HI20 .LC1 + 38e0: R_RISCV_RELAX *ABS* + 38e4: 00058593 mv a1,a1 38e4: R_RISCV_PCREL_LO12_I .L0 + 38e4: R_RISCV_RELAX *ABS* + 38e8: 8526 mv a0,s1 + 38ea: 9782 jalr a5 + +00000000000038ec <.LVL22>: + 38ec: b7e1 j 38b4 <.L23> 38ec: R_RISCV_RVC_JUMP .L23 + +00000000000038ee <.L10>: +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:1132 + operand2 = strtol(argv[3], &endptr, 0); + 38ee: 01893503 ld a0,24(s2) + 38f2: 4601 li a2,0 + 38f4: 002c addi a1,sp,8 + 38f6: 00000097 auipc ra,0x0 38f6: R_RISCV_CALL strtol + 38f6: R_RISCV_RELAX *ABS* + 38fa: 000080e7 jalr ra # 38f6 <.L10+0x8> + +00000000000038fe <.LVL23>: +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:1133 + if (*endptr != '\0') + 38fe: 67a2 ld a5,8(sp) + 3900: 7898 ld a4,48(s1) +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:1132 + operand2 = strtol(argv[3], &endptr, 0); + 3902: 0005061b sext.w a2,a0 + +0000000000003906 <.LVL24>: +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:1133 + if (*endptr != '\0') + 3906: 0007c783 lbu a5,0(a5) + 390a: cb81 beqz a5,391a <.L11> 390a: R_RISCV_RVC_BRANCH .L11 + +000000000000390c <.L25>: +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:1162 + nsh_output(vtbl, "operand2 invalid\n"); + 390c: 00000597 auipc a1,0x0 390c: R_RISCV_PCREL_HI20 .LC2 + 390c: R_RISCV_RELAX *ABS* + 3910: 00058593 mv a1,a1 3910: R_RISCV_PCREL_LO12_I .L0 + 3910: R_RISCV_RELAX *ABS* + +0000000000003914 <.L24>: +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:1169 + nsh_output(vtbl, "Unknown operator\n"); + 3914: 8526 mv a0,s1 + 3916: 9702 jalr a4 + +0000000000003918 <.LVL25>: +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:1170 + return ERROR; + 3918: bf71 j 38b4 <.L23> 3918: R_RISCV_RVC_JUMP .L23 + +000000000000391a <.L11>: +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:1139 + switch (argv[2][0]) + 391a: 01093783 ld a5,16(s2) + 391e: 46a9 li a3,10 + 3920: 0007c783 lbu a5,0(a5) + 3924: fdb7879b addiw a5,a5,-37 + 3928: 0ff7f793 zext.b a5,a5 + 392c: 04f6e263 bltu a3,a5,3970 <.L12> 392c: R_RISCV_BRANCH .L12 + 3930: 00000697 auipc a3,0x0 3930: R_RISCV_PCREL_HI20 .L14 + 3930: R_RISCV_RELAX *ABS* + 3934: 00068693 mv a3,a3 3934: R_RISCV_PCREL_LO12_I .L0 + 3934: R_RISCV_RELAX *ABS* + 3938: 078a slli a5,a5,0x2 + 393a: 97b6 add a5,a5,a3 + 393c: 439c lw a5,0(a5) + 393e: 97b6 add a5,a5,a3 + 3940: 8782 jr a5 + +0000000000003942 <.L16>: +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:1142 + result = operand1 + operand2; + 3942: 9e21 addw a2,a2,s0 + +0000000000003944 <.L19>: +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:1173 + nsh_output(vtbl, "%d\n", result); + 3944: 00000597 auipc a1,0x0 3944: R_RISCV_PCREL_HI20 .LC4 + 3944: R_RISCV_RELAX *ABS* + 3948: 00058593 mv a1,a1 3948: R_RISCV_PCREL_LO12_I .L0 + 3948: R_RISCV_RELAX *ABS* + 394c: 8526 mv a0,s1 + +000000000000394e <.LVL28>: + 394e: 9702 jalr a4 + +0000000000003950 <.LVL29>: +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:1174 + return OK; + 3950: 4501 li a0,0 + 3952: b795 j 38b6 <.L9> 3952: R_RISCV_RVC_JUMP .L9 + +0000000000003954 <.L15>: +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:1145 + result = operand1 - operand2; + 3954: 40c4063b subw a2,s0,a2 + +0000000000003958 <.LVL31>: +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:1146 + break; + 3958: b7f5 j 3944 <.L19> 3958: R_RISCV_RVC_JUMP .L19 + +000000000000395a <.L17>: +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:1148 + result = operand1 * operand2; + 395a: 02c4063b mulw a2,s0,a2 + +000000000000395e <.LVL33>: +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:1149 + break; + 395e: b7dd j 3944 <.L19> 395e: R_RISCV_RVC_JUMP .L19 + +0000000000003960 <.L13>: +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:1151 + if (operand2 == 0) + 3960: d655 beqz a2,390c <.L25> 3960: R_RISCV_RVC_BRANCH .L25 +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:1157 + result = operand1 / operand2; + 3962: 02c4463b divw a2,s0,a2 + +0000000000003966 <.LVL35>: +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:1158 + break; + 3966: bff9 j 3944 <.L19> 3966: R_RISCV_RVC_JUMP .L19 + +0000000000003968 <.L18>: +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:1160 + if (operand2 == 0) + 3968: d255 beqz a2,390c <.L25> 3968: R_RISCV_RVC_BRANCH .L25 +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:1166 + result = operand1 % operand2; + 396a: 02c4663b remw a2,s0,a2 + +000000000000396e <.LVL37>: +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:1167 + break; + 396e: bfd9 j 3944 <.L19> 396e: R_RISCV_RVC_JUMP .L19 + +0000000000003970 <.L12>: +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:1169 + nsh_output(vtbl, "Unknown operator\n"); + 3970: 00000597 auipc a1,0x0 3970: R_RISCV_PCREL_HI20 .LC3 + 3970: R_RISCV_RELAX *ABS* + 3974: 00058593 mv a1,a1 3974: R_RISCV_PCREL_LO12_I .L0 + 3974: R_RISCV_RELAX *ABS* + 3978: bf71 j 3914 <.L24> 3978: R_RISCV_RVC_JUMP .L24 + +000000000000397a : +help_showcmd(): +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:799 + if (cmdmap->usage) + 397a: 6d94 ld a3,24(a1) +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:801 + nsh_output(vtbl, " %s %s\n", cmdmap->cmd, cmdmap->usage); + 397c: 6190 ld a2,0(a1) + 397e: 791c ld a5,48(a0) +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:799 + if (cmdmap->usage) + 3980: c691 beqz a3,398c <.L27> 3980: R_RISCV_RVC_BRANCH .L27 +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:801 + nsh_output(vtbl, " %s %s\n", cmdmap->cmd, cmdmap->usage); + 3982: 00000597 auipc a1,0x0 3982: R_RISCV_PCREL_HI20 .LC5 + 3982: R_RISCV_RELAX *ABS* + 3986: 00058593 mv a1,a1 3986: R_RISCV_PCREL_LO12_I .L0 + 3986: R_RISCV_RELAX *ABS* + +000000000000398a <.LVL40>: + 398a: 8782 jr a5 + +000000000000398c <.L27>: +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:805 + nsh_output(vtbl, " %s\n", cmdmap->cmd); + 398c: 00000597 auipc a1,0x0 398c: R_RISCV_PCREL_HI20 .LC6 + 398c: R_RISCV_RELAX *ABS* + 3990: 00058593 mv a1,a1 3990: R_RISCV_PCREL_LO12_I .L0 + 3990: R_RISCV_RELAX *ABS* + +0000000000003994 <.LVL42>: + 3994: 8782 jr a5 + +0000000000003996 : +help_cmd(): +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:815 +static int help_cmd(FAR struct nsh_vtbl_s *vtbl, FAR const char *cmd) + 3996: 7179 addi sp,sp,-48 + 3998: f022 sd s0,32(sp) + 399a: ec26 sd s1,24(sp) + 399c: f406 sd ra,40(sp) + 399e: 842a mv s0,a0 + 39a0: 862e mv a2,a1 +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:821 + for (cmdmap = g_cmdmap; cmdmap->cmd; cmdmap++) + 39a2: 00000497 auipc s1,0x0 39a2: R_RISCV_PCREL_HI20 .LANCHOR0 + 39a2: R_RISCV_RELAX *ABS* + 39a6: 00048493 mv s1,s1 39a6: R_RISCV_PCREL_LO12_I .L0 + 39a6: R_RISCV_RELAX *ABS* + +00000000000039aa <.L29>: + 39aa: 6088 ld a0,0(s1) + 39ac: ed01 bnez a0,39c4 <.L31> 39ac: R_RISCV_RVC_BRANCH .L31 +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:835 + nsh_error(vtbl, g_fmtcmdnotfound, cmd); + 39ae: 741c ld a5,40(s0) + 39b0: 8522 mv a0,s0 +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:837 +} + 39b2: 7402 ld s0,32(sp) + +00000000000039b4 <.LVL46>: + 39b4: 70a2 ld ra,40(sp) + 39b6: 64e2 ld s1,24(sp) + +00000000000039b8 <.LVL47>: +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:835 + nsh_error(vtbl, g_fmtcmdnotfound, cmd); + 39b8: 00000597 auipc a1,0x0 39b8: R_RISCV_PCREL_HI20 g_fmtcmdnotfound + 39b8: R_RISCV_RELAX *ABS* + 39bc: 00058593 mv a1,a1 39bc: R_RISCV_PCREL_LO12_I .L0 + 39bc: R_RISCV_RELAX *ABS* +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:837 +} + 39c0: 6145 addi sp,sp,48 +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:835 + nsh_error(vtbl, g_fmtcmdnotfound, cmd); + 39c2: 8782 jr a5 + +00000000000039c4 <.L31>: +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:825 + if (strcmp(cmdmap->cmd, cmd) == 0) + 39c4: 85b2 mv a1,a2 + 39c6: e432 sd a2,8(sp) + 39c8: 00000097 auipc ra,0x0 39c8: R_RISCV_CALL strcmp + 39c8: R_RISCV_RELAX *ABS* + 39cc: 000080e7 jalr ra # 39c8 <.L31+0x4> + +00000000000039d0 <.LVL49>: + 39d0: 6622 ld a2,8(sp) + 39d2: e115 bnez a0,39f6 <.L30> 39d2: R_RISCV_RVC_BRANCH .L30 + +00000000000039d4 <.LVL50>: +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:829 + nsh_output(vtbl, "%s usage:", cmd); + 39d4: 781c ld a5,48(s0) + 39d6: 00000597 auipc a1,0x0 39d6: R_RISCV_PCREL_HI20 .LC7 + 39d6: R_RISCV_RELAX *ABS* + 39da: 00058593 mv a1,a1 39da: R_RISCV_PCREL_LO12_I .L0 + 39da: R_RISCV_RELAX *ABS* + 39de: 8522 mv a0,s0 + 39e0: 9782 jalr a5 + +00000000000039e2 <.LVL51>: +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:830 + help_showcmd(vtbl, cmdmap); + 39e2: 8522 mv a0,s0 +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:837 +} + 39e4: 7402 ld s0,32(sp) + +00000000000039e6 <.LVL52>: + 39e6: 70a2 ld ra,40(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:830 + help_showcmd(vtbl, cmdmap); + 39e8: 85a6 mv a1,s1 +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:837 +} + 39ea: 64e2 ld s1,24(sp) + +00000000000039ec <.LVL53>: + 39ec: 6145 addi sp,sp,48 + +00000000000039ee <.LVL54>: +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:830 + help_showcmd(vtbl, cmdmap); + 39ee: 00000317 auipc t1,0x0 39ee: R_RISCV_CALL help_showcmd + 39ee: R_RISCV_RELAX *ABS* + 39f2: 00030067 jr t1 # 39ee <.LVL54> + +00000000000039f6 <.L30>: +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:821 + for (cmdmap = g_cmdmap; cmdmap->cmd; cmdmap++) + 39f6: 02048493 addi s1,s1,32 # 39c2 <.LVL47+0xa> + 39fa: bf45 j 39aa <.L29> 39fa: R_RISCV_RVC_JUMP .L29 + +00000000000039fc : +cmd_help(): +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:973 +{ + 39fc: 7155 addi sp,sp,-208 + 39fe: e1a2 sd s0,192(sp) + 3a00: e586 sd ra,200(sp) + 3a02: fd26 sd s1,184(sp) + 3a04: f94a sd s2,176(sp) + 3a06: f54e sd s3,168(sp) + 3a08: f152 sd s4,160(sp) + 3a0a: ed56 sd s5,152(sp) + 3a0c: e95a sd s6,144(sp) + 3a0e: e55e sd s7,136(sp) + 3a10: e162 sd s8,128(sp) + 3a12: fce6 sd s9,120(sp) + 3a14: f8ea sd s10,112(sp) + 3a16: f4ee sd s11,104(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:984 + if (argc > i) + 3a18: 4785 li a5,1 +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:973 +{ + 3a1a: 842a mv s0,a0 +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:984 + if (argc > i) + 3a1c: 1ab7d563 bge a5,a1,3bc6 <.L34> 3a1c: R_RISCV_BRANCH .L34 +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:986 + if (strcmp(argv[i], "-v") == 0) + 3a20: 6608 ld a0,8(a2) + +0000000000003a22 <.LVL58>: + 3a22: 892e mv s2,a1 + 3a24: 00000597 auipc a1,0x0 3a24: R_RISCV_PCREL_HI20 .LC8 + 3a24: R_RISCV_RELAX *ABS* + 3a28: 00058593 mv a1,a1 3a28: R_RISCV_PCREL_LO12_I .L0 + 3a28: R_RISCV_RELAX *ABS* + +0000000000003a2c <.LVL59>: + 3a2c: 84b2 mv s1,a2 + 3a2e: 00000097 auipc ra,0x0 3a2e: R_RISCV_CALL strcmp + 3a2e: R_RISCV_RELAX *ABS* + 3a32: 000080e7 jalr ra # 3a2e <.LVL59+0x2> + +0000000000003a36 <.LVL60>: + 3a36: 28050e63 beqz a0,3cd2 <.L35> 3a36: R_RISCV_BRANCH .L35 +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:983 + i = 1; + 3a3a: 4785 li a5,1 +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:976 + bool verbose = false; + 3a3c: 4701 li a4,0 + +0000000000003a3e <.L51>: +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:997 + cmd = argv[i]; + 3a3e: 078e slli a5,a5,0x3 + +0000000000003a40 <.LVL62>: + 3a40: 94be add s1,s1,a5 + +0000000000003a42 <.LVL63>: + 3a42: 6084 ld s1,0(s1) + +0000000000003a44 <.LVL64>: +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:1002 + if (verbose) + 3a44: 18070063 beqz a4,3bc4 <.L36> 3a44: R_RISCV_BRANCH .L36 + +0000000000003a48 <.L52>: +help_usage(): +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:758 + nsh_output(vtbl, "NSH command forms:\n"); + 3a48: 781c ld a5,48(s0) + 3a4a: 00000597 auipc a1,0x0 3a4a: R_RISCV_PCREL_HI20 .LC9 + 3a4a: R_RISCV_RELAX *ABS* + 3a4e: 00058593 mv a1,a1 3a4e: R_RISCV_PCREL_LO12_I .L0 + 3a4e: R_RISCV_RELAX *ABS* + 3a52: 8522 mv a0,s0 + 3a54: 9782 jalr a5 + +0000000000003a56 <.LVL66>: +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:760 + nsh_output(vtbl, " [nice [-d >]] " + 3a56: 781c ld a5,48(s0) + 3a58: 00000597 auipc a1,0x0 3a58: R_RISCV_PCREL_HI20 .LC10 + 3a58: R_RISCV_RELAX *ABS* + 3a5c: 00058593 mv a1,a1 3a5c: R_RISCV_PCREL_LO12_I .L0 + 3a5c: R_RISCV_RELAX *ABS* + 3a60: 8522 mv a0,s0 + 3a62: 9782 jalr a5 + +0000000000003a64 <.LVL67>: +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:767 + nsh_output(vtbl, "OR\n"); + 3a64: 781c ld a5,48(s0) + 3a66: 00000597 auipc a1,0x0 3a66: R_RISCV_PCREL_HI20 .LC11 + 3a66: R_RISCV_RELAX *ABS* + 3a6a: 00058593 mv a1,a1 3a6a: R_RISCV_PCREL_LO12_I .L0 + 3a6a: R_RISCV_RELAX *ABS* + 3a6e: 8522 mv a0,s0 + 3a70: 9782 jalr a5 + +0000000000003a72 <.LVL68>: +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:768 + nsh_output(vtbl, " if \n"); + 3a72: 781c ld a5,48(s0) + 3a74: 00000597 auipc a1,0x0 3a74: R_RISCV_PCREL_HI20 .LC12 + 3a74: R_RISCV_RELAX *ABS* + 3a78: 00058593 mv a1,a1 3a78: R_RISCV_PCREL_LO12_I .L0 + 3a78: R_RISCV_RELAX *ABS* + 3a7c: 8522 mv a0,s0 + 3a7e: 9782 jalr a5 + +0000000000003a80 <.LVL69>: +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:769 + nsh_output(vtbl, " then\n"); + 3a80: 781c ld a5,48(s0) + 3a82: 00000597 auipc a1,0x0 3a82: R_RISCV_PCREL_HI20 .LC13 + 3a82: R_RISCV_RELAX *ABS* + 3a86: 00058593 mv a1,a1 3a86: R_RISCV_PCREL_LO12_I .L0 + 3a86: R_RISCV_RELAX *ABS* + 3a8a: 8522 mv a0,s0 + 3a8c: 9782 jalr a5 + +0000000000003a8e <.LVL70>: +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:770 + nsh_output(vtbl, " [sequence of ]\n"); + 3a8e: 781c ld a5,48(s0) + 3a90: 00000597 auipc a1,0x0 3a90: R_RISCV_PCREL_HI20 .LC14 + 3a90: R_RISCV_RELAX *ABS* + 3a94: 00058593 mv a1,a1 3a94: R_RISCV_PCREL_LO12_I .L0 + 3a94: R_RISCV_RELAX *ABS* + 3a98: 8522 mv a0,s0 + 3a9a: 9782 jalr a5 + +0000000000003a9c <.LVL71>: +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:771 + nsh_output(vtbl, " else\n"); + 3a9c: 781c ld a5,48(s0) + 3a9e: 00000597 auipc a1,0x0 3a9e: R_RISCV_PCREL_HI20 .LC15 + 3a9e: R_RISCV_RELAX *ABS* + 3aa2: 00058593 mv a1,a1 3aa2: R_RISCV_PCREL_LO12_I .L0 + 3aa2: R_RISCV_RELAX *ABS* + 3aa6: 8522 mv a0,s0 + 3aa8: 9782 jalr a5 + +0000000000003aaa <.LVL72>: +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:772 + nsh_output(vtbl, " [sequence of ]\n"); + 3aaa: 781c ld a5,48(s0) + 3aac: 00000597 auipc a1,0x0 3aac: R_RISCV_PCREL_HI20 .LC14 + 3aac: R_RISCV_RELAX *ABS* + 3ab0: 00058593 mv a1,a1 3ab0: R_RISCV_PCREL_LO12_I .L0 + 3ab0: R_RISCV_RELAX *ABS* + 3ab4: 8522 mv a0,s0 + 3ab6: 9782 jalr a5 + +0000000000003ab8 <.LVL73>: +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:773 + nsh_output(vtbl, " fi\n\n"); + 3ab8: 781c ld a5,48(s0) + 3aba: 00000597 auipc a1,0x0 3aba: R_RISCV_PCREL_HI20 .LC16 + 3aba: R_RISCV_RELAX *ABS* + 3abe: 00058593 mv a1,a1 3abe: R_RISCV_PCREL_LO12_I .L0 + 3abe: R_RISCV_RELAX *ABS* + 3ac2: 8522 mv a0,s0 + 3ac4: 9782 jalr a5 + +0000000000003ac6 <.LVL74>: +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:776 + nsh_output(vtbl, "OR\n"); + 3ac6: 781c ld a5,48(s0) + 3ac8: 00000597 auipc a1,0x0 3ac8: R_RISCV_PCREL_HI20 .LC11 + 3ac8: R_RISCV_RELAX *ABS* + 3acc: 00058593 mv a1,a1 3acc: R_RISCV_PCREL_LO12_I .L0 + 3acc: R_RISCV_RELAX *ABS* + 3ad0: 8522 mv a0,s0 + 3ad2: 9782 jalr a5 + +0000000000003ad4 <.LVL75>: +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:777 + nsh_output(vtbl, " while \n"); + 3ad4: 781c ld a5,48(s0) + 3ad6: 00000597 auipc a1,0x0 3ad6: R_RISCV_PCREL_HI20 .LC17 + 3ad6: R_RISCV_RELAX *ABS* + 3ada: 00058593 mv a1,a1 3ada: R_RISCV_PCREL_LO12_I .L0 + 3ada: R_RISCV_RELAX *ABS* + 3ade: 8522 mv a0,s0 + 3ae0: 9782 jalr a5 + +0000000000003ae2 <.LVL76>: +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:778 + nsh_output(vtbl, " do\n"); + 3ae2: 781c ld a5,48(s0) + 3ae4: 00000597 auipc a1,0x0 3ae4: R_RISCV_PCREL_HI20 .LC18 + 3ae4: R_RISCV_RELAX *ABS* + 3ae8: 00058593 mv a1,a1 3ae8: R_RISCV_PCREL_LO12_I .L0 + 3ae8: R_RISCV_RELAX *ABS* + 3aec: 8522 mv a0,s0 + 3aee: 9782 jalr a5 + +0000000000003af0 <.LVL77>: +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:779 + nsh_output(vtbl, " [sequence of ]\n"); + 3af0: 781c ld a5,48(s0) + 3af2: 00000597 auipc a1,0x0 3af2: R_RISCV_PCREL_HI20 .LC14 + 3af2: R_RISCV_RELAX *ABS* + 3af6: 00058593 mv a1,a1 3af6: R_RISCV_PCREL_LO12_I .L0 + 3af6: R_RISCV_RELAX *ABS* + 3afa: 8522 mv a0,s0 + 3afc: 9782 jalr a5 + +0000000000003afe <.LVL78>: +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:780 + nsh_output(vtbl, " done\n\n"); + 3afe: 781c ld a5,48(s0) + 3b00: 00000597 auipc a1,0x0 3b00: R_RISCV_PCREL_HI20 .LC19 + 3b00: R_RISCV_RELAX *ABS* + 3b04: 00058593 mv a1,a1 3b04: R_RISCV_PCREL_LO12_I .L0 + 3b04: R_RISCV_RELAX *ABS* + 3b08: 8522 mv a0,s0 + 3b0a: 9782 jalr a5 + +0000000000003b0c <.LVL79>: +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:781 + nsh_output(vtbl, "OR\n"); + 3b0c: 781c ld a5,48(s0) + 3b0e: 00000597 auipc a1,0x0 3b0e: R_RISCV_PCREL_HI20 .LC11 + 3b0e: R_RISCV_RELAX *ABS* + 3b12: 00058593 mv a1,a1 3b12: R_RISCV_PCREL_LO12_I .L0 + 3b12: R_RISCV_RELAX *ABS* + 3b16: 8522 mv a0,s0 + 3b18: 9782 jalr a5 + +0000000000003b1a <.LVL80>: +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:782 + nsh_output(vtbl, " until \n"); + 3b1a: 781c ld a5,48(s0) + 3b1c: 00000597 auipc a1,0x0 3b1c: R_RISCV_PCREL_HI20 .LC20 + 3b1c: R_RISCV_RELAX *ABS* + 3b20: 00058593 mv a1,a1 3b20: R_RISCV_PCREL_LO12_I .L0 + 3b20: R_RISCV_RELAX *ABS* + 3b24: 8522 mv a0,s0 + 3b26: 9782 jalr a5 + +0000000000003b28 <.LVL81>: +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:783 + nsh_output(vtbl, " do\n"); + 3b28: 781c ld a5,48(s0) + 3b2a: 00000597 auipc a1,0x0 3b2a: R_RISCV_PCREL_HI20 .LC18 + 3b2a: R_RISCV_RELAX *ABS* + 3b2e: 00058593 mv a1,a1 3b2e: R_RISCV_PCREL_LO12_I .L0 + 3b2e: R_RISCV_RELAX *ABS* + 3b32: 8522 mv a0,s0 + 3b34: 9782 jalr a5 + +0000000000003b36 <.LVL82>: +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:784 + nsh_output(vtbl, " [sequence of ]\n"); + 3b36: 781c ld a5,48(s0) + 3b38: 00000597 auipc a1,0x0 3b38: R_RISCV_PCREL_HI20 .LC14 + 3b38: R_RISCV_RELAX *ABS* + 3b3c: 00058593 mv a1,a1 3b3c: R_RISCV_PCREL_LO12_I .L0 + 3b3c: R_RISCV_RELAX *ABS* + 3b40: 8522 mv a0,s0 + 3b42: 9782 jalr a5 + +0000000000003b44 <.LVL83>: +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:785 + nsh_output(vtbl, " done\n\n"); + 3b44: 781c ld a5,48(s0) + 3b46: 00000597 auipc a1,0x0 3b46: R_RISCV_PCREL_HI20 .LC19 + 3b46: R_RISCV_RELAX *ABS* + 3b4a: 00058593 mv a1,a1 3b4a: R_RISCV_PCREL_LO12_I .L0 + 3b4a: R_RISCV_RELAX *ABS* + 3b4e: 8522 mv a0,s0 + 3b50: 9782 jalr a5 + +0000000000003b52 <.LBE14>: +cmd_help(): +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:1015 + if (cmd) + 3b52: c895 beqz s1,3b86 <.L37> 3b52: R_RISCV_RVC_BRANCH .L37 + +0000000000003b54 <.L50>: +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:1019 + help_cmd(vtbl, cmd); + 3b54: 85a6 mv a1,s1 + 3b56: 8522 mv a0,s0 + 3b58: 00000097 auipc ra,0x0 3b58: R_RISCV_CALL help_cmd.isra.0 + 3b58: R_RISCV_RELAX *ABS* + 3b5c: 000080e7 jalr ra # 3b58 <.L50+0x4> + +0000000000003b60 <.L57>: +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:1048 +} + 3b60: 60ae ld ra,200(sp) + 3b62: 640e ld s0,192(sp) + +0000000000003b64 <.LVL86>: + 3b64: 74ea ld s1,184(sp) + 3b66: 794a ld s2,176(sp) + 3b68: 79aa ld s3,168(sp) + 3b6a: 7a0a ld s4,160(sp) + 3b6c: 6aea ld s5,152(sp) + 3b6e: 6b4a ld s6,144(sp) + 3b70: 6baa ld s7,136(sp) + 3b72: 6c0a ld s8,128(sp) + 3b74: 7ce6 ld s9,120(sp) + 3b76: 7d46 ld s10,112(sp) + 3b78: 7da6 ld s11,104(sp) + 3b7a: 4501 li a0,0 + 3b7c: 6169 addi sp,sp,208 + 3b7e: 8082 ret + +0000000000003b80 <.L54>: +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:989 + i++; + 3b80: 4789 li a5,2 +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:988 + verbose = true; + 3b82: 4705 li a4,1 + 3b84: bd6d j 3a3e <.L51> 3b84: R_RISCV_RVC_JUMP .L51 + +0000000000003b86 <.L37>: +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:1028 + nsh_output(vtbl, "Where is one of:\n"); + 3b86: 781c ld a5,48(s0) + 3b88: 00000597 auipc a1,0x0 3b88: R_RISCV_PCREL_HI20 .LC21 + 3b88: R_RISCV_RELAX *ABS* + 3b8c: 00058593 mv a1,a1 3b8c: R_RISCV_PCREL_LO12_I .L0 + 3b8c: R_RISCV_RELAX *ABS* + 3b90: 8522 mv a0,s0 + 3b92: 9782 jalr a5 + +0000000000003b94 <.LBB16>: +help_allcmds(): +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:851 + for (cmdmap = g_cmdmap; cmdmap->cmd; cmdmap++) + 3b94: 00000497 auipc s1,0x0 3b94: R_RISCV_PCREL_HI20 .LANCHOR0 + 3b94: R_RISCV_RELAX *ABS* + 3b98: 00048493 mv s1,s1 3b98: R_RISCV_PCREL_LO12_I .L0 + 3b98: R_RISCV_RELAX *ABS* + +0000000000003b9c <.L39>: +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:853 + help_showcmd(vtbl, cmdmap); + 3b9c: 85a6 mv a1,s1 + 3b9e: 8522 mv a0,s0 + 3ba0: 00000097 auipc ra,0x0 3ba0: R_RISCV_CALL help_showcmd + 3ba0: R_RISCV_RELAX *ABS* + 3ba4: 000080e7 jalr ra # 3ba0 <.L39+0x4> + +0000000000003ba8 <.LVL91>: +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:851 + for (cmdmap = g_cmdmap; cmdmap->cmd; cmdmap++) + 3ba8: 709c ld a5,32(s1) + 3baa: 02048493 addi s1,s1,32 # 3bb4 <.L46+0x2> + 3bae: f7fd bnez a5,3b9c <.L39> 3bae: R_RISCV_RVC_BRANCH .L39 + 3bb0: bf45 j 3b60 <.L57> 3bb0: R_RISCV_RVC_JUMP .L57 + +0000000000003bb2 <.L46>: +help_cmdlist(): +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:741 + line[offset++] = ' '; + 3bb2: 02049793 slli a5,s1,0x20 + 3bb6: 9381 srli a5,a5,0x20 + 3bb8: 1090 addi a2,sp,96 + 3bba: 97b2 add a5,a5,a2 + 3bbc: fb978423 sb s9,-88(a5) + 3bc0: 2485 addiw s1,s1,1 + +0000000000003bc2 <.LVL94>: + 3bc2: a8e9 j 3c9c <.L45> 3bc2: R_RISCV_RVC_JUMP .L45 + +0000000000003bc4 <.L36>: +cmd_help(): +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:1015 + if (cmd) + 3bc4: f8c1 bnez s1,3b54 <.L50> 3bc4: R_RISCV_RVC_BRANCH .L50 + +0000000000003bc6 <.L34>: +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:1037 + help_cmd(vtbl, "help"); + 3bc6: 00000597 auipc a1,0x0 3bc6: R_RISCV_PCREL_HI20 .LC22 + 3bc6: R_RISCV_RELAX *ABS* + 3bca: 00058593 mv a1,a1 3bca: R_RISCV_PCREL_LO12_I .L0 + 3bca: R_RISCV_RELAX *ABS* + 3bce: 8522 mv a0,s0 + 3bd0: 00000097 auipc ra,0x0 3bd0: R_RISCV_CALL help_cmd.isra.0 + 3bd0: R_RISCV_RELAX *ABS* + 3bd4: 000080e7 jalr ra # 3bd0 <.L34+0xa> + +0000000000003bd8 <.LVL97>: +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:1038 + nsh_output(vtbl, "\n"); + 3bd8: 781c ld a5,48(s0) + 3bda: 00000597 auipc a1,0x0 3bda: R_RISCV_PCREL_HI20 .LC23 + 3bda: R_RISCV_RELAX *ABS* + 3bde: 00058593 mv a1,a1 3bde: R_RISCV_PCREL_LO12_I .L0 + 3bde: R_RISCV_RELAX *ABS* + 3be2: 8522 mv a0,s0 + 3be4: 00000917 auipc s2,0x0 3be4: R_RISCV_PCREL_HI20 .LANCHOR0 + 3be4: R_RISCV_RELAX *ABS* + 3be8: 00090913 mv s2,s2 3be8: R_RISCV_PCREL_LO12_I .L0 + 3be8: R_RISCV_RELAX *ABS* + 3bec: 9782 jalr a5 + +0000000000003bee <.LBB21>: +help_cmdlist(): +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:689 + for (k = 0, colwidth = 0; k < NUM_CMDS; k++) + 3bee: 00000997 auipc s3,0x0 3bee: R_RISCV_PCREL_HI20 .LANCHOR0+0x640 + 3bee: R_RISCV_RELAX *ABS*+0x640 + 3bf2: 00098993 mv s3,s3 3bf2: R_RISCV_PCREL_LO12_I .L0 + 3bf2: R_RISCV_RELAX *ABS* + 3bf6: 4481 li s1,0 + 3bf8: 8a4a mv s4,s2 + +0000000000003bfa <.L41>: +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:691 + cmdwidth = strlen(g_cmdmap[k].cmd); + 3bfa: 00093503 ld a0,0(s2) # 3be4 <.LVL97+0xc> + 3bfe: 00000097 auipc ra,0x0 3bfe: R_RISCV_CALL strlen + 3bfe: R_RISCV_RELAX *ABS* + 3c02: 000080e7 jalr ra # 3bfe <.L41+0x4> + +0000000000003c06 <.LVL100>: +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:692 + if (cmdwidth > colwidth) + 3c06: 87aa mv a5,a0 + 3c08: 2501 sext.w a0,a0 + +0000000000003c0a <.LVL101>: + 3c0a: 00957363 bgeu a0,s1,3c10 <.L40> 3c0a: R_RISCV_BRANCH .L40 + 3c0e: 87a6 mv a5,s1 + +0000000000003c10 <.L40>: +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:689 + for (k = 0, colwidth = 0; k < NUM_CMDS; k++) + 3c10: 02090913 addi s2,s2,32 + +0000000000003c14 <.LVL103>: + 3c14: 0007849b sext.w s1,a5 + +0000000000003c18 <.LVL104>: + 3c18: ff2991e3 bne s3,s2,3bfa <.L41> 3c18: R_RISCV_BRANCH .L41 +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:698 + colwidth += HELP_TABSIZE; + 3c1c: 00448c1b addiw s8,s1,4 + +0000000000003c20 <.LVL105>: +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:702 + if (colwidth > HELP_LINELEN) + 3c20: 05000793 li a5,80 +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:704 + cmdsperline = 1; + 3c24: 4905 li s2,1 +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:702 + if (colwidth > HELP_LINELEN) + 3c26: 0187e663 bltu a5,s8,3c32 <.L42> 3c26: R_RISCV_BRANCH .L42 +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:708 + cmdsperline = HELP_LINELEN / colwidth; + 3c2a: 05000913 li s2,80 + 3c2e: 0389593b divuw s2,s2,s8 + +0000000000003c32 <.L42>: +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:713 + ncmdrows = (NUM_CMDS + (cmdsperline - 1)) / cmdsperline; + 3c32: 03190a93 addi s5,s2,49 +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:724 + memset(line, ' ', offset); + 3c36: 20202bb7 lui s7,0x20202 +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:719 + for (i = 0; i < ncmdrows; i++) + 3c3a: 4981 li s3,0 +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:724 + memset(line, ' ', offset); + 3c3c: 020b8b93 addi s7,s7,32 # 20202020 <.Ldebug_info0+0x201cbf5b> +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:741 + line[offset++] = ' '; + 3c40: 02000c93 li s9,32 +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:713 + ncmdrows = (NUM_CMDS + (cmdsperline - 1)) / cmdsperline; + 3c44: 032adab3 divu s5,s5,s2 + +0000000000003c48 <.L43>: +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:719 + for (i = 0; i < ncmdrows; i++) + 3c48: f13a8ce3 beq s5,s3,3b60 <.L57> 3c48: R_RISCV_BRANCH .L57 + +0000000000003c4c <.LVL108>: +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:724 + memset(line, ' ', offset); + 3c4c: c45e sw s7,8(sp) + +0000000000003c4e <.LVL109>: + 3c4e: 8b4e mv s6,s3 +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:726 + for (j = 0, k = i; + 3c50: 4d01 li s10,0 +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:723 + offset = HELP_TABSIZE; + 3c52: 4491 li s1,4 +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:727 + j < cmdsperline && k < NUM_CMDS; + 3c54: 03100713 li a4,49 +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:732 + offset += strlcpy(line + offset, g_cmdmap[k].cmd, + 3c58: 05500693 li a3,85 + +0000000000003c5c <.L44>: +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:727 + j < cmdsperline && k < NUM_CMDS; + 3c5c: 05676963 bltu a4,s6,3cae <.L47> 3c5c: R_RISCV_BRANCH .L47 +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:732 + offset += strlcpy(line + offset, g_cmdmap[k].cmd, + 3c60: 020b1713 slli a4,s6,0x20 + 3c64: 01b75793 srli a5,a4,0x1b + 3c68: 97d2 add a5,a5,s4 + 3c6a: 0007bd83 ld s11,0(a5) + 3c6e: 02049513 slli a0,s1,0x20 + 3c72: 003c addi a5,sp,8 + 3c74: 9101 srli a0,a0,0x20 + 3c76: 40a68633 sub a2,a3,a0 + 3c7a: 85ee mv a1,s11 + 3c7c: 953e add a0,a0,a5 + 3c7e: 00000097 auipc ra,0x0 3c7e: R_RISCV_CALL strlcpy + 3c7e: R_RISCV_RELAX *ABS* + 3c82: 000080e7 jalr ra # 3c7e <.L44+0x22> + +0000000000003c86 <.LVL111>: + 3c86: 9ca9 addw s1,s1,a0 + +0000000000003c88 <.LVL112>: +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:737 + for (cmdwidth = strlen(g_cmdmap[k].cmd); + 3c88: 856e mv a0,s11 + 3c8a: 00000097 auipc ra,0x0 3c8a: R_RISCV_CALL strlen + 3c8a: R_RISCV_RELAX *ABS* + 3c8e: 000080e7 jalr ra # 3c8a <.LVL112+0x2> + +0000000000003c92 <.LVL113>: + 3c92: 9d05 subw a0,a0,s1 + +0000000000003c94 <.LVL114>: + 3c94: 05500693 li a3,85 + 3c98: 03100713 li a4,49 + +0000000000003c9c <.L45>: + 3c9c: 009507bb addw a5,a0,s1 + 3ca0: f187e9e3 bltu a5,s8,3bb2 <.L46> 3ca0: R_RISCV_BRANCH .L46 +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:728 + j++, k += ncmdrows) + 3ca4: 2d05 addiw s10,s10,1 + +0000000000003ca6 <.LVL116>: + 3ca6: 016a8b3b addw s6,s5,s6 + +0000000000003caa <.LVL117>: +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:726 + for (j = 0, k = i; + 3caa: fba919e3 bne s2,s10,3c5c <.L44> 3caa: R_RISCV_BRANCH .L44 + +0000000000003cae <.L47>: +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:745 + line[offset++] = '\n'; + 3cae: 02049793 slli a5,s1,0x20 + 3cb2: 1098 addi a4,sp,96 + 3cb4: 9381 srli a5,a5,0x20 + 3cb6: 97ba add a5,a5,a4 + 3cb8: 4729 li a4,10 + 3cba: fae78423 sb a4,-88(a5) + 3cbe: 0014861b addiw a2,s1,1 + +0000000000003cc2 <.LVL119>: +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:746 + nsh_write(vtbl, line, offset); + 3cc2: 6c1c ld a5,24(s0) + 3cc4: 1602 slli a2,a2,0x20 + +0000000000003cc6 <.LVL120>: + 3cc6: 9201 srli a2,a2,0x20 + 3cc8: 002c addi a1,sp,8 + 3cca: 8522 mv a0,s0 + 3ccc: 9782 jalr a5 + +0000000000003cce <.LVL121>: +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:719 + for (i = 0; i < ncmdrows; i++) + 3cce: 2985 addiw s3,s3,1 + +0000000000003cd0 <.LVL122>: + 3cd0: bfa5 j 3c48 <.L43> 3cd0: R_RISCV_RVC_JUMP .L43 + +0000000000003cd2 <.L35>: +cmd_help(): +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:995 + if (argc > i) + 3cd2: 4789 li a5,2 + 3cd4: eaf916e3 bne s2,a5,3b80 <.L54> 3cd4: R_RISCV_BRANCH .L54 +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:974 + FAR const char *cmd = NULL; + 3cd8: 4481 li s1,0 + +0000000000003cda <.LVL124>: + 3cda: b3bd j 3a48 <.L52> 3cda: R_RISCV_RVC_JUMP .L52 + +0000000000003cdc : +nsh_command(): +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:1195 + * 0 (OK) if the command was successful + * + ****************************************************************************/ + +int nsh_command(FAR struct nsh_vtbl_s *vtbl, int argc, FAR char *argv[]) +{ + 3cdc: 7139 addi sp,sp,-64 + 3cde: f822 sd s0,48(sp) + 3ce0: f426 sd s1,40(sp) + 3ce2: f04a sd s2,32(sp) + 3ce4: ec4e sd s3,24(sp) + 3ce6: fc06 sd ra,56(sp) + 3ce8: 89b2 mv s3,a2 +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:1209 + * are, finally, received by the command vtblr + * argv[1]: The beginning of argument (up to CONFIG_NSH_MAXARGUMENTS) + * argv[argc]: NULL terminating pointer + */ + + cmd = argv[0]; + 3cea: 6210 ld a2,0(a2) + +0000000000003cec <.LVL126>: +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:1195 +{ + 3cec: 842a mv s0,a0 + 3cee: 892e mv s2,a1 +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:1213 + + /* See if the command is one that we understand */ + + for (cmdmap = g_cmdmap; cmdmap->cmd; cmdmap++) + 3cf0: 00000497 auipc s1,0x0 3cf0: R_RISCV_PCREL_HI20 .LANCHOR0 + 3cf0: R_RISCV_RELAX *ABS* + 3cf4: 00048493 mv s1,s1 3cf4: R_RISCV_PCREL_LO12_I .L0 + 3cf4: R_RISCV_RELAX *ABS* + +0000000000003cf8 <.L60>: +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:1213 (discriminator 1) + 3cf8: 6088 ld a0,0(s1) + 3cfa: e511 bnez a0,3d06 <.L66> 3cfa: R_RISCV_RVC_BRANCH .L66 +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:1198 + nsh_cmd_t handler = cmd_unrecognized; + 3cfc: 00000797 auipc a5,0x0 3cfc: R_RISCV_PCREL_HI20 cmd_unrecognized + 3cfc: R_RISCV_RELAX *ABS* + 3d00: 00078793 mv a5,a5 3d00: R_RISCV_PCREL_LO12_I .L0 + 3d00: R_RISCV_RELAX *ABS* + 3d04: a0b9 j 3d52 <.L65> 3d04: R_RISCV_RVC_JUMP .L65 + +0000000000003d06 <.L66>: +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:1215 + { + if (strcmp(cmdmap->cmd, cmd) == 0) + 3d06: 85b2 mv a1,a2 + 3d08: e432 sd a2,8(sp) + 3d0a: 00000097 auipc ra,0x0 3d0a: R_RISCV_CALL strcmp + 3d0a: R_RISCV_RELAX *ABS* + 3d0e: 000080e7 jalr ra # 3d0a <.L66+0x4> + +0000000000003d12 <.LVL128>: + 3d12: 6622 ld a2,8(sp) + 3d14: e929 bnez a0,3d66 <.L61> 3d14: R_RISCV_RVC_BRANCH .L61 + +0000000000003d16 <.LVL129>: +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:1222 + /* Check if a valid number of arguments was provided. We + * do this simple, imperfect checking here so that it does + * not have to be performed in each command. + */ + + if (argc < cmdmap->minargs) + 3d16: 0104c783 lbu a5,16(s1) # 3d00 <.L60+0x8> + 3d1a: 02f95163 bge s2,a5,3d3c <.L62> 3d1a: R_RISCV_BRANCH .L62 +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:1226 + { + /* Fewer than the minimum number were provided */ + + nsh_error(vtbl, g_fmtargrequired, cmd); + 3d1e: 741c ld a5,40(s0) + 3d20: 00000597 auipc a1,0x0 3d20: R_RISCV_PCREL_HI20 g_fmtargrequired + 3d20: R_RISCV_RELAX *ABS* + 3d24: 00058593 mv a1,a1 3d24: R_RISCV_PCREL_LO12_I .L0 + 3d24: R_RISCV_RELAX *ABS* + +0000000000003d28 <.L68>: +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:1233 + } + else if (argc > cmdmap->maxargs) + { + /* More than the maximum number were provided */ + + nsh_error(vtbl, g_fmttoomanyargs, cmd); + 3d28: 8522 mv a0,s0 + 3d2a: 9782 jalr a5 + +0000000000003d2c <.LVL130>: +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:1250 + } + } + + ret = handler(vtbl, argc, argv); + return ret; +} + 3d2c: 70e2 ld ra,56(sp) + 3d2e: 7442 ld s0,48(sp) + +0000000000003d30 <.LVL131>: + 3d30: 74a2 ld s1,40(sp) + +0000000000003d32 <.LVL132>: + 3d32: 7902 ld s2,32(sp) + 3d34: 69e2 ld s3,24(sp) + +0000000000003d36 <.LVL133>: + 3d36: 557d li a0,-1 + 3d38: 6121 addi sp,sp,64 + +0000000000003d3a <.LVL134>: + 3d3a: 8082 ret + +0000000000003d3c <.L62>: +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:1229 + else if (argc > cmdmap->maxargs) + 3d3c: 0114c783 lbu a5,17(s1) + 3d40: 0127d863 bge a5,s2,3d50 <.L64> 3d40: R_RISCV_BRANCH .L64 +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:1233 + nsh_error(vtbl, g_fmttoomanyargs, cmd); + 3d44: 741c ld a5,40(s0) + 3d46: 00000597 auipc a1,0x0 3d46: R_RISCV_PCREL_HI20 g_fmttoomanyargs + 3d46: R_RISCV_RELAX *ABS* + 3d4a: 00058593 mv a1,a1 3d4a: R_RISCV_PCREL_LO12_I .L0 + 3d4a: R_RISCV_RELAX *ABS* + 3d4e: bfe9 j 3d28 <.L68> 3d4e: R_RISCV_RVC_JUMP .L68 + +0000000000003d50 <.L64>: +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:1242 + handler = cmdmap->handler; + 3d50: 649c ld a5,8(s1) + +0000000000003d52 <.L65>: +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:1248 + ret = handler(vtbl, argc, argv); + 3d52: 8522 mv a0,s0 +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:1250 +} + 3d54: 7442 ld s0,48(sp) + +0000000000003d56 <.LVL137>: + 3d56: 70e2 ld ra,56(sp) + 3d58: 74a2 ld s1,40(sp) + +0000000000003d5a <.LVL138>: +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:1248 + ret = handler(vtbl, argc, argv); + 3d5a: 864e mv a2,s3 + +0000000000003d5c <.LVL139>: + 3d5c: 85ca mv a1,s2 +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:1250 +} + 3d5e: 69e2 ld s3,24(sp) + +0000000000003d60 <.LVL140>: + 3d60: 7902 ld s2,32(sp) + 3d62: 6121 addi sp,sp,64 +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:1248 + ret = handler(vtbl, argc, argv); + 3d64: 8782 jr a5 + +0000000000003d66 <.L61>: +/Users/Luppy/ox64/apps/nshlib/nsh_command.c:1213 (discriminator 2) + for (cmdmap = g_cmdmap; cmdmap->cmd; cmdmap++) + 3d66: 02048493 addi s1,s1,32 + 3d6a: b779 j 3cf8 <.L60> 3d6a: R_RISCV_RVC_JUMP .L60 + +0000000000003d6c : +nsh_dumpbuffer(): +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:290 + * Name: nsh_dumpbuffer + ****************************************************************************/ + +void nsh_dumpbuffer(FAR struct nsh_vtbl_s *vtbl, FAR const char *msg, + FAR const uint8_t *buffer, ssize_t nbytes) +{ + 3d6c: 7151 addi sp,sp,-240 + 3d6e: eda6 sd s1,216(sp) + 3d70: e9ca sd s2,208(sp) + 3d72: e5ce sd s3,200(sp) + 3d74: e1d2 sd s4,192(sp) + 3d76: f162 sd s8,160(sp) + 3d78: ed66 sd s9,152(sp) + 3d7a: e96a sd s10,144(sp) + 3d7c: f586 sd ra,232(sp) + 3d7e: f1a2 sd s0,224(sp) + 3d80: fd56 sd s5,184(sp) + 3d82: f95a sd s6,176(sp) + 3d84: f55e sd s7,168(sp) + 3d86: e56e sd s11,136(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:297 + size_t size; + int ch; + int i; + int j; + + nsh_output(vtbl, "%s:\n", msg); + 3d88: 791c ld a5,48(a0) +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:290 +{ + 3d8a: 8a32 mv s4,a2 +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:297 + nsh_output(vtbl, "%s:\n", msg); + 3d8c: 862e mv a2,a1 + +0000000000003d8e <.LVL1>: + 3d8e: 00000597 auipc a1,0x0 3d8e: R_RISCV_PCREL_HI20 .LC0 + 3d8e: R_RISCV_RELAX *ABS* + 3d92: 00058593 mv a1,a1 3d92: R_RISCV_PCREL_LO12_I .L0 + 3d92: R_RISCV_RELAX *ABS* + +0000000000003d96 <.LVL2>: +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:290 +{ + 3d96: 89aa mv s3,a0 + 3d98: 8936 mv s2,a3 +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:298 + for (i = 0; i < nbytes; i += 16) + 3d9a: 4481 li s1,0 +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:297 + nsh_output(vtbl, "%s:\n", msg); + 3d9c: 9782 jalr a5 + +0000000000003d9e <.LVL3>: +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:307 + + for (j = 0; j < 16; j++) + { + if (i + j < nbytes) + { + snprintf(&line[size], sizeof(line) - size, + 3d9e: 00000c17 auipc s8,0x0 3d9e: R_RISCV_PCREL_HI20 .LC2 + 3d9e: R_RISCV_RELAX *ABS* + 3da2: 000c0c13 mv s8,s8 3da2: R_RISCV_PCREL_LO12_I .L0 + 3da2: R_RISCV_RELAX *ABS* +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:323 + for (j = 0; j < 16; j++) + { + if (i + j < nbytes) + { + ch = buffer[i + j]; + snprintf(&line[size], sizeof(line) - size, + 3da6: 05e00c93 li s9,94 + 3daa: 00000d17 auipc s10,0x0 3daa: R_RISCV_PCREL_HI20 .LC4 + 3daa: R_RISCV_RELAX *ABS* + 3dae: 000d0d13 mv s10,s10 3dae: R_RISCV_PCREL_LO12_I .L0 + 3dae: R_RISCV_RELAX *ABS* + +0000000000003db2 <.L2>: + 3db2: 0004869b sext.w a3,s1 + +0000000000003db6 <.LVL5>: +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:298 (discriminator 1) + for (i = 0; i < nbytes; i += 16) + 3db6: 0324c163 blt s1,s2,3dd8 <.L9> 3db6: R_RISCV_BRANCH .L9 +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:331 + } + } + + nsh_output(vtbl, "%s\n", line); + } +} + 3dba: 70ae ld ra,232(sp) + 3dbc: 740e ld s0,224(sp) + 3dbe: 64ee ld s1,216(sp) + 3dc0: 694e ld s2,208(sp) + +0000000000003dc2 <.LVL6>: + 3dc2: 69ae ld s3,200(sp) + +0000000000003dc4 <.LVL7>: + 3dc4: 6a0e ld s4,192(sp) + +0000000000003dc6 <.LVL8>: + 3dc6: 7aea ld s5,184(sp) + 3dc8: 7b4a ld s6,176(sp) + 3dca: 7baa ld s7,168(sp) + 3dcc: 7c0a ld s8,160(sp) + 3dce: 6cea ld s9,152(sp) + 3dd0: 6d4a ld s10,144(sp) + 3dd2: 6daa ld s11,136(sp) + 3dd4: 616d addi sp,sp,240 + 3dd6: 8082 ret + +0000000000003dd8 <.L9>: +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:300 + snprintf(line, sizeof(line), "%04x: ", i); + 3dd8: 00000617 auipc a2,0x0 3dd8: R_RISCV_PCREL_HI20 .LC1 + 3dd8: R_RISCV_RELAX *ABS* + 3ddc: 00060613 mv a2,a2 3ddc: R_RISCV_PCREL_LO12_I .L0 + 3ddc: R_RISCV_RELAX *ABS* + 3de0: 08000593 li a1,128 + 3de4: 850a mv a0,sp + 3de6: 00000097 auipc ra,0x0 3de6: R_RISCV_CALL snprintf + 3de6: R_RISCV_RELAX *ABS* + 3dea: 000080e7 jalr ra # 3de6 <.L9+0xe> + +0000000000003dee <.LVL10>: +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:301 + size = strlen(line); + 3dee: 850a mv a0,sp + 3df0: 00000097 auipc ra,0x0 3df0: R_RISCV_CALL strlen + 3df0: R_RISCV_RELAX *ABS* + 3df4: 000080e7 jalr ra # 3df0 <.LVL10+0x2> + +0000000000003df8 <.LVL11>: + 3df8: 842a mv s0,a0 + +0000000000003dfa <.LVL12>: + 3dfa: 8aa6 mv s5,s1 + 3dfc: 4b41 li s6,16 +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:307 + snprintf(&line[size], sizeof(line) - size, + 3dfe: 08000d93 li s11,128 + +0000000000003e02 <.L5>: + 3e02: 00810bb3 add s7,sp,s0 +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:305 + if (i + j < nbytes) + 3e06: 092ad963 bge s5,s2,3e98 <.L3> 3e06: R_RISCV_BRANCH .L3 +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:308 + "%02x ", buffer[i + j]); + 3e0a: 015a0733 add a4,s4,s5 +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:307 + snprintf(&line[size], sizeof(line) - size, + 3e0e: 00074683 lbu a3,0(a4) + 3e12: 8662 mv a2,s8 + 3e14: 408d85b3 sub a1,s11,s0 + 3e18: 855e mv a0,s7 + 3e1a: 00000097 auipc ra,0x0 3e1a: R_RISCV_CALL snprintf + 3e1a: R_RISCV_RELAX *ABS* + 3e1e: 000080e7 jalr ra # 3e1a <.L5+0x18> + +0000000000003e22 <.L4>: +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:315 (discriminator 2) + size += strlen(&line[size]); + 3e22: 855e mv a0,s7 + 3e24: 00000097 auipc ra,0x0 3e24: R_RISCV_CALL strlen + 3e24: R_RISCV_RELAX *ABS* + 3e28: 000080e7 jalr ra # 3e24 <.L4+0x2> + +0000000000003e2c <.LVL15>: +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:303 (discriminator 2) + for (j = 0; j < 16; j++) + 3e2c: 3b7d addiw s6,s6,-1 +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:315 (discriminator 2) + size += strlen(&line[size]); + 3e2e: 942a add s0,s0,a0 + +0000000000003e30 <.LVL16>: +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:303 (discriminator 2) + for (j = 0; j < 16; j++) + 3e30: 0a85 addi s5,s5,1 + +0000000000003e32 <.LVL17>: + 3e32: fc0b18e3 bnez s6,3e02 <.L5> 3e32: R_RISCV_BRANCH .L5 + 3e36: 8aa6 mv s5,s1 + 3e38: 4b41 li s6,16 +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:323 + snprintf(&line[size], sizeof(line) - size, + 3e3a: 08000793 li a5,128 + +0000000000003e3e <.L8>: +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:320 + if (i + j < nbytes) + 3e3e: 032ade63 bge s5,s2,3e7a <.L6> 3e3e: R_RISCV_BRANCH .L6 +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:322 + ch = buffer[i + j]; + 3e42: 015a0733 add a4,s4,s5 + 3e46: 00074683 lbu a3,0(a4) + +0000000000003e4a <.LVL19>: +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:323 + snprintf(&line[size], sizeof(line) - size, + 3e4a: 00810db3 add s11,sp,s0 + 3e4e: 408785b3 sub a1,a5,s0 + 3e52: fe06871b addiw a4,a3,-32 + 3e56: 00ecf463 bgeu s9,a4,3e5e <.L7> 3e56: R_RISCV_BRANCH .L7 + 3e5a: 02e00693 li a3,46 + +0000000000003e5e <.L7>: +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:323 (discriminator 4) + 3e5e: 866a mv a2,s10 + 3e60: 856e mv a0,s11 + 3e62: 00000097 auipc ra,0x0 3e62: R_RISCV_CALL snprintf + 3e62: R_RISCV_RELAX *ABS* + 3e66: 000080e7 jalr ra # 3e62 <.L7+0x4> + +0000000000003e6a <.LVL21>: +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:325 (discriminator 4) + size += strlen(&line[size]); + 3e6a: 856e mv a0,s11 + 3e6c: 00000097 auipc ra,0x0 3e6c: R_RISCV_CALL strlen + 3e6c: R_RISCV_RELAX *ABS* + 3e70: 000080e7 jalr ra # 3e6c <.LVL21+0x2> + +0000000000003e74 <.LVL22>: + 3e74: 942a add s0,s0,a0 + +0000000000003e76 <.LVL23>: + 3e76: 08000793 li a5,128 + +0000000000003e7a <.L6>: +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:318 (discriminator 2) + for (j = 0; j < 16; j++) + 3e7a: 3b7d addiw s6,s6,-1 + 3e7c: 0a85 addi s5,s5,1 + +0000000000003e7e <.LVL25>: + 3e7e: fc0b10e3 bnez s6,3e3e <.L8> 3e7e: R_RISCV_BRANCH .L8 +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:329 (discriminator 2) + nsh_output(vtbl, "%s\n", line); + 3e82: 0309b783 ld a5,48(s3) # 3c1e <.LVL104+0x6> + 3e86: 860a mv a2,sp + 3e88: 00000597 auipc a1,0x0 3e88: R_RISCV_PCREL_HI20 .LC5 + 3e88: R_RISCV_RELAX *ABS* + 3e8c: 00058593 mv a1,a1 3e8c: R_RISCV_PCREL_LO12_I .L0 + 3e8c: R_RISCV_RELAX *ABS* + 3e90: 854e mv a0,s3 + 3e92: 9782 jalr a5 + +0000000000003e94 <.LVL26>: +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:298 (discriminator 2) + for (i = 0; i < nbytes; i += 16) + 3e94: 04c1 addi s1,s1,16 + +0000000000003e96 <.LVL27>: + 3e96: bf31 j 3db2 <.L2> 3e96: R_RISCV_RVC_JUMP .L2 + +0000000000003e98 <.L3>: +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:312 + strlcpy(&line[size], " ", sizeof(line) - size); + 3e98: 408d8633 sub a2,s11,s0 + 3e9c: 00000597 auipc a1,0x0 3e9c: R_RISCV_PCREL_HI20 .LC3 + 3e9c: R_RISCV_RELAX *ABS* + 3ea0: 00058593 mv a1,a1 3ea0: R_RISCV_PCREL_LO12_I .L0 + 3ea0: R_RISCV_RELAX *ABS* + 3ea4: 855e mv a0,s7 + 3ea6: 00000097 auipc ra,0x0 3ea6: R_RISCV_CALL strlcpy + 3ea6: R_RISCV_RELAX *ABS* + 3eaa: 000080e7 jalr ra # 3ea6 <.L3+0xe> + +0000000000003eae <.LVL29>: + 3eae: bf95 j 3e22 <.L4> 3eae: R_RISCV_RVC_JUMP .L4 + +0000000000003eb0 : +cmd_xd(): +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:339 + * Name: cmd_xd, hex dump of memory + ****************************************************************************/ + +#ifndef CONFIG_NSH_DISABLE_XD +int cmd_xd(FAR struct nsh_vtbl_s *vtbl, int argc, FAR char **argv) +{ + 3eb0: 7179 addi sp,sp,-48 + 3eb2: f022 sd s0,32(sp) + 3eb4: 8432 mv s0,a2 + 3eb6: ec26 sd s1,24(sp) + 3eb8: 84aa mv s1,a0 +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:346 + + FAR char *addr; + FAR char *endptr; + int nbytes; + + addr = (FAR char *)((uintptr_t)strtoul(argv[1], &endptr, 16)); + 3eba: 6408 ld a0,8(s0) + +0000000000003ebc <.LVL31>: + 3ebc: 4641 li a2,16 + +0000000000003ebe <.LVL32>: + 3ebe: 002c addi a1,sp,8 + +0000000000003ec0 <.LVL33>: +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:339 +{ + 3ec0: f406 sd ra,40(sp) + 3ec2: e84a sd s2,16(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:346 + addr = (FAR char *)((uintptr_t)strtoul(argv[1], &endptr, 16)); + 3ec4: 00000097 auipc ra,0x0 3ec4: R_RISCV_CALL strtoul + 3ec4: R_RISCV_RELAX *ABS* + 3ec8: 000080e7 jalr ra # 3ec4 <.LVL33+0x4> + +0000000000003ecc <.LVL34>: +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:347 + if (argv[0][0] == '\0' || *endptr != '\0') + 3ecc: 601c ld a5,0(s0) + 3ece: 0007c783 lbu a5,0(a5) # 3cfc <.L60+0x4> + 3ed2: eb81 bnez a5,3ee2 <.L15> 3ed2: R_RISCV_RVC_BRANCH .L15 + +0000000000003ed4 <.L17>: +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:349 + { + return ERROR; + 3ed4: 557d li a0,-1 + +0000000000003ed6 <.L16>: +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:360 + return ERROR; + } + + nsh_dumpbuffer(vtbl, "Hex dump", (uint8_t *)addr, nbytes); + return OK; +} + 3ed6: 70a2 ld ra,40(sp) + 3ed8: 7402 ld s0,32(sp) + +0000000000003eda <.LVL36>: + 3eda: 64e2 ld s1,24(sp) + +0000000000003edc <.LVL37>: + 3edc: 6942 ld s2,16(sp) + 3ede: 6145 addi sp,sp,48 + 3ee0: 8082 ret + +0000000000003ee2 <.L15>: +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:347 (discriminator 1) + if (argv[0][0] == '\0' || *endptr != '\0') + 3ee2: 67a2 ld a5,8(sp) + 3ee4: 0007c783 lbu a5,0(a5) + 3ee8: f7f5 bnez a5,3ed4 <.L17> 3ee8: R_RISCV_RVC_BRANCH .L17 + 3eea: 892a mv s2,a0 +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:352 + nbytes = (int)strtol(argv[2], &endptr, 0); + 3eec: 6808 ld a0,16(s0) + +0000000000003eee <.LVL39>: + 3eee: 4601 li a2,0 + 3ef0: 002c addi a1,sp,8 + 3ef2: 00000097 auipc ra,0x0 3ef2: R_RISCV_CALL strtol + 3ef2: R_RISCV_RELAX *ABS* + 3ef6: 000080e7 jalr ra # 3ef2 <.LVL39+0x4> + +0000000000003efa <.LVL40>: +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:353 + if (argv[0][0] == '\0' || *endptr != '\0' || nbytes < 0) + 3efa: 601c ld a5,0(s0) +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:352 + nbytes = (int)strtol(argv[2], &endptr, 0); + 3efc: 0005069b sext.w a3,a0 + +0000000000003f00 <.LVL41>: +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:353 + if (argv[0][0] == '\0' || *endptr != '\0' || nbytes < 0) + 3f00: 0007c783 lbu a5,0(a5) + 3f04: dbe1 beqz a5,3ed4 <.L17> 3f04: R_RISCV_RVC_BRANCH .L17 +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:353 (discriminator 1) + 3f06: 67a2 ld a5,8(sp) + 3f08: 0007c783 lbu a5,0(a5) + 3f0c: f7e1 bnez a5,3ed4 <.L17> 3f0c: R_RISCV_RVC_BRANCH .L17 +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:353 (discriminator 2) + 3f0e: fc06c3e3 bltz a3,3ed4 <.L17> 3f0e: R_RISCV_BRANCH .L17 +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:358 + nsh_dumpbuffer(vtbl, "Hex dump", (uint8_t *)addr, nbytes); + 3f12: 8526 mv a0,s1 + 3f14: 864a mv a2,s2 + 3f16: 00000597 auipc a1,0x0 3f16: R_RISCV_PCREL_HI20 .LC6 + 3f16: R_RISCV_RELAX *ABS* + 3f1a: 00058593 mv a1,a1 3f1a: R_RISCV_PCREL_LO12_I .L0 + 3f1a: R_RISCV_RELAX *ABS* + 3f1e: 00000097 auipc ra,0x0 3f1e: R_RISCV_CALL nsh_dumpbuffer + 3f1e: R_RISCV_RELAX *ABS* + 3f22: 000080e7 jalr ra # 3f1e <.LVL41+0x1e> + +0000000000003f26 <.LVL42>: +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:359 + return OK; + 3f26: 4501 li a0,0 + 3f28: b77d j 3ed6 <.L16> 3f28: R_RISCV_RVC_JUMP .L16 + +0000000000003f2a : +cmd_hexdump(): +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:369 + * Name: cmd_hexdump, hex dump of files + ****************************************************************************/ + +#ifndef CONFIG_NSH_DISABLE_HEXDUMP +int cmd_hexdump(FAR struct nsh_vtbl_s *vtbl, int argc, FAR char **argv) +{ + 3f2a: 7175 addi sp,sp,-144 + 3f2c: fca6 sd s1,120(sp) + 3f2e: e4de sd s7,72(sp) + 3f30: e0e2 sd s8,64(sp) + 3f32: e506 sd ra,136(sp) + 3f34: e122 sd s0,128(sp) + 3f36: f8ca sd s2,112(sp) + 3f38: f4ce sd s3,104(sp) + 3f3a: f0d2 sd s4,96(sp) + 3f3c: ecd6 sd s5,88(sp) + 3f3e: e8da sd s6,80(sp) + 3f40: fc66 sd s9,56(sp) + 3f42: f86a sd s10,48(sp) + 3f44: f46e sd s11,40(sp) + 3f46: 84aa mv s1,a0 +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:384 + int x; +#endif + + /* Open the file for reading */ + + fd = open(argv[1], O_RDONLY); + 3f48: 6608 ld a0,8(a2) + +0000000000003f4a <.LVL44>: +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:369 +{ + 3f4a: 8c2e mv s8,a1 +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:384 + fd = open(argv[1], O_RDONLY); + 3f4c: 4585 li a1,1 + +0000000000003f4e <.LVL45>: +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:369 +{ + 3f4e: 8bb2 mv s7,a2 +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:384 + fd = open(argv[1], O_RDONLY); + 3f50: 00000097 auipc ra,0x0 3f50: R_RISCV_CALL open + 3f50: R_RISCV_RELAX *ABS* + 3f54: 000080e7 jalr ra # 3f50 <.LVL45+0x2> + +0000000000003f58 <.LVL46>: +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:385 + if (fd < 0) + 3f58: 04055763 bgez a0,3fa6 <.L23> 3f58: R_RISCV_BRANCH .L23 +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:387 + { + nsh_error(vtbl, g_fmtcmdfailed, "hexdump", "open", NSH_ERRNO); + 3f5c: 7480 ld s0,40(s1) + 3f5e: 00000097 auipc ra,0x0 3f5e: R_RISCV_CALL __errno + 3f5e: R_RISCV_RELAX *ABS* + 3f62: 000080e7 jalr ra # 3f5e <.LVL46+0x6> + +0000000000003f66 <.LVL47>: + 3f66: 4118 lw a4,0(a0) + 3f68: 00000697 auipc a3,0x0 3f68: R_RISCV_PCREL_HI20 .LC7 + 3f68: R_RISCV_RELAX *ABS* + 3f6c: 00068693 mv a3,a3 3f6c: R_RISCV_PCREL_LO12_I .L0 + 3f6c: R_RISCV_RELAX *ABS* + +0000000000003f70 <.L42>: +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:395 + + buffer = (FAR uint8_t *)malloc(IOBUFFERSIZE); + if (buffer == NULL) + { + close(fd); + nsh_error(vtbl, g_fmtcmdfailed, "hexdump", "malloc", NSH_ERRNO); + 3f70: 00000617 auipc a2,0x0 3f70: R_RISCV_PCREL_HI20 .LC8 + 3f70: R_RISCV_RELAX *ABS* + 3f74: 00060613 mv a2,a2 3f74: R_RISCV_PCREL_LO12_I .L0 + 3f74: R_RISCV_RELAX *ABS* + 3f78: 00000597 auipc a1,0x0 3f78: R_RISCV_PCREL_HI20 g_fmtcmdfailed + 3f78: R_RISCV_RELAX *ABS* + 3f7c: 00058593 mv a1,a1 3f7c: R_RISCV_PCREL_LO12_I .L0 + 3f7c: R_RISCV_RELAX *ABS* + 3f80: 8526 mv a0,s1 + 3f82: 9402 jalr s0 + +0000000000003f84 <.LVL48>: +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:396 + return ERROR; + 3f84: 547d li s0,-1 + +0000000000003f86 <.L24>: +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:497 + } + + close(fd); + free(buffer); + return ret; +} + 3f86: 60aa ld ra,136(sp) + 3f88: 8522 mv a0,s0 + 3f8a: 640a ld s0,128(sp) + 3f8c: 74e6 ld s1,120(sp) + +0000000000003f8e <.LVL50>: + 3f8e: 7946 ld s2,112(sp) + 3f90: 79a6 ld s3,104(sp) + 3f92: 7a06 ld s4,96(sp) + 3f94: 6ae6 ld s5,88(sp) + 3f96: 6b46 ld s6,80(sp) + 3f98: 6ba6 ld s7,72(sp) + +0000000000003f9a <.LVL51>: + 3f9a: 6c06 ld s8,64(sp) + 3f9c: 7ce2 ld s9,56(sp) + 3f9e: 7d42 ld s10,48(sp) + 3fa0: 7da2 ld s11,40(sp) + 3fa2: 6149 addi sp,sp,144 + 3fa4: 8082 ret + +0000000000003fa6 <.L23>: + 3fa6: 8b2a mv s6,a0 +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:391 + buffer = (FAR uint8_t *)malloc(IOBUFFERSIZE); + 3fa8: 20000513 li a0,512 + +0000000000003fac <.LVL53>: + 3fac: 00000097 auipc ra,0x0 3fac: R_RISCV_CALL malloc + 3fac: R_RISCV_RELAX *ABS* + 3fb0: 000080e7 jalr ra # 3fac <.LVL53> + +0000000000003fb4 <.LVL54>: + 3fb4: 89aa mv s3,a0 + +0000000000003fb6 <.LVL55>: +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:392 + if (buffer == NULL) + 3fb6: e979 bnez a0,408c <.L37> 3fb6: R_RISCV_RVC_BRANCH .L37 +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:394 + close(fd); + 3fb8: 855a mv a0,s6 + +0000000000003fba <.LVL56>: + 3fba: 00000097 auipc ra,0x0 3fba: R_RISCV_CALL close + 3fba: R_RISCV_RELAX *ABS* + 3fbe: 000080e7 jalr ra # 3fba <.LVL56> + +0000000000003fc2 <.LVL57>: +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:395 + nsh_error(vtbl, g_fmtcmdfailed, "hexdump", "malloc", NSH_ERRNO); + 3fc2: 7480 ld s0,40(s1) + 3fc4: 00000097 auipc ra,0x0 3fc4: R_RISCV_CALL __errno + 3fc4: R_RISCV_RELAX *ABS* + 3fc8: 000080e7 jalr ra # 3fc4 <.LVL57+0x2> + +0000000000003fcc <.LVL58>: + 3fcc: 4118 lw a4,0(a0) + 3fce: 00000697 auipc a3,0x0 3fce: R_RISCV_PCREL_HI20 .LC9 + 3fce: R_RISCV_RELAX *ABS* + 3fd2: 00068693 mv a3,a3 3fd2: R_RISCV_PCREL_LO12_I .L0 + 3fd2: R_RISCV_RELAX *ABS* + 3fd6: bf69 j 3f70 <.L42> 3fd6: R_RISCV_RVC_JUMP .L42 + +0000000000003fd8 <.L28>: +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:402 + if (strncmp(argv[x], "skip=", 5) == 0) + 3fd8: 00391793 slli a5,s2,0x3 + 3fdc: 97de add a5,a5,s7 + 3fde: 0007ba03 ld s4,0(a5) + 3fe2: 4615 li a2,5 + 3fe4: 85e6 mv a1,s9 + 3fe6: 8552 mv a0,s4 + 3fe8: 00000097 auipc ra,0x0 3fe8: R_RISCV_CALL strncmp + 3fe8: R_RISCV_RELAX *ABS* + 3fec: 000080e7 jalr ra # 3fe8 <.L28+0x10> + +0000000000003ff0 <.LVL60>: + 3ff0: ed35 bnez a0,406c <.L26> 3ff0: R_RISCV_RVC_BRANCH .L26 +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:404 + skip = atoi(&argv[x][5]); + 3ff2: 005a0513 addi a0,s4,5 # 37ff <.LVL78+0x13> + 3ff6: 00000097 auipc ra,0x0 3ff6: R_RISCV_CALL atoi + 3ff6: R_RISCV_RELAX *ABS* + 3ffa: 000080e7 jalr ra # 3ff6 <.LVL60+0x6> + +0000000000003ffe <.LVL61>: + 3ffe: 8aaa mv s5,a0 + +0000000000004000 <.L27>: +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:400 (discriminator 2) + for (x = 2; x < argc; x++) + 4000: 0905 addi s2,s2,1 + +0000000000004002 <.L25>: +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:400 (discriminator 1) + 4002: 0009079b sext.w a5,s2 + 4006: fd87c9e3 blt a5,s8,3fd8 <.L28> 4006: R_RISCV_BRANCH .L28 +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:413 + position = 0; + 400a: 4a01 li s4,0 + +000000000000400c <.LBB2>: +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:472 + snprintf(msg, sizeof(msg), "%s at %08jx", argv[1], + 400c: 00000c97 auipc s9,0x0 400c: R_RISCV_PCREL_HI20 .LC13 + 400c: R_RISCV_RELAX *ABS* + 4010: 000c8c93 mv s9,s9 4010: R_RISCV_PCREL_LO12_I .L0 + 4010: R_RISCV_RELAX *ABS* + +0000000000004014 <.L29>: +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:416 + int nbytesread = read(fd, buffer, IOBUFFERSIZE); + 4014: 20000613 li a2,512 + 4018: 85ce mv a1,s3 + 401a: 855a mv a0,s6 + 401c: 00000097 auipc ra,0x0 401c: R_RISCV_CALL read + 401c: R_RISCV_RELAX *ABS* + 4020: 000080e7 jalr ra # 401c <.L29+0x8> + +0000000000004024 <.LVL65>: + 4024: 0005091b sext.w s2,a0 + +0000000000004028 <.LVL66>: +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:420 + if (nbytesread < 0) + 4028: 08095063 bgez s2,40a8 <.L30> 4028: R_RISCV_BRANCH .L30 +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:422 + nsh_error(vtbl, g_fmtcmdfailed, "hexdump", "read", + 402c: 7480 ld s0,40(s1) + +000000000000402e <.LVL67>: + 402e: 00000097 auipc ra,0x0 402e: R_RISCV_CALL __errno + 402e: R_RISCV_RELAX *ABS* + 4032: 000080e7 jalr ra # 402e <.LVL67> + +0000000000004036 <.LVL68>: + 4036: 4118 lw a4,0(a0) + 4038: 00000697 auipc a3,0x0 4038: R_RISCV_PCREL_HI20 .LC12 + 4038: R_RISCV_RELAX *ABS* + 403c: 00068693 mv a3,a3 403c: R_RISCV_PCREL_LO12_I .L0 + 403c: R_RISCV_RELAX *ABS* + 4040: 00000617 auipc a2,0x0 4040: R_RISCV_PCREL_HI20 .LC8 + 4040: R_RISCV_RELAX *ABS* + 4044: 00060613 mv a2,a2 4044: R_RISCV_PCREL_LO12_I .L0 + 4044: R_RISCV_RELAX *ABS* + 4048: 00000597 auipc a1,0x0 4048: R_RISCV_PCREL_HI20 g_fmtcmdfailed + 4048: R_RISCV_RELAX *ABS* + 404c: 00058593 mv a1,a1 404c: R_RISCV_PCREL_LO12_I .L0 + 404c: R_RISCV_RELAX *ABS* + 4050: 8526 mv a0,s1 + 4052: 9402 jalr s0 + +0000000000004054 <.LVL69>: +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:424 + ret = ERROR; + 4054: 547d li s0,-1 + +0000000000004056 <.L31>: +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:494 + close(fd); + 4056: 855a mv a0,s6 + 4058: 00000097 auipc ra,0x0 4058: R_RISCV_CALL close + 4058: R_RISCV_RELAX *ABS* + 405c: 000080e7 jalr ra # 4058 <.L31+0x2> + +0000000000004060 <.LVL71>: +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:495 + free(buffer); + 4060: 854e mv a0,s3 + 4062: 00000097 auipc ra,0x0 4062: R_RISCV_CALL free + 4062: R_RISCV_RELAX *ABS* + 4066: 000080e7 jalr ra # 4062 <.LVL71+0x2> + +000000000000406a <.LVL72>: +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:496 + return ret; + 406a: bf31 j 3f86 <.L24> 406a: R_RISCV_RVC_JUMP .L24 + +000000000000406c <.L26>: +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:406 + else if (strncmp(argv[x], "count=", 6) == 0) + 406c: 4619 li a2,6 + 406e: 85ea mv a1,s10 + 4070: 8552 mv a0,s4 + 4072: 00000097 auipc ra,0x0 4072: R_RISCV_CALL strncmp + 4072: R_RISCV_RELAX *ABS* + 4076: 000080e7 jalr ra # 4072 <.L26+0x6> + +000000000000407a <.LVL74>: + 407a: f159 bnez a0,4000 <.L27> 407a: R_RISCV_RVC_BRANCH .L27 +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:408 + count = atoi(&argv[x][6]); + 407c: 006a0513 addi a0,s4,6 + 4080: 00000097 auipc ra,0x0 4080: R_RISCV_CALL atoi + 4080: R_RISCV_RELAX *ABS* + 4084: 000080e7 jalr ra # 4080 <.LVL74+0x6> + +0000000000004088 <.LVL75>: + 4088: 842a mv s0,a0 + 408a: bf9d j 4000 <.L27> 408a: R_RISCV_RVC_JUMP .L27 + +000000000000408c <.L37>: +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:377 + off_t count = 0xfffffff; + 408c: 10000437 lui s0,0x10000 + 4090: 4909 li s2,2 + 4092: 147d addi s0,s0,-1 +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:376 + off_t skip = 0; + 4094: 4a81 li s5,0 +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:402 + if (strncmp(argv[x], "skip=", 5) == 0) + 4096: 00000c97 auipc s9,0x0 4096: R_RISCV_PCREL_HI20 .LC10 + 4096: R_RISCV_RELAX *ABS* + 409a: 000c8c93 mv s9,s9 409a: R_RISCV_PCREL_LO12_I .L0 + 409a: R_RISCV_RELAX *ABS* +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:406 + else if (strncmp(argv[x], "count=", 6) == 0) + 409e: 00000d17 auipc s10,0x0 409e: R_RISCV_PCREL_HI20 .LC11 + 409e: R_RISCV_RELAX *ABS* + 40a2: 000d0d13 mv s10,s10 40a2: R_RISCV_PCREL_LO12_I .L0 + 40a2: R_RISCV_RELAX *ABS* + 40a6: bfb1 j 4002 <.L25> 40a6: R_RISCV_RVC_JUMP .L25 + +00000000000040a8 <.L30>: +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:427 + else if (nbytesread > 0) + 40a8: 08090c63 beqz s2,4140 <.L32> 40a8: R_RISCV_BRANCH .L32 +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:430 + if (position < skip) + 40ac: 055a5a63 bge s4,s5,4100 <.L33> 40ac: R_RISCV_BRANCH .L33 +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:434 + position += nbytesread; + 40b0: 012a0a3b addw s4,s4,s2 +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:435 + if (position > skip) + 40b4: f74ad0e3 bge s5,s4,4014 <.L29> 40b4: R_RISCV_BRANCH .L29 +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:437 + dumpbytes = position - skip; + 40b8: 415a07bb subw a5,s4,s5 + 40bc: 8c3e mv s8,a5 + +00000000000040be <.LVL80>: +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:438 + if (dumpbytes > count) + 40be: 8da2 mv s11,s0 + 40c0: 0087d363 bge a5,s0,40c6 <.L35> 40c0: R_RISCV_BRANCH .L35 + 40c4: 8dbe mv s11,a5 + +00000000000040c6 <.L35>: +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:443 + snprintf(msg, sizeof(msg), "%s at %08jx", argv[1], + 40c6: 008bb683 ld a3,8(s7) + 40ca: 8666 mv a2,s9 + 40cc: 02000593 li a1,32 + 40d0: 8756 mv a4,s5 + 40d2: 850a mv a0,sp + 40d4: 00000097 auipc ra,0x0 40d4: R_RISCV_CALL snprintf + 40d4: R_RISCV_RELAX *ABS* + 40d8: 000080e7 jalr ra # 40d4 <.L35+0xe> + +00000000000040dc <.LVL81>: + 40dc: 000d8d1b sext.w s10,s11 + +00000000000040e0 <.LVL82>: +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:446 + &buffer[nbytesread - (position - skip)], + 40e0: 4189093b subw s2,s2,s8 + +00000000000040e4 <.LVL83>: +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:445 + nsh_dumpbuffer(vtbl, msg, + 40e4: 86ea mv a3,s10 + 40e6: 01298633 add a2,s3,s2 + 40ea: 858a mv a1,sp + 40ec: 8526 mv a0,s1 + 40ee: 00000097 auipc ra,0x0 40ee: R_RISCV_CALL nsh_dumpbuffer + 40ee: R_RISCV_RELAX *ABS* + 40f2: 000080e7 jalr ra # 40ee <.LVL83+0xa> + +00000000000040f6 <.LVL84>: +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:449 + if (count > dumpbytes) + 40f6: 048d5563 bge s10,s0,4140 <.L32> 40f6: R_RISCV_BRANCH .L32 +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:451 + count -= dumpbytes; + 40fa: 41b4043b subw s0,s0,s11 + +00000000000040fe <.LVL85>: + 40fe: bf19 j 4014 <.L29> 40fe: R_RISCV_RVC_JUMP .L29 + +0000000000004100 <.L33>: +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:466 + if (nbytesread > count) + 4100: 8c22 mv s8,s0 + 4102: 00895363 bge s2,s0,4108 <.L36> 4102: R_RISCV_BRANCH .L36 + 4106: 8c4a mv s8,s2 + +0000000000004108 <.L36>: +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:472 + snprintf(msg, sizeof(msg), "%s at %08jx", argv[1], + 4108: 008bb683 ld a3,8(s7) + 410c: 8752 mv a4,s4 + 410e: 8666 mv a2,s9 + 4110: 02000593 li a1,32 + 4114: 850a mv a0,sp + 4116: 00000097 auipc ra,0x0 4116: R_RISCV_CALL snprintf + 4116: R_RISCV_RELAX *ABS* + 411a: 000080e7 jalr ra # 4116 <.L36+0xe> + +000000000000411e <.LVL87>: + 411e: 000c091b sext.w s2,s8 + +0000000000004122 <.LVL88>: +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:474 + nsh_dumpbuffer(vtbl, msg, buffer, nbytesread); + 4122: 86ca mv a3,s2 + 4124: 864e mv a2,s3 + 4126: 858a mv a1,sp + 4128: 8526 mv a0,s1 + 412a: 00000097 auipc ra,0x0 412a: R_RISCV_CALL nsh_dumpbuffer + 412a: R_RISCV_RELAX *ABS* + 412e: 000080e7 jalr ra # 412a <.LVL88+0x8> + +0000000000004132 <.LVL89>: +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:475 + position += nbytesread; + 4132: 014c0a3b addw s4,s8,s4 + +0000000000004136 <.LVL90>: +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:478 + if (count > nbytesread) + 4136: 00895563 bge s2,s0,4140 <.L32> 4136: R_RISCV_BRANCH .L32 +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:480 + count -= nbytesread; + 413a: 4184043b subw s0,s0,s8 + +000000000000413e <.LVL91>: + 413e: bdd9 j 4014 <.L29> 413e: R_RISCV_RVC_JUMP .L29 + +0000000000004140 <.L32>: +/Users/Luppy/ox64/apps/nshlib/nsh_dbgcmds.c:374 + int ret = OK; + 4140: 4401 li s0,0 + +0000000000004142 <.LVL93>: + 4142: bf11 j 4056 <.L31> 4142: R_RISCV_RVC_JUMP .L31 + +0000000000004144 : +dd_read(): +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:125 +/**************************************************************************** + * Name: dd_read + ****************************************************************************/ + +static int dd_read(FAR struct dd_s *dd) +{ + 4144: 1101 addi sp,sp,-32 + 4146: e822 sd s0,16(sp) + 4148: ec06 sd ra,24(sp) + 414a: e426 sd s1,8(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:126 + FAR uint8_t *buffer = dd->buffer; + 414c: 7904 ld s1,48(a0) + +000000000000414e <.LVL1>: +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:125 +{ + 414e: 842a mv s0,a0 +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:129 + ssize_t nbytes; + + dd->nbytes = 0; + 4150: 02053423 sd zero,40(a0) + +0000000000004154 <.L5>: +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:132 + do + { + nbytes = read(dd->infd, buffer, dd->sectsize - dd->nbytes); + 4154: 7010 ld a2,32(s0) + 4156: 741c ld a5,40(s0) + 4158: 4408 lw a0,8(s0) + 415a: 85a6 mv a1,s1 + 415c: 8e1d sub a2,a2,a5 + 415e: 00000097 auipc ra,0x0 415e: R_RISCV_CALL read + 415e: R_RISCV_RELAX *ABS* + 4162: 000080e7 jalr ra # 415e <.L5+0xa> + +0000000000004166 <.LVL3>: +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:133 + if (nbytes < 0) + 4166: 02055d63 bgez a0,41a0 <.L2> 4166: R_RISCV_BRANCH .L2 + +000000000000416a <.LBB3>: +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:135 + { + FAR struct nsh_vtbl_s *vtbl = dd->vtbl; + 416a: 6000 ld s0,0(s0) + +000000000000416c <.LVL4>: +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:136 + nsh_error(vtbl, g_fmtcmdfailed, g_dd, "read", NSH_ERRNO); + 416c: 7404 ld s1,40(s0) + +000000000000416e <.LVL5>: + 416e: 00000097 auipc ra,0x0 416e: R_RISCV_CALL __errno + 416e: R_RISCV_RELAX *ABS* + 4172: 000080e7 jalr ra # 416e <.LVL5> + +0000000000004176 <.LVL6>: + 4176: 4118 lw a4,0(a0) + 4178: 00000697 auipc a3,0x0 4178: R_RISCV_PCREL_HI20 .LC0 + 4178: R_RISCV_RELAX *ABS* + 417c: 00068693 mv a3,a3 417c: R_RISCV_PCREL_LO12_I .L0 + 417c: R_RISCV_RELAX *ABS* + 4180: 00000617 auipc a2,0x0 4180: R_RISCV_PCREL_HI20 .LC1 + 4180: R_RISCV_RELAX *ABS* + 4184: 00060613 mv a2,a2 4184: R_RISCV_PCREL_LO12_I .L0 + 4184: R_RISCV_RELAX *ABS* + 4188: 00000597 auipc a1,0x0 4188: R_RISCV_PCREL_HI20 g_fmtcmdfailed + 4188: R_RISCV_RELAX *ABS* + 418c: 00058593 mv a1,a1 418c: R_RISCV_PCREL_LO12_I .L0 + 418c: R_RISCV_RELAX *ABS* + 4190: 8522 mv a0,s0 + 4192: 9482 jalr s1 + +0000000000004194 <.LVL7>: +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:137 + return ERROR; + 4194: 557d li a0,-1 + +0000000000004196 <.L3>: +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:147 + } + while (dd->nbytes < dd->sectsize && nbytes > 0); + + dd->eof |= (dd->nbytes == 0); + return OK; +} + 4196: 60e2 ld ra,24(sp) + 4198: 6442 ld s0,16(sp) + 419a: 64a2 ld s1,8(sp) + 419c: 6105 addi sp,sp,32 + 419e: 8082 ret + +00000000000041a0 <.L2>: +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:140 + dd->nbytes += nbytes; + 41a0: 741c ld a5,40(s0) +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:143 + while (dd->nbytes < dd->sectsize && nbytes > 0); + 41a2: 7018 ld a4,32(s0) +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:141 + buffer += nbytes; + 41a4: 94aa add s1,s1,a0 + +00000000000041a6 <.LVL10>: +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:140 + dd->nbytes += nbytes; + 41a6: 97aa add a5,a5,a0 + 41a8: f41c sd a5,40(s0) + +00000000000041aa <.LVL11>: +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:143 + while (dd->nbytes < dd->sectsize && nbytes > 0); + 41aa: 00e7f363 bgeu a5,a4,41b0 <.L4> 41aa: R_RISCV_BRANCH .L4 +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:143 (discriminator 1) + 41ae: f15d bnez a0,4154 <.L5> 41ae: R_RISCV_RVC_BRANCH .L5 + +00000000000041b0 <.L4>: +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:145 + dd->eof |= (dd->nbytes == 0); + 41b0: 01844703 lbu a4,24(s0) # 10000018 <.Ldebug_info0+0xffc9f53> + 41b4: 0017b793 seqz a5,a5 +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:146 + return OK; + 41b8: 4501 li a0,0 + +00000000000041ba <.LVL12>: +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:145 + dd->eof |= (dd->nbytes == 0); + 41ba: 8fd9 or a5,a5,a4 + 41bc: 00f40c23 sb a5,24(s0) +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:146 + return OK; + 41c0: bfd9 j 4196 <.L3> 41c0: R_RISCV_RVC_JUMP .L3 + +00000000000041c2 : +cmd_dd(): +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:264 +/**************************************************************************** + * Name: cmd_dd + ****************************************************************************/ + +int cmd_dd(FAR struct nsh_vtbl_s *vtbl, int argc, FAR char **argv) +{ + 41c2: 7115 addi sp,sp,-224 + 41c4: e9a2 sd s0,208(sp) + 41c6: fd4e sd s3,184(sp) + 41c8: 842a mv s0,a0 + 41ca: e42e sd a1,8(sp) + 41cc: 89b2 mv s3,a2 +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:280 + int ret = ERROR; + int i; + + /* Initialize the dd structure */ + + memset(&dd, 0, sizeof(struct dd_s)); + 41ce: 4581 li a1,0 + +00000000000041d0 <.LVL14>: + 41d0: 03000613 li a2,48 + +00000000000041d4 <.LVL15>: + 41d4: 0088 addi a0,sp,64 + +00000000000041d6 <.LVL16>: +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:264 +{ + 41d6: e5a6 sd s1,200(sp) + 41d8: e1ca sd s2,192(sp) + 41da: f952 sd s4,176(sp) + 41dc: f15a sd s6,160(sp) + 41de: ed5e sd s7,152(sp) + 41e0: e962 sd s8,144(sp) + 41e2: e566 sd s9,136(sp) + 41e4: e16a sd s10,128(sp) + 41e6: fcee sd s11,120(sp) + 41e8: ed86 sd ra,216(sp) + 41ea: f556 sd s5,168(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:280 + memset(&dd, 0, sizeof(struct dd_s)); + 41ec: 00000097 auipc ra,0x0 41ec: R_RISCV_CALL memset + 41ec: R_RISCV_RELAX *ABS* + 41f0: 000080e7 jalr ra # 41ec <.LVL16+0x16> + +00000000000041f4 <.LVL17>: +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:282 + dd.vtbl = vtbl; /* For nsh_output */ + dd.sectsize = DEFAULT_SECTSIZE; /* Sector size if 'bs=' not provided */ + 41f4: 20000793 li a5,512 + 41f8: ecbe sd a5,88(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:283 + dd.nsectors = 0xffffffff; /* MAX_UINT32 */ + 41fa: 57fd li a5,-1 +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:281 + dd.vtbl = vtbl; /* For nsh_output */ + 41fc: fc22 sd s0,56(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:283 + dd.nsectors = 0xffffffff; /* MAX_UINT32 */ + 41fe: c4be sw a5,72(sp) + +0000000000004200 <.LVL18>: +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:303 + dd->outfd = 1; /* stdout */ +#endif + + /* Parse command line parameters */ + + for (i = 1; i < argc; i++) + 4200: 09a1 addi s3,s3,8 + +0000000000004202 <.LVL19>: + 4202: 4a05 li s4,1 +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:267 + FAR char *outfile = NULL; + 4204: 4481 li s1,0 +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:266 + FAR char *infile = NULL; + 4206: 4901 li s2,0 +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:314 + free(infile); + } + + infile = nsh_getfullpath(vtbl, &argv[i][3]); + } + else if (strncmp(argv[i], "of=", 3) == 0) + 4208: 00000b17 auipc s6,0x0 4208: R_RISCV_PCREL_HI20 .LC3 + 4208: R_RISCV_RELAX *ABS* + 420c: 000b0b13 mv s6,s6 420c: R_RISCV_PCREL_LO12_I .L0 + 420c: R_RISCV_RELAX *ABS* +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:323 + free(outfile); + } + + outfile = nsh_getfullpath(vtbl, &argv[i][3]); + } + else if (strncmp(argv[i], "bs=", 3) == 0) + 4210: 00000b97 auipc s7,0x0 4210: R_RISCV_PCREL_HI20 .LC4 + 4210: R_RISCV_RELAX *ABS* + 4214: 000b8b93 mv s7,s7 4214: R_RISCV_PCREL_LO12_I .L0 + 4214: R_RISCV_RELAX *ABS* +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:327 + { + dd.sectsize = atoi(&argv[i][3]); + } + else if (strncmp(argv[i], "count=", 6) == 0) + 4218: 00000c17 auipc s8,0x0 4218: R_RISCV_PCREL_HI20 .LC5 + 4218: R_RISCV_RELAX *ABS* + 421c: 000c0c13 mv s8,s8 421c: R_RISCV_PCREL_LO12_I .L0 + 421c: R_RISCV_RELAX *ABS* +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:331 + { + dd.nsectors = atoi(&argv[i][6]); + } + else if (strncmp(argv[i], "skip=", 5) == 0) + 4220: 00000c97 auipc s9,0x0 4220: R_RISCV_PCREL_HI20 .LC6 + 4220: R_RISCV_RELAX *ABS* + 4224: 000c8c93 mv s9,s9 4224: R_RISCV_PCREL_LO12_I .L0 + 4224: R_RISCV_RELAX *ABS* +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:335 + { + dd.skip = atoi(&argv[i][5]); + } + else if (strncmp(argv[i], "verify", 6) == 0) + 4228: 00000d17 auipc s10,0x0 4228: R_RISCV_PCREL_HI20 .LC7 + 4228: R_RISCV_RELAX *ABS* + 422c: 000d0d13 mv s10,s10 422c: R_RISCV_PCREL_LO12_I .L0 + 422c: R_RISCV_RELAX *ABS* +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:337 + { + dd.verify = true; + 4230: 4d85 li s11,1 + +0000000000004232 <.L9>: +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:303 (discriminator 1) + for (i = 1; i < argc; i++) + 4232: 67a2 ld a5,8(sp) + 4234: 04fa4a63 blt s4,a5,4288 <.L18> 4234: R_RISCV_BRANCH .L18 +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:342 + } + } + +#ifndef CAN_PIPE_FROM_STD + if (infile == NULL || outfile == NULL) + 4238: 00090463 beqz s2,4240 <.L19> 4238: R_RISCV_BRANCH .L19 +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:342 (discriminator 1) + 423c: 12049963 bnez s1,436e <.L20> 423c: R_RISCV_BRANCH .L20 + +0000000000004240 <.L19>: +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:344 + { + nsh_error(vtbl, g_fmtargrequired, g_dd); + 4240: 741c ld a5,40(s0) + 4242: 8522 mv a0,s0 + 4244: 00000617 auipc a2,0x0 4244: R_RISCV_PCREL_HI20 .LC1 + 4244: R_RISCV_RELAX *ABS* + 4248: 00060613 mv a2,a2 4248: R_RISCV_PCREL_LO12_I .L0 + 4248: R_RISCV_RELAX *ABS* + 424c: 00000597 auipc a1,0x0 424c: R_RISCV_PCREL_HI20 g_fmtargrequired + 424c: R_RISCV_RELAX *ABS* + 4250: 00058593 mv a1,a1 4250: R_RISCV_PCREL_LO12_I .L0 + 4250: R_RISCV_RELAX *ABS* + 4254: 9782 jalr a5 + +0000000000004256 <.LDL1>: +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:275 + int ret = ERROR; + 4256: 547d li s0,-1 + +0000000000004258 <.LVL22>: +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:452 + +errout_with_alloc: + free(dd.buffer); + +errout_with_paths: + if (infile) + 4258: 12091e63 bnez s2,4394 <.L21> 4258: R_RISCV_BRANCH .L21 + +000000000000425c <.L22>: +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:457 + { + nsh_freefullpath(infile); + } + + if (outfile) + 425c: c491 beqz s1,4268 <.L49> 425c: R_RISCV_RVC_BRANCH .L49 +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:459 + { + nsh_freefullpath(outfile); + 425e: 8526 mv a0,s1 + 4260: 00000097 auipc ra,0x0 4260: R_RISCV_CALL nsh_freefullpath + 4260: R_RISCV_RELAX *ABS* + 4264: 000080e7 jalr ra # 4260 <.L22+0x4> + +0000000000004268 <.L49>: +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:463 + } + + return ret; +} + 4268: 60ee ld ra,216(sp) + 426a: 8522 mv a0,s0 + 426c: 644e ld s0,208(sp) + 426e: 64ae ld s1,200(sp) + +0000000000004270 <.LVL25>: + 4270: 690e ld s2,192(sp) + +0000000000004272 <.LVL26>: + 4272: 79ea ld s3,184(sp) + 4274: 7a4a ld s4,176(sp) + 4276: 7aaa ld s5,168(sp) + 4278: 7b0a ld s6,160(sp) + 427a: 6bea ld s7,152(sp) + 427c: 6c4a ld s8,144(sp) + 427e: 6caa ld s9,136(sp) + 4280: 6d0a ld s10,128(sp) + 4282: 7de6 ld s11,120(sp) + 4284: 612d addi sp,sp,224 + 4286: 8082 ret + +0000000000004288 <.L18>: +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:305 + if (strncmp(argv[i], "if=", 3) == 0) + 4288: 0009ba83 ld s5,0(s3) + 428c: 460d li a2,3 + 428e: 00000597 auipc a1,0x0 428e: R_RISCV_PCREL_HI20 .LC2 + 428e: R_RISCV_RELAX *ABS* + 4292: 00058593 mv a1,a1 4292: R_RISCV_PCREL_LO12_I .L0 + 4292: R_RISCV_RELAX *ABS* + 4296: 8556 mv a0,s5 + 4298: 00000097 auipc ra,0x0 4298: R_RISCV_CALL strncmp + 4298: R_RISCV_RELAX *ABS* + 429c: 000080e7 jalr ra # 4298 <.L18+0x10> + +00000000000042a0 <.LVL28>: + 42a0: e505 bnez a0,42c8 <.L10> 42a0: R_RISCV_RVC_BRANCH .L10 +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:307 + if (infile != NULL) + 42a2: 00090763 beqz s2,42b0 <.L11> 42a2: R_RISCV_BRANCH .L11 +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:309 + free(infile); + 42a6: 854a mv a0,s2 + 42a8: 00000097 auipc ra,0x0 42a8: R_RISCV_CALL free + 42a8: R_RISCV_RELAX *ABS* + 42ac: 000080e7 jalr ra # 42a8 <.LVL28+0x8> + +00000000000042b0 <.L11>: +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:312 + infile = nsh_getfullpath(vtbl, &argv[i][3]); + 42b0: 0009b583 ld a1,0(s3) + 42b4: 8522 mv a0,s0 + 42b6: 058d addi a1,a1,3 + 42b8: 00000097 auipc ra,0x0 42b8: R_RISCV_CALL nsh_getfullpath + 42b8: R_RISCV_RELAX *ABS* + 42bc: 000080e7 jalr ra # 42b8 <.L11+0x8> + +00000000000042c0 <.LVL30>: + 42c0: 892a mv s2,a0 + +00000000000042c2 <.L12>: +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:303 (discriminator 2) + for (i = 1; i < argc; i++) + 42c2: 2a05 addiw s4,s4,1 + +00000000000042c4 <.LVL32>: + 42c4: 09a1 addi s3,s3,8 + 42c6: b7b5 j 4232 <.L9> 42c6: R_RISCV_RVC_JUMP .L9 + +00000000000042c8 <.L10>: +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:314 + else if (strncmp(argv[i], "of=", 3) == 0) + 42c8: 460d li a2,3 + 42ca: 85da mv a1,s6 + 42cc: 8556 mv a0,s5 + 42ce: 00000097 auipc ra,0x0 42ce: R_RISCV_CALL strncmp + 42ce: R_RISCV_RELAX *ABS* + 42d2: 000080e7 jalr ra # 42ce <.L10+0x6> + +00000000000042d6 <.LVL34>: + 42d6: e10d bnez a0,42f8 <.L13> 42d6: R_RISCV_RVC_BRANCH .L13 +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:316 + if (outfile != NULL) + 42d8: c491 beqz s1,42e4 <.L14> 42d8: R_RISCV_RVC_BRANCH .L14 +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:318 + free(outfile); + 42da: 8526 mv a0,s1 + 42dc: 00000097 auipc ra,0x0 42dc: R_RISCV_CALL free + 42dc: R_RISCV_RELAX *ABS* + 42e0: 000080e7 jalr ra # 42dc <.LVL34+0x6> + +00000000000042e4 <.L14>: +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:321 + outfile = nsh_getfullpath(vtbl, &argv[i][3]); + 42e4: 0009b583 ld a1,0(s3) + 42e8: 8522 mv a0,s0 + 42ea: 058d addi a1,a1,3 + 42ec: 00000097 auipc ra,0x0 42ec: R_RISCV_CALL nsh_getfullpath + 42ec: R_RISCV_RELAX *ABS* + 42f0: 000080e7 jalr ra # 42ec <.L14+0x8> + +00000000000042f4 <.LVL36>: + 42f4: 84aa mv s1,a0 + 42f6: b7f1 j 42c2 <.L12> 42f6: R_RISCV_RVC_JUMP .L12 + +00000000000042f8 <.L13>: +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:323 + else if (strncmp(argv[i], "bs=", 3) == 0) + 42f8: 460d li a2,3 + 42fa: 85de mv a1,s7 + 42fc: 8556 mv a0,s5 + 42fe: 00000097 auipc ra,0x0 42fe: R_RISCV_CALL strncmp + 42fe: R_RISCV_RELAX *ABS* + 4302: 000080e7 jalr ra # 42fe <.L13+0x6> + +0000000000004306 <.LVL38>: + 4306: e909 bnez a0,4318 <.L15> 4306: R_RISCV_RVC_BRANCH .L15 +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:325 + dd.sectsize = atoi(&argv[i][3]); + 4308: 003a8513 addi a0,s5,3 # 36a9 <.LVL46+0xd> + 430c: 00000097 auipc ra,0x0 430c: R_RISCV_CALL atoi + 430c: R_RISCV_RELAX *ABS* + 4310: 000080e7 jalr ra # 430c <.LVL38+0x6> + +0000000000004314 <.LVL39>: + 4314: ecaa sd a0,88(sp) + 4316: b775 j 42c2 <.L12> 4316: R_RISCV_RVC_JUMP .L12 + +0000000000004318 <.L15>: +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:327 + else if (strncmp(argv[i], "count=", 6) == 0) + 4318: 4619 li a2,6 + 431a: 85e2 mv a1,s8 + 431c: 8556 mv a0,s5 + 431e: 00000097 auipc ra,0x0 431e: R_RISCV_CALL strncmp + 431e: R_RISCV_RELAX *ABS* + 4322: 000080e7 jalr ra # 431e <.L15+0x6> + +0000000000004326 <.LVL40>: + 4326: e909 bnez a0,4338 <.L16> 4326: R_RISCV_RVC_BRANCH .L16 +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:329 + dd.nsectors = atoi(&argv[i][6]); + 4328: 006a8513 addi a0,s5,6 + 432c: 00000097 auipc ra,0x0 432c: R_RISCV_CALL atoi + 432c: R_RISCV_RELAX *ABS* + 4330: 000080e7 jalr ra # 432c <.LVL40+0x6> + +0000000000004334 <.LVL41>: + 4334: c4aa sw a0,72(sp) + 4336: b771 j 42c2 <.L12> 4336: R_RISCV_RVC_JUMP .L12 + +0000000000004338 <.L16>: +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:331 + else if (strncmp(argv[i], "skip=", 5) == 0) + 4338: 4615 li a2,5 + 433a: 85e6 mv a1,s9 + 433c: 8556 mv a0,s5 + 433e: 00000097 auipc ra,0x0 433e: R_RISCV_CALL strncmp + 433e: R_RISCV_RELAX *ABS* + 4342: 000080e7 jalr ra # 433e <.L16+0x6> + +0000000000004346 <.LVL42>: + 4346: e909 bnez a0,4358 <.L17> 4346: R_RISCV_RVC_BRANCH .L17 +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:333 + dd.skip = atoi(&argv[i][5]); + 4348: 005a8513 addi a0,s5,5 + 434c: 00000097 auipc ra,0x0 434c: R_RISCV_CALL atoi + 434c: R_RISCV_RELAX *ABS* + 4350: 000080e7 jalr ra # 434c <.LVL42+0x6> + +0000000000004354 <.LVL43>: + 4354: c6aa sw a0,76(sp) + 4356: b7b5 j 42c2 <.L12> 4356: R_RISCV_RVC_JUMP .L12 + +0000000000004358 <.L17>: +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:335 + else if (strncmp(argv[i], "verify", 6) == 0) + 4358: 4619 li a2,6 + 435a: 85ea mv a1,s10 + 435c: 8556 mv a0,s5 + 435e: 00000097 auipc ra,0x0 435e: R_RISCV_CALL strncmp + 435e: R_RISCV_RELAX *ABS* + 4362: 000080e7 jalr ra # 435e <.L17+0x6> + +0000000000004366 <.LVL44>: + 4366: fd31 bnez a0,42c2 <.L12> 4366: R_RISCV_RVC_BRANCH .L12 +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:337 + dd.verify = true; + 4368: 05b108a3 sb s11,81(sp) + 436c: bf99 j 42c2 <.L12> 436c: R_RISCV_RVC_JUMP .L12 + +000000000000436e <.L20>: +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:351 + dd.buffer = malloc(dd.sectsize); + 436e: 6566 ld a0,88(sp) + 4370: 00000097 auipc ra,0x0 4370: R_RISCV_CALL malloc + 4370: R_RISCV_RELAX *ABS* + 4374: 000080e7 jalr ra # 4370 <.L20+0x2> + +0000000000004378 <.LVL45>: + 4378: f4aa sd a0,104(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:352 + if (!dd.buffer) + 437a: e11d bnez a0,43a0 <.L23> 437a: R_RISCV_RVC_BRANCH .L23 +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:354 + nsh_error(vtbl, g_fmtcmdoutofmemory, g_dd); + 437c: 741c ld a5,40(s0) + 437e: 8522 mv a0,s0 + 4380: 00000617 auipc a2,0x0 4380: R_RISCV_PCREL_HI20 .LC1 + 4380: R_RISCV_RELAX *ABS* + 4384: 00060613 mv a2,a2 4384: R_RISCV_PCREL_LO12_I .L0 + 4384: R_RISCV_RELAX *ABS* + 4388: 00000597 auipc a1,0x0 4388: R_RISCV_PCREL_HI20 g_fmtcmdoutofmemory + 4388: R_RISCV_RELAX *ABS* + 438c: 00058593 mv a1,a1 438c: R_RISCV_PCREL_LO12_I .L0 + 438c: R_RISCV_RELAX *ABS* + 4390: 9782 jalr a5 + +0000000000004392 <.LVL46>: +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:275 + int ret = ERROR; + 4392: 547d li s0,-1 + +0000000000004394 <.L21>: +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:454 + nsh_freefullpath(infile); + 4394: 854a mv a0,s2 + 4396: 00000097 auipc ra,0x0 4396: R_RISCV_CALL nsh_freefullpath + 4396: R_RISCV_RELAX *ABS* + 439a: 000080e7 jalr ra # 4396 <.L21+0x2> + +000000000000439e <.LVL48>: + 439e: bd7d j 425c <.L22> 439e: R_RISCV_RVC_JUMP .L22 + +00000000000043a0 <.L23>: +dd_infopen(): +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:155 + dd->infd = open(name, O_RDONLY); + 43a0: 4585 li a1,1 + 43a2: 854a mv a0,s2 + 43a4: 00000097 auipc ra,0x0 43a4: R_RISCV_CALL open + 43a4: R_RISCV_RELAX *ABS* + 43a8: 000080e7 jalr ra # 43a4 <.L23+0x4> + +00000000000043ac <.LVL50>: + 43ac: c0aa sw a0,64(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:156 + if (dd->infd < 0) + 43ae: 04054f63 bltz a0,440c <.L24> 43ae: R_RISCV_BRANCH .L24 + +00000000000043b2 <.LBB22>: +dd_outfopen(): +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:172 + dd->outfd = open(name, (dd->verify ? O_RDWR : O_WRONLY) | + 43b2: 05114583 lbu a1,81(sp) + 43b6: 1a400613 li a2,420 + 43ba: 8526 mv a0,s1 + 43bc: 00b035b3 snez a1,a1 + 43c0: 02658593 addi a1,a1,38 # 43ae <.LVL50+0x2> + 43c4: 00000097 auipc ra,0x0 43c4: R_RISCV_CALL open + 43c4: R_RISCV_RELAX *ABS* + 43c8: 000080e7 jalr ra # 43c4 <.LBB22+0x12> + +00000000000043cc <.LVL52>: + 43cc: c2aa sw a0,68(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:174 + if (dd->outfd < 0) + 43ce: 06055c63 bgez a0,4446 <.L28> 43ce: R_RISCV_BRANCH .L28 + +00000000000043d2 <.LBB24>: +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:176 + FAR struct nsh_vtbl_s *vtbl = dd->vtbl; + 43d2: 7462 ld s0,56(sp) + +00000000000043d4 <.LVL53>: +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:177 + nsh_error(vtbl, g_fmtcmdfailed, g_dd, "open", NSH_ERRNO); + 43d4: 02843983 ld s3,40(s0) + 43d8: 00000097 auipc ra,0x0 43d8: R_RISCV_CALL __errno + 43d8: R_RISCV_RELAX *ABS* + 43dc: 000080e7 jalr ra # 43d8 <.LVL53+0x4> + +00000000000043e0 <.LVL54>: + 43e0: 4118 lw a4,0(a0) + 43e2: 00000697 auipc a3,0x0 43e2: R_RISCV_PCREL_HI20 .LC8 + 43e2: R_RISCV_RELAX *ABS* + 43e6: 00068693 mv a3,a3 43e6: R_RISCV_PCREL_LO12_I .L0 + 43e6: R_RISCV_RELAX *ABS* + 43ea: 8522 mv a0,s0 + 43ec: 00000617 auipc a2,0x0 43ec: R_RISCV_PCREL_HI20 .LC1 + 43ec: R_RISCV_RELAX *ABS* + 43f0: 00060613 mv a2,a2 43f0: R_RISCV_PCREL_LO12_I .L0 + 43f0: R_RISCV_RELAX *ABS* + 43f4: 00000597 auipc a1,0x0 43f4: R_RISCV_PCREL_HI20 g_fmtcmdfailed + 43f4: R_RISCV_RELAX *ABS* + 43f8: 00058593 mv a1,a1 43f8: R_RISCV_PCREL_LO12_I .L0 + 43f8: R_RISCV_RELAX *ABS* + 43fc: 9982 jalr s3 + +00000000000043fe <.LBB25>: +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:178 + return ERROR; + 43fe: 547d li s0,-1 + +0000000000004400 <.L29>: +cmd_dd(): +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:446 + close(dd.infd); + 4400: 4506 lw a0,64(sp) + 4402: 00000097 auipc ra,0x0 4402: R_RISCV_CALL close + 4402: R_RISCV_RELAX *ABS* + 4406: 000080e7 jalr ra # 4402 <.L29+0x2> + +000000000000440a <.LVL57>: + 440a: a805 j 443a <.L27> 440a: R_RISCV_RVC_JUMP .L27 + +000000000000440c <.L24>: +dd_infopen(): +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:158 + FAR struct nsh_vtbl_s *vtbl = dd->vtbl; + 440c: 7462 ld s0,56(sp) + +000000000000440e <.LVL59>: +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:159 + nsh_error(vtbl, g_fmtcmdfailed, g_dd, "open", NSH_ERRNO); + 440e: 02843983 ld s3,40(s0) + 4412: 00000097 auipc ra,0x0 4412: R_RISCV_CALL __errno + 4412: R_RISCV_RELAX *ABS* + 4416: 000080e7 jalr ra # 4412 <.LVL59+0x4> + +000000000000441a <.LVL60>: + 441a: 4118 lw a4,0(a0) + 441c: 00000697 auipc a3,0x0 441c: R_RISCV_PCREL_HI20 .LC8 + 441c: R_RISCV_RELAX *ABS* + 4420: 00068693 mv a3,a3 4420: R_RISCV_PCREL_LO12_I .L0 + 4420: R_RISCV_RELAX *ABS* + 4424: 8522 mv a0,s0 + 4426: 00000617 auipc a2,0x0 4426: R_RISCV_PCREL_HI20 .LC1 + 4426: R_RISCV_RELAX *ABS* + 442a: 00060613 mv a2,a2 442a: R_RISCV_PCREL_LO12_I .L0 + 442a: R_RISCV_RELAX *ABS* + 442e: 00000597 auipc a1,0x0 442e: R_RISCV_PCREL_HI20 g_fmtcmdfailed + 442e: R_RISCV_RELAX *ABS* + 4432: 00058593 mv a1,a1 4432: R_RISCV_PCREL_LO12_I .L0 + 4432: R_RISCV_RELAX *ABS* + 4436: 9982 jalr s3 + +0000000000004438 <.LBB19>: +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:160 + return ERROR; + 4438: 547d li s0,-1 + +000000000000443a <.L27>: +cmd_dd(): +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:449 + free(dd.buffer); + 443a: 7526 ld a0,104(sp) + 443c: 00000097 auipc ra,0x0 443c: R_RISCV_CALL free + 443c: R_RISCV_RELAX *ABS* + 4440: 000080e7 jalr ra # 443c <.L27+0x2> + +0000000000004444 <.LVL63>: + 4444: bf81 j 4394 <.L21> 4444: R_RISCV_RVC_JUMP .L21 + +0000000000004446 <.L28>: +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:380 + if (dd.skip) + 4446: 47b6 lw a5,76(sp) + 4448: e7bd bnez a5,44b6 <.L30> 4448: R_RISCV_RVC_BRANCH .L30 + +000000000000444a <.L32>: +dd_write(): +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:101 + written = 0; + 444a: 4981 li s3,0 + +000000000000444c <.L34>: +cmd_dd(): +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:391 + while (!dd.eof && sector < dd.nsectors) + 444c: 05014783 lbu a5,80(sp) + 4450: e781 bnez a5,4458 <.L37> 4450: R_RISCV_RVC_BRANCH .L37 +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:391 (discriminator 1) + 4452: 47a6 lw a5,72(sp) + 4454: 0af9e463 bltu s3,a5,44fc <.L38> 4454: R_RISCV_BRANCH .L38 + +0000000000004458 <.L37>: +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:437 (discriminator 1) + if (ret == 0 && dd.verify) + 4458: 05114783 lbu a5,81(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:419 (discriminator 1) + ret = OK; + 445c: 4401 li s0,0 +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:437 (discriminator 1) + if (ret == 0 && dd.verify) + 445e: c7b1 beqz a5,44aa <.L33> 445e: R_RISCV_RVC_BRANCH .L33 + +0000000000004460 <.LBB36>: +dd_verify(): +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:195 + ret = lseek(dd->infd, dd->skip ? dd->skip * dd->sectsize : 0, SEEK_SET); + 4460: 47b6 lw a5,76(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:187 + FAR struct nsh_vtbl_s *vtbl = dd->vtbl; + 4462: 79e2 ld s3,56(sp) + +0000000000004464 <.LVL69>: +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:195 + ret = lseek(dd->infd, dd->skip ? dd->skip * dd->sectsize : 0, SEEK_SET); + 4464: 4506 lw a0,64(sp) + 4466: 4581 li a1,0 + 4468: c781 beqz a5,4470 <.L39> 4468: R_RISCV_RVC_BRANCH .L39 + 446a: 65e6 ld a1,88(sp) + 446c: 02f585bb mulw a1,a1,a5 + +0000000000004470 <.L39>: + 4470: 4601 li a2,0 + 4472: 00000097 auipc ra,0x0 4472: R_RISCV_CALL lseek + 4472: R_RISCV_RELAX *ABS* + 4476: 000080e7 jalr ra # 4472 <.L39+0x2> + +000000000000447a <.LVL70>: + 447a: 842a mv s0,a0 + +000000000000447c <.LVL71>: +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:196 + if (ret < 0) + 447c: 0c055b63 bgez a0,4552 <.L40> 447c: R_RISCV_BRANCH .L40 + +0000000000004480 <.L73>: +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:206 + nsh_error(vtbl, g_fmtcmdfailed, g_dd, "lseek", NSH_ERRNO); + 4480: 0289ba03 ld s4,40(s3) + 4484: 00000097 auipc ra,0x0 4484: R_RISCV_CALL __errno + 4484: R_RISCV_RELAX *ABS* + 4488: 000080e7 jalr ra # 4484 <.L73+0x4> + +000000000000448c <.LVL72>: + 448c: 4118 lw a4,0(a0) + 448e: 00000697 auipc a3,0x0 448e: R_RISCV_PCREL_HI20 .LC9 + 448e: R_RISCV_RELAX *ABS* + 4492: 00068693 mv a3,a3 4492: R_RISCV_PCREL_LO12_I .L0 + 4492: R_RISCV_RELAX *ABS* + 4496: 00000617 auipc a2,0x0 4496: R_RISCV_PCREL_HI20 .LC1 + 4496: R_RISCV_RELAX *ABS* + 449a: 00060613 mv a2,a2 449a: R_RISCV_PCREL_LO12_I .L0 + 449a: R_RISCV_RELAX *ABS* + 449e: 00000597 auipc a1,0x0 449e: R_RISCV_PCREL_HI20 g_fmtcmdfailed + 449e: R_RISCV_RELAX *ABS* + 44a2: 00058593 mv a1,a1 44a2: R_RISCV_PCREL_LO12_I .L0 + 44a2: R_RISCV_RELAX *ABS* + 44a6: 854e mv a0,s3 + 44a8: 9a02 jalr s4 + +00000000000044aa <.L33>: +cmd_dd(): +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:443 + close(dd.outfd); + 44aa: 4516 lw a0,68(sp) + 44ac: 00000097 auipc ra,0x0 44ac: R_RISCV_CALL close + 44ac: R_RISCV_RELAX *ABS* + 44b0: 000080e7 jalr ra # 44ac <.L33+0x2> + +00000000000044b4 <.LVL74>: + 44b4: b7b1 j 4400 <.L29> 44b4: R_RISCV_RVC_JUMP .L29 + +00000000000044b6 <.L30>: +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:382 + ret = lseek(dd.infd, dd.skip * dd.sectsize, SEEK_SET); + 44b6: 65e6 ld a1,88(sp) + 44b8: 4506 lw a0,64(sp) + 44ba: 4601 li a2,0 + 44bc: 02f585bb mulw a1,a1,a5 + 44c0: 00000097 auipc ra,0x0 44c0: R_RISCV_CALL lseek + 44c0: R_RISCV_RELAX *ABS* + 44c4: 000080e7 jalr ra # 44c0 <.L30+0xa> + +00000000000044c8 <.LVL76>: +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:383 + if (ret < -1) + 44c8: 57fd li a5,-1 + 44ca: f8f550e3 bge a0,a5,444a <.L32> 44ca: R_RISCV_BRANCH .L32 +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:385 + nsh_error(vtbl, g_fmtcmdfailed, g_dd, "lseek", NSH_ERRNO); + 44ce: 02843983 ld s3,40(s0) + 44d2: 00000097 auipc ra,0x0 44d2: R_RISCV_CALL __errno + 44d2: R_RISCV_RELAX *ABS* + 44d6: 000080e7 jalr ra # 44d2 <.LVL76+0xa> + +00000000000044da <.LVL77>: + 44da: 4118 lw a4,0(a0) + 44dc: 00000697 auipc a3,0x0 44dc: R_RISCV_PCREL_HI20 .LC9 + 44dc: R_RISCV_RELAX *ABS* + 44e0: 00068693 mv a3,a3 44e0: R_RISCV_PCREL_LO12_I .L0 + 44e0: R_RISCV_RELAX *ABS* + +00000000000044e4 <.L74>: +dd_write(): +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:108 + nsh_error(vtbl, g_fmtcmdfailed, g_dd, "write", NSH_ERRNO); + 44e4: 00000617 auipc a2,0x0 44e4: R_RISCV_PCREL_HI20 .LC1 + 44e4: R_RISCV_RELAX *ABS* + 44e8: 00060613 mv a2,a2 44e8: R_RISCV_PCREL_LO12_I .L0 + 44e8: R_RISCV_RELAX *ABS* + 44ec: 00000597 auipc a1,0x0 44ec: R_RISCV_PCREL_HI20 g_fmtcmdfailed + 44ec: R_RISCV_RELAX *ABS* + 44f0: 00058593 mv a1,a1 44f0: R_RISCV_PCREL_LO12_I .L0 + 44f0: R_RISCV_RELAX *ABS* + 44f4: 8522 mv a0,s0 + 44f6: 9982 jalr s3 + +00000000000044f8 <.L54>: +dd_verify(): +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:213 + return ERROR; + 44f8: 547d li s0,-1 + 44fa: bf45 j 44aa <.L33> 44fa: R_RISCV_RVC_JUMP .L33 + +00000000000044fc <.L38>: +cmd_dd(): +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:395 + ret = dd_read(&dd); + 44fc: 1828 addi a0,sp,56 + 44fe: 00000097 auipc ra,0x0 44fe: R_RISCV_CALL dd_read + 44fe: R_RISCV_RELAX *ABS* + 4502: 000080e7 jalr ra # 44fe <.L38+0x2> + +0000000000004506 <.LVL81>: + 4506: 842a mv s0,a0 + +0000000000004508 <.LVL82>: +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:396 + if (ret < 0) + 4508: fa0541e3 bltz a0,44aa <.L33> 4508: R_RISCV_BRANCH .L33 +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:403 + if (!dd.eof) + 450c: 05014783 lbu a5,80(sp) + 4510: ff95 bnez a5,444c <.L34> 4510: R_RISCV_RVC_BRANCH .L34 + +0000000000004512 <.LBB44>: +dd_write(): +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:95 + FAR uint8_t *buffer = dd->buffer; + 4512: 7a26 ld s4,104(sp) + +0000000000004514 <.LVL84>: +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:101 + written = 0; + 4514: 4401 li s0,0 + +0000000000004516 <.L36>: +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:104 + nbytes = write(dd->outfd, buffer, dd->nbytes - written); + 4516: 7606 ld a2,96(sp) + 4518: 4516 lw a0,68(sp) + 451a: 85d2 mv a1,s4 + 451c: 8e01 sub a2,a2,s0 + 451e: 00000097 auipc ra,0x0 451e: R_RISCV_CALL write + 451e: R_RISCV_RELAX *ABS* + 4522: 000080e7 jalr ra # 451e <.L36+0x8> + +0000000000004526 <.LVL86>: +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:105 + if (nbytes < 0) + 4526: 00055f63 bgez a0,4544 <.L35> 4526: R_RISCV_BRANCH .L35 + +000000000000452a <.LBB33>: +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:107 + FAR struct nsh_vtbl_s *vtbl = dd->vtbl; + 452a: 7462 ld s0,56(sp) + +000000000000452c <.LVL87>: +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:108 + nsh_error(vtbl, g_fmtcmdfailed, g_dd, "write", NSH_ERRNO); + 452c: 02843983 ld s3,40(s0) + +0000000000004530 <.LVL88>: + 4530: 00000097 auipc ra,0x0 4530: R_RISCV_CALL __errno + 4530: R_RISCV_RELAX *ABS* + 4534: 000080e7 jalr ra # 4530 <.LVL88> + +0000000000004538 <.LVL89>: + 4538: 4118 lw a4,0(a0) + 453a: 00000697 auipc a3,0x0 453a: R_RISCV_PCREL_HI20 .LC10 + 453a: R_RISCV_RELAX *ABS* + 453e: 00068693 mv a3,a3 453e: R_RISCV_PCREL_LO12_I .L0 + 453e: R_RISCV_RELAX *ABS* + 4542: b74d j 44e4 <.L74> 4542: R_RISCV_RVC_JUMP .L74 + +0000000000004544 <.L35>: +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:115 + while (written < dd->nbytes); + 4544: 7786 ld a5,96(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:112 + written += nbytes; + 4546: 942a add s0,s0,a0 +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:113 + buffer += nbytes; + 4548: 9a2a add s4,s4,a0 +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:115 + while (written < dd->nbytes); + 454a: fcf466e3 bltu s0,a5,4516 <.L36> 454a: R_RISCV_BRANCH .L36 + +000000000000454e <.LBE44>: +cmd_dd(): +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:415 + sector++; + 454e: 2985 addiw s3,s3,1 + +0000000000004550 <.LVL94>: + 4550: bdf5 j 444c <.L34> 4550: R_RISCV_RVC_JUMP .L34 + +0000000000004552 <.L40>: +dd_verify(): +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:203 + ret = lseek(dd->outfd, 0, SEEK_SET); + 4552: 4516 lw a0,68(sp) + +0000000000004554 <.LVL96>: + 4554: 4601 li a2,0 + 4556: 4581 li a1,0 +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:202 + dd->eof = 0; + 4558: 04010823 sb zero,80(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:203 + ret = lseek(dd->outfd, 0, SEEK_SET); + 455c: 00000097 auipc ra,0x0 455c: R_RISCV_CALL lseek + 455c: R_RISCV_RELAX *ABS* + 4560: 000080e7 jalr ra # 455c <.LVL96+0x8> + +0000000000004564 <.LVL97>: + 4564: 842a mv s0,a0 + +0000000000004566 <.LVL98>: +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:204 + if (ret < 0) + 4566: f0054de3 bltz a0,4480 <.L73> 4566: R_RISCV_BRANCH .L73 +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:210 + buffer = malloc(dd->sectsize); + 456a: 6566 ld a0,88(sp) + +000000000000456c <.LVL99>: +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:189 + unsigned sector = 0; + 456c: 4a81 li s5,0 +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:210 + buffer = malloc(dd->sectsize); + 456e: 00000097 auipc ra,0x0 456e: R_RISCV_CALL malloc + 456e: R_RISCV_RELAX *ABS* + 4572: 000080e7 jalr ra # 456e <.LVL99+0x2> + +0000000000004576 <.LVL100>: + 4576: 8a2a mv s4,a0 + +0000000000004578 <.LVL101>: +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:211 + if (buffer == NULL) + 4578: d141 beqz a0,44f8 <.L54> 4578: R_RISCV_RVC_BRANCH .L54 + +000000000000457a <.L42>: +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:216 + while (!dd->eof && sector < dd->nsectors) + 457a: 05014783 lbu a5,80(sp) + 457e: efa9 bnez a5,45d8 <.L45> 457e: R_RISCV_RVC_BRANCH .L45 + 4580: 47a6 lw a5,72(sp) + 4582: 04fafb63 bgeu s5,a5,45d8 <.L45> 4582: R_RISCV_BRANCH .L45 +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:218 + ret = dd_read(dd); + 4586: 1828 addi a0,sp,56 + +0000000000004588 <.LVL103>: + 4588: 00000097 auipc ra,0x0 4588: R_RISCV_CALL dd_read + 4588: R_RISCV_RELAX *ABS* + 458c: 000080e7 jalr ra # 4588 <.LVL103> + +0000000000004590 <.LVL104>: + 4590: 842a mv s0,a0 + +0000000000004592 <.LVL105>: +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:219 + if (ret < 0) + 4592: 0c054463 bltz a0,465a <.L43> 4592: R_RISCV_BRANCH .L43 +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:224 + ret = read(dd->outfd, buffer, dd->nbytes); + 4596: 7606 ld a2,96(sp) + 4598: 4516 lw a0,68(sp) + +000000000000459a <.LVL106>: + 459a: 85d2 mv a1,s4 + 459c: 00000097 auipc ra,0x0 459c: R_RISCV_CALL read + 459c: R_RISCV_RELAX *ABS* + 45a0: 000080e7 jalr ra # 459c <.LVL106+0x2> + +00000000000045a4 <.LVL107>: +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:225 + if (ret != dd->nbytes) + 45a4: 7786 ld a5,96(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:224 + ret = read(dd->outfd, buffer, dd->nbytes); + 45a6: 0005041b sext.w s0,a0 + +00000000000045aa <.LVL108>: +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:225 + if (ret != dd->nbytes) + 45aa: 02f40f63 beq s0,a5,45e8 <.L44> 45aa: R_RISCV_BRANCH .L44 +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:227 + nsh_error(vtbl, g_fmtcmdfailed, g_dd, "read", NSH_ERRNO); + 45ae: 0289ba83 ld s5,40(s3) + +00000000000045b2 <.LVL109>: + 45b2: 00000097 auipc ra,0x0 45b2: R_RISCV_CALL __errno + 45b2: R_RISCV_RELAX *ABS* + 45b6: 000080e7 jalr ra # 45b2 <.LVL109> + +00000000000045ba <.LVL110>: + 45ba: 4118 lw a4,0(a0) + 45bc: 00000697 auipc a3,0x0 45bc: R_RISCV_PCREL_HI20 .LC0 + 45bc: R_RISCV_RELAX *ABS* + 45c0: 00068693 mv a3,a3 45c0: R_RISCV_PCREL_LO12_I .L0 + 45c0: R_RISCV_RELAX *ABS* + 45c4: 00000617 auipc a2,0x0 45c4: R_RISCV_PCREL_HI20 .LC1 + 45c4: R_RISCV_RELAX *ABS* + 45c8: 00060613 mv a2,a2 45c8: R_RISCV_PCREL_LO12_I .L0 + 45c8: R_RISCV_RELAX *ABS* + 45cc: 00000597 auipc a1,0x0 45cc: R_RISCV_PCREL_HI20 g_fmtcmdfailed + 45cc: R_RISCV_RELAX *ABS* + 45d0: 00058593 mv a1,a1 45d0: R_RISCV_PCREL_LO12_I .L0 + 45d0: R_RISCV_RELAX *ABS* + 45d4: 854e mv a0,s3 + 45d6: 9a82 jalr s5 + +00000000000045d8 <.L45>: +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:246 + if (ret < 0) + 45d8: 08044163 bltz s0,465a <.L43> 45d8: R_RISCV_BRANCH .L43 + +00000000000045dc <.L48>: +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:251 + free(buffer); + 45dc: 8552 mv a0,s4 + 45de: 00000097 auipc ra,0x0 45de: R_RISCV_CALL free + 45de: R_RISCV_RELAX *ABS* + 45e2: 000080e7 jalr ra # 45de <.L48+0x2> + +00000000000045e6 <.LVL113>: +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:252 + return ret; + 45e6: b5d1 j 44aa <.L33> 45e6: R_RISCV_RVC_JUMP .L33 + +00000000000045e8 <.L44>: +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:231 + if (memcmp(dd->buffer, buffer, dd->nbytes) != 0) + 45e8: 7526 ld a0,104(sp) + 45ea: 8622 mv a2,s0 + 45ec: 85d2 mv a1,s4 + 45ee: 00000097 auipc ra,0x0 45ee: R_RISCV_CALL memcmp + 45ee: R_RISCV_RELAX *ABS* + 45f2: 000080e7 jalr ra # 45ee <.L44+0x6> + +00000000000045f6 <.LVL115>: + 45f6: c541 beqz a0,467e <.L46> 45f6: R_RISCV_RVC_BRANCH .L46 + +00000000000045f8 <.LBB38>: +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:234 + snprintf(msg, sizeof(msg), "infile sector %d", sector); + 45f8: 86d6 mv a3,s5 + 45fa: 00000617 auipc a2,0x0 45fa: R_RISCV_PCREL_HI20 .LC11 + 45fa: R_RISCV_RELAX *ABS* + 45fe: 00060613 mv a2,a2 45fe: R_RISCV_PCREL_LO12_I .L0 + 45fe: R_RISCV_RELAX *ABS* + 4602: 02000593 li a1,32 + 4606: 0828 addi a0,sp,24 + 4608: 00000097 auipc ra,0x0 4608: R_RISCV_CALL snprintf + 4608: R_RISCV_RELAX *ABS* + 460c: 000080e7 jalr ra # 4608 <.LBB38+0x10> + +0000000000004610 <.LVL116>: +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:235 + nsh_dumpbuffer(vtbl, msg, dd->buffer, dd->nbytes); + 4610: 7686 ld a3,96(sp) + 4612: 7626 ld a2,104(sp) + 4614: 082c addi a1,sp,24 + 4616: 854e mv a0,s3 + 4618: 00000097 auipc ra,0x0 4618: R_RISCV_CALL nsh_dumpbuffer + 4618: R_RISCV_RELAX *ABS* + 461c: 000080e7 jalr ra # 4618 <.LVL116+0x8> + +0000000000004620 <.LVL117>: +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:236 + snprintf(msg, sizeof(msg), "\noutfile sector %d", sector); + 4620: 86d6 mv a3,s5 + 4622: 00000617 auipc a2,0x0 4622: R_RISCV_PCREL_HI20 .LC12 + 4622: R_RISCV_RELAX *ABS* + 4626: 00060613 mv a2,a2 4626: R_RISCV_PCREL_LO12_I .L0 + 4626: R_RISCV_RELAX *ABS* + 462a: 02000593 li a1,32 + 462e: 0828 addi a0,sp,24 + 4630: 00000097 auipc ra,0x0 4630: R_RISCV_CALL snprintf + 4630: R_RISCV_RELAX *ABS* + 4634: 000080e7 jalr ra # 4630 <.LVL117+0x10> + +0000000000004638 <.LVL118>: +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:237 + nsh_dumpbuffer(vtbl, msg, buffer, dd->nbytes); + 4638: 7686 ld a3,96(sp) + 463a: 8652 mv a2,s4 + 463c: 082c addi a1,sp,24 + 463e: 854e mv a0,s3 + 4640: 00000097 auipc ra,0x0 4640: R_RISCV_CALL nsh_dumpbuffer + 4640: R_RISCV_RELAX *ABS* + 4644: 000080e7 jalr ra # 4640 <.LVL118+0x8> + +0000000000004648 <.LVL119>: +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:238 + nsh_output(vtbl, "\n"); + 4648: 0309b783 ld a5,48(s3) + 464c: 00000597 auipc a1,0x0 464c: R_RISCV_PCREL_HI20 .LC13 + 464c: R_RISCV_RELAX *ABS* + 4650: 00058593 mv a1,a1 4650: R_RISCV_PCREL_LO12_I .L0 + 4650: R_RISCV_RELAX *ABS* + 4654: 854e mv a0,s3 + 4656: 9782 jalr a5 + +0000000000004658 <.LBB39>: +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:239 + ret = ERROR; + 4658: 547d li s0,-1 + +000000000000465a <.L43>: +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:248 + nsh_error(vtbl, g_fmtcmdfailed, g_dd, "dd_verify", ret); + 465a: 0289b783 ld a5,40(s3) + 465e: 8722 mv a4,s0 + 4660: 00000697 auipc a3,0x0 4660: R_RISCV_PCREL_HI20 .LC14 + 4660: R_RISCV_RELAX *ABS* + 4664: 00068693 mv a3,a3 4664: R_RISCV_PCREL_LO12_I .L0 + 4664: R_RISCV_RELAX *ABS* + 4668: 00000617 auipc a2,0x0 4668: R_RISCV_PCREL_HI20 .LC1 + 4668: R_RISCV_RELAX *ABS* + 466c: 00060613 mv a2,a2 466c: R_RISCV_PCREL_LO12_I .L0 + 466c: R_RISCV_RELAX *ABS* + 4670: 00000597 auipc a1,0x0 4670: R_RISCV_PCREL_HI20 g_fmtcmdfailed + 4670: R_RISCV_RELAX *ABS* + 4674: 00058593 mv a1,a1 4674: R_RISCV_PCREL_LO12_I .L0 + 4674: R_RISCV_RELAX *ABS* + 4678: 854e mv a0,s3 + 467a: 9782 jalr a5 + +000000000000467c <.LVL122>: + 467c: b785 j 45dc <.L48> 467c: R_RISCV_RVC_JUMP .L48 + +000000000000467e <.L46>: +/Users/Luppy/ox64/apps/nshlib/nsh_ddcmd.c:243 + sector++; + 467e: 2a85 addiw s5,s5,1 + +0000000000004680 <.LVL124>: + 4680: bded j 457a <.L42> 4680: R_RISCV_RVC_JUMP .L42 + +0000000000004682 : +nsh_getcwd(): +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:174 + * Name: nsh_getwd + ****************************************************************************/ + +#ifndef CONFIG_DISABLE_ENVIRON +FAR const char *nsh_getcwd(void) +{ + 4682: 1141 addi sp,sp,-16 + +0000000000004684 <.LBB8>: +nsh_getwd(): +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:139 + val = getenv(wd); + 4684: 00000517 auipc a0,0x0 4684: R_RISCV_PCREL_HI20 .LANCHOR1 + 4684: R_RISCV_RELAX *ABS* + 4688: 00050513 mv a0,a0 4688: R_RISCV_PCREL_LO12_I .L0 + 4688: R_RISCV_RELAX *ABS* + +000000000000468c <.LBE8>: +nsh_getcwd(): +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:174 +{ + 468c: e406 sd ra,8(sp) + +000000000000468e <.LBB9>: +nsh_getwd(): +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:139 + val = getenv(wd); + 468e: 00000097 auipc ra,0x0 468e: R_RISCV_CALL getenv + 468e: R_RISCV_RELAX *ABS* + 4692: 000080e7 jalr ra # 468e <.LBB9> + +0000000000004696 <.LVL1>: +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:140 + if (val == NULL) + 4696: e509 bnez a0,46a0 <.L1> 4696: R_RISCV_RVC_BRANCH .L1 +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:142 + val = g_home; + 4698: 00000517 auipc a0,0x0 4698: R_RISCV_PCREL_HI20 .LANCHOR0 + 4698: R_RISCV_RELAX *ABS* + 469c: 00050513 mv a0,a0 469c: R_RISCV_PCREL_LO12_I .L0 + 469c: R_RISCV_RELAX *ABS* + +00000000000046a0 <.L1>: +nsh_getcwd(): +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:176 + return nsh_getwd(g_pwd); +} + 46a0: 60a2 ld ra,8(sp) + 46a2: 0141 addi sp,sp,16 + 46a4: 8082 ret + +00000000000046a6 : +nsh_getfullpath(): +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:191 +{ + FAR const char *wd; + + /* Handle some special cases */ + + if (!relpath || relpath[0] == '\0') + 46a6: c9bd beqz a1,471c <.L13> 46a6: R_RISCV_RVC_BRANCH .L13 +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:186 (discriminator 1) +{ + 46a8: 1101 addi sp,sp,-32 + 46aa: e822 sd s0,16(sp) + 46ac: ec06 sd ra,24(sp) + 46ae: e426 sd s1,8(sp) + 46b0: e04a sd s2,0(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:191 (discriminator 1) + if (!relpath || relpath[0] == '\0') + 46b2: 0005c783 lbu a5,0(a1) # 4670 <.L43+0x16> + 46b6: 842e mv s0,a1 + 46b8: ef91 bnez a5,46d4 <.L6> 46b8: R_RISCV_RVC_BRANCH .L6 +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:195 + { + /* No relative path provided */ + + return strdup(g_home); + 46ba: 00000517 auipc a0,0x0 46ba: R_RISCV_PCREL_HI20 .LANCHOR0 + 46ba: R_RISCV_RELAX *ABS* + 46be: 00050513 mv a0,a0 46be: R_RISCV_PCREL_LO12_I .L0 + 46be: R_RISCV_RELAX *ABS* + +00000000000046c2 <.L16>: +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:216 + } + + /* Return the full path */ + + return nsh_getdirpath(vtbl, wd, relpath); +} + 46c2: 6442 ld s0,16(sp) + +00000000000046c4 <.LVL5>: + 46c4: 60e2 ld ra,24(sp) + 46c6: 64a2 ld s1,8(sp) + 46c8: 6902 ld s2,0(sp) + 46ca: 6105 addi sp,sp,32 + +00000000000046cc <.L17>: +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:199 + return strdup(relpath); + 46cc: 00000317 auipc t1,0x0 46cc: R_RISCV_CALL strdup + 46cc: R_RISCV_RELAX *ABS* + 46d0: 00030067 jr t1 # 46cc <.L17> + +00000000000046d4 <.L6>: +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:197 + else if (relpath[0] == '/') + 46d4: 02f00713 li a4,47 + 46d8: 00e79463 bne a5,a4,46e0 <.L7> 46d8: R_RISCV_BRANCH .L7 +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:199 + return strdup(relpath); + 46dc: 852e mv a0,a1 + +00000000000046de <.LVL7>: + 46de: b7d5 j 46c2 <.L16> 46de: R_RISCV_RVC_JUMP .L16 + +00000000000046e0 <.L7>: + 46e0: 892a mv s2,a0 + +00000000000046e2 <.LBB12>: +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:204 + wd = nsh_getcwd(); + 46e2: 00000097 auipc ra,0x0 46e2: R_RISCV_CALL nsh_getcwd + 46e2: R_RISCV_RELAX *ABS* + 46e6: 000080e7 jalr ra # 46e2 <.LBB12> + +00000000000046ea <.LVL10>: + 46ea: 84aa mv s1,a0 + +00000000000046ec <.LVL11>: +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:208 + if (strcmp(relpath, ".") == 0) + 46ec: 00000597 auipc a1,0x0 46ec: R_RISCV_PCREL_HI20 .LC0 + 46ec: R_RISCV_RELAX *ABS* + 46f0: 00058593 mv a1,a1 46f0: R_RISCV_PCREL_LO12_I .L0 + 46f0: R_RISCV_RELAX *ABS* + 46f4: 8522 mv a0,s0 + 46f6: 00000097 auipc ra,0x0 46f6: R_RISCV_CALL strcmp + 46f6: R_RISCV_RELAX *ABS* + 46fa: 000080e7 jalr ra # 46f6 <.LVL11+0xa> + +00000000000046fe <.LVL12>: + 46fe: e119 bnez a0,4704 <.L8> 46fe: R_RISCV_RVC_BRANCH .L8 +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:210 + return strdup(wd); + 4700: 8526 mv a0,s1 + 4702: b7c1 j 46c2 <.L16> 4702: R_RISCV_RVC_JUMP .L16 + +0000000000004704 <.L8>: +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:215 + return nsh_getdirpath(vtbl, wd, relpath); + 4704: 8622 mv a2,s0 + +0000000000004706 <.LBE12>: +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:216 +} + 4706: 6442 ld s0,16(sp) + +0000000000004708 <.LVL13>: + 4708: 60e2 ld ra,24(sp) + +000000000000470a <.LBB16>: +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:215 + return nsh_getdirpath(vtbl, wd, relpath); + 470a: 85a6 mv a1,s1 + 470c: 854a mv a0,s2 + +000000000000470e <.LBE16>: +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:216 +} + 470e: 64a2 ld s1,8(sp) + +0000000000004710 <.LVL14>: + 4710: 6902 ld s2,0(sp) + +0000000000004712 <.LVL15>: + 4712: 6105 addi sp,sp,32 + +0000000000004714 <.LBB17>: +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:215 + return nsh_getdirpath(vtbl, wd, relpath); + 4714: 00000317 auipc t1,0x0 4714: R_RISCV_CALL nsh_getdirpath + 4714: R_RISCV_RELAX *ABS* + 4718: 00030067 jr t1 # 4714 <.LBB17> + +000000000000471c <.L13>: +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:195 + return strdup(g_home); + 471c: 00000517 auipc a0,0x0 471c: R_RISCV_PCREL_HI20 .LANCHOR0 + 471c: R_RISCV_RELAX *ABS* + 4720: 00050513 mv a0,a0 4720: R_RISCV_PCREL_LO12_I .L0 + 4720: R_RISCV_RELAX *ABS* + +0000000000004724 <.LVL17>: + 4724: b765 j 46cc <.L17> 4724: R_RISCV_RVC_JUMP .L17 + +0000000000004726 : +nsh_freefullpath(): +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:226 + ****************************************************************************/ + +#ifndef CONFIG_DISABLE_ENVIRON +void nsh_freefullpath(FAR char *fullpath) +{ + if (fullpath) + 4726: c509 beqz a0,4730 <.L18> 4726: R_RISCV_RVC_BRANCH .L18 +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:228 + { + free(fullpath); + 4728: 00000317 auipc t1,0x0 4728: R_RISCV_CALL free + 4728: R_RISCV_RELAX *ABS* + 472c: 00030067 jr t1 # 4728 + +0000000000004730 <.L18>: +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:230 + } +} + 4730: 8082 ret + +0000000000004732 : +cmd_cd(): +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:240 + ****************************************************************************/ + +#ifndef CONFIG_DISABLE_ENVIRON +#ifndef CONFIG_NSH_DISABLE_CD +int cmd_cd(FAR struct nsh_vtbl_s *vtbl, int argc, FAR char **argv) +{ + 4732: 7139 addi sp,sp,-64 + 4734: ec4e sd s3,24(sp) + +0000000000004736 <.LVL21>: + 4736: e852 sd s4,16(sp) + 4738: fc06 sd ra,56(sp) + 473a: f822 sd s0,48(sp) + 473c: f426 sd s1,40(sp) + 473e: f04a sd s2,32(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:248 + FAR char *fullpath = NULL; + int ret = OK; + + /* Check for special arguments */ + + if (argc < 2 || strcmp(path, "~") == 0) + 4740: 4785 li a5,1 +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:240 +{ + 4742: 89aa mv s3,a0 + 4744: 8a32 mv s4,a2 +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:248 + if (argc < 2 || strcmp(path, "~") == 0) + 4746: 0eb7dc63 bge a5,a1,483e <.L29> 4746: R_RISCV_BRANCH .L29 +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:241 (discriminator 1) + FAR const char *path = argv[1]; + 474a: 6600 ld s0,8(a2) +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:248 (discriminator 1) + if (argc < 2 || strcmp(path, "~") == 0) + 474c: 00000597 auipc a1,0x0 474c: R_RISCV_PCREL_HI20 .LC1 + 474c: R_RISCV_RELAX *ABS* + 4750: 00058593 mv a1,a1 4750: R_RISCV_PCREL_LO12_I .L0 + 4750: R_RISCV_RELAX *ABS* + +0000000000004754 <.LVL22>: + 4754: 8522 mv a0,s0 + +0000000000004756 <.LVL23>: + 4756: 00000097 auipc ra,0x0 4756: R_RISCV_CALL strcmp + 4756: R_RISCV_RELAX *ABS* + 475a: 000080e7 jalr ra # 4756 <.LVL23> + +000000000000475e <.LVL24>: + 475e: c165 beqz a0,483e <.L29> 475e: R_RISCV_RVC_BRANCH .L29 +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:252 + { + path = g_home; + } + else if (strcmp(path, "-") == 0) + 4760: 00000597 auipc a1,0x0 4760: R_RISCV_PCREL_HI20 .LC2 + 4760: R_RISCV_RELAX *ABS* + 4764: 00058593 mv a1,a1 4764: R_RISCV_PCREL_LO12_I .L0 + 4764: R_RISCV_RELAX *ABS* + 4768: 8522 mv a0,s0 + 476a: 00000097 auipc ra,0x0 476a: R_RISCV_CALL strcmp + 476a: R_RISCV_RELAX *ABS* + 476e: 000080e7 jalr ra # 476a <.LVL24+0xc> + +0000000000004772 <.LVL25>: + 4772: e549 bnez a0,47fc <.L22> 4772: R_RISCV_RVC_BRANCH .L22 + +0000000000004774 <.LBB20>: +nsh_getwd(): +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:139 + val = getenv(wd); + 4774: 00000517 auipc a0,0x0 4774: R_RISCV_PCREL_HI20 .LANCHOR2 + 4774: R_RISCV_RELAX *ABS* + 4778: 00050513 mv a0,a0 4778: R_RISCV_PCREL_LO12_I .L0 + 4778: R_RISCV_RELAX *ABS* + 477c: 00000097 auipc ra,0x0 477c: R_RISCV_CALL getenv + 477c: R_RISCV_RELAX *ABS* + 4780: 000080e7 jalr ra # 477c <.LBB20+0x8> + +0000000000004784 <.LVL27>: +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:140 + if (val == NULL) + 4784: e509 bnez a0,478e <.L23> 4784: R_RISCV_RVC_BRANCH .L23 +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:142 + val = g_home; + 4786: 00000517 auipc a0,0x0 4786: R_RISCV_PCREL_HI20 .LANCHOR0 + 4786: R_RISCV_RELAX *ABS* + 478a: 00050513 mv a0,a0 478a: R_RISCV_PCREL_LO12_I .L0 + 478a: R_RISCV_RELAX *ABS* + +000000000000478e <.L23>: +cmd_cd(): +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:254 + { + alloc = strdup(nsh_getwd(g_oldpwd)); + 478e: 00000097 auipc ra,0x0 478e: R_RISCV_CALL strdup + 478e: R_RISCV_RELAX *ABS* + 4792: 000080e7 jalr ra # 478e <.L23> + +0000000000004796 <.LVL29>: + 4796: 842a mv s0,a0 + +0000000000004798 <.L40>: +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:243 + FAR char *fullpath = NULL; + 4798: 4481 li s1,0 + +000000000000479a <.L21>: +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:270 + path = fullpath; + } + + /* Set the new working directory */ + + ret = chdir(path); + 479a: 00000097 auipc ra,0x0 479a: R_RISCV_CALL chdir + 479a: R_RISCV_RELAX *ABS* + 479e: 000080e7 jalr ra # 479a <.L21> + +00000000000047a2 <.LVL32>: + 47a2: 892a mv s2,a0 + +00000000000047a4 <.LVL33>: +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:271 + if (ret != 0) + 47a4: c51d beqz a0,47d2 <.L25> 47a4: R_RISCV_RVC_BRANCH .L25 +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:273 + { + nsh_error(vtbl, g_fmtcmdfailed, argv[0], "chdir", NSH_ERRNO); + 47a6: 000a3603 ld a2,0(s4) + 47aa: 0289b903 ld s2,40(s3) + 47ae: e432 sd a2,8(sp) + 47b0: 00000097 auipc ra,0x0 47b0: R_RISCV_CALL __errno + 47b0: R_RISCV_RELAX *ABS* + 47b4: 000080e7 jalr ra # 47b0 <.LVL33+0xc> + +00000000000047b8 <.LVL34>: + 47b8: 4118 lw a4,0(a0) + 47ba: 6622 ld a2,8(sp) + 47bc: 00000697 auipc a3,0x0 47bc: R_RISCV_PCREL_HI20 .LC4 + 47bc: R_RISCV_RELAX *ABS* + 47c0: 00068693 mv a3,a3 47c0: R_RISCV_PCREL_LO12_I .L0 + 47c0: R_RISCV_RELAX *ABS* + 47c4: 00000597 auipc a1,0x0 47c4: R_RISCV_PCREL_HI20 g_fmtcmdfailed + 47c4: R_RISCV_RELAX *ABS* + 47c8: 00058593 mv a1,a1 47c8: R_RISCV_PCREL_LO12_I .L0 + 47c8: R_RISCV_RELAX *ABS* + 47cc: 854e mv a0,s3 + 47ce: 9902 jalr s2 + +00000000000047d0 <.LVL35>: +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:274 + ret = ERROR; + 47d0: 597d li s2,-1 + +00000000000047d2 <.L25>: +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:279 + } + + /* Free any memory that was allocated */ + + if (alloc) + 47d2: c411 beqz s0,47de <.L26> 47d2: R_RISCV_RVC_BRANCH .L26 +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:281 + { + free(alloc); + 47d4: 8522 mv a0,s0 + 47d6: 00000097 auipc ra,0x0 47d6: R_RISCV_CALL free + 47d6: R_RISCV_RELAX *ABS* + 47da: 000080e7 jalr ra # 47d6 <.L25+0x4> + +00000000000047de <.L26>: +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:284 + } + + if (fullpath) + 47de: c491 beqz s1,47ea <.L27> 47de: R_RISCV_RVC_BRANCH .L27 +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:286 + { + nsh_freefullpath(fullpath); + 47e0: 8526 mv a0,s1 + 47e2: 00000097 auipc ra,0x0 47e2: R_RISCV_CALL nsh_freefullpath + 47e2: R_RISCV_RELAX *ABS* + 47e6: 000080e7 jalr ra # 47e2 <.L26+0x4> + +00000000000047ea <.L27>: +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:290 + } + + return ret; +} + 47ea: 70e2 ld ra,56(sp) + 47ec: 7442 ld s0,48(sp) + +00000000000047ee <.LVL39>: + 47ee: 74a2 ld s1,40(sp) + +00000000000047f0 <.LVL40>: + 47f0: 69e2 ld s3,24(sp) + +00000000000047f2 <.LVL41>: + 47f2: 6a42 ld s4,16(sp) + +00000000000047f4 <.LVL42>: + 47f4: 854a mv a0,s2 + 47f6: 7902 ld s2,32(sp) + +00000000000047f8 <.LVL43>: + 47f8: 6121 addi sp,sp,64 + 47fa: 8082 ret + +00000000000047fc <.L22>: +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:257 + else if (strcmp(path, "..") == 0) + 47fc: 00000597 auipc a1,0x0 47fc: R_RISCV_PCREL_HI20 .LC3 + 47fc: R_RISCV_RELAX *ABS* + 4800: 00058593 mv a1,a1 4800: R_RISCV_PCREL_LO12_I .L0 + 4800: R_RISCV_RELAX *ABS* + 4804: 8522 mv a0,s0 + 4806: 00000097 auipc ra,0x0 4806: R_RISCV_CALL strcmp + 4806: R_RISCV_RELAX *ABS* + 480a: 000080e7 jalr ra # 4806 <.L22+0xa> + +000000000000480e <.LVL45>: + 480e: ed19 bnez a0,482c <.L24> 480e: R_RISCV_RVC_BRANCH .L24 +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:259 + alloc = strdup(nsh_getcwd()); + 4810: 00000097 auipc ra,0x0 4810: R_RISCV_CALL nsh_getcwd + 4810: R_RISCV_RELAX *ABS* + 4814: 000080e7 jalr ra # 4810 <.LVL45+0x2> + +0000000000004818 <.LVL46>: + 4818: 00000097 auipc ra,0x0 4818: R_RISCV_CALL strdup + 4818: R_RISCV_RELAX *ABS* + 481c: 000080e7 jalr ra # 4818 <.LVL46> + +0000000000004820 <.LVL47>: + 4820: 842a mv s0,a0 + +0000000000004822 <.LVL48>: +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:260 + path = dirname(alloc); + 4822: 00000097 auipc ra,0x0 4822: R_RISCV_CALL dirname + 4822: R_RISCV_RELAX *ABS* + 4826: 000080e7 jalr ra # 4822 <.LVL48> + +000000000000482a <.LVL49>: + 482a: b7bd j 4798 <.L40> 482a: R_RISCV_RVC_JUMP .L40 + +000000000000482c <.L24>: +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:264 + fullpath = nsh_getfullpath(vtbl, path); + 482c: 85a2 mv a1,s0 + 482e: 854e mv a0,s3 + 4830: 00000097 auipc ra,0x0 4830: R_RISCV_CALL nsh_getfullpath + 4830: R_RISCV_RELAX *ABS* + 4834: 000080e7 jalr ra # 4830 <.L24+0x4> + +0000000000004838 <.LVL51>: + 4838: 84aa mv s1,a0 +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:242 + FAR char *alloc = NULL; + 483a: 4401 li s0,0 + 483c: bfb9 j 479a <.L21> 483c: R_RISCV_RVC_JUMP .L21 + +000000000000483e <.L29>: +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:243 + FAR char *fullpath = NULL; + 483e: 4481 li s1,0 +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:242 + FAR char *alloc = NULL; + 4840: 4401 li s0,0 +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:250 + path = g_home; + 4842: 00000517 auipc a0,0x0 4842: R_RISCV_PCREL_HI20 .LANCHOR0 + 4842: R_RISCV_RELAX *ABS* + 4846: 00050513 mv a0,a0 4846: R_RISCV_PCREL_LO12_I .L0 + 4846: R_RISCV_RELAX *ABS* + 484a: bf81 j 479a <.L21> 484a: R_RISCV_RVC_JUMP .L21 + +000000000000484c : +cmd_echo(): +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:304 +int cmd_echo(FAR struct nsh_vtbl_s *vtbl, int argc, FAR char **argv) +{ + int newline = 1; + int escape = 0; + + --argc; + 484c: 20100713 li a4,513 +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:300 +{ + 4850: 7175 addi sp,sp,-144 + 4852: 1702 slli a4,a4,0x20 + 4854: e122 sd s0,128(sp) + 4856: f8ca sd s2,112(sp) + 4858: f4ce sd s3,104(sp) + 485a: e4de sd s7,72(sp) + 485c: e0e2 sd s8,64(sp) + 485e: e506 sd ra,136(sp) + 4860: fca6 sd s1,120(sp) + 4862: f0d2 sd s4,96(sp) + 4864: ecd6 sd s5,88(sp) + 4866: e8da sd s6,80(sp) + 4868: fc66 sd s9,56(sp) + 486a: f86a sd s10,48(sp) + 486c: f46e sd s11,40(sp) + 486e: 8baa mv s7,a0 +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:304 + --argc; + 4870: fff5841b addiw s0,a1,-1 + +0000000000004874 <.LVL54>: +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:305 + ++argv; + 4874: 00860c13 addi s8,a2,8 # 4670 <.L43+0x16> + +0000000000004878 <.LVL55>: +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:302 + int escape = 0; + 4878: 4901 li s2,0 +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:301 + int newline = 1; + 487a: 4985 li s3,1 +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:307 + + while (argc > 0 && argv[0][0] == '-') + 487c: 02d00893 li a7,45 + 4880: 02900313 li t1,41 + 4884: 4e05 li t3,1 + 4886: 0705 addi a4,a4,1 + +0000000000004888 <.LBB25>: +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:332 + goto do_echo; + } + + while (*temp) + { + switch (*temp++) + 4888: 06500e93 li t4,101 + 488c: 06e00f13 li t5,110 + 4890: 04500f93 li t6,69 + +0000000000004894 <.L42>: +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:307 + while (argc > 0 && argv[0][0] == '-') + 4894: 1a805d63 blez s0,4a4e <.L49> 4894: R_RISCV_BRANCH .L49 +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:307 (discriminator 1) + 4898: 000c3583 ld a1,0(s8) # 4218 <.LVL19+0x16> + 489c: 0005c783 lbu a5,0(a1) # 47fc <.L22> + 48a0: 01179b63 bne a5,a7,48b6 <.L44> 48a0: R_RISCV_BRANCH .L44 + +00000000000048a4 <.LBB26>: +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:309 + FAR char const *temp = argv[0] + 1; + 48a4: 00158513 addi a0,a1,1 + +00000000000048a8 <.LVL57>: +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:312 + for (i = 0; temp[i]; i++) + 48a8: 4601 li a2,0 + +00000000000048aa <.L43>: +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:312 (discriminator 1) + 48aa: 00c587b3 add a5,a1,a2 + 48ae: 0017c783 lbu a5,1(a5) + 48b2: e78d bnez a5,48dc <.L45> 48b2: R_RISCV_RVC_BRANCH .L45 +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:325 + if (i == 0) + 48b4: ea21 bnez a2,4904 <.L46> 48b4: R_RISCV_RVC_BRANCH .L46 + +00000000000048b6 <.L44>: +str_escape(): +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:71 + if (*q != '\\') + 48b6: 05c00493 li s1,92 +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:77 + switch (*++q) + 48ba: 4a35 li s4,13 + 48bc: 00000a97 auipc s5,0x0 48bc: R_RISCV_PCREL_HI20 .L58 + 48bc: R_RISCV_RELAX *ABS* + 48c0: 000a8a93 mv s5,s5 48c0: R_RISCV_PCREL_LO12_I .L0 + 48c0: R_RISCV_RELAX *ABS* + +00000000000048c4 <.L98>: +cmd_echo(): +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:355 + } + +do_echo: + while (argc > 0) + { + if (escape) + 48c4: 12090c63 beqz s2,49fc <.L51> 48c4: R_RISCV_BRANCH .L51 +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:357 + { + str_escape(argv[0]); + 48c8: 000c3603 ld a2,0(s8) + +00000000000048cc <.LBB33>: +str_escape(): +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:80 + for (c = 0, l = 3; l && q[1] >= '0' && q[1] <= '8'; l--, q++) + 48cc: 4b21 li s6,8 + +00000000000048ce <.LBE33>: +cmd_echo(): +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:357 + str_escape(argv[0]); + 48ce: 8cb2 mv s9,a2 + +00000000000048d0 <.L52>: +str_escape(): +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:69 + for (q = s; *q; q++) + 48d0: 00064703 lbu a4,0(a2) + 48d4: e331 bnez a4,4918 <.L76> 48d4: R_RISCV_RVC_BRANCH .L76 +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:124 + *s = '\0'; + 48d6: 000c8023 sb zero,0(s9) # 4220 <.LVL19+0x1e> + 48da: a20d j 49fc <.L51> 48da: R_RISCV_RVC_JUMP .L51 + +00000000000048dc <.L45>: +cmd_echo(): +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:314 + switch (temp[i]) + 48dc: fbb7879b addiw a5,a5,-69 + 48e0: 0ff7f793 zext.b a5,a5 + 48e4: fcf369e3 bltu t1,a5,48b6 <.L44> 48e4: R_RISCV_BRANCH .L44 + 48e8: 00fe17b3 sll a5,t3,a5 + 48ec: 8ff9 and a5,a5,a4 + 48ee: d7e1 beqz a5,48b6 <.L44> 48ee: R_RISCV_RVC_BRANCH .L44 +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:312 (discriminator 2) + for (i = 0; temp[i]; i++) + 48f0: 0605 addi a2,a2,1 + 48f2: bf65 j 48aa <.L43> 48f2: R_RISCV_RVC_JUMP .L43 + +00000000000048f4 <.L48>: +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:332 + switch (*temp++) + 48f4: 0505 addi a0,a0,1 + 48f6: 01d78d63 beq a5,t4,4910 <.L79> 48f6: R_RISCV_BRANCH .L79 + 48fa: 01e78d63 beq a5,t5,4914 <.L80> 48fa: R_RISCV_BRANCH .L80 + 48fe: 01f79363 bne a5,t6,4904 <.L46> 48fe: R_RISCV_BRANCH .L46 +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:339 + escape = 0; + 4902: 4901 li s2,0 + +0000000000004904 <.L46>: +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:330 + while (*temp) + 4904: 00054783 lbu a5,0(a0) # 4842 <.L29+0x4> + 4908: f7f5 bnez a5,48f4 <.L48> 4908: R_RISCV_RVC_BRANCH .L48 +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:348 + --argc; + 490a: 347d addiw s0,s0,-1 + +000000000000490c <.LVL66>: +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:349 + ++argv; + 490c: 0c21 addi s8,s8,8 + 490e: b759 j 4894 <.L42> 490e: R_RISCV_RVC_JUMP .L42 + +0000000000004910 <.L79>: +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:332 + switch (*temp++) + 4910: 4905 li s2,1 + +0000000000004912 <.LVL69>: + 4912: bfcd j 4904 <.L46> 4912: R_RISCV_RVC_JUMP .L46 + +0000000000004914 <.L80>: +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:343 + newline = 0; + 4914: 4981 li s3,0 + +0000000000004916 <.LVL71>: + 4916: b7fd j 4904 <.L46> 4916: R_RISCV_RVC_JUMP .L46 + +0000000000004918 <.L76>: +str_escape(): +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:71 + if (*q != '\\') + 4918: 00970763 beq a4,s1,4926 <.L53> 4918: R_RISCV_BRANCH .L53 + +000000000000491c <.LVL73>: +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:73 + *s++ = *q; + 491c: 00ec8023 sb a4,0(s9) +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:74 + continue; + 4920: 8d32 mv s10,a2 + +0000000000004922 <.L100>: +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:120 + CHAR_ESCAPE(s, '\\'); + 4922: 0c85 addi s9,s9,1 + 4924: a099 j 496a <.L54> 4924: R_RISCV_RVC_JUMP .L54 + +0000000000004926 <.L53>: +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:77 + switch (*++q) + 4926: 00164583 lbu a1,1(a2) + 492a: 00160d13 addi s10,a2,1 + +000000000000492e <.LVL76>: + 492e: 00ba6763 bltu s4,a1,493c <.L55> 492e: R_RISCV_BRANCH .L55 + 4932: 058a slli a1,a1,0x2 + 4934: 95d6 add a1,a1,s5 + 4936: 418c lw a1,0(a1) + 4938: 95d6 add a1,a1,s5 + 493a: 8582 jr a1 + +000000000000493c <.L55>: + 493c: 10958663 beq a1,s1,4a48 <.L65> 493c: R_RISCV_BRANCH .L65 + 4940: 07800793 li a5,120 + 4944: 00360d93 addi s11,a2,3 +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:89 + for (c = 0, l = 2; l && isxdigit(q[1]); l--, q++) + 4948: 4881 li a7,0 +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:77 + switch (*++q) + 494a: 06f58663 beq a1,a5,49b6 <.L68> 494a: R_RISCV_BRANCH .L68 + 494e: 03000793 li a5,48 + 4952: 00460893 addi a7,a2,4 +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:80 + for (c = 0, l = 3; l && q[1] >= '0' && q[1] <= '8'; l--, q++) + 4956: 4501 li a0,0 +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:77 + switch (*++q) + 4958: 02f58163 beq a1,a5,497a <.L69> 4958: R_RISCV_BRANCH .L69 + +000000000000495c <.L56>: +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:110 + *s++ = '\\'; + 495c: 009c8023 sb s1,0(s9) + +0000000000004960 <.LVL78>: +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:111 + *s++ = *q; + 4960: 00164603 lbu a2,1(a2) + +0000000000004964 <.LVL79>: + 4964: 0c89 addi s9,s9,2 + +0000000000004966 <.LVL80>: + 4966: fecc8fa3 sb a2,-1(s9) + +000000000000496a <.L54>: +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:69 + for (q = s; *q; q++) + 496a: 001d0613 addi a2,s10,1 # 4229 <.LVL19+0x27> + +000000000000496e <.LVL82>: + 496e: b78d j 48d0 <.L52> 496e: R_RISCV_RVC_JUMP .L52 + +0000000000004970 <.L71>: +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:82 + c = 8 * c + (q[1] - '0'); + 4970: 0035151b slliw a0,a0,0x3 + +0000000000004974 <.LVL84>: + 4974: 9d31 addw a0,a0,a2 + +0000000000004976 <.LVL85>: +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:80 + for (c = 0, l = 3; l && q[1] >= '0' && q[1] <= '8'; l--, q++) + 4976: 03a88063 beq a7,s10,4996 <.L81> 4976: R_RISCV_BRANCH .L81 + +000000000000497a <.L69>: + 497a: 001d4603 lbu a2,1(s10) + 497e: 85ea mv a1,s10 + 4980: 0d05 addi s10,s10,1 + +0000000000004982 <.LVL87>: + 4982: fd06061b addiw a2,a2,-48 + 4986: 0ff67313 zext.b t1,a2 + 498a: fe6b73e3 bgeu s6,t1,4970 <.L71> 498a: R_RISCV_BRANCH .L71 + +000000000000498e <.L70>: +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:85 + *s++ = c; + 498e: 00ac8023 sb a0,0(s9) +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:86 + break; + 4992: 8d2e mv s10,a1 + 4994: b779 j 4922 <.L100> 4994: R_RISCV_RVC_JUMP .L100 + +0000000000004996 <.L81>: + 4996: 85c6 mv a1,a7 + 4998: bfdd j 498e <.L70> 4998: R_RISCV_RVC_JUMP .L70 + +000000000000499a <.L75>: +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:91 + if (isdigit(q[1])) + 499a: fd05859b addiw a1,a1,-48 + 499e: 47a5 li a5,9 +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:93 + c = 16 * c + (q[1] - '0'); + 49a0: 0048989b slliw a7,a7,0x4 +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:91 + if (isdigit(q[1])) + 49a4: 02b7ec63 bltu a5,a1,49dc <.L72> 49a4: R_RISCV_BRANCH .L72 +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:93 + c = 16 * c + (q[1] - '0'); + 49a8: fd06061b addiw a2,a2,-48 + 49ac: 011608bb addw a7,a2,a7 + +00000000000049b0 <.L73>: +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:89 + for (c = 0, l = 2; l && isxdigit(q[1]); l--, q++) + 49b0: 0d05 addi s10,s10,1 + 49b2: 03ad8263 beq s11,s10,49d6 <.L74> 49b2: R_RISCV_BRANCH .L74 + +00000000000049b6 <.L68>: + 49b6: 001d4583 lbu a1,1(s10) + 49ba: ec46 sd a7,24(sp) + +00000000000049bc <.LVL94>: + 49bc: 0005861b sext.w a2,a1 + 49c0: 8532 mv a0,a2 + 49c2: e82e sd a1,16(sp) + 49c4: e432 sd a2,8(sp) + 49c6: 00000097 auipc ra,0x0 49c6: R_RISCV_CALL isxdigit + 49c6: R_RISCV_RELAX *ABS* + 49ca: 000080e7 jalr ra # 49c6 <.LVL94+0xa> + +00000000000049ce <.LVL95>: + 49ce: 6622 ld a2,8(sp) + 49d0: 65c2 ld a1,16(sp) + 49d2: 68e2 ld a7,24(sp) + 49d4: f179 bnez a0,499a <.L75> 49d4: R_RISCV_RVC_BRANCH .L75 + +00000000000049d6 <.L74>: +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:101 + *s++ = c; + 49d6: 011c8023 sb a7,0(s9) +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:102 + break; + 49da: b7a1 j 4922 <.L100> 49da: R_RISCV_RVC_JUMP .L100 + +00000000000049dc <.L72>: +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:97 + c = 16 * c + (tolower(q[1]) - 'a' + 10); + 49dc: 8532 mv a0,a2 + 49de: c446 sw a7,8(sp) + 49e0: 00000097 auipc ra,0x0 49e0: R_RISCV_CALL tolower + 49e0: R_RISCV_RELAX *ABS* + 49e4: 000080e7 jalr ra # 49e0 <.L72+0x4> + +00000000000049e8 <.LVL98>: + 49e8: 48a2 lw a7,8(sp) + 49ea: fa95051b addiw a0,a0,-87 + 49ee: 011508bb addw a7,a0,a7 + +00000000000049f2 <.LVL99>: + 49f2: bf7d j 49b0 <.L73> 49f2: R_RISCV_RVC_JUMP .L73 + +00000000000049f4 <.L64>: +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:105 + *s++ = '\\'; + 49f4: 009c8023 sb s1,0(s9) + +00000000000049f8 <.LVL101>: +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:106 + *s++ = '\0'; + 49f8: 000c80a3 sb zero,1(s9) + +00000000000049fc <.L51>: +cmd_echo(): +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:360 + } + + nsh_output(vtbl, "%s", argv[0]); + 49fc: 000c3603 ld a2,0(s8) + 4a00: 030bb783 ld a5,48(s7) # 4240 <.L19> + 4a04: 00000597 auipc a1,0x0 4a04: R_RISCV_PCREL_HI20 .LC5 + 4a04: R_RISCV_RELAX *ABS* + 4a08: 00058593 mv a1,a1 4a08: R_RISCV_PCREL_LO12_I .L0 + 4a08: R_RISCV_RELAX *ABS* + 4a0c: 855e mv a0,s7 +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:362 + + --argc; + 4a0e: 347d addiw s0,s0,-1 + +0000000000004a10 <.LVL103>: +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:360 + nsh_output(vtbl, "%s", argv[0]); + 4a10: 9782 jalr a5 + +0000000000004a12 <.LVL104>: +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:363 + ++argv; + 4a12: 0c21 addi s8,s8,8 +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:364 + if (argc > 0) + 4a14: cc0d beqz s0,4a4e <.L49> 4a14: R_RISCV_RVC_BRANCH .L49 +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:366 + { + nsh_output(vtbl, " "); + 4a16: 030bb783 ld a5,48(s7) + 4a1a: 00000597 auipc a1,0x0 4a1a: R_RISCV_PCREL_HI20 .LC6 + 4a1a: R_RISCV_RELAX *ABS* + 4a1e: 00058593 mv a1,a1 4a1e: R_RISCV_PCREL_LO12_I .L0 + 4a1e: R_RISCV_RELAX *ABS* + 4a22: 855e mv a0,s7 + 4a24: 9782 jalr a5 + +0000000000004a26 <.LVL106>: +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:353 + while (argc > 0) + 4a26: bd79 j 48c4 <.L98> 4a26: R_RISCV_RVC_JUMP .L98 + +0000000000004a28 <.L63>: +str_escape(): +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:114 + CHAR_ESCAPE(s, '\a'); + 4a28: 479d li a5,7 + +0000000000004a2a <.L101>: +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:119 + CHAR_ESCAPE(s, '\v'); + 4a2a: 00fc8023 sb a5,0(s9) + 4a2e: bdd5 j 4922 <.L100> 4a2e: R_RISCV_RVC_JUMP .L100 + +0000000000004a30 <.L62>: +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:115 + CHAR_ESCAPE(s, '\b'); + 4a30: 016c8023 sb s6,0(s9) + 4a34: b5fd j 4922 <.L100> 4a34: R_RISCV_RVC_JUMP .L100 + +0000000000004a36 <.L59>: +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:116 + CHAR_ESCAPE(s, '\f'); + 4a36: 47b1 li a5,12 + 4a38: bfcd j 4a2a <.L101> 4a38: R_RISCV_RVC_JUMP .L101 + +0000000000004a3a <.L61>: +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:117 + CHAR_ESCAPE(s, '\n'); + 4a3a: 47a9 li a5,10 + 4a3c: b7fd j 4a2a <.L101> 4a3c: R_RISCV_RVC_JUMP .L101 + +0000000000004a3e <.L57>: +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:118 + CHAR_ESCAPE(s, '\r'); + 4a3e: 014c8023 sb s4,0(s9) + 4a42: b5c5 j 4922 <.L100> 4a42: R_RISCV_RVC_JUMP .L100 + +0000000000004a44 <.L60>: +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:119 + CHAR_ESCAPE(s, '\v'); + 4a44: 47ad li a5,11 + 4a46: b7d5 j 4a2a <.L101> 4a46: R_RISCV_RVC_JUMP .L101 + +0000000000004a48 <.L65>: +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:120 + CHAR_ESCAPE(s, '\\'); + 4a48: 009c8023 sb s1,0(s9) + 4a4c: bdd9 j 4922 <.L100> 4a4c: R_RISCV_RVC_JUMP .L100 + +0000000000004a4e <.L49>: +cmd_echo(): +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:370 + } + } + + if (newline) + 4a4e: 00098a63 beqz s3,4a62 <.L78> 4a4e: R_RISCV_BRANCH .L78 +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:372 + { + nsh_output(vtbl, "\n"); + 4a52: 030bb783 ld a5,48(s7) + 4a56: 00000597 auipc a1,0x0 4a56: R_RISCV_PCREL_HI20 .LC7 + 4a56: R_RISCV_RELAX *ABS* + 4a5a: 00058593 mv a1,a1 4a5a: R_RISCV_PCREL_LO12_I .L0 + 4a5a: R_RISCV_RELAX *ABS* + 4a5e: 855e mv a0,s7 + 4a60: 9782 jalr a5 + +0000000000004a62 <.L78>: +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:376 + } + + return OK; +} + 4a62: 60aa ld ra,136(sp) + 4a64: 640a ld s0,128(sp) + 4a66: 74e6 ld s1,120(sp) + 4a68: 7946 ld s2,112(sp) + +0000000000004a6a <.LVL117>: + 4a6a: 79a6 ld s3,104(sp) + +0000000000004a6c <.LVL118>: + 4a6c: 7a06 ld s4,96(sp) + 4a6e: 6ae6 ld s5,88(sp) + 4a70: 6b46 ld s6,80(sp) + 4a72: 6ba6 ld s7,72(sp) + +0000000000004a74 <.LVL119>: + 4a74: 6c06 ld s8,64(sp) + 4a76: 7ce2 ld s9,56(sp) + 4a78: 7d42 ld s10,48(sp) + 4a7a: 7da2 ld s11,40(sp) + 4a7c: 4501 li a0,0 + 4a7e: 6149 addi sp,sp,144 + 4a80: 8082 ret + +0000000000004a82 : +cmd_env(): +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:385 + * Name: cmd_env + ****************************************************************************/ + +#ifndef CONFIG_NSH_DISABLE_ENV +int cmd_env(FAR struct nsh_vtbl_s *vtbl, int argc, FAR char **argv) +{ + 4a82: 87b2 mv a5,a2 +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:388 + UNUSED(argc); + + return nsh_catfile(vtbl, argv[0], + 4a84: 638c ld a1,0(a5) + +0000000000004a86 <.LVL121>: + 4a86: 00000617 auipc a2,0x0 4a86: R_RISCV_PCREL_HI20 .LC8 + 4a86: R_RISCV_RELAX *ABS* + 4a8a: 00060613 mv a2,a2 4a8a: R_RISCV_PCREL_LO12_I .L0 + 4a8a: R_RISCV_RELAX *ABS* + +0000000000004a8e <.LVL122>: + 4a8e: 00000317 auipc t1,0x0 4a8e: R_RISCV_CALL nsh_catfile + 4a8e: R_RISCV_RELAX *ABS* + 4a92: 00030067 jr t1 # 4a8e <.LVL122> + +0000000000004a96 : +cmd_pwd(): +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:400 + ****************************************************************************/ + +#ifndef CONFIG_DISABLE_ENVIRON +#ifndef CONFIG_NSH_DISABLE_PWD +int cmd_pwd(FAR struct nsh_vtbl_s *vtbl, int argc, FAR char **argv) +{ + 4a96: 1101 addi sp,sp,-32 + 4a98: ec06 sd ra,24(sp) + 4a9a: e822 sd s0,16(sp) + 4a9c: e426 sd s1,8(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:404 + UNUSED(argc); + UNUSED(argv); + + nsh_output(vtbl, "%s\n", nsh_getcwd()); + 4a9e: 7904 ld s1,48(a0) +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:400 +{ + 4aa0: 842a mv s0,a0 +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:404 + nsh_output(vtbl, "%s\n", nsh_getcwd()); + 4aa2: 00000097 auipc ra,0x0 4aa2: R_RISCV_CALL nsh_getcwd + 4aa2: R_RISCV_RELAX *ABS* + 4aa6: 000080e7 jalr ra # 4aa2 + +0000000000004aaa <.LVL125>: + 4aaa: 862a mv a2,a0 + 4aac: 00000597 auipc a1,0x0 4aac: R_RISCV_PCREL_HI20 .LC9 + 4aac: R_RISCV_RELAX *ABS* + 4ab0: 00058593 mv a1,a1 4ab0: R_RISCV_PCREL_LO12_I .L0 + 4ab0: R_RISCV_RELAX *ABS* + 4ab4: 8522 mv a0,s0 + 4ab6: 9482 jalr s1 + +0000000000004ab8 <.LVL126>: +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:406 + return OK; +} + 4ab8: 60e2 ld ra,24(sp) + 4aba: 6442 ld s0,16(sp) + +0000000000004abc <.LVL127>: + 4abc: 64a2 ld s1,8(sp) + 4abe: 4501 li a0,0 + 4ac0: 6105 addi sp,sp,32 + 4ac2: 8082 ret + +0000000000004ac4 : +cmd_set(): +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:425 + int ndx = 1; +#endif + +#ifndef CONFIG_NSH_DISABLESCRIPT + FAR char *popt; + const char opts[] = NSH_NP_SET_OPTIONS; + 4ac4: 77e1 lui a5,0xffff8 +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:416 +{ + 4ac6: 7159 addi sp,sp,-112 +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:425 + const char opts[] = NSH_NP_SET_OPTIONS; + 4ac8: 8657c793 xori a5,a5,-1947 + 4acc: 00f11c23 sh a5,24(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:442 + else +#endif +#ifdef NSH_HAVE_VARS + /* Support set [{+|-}{e|x|xe|ex}] [ ] */ + + if (argc == 2 || argc == 4) + 4ad0: ffe5879b addiw a5,a1,-2 + 4ad4: 9bf5 andi a5,a5,-3 +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:416 +{ + 4ad6: f0a2 sd s0,96(sp) + 4ad8: eca6 sd s1,88(sp) + 4ada: e8ca sd s2,80(sp) + 4adc: e0d2 sd s4,64(sp) + 4ade: f486 sd ra,104(sp) + 4ae0: e4ce sd s3,72(sp) + 4ae2: fc56 sd s5,56(sp) + 4ae4: f85a sd s6,48(sp) + 4ae6: f45e sd s7,40(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:425 + const char opts[] = NSH_NP_SET_OPTIONS; + 4ae8: 00010d23 sb zero,26(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:442 + if (argc == 2 || argc == 4) + 4aec: 2781 sext.w a5,a5 +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:416 +{ + 4aee: 842a mv s0,a0 + 4af0: 8a32 mv s4,a2 +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:442 + if (argc == 2 || argc == 4) + 4af2: 892e mv s2,a1 +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:420 + int ndx = 1; + 4af4: 4485 li s1,1 +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:442 + if (argc == 2 || argc == 4) + 4af6: efbd bnez a5,4b74 <.L106> 4af6: R_RISCV_RVC_BRANCH .L106 +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:448 +#else + /* Support set [{+|-}{e|x|xe|ex}] */ + +#endif + { + if (strlen(argv[1]) < 2) + 4af8: 00863983 ld s3,8(a2) # 4a8e <.LVL122> + 4afc: 854e mv a0,s3 + +0000000000004afe <.LVL129>: + 4afe: 00000097 auipc ra,0x0 4afe: R_RISCV_CALL strlen + 4afe: R_RISCV_RELAX *ABS* + 4b02: 000080e7 jalr ra # 4afe <.LVL129> + +0000000000004b06 <.LVL130>: + 4b06: 04a4e363 bltu s1,a0,4b4c <.L107> 4b06: R_RISCV_BRANCH .L107 + +0000000000004b0a <.LVL131>: +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:451 + { + ret = -EINVAL; + nsh_error(vtbl, g_fmtargrequired, argv[0], "set", NSH_ERRNO); + 4b0a: 000a3603 ld a2,0(s4) + 4b0e: 7404 ld s1,40(s0) + 4b10: e432 sd a2,8(sp) + 4b12: 00000097 auipc ra,0x0 4b12: R_RISCV_CALL __errno + 4b12: R_RISCV_RELAX *ABS* + 4b16: 000080e7 jalr ra # 4b12 <.LVL131+0x8> + +0000000000004b1a <.LVL132>: + 4b1a: 4118 lw a4,0(a0) + 4b1c: 6622 ld a2,8(sp) + 4b1e: 00000697 auipc a3,0x0 4b1e: R_RISCV_PCREL_HI20 .LC10 + 4b1e: R_RISCV_RELAX *ABS* + 4b22: 00068693 mv a3,a3 4b22: R_RISCV_PCREL_LO12_I .L0 + 4b22: R_RISCV_RELAX *ABS* + 4b26: 00000597 auipc a1,0x0 4b26: R_RISCV_PCREL_HI20 g_fmtargrequired + 4b26: R_RISCV_RELAX *ABS* + 4b2a: 00058593 mv a1,a1 4b2a: R_RISCV_PCREL_LO12_I .L0 + 4b2a: R_RISCV_RELAX *ABS* + +0000000000004b2e <.L122>: +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:469 + while (*value && *value != ' ') + { + popt = strchr(opts, *value++); + if (popt == NULL) + { + nsh_error(vtbl, g_fmtarginvalid, + 4b2e: 8522 mv a0,s0 + 4b30: 9482 jalr s1 + +0000000000004b32 <.LVL134>: +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:471 + argv[0], "set", NSH_ERRNO); + ret = -EINVAL; + 4b32: 59a9 li s3,-22 + +0000000000004b34 <.L108>: +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:552 +#endif /* !CONFIG_DISABLE_ENVIRON */ + } +#endif /* NSH_HAVE_VARS */ + + return ret; +} + 4b34: 70a6 ld ra,104(sp) + 4b36: 7406 ld s0,96(sp) + +0000000000004b38 <.LVL136>: + 4b38: 64e6 ld s1,88(sp) + 4b3a: 6946 ld s2,80(sp) + 4b3c: 6a06 ld s4,64(sp) + +0000000000004b3e <.LVL137>: + 4b3e: 7ae2 ld s5,56(sp) + 4b40: 7b42 ld s6,48(sp) + 4b42: 7ba2 ld s7,40(sp) + 4b44: 854e mv a0,s3 + 4b46: 69a6 ld s3,72(sp) + +0000000000004b48 <.LVL138>: + 4b48: 6165 addi sp,sp,112 + 4b4a: 8082 ret + +0000000000004b4c <.L107>: +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:455 + op = argv[1][0]; + 4b4c: 0009ca83 lbu s5,0(s3) + +0000000000004b50 <.LVL140>: +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:463 + value = &argv[1][1]; + 4b50: 00198493 addi s1,s3,1 +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:456 + if (op != '-' && op != '+') + 4b54: fd5a879b addiw a5,s5,-43 + 4b58: 0fd7f793 andi a5,a5,253 + 4b5c: e3c1 bnez a5,4bdc <.L121> 4b5c: R_RISCV_RVC_BRANCH .L121 +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:466 + popt = strchr(opts, *value++); + 4b5e: 01810993 addi s3,sp,24 +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:477 + vtbl->np.np_flags |= 1 << (popt - opts); + 4b62: 4b05 li s6,1 +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:475 + if (op == '+') + 4b64: 02b00b93 li s7,43 + +0000000000004b68 <.L110>: +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:464 + while (*value && *value != ' ') + 4b68: 0004c583 lbu a1,0(s1) + 4b6c: 0df5f793 andi a5,a1,223 + 4b70: efb9 bnez a5,4bce <.L114> 4b70: R_RISCV_RVC_BRANCH .L114 + 4b72: 4489 li s1,2 + +0000000000004b74 <.L106>: +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:496 (discriminator 1) + if (ret == OK && (argc == 3 || argc == 4)) + 4b74: 3975 addiw s2,s2,-3 + 4b76: 4785 li a5,1 + 4b78: 4981 li s3,0 + 4b7a: fb27ede3 bltu a5,s2,4b34 <.L108> 4b7a: R_RISCV_BRANCH .L108 +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:507 + value = nsh_trimspaces(argv[ndx + 1]); + 4b7e: 0485 addi s1,s1,1 + 4b80: 048e slli s1,s1,0x3 + 4b82: 94d2 add s1,s1,s4 + 4b84: 6088 ld a0,0(s1) + 4b86: 00000097 auipc ra,0x0 4b86: R_RISCV_CALL nsh_trimspaces + 4b86: R_RISCV_RELAX *ABS* + 4b8a: 000080e7 jalr ra # 4b86 <.L106+0x12> + +0000000000004b8e <.LVL143>: + 4b8e: 85aa mv a1,a0 + +0000000000004b90 <.LVL144>: +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:540 + ret = setenv(argv[ndx], value, TRUE); + 4b90: ff84b503 ld a0,-8(s1) + +0000000000004b94 <.LVL145>: + 4b94: 4605 li a2,1 + 4b96: 00000097 auipc ra,0x0 4b96: R_RISCV_CALL setenv + 4b96: R_RISCV_RELAX *ABS* + 4b9a: 000080e7 jalr ra # 4b96 <.LVL145+0x2> + +0000000000004b9e <.LVL146>: + 4b9e: 89aa mv s3,a0 + +0000000000004ba0 <.LVL147>: +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:541 + if (ret < 0) + 4ba0: f8055ae3 bgez a0,4b34 <.L108> 4ba0: R_RISCV_BRANCH .L108 +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:543 + nsh_error(vtbl, g_fmtcmdfailed, argv[0], "setenv", + 4ba4: 000a3603 ld a2,0(s4) + 4ba8: 7404 ld s1,40(s0) + 4baa: e432 sd a2,8(sp) + 4bac: 00000097 auipc ra,0x0 4bac: R_RISCV_CALL __errno + 4bac: R_RISCV_RELAX *ABS* + 4bb0: 000080e7 jalr ra # 4bac <.LVL147+0xc> + +0000000000004bb4 <.LVL148>: + 4bb4: 4118 lw a4,0(a0) + 4bb6: 6622 ld a2,8(sp) + 4bb8: 00000697 auipc a3,0x0 4bb8: R_RISCV_PCREL_HI20 .LC11 + 4bb8: R_RISCV_RELAX *ABS* + 4bbc: 00068693 mv a3,a3 4bbc: R_RISCV_PCREL_LO12_I .L0 + 4bbc: R_RISCV_RELAX *ABS* + 4bc0: 00000597 auipc a1,0x0 4bc0: R_RISCV_PCREL_HI20 g_fmtcmdfailed + 4bc0: R_RISCV_RELAX *ABS* + 4bc4: 00058593 mv a1,a1 4bc4: R_RISCV_PCREL_LO12_I .L0 + 4bc4: R_RISCV_RELAX *ABS* + 4bc8: 8522 mv a0,s0 + 4bca: 9482 jalr s1 + +0000000000004bcc <.LVL149>: + 4bcc: b7a5 j 4b34 <.L108> 4bcc: R_RISCV_RVC_JUMP .L108 + +0000000000004bce <.L114>: +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:466 + popt = strchr(opts, *value++); + 4bce: 854e mv a0,s3 + 4bd0: 0485 addi s1,s1,1 + 4bd2: 00000097 auipc ra,0x0 4bd2: R_RISCV_CALL strchr + 4bd2: R_RISCV_RELAX *ABS* + 4bd6: 000080e7 jalr ra # 4bd2 <.L114+0x4> + +0000000000004bda <.LVL152>: +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:467 + if (popt == NULL) + 4bda: e505 bnez a0,4c02 <.L111> 4bda: R_RISCV_RVC_BRANCH .L111 + +0000000000004bdc <.L121>: +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:469 + nsh_error(vtbl, g_fmtarginvalid, + 4bdc: 000a3603 ld a2,0(s4) + 4be0: 7404 ld s1,40(s0) + 4be2: e432 sd a2,8(sp) + 4be4: 00000097 auipc ra,0x0 4be4: R_RISCV_CALL __errno + 4be4: R_RISCV_RELAX *ABS* + 4be8: 000080e7 jalr ra # 4be4 <.L121+0x8> + +0000000000004bec <.LVL154>: + 4bec: 4118 lw a4,0(a0) + 4bee: 6622 ld a2,8(sp) + 4bf0: 00000697 auipc a3,0x0 4bf0: R_RISCV_PCREL_HI20 .LC10 + 4bf0: R_RISCV_RELAX *ABS* + 4bf4: 00068693 mv a3,a3 4bf4: R_RISCV_PCREL_LO12_I .L0 + 4bf4: R_RISCV_RELAX *ABS* + 4bf8: 00000597 auipc a1,0x0 4bf8: R_RISCV_PCREL_HI20 g_fmtarginvalid + 4bf8: R_RISCV_RELAX *ABS* + 4bfc: 00058593 mv a1,a1 4bfc: R_RISCV_PCREL_LO12_I .L0 + 4bfc: R_RISCV_RELAX *ABS* + 4c00: b73d j 4b2e <.L122> 4c00: R_RISCV_RVC_JUMP .L122 + +0000000000004c02 <.L111>: +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:477 + vtbl->np.np_flags |= 1 << (popt - opts); + 4c02: 413507b3 sub a5,a0,s3 + 4c06: 00fb17bb sllw a5,s6,a5 + 4c0a: 0187979b slliw a5,a5,0x18 + 4c0e: 29b40703 lb a4,667(s0) + 4c12: 4187d79b sraiw a5,a5,0x18 +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:475 + if (op == '+') + 4c16: 017a9863 bne s5,s7,4c26 <.L112> 4c16: R_RISCV_BRANCH .L112 +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:477 + vtbl->np.np_flags |= 1 << (popt - opts); + 4c1a: 8fd9 or a5,a5,a4 + +0000000000004c1c <.L120>: +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:481 + vtbl->np.np_flags &= ~(1 << (popt - opts)); + 4c1c: 0ff7f793 zext.b a5,a5 + 4c20: 28f40da3 sb a5,667(s0) + 4c24: b791 j 4b68 <.L110> 4c24: R_RISCV_RVC_JUMP .L110 + +0000000000004c26 <.L112>: + 4c26: fff7c793 not a5,a5 + 4c2a: 8ff9 and a5,a5,a4 + 4c2c: bfc5 j 4c1c <.L120> 4c2c: R_RISCV_RVC_JUMP .L120 + +0000000000004c2e : +cmd_unset(): +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:561 + * Name: cmd_unset + ****************************************************************************/ + +#ifndef CONFIG_NSH_DISABLE_UNSET +int cmd_unset(FAR struct nsh_vtbl_s *vtbl, int argc, FAR char **argv) +{ + 4c2e: 7179 addi sp,sp,-48 + 4c30: f022 sd s0,32(sp) + 4c32: ec26 sd s1,24(sp) + 4c34: f406 sd ra,40(sp) + 4c36: e84a sd s2,16(sp) + 4c38: 842a mv s0,a0 +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:584 +#endif + +#if !defined(CONFIG_DISABLE_ENVIRON) + /* Unset environment variable */ + + status = unsetenv(argv[1]); + 4c3a: 6608 ld a0,8(a2) + +0000000000004c3c <.LVL157>: +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:561 +{ + 4c3c: 84b2 mv s1,a2 +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:584 + status = unsetenv(argv[1]); + 4c3e: 00000097 auipc ra,0x0 4c3e: R_RISCV_CALL unsetenv + 4c3e: R_RISCV_RELAX *ABS* + 4c42: 000080e7 jalr ra # 4c3e <.LVL157+0x2> + +0000000000004c46 <.LVL158>: +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:585 + if (status < 0) + 4c46: 02055d63 bgez a0,4c80 <.L125> 4c46: R_RISCV_BRANCH .L125 +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:587 + { + nsh_error(vtbl, g_fmtcmdfailed, argv[0], "unsetenv", NSH_ERRNO); + 4c4a: 6090 ld a2,0(s1) + 4c4c: 02843903 ld s2,40(s0) + 4c50: e432 sd a2,8(sp) + 4c52: 00000097 auipc ra,0x0 4c52: R_RISCV_CALL __errno + 4c52: R_RISCV_RELAX *ABS* + 4c56: 000080e7 jalr ra # 4c52 <.LVL158+0xc> + +0000000000004c5a <.LVL159>: + 4c5a: 4118 lw a4,0(a0) + 4c5c: 6622 ld a2,8(sp) + 4c5e: 00000697 auipc a3,0x0 4c5e: R_RISCV_PCREL_HI20 .LC12 + 4c5e: R_RISCV_RELAX *ABS* + 4c62: 00068693 mv a3,a3 4c62: R_RISCV_PCREL_LO12_I .L0 + 4c62: R_RISCV_RELAX *ABS* + 4c66: 00000597 auipc a1,0x0 4c66: R_RISCV_PCREL_HI20 g_fmtcmdfailed + 4c66: R_RISCV_RELAX *ABS* + 4c6a: 00058593 mv a1,a1 4c6a: R_RISCV_PCREL_LO12_I .L0 + 4c6a: R_RISCV_RELAX *ABS* + 4c6e: 8522 mv a0,s0 + 4c70: 9902 jalr s2 + +0000000000004c72 <.LVL160>: +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:588 + ret = ERROR; + 4c72: 557d li a0,-1 + +0000000000004c74 <.L124>: +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:593 + } +#endif + + return ret; +} + 4c74: 70a2 ld ra,40(sp) + 4c76: 7402 ld s0,32(sp) + +0000000000004c78 <.LVL162>: + 4c78: 64e2 ld s1,24(sp) + +0000000000004c7a <.LVL163>: + 4c7a: 6942 ld s2,16(sp) + 4c7c: 6145 addi sp,sp,48 + 4c7e: 8082 ret + +0000000000004c80 <.L125>: +/Users/Luppy/ox64/apps/nshlib/nsh_envcmds.c:567 + int ret = OK; + 4c80: 4501 li a0,0 + +0000000000004c82 <.LVL165>: + 4c82: bfcd j 4c74 <.L124> 4c82: R_RISCV_RVC_JUMP .L124 + +0000000000004c84 : +nsh_fileapp(): +/Users/Luppy/ox64/apps/nshlib/nsh_fileapps.c:72 + * + ****************************************************************************/ + +int nsh_fileapp(FAR struct nsh_vtbl_s *vtbl, FAR const char *cmd, + FAR char **argv, FAR const char *redirfile, int oflags) +{ + 4c84: 7159 addi sp,sp,-112 + 4c86: eca6 sd s1,88(sp) + 4c88: 84aa mv s1,a0 +/Users/Luppy/ox64/apps/nshlib/nsh_fileapps.c:85 + int index; +#endif + + /* Initialize the attributes file actions structure */ + + ret = posix_spawn_file_actions_init(&file_actions); + 4c8a: 0808 addi a0,sp,16 + +0000000000004c8c <.LVL1>: +/Users/Luppy/ox64/apps/nshlib/nsh_fileapps.c:72 +{ + 4c8c: e8ca sd s2,80(sp) + 4c8e: e4ce sd s3,72(sp) + 4c90: e0d2 sd s4,64(sp) + 4c92: fc56 sd s5,56(sp) + 4c94: f486 sd ra,104(sp) + 4c96: f0a2 sd s0,96(sp) + 4c98: 892e mv s2,a1 + 4c9a: 8a32 mv s4,a2 + 4c9c: 89b6 mv s3,a3 + 4c9e: 8aba mv s5,a4 +/Users/Luppy/ox64/apps/nshlib/nsh_fileapps.c:76 + int rc = 0; + 4ca0: c602 sw zero,12(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_fileapps.c:85 + ret = posix_spawn_file_actions_init(&file_actions); + 4ca2: 00000097 auipc ra,0x0 4ca2: R_RISCV_CALL posix_spawn_file_actions_init + 4ca2: R_RISCV_RELAX *ABS* + 4ca6: 000080e7 jalr ra # 4ca2 <.LVL1+0x16> + +0000000000004caa <.LVL2>: +/Users/Luppy/ox64/apps/nshlib/nsh_fileapps.c:86 + if (ret != 0) + 4caa: c91d beqz a0,4ce0 <.L2> 4caa: R_RISCV_RVC_BRANCH .L2 +/Users/Luppy/ox64/apps/nshlib/nsh_fileapps.c:92 + { + /* posix_spawn_file_actions_init returns a positive errno value on + * failure. + */ + + nsh_error(vtbl, g_fmtcmdfailed, cmd, "posix_spawn_file_actions_init", + 4cac: 749c ld a5,40(s1) + 4cae: 842a mv s0,a0 + 4cb0: 872a mv a4,a0 + 4cb2: 00000697 auipc a3,0x0 4cb2: R_RISCV_PCREL_HI20 .LC0 + 4cb2: R_RISCV_RELAX *ABS* + 4cb6: 00068693 mv a3,a3 4cb6: R_RISCV_PCREL_LO12_I .L0 + 4cb6: R_RISCV_RELAX *ABS* + 4cba: 864a mv a2,s2 + 4cbc: 00000597 auipc a1,0x0 4cbc: R_RISCV_PCREL_HI20 g_fmtcmdfailed + 4cbc: R_RISCV_RELAX *ABS* + 4cc0: 00058593 mv a1,a1 4cc0: R_RISCV_PCREL_LO12_I .L0 + 4cc0: R_RISCV_RELAX *ABS* + 4cc4: 8526 mv a0,s1 + +0000000000004cc6 <.LVL3>: + 4cc6: 9782 jalr a5 + +0000000000004cc8 <.LVL4>: +/Users/Luppy/ox64/apps/nshlib/nsh_fileapps.c:308 +errout: + /* Most posix_spawn interfaces return a positive errno value on failure + * and do not set the errno variable. + */ + + if (ret > 0) + 4cc8: 0a804263 bgtz s0,4d6c <.L3> 4cc8: R_RISCV_BRANCH .L3 + +0000000000004ccc <.L28>: +/Users/Luppy/ox64/apps/nshlib/nsh_fileapps.c:313 + { + /* Set the errno value and return -1 */ + + errno = ret; + ret = ERROR; + 4ccc: 557d li a0,-1 + +0000000000004cce <.L4>: +/Users/Luppy/ox64/apps/nshlib/nsh_fileapps.c:332 + + ret = 1; + } + + return ret; +} + 4cce: 70a6 ld ra,104(sp) + 4cd0: 7406 ld s0,96(sp) + 4cd2: 64e6 ld s1,88(sp) + +0000000000004cd4 <.LVL7>: + 4cd4: 6946 ld s2,80(sp) + +0000000000004cd6 <.LVL8>: + 4cd6: 69a6 ld s3,72(sp) + 4cd8: 6a06 ld s4,64(sp) + 4cda: 7ae2 ld s5,56(sp) + 4cdc: 6165 addi sp,sp,112 + 4cde: 8082 ret + +0000000000004ce0 <.L2>: +/Users/Luppy/ox64/apps/nshlib/nsh_fileapps.c:97 + ret = posix_spawnattr_init(&attr); + 4ce0: 0828 addi a0,sp,24 + +0000000000004ce2 <.LVL10>: + 4ce2: 00000097 auipc ra,0x0 4ce2: R_RISCV_CALL posix_spawnattr_init + 4ce2: R_RISCV_RELAX *ABS* + 4ce6: 000080e7 jalr ra # 4ce2 <.LVL10> + +0000000000004cea <.LVL11>: + 4cea: 842a mv s0,a0 + +0000000000004cec <.LVL12>: +/Users/Luppy/ox64/apps/nshlib/nsh_fileapps.c:98 + if (ret != 0) + 4cec: c90d beqz a0,4d1e <.L5> 4cec: R_RISCV_RVC_BRANCH .L5 +/Users/Luppy/ox64/apps/nshlib/nsh_fileapps.c:102 + nsh_error(vtbl, g_fmtcmdfailed, cmd, "posix_spawnattr_init", + 4cee: 0284b983 ld s3,40(s1) + +0000000000004cf2 <.LVL13>: + 4cf2: 00000097 auipc ra,0x0 4cf2: R_RISCV_CALL __errno + 4cf2: R_RISCV_RELAX *ABS* + 4cf6: 000080e7 jalr ra # 4cf2 <.LVL13> + +0000000000004cfa <.LVL14>: + 4cfa: 4118 lw a4,0(a0) + 4cfc: 00000697 auipc a3,0x0 4cfc: R_RISCV_PCREL_HI20 .LC1 + 4cfc: R_RISCV_RELAX *ABS* + 4d00: 00068693 mv a3,a3 4d00: R_RISCV_PCREL_LO12_I .L0 + 4d00: R_RISCV_RELAX *ABS* + 4d04: 864a mv a2,s2 + 4d06: 00000597 auipc a1,0x0 4d06: R_RISCV_PCREL_HI20 g_fmtcmdfailed + 4d06: R_RISCV_RELAX *ABS* + 4d0a: 00058593 mv a1,a1 4d0a: R_RISCV_PCREL_LO12_I .L0 + 4d0a: R_RISCV_RELAX *ABS* + 4d0e: 8526 mv a0,s1 + 4d10: 9982 jalr s3 + +0000000000004d12 <.L6>: +/Users/Luppy/ox64/apps/nshlib/nsh_fileapps.c:298 + posix_spawn_file_actions_destroy(&file_actions); + 4d12: 0808 addi a0,sp,16 + 4d14: 00000097 auipc ra,0x0 4d14: R_RISCV_CALL posix_spawn_file_actions_destroy + 4d14: R_RISCV_RELAX *ABS* + 4d18: 000080e7 jalr ra # 4d14 <.L6+0x2> + +0000000000004d1c <.LVL16>: + 4d1c: a089 j 4d5e <.L8> 4d1c: R_RISCV_RVC_JUMP .L8 + +0000000000004d1e <.L5>: +/Users/Luppy/ox64/apps/nshlib/nsh_fileapps.c:109 + if (redirfile) + 4d1e: 04098d63 beqz s3,4d78 <.L7> 4d1e: R_RISCV_BRANCH .L7 +/Users/Luppy/ox64/apps/nshlib/nsh_fileapps.c:111 + ret = posix_spawn_file_actions_addopen(&file_actions, 1, redirfile, + 4d22: 1a400713 li a4,420 + 4d26: 86d6 mv a3,s5 + 4d28: 864e mv a2,s3 + 4d2a: 4585 li a1,1 + 4d2c: 0808 addi a0,sp,16 + +0000000000004d2e <.LVL18>: + 4d2e: 00000097 auipc ra,0x0 4d2e: R_RISCV_CALL posix_spawn_file_actions_addopen + 4d2e: R_RISCV_RELAX *ABS* + 4d32: 000080e7 jalr ra # 4d2e <.LVL18> + +0000000000004d36 <.LVL19>: + 4d36: 842a mv s0,a0 + +0000000000004d38 <.LVL20>: +/Users/Luppy/ox64/apps/nshlib/nsh_fileapps.c:113 + if (ret != 0) + 4d38: c121 beqz a0,4d78 <.L7> 4d38: R_RISCV_RVC_BRANCH .L7 +/Users/Luppy/ox64/apps/nshlib/nsh_fileapps.c:119 + nsh_error(vtbl, g_fmtcmdfailed, cmd, + 4d3a: 0284b983 ld s3,40(s1) + +0000000000004d3e <.LVL21>: + 4d3e: 00000097 auipc ra,0x0 4d3e: R_RISCV_CALL __errno + 4d3e: R_RISCV_RELAX *ABS* + 4d42: 000080e7 jalr ra # 4d3e <.LVL21> + +0000000000004d46 <.LVL22>: + 4d46: 4118 lw a4,0(a0) + 4d48: 00000697 auipc a3,0x0 4d48: R_RISCV_PCREL_HI20 .LC2 + 4d48: R_RISCV_RELAX *ABS* + 4d4c: 00068693 mv a3,a3 4d4c: R_RISCV_PCREL_LO12_I .L0 + 4d4c: R_RISCV_RELAX *ABS* + 4d50: 864a mv a2,s2 + 4d52: 00000597 auipc a1,0x0 4d52: R_RISCV_PCREL_HI20 g_fmtcmdfailed + 4d52: R_RISCV_RELAX *ABS* + 4d56: 00058593 mv a1,a1 4d56: R_RISCV_PCREL_LO12_I .L0 + 4d56: R_RISCV_RELAX *ABS* + 4d5a: 8526 mv a0,s1 + 4d5c: 9982 jalr s3 + +0000000000004d5e <.L8>: +/Users/Luppy/ox64/apps/nshlib/nsh_fileapps.c:301 + posix_spawnattr_destroy(&attr); + 4d5e: 0828 addi a0,sp,24 + 4d60: 00000097 auipc ra,0x0 4d60: R_RISCV_CALL posix_spawnattr_destroy + 4d60: R_RISCV_RELAX *ABS* + 4d64: 000080e7 jalr ra # 4d60 <.L8+0x2> + +0000000000004d68 <.LDL1>: +/Users/Luppy/ox64/apps/nshlib/nsh_fileapps.c:308 + if (ret > 0) + 4d68: 0c805163 blez s0,4e2a <.L14> 4d68: R_RISCV_BRANCH .L14 + +0000000000004d6c <.L3>: +/Users/Luppy/ox64/apps/nshlib/nsh_fileapps.c:312 + errno = ret; + 4d6c: 00000097 auipc ra,0x0 4d6c: R_RISCV_CALL __errno + 4d6c: R_RISCV_RELAX *ABS* + 4d70: 000080e7 jalr ra # 4d6c <.L3> + +0000000000004d74 <.LVL25>: + 4d74: c100 sw s0,0(a0) + 4d76: bf99 j 4ccc <.L28> 4d76: R_RISCV_RVC_JUMP .L28 + +0000000000004d78 <.L7>: +/Users/Luppy/ox64/apps/nshlib/nsh_fileapps.c:166 + ret = posix_spawnp(&pid, cmd, &file_actions, &attr, argv, environ); + 4d78: 00000097 auipc ra,0x0 4d78: R_RISCV_CALL get_environ_ptr + 4d78: R_RISCV_RELAX *ABS* + 4d7c: 000080e7 jalr ra # 4d78 <.L7> + +0000000000004d80 <.LVL27>: + 4d80: 87aa mv a5,a0 + 4d82: 8752 mv a4,s4 + 4d84: 0834 addi a3,sp,24 + 4d86: 0810 addi a2,sp,16 + 4d88: 85ca mv a1,s2 + 4d8a: 0028 addi a0,sp,8 + 4d8c: 00000097 auipc ra,0x0 4d8c: R_RISCV_CALL posix_spawn + 4d8c: R_RISCV_RELAX *ABS* + 4d90: 000080e7 jalr ra # 4d8c <.LVL27+0xc> + +0000000000004d94 <.LVL28>: + 4d94: 842a mv s0,a0 + +0000000000004d96 <.LVL29>: +/Users/Luppy/ox64/apps/nshlib/nsh_fileapps.c:167 + if (ret == OK) + 4d96: fd35 bnez a0,4d12 <.L6> 4d96: R_RISCV_RVC_BRANCH .L6 +/Users/Luppy/ox64/apps/nshlib/nsh_fileapps.c:192 + if (vtbl->np.np_bg == false) + 4d98: 2984c783 lbu a5,664(s1) + 4d9c: e7bd bnez a5,4e0a <.L9> 4d9c: R_RISCV_RVC_BRANCH .L9 + +0000000000004d9e <.LBB2>: +/Users/Luppy/ox64/apps/nshlib/nsh_fileapps.c:197 + if (vtbl->isctty) + 4d9e: 2e84c783 lbu a5,744(s1) +/Users/Luppy/ox64/apps/nshlib/nsh_fileapps.c:195 + int tc = 0; + 4da2: 4981 li s3,0 + +0000000000004da4 <.LVL31>: +/Users/Luppy/ox64/apps/nshlib/nsh_fileapps.c:197 + if (vtbl->isctty) + 4da4: cb81 beqz a5,4db4 <.L10> 4da4: R_RISCV_RVC_BRANCH .L10 +/Users/Luppy/ox64/apps/nshlib/nsh_fileapps.c:201 + tc = nsh_ioctl(vtbl, TIOCSCTTY, pid); + 4da6: 709c ld a5,32(s1) + 4da8: 4622 lw a2,8(sp) + 4daa: 11800593 li a1,280 + 4dae: 8526 mv a0,s1 + +0000000000004db0 <.LVL32>: + 4db0: 9782 jalr a5 + +0000000000004db2 <.LVL33>: + 4db2: 89aa mv s3,a0 + +0000000000004db4 <.L10>: +/Users/Luppy/ox64/apps/nshlib/nsh_fileapps.c:217 + ret = waitpid(pid, &rc, WUNTRACED); + 4db4: 4522 lw a0,8(sp) + 4db6: 4611 li a2,4 + 4db8: 006c addi a1,sp,12 + 4dba: 00000097 auipc ra,0x0 4dba: R_RISCV_CALL waitpid + 4dba: R_RISCV_RELAX *ABS* + 4dbe: 000080e7 jalr ra # 4dba <.L10+0x6> + +0000000000004dc2 <.LVL35>: + 4dc2: 8a2a mv s4,a0 + +0000000000004dc4 <.LVL36>: +/Users/Luppy/ox64/apps/nshlib/nsh_fileapps.c:218 + if (ret < 0) + 4dc4: 02055763 bgez a0,4df2 <.L12> 4dc4: R_RISCV_BRANCH .L12 + +0000000000004dc8 <.LBB3>: +/Users/Luppy/ox64/apps/nshlib/nsh_fileapps.c:229 + int errcode = errno; + 4dc8: 00000097 auipc ra,0x0 4dc8: R_RISCV_CALL __errno + 4dc8: R_RISCV_RELAX *ABS* + 4dcc: 000080e7 jalr ra # 4dc8 <.LBB3> + +0000000000004dd0 <.LVL37>: + 4dd0: 4118 lw a4,0(a0) + +0000000000004dd2 <.LVL38>: +/Users/Luppy/ox64/apps/nshlib/nsh_fileapps.c:230 + if (errcode == ECHILD) + 4dd2: 47a9 li a5,10 + 4dd4: 00f70f63 beq a4,a5,4df2 <.L12> 4dd4: R_RISCV_BRANCH .L12 +/Users/Luppy/ox64/apps/nshlib/nsh_fileapps.c:236 + nsh_error(vtbl, g_fmtcmdfailed, cmd, "waitpid", + 4dd8: 749c ld a5,40(s1) + 4dda: 00000697 auipc a3,0x0 4dda: R_RISCV_PCREL_HI20 .LC3 + 4dda: R_RISCV_RELAX *ABS* + 4dde: 00068693 mv a3,a3 4dde: R_RISCV_PCREL_LO12_I .L0 + 4dde: R_RISCV_RELAX *ABS* + 4de2: 864a mv a2,s2 + 4de4: 00000597 auipc a1,0x0 4de4: R_RISCV_PCREL_HI20 g_fmtcmdfailed + 4de4: R_RISCV_RELAX *ABS* + 4de8: 00058593 mv a1,a1 4de8: R_RISCV_PCREL_LO12_I .L0 + 4de8: R_RISCV_RELAX *ABS* + 4dec: 8526 mv a0,s1 + 4dee: 9782 jalr a5 + +0000000000004df0 <.LVL39>: + 4df0: 8452 mv s0,s4 + +0000000000004df2 <.L12>: +/Users/Luppy/ox64/apps/nshlib/nsh_fileapps.c:255 + if (vtbl->isctty && tc == 0) + 4df2: 2e84c783 lbu a5,744(s1) + 4df6: df91 beqz a5,4d12 <.L6> 4df6: R_RISCV_RVC_BRANCH .L6 +/Users/Luppy/ox64/apps/nshlib/nsh_fileapps.c:255 (discriminator 1) + 4df8: f0099de3 bnez s3,4d12 <.L6> 4df8: R_RISCV_BRANCH .L6 +/Users/Luppy/ox64/apps/nshlib/nsh_fileapps.c:257 + nsh_ioctl(vtbl, TIOCNOTTY, 0); + 4dfc: 709c ld a5,32(s1) + 4dfe: 4601 li a2,0 + 4e00: 11900593 li a1,281 + 4e04: 8526 mv a0,s1 + 4e06: 9782 jalr a5 + +0000000000004e08 <.LVL41>: + 4e08: b729 j 4d12 <.L6> 4e08: R_RISCV_RVC_JUMP .L6 + +0000000000004e0a <.L9>: +/Users/Luppy/ox64/apps/nshlib/nsh_fileapps.c:281 + sched_getparam(ret, ¶m); + 4e0a: 858a mv a1,sp + 4e0c: 00000097 auipc ra,0x0 4e0c: R_RISCV_CALL sched_getparam + 4e0c: R_RISCV_RELAX *ABS* + 4e10: 000080e7 jalr ra # 4e0c <.L9+0x2> + +0000000000004e14 <.LVL43>: +/Users/Luppy/ox64/apps/nshlib/nsh_fileapps.c:282 + nsh_output(vtbl, "%s [%d:%d]\n", cmd, ret, param.sched_priority); + 4e14: 789c ld a5,48(s1) + 4e16: 4702 lw a4,0(sp) + 4e18: 4681 li a3,0 + 4e1a: 864a mv a2,s2 + 4e1c: 00000597 auipc a1,0x0 4e1c: R_RISCV_PCREL_HI20 .LC4 + 4e1c: R_RISCV_RELAX *ABS* + 4e20: 00058593 mv a1,a1 4e20: R_RISCV_PCREL_LO12_I .L0 + 4e20: R_RISCV_RELAX *ABS* + 4e24: 8526 mv a0,s1 + 4e26: 9782 jalr a5 + +0000000000004e28 <.LVL44>: +/Users/Luppy/ox64/apps/nshlib/nsh_fileapps.c:288 + ret = OK; + 4e28: b5ed j 4d12 <.L6> 4e28: R_RISCV_RVC_JUMP .L6 + +0000000000004e2a <.L14>: +/Users/Luppy/ox64/apps/nshlib/nsh_fileapps.c:315 + else if (ret < 0) + 4e2a: ea0411e3 bnez s0,4ccc <.L28> 4e2a: R_RISCV_BRANCH .L28 +/Users/Luppy/ox64/apps/nshlib/nsh_fileapps.c:321 + else if (rc != 0) + 4e2e: 4532 lw a0,12(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_fileapps.c:313 + ret = ERROR; + 4e30: 00a03533 snez a0,a0 + 4e34: bd69 j 4cce <.L4> 4e34: R_RISCV_RVC_JUMP .L4 + +0000000000004e36 : +unlink_recursive(): +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2000 + +#ifdef NSH_HAVE_DIROPTS +#ifndef CONFIG_NSH_DISABLE_RM + +static int unlink_recursive(FAR char *path) +{ + 4e36: 7171 addi sp,sp,-176 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2007 + struct stat stat; + size_t len; + int ret; + DIR *dp; + + ret = lstat(path, &stat); + 4e38: 002c addi a1,sp,8 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2000 +{ + 4e3a: f122 sd s0,160(sp) + 4e3c: ed26 sd s1,152(sp) + 4e3e: f506 sd ra,168(sp) + 4e40: e94a sd s2,144(sp) + 4e42: e54e sd s3,136(sp) + 4e44: e152 sd s4,128(sp) + 4e46: fcd6 sd s5,120(sp) + 4e48: f8da sd s6,112(sp) + 4e4a: f4de sd s7,104(sp) + 4e4c: f0e2 sd s8,96(sp) + 4e4e: 84aa mv s1,a0 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2007 + ret = lstat(path, &stat); + 4e50: 00000097 auipc ra,0x0 4e50: R_RISCV_CALL lstat + 4e50: R_RISCV_RELAX *ABS* + 4e54: 000080e7 jalr ra # 4e50 + +0000000000004e58 <.LVL1>: + 4e58: 842a mv s0,a0 + +0000000000004e5a <.LVL2>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2008 + if (ret < 0) + 4e5a: 0e054863 bltz a0,4f4a <.L2> 4e5a: R_RISCV_BRANCH .L2 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2013 + { + return ret; + } + + if (!S_ISDIR(stat.st_mode)) + 4e5e: 47c2 lw a5,16(sp) + 4e60: 673d lui a4,0xf +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2015 + { + return unlink(path); + 4e62: 8526 mv a0,s1 + +0000000000004e64 <.LVL3>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2013 + if (!S_ISDIR(stat.st_mode)) + 4e64: 8ff9 and a5,a5,a4 + 4e66: 6711 lui a4,0x4 + 4e68: 00e78863 beq a5,a4,4e78 <.L3> 4e68: R_RISCV_BRANCH .L3 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2015 + return unlink(path); + 4e6c: 00000097 auipc ra,0x0 4e6c: R_RISCV_CALL unlink + 4e6c: R_RISCV_RELAX *ABS* + 4e70: 000080e7 jalr ra # 4e6c <.LVL3+0x8> + +0000000000004e74 <.L19>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2050 + + ret = closedir(dp); + if (ret >= 0) + { + path[len] = '\0'; + ret = rmdir(path); + 4e74: 842a mv s0,a0 + +0000000000004e76 <.LVL5>: + 4e76: a8d1 j 4f4a <.L2> 4e76: R_RISCV_RVC_JUMP .L2 + +0000000000004e78 <.L3>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2018 + dp = opendir(path); + 4e78: 00000097 auipc ra,0x0 4e78: R_RISCV_CALL opendir + 4e78: R_RISCV_RELAX *ABS* + 4e7c: 000080e7 jalr ra # 4e78 <.L3> + +0000000000004e80 <.LVL7>: + 4e80: 89aa mv s3,a0 + +0000000000004e82 <.LVL8>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2021 + return -1; + 4e82: 547d li s0,-1 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2019 + if (dp == NULL) + 4e84: c179 beqz a0,4f4a <.L2> 4e84: R_RISCV_RVC_BRANCH .L2 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2024 + len = strlen(path); + 4e86: 8526 mv a0,s1 + +0000000000004e88 <.LVL9>: + 4e88: 00000097 auipc ra,0x0 4e88: R_RISCV_CALL strlen + 4e88: R_RISCV_RELAX *ABS* + 4e8c: 000080e7 jalr ra # 4e88 <.LVL9> + +0000000000004e90 <.LVL10>: + 4e90: 892a mv s2,a0 + +0000000000004e92 <.LVL11>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2025 + if (len > 0 && path[len - 1] == '/') + 4e92: cd11 beqz a0,4eae <.L4> 4e92: R_RISCV_RVC_BRANCH .L4 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2025 (discriminator 1) + 4e94: fff50793 addi a5,a0,-1 + 4e98: 00f48733 add a4,s1,a5 + 4e9c: 00074603 lbu a2,0(a4) # 4000 <.L27> + 4ea0: 02f00693 li a3,47 + 4ea4: 00d61563 bne a2,a3,4eae <.L4> 4ea4: R_RISCV_BRANCH .L4 + +0000000000004ea8 <.LVL12>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2027 + path[--len] = '\0'; + 4ea8: 00070023 sb zero,0(a4) + 4eac: 893e mv s2,a5 + +0000000000004eae <.L4>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2037 + snprintf(&path[len], PATH_MAX - len, "/%s", d->d_name); + 4eae: 10000a13 li s4,256 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2032 + if (strcmp(d->d_name, ".") == 0 || strcmp(d->d_name, "..") == 0) + 4eb2: 00000a97 auipc s5,0x0 4eb2: R_RISCV_PCREL_HI20 .LC0 + 4eb2: R_RISCV_RELAX *ABS* + 4eb6: 000a8a93 mv s5,s5 4eb6: R_RISCV_PCREL_LO12_I .L0 + 4eb6: R_RISCV_RELAX *ABS* + 4eba: 00000b17 auipc s6,0x0 4eba: R_RISCV_PCREL_HI20 .LC1 + 4eba: R_RISCV_RELAX *ABS* + 4ebe: 000b0b13 mv s6,s6 4ebe: R_RISCV_PCREL_LO12_I .L0 + 4ebe: R_RISCV_RELAX *ABS* +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2037 + snprintf(&path[len], PATH_MAX - len, "/%s", d->d_name); + 4ec2: 412a0a33 sub s4,s4,s2 + 4ec6: 01248bb3 add s7,s1,s2 + 4eca: 00000c17 auipc s8,0x0 4eca: R_RISCV_PCREL_HI20 .LC2 + 4eca: R_RISCV_RELAX *ABS* + 4ece: 000c0c13 mv s8,s8 4ece: R_RISCV_PCREL_LO12_I .L0 + 4ece: R_RISCV_RELAX *ABS* + +0000000000004ed2 <.L6>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2030 + while ((d = readdir(dp)) != NULL) + 4ed2: 854e mv a0,s3 + 4ed4: 00000097 auipc ra,0x0 4ed4: R_RISCV_CALL readdir + 4ed4: R_RISCV_RELAX *ABS* + 4ed8: 000080e7 jalr ra # 4ed4 <.L6+0x2> + +0000000000004edc <.LVL14>: + 4edc: e115 bnez a0,4f00 <.L7> 4edc: R_RISCV_RVC_BRANCH .L7 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2046 + ret = closedir(dp); + 4ede: 854e mv a0,s3 + +0000000000004ee0 <.LVL15>: + 4ee0: 00000097 auipc ra,0x0 4ee0: R_RISCV_CALL closedir + 4ee0: R_RISCV_RELAX *ABS* + 4ee4: 000080e7 jalr ra # 4ee0 <.LVL15> + +0000000000004ee8 <.LVL16>: + 4ee8: 842a mv s0,a0 + +0000000000004eea <.LVL17>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2047 + if (ret >= 0) + 4eea: 06054063 bltz a0,4f4a <.L2> 4eea: R_RISCV_BRANCH .L2 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2049 + path[len] = '\0'; + 4eee: 9926 add s2,s2,s1 + +0000000000004ef0 <.LVL18>: + 4ef0: 00090023 sb zero,0(s2) +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2050 + ret = rmdir(path); + 4ef4: 8526 mv a0,s1 + +0000000000004ef6 <.LVL19>: + 4ef6: 00000097 auipc ra,0x0 4ef6: R_RISCV_CALL rmdir + 4ef6: R_RISCV_RELAX *ABS* + 4efa: 000080e7 jalr ra # 4ef6 <.LVL19> + +0000000000004efe <.LVL20>: + 4efe: bf9d j 4e74 <.L19> 4efe: R_RISCV_RVC_JUMP .L19 + +0000000000004f00 <.L7>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2032 + if (strcmp(d->d_name, ".") == 0 || strcmp(d->d_name, "..") == 0) + 4f00: 00150413 addi s0,a0,1 + 4f04: 85d6 mv a1,s5 + 4f06: 8522 mv a0,s0 + +0000000000004f08 <.LVL22>: + 4f08: 00000097 auipc ra,0x0 4f08: R_RISCV_CALL strcmp + 4f08: R_RISCV_RELAX *ABS* + 4f0c: 000080e7 jalr ra # 4f08 <.LVL22> + +0000000000004f10 <.LVL23>: + 4f10: d169 beqz a0,4ed2 <.L6> 4f10: R_RISCV_RVC_BRANCH .L6 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2032 (discriminator 1) + 4f12: 85da mv a1,s6 + 4f14: 8522 mv a0,s0 + 4f16: 00000097 auipc ra,0x0 4f16: R_RISCV_CALL strcmp + 4f16: R_RISCV_RELAX *ABS* + 4f1a: 000080e7 jalr ra # 4f16 <.LVL23+0x6> + +0000000000004f1e <.LVL24>: + 4f1e: d955 beqz a0,4ed2 <.L6> 4f1e: R_RISCV_RVC_BRANCH .L6 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2037 + snprintf(&path[len], PATH_MAX - len, "/%s", d->d_name); + 4f20: 86a2 mv a3,s0 + 4f22: 8662 mv a2,s8 + 4f24: 85d2 mv a1,s4 + 4f26: 855e mv a0,s7 + 4f28: 00000097 auipc ra,0x0 4f28: R_RISCV_CALL snprintf + 4f28: R_RISCV_RELAX *ABS* + 4f2c: 000080e7 jalr ra # 4f28 <.LVL24+0xa> + +0000000000004f30 <.LVL25>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2038 + ret = unlink_recursive(path); + 4f30: 8526 mv a0,s1 + 4f32: 00000097 auipc ra,0x0 4f32: R_RISCV_CALL unlink_recursive + 4f32: R_RISCV_RELAX *ABS* + 4f36: 000080e7 jalr ra # 4f32 <.LVL25+0x2> + +0000000000004f3a <.LVL26>: + 4f3a: 842a mv s0,a0 + +0000000000004f3c <.LVL27>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2039 + if (ret < 0) + 4f3c: f8055be3 bgez a0,4ed2 <.L6> 4f3c: R_RISCV_BRANCH .L6 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2041 + closedir(dp); + 4f40: 854e mv a0,s3 + +0000000000004f42 <.LVL28>: + 4f42: 00000097 auipc ra,0x0 4f42: R_RISCV_CALL closedir + 4f42: R_RISCV_RELAX *ABS* + 4f46: 000080e7 jalr ra # 4f42 <.LVL28> + +0000000000004f4a <.L2>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2054 + } + + return ret; +} + 4f4a: 70aa ld ra,168(sp) + 4f4c: 8522 mv a0,s0 + 4f4e: 740a ld s0,160(sp) + 4f50: 64ea ld s1,152(sp) + +0000000000004f52 <.LVL30>: + 4f52: 694a ld s2,144(sp) + 4f54: 69aa ld s3,136(sp) + 4f56: 6a0a ld s4,128(sp) + 4f58: 7ae6 ld s5,120(sp) + 4f5a: 7b46 ld s6,112(sp) + 4f5c: 7ba6 ld s7,104(sp) + 4f5e: 7c06 ld s8,96(sp) + 4f60: 614d addi sp,sp,176 + 4f62: 8082 ret + +0000000000004f64 : +ls_specialdir(): +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:105 +{ + 4f64: 1141 addi sp,sp,-16 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:108 + return (strcmp(dir, ".") == 0 || strcmp(dir, "..") == 0); + 4f66: 00000597 auipc a1,0x0 4f66: R_RISCV_PCREL_HI20 .LC0 + 4f66: R_RISCV_RELAX *ABS* + 4f6a: 00058593 mv a1,a1 4f6a: R_RISCV_PCREL_LO12_I .L0 + 4f6a: R_RISCV_RELAX *ABS* +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:105 +{ + 4f6e: e022 sd s0,0(sp) + 4f70: e406 sd ra,8(sp) + 4f72: 842a mv s0,a0 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:108 + return (strcmp(dir, ".") == 0 || strcmp(dir, "..") == 0); + 4f74: 00000097 auipc ra,0x0 4f74: R_RISCV_CALL strcmp + 4f74: R_RISCV_RELAX *ABS* + 4f78: 000080e7 jalr ra # 4f74 + +0000000000004f7c <.LVL32>: + 4f7c: c105 beqz a0,4f9c <.L22> 4f7c: R_RISCV_RVC_BRANCH .L22 + +0000000000004f7e <.LBB5>: + 4f7e: 00000597 auipc a1,0x0 4f7e: R_RISCV_PCREL_HI20 .LC1 + 4f7e: R_RISCV_RELAX *ABS* + 4f82: 00058593 mv a1,a1 4f82: R_RISCV_PCREL_LO12_I .L0 + 4f82: R_RISCV_RELAX *ABS* + 4f86: 8522 mv a0,s0 + 4f88: 00000097 auipc ra,0x0 4f88: R_RISCV_CALL strcmp + 4f88: R_RISCV_RELAX *ABS* + 4f8c: 000080e7 jalr ra # 4f88 <.LBB5+0xa> + +0000000000004f90 <.LBE5>: + 4f90: 00153513 seqz a0,a0 + +0000000000004f94 <.L21>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:109 (discriminator 6) +} + 4f94: 60a2 ld ra,8(sp) + 4f96: 6402 ld s0,0(sp) + +0000000000004f98 <.LVL36>: + 4f98: 0141 addi sp,sp,16 + 4f9a: 8082 ret + +0000000000004f9c <.L22>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:108 + return (strcmp(dir, ".") == 0 || strcmp(dir, "..") == 0); + 4f9c: 4505 li a0,1 + 4f9e: bfdd j 4f94 <.L21> 4f9e: R_RISCV_RVC_JUMP .L21 + +0000000000004fa0 : +ls_handler(): +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:119 +{ + 4fa0: 7171 addi sp,sp,-176 + 4fa2: f122 sd s0,160(sp) + 4fa4: ed26 sd s1,152(sp) + 4fa6: e94a sd s2,144(sp) + 4fa8: e152 sd s4,128(sp) + 4faa: f506 sd ra,168(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:120 + unsigned int lsflags = (unsigned int)((uintptr_t)pvarg); + 4fac: 00068a1b sext.w s4,a3 + +0000000000004fb0 <.LVL39>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:119 +{ + 4fb0: e54e sd s3,136(sp) + 4fb2: fcd6 sd s5,120(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:128 + if ((lsflags & (LSFLAGS_SIZE | LSFLAGS_LONG | LSFLAGS_UID_GID)) != 0) + 4fb4: 8aad andi a3,a3,11 + +0000000000004fb6 <.LVL40>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:119 +{ + 4fb6: 842a mv s0,a0 + 4fb8: 892e mv s2,a1 + 4fba: 84b2 mv s1,a2 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:128 + if ((lsflags & (LSFLAGS_SIZE | LSFLAGS_LONG | LSFLAGS_UID_GID)) != 0) + 4fbc: 1a068263 beqz a3,5160 <.L25> 4fbc: R_RISCV_BRANCH .L25 + +0000000000004fc0 <.LBB7>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:132 + memset(&buf, 0, sizeof(struct stat)); + 4fc0: 05800613 li a2,88 + +0000000000004fc4 <.LVL41>: + 4fc4: 4581 li a1,0 + +0000000000004fc6 <.LVL42>: + 4fc6: 0828 addi a0,sp,24 + +0000000000004fc8 <.LVL43>: + 4fc8: 00000097 auipc ra,0x0 4fc8: R_RISCV_CALL memset + 4fc8: R_RISCV_RELAX *ABS* + 4fcc: 000080e7 jalr ra # 4fc8 <.LVL43> + +0000000000004fd0 <.LVL44>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:136 + if (entryp != NULL) + 4fd0: c4b5 beqz s1,503c <.L26> 4fd0: R_RISCV_RVC_BRANCH .L26 + +0000000000004fd2 <.LBB8>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:138 + FAR char *fullpath = nsh_getdirpath(vtbl, dirpath, entryp->d_name); + 4fd2: 00148613 addi a2,s1,1 + 4fd6: 85ca mv a1,s2 + 4fd8: 8522 mv a0,s0 + 4fda: 00000097 auipc ra,0x0 4fda: R_RISCV_CALL nsh_getdirpath + 4fda: R_RISCV_RELAX *ABS* + 4fde: 000080e7 jalr ra # 4fda <.LBB8+0x8> + +0000000000004fe2 <.LVL45>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:139 + ret = stat(fullpath, &buf); + 4fe2: 082c addi a1,sp,24 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:138 + FAR char *fullpath = nsh_getdirpath(vtbl, dirpath, entryp->d_name); + 4fe4: 8aaa mv s5,a0 + +0000000000004fe6 <.LVL46>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:139 + ret = stat(fullpath, &buf); + 4fe6: 00000097 auipc ra,0x0 4fe6: R_RISCV_CALL stat + 4fe6: R_RISCV_RELAX *ABS* + 4fea: 000080e7 jalr ra # 4fe6 <.LVL46> + +0000000000004fee <.LVL47>: + 4fee: 89aa mv s3,a0 + +0000000000004ff0 <.LVL48>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:140 + free(fullpath); + 4ff0: 8556 mv a0,s5 + 4ff2: 00000097 auipc ra,0x0 4ff2: R_RISCV_CALL free + 4ff2: R_RISCV_RELAX *ABS* + 4ff6: 000080e7 jalr ra # 4ff2 <.LVL48+0x2> + +0000000000004ffa <.L27>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:149 + if (ret != 0) + 4ffa: 04098963 beqz s3,504c <.L28> 4ffa: R_RISCV_BRANCH .L28 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:151 + nsh_error(vtbl, g_fmtcmdfailed, "ls", "stat", NSH_ERRNO); + 4ffe: 7404 ld s1,40(s0) + +0000000000005000 <.LVL50>: + 5000: 00000097 auipc ra,0x0 5000: R_RISCV_CALL __errno + 5000: R_RISCV_RELAX *ABS* + 5004: 000080e7 jalr ra # 5000 <.LVL50> + +0000000000005008 <.LVL51>: + 5008: 4118 lw a4,0(a0) + 500a: 00000697 auipc a3,0x0 500a: R_RISCV_PCREL_HI20 .LC3 + 500a: R_RISCV_RELAX *ABS* + 500e: 00068693 mv a3,a3 500e: R_RISCV_PCREL_LO12_I .L0 + 500e: R_RISCV_RELAX *ABS* + 5012: 00000617 auipc a2,0x0 5012: R_RISCV_PCREL_HI20 .LC4 + 5012: R_RISCV_RELAX *ABS* + 5016: 00060613 mv a2,a2 5016: R_RISCV_PCREL_LO12_I .L0 + 5016: R_RISCV_RELAX *ABS* + 501a: 00000597 auipc a1,0x0 501a: R_RISCV_PCREL_HI20 g_fmtcmdfailed + 501a: R_RISCV_RELAX *ABS* + 501e: 00058593 mv a1,a1 501e: R_RISCV_PCREL_LO12_I .L0 + 501e: R_RISCV_RELAX *ABS* + 5022: 8522 mv a0,s0 + 5024: 9482 jalr s1 + +0000000000005026 <.LVL52>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:152 + return ERROR; + 5026: 54fd li s1,-1 + +0000000000005028 <.L29>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:363 +} + 5028: 70aa ld ra,168(sp) + 502a: 740a ld s0,160(sp) + +000000000000502c <.LVL54>: + 502c: 694a ld s2,144(sp) + 502e: 69aa ld s3,136(sp) + 5030: 6a0a ld s4,128(sp) + 5032: 7ae6 ld s5,120(sp) + 5034: 8526 mv a0,s1 + 5036: 64ea ld s1,152(sp) + 5038: 614d addi sp,sp,176 + 503a: 8082 ret + +000000000000503c <.L26>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:146 + ret = stat(dirpath, &buf); + 503c: 082c addi a1,sp,24 + 503e: 854a mv a0,s2 + 5040: 00000097 auipc ra,0x0 5040: R_RISCV_CALL stat + 5040: R_RISCV_RELAX *ABS* + 5044: 000080e7 jalr ra # 5040 <.L26+0x4> + +0000000000005048 <.LVL56>: + 5048: 89aa mv s3,a0 + +000000000000504a <.LVL57>: + 504a: bf45 j 4ffa <.L27> 504a: R_RISCV_RVC_JUMP .L27 + +000000000000504c <.L28>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:155 + if ((lsflags & LSFLAGS_LONG) != 0) + 504c: 002a7793 andi a5,s4,2 + 5050: c3f9 beqz a5,5116 <.L30> 5050: R_RISCV_RVC_BRANCH .L30 + +0000000000005052 <.LBB9>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:157 + char details[] = "----------"; + 5052: 462d li a2,11 + 5054: 00000597 auipc a1,0x0 5054: R_RISCV_PCREL_HI20 .LC5 + 5054: R_RISCV_RELAX *ABS* + 5058: 00058593 mv a1,a1 5058: R_RISCV_PCREL_LO12_I .L0 + 5058: R_RISCV_RELAX *ABS* + 505c: 0028 addi a0,sp,8 + 505e: 00000097 auipc ra,0x0 505e: R_RISCV_CALL memcpy + 505e: R_RISCV_RELAX *ABS* + 5062: 000080e7 jalr ra # 505e <.LBB9+0xc> + +0000000000005066 <.LVL58>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:167 + if (S_ISBLK(buf.st_mode)) + 5066: 5782 lw a5,32(sp) + 5068: 673d lui a4,0xf + 506a: 6699 lui a3,0x6 + 506c: 8f7d and a4,a4,a5 + 506e: 12d71a63 bne a4,a3,51a2 <.L31> 506e: R_RISCV_BRANCH .L31 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:169 + details[0] = 'b'; + 5072: 06200713 li a4,98 + +0000000000005076 <.L95>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:211 + details[0] = '?'; + 5076: 00e10423 sb a4,8(sp) + +000000000000507a <.L32>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:214 + if ((buf.st_mode & S_IRUSR) != 0) + 507a: 1007f713 andi a4,a5,256 + 507e: c709 beqz a4,5088 <.L36> 507e: R_RISCV_RVC_BRANCH .L36 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:216 + details[1] = 'r'; + 5080: 07200713 li a4,114 + 5084: 00e104a3 sb a4,9(sp) + +0000000000005088 <.L36>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:219 + if ((buf.st_mode & S_IWUSR) != 0) + 5088: 0807f713 andi a4,a5,128 + 508c: c709 beqz a4,5096 <.L37> 508c: R_RISCV_RVC_BRANCH .L37 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:221 + details[2] = 'w'; + 508e: 07700713 li a4,119 + 5092: 00e10523 sb a4,10(sp) + +0000000000005096 <.L37>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:224 + if ((buf.st_mode & S_IXUSR) != 0 && (buf.st_mode & S_ISUID) != 0) + 5096: 7682 ld a3,32(sp) + 5098: 6705 lui a4,0x1 + 509a: 84070613 addi a2,a4,-1984 # 840 <.L128+0x12> + 509e: 00c6f5b3 and a1,a3,a2 + 50a2: 12c59863 bne a1,a2,51d2 <.L38> 50a2: R_RISCV_BRANCH .L38 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:226 + details[3] = 's'; + 50a6: 07300713 li a4,115 + +00000000000050aa <.L96>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:234 + details[3] = 'x'; + 50aa: 00e105a3 sb a4,11(sp) + +00000000000050ae <.L39>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:237 + if ((buf.st_mode & S_IRGRP) != 0) + 50ae: 0207f713 andi a4,a5,32 + 50b2: c709 beqz a4,50bc <.L41> 50b2: R_RISCV_RVC_BRANCH .L41 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:239 + details[4] = 'r'; + 50b4: 07200713 li a4,114 + 50b8: 00e10623 sb a4,12(sp) + +00000000000050bc <.L41>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:242 + if ((buf.st_mode & S_IWGRP) != 0) + 50bc: 0107f713 andi a4,a5,16 + 50c0: c709 beqz a4,50ca <.L42> 50c0: R_RISCV_RVC_BRANCH .L42 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:244 + details[5] = 'w'; + 50c2: 07700713 li a4,119 + 50c6: 00e106a3 sb a4,13(sp) + +00000000000050ca <.L42>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:247 + if ((buf.st_mode & S_IXGRP) != 0 && (buf.st_mode & S_ISGID) != 0) + 50ca: 4086f693 andi a3,a3,1032 + 50ce: 40800713 li a4,1032 + 50d2: 10e69e63 bne a3,a4,51ee <.L43> 50d2: R_RISCV_BRANCH .L43 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:249 + details[6] = 's'; + 50d6: 07300713 li a4,115 + +00000000000050da <.L97>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:257 + details[6] = 'x'; + 50da: 00e10723 sb a4,14(sp) + +00000000000050de <.L44>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:260 + if ((buf.st_mode & S_IROTH) != 0) + 50de: 0047f713 andi a4,a5,4 + 50e2: c709 beqz a4,50ec <.L46> 50e2: R_RISCV_RVC_BRANCH .L46 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:262 + details[7] = 'r'; + 50e4: 07200713 li a4,114 + 50e8: 00e107a3 sb a4,15(sp) + +00000000000050ec <.L46>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:265 + if ((buf.st_mode & S_IWOTH) != 0) + 50ec: 0027f713 andi a4,a5,2 + 50f0: c709 beqz a4,50fa <.L47> 50f0: R_RISCV_RVC_BRANCH .L47 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:267 + details[8] = 'w'; + 50f2: 07700713 li a4,119 + 50f6: 00e10823 sb a4,16(sp) + +00000000000050fa <.L47>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:270 + if ((buf.st_mode & S_IXOTH) != 0) + 50fa: 8b85 andi a5,a5,1 + 50fc: c789 beqz a5,5106 <.L48> 50fc: R_RISCV_RVC_BRANCH .L48 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:272 + details[9] = 'x'; + 50fe: 07800793 li a5,120 + 5102: 00f108a3 sb a5,17(sp) + +0000000000005106 <.L48>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:275 + nsh_output(vtbl, " %s", details); + 5106: 781c ld a5,48(s0) + 5108: 0030 addi a2,sp,8 + 510a: 00000597 auipc a1,0x0 510a: R_RISCV_PCREL_HI20 .LC6 + 510a: R_RISCV_RELAX *ABS* + 510e: 00058593 mv a1,a1 510e: R_RISCV_PCREL_LO12_I .L0 + 510e: R_RISCV_RELAX *ABS* + 5112: 8522 mv a0,s0 + 5114: 9782 jalr a5 + +0000000000005116 <.L30>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:286 + if ((lsflags & LSFLAGS_SIZE) != 0) + 5116: 001a7793 andi a5,s4,1 + 511a: c3b9 beqz a5,5160 <.L25> 511a: R_RISCV_RVC_BRANCH .L25 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:288 + if (lsflags & LSFLAGS_HUMANREADBLE && buf.st_size >= KB) + 511c: 010a7a13 andi s4,s4,16 + +0000000000005120 <.LVL60>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:292 + nsh_output(vtbl, "%11.1fG", (float)buf.st_size / GB); + 5120: 781c ld a5,48(s0) +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:288 + if (lsflags & LSFLAGS_HUMANREADBLE && buf.st_size >= KB) + 5122: 5652 lw a2,52(sp) + 5124: 120a0463 beqz s4,524c <.L50> 5124: R_RISCV_BRANCH .L50 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:288 (discriminator 1) + 5128: 3ff00693 li a3,1023 + 512c: 0006071b sext.w a4,a2 + 5130: 10c6fe63 bgeu a3,a2,524c <.L50> 5130: R_RISCV_BRANCH .L50 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:290 + if (buf.st_size >= GB) + 5134: 400006b7 lui a3,0x40000 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:292 + nsh_output(vtbl, "%11.1fG", (float)buf.st_size / GB); + 5138: d00677d3 fcvt.s.w fa5,a2 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:290 + if (buf.st_size >= GB) + 513c: 0cd76663 bltu a4,a3,5208 <.L51> 513c: R_RISCV_BRANCH .L51 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:292 + nsh_output(vtbl, "%11.1fG", (float)buf.st_size / GB); + 5140: 00000717 auipc a4,0x0 5140: R_RISCV_PCREL_HI20 .LC7 + 5140: R_RISCV_RELAX *ABS* + 5144: 00072707 flw fa4,0(a4) # 5140 <.LVL60+0x20> 5144: R_RISCV_PCREL_LO12_I .L0 + 5144: R_RISCV_RELAX *ABS* + 5148: 10e7f7d3 fmul.s fa5,fa5,fa4 + 514c: 00000597 auipc a1,0x0 514c: R_RISCV_PCREL_HI20 .LC8 + 514c: R_RISCV_RELAX *ABS* + 5150: 00058593 mv a1,a1 5150: R_RISCV_PCREL_LO12_I .L0 + 5150: R_RISCV_RELAX *ABS* + 5154: 420787d3 fcvt.d.s fa5,fa5 + 5158: e2078653 fmv.x.d a2,fa5 + +000000000000515c <.L98>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:300 + nsh_output(vtbl, "%11.1fK", (float)buf.st_size / KB); + 515c: 8522 mv a0,s0 + 515e: 9782 jalr a5 + +0000000000005160 <.L25>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:314 + nsh_output(vtbl, " %s", entryp->d_name); + 5160: 781c ld a5,48(s0) +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:312 + if (entryp != NULL) + 5162: 10048463 beqz s1,526a <.L53> 5162: R_RISCV_BRANCH .L53 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:314 + nsh_output(vtbl, " %s", entryp->d_name); + 5166: 00148993 addi s3,s1,1 + 516a: 864e mv a2,s3 + 516c: 00000597 auipc a1,0x0 516c: R_RISCV_PCREL_HI20 .LC6 + 516c: R_RISCV_RELAX *ABS* + 5170: 00058593 mv a1,a1 5170: R_RISCV_PCREL_LO12_I .L0 + 5170: R_RISCV_RELAX *ABS* + 5174: 8522 mv a0,s0 + 5176: 9782 jalr a5 + +0000000000005178 <.LVL62>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:345 + if (DIRENT_ISDIRECTORY(entryp->d_type) && + 5178: 0004c703 lbu a4,0(s1) + 517c: 4791 li a5,4 + 517e: 03043903 ld s2,48(s0) + +0000000000005182 <.LVL63>: + 5182: 0cf71c63 bne a4,a5,525a <.L54> 5182: R_RISCV_BRANCH .L54 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:346 (discriminator 1) + !ls_specialdir(entryp->d_name)) + 5186: 854e mv a0,s3 + 5188: 00000097 auipc ra,0x0 5188: R_RISCV_CALL ls_specialdir + 5188: R_RISCV_RELAX *ABS* + 518c: 000080e7 jalr ra # 5188 <.LVL63+0x6> + +0000000000005190 <.LVL64>: + 5190: 84aa mv s1,a0 + +0000000000005192 <.LVL65>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:345 (discriminator 1) + if (DIRENT_ISDIRECTORY(entryp->d_type) && + 5192: e561 bnez a0,525a <.L54> 5192: R_RISCV_RVC_BRANCH .L54 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:348 + nsh_output(vtbl, "/\n"); + 5194: 00000597 auipc a1,0x0 5194: R_RISCV_PCREL_HI20 .LC14 + 5194: R_RISCV_RELAX *ABS* + 5198: 00058593 mv a1,a1 5198: R_RISCV_PCREL_LO12_I .L0 + 5198: R_RISCV_RELAX *ABS* + 519c: 8522 mv a0,s0 + 519e: 9902 jalr s2 + +00000000000051a0 <.LVL66>: + 51a0: b561 j 5028 <.L29> 51a0: R_RISCV_RVC_JUMP .L29 + +00000000000051a2 <.L31>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:171 + else if (S_ISCHR(buf.st_mode)) + 51a2: 6689 lui a3,0x2 + 51a4: 00d71563 bne a4,a3,51ae <.L33> 51a4: R_RISCV_BRANCH .L33 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:173 + details[0] = 'c'; + 51a8: 06300713 li a4,99 + 51ac: b5e9 j 5076 <.L95> 51ac: R_RISCV_RVC_JUMP .L95 + +00000000000051ae <.L33>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:175 + else if (S_ISDIR(buf.st_mode)) + 51ae: 6691 lui a3,0x4 + 51b0: 00d71563 bne a4,a3,51ba <.L34> 51b0: R_RISCV_BRANCH .L34 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:177 + details[0] = 'd'; + 51b4: 06400713 li a4,100 + 51b8: bd7d j 5076 <.L95> 51b8: R_RISCV_RVC_JUMP .L95 + +00000000000051ba <.L34>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:192 + else if (S_ISMQ(buf.st_mode)) + 51ba: 6695 lui a3,0x5 + 51bc: 00d71563 bne a4,a3,51c6 <.L35> 51bc: R_RISCV_BRANCH .L35 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:194 + details[0] = 'm'; + 51c0: 06d00713 li a4,109 + 51c4: bd4d j 5076 <.L95> 51c4: R_RISCV_RVC_JUMP .L95 + +00000000000051c6 <.L35>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:209 + else if (!S_ISREG(buf.st_mode)) + 51c6: 66a1 lui a3,0x8 + 51c8: ead709e3 beq a4,a3,507a <.L32> 51c8: R_RISCV_BRANCH .L32 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:211 + details[0] = '?'; + 51cc: 03f00713 li a4,63 + 51d0: b55d j 5076 <.L95> 51d0: R_RISCV_RVC_JUMP .L95 + +00000000000051d2 <.L38>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:228 + else if ((buf.st_mode & S_ISUID) != 0) + 51d2: 80070713 addi a4,a4,-2048 + 51d6: 8f7d and a4,a4,a5 + 51d8: c701 beqz a4,51e0 <.L40> 51d8: R_RISCV_RVC_BRANCH .L40 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:230 + details[3] = 'S'; + 51da: 05300713 li a4,83 + 51de: b5f1 j 50aa <.L96> 51de: R_RISCV_RVC_JUMP .L96 + +00000000000051e0 <.L40>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:232 + else if ((buf.st_mode & S_IXUSR) != 0) + 51e0: 0407f713 andi a4,a5,64 + 51e4: ec0705e3 beqz a4,50ae <.L39> 51e4: R_RISCV_BRANCH .L39 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:234 + details[3] = 'x'; + 51e8: 07800713 li a4,120 + 51ec: bd7d j 50aa <.L96> 51ec: R_RISCV_RVC_JUMP .L96 + +00000000000051ee <.L43>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:251 + else if ((buf.st_mode & S_ISGID) != 0) + 51ee: 4007f713 andi a4,a5,1024 + 51f2: c701 beqz a4,51fa <.L45> 51f2: R_RISCV_RVC_BRANCH .L45 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:253 + details[6] = 'S'; + 51f4: 05300713 li a4,83 + 51f8: b5cd j 50da <.L97> 51f8: R_RISCV_RVC_JUMP .L97 + +00000000000051fa <.L45>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:255 + else if ((buf.st_mode & S_IXGRP) != 0) + 51fa: 0087f713 andi a4,a5,8 + 51fe: ee0700e3 beqz a4,50de <.L44> 51fe: R_RISCV_BRANCH .L44 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:257 + details[6] = 'x'; + 5202: 07800713 li a4,120 + 5206: bdd1 j 50da <.L97> 5206: R_RISCV_RVC_JUMP .L97 + +0000000000005208 <.L51>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:294 + else if (buf.st_size >= MB) + 5208: 001006b7 lui a3,0x100 + 520c: 02d76163 bltu a4,a3,522e <.L52> 520c: R_RISCV_BRANCH .L52 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:296 + nsh_output(vtbl, "%11.1fM", (float)buf.st_size / MB); + 5210: 00000717 auipc a4,0x0 5210: R_RISCV_PCREL_HI20 .LC9 + 5210: R_RISCV_RELAX *ABS* + 5214: 00072707 flw fa4,0(a4) # 5210 <.L51+0x8> 5214: R_RISCV_PCREL_LO12_I .L0 + 5214: R_RISCV_RELAX *ABS* + 5218: 10e7f7d3 fmul.s fa5,fa5,fa4 + 521c: 00000597 auipc a1,0x0 521c: R_RISCV_PCREL_HI20 .LC10 + 521c: R_RISCV_RELAX *ABS* + 5220: 00058593 mv a1,a1 5220: R_RISCV_PCREL_LO12_I .L0 + 5220: R_RISCV_RELAX *ABS* + 5224: 420787d3 fcvt.d.s fa5,fa5 + 5228: e2078653 fmv.x.d a2,fa5 + 522c: bf05 j 515c <.L98> 522c: R_RISCV_RVC_JUMP .L98 + +000000000000522e <.L52>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:300 + nsh_output(vtbl, "%11.1fK", (float)buf.st_size / KB); + 522e: 00000717 auipc a4,0x0 522e: R_RISCV_PCREL_HI20 .LC11 + 522e: R_RISCV_RELAX *ABS* + 5232: 00072707 flw fa4,0(a4) # 522e <.L52> 5232: R_RISCV_PCREL_LO12_I .L0 + 5232: R_RISCV_RELAX *ABS* + 5236: 10e7f7d3 fmul.s fa5,fa5,fa4 + 523a: 00000597 auipc a1,0x0 523a: R_RISCV_PCREL_HI20 .LC12 + 523a: R_RISCV_RELAX *ABS* + 523e: 00058593 mv a1,a1 523e: R_RISCV_PCREL_LO12_I .L0 + 523e: R_RISCV_RELAX *ABS* + 5242: 420787d3 fcvt.d.s fa5,fa5 + 5246: e2078653 fmv.x.d a2,fa5 + 524a: bf09 j 515c <.L98> 524a: R_RISCV_RVC_JUMP .L98 + +000000000000524c <.L50>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:305 + nsh_output(vtbl, "%12" PRIdOFF, buf.st_size); + 524c: 00000597 auipc a1,0x0 524c: R_RISCV_PCREL_HI20 .LC13 + 524c: R_RISCV_RELAX *ABS* + 5250: 00058593 mv a1,a1 5250: R_RISCV_PCREL_LO12_I .L0 + 5250: R_RISCV_RELAX *ABS* + 5254: 8522 mv a0,s0 + 5256: 9782 jalr a5 + +0000000000005258 <.LVL69>: + 5258: b721 j 5160 <.L25> 5258: R_RISCV_RVC_JUMP .L25 + +000000000000525a <.L54>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:352 + nsh_output(vtbl, "\n"); + 525a: 00000597 auipc a1,0x0 525a: R_RISCV_PCREL_HI20 .LC15 + 525a: R_RISCV_RELAX *ABS* + 525e: 00058593 mv a1,a1 525e: R_RISCV_PCREL_LO12_I .L0 + 525e: R_RISCV_RELAX *ABS* + 5262: 8522 mv a0,s0 + 5264: 9902 jalr s2 + +0000000000005266 <.L99>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:362 + return OK; + 5266: 4481 li s1,0 + 5268: b3c1 j 5028 <.L29> 5268: R_RISCV_RVC_JUMP .L29 + +000000000000526a <.L53>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:359 + nsh_output(vtbl, " %s\n", dirpath); + 526a: 864a mv a2,s2 + 526c: 00000597 auipc a1,0x0 526c: R_RISCV_PCREL_HI20 .LC16 + 526c: R_RISCV_RELAX *ABS* + 5270: 00058593 mv a1,a1 5270: R_RISCV_PCREL_LO12_I .L0 + 5270: R_RISCV_RELAX *ABS* + 5274: 8522 mv a0,s0 + 5276: 9782 jalr a5 + +0000000000005278 <.LVL73>: + 5278: b7fd j 5266 <.L99> 5278: R_RISCV_RVC_JUMP .L99 + +000000000000527a : +ls_recursive(): +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:373 +{ + 527a: 7139 addi sp,sp,-64 + 527c: f822 sd s0,48(sp) + 527e: fc06 sd ra,56(sp) + 5280: f426 sd s1,40(sp) + 5282: f04a sd s2,32(sp) + 5284: ec4e sd s3,24(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:378 + if (DIRENT_ISDIRECTORY(entryp->d_type) && !ls_specialdir(entryp->d_name)) + 5286: 00064703 lbu a4,0(a2) # 5012 <.LVL51+0xa> + 528a: 4791 li a5,4 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:374 + int ret = OK; + 528c: 4401 li s0,0 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:378 + if (DIRENT_ISDIRECTORY(entryp->d_type) && !ls_specialdir(entryp->d_name)) + 528e: 08f71463 bne a4,a5,5316 <.L101> 528e: R_RISCV_BRANCH .L101 + +0000000000005292 <.LBB16>: + 5292: 0605 addi a2,a2,1 + +0000000000005294 <.LVL75>: + 5294: 84aa mv s1,a0 + 5296: 8532 mv a0,a2 + +0000000000005298 <.LVL76>: + 5298: e42e sd a1,8(sp) + +000000000000529a <.LVL77>: + 529a: e032 sd a2,0(sp) + 529c: 89b6 mv s3,a3 + +000000000000529e <.LVL78>: + 529e: 00000097 auipc ra,0x0 529e: R_RISCV_CALL ls_specialdir + 529e: R_RISCV_RELAX *ABS* + 52a2: 000080e7 jalr ra # 529e <.LVL78> + +00000000000052a6 <.LVL79>: + 52a6: 6602 ld a2,0(sp) + 52a8: 65a2 ld a1,8(sp) + +00000000000052aa <.LBE16>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:374 + int ret = OK; + 52aa: 4401 li s0,0 + +00000000000052ac <.LBB20>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:378 + if (DIRENT_ISDIRECTORY(entryp->d_type) && !ls_specialdir(entryp->d_name)) + 52ac: e52d bnez a0,5316 <.L101> 52ac: R_RISCV_RVC_BRANCH .L101 + +00000000000052ae <.LBB18>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:383 + newpath = nsh_getdirpath(vtbl, dirpath, entryp->d_name); + 52ae: 8526 mv a0,s1 + 52b0: 00000097 auipc ra,0x0 52b0: R_RISCV_CALL nsh_getdirpath + 52b0: R_RISCV_RELAX *ABS* + 52b4: 000080e7 jalr ra # 52b0 <.LBB18+0x2> + +00000000000052b8 <.LVL80>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:387 + nsh_output(vtbl, "%s:\n", newpath); + 52b8: 789c ld a5,48(s1) + 52ba: 862a mv a2,a0 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:383 + newpath = nsh_getdirpath(vtbl, dirpath, entryp->d_name); + 52bc: 892a mv s2,a0 + +00000000000052be <.LVL81>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:387 + nsh_output(vtbl, "%s:\n", newpath); + 52be: 00000597 auipc a1,0x0 52be: R_RISCV_PCREL_HI20 .LC17 + 52be: R_RISCV_RELAX *ABS* + 52c2: 00058593 mv a1,a1 52c2: R_RISCV_PCREL_LO12_I .L0 + 52c2: R_RISCV_RELAX *ABS* + 52c6: 8526 mv a0,s1 + +00000000000052c8 <.LVL82>: + 52c8: 9782 jalr a5 + +00000000000052ca <.LVL83>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:391 + ret = nsh_foreach_direntry(vtbl, "ls", newpath, ls_handler, pvarg); + 52ca: 874e mv a4,s3 + 52cc: 00000697 auipc a3,0x0 52cc: R_RISCV_PCREL_HI20 ls_handler + 52cc: R_RISCV_RELAX *ABS* + 52d0: 00068693 mv a3,a3 52d0: R_RISCV_PCREL_LO12_I .L0 + 52d0: R_RISCV_RELAX *ABS* + 52d4: 864a mv a2,s2 + 52d6: 00000597 auipc a1,0x0 52d6: R_RISCV_PCREL_HI20 .LC4 + 52d6: R_RISCV_RELAX *ABS* + 52da: 00058593 mv a1,a1 52da: R_RISCV_PCREL_LO12_I .L0 + 52da: R_RISCV_RELAX *ABS* + 52de: 8526 mv a0,s1 + 52e0: 00000097 auipc ra,0x0 52e0: R_RISCV_CALL nsh_foreach_direntry + 52e0: R_RISCV_RELAX *ABS* + 52e4: 000080e7 jalr ra # 52e0 <.LVL83+0x16> + +00000000000052e8 <.LVL84>: + 52e8: 842a mv s0,a0 + +00000000000052ea <.LVL85>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:392 + if (ret == 0) + 52ea: e10d bnez a0,530c <.L102> 52ea: R_RISCV_RVC_BRANCH .L102 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:396 + ret = nsh_foreach_direntry(vtbl, "ls", newpath, ls_recursive, + 52ec: 874e mv a4,s3 + 52ee: 00000697 auipc a3,0x0 52ee: R_RISCV_PCREL_HI20 ls_recursive + 52ee: R_RISCV_RELAX *ABS* + 52f2: 00068693 mv a3,a3 52f2: R_RISCV_PCREL_LO12_I .L0 + 52f2: R_RISCV_RELAX *ABS* + 52f6: 864a mv a2,s2 + 52f8: 00000597 auipc a1,0x0 52f8: R_RISCV_PCREL_HI20 .LC4 + 52f8: R_RISCV_RELAX *ABS* + 52fc: 00058593 mv a1,a1 52fc: R_RISCV_PCREL_LO12_I .L0 + 52fc: R_RISCV_RELAX *ABS* + 5300: 8526 mv a0,s1 + +0000000000005302 <.LVL86>: + 5302: 00000097 auipc ra,0x0 5302: R_RISCV_CALL nsh_foreach_direntry + 5302: R_RISCV_RELAX *ABS* + 5306: 000080e7 jalr ra # 5302 <.LVL86> + +000000000000530a <.LVL87>: + 530a: 842a mv s0,a0 + +000000000000530c <.L102>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:400 + free(newpath); + 530c: 854a mv a0,s2 + 530e: 00000097 auipc ra,0x0 530e: R_RISCV_CALL free + 530e: R_RISCV_RELAX *ABS* + 5312: 000080e7 jalr ra # 530e <.L102+0x2> + +0000000000005316 <.L101>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:404 +} + 5316: 70e2 ld ra,56(sp) + 5318: 8522 mv a0,s0 + 531a: 7442 ld s0,48(sp) + +000000000000531c <.LVL90>: + 531c: 74a2 ld s1,40(sp) + 531e: 7902 ld s2,32(sp) + 5320: 69e2 ld s3,24(sp) + 5322: 6121 addi sp,sp,64 + 5324: 8082 ret + +0000000000005326 : +fdinfo_callback(): +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:416 +{ + 5326: 7179 addi sp,sp,-48 + 5328: f406 sd ra,40(sp) + 532a: f022 sd s0,32(sp) + 532c: ec26 sd s1,24(sp) + 532e: e84a sd s2,16(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:423 + if (!DIRENT_ISDIRECTORY(entryp->d_type)) + 5330: 00064703 lbu a4,0(a2) + 5334: 4791 li a5,4 + 5336: 0cf71763 bne a4,a5,5404 <.L113> 5336: R_RISCV_BRANCH .L113 + 533a: 00160793 addi a5,a2,1 + 533e: 842a mv s0,a0 + 5340: 84be mv s1,a5 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:434 + if (!isdigit(entryp->d_name[i])) + 5342: 46a5 li a3,9 + +0000000000005344 <.L108>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:432 (discriminator 1) + for (i = 0; entryp->d_name[i] != '\0'; i++) + 5344: 0007c703 lbu a4,0(a5) # ffffffffffff8000 <.Ldebug_info0+0xfffffffffffc1f3b> + 5348: eb4d bnez a4,53fa <.L109> 5348: R_RISCV_RVC_BRANCH .L109 + +000000000000534a <.LBB23>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:444 + ret = asprintf(&filepath, "%s/%s/group/fd", dirpath, entryp->d_name); + 534a: 862e mv a2,a1 + +000000000000534c <.LVL94>: + 534c: 86a6 mv a3,s1 + 534e: 00000597 auipc a1,0x0 534e: R_RISCV_PCREL_HI20 .LC18 + 534e: R_RISCV_RELAX *ABS* + 5352: 00058593 mv a1,a1 5352: R_RISCV_PCREL_LO12_I .L0 + 5352: R_RISCV_RELAX *ABS* + +0000000000005356 <.LVL95>: + 5356: 0028 addi a0,sp,8 + +0000000000005358 <.LVL96>: + 5358: 00000097 auipc ra,0x0 5358: R_RISCV_CALL asprintf + 5358: R_RISCV_RELAX *ABS* + 535c: 000080e7 jalr ra # 5358 <.LVL96> + +0000000000005360 <.LVL97>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:445 + if (ret < 0) + 5360: 02055763 bgez a0,538e <.L110> 5360: R_RISCV_BRANCH .L110 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:447 + nsh_error(vtbl, g_fmtcmdfailed, "fdinfo", "asprintf", NSH_ERRNO); + 5364: 02843903 ld s2,40(s0) + 5368: 00000097 auipc ra,0x0 5368: R_RISCV_CALL __errno + 5368: R_RISCV_RELAX *ABS* + 536c: 000080e7 jalr ra # 5368 <.LVL97+0x8> + +0000000000005370 <.LVL98>: + 5370: 4118 lw a4,0(a0) + 5372: 00000697 auipc a3,0x0 5372: R_RISCV_PCREL_HI20 .LC19 + 5372: R_RISCV_RELAX *ABS* + 5376: 00068693 mv a3,a3 5376: R_RISCV_PCREL_LO12_I .L0 + 5376: R_RISCV_RELAX *ABS* + 537a: 00000617 auipc a2,0x0 537a: R_RISCV_PCREL_HI20 .LC20 + 537a: R_RISCV_RELAX *ABS* + 537e: 00060613 mv a2,a2 537e: R_RISCV_PCREL_LO12_I .L0 + 537e: R_RISCV_RELAX *ABS* + 5382: 00000597 auipc a1,0x0 5382: R_RISCV_PCREL_HI20 g_fmtcmdfailed + 5382: R_RISCV_RELAX *ABS* + 5386: 00058593 mv a1,a1 5386: R_RISCV_PCREL_LO12_I .L0 + 5386: R_RISCV_RELAX *ABS* + 538a: 8522 mv a0,s0 + 538c: 9902 jalr s2 + +000000000000538e <.L110>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:450 + nsh_output(vtbl, "\npid:%s", entryp->d_name); + 538e: 781c ld a5,48(s0) + 5390: 8626 mv a2,s1 + 5392: 00000597 auipc a1,0x0 5392: R_RISCV_PCREL_HI20 .LC21 + 5392: R_RISCV_RELAX *ABS* + 5396: 00058593 mv a1,a1 5396: R_RISCV_PCREL_LO12_I .L0 + 5396: R_RISCV_RELAX *ABS* + 539a: 8522 mv a0,s0 + 539c: 9782 jalr a5 + +000000000000539e <.LVL100>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:451 + ret = nsh_catfile(vtbl, "fdinfo", filepath); + 539e: 6622 ld a2,8(sp) + 53a0: 00000597 auipc a1,0x0 53a0: R_RISCV_PCREL_HI20 .LC20 + 53a0: R_RISCV_RELAX *ABS* + 53a4: 00058593 mv a1,a1 53a4: R_RISCV_PCREL_LO12_I .L0 + 53a4: R_RISCV_RELAX *ABS* + 53a8: 8522 mv a0,s0 + 53aa: 00000097 auipc ra,0x0 53aa: R_RISCV_CALL nsh_catfile + 53aa: R_RISCV_RELAX *ABS* + 53ae: 000080e7 jalr ra # 53aa <.LVL100+0xc> + +00000000000053b2 <.LVL101>: + 53b2: 84aa mv s1,a0 + +00000000000053b4 <.LVL102>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:452 + if (ret < 0) + 53b4: 02055763 bgez a0,53e2 <.L111> 53b4: R_RISCV_BRANCH .L111 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:454 + nsh_error(vtbl, g_fmtcmdfailed, "fdinfo", "nsh_catfaile", NSH_ERRNO); + 53b8: 02843903 ld s2,40(s0) + 53bc: 00000097 auipc ra,0x0 53bc: R_RISCV_CALL __errno + 53bc: R_RISCV_RELAX *ABS* + 53c0: 000080e7 jalr ra # 53bc <.LVL102+0x8> + +00000000000053c4 <.LVL103>: + 53c4: 4118 lw a4,0(a0) + 53c6: 00000697 auipc a3,0x0 53c6: R_RISCV_PCREL_HI20 .LC22 + 53c6: R_RISCV_RELAX *ABS* + 53ca: 00068693 mv a3,a3 53ca: R_RISCV_PCREL_LO12_I .L0 + 53ca: R_RISCV_RELAX *ABS* + 53ce: 00000617 auipc a2,0x0 53ce: R_RISCV_PCREL_HI20 .LC20 + 53ce: R_RISCV_RELAX *ABS* + 53d2: 00060613 mv a2,a2 53d2: R_RISCV_PCREL_LO12_I .L0 + 53d2: R_RISCV_RELAX *ABS* + 53d6: 00000597 auipc a1,0x0 53d6: R_RISCV_PCREL_HI20 g_fmtcmdfailed + 53d6: R_RISCV_RELAX *ABS* + 53da: 00058593 mv a1,a1 53da: R_RISCV_PCREL_LO12_I .L0 + 53da: R_RISCV_RELAX *ABS* + 53de: 8522 mv a0,s0 + 53e0: 9902 jalr s2 + +00000000000053e2 <.L111>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:457 + free(filepath); + 53e2: 6522 ld a0,8(sp) + 53e4: 00000097 auipc ra,0x0 53e4: R_RISCV_CALL free + 53e4: R_RISCV_RELAX *ABS* + 53e8: 000080e7 jalr ra # 53e4 <.L111+0x2> + +00000000000053ec <.L107>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:459 +} + 53ec: 70a2 ld ra,40(sp) + 53ee: 7402 ld s0,32(sp) + 53f0: 6942 ld s2,16(sp) + 53f2: 8526 mv a0,s1 + 53f4: 64e2 ld s1,24(sp) + 53f6: 6145 addi sp,sp,48 + 53f8: 8082 ret + +00000000000053fa <.L109>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:434 + if (!isdigit(entryp->d_name[i])) + 53fa: fd07071b addiw a4,a4,-48 + 53fe: 0785 addi a5,a5,1 + +0000000000005400 <.LVL107>: + 5400: f4e6f2e3 bgeu a3,a4,5344 <.L108> 5400: R_RISCV_BRANCH .L108 + +0000000000005404 <.L113>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:427 + return OK; + 5404: 4481 li s1,0 + 5406: b7dd j 53ec <.L107> 5406: R_RISCV_RVC_JUMP .L107 + +0000000000005408 : +cmd_basename(): +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:472 +{ + 5408: 7179 addi sp,sp,-48 + 540a: f022 sd s0,32(sp) + 540c: ec26 sd s1,24(sp) + 540e: e84a sd s2,16(sp) + 5410: e44e sd s3,8(sp) + 5412: f406 sd ra,40(sp) + 5414: 84aa mv s1,a0 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:480 + filename = basename(argv[1]); + 5416: 6608 ld a0,8(a2) + +0000000000005418 <.LVL110>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:472 +{ + 5418: 89ae mv s3,a1 + 541a: 8432 mv s0,a2 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:480 + filename = basename(argv[1]); + 541c: 00000097 auipc ra,0x0 541c: R_RISCV_CALL basename + 541c: R_RISCV_RELAX *ABS* + 5420: 000080e7 jalr ra # 541c <.LVL110+0x4> + +0000000000005424 <.LVL111>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:481 + if (argc > 2) + 5424: 4789 li a5,2 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:480 + filename = basename(argv[1]); + 5426: 892a mv s2,a0 + +0000000000005428 <.LVL112>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:481 + if (argc > 2) + 5428: 0337dc63 bge a5,s3,5460 <.L116> 5428: R_RISCV_BRANCH .L116 + +000000000000542c <.LBB25>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:483 + FAR char *suffix = argv[2]; + 542c: 01043983 ld s3,16(s0) + +0000000000005430 <.LVL113>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:489 + nndx = strlen(filename); + 5430: 00000097 auipc ra,0x0 5430: R_RISCV_CALL strlen + 5430: R_RISCV_RELAX *ABS* + 5434: 000080e7 jalr ra # 5430 <.LVL113> + +0000000000005438 <.LVL114>: + 5438: 0005041b sext.w s0,a0 + +000000000000543c <.LVL115>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:490 + sndx = strlen(suffix); + 543c: 854e mv a0,s3 + 543e: 00000097 auipc ra,0x0 543e: R_RISCV_CALL strlen + 543e: R_RISCV_RELAX *ABS* + 5442: 000080e7 jalr ra # 543e <.LVL115+0x2> + +0000000000005446 <.LVL116>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:491 + nndx -= sndx; + 5446: 9c09 subw s0,s0,a0 + +0000000000005448 <.LVL117>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:493 + if (nndx > 0 && strcmp(&filename[nndx], suffix) == 0) + 5448: 00805c63 blez s0,5460 <.L116> 5448: R_RISCV_BRANCH .L116 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:493 (discriminator 1) + 544c: 944a add s0,s0,s2 + 544e: 85ce mv a1,s3 + 5450: 8522 mv a0,s0 + +0000000000005452 <.LVL118>: + 5452: 00000097 auipc ra,0x0 5452: R_RISCV_CALL strcmp + 5452: R_RISCV_RELAX *ABS* + 5456: 000080e7 jalr ra # 5452 <.LVL118> + +000000000000545a <.LVL119>: + 545a: e119 bnez a0,5460 <.L116> 545a: R_RISCV_RVC_BRANCH .L116 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:495 + filename[nndx] = '\0'; + 545c: 00040023 sb zero,0(s0) + +0000000000005460 <.L116>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:501 + nsh_output(vtbl, "%s\n", filename); + 5460: 789c ld a5,48(s1) + 5462: 864a mv a2,s2 + 5464: 8526 mv a0,s1 + 5466: 00000597 auipc a1,0x0 5466: R_RISCV_PCREL_HI20 .LC23 + 5466: R_RISCV_RELAX *ABS* + 546a: 00058593 mv a1,a1 546a: R_RISCV_PCREL_LO12_I .L0 + 546a: R_RISCV_RELAX *ABS* + 546e: 9782 jalr a5 + +0000000000005470 <.LVL121>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:503 +} + 5470: 70a2 ld ra,40(sp) + 5472: 7402 ld s0,32(sp) + 5474: 64e2 ld s1,24(sp) + +0000000000005476 <.LVL122>: + 5476: 6942 ld s2,16(sp) + +0000000000005478 <.LVL123>: + 5478: 69a2 ld s3,8(sp) + 547a: 4501 li a0,0 + 547c: 6145 addi sp,sp,48 + 547e: 8082 ret + +0000000000005480 : +cmd_dirname(): +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:512 +{ + 5480: 1141 addi sp,sp,-16 + 5482: e406 sd ra,8(sp) + 5484: e022 sd s0,0(sp) + 5486: 842a mv s0,a0 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:522 + filename = dirname(argv[1]); + 5488: 6608 ld a0,8(a2) + +000000000000548a <.LVL125>: + 548a: 00000097 auipc ra,0x0 548a: R_RISCV_CALL dirname + 548a: R_RISCV_RELAX *ABS* + 548e: 000080e7 jalr ra # 548a <.LVL125> + +0000000000005492 <.LVL126>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:523 + nsh_output(vtbl, "%s\n", filename); + 5492: 781c ld a5,48(s0) +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:522 + filename = dirname(argv[1]); + 5494: 862a mv a2,a0 + +0000000000005496 <.LVL127>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:523 + nsh_output(vtbl, "%s\n", filename); + 5496: 00000597 auipc a1,0x0 5496: R_RISCV_PCREL_HI20 .LC23 + 5496: R_RISCV_RELAX *ABS* + 549a: 00058593 mv a1,a1 549a: R_RISCV_PCREL_LO12_I .L0 + 549a: R_RISCV_RELAX *ABS* + 549e: 8522 mv a0,s0 + +00000000000054a0 <.LVL128>: + 54a0: 9782 jalr a5 + +00000000000054a2 <.LVL129>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:525 +} + 54a2: 60a2 ld ra,8(sp) + 54a4: 6402 ld s0,0(sp) + +00000000000054a6 <.LVL130>: + 54a6: 4501 li a0,0 + 54a8: 0141 addi sp,sp,16 + 54aa: 8082 ret + +00000000000054ac : +cmd_cat(): +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:534 +{ + 54ac: 7139 addi sp,sp,-64 + 54ae: f822 sd s0,48(sp) + 54b0: f426 sd s1,40(sp) + 54b2: ec4e sd s3,24(sp) + 54b4: e852 sd s4,16(sp) + 54b6: e456 sd s5,8(sp) + 54b8: e05a sd s6,0(sp) + 54ba: fc06 sd ra,56(sp) + 54bc: f04a sd s2,32(sp) + 54be: 84aa mv s1,a0 + 54c0: 8aae mv s5,a1 + 54c2: 8a32 mv s4,a2 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:541 + for (i = 1; i < argc && ret == OK; i++) + 54c4: 4985 li s3,1 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:537 + int ret = OK; + 54c6: 4401 li s0,0 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:548 + nsh_error(vtbl, g_fmtcmdoutofmemory, argv[0]); + 54c8: 00000b17 auipc s6,0x0 54c8: R_RISCV_PCREL_HI20 g_fmtcmdoutofmemory + 54c8: R_RISCV_RELAX *ABS* + 54cc: 000b0b13 mv s6,s6 54cc: R_RISCV_PCREL_LO12_I .L0 + 54cc: R_RISCV_RELAX *ABS* + +00000000000054d0 <.L121>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:541 (discriminator 1) + for (i = 1; i < argc && ret == OK; i++) + 54d0: 0009879b sext.w a5,s3 + 54d4: 0157d363 bge a5,s5,54da <.L127> 54d4: R_RISCV_BRANCH .L127 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:541 (discriminator 3) + 54d8: cc01 beqz s0,54f0 <.L125> 54d8: R_RISCV_RVC_BRANCH .L125 + +00000000000054da <.L127>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:564 +} + 54da: 70e2 ld ra,56(sp) + 54dc: 8522 mv a0,s0 + 54de: 7442 ld s0,48(sp) + +00000000000054e0 <.LVL133>: + 54e0: 74a2 ld s1,40(sp) + +00000000000054e2 <.LVL134>: + 54e2: 7902 ld s2,32(sp) + 54e4: 69e2 ld s3,24(sp) + +00000000000054e6 <.LVL135>: + 54e6: 6a42 ld s4,16(sp) + +00000000000054e8 <.LVL136>: + 54e8: 6aa2 ld s5,8(sp) + 54ea: 6b02 ld s6,0(sp) + 54ec: 6121 addi sp,sp,64 + 54ee: 8082 ret + +00000000000054f0 <.L125>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:545 + fullpath = nsh_getfullpath(vtbl, argv[i]); + 54f0: 00399793 slli a5,s3,0x3 + 54f4: 97d2 add a5,a5,s4 + 54f6: 638c ld a1,0(a5) + 54f8: 8526 mv a0,s1 + 54fa: 00000097 auipc ra,0x0 54fa: R_RISCV_CALL nsh_getfullpath + 54fa: R_RISCV_RELAX *ABS* + 54fe: 000080e7 jalr ra # 54fa <.L125+0xa> + +0000000000005502 <.LVL138>: + 5502: 000a3583 ld a1,0(s4) + 5506: 892a mv s2,a0 + +0000000000005508 <.LVL139>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:546 + if (fullpath == NULL) + 5508: e909 bnez a0,551a <.L122> 5508: R_RISCV_RVC_BRANCH .L122 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:548 + nsh_error(vtbl, g_fmtcmdoutofmemory, argv[0]); + 550a: 749c ld a5,40(s1) + 550c: 862e mv a2,a1 + 550e: 8526 mv a0,s1 + +0000000000005510 <.LVL140>: + 5510: 85da mv a1,s6 + 5512: 9782 jalr a5 + +0000000000005514 <.LVL141>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:549 + ret = ERROR; + 5514: 547d li s0,-1 + +0000000000005516 <.L123>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:541 (discriminator 2) + for (i = 1; i < argc && ret == OK; i++) + 5516: 0985 addi s3,s3,1 + +0000000000005518 <.LVL143>: + 5518: bf65 j 54d0 <.L121> 5518: R_RISCV_RVC_JUMP .L121 + +000000000000551a <.L122>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:555 + ret = nsh_catfile(vtbl, argv[0], fullpath); + 551a: 862a mv a2,a0 + 551c: 8526 mv a0,s1 + +000000000000551e <.LVL145>: + 551e: 00000097 auipc ra,0x0 551e: R_RISCV_CALL nsh_catfile + 551e: R_RISCV_RELAX *ABS* + 5522: 000080e7 jalr ra # 551e <.LVL145> + +0000000000005526 <.LVL146>: + 5526: 842a mv s0,a0 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:559 + nsh_freefullpath(fullpath); + 5528: 854a mv a0,s2 + 552a: 00000097 auipc ra,0x0 552a: R_RISCV_CALL nsh_freefullpath + 552a: R_RISCV_RELAX *ABS* + 552e: 000080e7 jalr ra # 552a <.LVL146+0x4> + +0000000000005532 <.LVL148>: + 5532: b7d5 j 5516 <.L123> 5532: R_RISCV_RVC_JUMP .L123 + +0000000000005534 : +cmd_dmesg(): +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:573 +{ + 5534: 7139 addi sp,sp,-64 + 5536: f822 sd s0,48(sp) + 5538: f04a sd s2,32(sp) + 553a: fc06 sd ra,56(sp) + 553c: f426 sd s1,40(sp) + 553e: ec4e sd s3,24(sp) + 5540: e852 sd s4,16(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:578 + if (argc > 1 && (option = getopt(argc, argv, "cC:")) != ERROR) + 5542: 4785 li a5,1 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:573 +{ + 5544: 842a mv s0,a0 + 5546: 8932 mv s2,a2 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:578 + if (argc > 1 && (option = getopt(argc, argv, "cC:")) != ERROR) + 5548: 0eb7d363 bge a5,a1,562e <.L130> 5548: R_RISCV_BRANCH .L130 + 554c: 852e mv a0,a1 + +000000000000554e <.LVL150>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:578 (discriminator 1) + 554e: 00000617 auipc a2,0x0 554e: R_RISCV_PCREL_HI20 .LC24 + 554e: R_RISCV_RELAX *ABS* + 5552: 00060613 mv a2,a2 5552: R_RISCV_PCREL_LO12_I .L0 + 5552: R_RISCV_RELAX *ABS* + +0000000000005556 <.LVL151>: + 5556: 85ca mv a1,s2 + +0000000000005558 <.LVL152>: + 5558: 00000097 auipc ra,0x0 5558: R_RISCV_CALL getopt + 5558: R_RISCV_RELAX *ABS* + 555c: 000080e7 jalr ra # 5558 <.LVL152> + +0000000000005560 <.LVL153>: + 5560: 57fd li a5,-1 + 5562: 0cf50663 beq a0,a5,562e <.L130> 5562: R_RISCV_BRANCH .L130 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:580 + switch (option) + 5566: 04300793 li a5,67 + 556a: 02f50263 beq a0,a5,558e <.L131> 556a: R_RISCV_BRANCH .L131 + 556e: 06300793 li a5,99 + 5572: 54fd li s1,-1 + 5574: 04f51e63 bne a0,a5,55d0 <.L132> 5574: R_RISCV_BRANCH .L132 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:583 + ret = nsh_catfile(vtbl, argv[0], CONFIG_SYSLOG_DEVPATH); + 5578: 00093583 ld a1,0(s2) + 557c: 00000617 auipc a2,0x0 557c: R_RISCV_PCREL_HI20 .LC25 + 557c: R_RISCV_RELAX *ABS* + 5580: 00060613 mv a2,a2 5580: R_RISCV_PCREL_LO12_I .L0 + 5580: R_RISCV_RELAX *ABS* + 5584: 8522 mv a0,s0 + +0000000000005586 <.LVL154>: + 5586: 00000097 auipc ra,0x0 5586: R_RISCV_CALL nsh_catfile + 5586: R_RISCV_RELAX *ABS* + 558a: 000080e7 jalr ra # 5586 <.LVL154> + +000000000000558e <.L131>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:588 + fd = open(CONFIG_SYSLOG_DEVPATH, O_RDONLY); + 558e: 4585 li a1,1 + 5590: 00000517 auipc a0,0x0 5590: R_RISCV_PCREL_HI20 .LC25 + 5590: R_RISCV_RELAX *ABS* + 5594: 00050513 mv a0,a0 5594: R_RISCV_PCREL_LO12_I .L0 + 5594: R_RISCV_RELAX *ABS* + 5598: 00000097 auipc ra,0x0 5598: R_RISCV_CALL open + 5598: R_RISCV_RELAX *ABS* + 559c: 000080e7 jalr ra # 5598 <.L131+0xa> + +00000000000055a0 <.LVL156>: + 55a0: 84aa mv s1,a0 + +00000000000055a2 <.LVL157>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:589 + if (fd < 0) + 55a2: 04055063 bgez a0,55e2 <.L133> 55a2: R_RISCV_BRANCH .L133 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:591 + nsh_error(vtbl, g_fmtcmdfailed, argv[0], "open", NSH_ERRNO); + 55a6: 00093603 ld a2,0(s2) + 55aa: 02843983 ld s3,40(s0) + 55ae: e432 sd a2,8(sp) + 55b0: 00000097 auipc ra,0x0 55b0: R_RISCV_CALL __errno + 55b0: R_RISCV_RELAX *ABS* + 55b4: 000080e7 jalr ra # 55b0 <.LVL157+0xe> + +00000000000055b8 <.LVL158>: + 55b8: 4118 lw a4,0(a0) + 55ba: 6622 ld a2,8(sp) + 55bc: 00000697 auipc a3,0x0 55bc: R_RISCV_PCREL_HI20 .LC26 + 55bc: R_RISCV_RELAX *ABS* + 55c0: 00068693 mv a3,a3 55c0: R_RISCV_PCREL_LO12_I .L0 + 55c0: R_RISCV_RELAX *ABS* + 55c4: 00000597 auipc a1,0x0 55c4: R_RISCV_PCREL_HI20 g_fmtcmdfailed + 55c4: R_RISCV_RELAX *ABS* + 55c8: 00058593 mv a1,a1 55c8: R_RISCV_PCREL_LO12_I .L0 + 55c8: R_RISCV_RELAX *ABS* + 55cc: 8522 mv a0,s0 + 55ce: 9982 jalr s3 + +00000000000055d0 <.L132>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:611 +} + 55d0: 70e2 ld ra,56(sp) + 55d2: 7442 ld s0,48(sp) + +00000000000055d4 <.LVL160>: + 55d4: 7902 ld s2,32(sp) + +00000000000055d6 <.LVL161>: + 55d6: 69e2 ld s3,24(sp) + 55d8: 6a42 ld s4,16(sp) + 55da: 8526 mv a0,s1 + 55dc: 74a2 ld s1,40(sp) + 55de: 6121 addi sp,sp,64 + 55e0: 8082 ret + +00000000000055e2 <.L133>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:595 + ret = ioctl(fd, BIOC_FLUSH, 0); + 55e2: 4601 li a2,0 + 55e4: 50d00593 li a1,1293 + 55e8: 00000097 auipc ra,0x0 55e8: R_RISCV_CALL ioctl + 55e8: R_RISCV_RELAX *ABS* + 55ec: 000080e7 jalr ra # 55e8 <.L133+0x6> + +00000000000055f0 <.LVL163>: + 55f0: 89aa mv s3,a0 + +00000000000055f2 <.LVL164>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:596 + if (ret < 0) + 55f2: 02055763 bgez a0,5620 <.L134> 55f2: R_RISCV_BRANCH .L134 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:598 + nsh_error(vtbl, g_fmtcmdfailed, argv[0], "ioctl", NSH_ERRNO); + 55f6: 00093603 ld a2,0(s2) + 55fa: 02843a03 ld s4,40(s0) + 55fe: e432 sd a2,8(sp) + 5600: 00000097 auipc ra,0x0 5600: R_RISCV_CALL __errno + 5600: R_RISCV_RELAX *ABS* + 5604: 000080e7 jalr ra # 5600 <.LVL164+0xe> + +0000000000005608 <.LVL165>: + 5608: 4118 lw a4,0(a0) + 560a: 6622 ld a2,8(sp) + 560c: 00000697 auipc a3,0x0 560c: R_RISCV_PCREL_HI20 .LC27 + 560c: R_RISCV_RELAX *ABS* + 5610: 00068693 mv a3,a3 5610: R_RISCV_PCREL_LO12_I .L0 + 5610: R_RISCV_RELAX *ABS* + 5614: 00000597 auipc a1,0x0 5614: R_RISCV_PCREL_HI20 g_fmtcmdfailed + 5614: R_RISCV_RELAX *ABS* + 5618: 00058593 mv a1,a1 5618: R_RISCV_PCREL_LO12_I .L0 + 5618: R_RISCV_RELAX *ABS* + 561c: 8522 mv a0,s0 + 561e: 9a02 jalr s4 + +0000000000005620 <.L134>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:601 + close(fd); + 5620: 8526 mv a0,s1 + 5622: 00000097 auipc ra,0x0 5622: R_RISCV_CALL close + 5622: R_RISCV_RELAX *ABS* + 5626: 000080e7 jalr ra # 5622 <.L134+0x2> + +000000000000562a <.LVL167>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:595 + ret = ioctl(fd, BIOC_FLUSH, 0); + 562a: 84ce mv s1,s3 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:602 + break; + 562c: b755 j 55d0 <.L132> 562c: R_RISCV_RVC_JUMP .L132 + +000000000000562e <.L130>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:607 + ret = nsh_catfile(vtbl, argv[0], CONFIG_SYSLOG_DEVPATH); + 562e: 8522 mv a0,s0 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:611 +} + 5630: 7442 ld s0,48(sp) + +0000000000005632 <.LVL169>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:607 + ret = nsh_catfile(vtbl, argv[0], CONFIG_SYSLOG_DEVPATH); + 5632: 00093583 ld a1,0(s2) +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:611 +} + 5636: 70e2 ld ra,56(sp) + 5638: 74a2 ld s1,40(sp) + 563a: 7902 ld s2,32(sp) + +000000000000563c <.LVL170>: + 563c: 69e2 ld s3,24(sp) + 563e: 6a42 ld s4,16(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:607 + ret = nsh_catfile(vtbl, argv[0], CONFIG_SYSLOG_DEVPATH); + 5640: 00000617 auipc a2,0x0 5640: R_RISCV_PCREL_HI20 .LC25 + 5640: R_RISCV_RELAX *ABS* + 5644: 00060613 mv a2,a2 5644: R_RISCV_PCREL_LO12_I .L0 + 5644: R_RISCV_RELAX *ABS* +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:611 +} + 5648: 6121 addi sp,sp,64 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:607 + ret = nsh_catfile(vtbl, argv[0], CONFIG_SYSLOG_DEVPATH); + 564a: 00000317 auipc t1,0x0 564a: R_RISCV_CALL nsh_catfile + 564a: R_RISCV_RELAX *ABS* + 564e: 00030067 jr t1 # 564a <.LVL170+0xe> + +0000000000005652 : +cmd_cp(): +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:620 +{ + 5652: 7155 addi sp,sp,-208 + 5654: e1a2 sd s0,192(sp) + 5656: fd26 sd s1,184(sp) + 5658: e586 sd ra,200(sp) + 565a: f94a sd s2,176(sp) + 565c: f54e sd s3,168(sp) + 565e: f152 sd s4,160(sp) + 5660: ed56 sd s5,152(sp) + 5662: e95a sd s6,144(sp) + 5664: e55e sd s7,136(sp) + 5666: e162 sd s8,128(sp) + 5668: fce6 sd s9,120(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:634 + srcpath = nsh_getfullpath(vtbl, argv[1]); + 566a: 660c ld a1,8(a2) + +000000000000566c <.LVL173>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:620 +{ + 566c: 842a mv s0,a0 + 566e: 84b2 mv s1,a2 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:634 + srcpath = nsh_getfullpath(vtbl, argv[1]); + 5670: 00000097 auipc ra,0x0 5670: R_RISCV_CALL nsh_getfullpath + 5670: R_RISCV_RELAX *ABS* + 5674: 000080e7 jalr ra # 5670 <.LVL173+0x4> + +0000000000005678 <.LVL174>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:635 + if (srcpath == NULL) + 5678: e905 bnez a0,56a8 <.L138> 5678: R_RISCV_RVC_BRANCH .L138 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:637 + nsh_error(vtbl, g_fmtcmdoutofmemory, argv[0]); + 567a: 741c ld a5,40(s0) + 567c: 6090 ld a2,0(s1) + 567e: 00000597 auipc a1,0x0 567e: R_RISCV_PCREL_HI20 g_fmtcmdoutofmemory + 567e: R_RISCV_RELAX *ABS* + 5682: 00058593 mv a1,a1 5682: R_RISCV_PCREL_LO12_I .L0 + 5682: R_RISCV_RELAX *ABS* + 5686: 8522 mv a0,s0 + +0000000000005688 <.LVL175>: + 5688: 9782 jalr a5 + +000000000000568a <.LVL176>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:630 + int ret = ERROR; + 568a: 5a7d li s4,-1 + +000000000000568c <.L165>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:808 +} + 568c: 60ae ld ra,200(sp) + 568e: 640e ld s0,192(sp) + +0000000000005690 <.LVL178>: + 5690: 74ea ld s1,184(sp) + 5692: 794a ld s2,176(sp) + 5694: 79aa ld s3,168(sp) + 5696: 6aea ld s5,152(sp) + 5698: 6b4a ld s6,144(sp) + 569a: 6baa ld s7,136(sp) + 569c: 6c0a ld s8,128(sp) + 569e: 7ce6 ld s9,120(sp) + 56a0: 8552 mv a0,s4 + 56a2: 7a0a ld s4,160(sp) + 56a4: 6169 addi sp,sp,208 + 56a6: 8082 ret + +00000000000056a8 <.L138>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:643 + rdfd = open(srcpath, O_RDONLY); + 56a8: 4585 li a1,1 + 56aa: 8b2a mv s6,a0 + 56ac: 00000097 auipc ra,0x0 56ac: R_RISCV_CALL open + 56ac: R_RISCV_RELAX *ABS* + 56b0: 000080e7 jalr ra # 56ac <.L138+0x4> + +00000000000056b4 <.LVL180>: + 56b4: 8baa mv s7,a0 + +00000000000056b6 <.LVL181>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:644 + if (rdfd < 0) + 56b6: 02055d63 bgez a0,56f0 <.L140> 56b6: R_RISCV_BRANCH .L140 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:646 + nsh_error(vtbl, g_fmtcmdfailed, argv[0], "open", NSH_ERRNO); + 56ba: 6090 ld a2,0(s1) + 56bc: 02843903 ld s2,40(s0) +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:630 + int ret = ERROR; + 56c0: 5a7d li s4,-1 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:646 + nsh_error(vtbl, g_fmtcmdfailed, argv[0], "open", NSH_ERRNO); + 56c2: e432 sd a2,8(sp) + 56c4: 00000097 auipc ra,0x0 56c4: R_RISCV_CALL __errno + 56c4: R_RISCV_RELAX *ABS* + 56c8: 000080e7 jalr ra # 56c4 <.LVL181+0xe> + +00000000000056cc <.LVL182>: + 56cc: 4118 lw a4,0(a0) + 56ce: 6622 ld a2,8(sp) + 56d0: 00000697 auipc a3,0x0 56d0: R_RISCV_PCREL_HI20 .LC26 + 56d0: R_RISCV_RELAX *ABS* + 56d4: 00068693 mv a3,a3 56d4: R_RISCV_PCREL_LO12_I .L0 + 56d4: R_RISCV_RELAX *ABS* + 56d8: 00000597 auipc a1,0x0 56d8: R_RISCV_PCREL_HI20 g_fmtcmdfailed + 56d8: R_RISCV_RELAX *ABS* + 56dc: 00058593 mv a1,a1 56dc: R_RISCV_PCREL_LO12_I .L0 + 56dc: R_RISCV_RELAX *ABS* + 56e0: 8522 mv a0,s0 + 56e2: 9902 jalr s2 + +00000000000056e4 <.L139>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:803 + nsh_freefullpath(srcpath); + 56e4: 855a mv a0,s6 + 56e6: 00000097 auipc ra,0x0 56e6: R_RISCV_CALL nsh_freefullpath + 56e6: R_RISCV_RELAX *ABS* + 56ea: 000080e7 jalr ra # 56e6 <.L139+0x2> + +00000000000056ee <.LVL184>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:807 + return ret; + 56ee: bf79 j 568c <.L165> 56ee: R_RISCV_RVC_JUMP .L165 + +00000000000056f0 <.L140>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:652 + destpath = nsh_getfullpath(vtbl, argv[2]); + 56f0: 688c ld a1,16(s1) + 56f2: 8522 mv a0,s0 + +00000000000056f4 <.LVL186>: + 56f4: 00000097 auipc ra,0x0 56f4: R_RISCV_CALL nsh_getfullpath + 56f4: R_RISCV_RELAX *ABS* + 56f8: 000080e7 jalr ra # 56f4 <.LVL186> + +00000000000056fc <.LVL187>: + 56fc: 892a mv s2,a0 + +00000000000056fe <.LVL188>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:653 + if (destpath == NULL) + 56fe: e105 bnez a0,571e <.L142> 56fe: R_RISCV_RVC_BRANCH .L142 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:655 + nsh_error(vtbl, g_fmtcmdoutofmemory, argv[0]); + 5700: 741c ld a5,40(s0) + 5702: 6090 ld a2,0(s1) + 5704: 00000597 auipc a1,0x0 5704: R_RISCV_PCREL_HI20 g_fmtcmdoutofmemory + 5704: R_RISCV_RELAX *ABS* + 5708: 00058593 mv a1,a1 5708: R_RISCV_PCREL_LO12_I .L0 + 5708: R_RISCV_RELAX *ABS* + 570c: 8522 mv a0,s0 + +000000000000570e <.LVL189>: + 570e: 9782 jalr a5 + +0000000000005710 <.LVL190>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:630 + int ret = ERROR; + 5710: 5a7d li s4,-1 + +0000000000005712 <.L143>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:798 + close(rdfd); + 5712: 855e mv a0,s7 + 5714: 00000097 auipc ra,0x0 5714: R_RISCV_CALL close + 5714: R_RISCV_RELAX *ABS* + 5718: 000080e7 jalr ra # 5714 <.L143+0x2> + +000000000000571c <.LVL192>: + 571c: b7e1 j 56e4 <.L139> 571c: R_RISCV_RVC_JUMP .L141 + +000000000000571e <.L142>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:661 + ret = stat(destpath, &buf); + 571e: 082c addi a1,sp,24 + 5720: 00000097 auipc ra,0x0 5720: R_RISCV_CALL stat + 5720: R_RISCV_RELAX *ABS* + 5724: 000080e7 jalr ra # 5720 <.L142+0x2> + +0000000000005728 <.LVL194>: + 5728: 8a2a mv s4,a0 + +000000000000572a <.LVL195>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:662 + if (ret == 0) + 572a: e959 bnez a0,57c0 <.L157> 572a: R_RISCV_RVC_BRANCH .L157 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:666 + if (S_ISDIR(buf.st_mode)) + 572c: 5782 lw a5,32(sp) + 572e: 673d lui a4,0xf + 5730: 8ff9 and a5,a5,a4 + 5732: 6711 lui a4,0x4 + 5734: 08e79263 bne a5,a4,57b8 <.L145> 5734: R_RISCV_BRANCH .L145 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:672 + nsh_trimdir(destpath); + 5738: 854a mv a0,s2 + +000000000000573a <.LVL196>: + 573a: 00000097 auipc ra,0x0 573a: R_RISCV_CALL nsh_trimdir + 573a: R_RISCV_RELAX *ABS* + 573e: 000080e7 jalr ra # 573a <.LVL196> + +0000000000005742 <.LVL197>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:676 + allocpath = nsh_getdirpath(vtbl, destpath, basename(argv[1])); + 5742: 6488 ld a0,8(s1) + 5744: 00000097 auipc ra,0x0 5744: R_RISCV_CALL basename + 5744: R_RISCV_RELAX *ABS* + 5748: 000080e7 jalr ra # 5744 <.LVL197+0x2> + +000000000000574c <.LVL198>: + 574c: 862a mv a2,a0 + 574e: 85ca mv a1,s2 + 5750: 8522 mv a0,s0 + 5752: 00000097 auipc ra,0x0 5752: R_RISCV_CALL nsh_getdirpath + 5752: R_RISCV_RELAX *ABS* + 5756: 000080e7 jalr ra # 5752 <.LVL198+0x6> + +000000000000575a <.LVL199>: + 575a: 89aa mv s3,a0 + +000000000000575c <.LVL200>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:677 + if (!allocpath) + 575c: ed19 bnez a0,577a <.L146> 575c: R_RISCV_RVC_BRANCH .L146 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:679 + nsh_error(vtbl, g_fmtcmdoutofmemory, argv[0]); + 575e: 741c ld a5,40(s0) + 5760: 6090 ld a2,0(s1) + 5762: 00000597 auipc a1,0x0 5762: R_RISCV_PCREL_HI20 g_fmtcmdoutofmemory + 5762: R_RISCV_RELAX *ABS* + 5766: 00058593 mv a1,a1 5766: R_RISCV_PCREL_LO12_I .L0 + 5766: R_RISCV_RELAX *ABS* + 576a: 8522 mv a0,s0 + +000000000000576c <.LVL201>: + 576c: 9782 jalr a5 + +000000000000576e <.L147>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:794 + nsh_freefullpath(destpath); + 576e: 854a mv a0,s2 + 5770: 00000097 auipc ra,0x0 5770: R_RISCV_CALL nsh_freefullpath + 5770: R_RISCV_RELAX *ABS* + 5774: 000080e7 jalr ra # 5770 <.L147+0x2> + +0000000000005778 <.LVL203>: + 5778: bf69 j 5712 <.L143> 5778: R_RISCV_RVC_JUMP .L143 + +000000000000577a <.L146>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:685 + nsh_freefullpath(destpath); + 577a: 854a mv a0,s2 + +000000000000577c <.LVL205>: + 577c: 00000097 auipc ra,0x0 577c: R_RISCV_CALL nsh_freefullpath + 577c: R_RISCV_RELAX *ABS* + 5780: 000080e7 jalr ra # 577c <.LVL205> + +0000000000005784 <.LVL206>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:686 + destpath = allocpath; + 5784: 894e mv s2,s3 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:627 + int oflags = O_WRONLY | O_CREAT | O_TRUNC; + 5786: 02600a93 li s5,38 + +000000000000578a <.L144>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:698 + if (strcmp(destpath, srcpath) == 0) + 578a: 85da mv a1,s6 + 578c: 854a mv a0,s2 + 578e: 00000097 auipc ra,0x0 578e: R_RISCV_CALL strcmp + 578e: R_RISCV_RELAX *ABS* + 5792: 000080e7 jalr ra # 578e <.L144+0x4> + +0000000000005796 <.LVL208>: + 5796: e90d bnez a0,57c8 <.L148> 5796: R_RISCV_RVC_BRANCH .L148 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:700 + nsh_error(vtbl, g_fmtsyntax, argv[0]); + 5798: 741c ld a5,40(s0) + 579a: 6090 ld a2,0(s1) + 579c: 00000597 auipc a1,0x0 579c: R_RISCV_PCREL_HI20 g_fmtsyntax + 579c: R_RISCV_RELAX *ABS* + 57a0: 00058593 mv a1,a1 57a0: R_RISCV_PCREL_LO12_I .L0 + 57a0: R_RISCV_RELAX *ABS* + 57a4: 8522 mv a0,s0 + 57a6: 9782 jalr a5 + +00000000000057a8 <.L149>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:786 + if (allocpath) + 57a8: fc0983e3 beqz s3,576e <.L147> 57a8: R_RISCV_BRANCH .L147 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:788 + free(allocpath); + 57ac: 854e mv a0,s3 + 57ae: 00000097 auipc ra,0x0 57ae: R_RISCV_CALL free + 57ae: R_RISCV_RELAX *ABS* + 57b2: 000080e7 jalr ra # 57ae <.L149+0x6> + +00000000000057b6 <.LVL210>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:792 + if (destpath && !allocpath) + 57b6: bfb1 j 5712 <.L143> 57b6: R_RISCV_RVC_JUMP .L143 + +00000000000057b8 <.L145>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:688 + else if (!S_ISREG(buf.st_mode)) + 57b8: 6721 lui a4,0x8 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:692 + oflags = O_WRONLY; + 57ba: 4a89 li s5,2 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:688 + else if (!S_ISREG(buf.st_mode)) + 57bc: 00e79463 bne a5,a4,57c4 <.L167> 57bc: R_RISCV_BRANCH .L167 + +00000000000057c0 <.L157>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:627 + int oflags = O_WRONLY | O_CREAT | O_TRUNC; + 57c0: 02600a93 li s5,38 + +00000000000057c4 <.L167>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:626 + FAR char *allocpath = NULL; + 57c4: 4981 li s3,0 + 57c6: b7d1 j 578a <.L144> 57c6: R_RISCV_RVC_JUMP .L144 + +00000000000057c8 <.L148>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:706 + wrfd = open(destpath, oflags, 0666); + 57c8: 1b600613 li a2,438 + 57cc: 85d6 mv a1,s5 + 57ce: 854a mv a0,s2 + 57d0: 00000097 auipc ra,0x0 57d0: R_RISCV_CALL open + 57d0: R_RISCV_RELAX *ABS* + 57d4: 000080e7 jalr ra # 57d0 <.L148+0x8> + +00000000000057d8 <.LVL213>: + 57d8: 8c2a mv s8,a0 + +00000000000057da <.LVL214>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:707 + if (wrfd < 0) + 57da: 06055863 bgez a0,584a <.L150> 57da: R_RISCV_BRANCH .L150 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:709 + nsh_error(vtbl, g_fmtcmdfailed, argv[0], "open", NSH_ERRNO); + 57de: 6090 ld a2,0(s1) + 57e0: 02843a83 ld s5,40(s0) + +00000000000057e4 <.LVL215>: + 57e4: e432 sd a2,8(sp) + 57e6: 00000097 auipc ra,0x0 57e6: R_RISCV_CALL __errno + 57e6: R_RISCV_RELAX *ABS* + 57ea: 000080e7 jalr ra # 57e6 <.LVL215+0x2> + +00000000000057ee <.LVL216>: + 57ee: 4118 lw a4,0(a0) + 57f0: 6622 ld a2,8(sp) + 57f2: 00000697 auipc a3,0x0 57f2: R_RISCV_PCREL_HI20 .LC26 + 57f2: R_RISCV_RELAX *ABS* + 57f6: 00068693 mv a3,a3 57f6: R_RISCV_PCREL_LO12_I .L0 + 57f6: R_RISCV_RELAX *ABS* + 57fa: 00000597 auipc a1,0x0 57fa: R_RISCV_PCREL_HI20 g_fmtcmdfailed + 57fa: R_RISCV_RELAX *ABS* + 57fe: 00058593 mv a1,a1 57fe: R_RISCV_PCREL_LO12_I .L0 + 57fe: R_RISCV_RELAX *ABS* + 5802: 8522 mv a0,s0 + 5804: 9a82 jalr s5 + +0000000000005806 <.LVL217>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:710 + goto errout_with_allocpath; + 5806: b74d j 57a8 <.L149> 5806: R_RISCV_RVC_JUMP .L149 + +0000000000005808 <.L153>: + 5808: e432 sd a2,8(sp) + +000000000000580a <.LBB26>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:743 + nsh_error(vtbl, g_fmtcmdfailed, argv[0], "read", + 580a: 00000097 auipc ra,0x0 580a: R_RISCV_CALL __errno + 580a: R_RISCV_RELAX *ABS* + 580e: 000080e7 jalr ra # 580a <.LBB26> + +0000000000005812 <.LVL219>: + 5812: 4118 lw a4,0(a0) + 5814: 00000697 auipc a3,0x0 5814: R_RISCV_PCREL_HI20 .LC28 + 5814: R_RISCV_RELAX *ABS* + 5818: 00068693 mv a3,a3 5818: R_RISCV_PCREL_LO12_I .L0 + 5818: R_RISCV_RELAX *ABS* + +000000000000581c <.L169>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:772 + nsh_error(vtbl, g_fmtcmdfailed, argv[0], "write", + 581c: 6622 ld a2,8(sp) + 581e: 00000597 auipc a1,0x0 581e: R_RISCV_PCREL_HI20 g_fmtcmdfailed + 581e: R_RISCV_RELAX *ABS* + 5822: 00058593 mv a1,a1 5822: R_RISCV_PCREL_LO12_I .L0 + 5822: R_RISCV_RELAX *ABS* + 5826: 8522 mv a0,s0 + 5828: 9482 jalr s1 + +000000000000582a <.LVL220>: + 582a: a085 j 588a <.L151> 582a: R_RISCV_RVC_JUMP .L151 + +000000000000582c <.L152>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:754 + nbyteswritten = write(wrfd, iobuffer, nbytesread); + 582c: 8656 mv a2,s5 + 582e: 85e6 mv a1,s9 + 5830: 8562 mv a0,s8 + 5832: 00000097 auipc ra,0x0 5832: R_RISCV_CALL write + 5832: R_RISCV_RELAX *ABS* + 5836: 000080e7 jalr ra # 5832 <.L152+0x6> + +000000000000583a <.LVL222>: + 583a: 2501 sext.w a0,a0 + +000000000000583c <.LVL223>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:755 + if (nbyteswritten >= 0) + 583c: 04054d63 bltz a0,5896 <.L154> 583c: R_RISCV_BRANCH .L154 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:757 + nbytesread -= nbyteswritten; + 5840: 40aa8abb subw s5,s5,a0 + +0000000000005844 <.LVL224>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:758 + iobuffer += nbyteswritten; + 5844: 9caa add s9,s9,a0 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:779 + while (nbytesread > 0); + 5846: ff5043e3 bgtz s5,582c <.L152> 5846: R_RISCV_BRANCH .L152 + +000000000000584a <.L150>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:719 + FAR char *iobuffer = vtbl->iobuffer; + 584a: 05840c93 addi s9,s0,88 + +000000000000584e <.LVL227>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:723 + nbytesread = read(rdfd, iobuffer, IOBUFFERSIZE); + 584e: 20000613 li a2,512 + 5852: 85e6 mv a1,s9 + 5854: 855e mv a0,s7 + 5856: 00000097 auipc ra,0x0 5856: R_RISCV_CALL read + 5856: R_RISCV_RELAX *ABS* + 585a: 000080e7 jalr ra # 5856 <.LVL227+0x8> + +000000000000585e <.LVL228>: + 585e: 00050a9b sext.w s5,a0 + +0000000000005862 <.LVL229>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:724 + if (nbytesread == 0) + 5862: 040a8f63 beqz s5,58c0 <.L158> 5862: R_RISCV_BRANCH .L158 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:731 + else if (nbytesread < 0) + 5866: fc0ad3e3 bgez s5,582c <.L152> 5866: R_RISCV_BRANCH .L152 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:735 + if (errno == EINTR) + 586a: 00000097 auipc ra,0x0 586a: R_RISCV_CALL __errno + 586a: R_RISCV_RELAX *ABS* + 586e: 000080e7 jalr ra # 586a <.LVL229+0x8> + +0000000000005872 <.LVL230>: + 5872: 4118 lw a4,0(a0) + 5874: 4791 li a5,4 + 5876: 6090 ld a2,0(s1) + 5878: 7404 ld s1,40(s0) + +000000000000587a <.LVL231>: + 587a: f8f717e3 bne a4,a5,5808 <.L153> 587a: R_RISCV_BRANCH .L153 + +000000000000587e <.L168>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:766 + nsh_error(vtbl, g_fmtsignalrecvd, argv[0]); + 587e: 00000597 auipc a1,0x0 587e: R_RISCV_PCREL_HI20 g_fmtsignalrecvd + 587e: R_RISCV_RELAX *ABS* + 5882: 00058593 mv a1,a1 5882: R_RISCV_PCREL_LO12_I .L0 + 5882: R_RISCV_RELAX *ABS* + 5886: 8522 mv a0,s0 + 5888: 9482 jalr s1 + +000000000000588a <.L151>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:783 + close(wrfd); + 588a: 8562 mv a0,s8 + 588c: 00000097 auipc ra,0x0 588c: R_RISCV_CALL close + 588c: R_RISCV_RELAX *ABS* + 5890: 000080e7 jalr ra # 588c <.L151+0x2> + +0000000000005894 <.LVL233>: + 5894: bf11 j 57a8 <.L149> 5894: R_RISCV_RVC_JUMP .L149 + +0000000000005896 <.L154>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:764 + if (errno == EINTR) + 5896: 00000097 auipc ra,0x0 5896: R_RISCV_CALL __errno + 5896: R_RISCV_RELAX *ABS* + 589a: 000080e7 jalr ra # 5896 <.L154> + +000000000000589e <.LVL235>: + 589e: 4118 lw a4,0(a0) + 58a0: 4791 li a5,4 + 58a2: 6090 ld a2,0(s1) + 58a4: 7404 ld s1,40(s0) + +00000000000058a6 <.LVL236>: + 58a6: fcf70ce3 beq a4,a5,587e <.L168> 58a6: R_RISCV_BRANCH .L168 + 58aa: e432 sd a2,8(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:772 + nsh_error(vtbl, g_fmtcmdfailed, argv[0], "write", + 58ac: 00000097 auipc ra,0x0 58ac: R_RISCV_CALL __errno + 58ac: R_RISCV_RELAX *ABS* + 58b0: 000080e7 jalr ra # 58ac <.LVL236+0x6> + +00000000000058b4 <.LVL237>: + 58b4: 4118 lw a4,0(a0) + 58b6: 00000697 auipc a3,0x0 58b6: R_RISCV_PCREL_HI20 .LC29 + 58b6: R_RISCV_RELAX *ABS* + 58ba: 00068693 mv a3,a3 58ba: R_RISCV_PCREL_LO12_I .L0 + 58ba: R_RISCV_RELAX *ABS* + 58be: bfb9 j 581c <.L169> 58be: R_RISCV_RVC_JUMP .L169 + +00000000000058c0 <.L158>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:728 + ret = OK; + 58c0: 4a01 li s4,0 + 58c2: b7e1 j 588a <.L151> 58c2: R_RISCV_RVC_JUMP .L151 + +00000000000058c4 : +cmd_ls(): +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1386 +{ + 58c4: 7115 addi sp,sp,-224 + 58c6: e5a6 sd s1,200(sp) + 58c8: e1ca sd s2,192(sp) + 58ca: fd4e sd s3,184(sp) + 58cc: f952 sd s4,176(sp) + 58ce: f556 sd s5,168(sp) + 58d0: f15a sd s6,160(sp) + 58d2: ed5e sd s7,152(sp) + 58d4: e962 sd s8,144(sp) + 58d6: e566 sd s9,136(sp) + 58d8: e16a sd s10,128(sp) + 58da: fcee sd s11,120(sp) + 58dc: ed86 sd ra,216(sp) + 58de: e9a2 sd s0,208(sp) + 58e0: 84aa mv s1,a0 + 58e2: 89ae mv s3,a1 + 58e4: 8a32 mv s4,a2 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1391 + bool badarg = false; + 58e6: 4781 li a5,0 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1389 + unsigned int lsflags = 0; + 58e8: 4901 li s2,0 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1398 + while ((option = getopt(argc, argv, "lRsh")) != ERROR) + 58ea: 00000b97 auipc s7,0x0 58ea: R_RISCV_PCREL_HI20 .LC30 + 58ea: R_RISCV_RELAX *ABS* + 58ee: 000b8b93 mv s7,s7 58ee: R_RISCV_PCREL_LO12_I .L0 + 58ee: R_RISCV_RELAX *ABS* + 58f2: 5b7d li s6,-1 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1400 + switch (option) + 58f4: 06c00a93 li s5,108 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1420 + nsh_error(vtbl, g_fmtarginvalid, argv[0]); + 58f8: 00000c17 auipc s8,0x0 58f8: R_RISCV_PCREL_HI20 g_fmtarginvalid + 58f8: R_RISCV_RELAX *ABS* + 58fc: 000c0c13 mv s8,s8 58fc: R_RISCV_PCREL_LO12_I .L0 + 58fc: R_RISCV_RELAX *ABS* +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1400 + switch (option) + 5900: 07300c93 li s9,115 + 5904: 05200d13 li s10,82 + 5908: 06800d93 li s11,104 + +000000000000590c <.L171>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1398 + while ((option = getopt(argc, argv, "lRsh")) != ERROR) + 590c: 865e mv a2,s7 + 590e: 85d2 mv a1,s4 + 5910: 854e mv a0,s3 + 5912: e43e sd a5,8(sp) + +0000000000005914 <.LVL241>: + 5914: 00000097 auipc ra,0x0 5914: R_RISCV_CALL getopt + 5914: R_RISCV_RELAX *ABS* + 5918: 000080e7 jalr ra # 5914 <.LVL241> + +000000000000591c <.LVL242>: + 591c: 67a2 ld a5,8(sp) + 591e: 842a mv s0,a0 + +0000000000005920 <.LVL243>: + 5920: 05651463 bne a0,s6,5968 <.L179> 5920: R_RISCV_BRANCH .L179 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1430 + if (badarg) + 5924: e395 bnez a5,5948 <.L180> 5924: R_RISCV_RVC_BRANCH .L180 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1437 + if (optind + 1 < argc) + 5926: 00000097 auipc ra,0x0 5926: R_RISCV_CALL getoptindp + 5926: R_RISCV_RELAX *ABS* + 592a: 000080e7 jalr ra # 5926 <.LVL243+0x6> + +000000000000592e <.LVL244>: + 592e: 411c lw a5,0(a0) + 5930: 2785 addiw a5,a5,1 + 5932: 0737d963 bge a5,s3,59a4 <.L181> 5932: R_RISCV_BRANCH .L181 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1439 + nsh_error(vtbl, g_fmttoomanyargs, argv[0]); + 5936: 749c ld a5,40(s1) + 5938: 000a3603 ld a2,0(s4) + 593c: 00000597 auipc a1,0x0 593c: R_RISCV_PCREL_HI20 g_fmttoomanyargs + 593c: R_RISCV_RELAX *ABS* + 5940: 00058593 mv a1,a1 5940: R_RISCV_PCREL_LO12_I .L0 + 5940: R_RISCV_RELAX *ABS* + +0000000000005944 <.L196>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1461 + nsh_error(vtbl, g_fmtcmdoutofmemory, argv[0]); + 5944: 8526 mv a0,s1 + 5946: 9782 jalr a5 + +0000000000005948 <.L180>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1509 +} + 5948: 60ee ld ra,216(sp) + 594a: 8522 mv a0,s0 + 594c: 644e ld s0,208(sp) + 594e: 64ae ld s1,200(sp) + +0000000000005950 <.LVL246>: + 5950: 690e ld s2,192(sp) + 5952: 79ea ld s3,184(sp) + 5954: 7a4a ld s4,176(sp) + 5956: 7aaa ld s5,168(sp) + 5958: 7b0a ld s6,160(sp) + 595a: 6bea ld s7,152(sp) + 595c: 6c4a ld s8,144(sp) + 595e: 6caa ld s9,136(sp) + 5960: 6d0a ld s10,128(sp) + 5962: 7de6 ld s11,120(sp) + 5964: 612d addi sp,sp,224 + 5966: 8082 ret + +0000000000005968 <.L179>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1400 + switch (option) + 5968: 03540563 beq s0,s5,5992 <.L172> 5968: R_RISCV_BRANCH .L172 + 596c: 008ace63 blt s5,s0,5988 <.L173> 596c: R_RISCV_BRANCH .L173 + 5970: 03a40463 beq s0,s10,5998 <.L174> 5970: R_RISCV_BRANCH .L174 + 5974: 03b40563 beq s0,s11,599e <.L175> 5974: R_RISCV_BRANCH .L175 + +0000000000005978 <.L176>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1420 + nsh_error(vtbl, g_fmtarginvalid, argv[0]); + 5978: 749c ld a5,40(s1) + 597a: 000a3603 ld a2,0(s4) + 597e: 85e2 mv a1,s8 + 5980: 8526 mv a0,s1 + +0000000000005982 <.LVL248>: + 5982: 9782 jalr a5 + +0000000000005984 <.LVL249>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1421 + badarg = true; + 5984: 4785 li a5,1 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1422 + break; + 5986: b759 j 590c <.L171> 5986: R_RISCV_RVC_JUMP .L171 + +0000000000005988 <.L173>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1400 + switch (option) + 5988: ff9418e3 bne s0,s9,5978 <.L176> 5988: R_RISCV_BRANCH .L176 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1411 + lsflags |= LSFLAGS_SIZE; + 598c: 00196913 ori s2,s2,1 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1412 + break; + 5990: bfb5 j 590c <.L171> 5990: R_RISCV_RVC_JUMP .L171 + +0000000000005992 <.L172>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1403 + lsflags |= (LSFLAGS_SIZE | LSFLAGS_LONG | LSFLAGS_UID_GID); + 5992: 00b96913 ori s2,s2,11 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1404 + break; + 5996: bf9d j 590c <.L171> 5996: R_RISCV_RVC_JUMP .L171 + +0000000000005998 <.L174>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1407 + lsflags |= LSFLAGS_RECURSIVE; + 5998: 00496913 ori s2,s2,4 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1408 + break; + 599c: bf85 j 590c <.L171> 599c: R_RISCV_RVC_JUMP .L171 + +000000000000599e <.L175>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1415 + lsflags |= LSFLAGS_HUMANREADBLE; + 599e: 01096913 ori s2,s2,16 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1416 + break; + 59a2: b7ad j 590c <.L171> 59a2: R_RISCV_RVC_JUMP .L171 + +00000000000059a4 <.L181>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1442 + else if (optind >= argc) + 59a4: 00000097 auipc ra,0x0 59a4: R_RISCV_CALL getoptindp + 59a4: R_RISCV_RELAX *ABS* + 59a8: 000080e7 jalr ra # 59a4 <.L181> + +00000000000059ac <.LVL256>: + 59ac: 411c lw a5,0(a0) + 59ae: 0337c663 blt a5,s3,59da <.L182> 59ae: R_RISCV_BRANCH .L182 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1445 + relpath = nsh_getcwd(); + 59b2: 00000097 auipc ra,0x0 59b2: R_RISCV_CALL nsh_getcwd + 59b2: R_RISCV_RELAX *ABS* + 59b6: 000080e7 jalr ra # 59b2 <.LVL256+0x6> + +00000000000059ba <.LVL257>: + 59ba: 85aa mv a1,a0 + +00000000000059bc <.L183>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1458 + fullpath = nsh_getfullpath(vtbl, relpath); + 59bc: 8526 mv a0,s1 + 59be: 00000097 auipc ra,0x0 59be: R_RISCV_CALL nsh_getfullpath + 59be: R_RISCV_RELAX *ABS* + 59c2: 000080e7 jalr ra # 59be <.L183+0x2> + +00000000000059c6 <.LVL259>: + 59c6: 89aa mv s3,a0 + +00000000000059c8 <.LVL260>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1459 + if (fullpath == NULL) + 59c8: e115 bnez a0,59ec <.L184> 59c8: R_RISCV_RVC_BRANCH .L184 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1461 + nsh_error(vtbl, g_fmtcmdoutofmemory, argv[0]); + 59ca: 749c ld a5,40(s1) + 59cc: 000a3603 ld a2,0(s4) + 59d0: 00000597 auipc a1,0x0 59d0: R_RISCV_PCREL_HI20 g_fmtcmdoutofmemory + 59d0: R_RISCV_RELAX *ABS* + 59d4: 00058593 mv a1,a1 59d4: R_RISCV_PCREL_LO12_I .L0 + 59d4: R_RISCV_RELAX *ABS* + 59d8: b7b5 j 5944 <.L196> 59d8: R_RISCV_RVC_JUMP .L196 + +00000000000059da <.L182>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1453 + relpath = argv[optind]; + 59da: 00000097 auipc ra,0x0 59da: R_RISCV_CALL getoptindp + 59da: R_RISCV_RELAX *ABS* + 59de: 000080e7 jalr ra # 59da <.L182> + +00000000000059e2 <.LVL262>: + 59e2: 411c lw a5,0(a0) + 59e4: 078e slli a5,a5,0x3 + 59e6: 97d2 add a5,a5,s4 + 59e8: 638c ld a1,0(a5) + +00000000000059ea <.LVL263>: + 59ea: bfc9 j 59bc <.L183> 59ea: R_RISCV_RVC_JUMP .L183 + +00000000000059ec <.L184>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1467 + len = strlen(fullpath) - 1; + 59ec: 00000097 auipc ra,0x0 59ec: R_RISCV_CALL strlen + 59ec: R_RISCV_RELAX *ABS* + 59f0: 000080e7 jalr ra # 59ec <.L184> + +00000000000059f4 <.LVL265>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1468 + while (len > 0 && fullpath[len] == '/') + 59f4: 357d addiw a0,a0,-1 + +00000000000059f6 <.LVL266>: + 59f6: 02f00713 li a4,47 + +00000000000059fa <.L185>: + 59fa: 0005079b sext.w a5,a0 + 59fe: 00f05863 blez a5,5a0e <.L186> 59fe: R_RISCV_BRANCH .L186 + 5a02: 00a987b3 add a5,s3,a0 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1468 (discriminator 1) + 5a06: 0007c683 lbu a3,0(a5) + 5a0a: 04e68563 beq a3,a4,5a54 <.L187> 5a0a: R_RISCV_BRANCH .L187 + +0000000000005a0e <.L186>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1476 + if (stat(fullpath, &st) < 0) + 5a0e: 082c addi a1,sp,24 + 5a10: 854e mv a0,s3 + +0000000000005a12 <.LVL268>: + 5a12: 00000097 auipc ra,0x0 5a12: R_RISCV_CALL stat + 5a12: R_RISCV_RELAX *ABS* + 5a16: 000080e7 jalr ra # 5a12 <.LVL268> + +0000000000005a1a <.LVL269>: + 5a1a: 04055163 bgez a0,5a5c <.L188> 5a1a: R_RISCV_BRANCH .L188 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1478 + nsh_error(vtbl, g_fmtcmdfailed, argv[0], "stat", NSH_ERRNO); + 5a1e: 000a3603 ld a2,0(s4) + 5a22: 0284b903 ld s2,40(s1) + +0000000000005a26 <.LVL270>: + 5a26: e432 sd a2,8(sp) + +0000000000005a28 <.LVL271>: + 5a28: 00000097 auipc ra,0x0 5a28: R_RISCV_CALL __errno + 5a28: R_RISCV_RELAX *ABS* + 5a2c: 000080e7 jalr ra # 5a28 <.LVL271> + +0000000000005a30 <.LVL272>: + 5a30: 4118 lw a4,0(a0) + 5a32: 6622 ld a2,8(sp) + 5a34: 00000697 auipc a3,0x0 5a34: R_RISCV_PCREL_HI20 .LC3 + 5a34: R_RISCV_RELAX *ABS* + 5a38: 00068693 mv a3,a3 5a38: R_RISCV_PCREL_LO12_I .L0 + 5a38: R_RISCV_RELAX *ABS* + 5a3c: 00000597 auipc a1,0x0 5a3c: R_RISCV_PCREL_HI20 g_fmtcmdfailed + 5a3c: R_RISCV_RELAX *ABS* + 5a40: 00058593 mv a1,a1 5a40: R_RISCV_PCREL_LO12_I .L0 + 5a40: R_RISCV_RELAX *ABS* + 5a44: 8526 mv a0,s1 + 5a46: 9902 jalr s2 + +0000000000005a48 <.L189>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1507 + nsh_freefullpath(fullpath); + 5a48: 854e mv a0,s3 + 5a4a: 00000097 auipc ra,0x0 5a4a: R_RISCV_CALL nsh_freefullpath + 5a4a: R_RISCV_RELAX *ABS* + 5a4e: 000080e7 jalr ra # 5a4a <.L189+0x2> + +0000000000005a52 <.LVL274>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1508 + return ret; + 5a52: bddd j 5948 <.L180> 5a52: R_RISCV_RVC_JUMP .L180 + +0000000000005a54 <.L187>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1470 + fullpath[len] = '\0'; + 5a54: 00078023 sb zero,0(a5) + +0000000000005a58 <.LVL276>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1471 + len--; + 5a58: 157d addi a0,a0,-1 + +0000000000005a5a <.LVL277>: + 5a5a: b745 j 59fa <.L185> 5a5a: R_RISCV_RVC_JUMP .L185 + +0000000000005a5c <.L188>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1481 + else if (!S_ISDIR(st.st_mode)) + 5a5c: 5782 lw a5,32(sp) + 5a5e: 673d lui a4,0xf +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1488 + (FAR void *)((uintptr_t)lsflags)); + 5a60: 02091a13 slli s4,s2,0x20 + +0000000000005a64 <.LVL278>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1481 + else if (!S_ISDIR(st.st_mode)) + 5a64: 8ff9 and a5,a5,a4 + 5a66: 6711 lui a4,0x4 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1488 + (FAR void *)((uintptr_t)lsflags)); + 5a68: 020a5a13 srli s4,s4,0x20 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1481 + else if (!S_ISDIR(st.st_mode)) + 5a6c: 00e78c63 beq a5,a4,5a84 <.L190> 5a6c: R_RISCV_BRANCH .L190 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1487 + ret = ls_handler(vtbl, fullpath, NULL, + 5a70: 86d2 mv a3,s4 + 5a72: 4601 li a2,0 + 5a74: 85ce mv a1,s3 + 5a76: 8526 mv a0,s1 + 5a78: 00000097 auipc ra,0x0 5a78: R_RISCV_CALL ls_handler + 5a78: R_RISCV_RELAX *ABS* + 5a7c: 000080e7 jalr ra # 5a78 <.LVL278+0x14> + +0000000000005a80 <.L195>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1502 + ret = nsh_foreach_direntry(vtbl, "ls", fullpath, ls_recursive, + 5a80: 842a mv s0,a0 + +0000000000005a82 <.LVL280>: + 5a82: b7d9 j 5a48 <.L189> 5a82: R_RISCV_RVC_JUMP .L189 + +0000000000005a84 <.L190>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1494 + nsh_output(vtbl, "%s:\n", fullpath); + 5a84: 789c ld a5,48(s1) + 5a86: 864e mv a2,s3 + 5a88: 00000597 auipc a1,0x0 5a88: R_RISCV_PCREL_HI20 .LC17 + 5a88: R_RISCV_RELAX *ABS* + 5a8c: 00058593 mv a1,a1 5a8c: R_RISCV_PCREL_LO12_I .L0 + 5a8c: R_RISCV_RELAX *ABS* + 5a90: 8526 mv a0,s1 + 5a92: 9782 jalr a5 + +0000000000005a94 <.LVL282>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1496 + ret = nsh_foreach_direntry(vtbl, "ls", fullpath, ls_handler, + 5a94: 8752 mv a4,s4 + 5a96: 00000697 auipc a3,0x0 5a96: R_RISCV_PCREL_HI20 ls_handler + 5a96: R_RISCV_RELAX *ABS* + 5a9a: 00068693 mv a3,a3 5a9a: R_RISCV_PCREL_LO12_I .L0 + 5a9a: R_RISCV_RELAX *ABS* + 5a9e: 864e mv a2,s3 + 5aa0: 00000597 auipc a1,0x0 5aa0: R_RISCV_PCREL_HI20 .LC4 + 5aa0: R_RISCV_RELAX *ABS* + 5aa4: 00058593 mv a1,a1 5aa4: R_RISCV_PCREL_LO12_I .L0 + 5aa4: R_RISCV_RELAX *ABS* + 5aa8: 8526 mv a0,s1 + 5aaa: 00000097 auipc ra,0x0 5aaa: R_RISCV_CALL nsh_foreach_direntry + 5aaa: R_RISCV_RELAX *ABS* + 5aae: 000080e7 jalr ra # 5aaa <.LVL282+0x16> + +0000000000005ab2 <.LVL283>: + 5ab2: 842a mv s0,a0 + +0000000000005ab4 <.LVL284>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1498 + if (ret == OK && (lsflags & LSFLAGS_RECURSIVE) != 0) + 5ab4: f951 bnez a0,5a48 <.L189> 5ab4: R_RISCV_RVC_BRANCH .L189 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1498 (discriminator 1) + 5ab6: 00497913 andi s2,s2,4 + +0000000000005aba <.LVL285>: + 5aba: f80907e3 beqz s2,5a48 <.L189> 5aba: R_RISCV_BRANCH .L189 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1502 + ret = nsh_foreach_direntry(vtbl, "ls", fullpath, ls_recursive, + 5abe: 8752 mv a4,s4 + 5ac0: 00000697 auipc a3,0x0 5ac0: R_RISCV_PCREL_HI20 ls_recursive + 5ac0: R_RISCV_RELAX *ABS* + 5ac4: 00068693 mv a3,a3 5ac4: R_RISCV_PCREL_LO12_I .L0 + 5ac4: R_RISCV_RELAX *ABS* + 5ac8: 864e mv a2,s3 + 5aca: 00000597 auipc a1,0x0 5aca: R_RISCV_PCREL_HI20 .LC4 + 5aca: R_RISCV_RELAX *ABS* + 5ace: 00058593 mv a1,a1 5ace: R_RISCV_PCREL_LO12_I .L0 + 5ace: R_RISCV_RELAX *ABS* + 5ad2: 8526 mv a0,s1 + +0000000000005ad4 <.LVL286>: + 5ad4: 00000097 auipc ra,0x0 5ad4: R_RISCV_CALL nsh_foreach_direntry + 5ad4: R_RISCV_RELAX *ABS* + 5ad8: 000080e7 jalr ra # 5ad4 <.LVL286> + +0000000000005adc <.LVL287>: + 5adc: b755 j 5a80 <.L195> 5adc: R_RISCV_RVC_JUMP .L195 + +0000000000005ade : +cmd_mkdir(): +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1519 +{ + 5ade: 715d addi sp,sp,-80 + 5ae0: e0a2 sd s0,64(sp) + 5ae2: fc26 sd s1,56(sp) + 5ae4: f44e sd s3,40(sp) + 5ae6: f052 sd s4,32(sp) + 5ae8: ec56 sd s5,24(sp) + 5aea: e85a sd s6,16(sp) + 5aec: e45e sd s7,8(sp) + 5aee: e486 sd ra,72(sp) + 5af0: f84a sd s2,48(sp) + 5af2: 89aa mv s3,a0 + 5af4: 84ae mv s1,a1 + 5af6: 8432 mv s0,a2 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1521 + bool parent = false; + 5af8: 4a01 li s4,0 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1525 + while ((option = getopt(argc, argv, "p")) != ERROR) + 5afa: 00000b17 auipc s6,0x0 5afa: R_RISCV_PCREL_HI20 .LC32 + 5afa: R_RISCV_RELAX *ABS* + 5afe: 000b0b13 mv s6,s6 5afe: R_RISCV_PCREL_LO12_I .L0 + 5afe: R_RISCV_RELAX *ABS* + 5b02: 5afd li s5,-1 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1527 + switch (option) + 5b04: 07000b93 li s7,112 + +0000000000005b08 <.L198>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1525 + while ((option = getopt(argc, argv, "p")) != ERROR) + 5b08: 865a mv a2,s6 + 5b0a: 85a2 mv a1,s0 + 5b0c: 8526 mv a0,s1 + 5b0e: 00000097 auipc ra,0x0 5b0e: R_RISCV_CALL getopt + 5b0e: R_RISCV_RELAX *ABS* + 5b12: 000080e7 jalr ra # 5b0e <.L198+0x6> + +0000000000005b16 <.LVL290>: + 5b16: 87aa mv a5,a0 + 5b18: 892a mv s2,a0 + +0000000000005b1a <.LVL291>: + 5b1a: 0b551f63 bne a0,s5,5bd8 <.L200> 5b1a: R_RISCV_BRANCH .L200 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1535 + if (optind < argc) + 5b1e: 00000097 auipc ra,0x0 5b1e: R_RISCV_CALL getoptindp + 5b1e: R_RISCV_RELAX *ABS* + 5b22: 000080e7 jalr ra # 5b1e <.LVL291+0x4> + +0000000000005b26 <.LVL292>: + 5b26: 411c lw a5,0(a0) + 5b28: 0897dc63 bge a5,s1,5bc0 <.L202> 5b28: R_RISCV_BRANCH .L202 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1537 + fullpath = nsh_getfullpath(vtbl, argv[optind]); + 5b2c: 00000097 auipc ra,0x0 5b2c: R_RISCV_CALL getoptindp + 5b2c: R_RISCV_RELAX *ABS* + 5b30: 000080e7 jalr ra # 5b2c <.LVL292+0x6> + +0000000000005b34 <.LVL293>: + 5b34: 4110 lw a2,0(a0) + 5b36: 854e mv a0,s3 + 5b38: 060e slli a2,a2,0x3 + 5b3a: 9432 add s0,s0,a2 + +0000000000005b3c <.LVL294>: + 5b3c: 600c ld a1,0(s0) + 5b3e: 00000097 auipc ra,0x0 5b3e: R_RISCV_CALL nsh_getfullpath + 5b3e: R_RISCV_RELAX *ABS* + 5b42: 000080e7 jalr ra # 5b3e <.LVL294+0x2> + +0000000000005b46 <.LVL295>: + 5b46: 842a mv s0,a0 + +0000000000005b48 <.LVL296>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1540 + if (fullpath != NULL) + 5b48: cd25 beqz a0,5bc0 <.L202> 5b48: R_RISCV_RVC_BRANCH .L202 + +0000000000005b4a <.LBB29>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1542 + FAR char *slash = parent ? fullpath : ""; + 5b4a: 000a1663 bnez s4,5b56 <.L204> 5b4a: R_RISCV_BRANCH .L204 + 5b4e: 00000517 auipc a0,0x0 5b4e: R_RISCV_PCREL_HI20 .LC31 + 5b4e: R_RISCV_RELAX *ABS* + 5b52: 00050513 mv a0,a0 5b52: R_RISCV_PCREL_LO12_I .L0 + 5b52: R_RISCV_RELAX *ABS* + +0000000000005b56 <.L204>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1554 + if (ret < 0 && (errno != EEXIST || !parent)) + 5b56: 4ac5 li s5,17 + +0000000000005b58 <.L209>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1546 + slash = strchr(slash, '/'); + 5b58: 02f00593 li a1,47 + 5b5c: 00000097 auipc ra,0x0 5b5c: R_RISCV_CALL strchr + 5b5c: R_RISCV_RELAX *ABS* + 5b60: 000080e7 jalr ra # 5b5c <.L209+0x4> + +0000000000005b64 <.LVL298>: + 5b64: 84aa mv s1,a0 + +0000000000005b66 <.LVL299>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1547 + if (slash != NULL) + 5b66: c119 beqz a0,5b6c <.L205> 5b66: R_RISCV_RVC_BRANCH .L205 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1549 + *slash = '\0'; + 5b68: 00050023 sb zero,0(a0) # 5b4e <.LBB29+0x4> + +0000000000005b6c <.L205>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1552 + ret = mkdir(fullpath, 0777); + 5b6c: 1ff00593 li a1,511 + 5b70: 8522 mv a0,s0 + 5b72: 00000097 auipc ra,0x0 5b72: R_RISCV_CALL mkdir + 5b72: R_RISCV_RELAX *ABS* + 5b76: 000080e7 jalr ra # 5b72 <.L205+0x6> + +0000000000005b7a <.LVL301>: + 5b7a: 892a mv s2,a0 + +0000000000005b7c <.LVL302>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1554 + if (ret < 0 && (errno != EEXIST || !parent)) + 5b7c: 06055263 bgez a0,5be0 <.L206> 5b7c: R_RISCV_BRANCH .L206 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1554 (discriminator 1) + 5b80: 00000097 auipc ra,0x0 5b80: R_RISCV_CALL __errno + 5b80: R_RISCV_RELAX *ABS* + 5b84: 000080e7 jalr ra # 5b80 <.LVL302+0x4> + +0000000000005b88 <.LVL303>: + 5b88: 411c lw a5,0(a0) + 5b8a: 01579463 bne a5,s5,5b92 <.L207> 5b8a: R_RISCV_BRANCH .L207 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1554 (discriminator 2) + 5b8e: 040a1963 bnez s4,5be0 <.L206> 5b8e: R_RISCV_BRANCH .L206 + +0000000000005b92 <.L207>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1556 + nsh_error(vtbl, g_fmtcmdfailed, + 5b92: 0289b483 ld s1,40(s3) + 5b96: 00000097 auipc ra,0x0 5b96: R_RISCV_CALL __errno + 5b96: R_RISCV_RELAX *ABS* + 5b9a: 000080e7 jalr ra # 5b96 <.L207+0x4> + +0000000000005b9e <.LVL304>: + 5b9e: 4118 lw a4,0(a0) + 5ba0: 00000697 auipc a3,0x0 5ba0: R_RISCV_PCREL_HI20 .LC33 + 5ba0: R_RISCV_RELAX *ABS* + 5ba4: 00068693 mv a3,a3 5ba4: R_RISCV_PCREL_LO12_I .L0 + 5ba4: R_RISCV_RELAX *ABS* + 5ba8: 8622 mv a2,s0 + 5baa: 00000597 auipc a1,0x0 5baa: R_RISCV_PCREL_HI20 g_fmtcmdfailed + 5baa: R_RISCV_RELAX *ABS* + 5bae: 00058593 mv a1,a1 5bae: R_RISCV_PCREL_LO12_I .L0 + 5bae: R_RISCV_RELAX *ABS* + 5bb2: 854e mv a0,s3 + 5bb4: 9482 jalr s1 + +0000000000005bb6 <.L208>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1571 + nsh_freefullpath(fullpath); + 5bb6: 8522 mv a0,s0 + 5bb8: 00000097 auipc ra,0x0 5bb8: R_RISCV_CALL nsh_freefullpath + 5bb8: R_RISCV_RELAX *ABS* + 5bbc: 000080e7 jalr ra # 5bb8 <.L208+0x2> + +0000000000005bc0 <.L202>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1575 +} + 5bc0: 60a6 ld ra,72(sp) + 5bc2: 6406 ld s0,64(sp) + 5bc4: 74e2 ld s1,56(sp) + 5bc6: 79a2 ld s3,40(sp) + +0000000000005bc8 <.LVL307>: + 5bc8: 7a02 ld s4,32(sp) + +0000000000005bca <.LVL308>: + 5bca: 6ae2 ld s5,24(sp) + 5bcc: 6b42 ld s6,16(sp) + 5bce: 6ba2 ld s7,8(sp) + 5bd0: 854a mv a0,s2 + 5bd2: 7942 ld s2,48(sp) + +0000000000005bd4 <.LVL309>: + 5bd4: 6161 addi sp,sp,80 + 5bd6: 8082 ret + +0000000000005bd8 <.L200>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1527 + switch (option) + 5bd8: f37798e3 bne a5,s7,5b08 <.L198> 5bd8: R_RISCV_BRANCH .L198 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1530 + parent = true; + 5bdc: 4a05 li s4,1 + +0000000000005bde <.LVL311>: + 5bde: b72d j 5b08 <.L198> 5bde: R_RISCV_RVC_JUMP .L198 + +0000000000005be0 <.L206>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1561 + if (slash != NULL) + 5be0: d8f9 beqz s1,5bb6 <.L208> 5be0: R_RISCV_RVC_BRANCH .L208 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1563 + *slash++ = '/'; + 5be2: 02f00793 li a5,47 + 5be6: 00148513 addi a0,s1,1 + +0000000000005bea <.LVL313>: + 5bea: 00f48023 sb a5,0(s1) +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1546 + slash = strchr(slash, '/'); + 5bee: b7ad j 5b58 <.L209> 5bee: R_RISCV_RVC_JUMP .L209 + +0000000000005bf0 : +cmd_mkrd(): +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1716 +{ + 5bf0: 7119 addi sp,sp,-128 + 5bf2: f8a2 sd s0,112(sp) + 5bf4: f4a6 sd s1,104(sp) + 5bf6: ecce sd s3,88(sp) + 5bf8: e8d2 sd s4,80(sp) + 5bfa: e4d6 sd s5,72(sp) + 5bfc: e0da sd s6,64(sp) + 5bfe: fc5e sd s7,56(sp) + 5c00: f862 sd s8,48(sp) + 5c02: f466 sd s9,40(sp) + 5c04: f06a sd s10,32(sp) + 5c06: ec6e sd s11,24(sp) + 5c08: fc86 sd ra,120(sp) + 5c0a: f0ca sd s2,96(sp) + 5c0c: 842a mv s0,a0 + 5c0e: 8a2e mv s4,a1 + 5c10: 84b2 mv s1,a2 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1722 + int minor = 0; + 5c12: 4981 li s3,0 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1721 + int sectsize = 512; + 5c14: 20000a93 li s5,512 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1720 + bool badarg = false; + 5c18: 4b81 li s7,0 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1730 + switch (option) + 5c1a: 06d00c13 li s8,109 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1734 + if (minor < 0 || minor > 255) + 5c1e: 0ff00c93 li s9,255 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1736 + nsh_error(vtbl, g_fmtargrange, argv[0]); + 5c22: 00000b17 auipc s6,0x0 5c22: R_RISCV_PCREL_HI20 g_fmtargrange + 5c22: R_RISCV_RELAX *ABS* + 5c26: 000b0b13 mv s6,s6 5c26: R_RISCV_PCREL_LO12_I .L0 + 5c26: R_RISCV_RELAX *ABS* +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1730 + switch (option) + 5c2a: 07300d13 li s10,115 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1743 + if (minor < 0 || minor > 16384) + 5c2e: 6d91 lui s11,0x4 + +0000000000005c30 <.L222>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1728 + while ((option = getopt(argc, argv, ":m:s:")) != ERROR) + 5c30: 00000617 auipc a2,0x0 5c30: R_RISCV_PCREL_HI20 .LC34 + 5c30: R_RISCV_RELAX *ABS* + 5c34: 00060613 mv a2,a2 5c34: R_RISCV_PCREL_LO12_I .L0 + 5c34: R_RISCV_RELAX *ABS* + 5c38: 85a6 mv a1,s1 + 5c3a: 8552 mv a0,s4 + 5c3c: 00000097 auipc ra,0x0 5c3c: R_RISCV_CALL getopt + 5c3c: R_RISCV_RELAX *ABS* + 5c40: 000080e7 jalr ra # 5c3c <.L222+0xc> + +0000000000005c44 <.LVL316>: + 5c44: 57fd li a5,-1 + 5c46: 892a mv s2,a0 + +0000000000005c48 <.LVL317>: + 5c48: 06f51c63 bne a0,a5,5cc0 <.L228> 5c48: R_RISCV_BRANCH .L228 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1767 + if (badarg) + 5c4c: 040b9a63 bnez s7,5ca0 <.L229> 5c4c: R_RISCV_BRANCH .L229 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1774 + if (optind == argc - 1) + 5c50: 00000097 auipc ra,0x0 5c50: R_RISCV_CALL getoptindp + 5c50: R_RISCV_RELAX *ABS* + 5c54: 000080e7 jalr ra # 5c50 <.LVL317+0x8> + +0000000000005c58 <.LVL318>: + 5c58: 4118 lw a4,0(a0) + 5c5a: fffa079b addiw a5,s4,-1 + 5c5e: 0cf71863 bne a4,a5,5d2e <.L230> 5c5e: R_RISCV_BRANCH .L230 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1776 + nsectors = (uint32_t)atoi(argv[optind]); + 5c62: 00000097 auipc ra,0x0 5c62: R_RISCV_CALL getoptindp + 5c62: R_RISCV_RELAX *ABS* + 5c66: 000080e7 jalr ra # 5c62 <.LVL318+0xa> + +0000000000005c6a <.LVL319>: + 5c6a: 411c lw a5,0(a0) + 5c6c: 078e slli a5,a5,0x3 + 5c6e: 97a6 add a5,a5,s1 + 5c70: 6388 ld a0,0(a5) + 5c72: 00000097 auipc ra,0x0 5c72: R_RISCV_CALL atoi + 5c72: R_RISCV_RELAX *ABS* + 5c76: 000080e7 jalr ra # 5c72 <.LVL319+0x8> + +0000000000005c7a <.LVL320>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1792 + desc.nsectors = nsectors; /* The number of sectors in the RAM disk. */ + 5c7a: c22a sw a0,4(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1796 + ret = boardctl(BOARDIOC_MKRD, (uintptr_t)&desc); + 5c7c: 6541 lui a0,0x10 + +0000000000005c7e <.LVL321>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1794 + desc.rdflags = RDFLAG_WRENABLED | RDFLAG_FUNLINK; + 5c7e: 478d li a5,3 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1796 + ret = boardctl(BOARDIOC_MKRD, (uintptr_t)&desc); + 5c80: 858a mv a1,sp + 5c82: f0750513 addi a0,a0,-249 # ff07 <.LASF72+0x5> +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1791 + desc.minor = minor; /* Minor device number of the RAM disk. */ + 5c86: 01310023 sb s3,0(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1793 + desc.sectsize = sectsize; /* The size of one sector in bytes. */ + 5c8a: 01511423 sh s5,8(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1794 + desc.rdflags = RDFLAG_WRENABLED | RDFLAG_FUNLINK; + 5c8e: 00f10523 sb a5,10(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1796 + ret = boardctl(BOARDIOC_MKRD, (uintptr_t)&desc); + 5c92: 00000097 auipc ra,0x0 5c92: R_RISCV_CALL boardctl + 5c92: R_RISCV_RELAX *ABS* + 5c96: 000080e7 jalr ra # 5c92 <.LVL321+0x14> + +0000000000005c9a <.LVL322>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1797 + if (ret < 0) + 5c9a: 0a054e63 bltz a0,5d56 <.L231> 5c9a: R_RISCV_BRANCH .L231 + 5c9e: 892a mv s2,a0 + +0000000000005ca0 <.L229>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1809 +} + 5ca0: 70e6 ld ra,120(sp) + 5ca2: 7446 ld s0,112(sp) + +0000000000005ca4 <.LVL324>: + 5ca4: 74a6 ld s1,104(sp) + +0000000000005ca6 <.LVL325>: + 5ca6: 69e6 ld s3,88(sp) + +0000000000005ca8 <.LVL326>: + 5ca8: 6a46 ld s4,80(sp) + 5caa: 6aa6 ld s5,72(sp) + +0000000000005cac <.LVL327>: + 5cac: 6b06 ld s6,64(sp) + 5cae: 7be2 ld s7,56(sp) + +0000000000005cb0 <.LVL328>: + 5cb0: 7c42 ld s8,48(sp) + 5cb2: 7ca2 ld s9,40(sp) + 5cb4: 7d02 ld s10,32(sp) + 5cb6: 6de2 ld s11,24(sp) + 5cb8: 854a mv a0,s2 + 5cba: 7906 ld s2,96(sp) + 5cbc: 6109 addi sp,sp,128 + 5cbe: 8082 ret + +0000000000005cc0 <.L228>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1730 + switch (option) + 5cc0: 03890363 beq s2,s8,5ce6 <.L223> 5cc0: R_RISCV_BRANCH .L223 + 5cc4: 05a90663 beq s2,s10,5d10 <.L224> 5cc4: R_RISCV_BRANCH .L224 + 5cc8: 03a00713 li a4,58 + 5ccc: 6090 ld a2,0(s1) + 5cce: 741c ld a5,40(s0) +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1757 + nsh_error(vtbl, g_fmtarginvalid, argv[0]); + 5cd0: 00000597 auipc a1,0x0 5cd0: R_RISCV_PCREL_HI20 g_fmtarginvalid + 5cd0: R_RISCV_RELAX *ABS* + 5cd4: 00058593 mv a1,a1 5cd4: R_RISCV_PCREL_LO12_I .L0 + 5cd4: R_RISCV_RELAX *ABS* +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1730 + switch (option) + 5cd8: 02e91863 bne s2,a4,5d08 <.L236> 5cd8: R_RISCV_BRANCH .L236 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1751 + nsh_error(vtbl, g_fmtargrequired, argv[0]); + 5cdc: 00000597 auipc a1,0x0 5cdc: R_RISCV_PCREL_HI20 g_fmtargrequired + 5cdc: R_RISCV_RELAX *ABS* + 5ce0: 00058593 mv a1,a1 5ce0: R_RISCV_PCREL_LO12_I .L0 + 5ce0: R_RISCV_RELAX *ABS* + 5ce4: a015 j 5d08 <.L236> 5ce4: R_RISCV_RVC_JUMP .L236 + +0000000000005ce6 <.L223>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1733 + minor = atoi(optarg); + 5ce6: 00000097 auipc ra,0x0 5ce6: R_RISCV_CALL getoptargp + 5ce6: R_RISCV_RELAX *ABS* + 5cea: 000080e7 jalr ra # 5ce6 <.L223> + +0000000000005cee <.LVL330>: + 5cee: 6108 ld a0,0(a0) + 5cf0: 00000097 auipc ra,0x0 5cf0: R_RISCV_CALL atoi + 5cf0: R_RISCV_RELAX *ABS* + 5cf4: 000080e7 jalr ra # 5cf0 <.LVL330+0x2> + +0000000000005cf8 <.LVL331>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1734 + if (minor < 0 || minor > 255) + 5cf8: 0005071b sext.w a4,a0 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1733 + minor = atoi(optarg); + 5cfc: 89aa mv s3,a0 + +0000000000005cfe <.LVL332>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1734 + if (minor < 0 || minor > 255) + 5cfe: f2ecf9e3 bgeu s9,a4,5c30 <.L222> 5cfe: R_RISCV_BRANCH .L222 + +0000000000005d02 <.L237>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1745 + nsh_error(vtbl, g_fmtargrange, argv[0]); + 5d02: 741c ld a5,40(s0) + 5d04: 6090 ld a2,0(s1) + 5d06: 85da mv a1,s6 + +0000000000005d08 <.L236>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1757 + nsh_error(vtbl, g_fmtarginvalid, argv[0]); + 5d08: 8522 mv a0,s0 + 5d0a: 9782 jalr a5 + +0000000000005d0c <.LVL334>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1758 + badarg = true; + 5d0c: 4b85 li s7,1 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1759 + break; + 5d0e: b70d j 5c30 <.L222> 5d0e: R_RISCV_RVC_JUMP .L222 + +0000000000005d10 <.L224>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1742 + sectsize = atoi(optarg); + 5d10: 00000097 auipc ra,0x0 5d10: R_RISCV_CALL getoptargp + 5d10: R_RISCV_RELAX *ABS* + 5d14: 000080e7 jalr ra # 5d10 <.L224> + +0000000000005d18 <.LVL336>: + 5d18: 6108 ld a0,0(a0) + 5d1a: 00000097 auipc ra,0x0 5d1a: R_RISCV_CALL atoi + 5d1a: R_RISCV_RELAX *ABS* + 5d1e: 000080e7 jalr ra # 5d1a <.LVL336+0x2> + +0000000000005d22 <.LVL337>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1743 + if (minor < 0 || minor > 16384) + 5d22: 0009871b sext.w a4,s3 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1742 + sectsize = atoi(optarg); + 5d26: 8aaa mv s5,a0 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1743 + if (minor < 0 || minor > 16384) + 5d28: f0edf4e3 bgeu s11,a4,5c30 <.L222> 5d28: R_RISCV_BRANCH .L222 + 5d2c: bfd9 j 5d02 <.L237> 5d2c: R_RISCV_RVC_JUMP .L237 + +0000000000005d2e <.L230>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1778 + else if (optind < argc) + 5d2e: 00000097 auipc ra,0x0 5d2e: R_RISCV_CALL getoptindp + 5d2e: R_RISCV_RELAX *ABS* + 5d32: 000080e7 jalr ra # 5d2e <.L230> + +0000000000005d36 <.LVL339>: + 5d36: 411c lw a5,0(a0) +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1780 + fmt = g_fmttoomanyargs; + 5d38: 00000597 auipc a1,0x0 5d38: R_RISCV_PCREL_HI20 g_fmttoomanyargs + 5d38: R_RISCV_RELAX *ABS* + 5d3c: 00058593 mv a1,a1 5d3c: R_RISCV_PCREL_LO12_I .L0 + 5d3c: R_RISCV_RELAX *ABS* +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1778 + else if (optind < argc) + 5d40: 0147c663 blt a5,s4,5d4c <.L232> 5d40: R_RISCV_BRANCH .L232 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1785 + fmt = g_fmtargrequired; + 5d44: 00000597 auipc a1,0x0 5d44: R_RISCV_PCREL_HI20 g_fmtargrequired + 5d44: R_RISCV_RELAX *ABS* + 5d48: 00058593 mv a1,a1 5d48: R_RISCV_PCREL_LO12_I .L0 + 5d48: R_RISCV_RELAX *ABS* + +0000000000005d4c <.L232>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1807 + nsh_output(vtbl, fmt, argv[0]); + 5d4c: 781c ld a5,48(s0) + 5d4e: 6090 ld a2,0(s1) + 5d50: 8522 mv a0,s0 + 5d52: 9782 jalr a5 + +0000000000005d54 <.LVL341>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1808 + return ERROR; + 5d54: b7b1 j 5ca0 <.L229> 5d54: R_RISCV_RVC_JUMP .L229 + +0000000000005d56 <.L231>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1799 + nsh_error(vtbl, g_fmtcmdfailed, argv[0], "boardctl(BOARDIOC_MKRD)", + 5d56: 741c ld a5,40(s0) + 5d58: 6090 ld a2,0(s1) + 5d5a: 40a0073b negw a4,a0 + 5d5e: 00000697 auipc a3,0x0 5d5e: R_RISCV_PCREL_HI20 .LC35 + 5d5e: R_RISCV_RELAX *ABS* + 5d62: 00068693 mv a3,a3 5d62: R_RISCV_PCREL_LO12_I .L0 + 5d62: R_RISCV_RELAX *ABS* + 5d66: 00000597 auipc a1,0x0 5d66: R_RISCV_PCREL_HI20 g_fmtcmdfailed + 5d66: R_RISCV_RELAX *ABS* + 5d6a: 00058593 mv a1,a1 5d6a: R_RISCV_PCREL_LO12_I .L0 + 5d6a: R_RISCV_RELAX *ABS* + 5d6e: 8522 mv a0,s0 + +0000000000005d70 <.LVL343>: + 5d70: 9782 jalr a5 + +0000000000005d72 <.LVL344>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1801 + return ERROR; + 5d72: b73d j 5ca0 <.L229> 5d72: R_RISCV_RVC_JUMP .L229 + +0000000000005d74 : +cmd_mv(): +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1912 +{ + 5d74: 715d addi sp,sp,-80 + 5d76: e0a2 sd s0,64(sp) + 5d78: fc26 sd s1,56(sp) + 5d7a: e486 sd ra,72(sp) + 5d7c: f84a sd s2,48(sp) + 5d7e: f44e sd s3,40(sp) + 5d80: f052 sd s4,32(sp) + 5d82: ec56 sd s5,24(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1921 + oldpath = nsh_getfullpath(vtbl, argv[1]); + 5d84: 660c ld a1,8(a2) + +0000000000005d86 <.LVL346>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1912 +{ + 5d86: 842a mv s0,a0 + 5d88: 84b2 mv s1,a2 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1921 + oldpath = nsh_getfullpath(vtbl, argv[1]); + 5d8a: 00000097 auipc ra,0x0 5d8a: R_RISCV_CALL nsh_getfullpath + 5d8a: R_RISCV_RELAX *ABS* + 5d8e: 000080e7 jalr ra # 5d8a <.LVL346+0x4> + +0000000000005d92 <.LVL347>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1922 + if (oldpath == NULL) + 5d92: e505 bnez a0,5dba <.L239> 5d92: R_RISCV_RVC_BRANCH .L239 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1924 + nsh_error(vtbl, g_fmtcmdoutofmemory, argv[0]); + 5d94: 741c ld a5,40(s0) + 5d96: 6090 ld a2,0(s1) + 5d98: 00000597 auipc a1,0x0 5d98: R_RISCV_PCREL_HI20 g_fmtcmdoutofmemory + 5d98: R_RISCV_RELAX *ABS* + 5d9c: 00058593 mv a1,a1 5d9c: R_RISCV_PCREL_LO12_I .L0 + 5d9c: R_RISCV_RELAX *ABS* + 5da0: 8522 mv a0,s0 + +0000000000005da2 <.LVL348>: + 5da2: 9782 jalr a5 + +0000000000005da4 <.LVL349>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1925 + return ERROR; + 5da4: 597d li s2,-1 + +0000000000005da6 <.L240>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1951 +} + 5da6: 60a6 ld ra,72(sp) + 5da8: 6406 ld s0,64(sp) + +0000000000005daa <.LVL350>: + 5daa: 74e2 ld s1,56(sp) + +0000000000005dac <.LVL351>: + 5dac: 79a2 ld s3,40(sp) + 5dae: 7a02 ld s4,32(sp) + 5db0: 6ae2 ld s5,24(sp) + 5db2: 854a mv a0,s2 + 5db4: 7942 ld s2,48(sp) + 5db6: 6161 addi sp,sp,80 + 5db8: 8082 ret + +0000000000005dba <.L239>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1928 + newpath = nsh_getfullpath(vtbl, argv[2]); + 5dba: 688c ld a1,16(s1) + 5dbc: 89aa mv s3,a0 + 5dbe: 8522 mv a0,s0 + +0000000000005dc0 <.LVL353>: + 5dc0: 00000097 auipc ra,0x0 5dc0: R_RISCV_CALL nsh_getfullpath + 5dc0: R_RISCV_RELAX *ABS* + 5dc4: 000080e7 jalr ra # 5dc0 <.LVL353> + +0000000000005dc8 <.LVL354>: + 5dc8: 8a2a mv s4,a0 + +0000000000005dca <.LVL355>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1929 + if (newpath == NULL) + 5dca: e105 bnez a0,5dea <.L241> 5dca: R_RISCV_RVC_BRANCH .L241 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1931 + nsh_error(vtbl, g_fmtcmdoutofmemory, argv[0]); + 5dcc: 741c ld a5,40(s0) + 5dce: 6090 ld a2,0(s1) + 5dd0: 00000597 auipc a1,0x0 5dd0: R_RISCV_PCREL_HI20 g_fmtcmdoutofmemory + 5dd0: R_RISCV_RELAX *ABS* + 5dd4: 00058593 mv a1,a1 5dd4: R_RISCV_PCREL_LO12_I .L0 + 5dd4: R_RISCV_RELAX *ABS* + 5dd8: 8522 mv a0,s0 + +0000000000005dda <.LVL356>: + 5dda: 9782 jalr a5 + +0000000000005ddc <.LVL357>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1932 + ret = ERROR; + 5ddc: 597d li s2,-1 + +0000000000005dde <.L242>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1949 + nsh_freefullpath(oldpath); + 5dde: 854e mv a0,s3 + 5de0: 00000097 auipc ra,0x0 5de0: R_RISCV_CALL nsh_freefullpath + 5de0: R_RISCV_RELAX *ABS* + 5de4: 000080e7 jalr ra # 5de0 <.L242+0x2> + +0000000000005de8 <.LVL359>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1950 + return ret; + 5de8: bf7d j 5da6 <.L240> 5de8: R_RISCV_RVC_JUMP .L240 + +0000000000005dea <.L241>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1938 + ret = rename(oldpath, newpath); + 5dea: 85aa mv a1,a0 + 5dec: 854e mv a0,s3 + +0000000000005dee <.LVL361>: + 5dee: 00000097 auipc ra,0x0 5dee: R_RISCV_CALL rename + 5dee: R_RISCV_RELAX *ABS* + 5df2: 000080e7 jalr ra # 5dee <.LVL361> + +0000000000005df6 <.LVL362>: + 5df6: 892a mv s2,a0 + +0000000000005df8 <.LVL363>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1939 + if (ret < 0) + 5df8: 02055663 bgez a0,5e24 <.L243> 5df8: R_RISCV_BRANCH .L243 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1941 + nsh_error(vtbl, g_fmtcmdfailed, argv[0], "rename", NSH_ERRNO); + 5dfc: 6090 ld a2,0(s1) + 5dfe: 02843a83 ld s5,40(s0) + 5e02: e432 sd a2,8(sp) + 5e04: 00000097 auipc ra,0x0 5e04: R_RISCV_CALL __errno + 5e04: R_RISCV_RELAX *ABS* + 5e08: 000080e7 jalr ra # 5e04 <.LVL363+0xc> + +0000000000005e0c <.LVL364>: + 5e0c: 4118 lw a4,0(a0) + 5e0e: 6622 ld a2,8(sp) + 5e10: 00000697 auipc a3,0x0 5e10: R_RISCV_PCREL_HI20 .LC36 + 5e10: R_RISCV_RELAX *ABS* + 5e14: 00068693 mv a3,a3 5e14: R_RISCV_PCREL_LO12_I .L0 + 5e14: R_RISCV_RELAX *ABS* + 5e18: 00000597 auipc a1,0x0 5e18: R_RISCV_PCREL_HI20 g_fmtcmdfailed + 5e18: R_RISCV_RELAX *ABS* + 5e1c: 00058593 mv a1,a1 5e1c: R_RISCV_PCREL_LO12_I .L0 + 5e1c: R_RISCV_RELAX *ABS* + 5e20: 8522 mv a0,s0 + 5e22: 9a82 jalr s5 + +0000000000005e24 <.L243>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:1946 + nsh_freefullpath(newpath); + 5e24: 8552 mv a0,s4 + 5e26: 00000097 auipc ra,0x0 5e26: R_RISCV_CALL nsh_freefullpath + 5e26: R_RISCV_RELAX *ABS* + 5e2a: 000080e7 jalr ra # 5e26 <.L243+0x2> + +0000000000005e2e <.LVL366>: + 5e2e: bf45 j 5dde <.L242> 5e2e: R_RISCV_RVC_JUMP .L242 + +0000000000005e30 : +cmd_rm(): +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2057 + +int cmd_rm(FAR struct nsh_vtbl_s *vtbl, int argc, FAR char **argv) +{ + 5e30: 7129 addi sp,sp,-320 + 5e32: f626 sd s1,296(sp) + 5e34: f24a sd s2,288(sp) + 5e36: ee4e sd s3,280(sp) + 5e38: ea52 sd s4,272(sp) + 5e3a: fe06 sd ra,312(sp) + 5e3c: fa22 sd s0,304(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2058 + bool recursive = (strcmp(argv[1], "-r") == 0); + 5e3e: 6600 ld s0,8(a2) +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2057 +{ + 5e40: 84aa mv s1,a0 + 5e42: 89ae mv s3,a1 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2058 + bool recursive = (strcmp(argv[1], "-r") == 0); + 5e44: 8522 mv a0,s0 + +0000000000005e46 <.LVL368>: + 5e46: 00000597 auipc a1,0x0 5e46: R_RISCV_PCREL_HI20 .LC37 + 5e46: R_RISCV_RELAX *ABS* + 5e4a: 00058593 mv a1,a1 5e4a: R_RISCV_PCREL_LO12_I .L0 + 5e4a: R_RISCV_RELAX *ABS* + +0000000000005e4e <.LVL369>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2057 +{ + 5e4e: 8932 mv s2,a2 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2058 + bool recursive = (strcmp(argv[1], "-r") == 0); + 5e50: 00000097 auipc ra,0x0 5e50: R_RISCV_CALL strcmp + 5e50: R_RISCV_RELAX *ABS* + 5e54: 000080e7 jalr ra # 5e50 <.LVL369+0x2> + +0000000000005e58 <.LVL370>: + 5e58: 8a2a mv s4,a0 + +0000000000005e5a <.LVL371>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2063 + FAR char *fullpath; + char buf[PATH_MAX]; + int ret = ERROR; + + if (recursive && argc == 2) + 5e5a: e90d bnez a0,5e8c <.L246> 5e5a: R_RISCV_RVC_BRANCH .L246 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2063 (discriminator 1) + 5e5c: 4789 li a5,2 + 5e5e: 02f99563 bne s3,a5,5e88 <.L247> 5e5e: R_RISCV_BRANCH .L247 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2065 + { + nsh_error(vtbl, g_fmtargrequired, argv[0]); + 5e62: 749c ld a5,40(s1) + 5e64: 00093603 ld a2,0(s2) + 5e68: 00000597 auipc a1,0x0 5e68: R_RISCV_PCREL_HI20 g_fmtargrequired + 5e68: R_RISCV_RELAX *ABS* + 5e6c: 00058593 mv a1,a1 5e6c: R_RISCV_PCREL_LO12_I .L0 + 5e6c: R_RISCV_RELAX *ABS* + 5e70: 8526 mv a0,s1 + +0000000000005e72 <.LVL372>: + 5e72: 9782 jalr a5 + +0000000000005e74 <.LVL373>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2066 + return ret; + 5e74: 547d li s0,-1 + +0000000000005e76 <.L248>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2092 + + nsh_freefullpath(fullpath); + } + + return ret; +} + 5e76: 70f2 ld ra,312(sp) + 5e78: 8522 mv a0,s0 + 5e7a: 7452 ld s0,304(sp) + 5e7c: 74b2 ld s1,296(sp) + +0000000000005e7e <.LVL375>: + 5e7e: 7912 ld s2,288(sp) + +0000000000005e80 <.LVL376>: + 5e80: 69f2 ld s3,280(sp) + 5e82: 6a52 ld s4,272(sp) + 5e84: 6131 addi sp,sp,320 + 5e86: 8082 ret + +0000000000005e88 <.L247>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2069 (discriminator 1) + fullpath = nsh_getfullpath(vtbl, recursive ? argv[2] : argv[1]); + 5e88: 01093403 ld s0,16(s2) + +0000000000005e8c <.L246>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2069 (discriminator 4) + 5e8c: 85a2 mv a1,s0 + 5e8e: 8526 mv a0,s1 + +0000000000005e90 <.LVL378>: + 5e90: 00000097 auipc ra,0x0 5e90: R_RISCV_CALL nsh_getfullpath + 5e90: R_RISCV_RELAX *ABS* + 5e94: 000080e7 jalr ra # 5e90 <.LVL378> + +0000000000005e98 <.LVL379>: + 5e98: 89aa mv s3,a0 + +0000000000005e9a <.LVL380>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2061 (discriminator 4) + int ret = ERROR; + 5e9a: 547d li s0,-1 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2071 (discriminator 4) + if (fullpath != NULL) + 5e9c: dd69 beqz a0,5e76 <.L248> 5e9c: R_RISCV_RVC_BRANCH .L248 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2073 + if (recursive) + 5e9e: 040a1d63 bnez s4,5ef8 <.L249> 5e9e: R_RISCV_BRANCH .L249 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2075 + strlcpy(buf, fullpath, PATH_MAX); + 5ea2: 85aa mv a1,a0 + 5ea4: 10000613 li a2,256 + 5ea8: 0808 addi a0,sp,16 + +0000000000005eaa <.LVL381>: + 5eaa: 00000097 auipc ra,0x0 5eaa: R_RISCV_CALL strlcpy + 5eaa: R_RISCV_RELAX *ABS* + 5eae: 000080e7 jalr ra # 5eaa <.LVL381> + +0000000000005eb2 <.LVL382>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2076 + ret = unlink_recursive(buf); + 5eb2: 0808 addi a0,sp,16 + 5eb4: 00000097 auipc ra,0x0 5eb4: R_RISCV_CALL unlink_recursive + 5eb4: R_RISCV_RELAX *ABS* + 5eb8: 000080e7 jalr ra # 5eb4 <.LVL382+0x2> + +0000000000005ebc <.L254>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2080 + ret = unlink(fullpath); + 5ebc: 842a mv s0,a0 + +0000000000005ebe <.LVL384>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2083 + if (ret < 0) + 5ebe: 02055763 bgez a0,5eec <.L251> 5ebe: R_RISCV_BRANCH .L251 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2085 + nsh_error(vtbl, g_fmtcmdfailed, argv[0], "unlink", NSH_ERRNO); + 5ec2: 00093603 ld a2,0(s2) + 5ec6: 0284ba03 ld s4,40(s1) + 5eca: e432 sd a2,8(sp) + 5ecc: 00000097 auipc ra,0x0 5ecc: R_RISCV_CALL __errno + 5ecc: R_RISCV_RELAX *ABS* + 5ed0: 000080e7 jalr ra # 5ecc <.LVL384+0xe> + +0000000000005ed4 <.LVL385>: + 5ed4: 4118 lw a4,0(a0) + 5ed6: 6622 ld a2,8(sp) + 5ed8: 00000697 auipc a3,0x0 5ed8: R_RISCV_PCREL_HI20 .LC38 + 5ed8: R_RISCV_RELAX *ABS* + 5edc: 00068693 mv a3,a3 5edc: R_RISCV_PCREL_LO12_I .L0 + 5edc: R_RISCV_RELAX *ABS* + 5ee0: 00000597 auipc a1,0x0 5ee0: R_RISCV_PCREL_HI20 g_fmtcmdfailed + 5ee0: R_RISCV_RELAX *ABS* + 5ee4: 00058593 mv a1,a1 5ee4: R_RISCV_PCREL_LO12_I .L0 + 5ee4: R_RISCV_RELAX *ABS* + 5ee8: 8526 mv a0,s1 + 5eea: 9a02 jalr s4 + +0000000000005eec <.L251>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2088 + nsh_freefullpath(fullpath); + 5eec: 854e mv a0,s3 + 5eee: 00000097 auipc ra,0x0 5eee: R_RISCV_CALL nsh_freefullpath + 5eee: R_RISCV_RELAX *ABS* + 5ef2: 000080e7 jalr ra # 5eee <.L251+0x2> + +0000000000005ef6 <.LVL387>: + 5ef6: b741 j 5e76 <.L248> 5ef6: R_RISCV_RVC_JUMP .L248 + +0000000000005ef8 <.L249>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2080 + ret = unlink(fullpath); + 5ef8: 00000097 auipc ra,0x0 5ef8: R_RISCV_CALL unlink + 5ef8: R_RISCV_RELAX *ABS* + 5efc: 000080e7 jalr ra # 5ef8 <.L249> + +0000000000005f00 <.LVL389>: + 5f00: bf75 j 5ebc <.L254> 5f00: R_RISCV_RVC_JUMP .L254 + +0000000000005f02 : +cmd_rmdir(): +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2103 + ****************************************************************************/ + +#ifdef NSH_HAVE_DIROPTS +#ifndef CONFIG_NSH_DISABLE_RMDIR +int cmd_rmdir(FAR struct nsh_vtbl_s *vtbl, int argc, FAR char **argv) +{ + 5f02: 7139 addi sp,sp,-64 + 5f04: f822 sd s0,48(sp) + 5f06: f04a sd s2,32(sp) + 5f08: ec4e sd s3,24(sp) + 5f0a: fc06 sd ra,56(sp) + 5f0c: f426 sd s1,40(sp) + 5f0e: e852 sd s4,16(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2106 + UNUSED(argc); + + FAR char *fullpath = nsh_getfullpath(vtbl, argv[1]); + 5f10: 660c ld a1,8(a2) + +0000000000005f12 <.LVL391>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2103 +{ + 5f12: 892a mv s2,a0 + 5f14: 89b2 mv s3,a2 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2106 + FAR char *fullpath = nsh_getfullpath(vtbl, argv[1]); + 5f16: 00000097 auipc ra,0x0 5f16: R_RISCV_CALL nsh_getfullpath + 5f16: R_RISCV_RELAX *ABS* + 5f1a: 000080e7 jalr ra # 5f16 <.LVL391+0x4> + +0000000000005f1e <.LVL392>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2107 + int ret = ERROR; + 5f1e: 547d li s0,-1 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2109 + + if (fullpath != NULL) + 5f20: c139 beqz a0,5f66 <.L256> 5f20: R_RISCV_RVC_BRANCH .L256 + 5f22: 84aa mv s1,a0 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2111 + { + ret = rmdir(fullpath); + 5f24: 00000097 auipc ra,0x0 5f24: R_RISCV_CALL rmdir + 5f24: R_RISCV_RELAX *ABS* + 5f28: 000080e7 jalr ra # 5f24 <.LVL392+0x6> + +0000000000005f2c <.LVL393>: + 5f2c: 842a mv s0,a0 + +0000000000005f2e <.LVL394>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2112 + if (ret < 0) + 5f2e: 02055763 bgez a0,5f5c <.L257> 5f2e: R_RISCV_BRANCH .L257 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2114 + { + nsh_error(vtbl, g_fmtcmdfailed, argv[0], "rmdir", NSH_ERRNO); + 5f32: 0009b603 ld a2,0(s3) + 5f36: 02893a03 ld s4,40(s2) + 5f3a: e432 sd a2,8(sp) + 5f3c: 00000097 auipc ra,0x0 5f3c: R_RISCV_CALL __errno + 5f3c: R_RISCV_RELAX *ABS* + 5f40: 000080e7 jalr ra # 5f3c <.LVL394+0xe> + +0000000000005f44 <.LVL395>: + 5f44: 4118 lw a4,0(a0) + 5f46: 6622 ld a2,8(sp) + 5f48: 00000697 auipc a3,0x0 5f48: R_RISCV_PCREL_HI20 .LC39 + 5f48: R_RISCV_RELAX *ABS* + 5f4c: 00068693 mv a3,a3 5f4c: R_RISCV_PCREL_LO12_I .L0 + 5f4c: R_RISCV_RELAX *ABS* + 5f50: 00000597 auipc a1,0x0 5f50: R_RISCV_PCREL_HI20 g_fmtcmdfailed + 5f50: R_RISCV_RELAX *ABS* + 5f54: 00058593 mv a1,a1 5f54: R_RISCV_PCREL_LO12_I .L0 + 5f54: R_RISCV_RELAX *ABS* + 5f58: 854a mv a0,s2 + 5f5a: 9a02 jalr s4 + +0000000000005f5c <.L257>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2117 + } + + nsh_freefullpath(fullpath); + 5f5c: 8526 mv a0,s1 + 5f5e: 00000097 auipc ra,0x0 5f5e: R_RISCV_CALL nsh_freefullpath + 5f5e: R_RISCV_RELAX *ABS* + 5f62: 000080e7 jalr ra # 5f5e <.L257+0x2> + +0000000000005f66 <.L256>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2121 + } + + return ret; +} + 5f66: 70e2 ld ra,56(sp) + 5f68: 8522 mv a0,s0 + 5f6a: 7442 ld s0,48(sp) + +0000000000005f6c <.LVL398>: + 5f6c: 74a2 ld s1,40(sp) + 5f6e: 7902 ld s2,32(sp) + +0000000000005f70 <.LVL399>: + 5f70: 69e2 ld s3,24(sp) + +0000000000005f72 <.LVL400>: + 5f72: 6a42 ld s4,16(sp) + 5f74: 6121 addi sp,sp,64 + 5f76: 8082 ret + +0000000000005f78 : +cmd_source(): +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2131 + * Name: cmd_source + ****************************************************************************/ + +#if !defined(CONFIG_NSH_DISABLESCRIPT) && !defined(CONFIG_NSH_DISABLE_SOURCE) +int cmd_source(FAR struct nsh_vtbl_s *vtbl, int argc, FAR char **argv) +{ + 5f78: 87b2 mv a5,a2 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2134 + UNUSED(argc); + + return nsh_script(vtbl, argv[0], argv[1], true); + 5f7a: 638c ld a1,0(a5) + +0000000000005f7c <.LVL402>: + 5f7c: 6610 ld a2,8(a2) + +0000000000005f7e <.LVL403>: + 5f7e: 4685 li a3,1 + 5f80: 00000317 auipc t1,0x0 5f80: R_RISCV_CALL nsh_script + 5f80: R_RISCV_RELAX *ABS* + 5f84: 00030067 jr t1 # 5f80 <.LVL403+0x2> + +0000000000005f88 : +cmd_cmp(): +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2144 + * Name: cmd_cmp + ****************************************************************************/ + +#ifndef CONFIG_NSH_DISABLE_CMP +int cmd_cmp(FAR struct nsh_vtbl_s *vtbl, int argc, FAR char **argv) +{ + 5f88: 7149 addi sp,sp,-368 + 5f8a: f2a2 sd s0,352(sp) + 5f8c: eaca sd s2,336(sp) + 5f8e: f686 sd ra,360(sp) + 5f90: eea6 sd s1,344(sp) + 5f92: e6ce sd s3,328(sp) + 5f94: e2d2 sd s4,320(sp) + 5f96: fe56 sd s5,312(sp) + 5f98: fa5a sd s6,304(sp) + 5f9a: f65e sd s7,296(sp) + 5f9c: f262 sd s8,288(sp) + 5f9e: ee66 sd s9,280(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2155 + int fd2 = -1; + int ret = ERROR; + + /* Get the full path to the two files */ + + path1 = nsh_getfullpath(vtbl, argv[1]); + 5fa0: 660c ld a1,8(a2) + +0000000000005fa2 <.LVL406>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2144 +{ + 5fa2: 842a mv s0,a0 + 5fa4: 8932 mv s2,a2 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2155 + path1 = nsh_getfullpath(vtbl, argv[1]); + 5fa6: 00000097 auipc ra,0x0 5fa6: R_RISCV_CALL nsh_getfullpath + 5fa6: R_RISCV_RELAX *ABS* + 5faa: 000080e7 jalr ra # 5fa6 <.LVL406+0x4> + +0000000000005fae <.LVL407>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2156 + if (path1 == NULL) + 5fae: e90d bnez a0,5fe0 <.L262> 5fae: R_RISCV_RVC_BRANCH .L262 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2158 + { + nsh_error(vtbl, g_fmtargrequired, argv[0]); + 5fb0: 741c ld a5,40(s0) + 5fb2: 00093603 ld a2,0(s2) + 5fb6: 00000597 auipc a1,0x0 5fb6: R_RISCV_PCREL_HI20 g_fmtargrequired + 5fb6: R_RISCV_RELAX *ABS* + 5fba: 00058593 mv a1,a1 5fba: R_RISCV_PCREL_LO12_I .L0 + 5fba: R_RISCV_RELAX *ABS* + 5fbe: 8522 mv a0,s0 + +0000000000005fc0 <.LVL408>: + 5fc0: 9782 jalr a5 + +0000000000005fc2 <.LVL409>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2151 + int ret = ERROR; + 5fc2: 59fd li s3,-1 + +0000000000005fc4 <.L263>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2245 + nsh_freefullpath(path2); +errout_with_path1: + nsh_freefullpath(path1); +errout: + return ret; +} + 5fc4: 70b6 ld ra,360(sp) + 5fc6: 7416 ld s0,352(sp) + +0000000000005fc8 <.LVL411>: + 5fc8: 64f6 ld s1,344(sp) + 5fca: 6956 ld s2,336(sp) + +0000000000005fcc <.LVL412>: + 5fcc: 6a16 ld s4,320(sp) + 5fce: 7af2 ld s5,312(sp) + 5fd0: 7b52 ld s6,304(sp) + 5fd2: 7bb2 ld s7,296(sp) + 5fd4: 7c12 ld s8,288(sp) + 5fd6: 6cf2 ld s9,280(sp) + 5fd8: 854e mv a0,s3 + 5fda: 69b6 ld s3,328(sp) + +0000000000005fdc <.LVL413>: + 5fdc: 6175 addi sp,sp,368 + 5fde: 8082 ret + +0000000000005fe0 <.L262>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2162 + path2 = nsh_getfullpath(vtbl, argv[2]); + 5fe0: 01093583 ld a1,16(s2) + 5fe4: 8aaa mv s5,a0 + 5fe6: 8522 mv a0,s0 + +0000000000005fe8 <.LVL415>: + 5fe8: 00000097 auipc ra,0x0 5fe8: R_RISCV_CALL nsh_getfullpath + 5fe8: R_RISCV_RELAX *ABS* + 5fec: 000080e7 jalr ra # 5fe8 <.LVL415> + +0000000000005ff0 <.LVL416>: + 5ff0: 8b2a mv s6,a0 + +0000000000005ff2 <.LVL417>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2163 + if (path2 == NULL) + 5ff2: e10d bnez a0,6014 <.L264> 5ff2: R_RISCV_RVC_BRANCH .L264 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2165 + nsh_error(vtbl, g_fmtargrequired, argv[0]); + 5ff4: 741c ld a5,40(s0) + 5ff6: 00093603 ld a2,0(s2) + 5ffa: 00000597 auipc a1,0x0 5ffa: R_RISCV_PCREL_HI20 g_fmtargrequired + 5ffa: R_RISCV_RELAX *ABS* + 5ffe: 00058593 mv a1,a1 5ffe: R_RISCV_PCREL_LO12_I .L0 + 5ffe: R_RISCV_RELAX *ABS* + 6002: 8522 mv a0,s0 + +0000000000006004 <.LVL418>: + 6004: 9782 jalr a5 + +0000000000006006 <.LVL419>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2151 + int ret = ERROR; + 6006: 59fd li s3,-1 + +0000000000006008 <.L265>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2242 + nsh_freefullpath(path1); + 6008: 8556 mv a0,s5 + 600a: 00000097 auipc ra,0x0 600a: R_RISCV_CALL nsh_freefullpath + 600a: R_RISCV_RELAX *ABS* + 600e: 000080e7 jalr ra # 600a <.L265+0x2> + +0000000000006012 <.LVL421>: + 6012: bf4d j 5fc4 <.L263> 6012: R_RISCV_RVC_JUMP .L263 + +0000000000006014 <.L264>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2171 + fd1 = open(path1, O_RDONLY); + 6014: 4585 li a1,1 + 6016: 8556 mv a0,s5 + +0000000000006018 <.LVL423>: + 6018: 00000097 auipc ra,0x0 6018: R_RISCV_CALL open + 6018: R_RISCV_RELAX *ABS* + 601c: 000080e7 jalr ra # 6018 <.LVL423> + +0000000000006020 <.LVL424>: + 6020: 8baa mv s7,a0 + +0000000000006022 <.LVL425>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2172 + if (fd1 < 0) + 6022: 02055d63 bgez a0,605c <.L266> 6022: R_RISCV_BRANCH .L266 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2174 + nsh_error(vtbl, g_fmtcmdfailed, argv[0], "open", NSH_ERRNO); + 6026: 00093603 ld a2,0(s2) + 602a: 7404 ld s1,40(s0) +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2151 + int ret = ERROR; + 602c: 59fd li s3,-1 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2174 + nsh_error(vtbl, g_fmtcmdfailed, argv[0], "open", NSH_ERRNO); + 602e: e432 sd a2,8(sp) + 6030: 00000097 auipc ra,0x0 6030: R_RISCV_CALL __errno + 6030: R_RISCV_RELAX *ABS* + 6034: 000080e7 jalr ra # 6030 <.LVL425+0xe> + +0000000000006038 <.LVL426>: + 6038: 4118 lw a4,0(a0) + 603a: 6622 ld a2,8(sp) + 603c: 00000697 auipc a3,0x0 603c: R_RISCV_PCREL_HI20 .LC26 + 603c: R_RISCV_RELAX *ABS* + 6040: 00068693 mv a3,a3 6040: R_RISCV_PCREL_LO12_I .L0 + 6040: R_RISCV_RELAX *ABS* + 6044: 00000597 auipc a1,0x0 6044: R_RISCV_PCREL_HI20 g_fmtcmdfailed + 6044: R_RISCV_RELAX *ABS* + 6048: 00058593 mv a1,a1 6048: R_RISCV_PCREL_LO12_I .L0 + 6048: R_RISCV_RELAX *ABS* + 604c: 8522 mv a0,s0 + 604e: 9482 jalr s1 + +0000000000006050 <.L267>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2240 + nsh_freefullpath(path2); + 6050: 855a mv a0,s6 + 6052: 00000097 auipc ra,0x0 6052: R_RISCV_CALL nsh_freefullpath + 6052: R_RISCV_RELAX *ABS* + 6056: 000080e7 jalr ra # 6052 <.L267+0x2> + +000000000000605a <.LVL428>: + 605a: b77d j 6008 <.L265> 605a: R_RISCV_RVC_JUMP .L265 + +000000000000605c <.L266>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2178 + fd2 = open(path2, O_RDONLY); + 605c: 4585 li a1,1 + 605e: 855a mv a0,s6 + +0000000000006060 <.LVL430>: + 6060: 00000097 auipc ra,0x0 6060: R_RISCV_CALL open + 6060: R_RISCV_RELAX *ABS* + 6064: 000080e7 jalr ra # 6060 <.LVL430> + +0000000000006068 <.LVL431>: + 6068: 8c2a mv s8,a0 + +000000000000606a <.LBB31>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2223 + if (nbytesread1 < (ssize_t)sizeof(buf1)) + 606a: 07f00c93 li s9,127 + +000000000000606e <.LBE31>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2179 + if (fd2 < 0) + 606e: 02055d63 bgez a0,60a8 <.L268> 606e: R_RISCV_BRANCH .L268 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2181 + nsh_error(vtbl, g_fmtcmdfailed, argv[0], "open", NSH_ERRNO); + 6072: 00093603 ld a2,0(s2) + 6076: 7404 ld s1,40(s0) +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2151 + int ret = ERROR; + 6078: 59fd li s3,-1 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2181 + nsh_error(vtbl, g_fmtcmdfailed, argv[0], "open", NSH_ERRNO); + 607a: e432 sd a2,8(sp) + 607c: 00000097 auipc ra,0x0 607c: R_RISCV_CALL __errno + 607c: R_RISCV_RELAX *ABS* + 6080: 000080e7 jalr ra # 607c <.LBE31+0xe> + +0000000000006084 <.LVL433>: + 6084: 4118 lw a4,0(a0) + 6086: 6622 ld a2,8(sp) + 6088: 00000697 auipc a3,0x0 6088: R_RISCV_PCREL_HI20 .LC26 + 6088: R_RISCV_RELAX *ABS* + 608c: 00068693 mv a3,a3 608c: R_RISCV_PCREL_LO12_I .L0 + 608c: R_RISCV_RELAX *ABS* + 6090: 00000597 auipc a1,0x0 6090: R_RISCV_PCREL_HI20 g_fmtcmdfailed + 6090: R_RISCV_RELAX *ABS* + 6094: 00058593 mv a1,a1 6094: R_RISCV_PCREL_LO12_I .L0 + 6094: R_RISCV_RELAX *ABS* + 6098: 8522 mv a0,s0 + 609a: 9482 jalr s1 + +000000000000609c <.L269>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2238 + close(fd1); + 609c: 855e mv a0,s7 + 609e: 00000097 auipc ra,0x0 609e: R_RISCV_CALL close + 609e: R_RISCV_RELAX *ABS* + 60a2: 000080e7 jalr ra # 609e <.L269+0x2> + +00000000000060a6 <.LVL435>: + 60a6: b76d j 6050 <.L267> 60a6: R_RISCV_RVC_JUMP .L267 + +00000000000060a8 <.L268>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2196 + ssize_t nbytesread1 = read(fd1, buf1, sizeof(buf1)); + 60a8: 08000613 li a2,128 + 60ac: 080c addi a1,sp,16 + 60ae: 855e mv a0,s7 + 60b0: 00000097 auipc ra,0x0 60b0: R_RISCV_CALL read + 60b0: R_RISCV_RELAX *ABS* + 60b4: 000080e7 jalr ra # 60b0 <.L268+0x8> + +00000000000060b8 <.LVL437>: + 60b8: 84aa mv s1,a0 + +00000000000060ba <.LVL438>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2197 + ssize_t nbytesread2 = read(fd2, buf2, sizeof(buf2)); + 60ba: 08000613 li a2,128 + 60be: 090c addi a1,sp,144 + 60c0: 8562 mv a0,s8 + 60c2: 00000097 auipc ra,0x0 60c2: R_RISCV_CALL read + 60c2: R_RISCV_RELAX *ABS* + 60c6: 000080e7 jalr ra # 60c2 <.LVL438+0x8> + +00000000000060ca <.LVL439>: + 60ca: 8a2a mv s4,a0 + +00000000000060cc <.LVL440>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2199 + if (nbytesread1 < 0) + 60cc: 0204d863 bgez s1,60fc <.L270> 60cc: R_RISCV_BRANCH .L270 + +00000000000060d0 <.L281>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2207 + nsh_error(vtbl, g_fmtcmdfailed, argv[0], "read", NSH_ERRNO); + 60d0: 00093603 ld a2,0(s2) + 60d4: 7404 ld s1,40(s0) + +00000000000060d6 <.LVL441>: + 60d6: e432 sd a2,8(sp) + 60d8: 00000097 auipc ra,0x0 60d8: R_RISCV_CALL __errno + 60d8: R_RISCV_RELAX *ABS* + 60dc: 000080e7 jalr ra # 60d8 <.LVL441+0x2> + +00000000000060e0 <.LVL442>: + 60e0: 4118 lw a4,0(a0) + 60e2: 6622 ld a2,8(sp) + 60e4: 00000697 auipc a3,0x0 60e4: R_RISCV_PCREL_HI20 .LC28 + 60e4: R_RISCV_RELAX *ABS* + 60e8: 00068693 mv a3,a3 60e8: R_RISCV_PCREL_LO12_I .L0 + 60e8: R_RISCV_RELAX *ABS* + 60ec: 00000597 auipc a1,0x0 60ec: R_RISCV_PCREL_HI20 g_fmtcmdfailed + 60ec: R_RISCV_RELAX *ABS* + 60f0: 00058593 mv a1,a1 60f0: R_RISCV_PCREL_LO12_I .L0 + 60f0: R_RISCV_RELAX *ABS* + 60f4: 8522 mv a0,s0 + 60f6: 9482 jalr s1 + +00000000000060f8 <.L271>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2151 (discriminator 1) + int ret = ERROR; + 60f8: 59fd li s3,-1 + 60fa: a825 j 6132 <.L277> 60fa: R_RISCV_RVC_JUMP .L277 + +00000000000060fc <.L270>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2205 + if (nbytesread2 < 0) + 60fc: fc054ae3 bltz a0,60d0 <.L281> 60fc: R_RISCV_BRANCH .L281 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2213 + if (nbytesread1 != nbytesread2 || + 6100: 00a48e63 beq s1,a0,611c <.L273> 6100: R_RISCV_BRANCH .L273 + +0000000000006104 <.L275>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2216 + nsh_error(vtbl, "files differ: byte %zd\n", + 6104: 8626 mv a2,s1 + 6106: 009a5363 bge s4,s1,610c <.L274> 6106: R_RISCV_BRANCH .L274 + 610a: 8652 mv a2,s4 + +000000000000610c <.L274>: + 610c: 741c ld a5,40(s0) + 610e: 00000597 auipc a1,0x0 610e: R_RISCV_PCREL_HI20 .LC40 + 610e: R_RISCV_RELAX *ABS* + 6112: 00058593 mv a1,a1 6112: R_RISCV_PCREL_LO12_I .L0 + 6112: R_RISCV_RELAX *ABS* + 6116: 8522 mv a0,s0 + 6118: 9782 jalr a5 + +000000000000611a <.LVL446>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2218 + goto errout_with_fd2; + 611a: bff9 j 60f8 <.L271> 611a: R_RISCV_RVC_JUMP .L271 + +000000000000611c <.L273>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2214 (discriminator 1) + memcmp(buf1, buf2, nbytesread1) != 0) + 611c: 8626 mv a2,s1 + 611e: 090c addi a1,sp,144 + 6120: 0808 addi a0,sp,16 + +0000000000006122 <.LVL448>: + 6122: 00000097 auipc ra,0x0 6122: R_RISCV_CALL memcmp + 6122: R_RISCV_RELAX *ABS* + 6126: 000080e7 jalr ra # 6122 <.LVL448> + +000000000000612a <.LVL449>: + 612a: 89aa mv s3,a0 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2213 (discriminator 1) + if (nbytesread1 != nbytesread2 || + 612c: fd61 bnez a0,6104 <.L275> 612c: R_RISCV_RVC_BRANCH .L275 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2223 + if (nbytesread1 < (ssize_t)sizeof(buf1)) + 612e: f69ccde3 blt s9,s1,60a8 <.L268> 612e: R_RISCV_BRANCH .L268 + +0000000000006132 <.L277>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2236 + close(fd2); + 6132: 8562 mv a0,s8 + 6134: 00000097 auipc ra,0x0 6134: R_RISCV_CALL close + 6134: R_RISCV_RELAX *ABS* + 6138: 000080e7 jalr ra # 6134 <.L277+0x2> + +000000000000613c <.LVL451>: + 613c: b785 j 609c <.L269> 613c: R_RISCV_RVC_JUMP .L269 + +000000000000613e : +cmd_truncate(): +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2255 + ****************************************************************************/ + +#ifndef CONFIG_DISABLE_MOUNTPOINT +#ifndef CONFIG_NSH_DISABLE_TRUNCATE +int cmd_truncate(FAR struct nsh_vtbl_s *vtbl, int argc, FAR char **argv) +{ + 613e: 7171 addi sp,sp,-176 + 6140: f122 sd s0,160(sp) + 6142: fcd6 sd s5,120(sp) + 6144: f506 sd ra,168(sp) + 6146: ed26 sd s1,152(sp) + 6148: e94a sd s2,144(sp) + 614a: e54e sd s3,136(sp) + 614c: e152 sd s4,128(sp) + 614e: 842a mv s0,a0 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2266 + unsigned long length; + int ret; + + /* truncate -s */ + + if (strcmp(argv[1], "-s") != 0) + 6150: 6608 ld a0,8(a2) + +0000000000006152 <.LVL453>: + 6152: 00000597 auipc a1,0x0 6152: R_RISCV_PCREL_HI20 .LC41 + 6152: R_RISCV_RELAX *ABS* + 6156: 00058593 mv a1,a1 6156: R_RISCV_PCREL_LO12_I .L0 + 6156: R_RISCV_RELAX *ABS* + +000000000000615a <.LVL454>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2255 +{ + 615a: 8ab2 mv s5,a2 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2266 + if (strcmp(argv[1], "-s") != 0) + 615c: 00000097 auipc ra,0x0 615c: R_RISCV_CALL strcmp + 615c: R_RISCV_RELAX *ABS* + 6160: 000080e7 jalr ra # 615c <.LVL454+0x2> + +0000000000006164 <.LVL455>: + 6164: c50d beqz a0,618e <.L283> 6164: R_RISCV_RVC_BRANCH .L283 + +0000000000006166 <.L298>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2275 + } + + length = strtoul(argv[2], &endptr, 0); + if (*endptr != '\0') + { + nsh_error(vtbl, g_fmtarginvalid, argv[0]); + 6166: 741c ld a5,40(s0) + 6168: 000ab603 ld a2,0(s5) # 4eb2 <.L4+0x4> + 616c: 00000597 auipc a1,0x0 616c: R_RISCV_PCREL_HI20 g_fmtarginvalid + 616c: R_RISCV_RELAX *ABS* + 6170: 00058593 mv a1,a1 6170: R_RISCV_PCREL_LO12_I .L0 + 6170: R_RISCV_RELAX *ABS* + +0000000000006174 <.L299>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2284 + /* Get the full path to the file */ + + fullpath = nsh_getfullpath(vtbl, argv[3]); + if (fullpath == NULL) + { + nsh_error(vtbl, g_fmtcmdoutofmemory, argv[0]); + 6174: 8522 mv a0,s0 + 6176: 9782 jalr a5 + +0000000000006178 <.LVL456>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2285 + return ERROR; + 6178: 54fd li s1,-1 + +000000000000617a <.L284>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2355 + } + } + + nsh_freefullpath(fullpath); + return ret; +} + 617a: 70aa ld ra,168(sp) + 617c: 740a ld s0,160(sp) + +000000000000617e <.LVL457>: + 617e: 694a ld s2,144(sp) + 6180: 69aa ld s3,136(sp) + 6182: 6a0a ld s4,128(sp) + 6184: 7ae6 ld s5,120(sp) + +0000000000006186 <.LVL458>: + 6186: 8526 mv a0,s1 + 6188: 64ea ld s1,152(sp) + 618a: 614d addi sp,sp,176 + 618c: 8082 ret + +000000000000618e <.L283>: + 618e: 84aa mv s1,a0 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2272 + length = strtoul(argv[2], &endptr, 0); + 6190: 010ab503 ld a0,16(s5) + 6194: 4601 li a2,0 + 6196: 080c addi a1,sp,16 + 6198: 00000097 auipc ra,0x0 6198: R_RISCV_CALL strtoul + 6198: R_RISCV_RELAX *ABS* + 619c: 000080e7 jalr ra # 6198 <.L283+0xa> + +00000000000061a0 <.LVL460>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2273 + if (*endptr != '\0') + 61a0: 67c2 ld a5,16(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2272 + length = strtoul(argv[2], &endptr, 0); + 61a2: 89aa mv s3,a0 + +00000000000061a4 <.LVL461>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2273 + if (*endptr != '\0') + 61a4: 0007c783 lbu a5,0(a5) + 61a8: ffdd bnez a5,6166 <.L298> 61a8: R_RISCV_RVC_BRANCH .L298 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2281 + fullpath = nsh_getfullpath(vtbl, argv[3]); + 61aa: 018ab583 ld a1,24(s5) + 61ae: 8522 mv a0,s0 + +00000000000061b0 <.LVL462>: + 61b0: 00000097 auipc ra,0x0 61b0: R_RISCV_CALL nsh_getfullpath + 61b0: R_RISCV_RELAX *ABS* + 61b4: 000080e7 jalr ra # 61b0 <.LVL462> + +00000000000061b8 <.LVL463>: + 61b8: 892a mv s2,a0 + +00000000000061ba <.LVL464>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2282 + if (fullpath == NULL) + 61ba: e909 bnez a0,61cc <.L286> 61ba: R_RISCV_RVC_BRANCH .L286 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2284 + nsh_error(vtbl, g_fmtcmdoutofmemory, argv[0]); + 61bc: 741c ld a5,40(s0) + 61be: 000ab603 ld a2,0(s5) + 61c2: 00000597 auipc a1,0x0 61c2: R_RISCV_PCREL_HI20 g_fmtcmdoutofmemory + 61c2: R_RISCV_RELAX *ABS* + 61c6: 00058593 mv a1,a1 61c6: R_RISCV_PCREL_LO12_I .L0 + 61c6: R_RISCV_RELAX *ABS* + 61ca: b76d j 6174 <.L299> 61ca: R_RISCV_RVC_JUMP .L299 + +00000000000061cc <.L286>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2290 + ret = stat(fullpath, &buf); + 61cc: 082c addi a1,sp,24 + 61ce: 00000097 auipc ra,0x0 61ce: R_RISCV_CALL stat + 61ce: R_RISCV_RELAX *ABS* + 61d2: 000080e7 jalr ra # 61ce <.L286+0x2> + +00000000000061d6 <.LVL465>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2291 + if (ret < 0) + 61d6: 0c055563 bgez a0,62a0 <.L287> 61d6: R_RISCV_BRANCH .L287 + +00000000000061da <.LBB34>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2293 + int errval = errno; + 61da: 00000097 auipc ra,0x0 61da: R_RISCV_CALL __errno + 61da: R_RISCV_RELAX *ABS* + 61de: 000080e7 jalr ra # 61da <.LBB34> + +00000000000061e2 <.LVL466>: + 61e2: 4118 lw a4,0(a0) + +00000000000061e4 <.LVL467>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2299 + if (errval == ENOENT) + 61e4: 4789 li a5,2 + 61e6: 08f71f63 bne a4,a5,6284 <.L288> 61e6: R_RISCV_BRANCH .L288 + +00000000000061ea <.LBB35>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2301 + int fd = creat(fullpath, 0666); + 61ea: 1b600613 li a2,438 + 61ee: 02600593 li a1,38 + 61f2: 854a mv a0,s2 + 61f4: 00000097 auipc ra,0x0 61f4: R_RISCV_CALL open + 61f4: R_RISCV_RELAX *ABS* + 61f8: 000080e7 jalr ra # 61f4 <.LBB35+0xa> + +00000000000061fc <.LVL468>: + 61fc: 8a2a mv s4,a0 + +00000000000061fe <.LVL469>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2302 + if (fd < 0) + 61fe: 02055863 bgez a0,622e <.L289> 61fe: R_RISCV_BRANCH .L289 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2304 + nsh_error(vtbl, g_fmtcmdfailed, argv[0], "stat", NSH_ERRNO); + 6202: 000ab603 ld a2,0(s5) + 6206: 7404 ld s1,40(s0) + 6208: e432 sd a2,8(sp) + 620a: 00000097 auipc ra,0x0 620a: R_RISCV_CALL __errno + 620a: R_RISCV_RELAX *ABS* + 620e: 000080e7 jalr ra # 620a <.LVL469+0xc> + +0000000000006212 <.LVL470>: + 6212: 4118 lw a4,0(a0) + 6214: 6622 ld a2,8(sp) + 6216: 00000697 auipc a3,0x0 6216: R_RISCV_PCREL_HI20 .LC3 + 6216: R_RISCV_RELAX *ABS* + 621a: 00068693 mv a3,a3 621a: R_RISCV_PCREL_LO12_I .L0 + 621a: R_RISCV_RELAX *ABS* + 621e: 00000597 auipc a1,0x0 621e: R_RISCV_PCREL_HI20 g_fmtcmdfailed + 621e: R_RISCV_RELAX *ABS* + 6222: 00058593 mv a1,a1 6222: R_RISCV_PCREL_LO12_I .L0 + 6222: R_RISCV_RELAX *ABS* + 6226: 8522 mv a0,s0 + 6228: 9482 jalr s1 + +000000000000622a <.L297>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2340 + ret = ERROR; + 622a: 54fd li s1,-1 + 622c: a0b1 j 6278 <.L290> 622c: R_RISCV_RVC_JUMP .L290 + +000000000000622e <.L289>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2315 + if (length > 0) + 622e: 04098063 beqz s3,626e <.L291> 622e: R_RISCV_BRANCH .L291 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2319 + ret = ftruncate(fd, length); + 6232: 0009859b sext.w a1,s3 + 6236: 00000097 auipc ra,0x0 6236: R_RISCV_CALL ftruncate + 6236: R_RISCV_RELAX *ABS* + 623a: 000080e7 jalr ra # 6236 <.L289+0x8> + +000000000000623e <.LVL473>: + 623e: 84aa mv s1,a0 + +0000000000006240 <.LVL474>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2320 + if (ret < 0) + 6240: 02055763 bgez a0,626e <.L291> 6240: R_RISCV_BRANCH .L291 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2322 + nsh_error(vtbl, g_fmtcmdfailed, argv[0], "ftruncate", + 6244: 000ab603 ld a2,0(s5) + 6248: 02843983 ld s3,40(s0) + +000000000000624c <.LVL475>: + 624c: e432 sd a2,8(sp) + 624e: 00000097 auipc ra,0x0 624e: R_RISCV_CALL __errno + 624e: R_RISCV_RELAX *ABS* + 6252: 000080e7 jalr ra # 624e <.LVL475+0x2> + +0000000000006256 <.LVL476>: + 6256: 4118 lw a4,0(a0) + 6258: 6622 ld a2,8(sp) + 625a: 00000697 auipc a3,0x0 625a: R_RISCV_PCREL_HI20 .LC42 + 625a: R_RISCV_RELAX *ABS* + 625e: 00068693 mv a3,a3 625e: R_RISCV_PCREL_LO12_I .L0 + 625e: R_RISCV_RELAX *ABS* + 6262: 00000597 auipc a1,0x0 6262: R_RISCV_PCREL_HI20 g_fmtcmdfailed + 6262: R_RISCV_RELAX *ABS* + 6266: 00058593 mv a1,a1 6266: R_RISCV_PCREL_LO12_I .L0 + 6266: R_RISCV_RELAX *ABS* + 626a: 8522 mv a0,s0 + 626c: 9982 jalr s3 + +000000000000626e <.L291>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2327 + close(fd); + 626e: 8552 mv a0,s4 + 6270: 00000097 auipc ra,0x0 6270: R_RISCV_CALL close + 6270: R_RISCV_RELAX *ABS* + 6274: 000080e7 jalr ra # 6270 <.L291+0x2> + +0000000000006278 <.L290>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2353 + nsh_freefullpath(fullpath); + 6278: 854a mv a0,s2 + 627a: 00000097 auipc ra,0x0 627a: R_RISCV_CALL nsh_freefullpath + 627a: R_RISCV_RELAX *ABS* + 627e: 000080e7 jalr ra # 627a <.L290+0x2> + +0000000000006282 <.LVL479>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2354 + return ret; + 6282: bde5 j 617a <.L284> 6282: R_RISCV_RVC_JUMP .L284 + +0000000000006284 <.L288>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2332 + nsh_error(vtbl, g_fmtcmdfailed, argv[0], "stat", + 6284: 741c ld a5,40(s0) + 6286: 000ab603 ld a2,0(s5) + 628a: 00000697 auipc a3,0x0 628a: R_RISCV_PCREL_HI20 .LC3 + 628a: R_RISCV_RELAX *ABS* + 628e: 00068693 mv a3,a3 628e: R_RISCV_PCREL_LO12_I .L0 + 628e: R_RISCV_RELAX *ABS* + 6292: 00000597 auipc a1,0x0 6292: R_RISCV_PCREL_HI20 g_fmtcmdfailed + 6292: R_RISCV_RELAX *ABS* + 6296: 00058593 mv a1,a1 6296: R_RISCV_PCREL_LO12_I .L0 + 6296: R_RISCV_RELAX *ABS* + 629a: 8522 mv a0,s0 + 629c: 9782 jalr a5 + +000000000000629e <.LVL481>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2334 + ret = ERROR; + 629e: b771 j 622a <.L297> 629e: R_RISCV_RVC_JUMP .L297 + +00000000000062a0 <.L287>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2337 + else if (!S_ISREG(buf.st_mode)) + 62a0: 5782 lw a5,32(sp) + 62a2: 673d lui a4,0xf + 62a4: 8ff9 and a5,a5,a4 + 62a6: 6721 lui a4,0x8 + 62a8: 00e78c63 beq a5,a4,62c0 <.L292> 62a8: R_RISCV_BRANCH .L292 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2339 + nsh_error(vtbl, g_fmtarginvalid, argv[0]); + 62ac: 741c ld a5,40(s0) + 62ae: 000ab603 ld a2,0(s5) + 62b2: 00000597 auipc a1,0x0 62b2: R_RISCV_PCREL_HI20 g_fmtarginvalid + 62b2: R_RISCV_RELAX *ABS* + 62b6: 00058593 mv a1,a1 62b6: R_RISCV_PCREL_LO12_I .L0 + 62b6: R_RISCV_RELAX *ABS* + 62ba: 8522 mv a0,s0 + +00000000000062bc <.LVL483>: + 62bc: 9782 jalr a5 + +00000000000062be <.LVL484>: + 62be: b7b5 j 622a <.L297> 62be: R_RISCV_RVC_JUMP .L297 + +00000000000062c0 <.L292>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2346 + ret = truncate(fullpath, length); + 62c0: 0009859b sext.w a1,s3 + 62c4: 854a mv a0,s2 + +00000000000062c6 <.LVL486>: + 62c6: 00000097 auipc ra,0x0 62c6: R_RISCV_CALL truncate + 62c6: R_RISCV_RELAX *ABS* + 62ca: 000080e7 jalr ra # 62c6 <.LVL486> + +00000000000062ce <.LVL487>: + 62ce: 84aa mv s1,a0 + +00000000000062d0 <.LVL488>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2347 + if (ret < 0) + 62d0: fa0554e3 bgez a0,6278 <.L290> 62d0: R_RISCV_BRANCH .L290 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2349 + nsh_error(vtbl, g_fmtcmdfailed, argv[0], "truncate", NSH_ERRNO); + 62d4: 000ab603 ld a2,0(s5) + 62d8: 02843983 ld s3,40(s0) + +00000000000062dc <.LVL489>: + 62dc: e432 sd a2,8(sp) + 62de: 00000097 auipc ra,0x0 62de: R_RISCV_CALL __errno + 62de: R_RISCV_RELAX *ABS* + 62e2: 000080e7 jalr ra # 62de <.LVL489+0x2> + +00000000000062e6 <.LVL490>: + 62e6: 4118 lw a4,0(a0) + 62e8: 6622 ld a2,8(sp) + 62ea: 00000697 auipc a3,0x0 62ea: R_RISCV_PCREL_HI20 .LC43 + 62ea: R_RISCV_RELAX *ABS* + 62ee: 00068693 mv a3,a3 62ee: R_RISCV_PCREL_LO12_I .L0 + 62ee: R_RISCV_RELAX *ABS* + 62f2: 00000597 auipc a1,0x0 62f2: R_RISCV_PCREL_HI20 g_fmtcmdfailed + 62f2: R_RISCV_RELAX *ABS* + 62f6: 00058593 mv a1,a1 62f6: R_RISCV_PCREL_LO12_I .L0 + 62f6: R_RISCV_RELAX *ABS* + 62fa: 8522 mv a0,s0 + 62fc: 9982 jalr s3 + +00000000000062fe <.LVL491>: + 62fe: bfad j 6278 <.L290> 62fe: R_RISCV_RVC_JUMP .L290 + +0000000000006300 : +cmd_fdinfo(): +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2368 +#if defined(CONFIG_FS_PROCFS) && !defined(CONFIG_NSH_DISABLE_FDINFO) +int cmd_fdinfo(FAR struct nsh_vtbl_s *vtbl, int argc, FAR char **argv) +{ + UNUSED(argc); + + if (argv[1] != NULL) + 6300: 6614 ld a3,8(a2) + 6302: cad9 beqz a3,6398 <.L301> 6302: R_RISCV_RVC_BRANCH .L301 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2365 +{ + 6304: 7179 addi sp,sp,-48 + 6306: ec26 sd s1,24(sp) + 6308: f406 sd ra,40(sp) + 630a: f022 sd s0,32(sp) + 630c: e84a sd s2,16(sp) + +000000000000630e <.LBB39>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2370 + { + FAR char *fdpath = NULL; + 630e: e402 sd zero,8(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2375 + int ret; + + /* The directories of the processes are displayed numerically */ + + if (!isdigit(argv[1][0])) + 6310: 0006c783 lbu a5,0(a3) # 62ea <.LVL490+0x4> + 6314: 4725 li a4,9 + 6316: 84aa mv s1,a0 + 6318: fd07879b addiw a5,a5,-48 + 631c: 02f77e63 bgeu a4,a5,6358 <.L302> 631c: R_RISCV_BRANCH .L302 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2377 + { + nsh_error(vtbl, g_fmtcmdfailed, "fdinfo", + 6320: 7500 ld s0,40(a0) + 6322: 00000097 auipc ra,0x0 6322: R_RISCV_CALL __errno + 6322: R_RISCV_RELAX *ABS* + 6326: 000080e7 jalr ra # 6322 <.LBB39+0x14> + +000000000000632a <.LVL493>: + 632a: 4118 lw a4,0(a0) + 632c: 00000697 auipc a3,0x0 632c: R_RISCV_PCREL_HI20 .LC44 + 632c: R_RISCV_RELAX *ABS* + 6330: 00068693 mv a3,a3 6330: R_RISCV_PCREL_LO12_I .L0 + 6330: R_RISCV_RELAX *ABS* + 6334: 00000617 auipc a2,0x0 6334: R_RISCV_PCREL_HI20 .LC20 + 6334: R_RISCV_RELAX *ABS* + 6338: 00060613 mv a2,a2 6338: R_RISCV_PCREL_LO12_I .L0 + 6338: R_RISCV_RELAX *ABS* + 633c: 00000597 auipc a1,0x0 633c: R_RISCV_PCREL_HI20 g_fmtcmdfailed + 633c: R_RISCV_RELAX *ABS* + 6340: 00058593 mv a1,a1 6340: R_RISCV_PCREL_LO12_I .L0 + 6340: R_RISCV_RELAX *ABS* + 6344: 8526 mv a0,s1 + 6346: 9402 jalr s0 + +0000000000006348 <.LVL494>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2379 + "not process id", NSH_ERRNO); + return ERROR; + 6348: 547d li s0,-1 + +000000000000634a <.L304>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2396 (discriminator 1) + return ret; + } + + return nsh_foreach_direntry(vtbl, "fdinfo", CONFIG_NSH_PROC_MOUNTPOINT, + fdinfo_callback, NULL); +} + 634a: 70a2 ld ra,40(sp) + 634c: 8522 mv a0,s0 + 634e: 7402 ld s0,32(sp) + 6350: 64e2 ld s1,24(sp) + +0000000000006352 <.LVL495>: + 6352: 6942 ld s2,16(sp) + 6354: 6145 addi sp,sp,48 + 6356: 8082 ret + +0000000000006358 <.L302>: + 6358: 8932 mv s2,a2 + +000000000000635a <.LBB40>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2382 + ret = asprintf(&fdpath, "%s/%s/group/fd", + 635a: 00000597 auipc a1,0x0 635a: R_RISCV_PCREL_HI20 .LC18 + 635a: R_RISCV_RELAX *ABS* + 635e: 00058593 mv a1,a1 635e: R_RISCV_PCREL_LO12_I .L0 + 635e: R_RISCV_RELAX *ABS* + +0000000000006362 <.LVL497>: + 6362: 00000617 auipc a2,0x0 6362: R_RISCV_PCREL_HI20 .LC45 + 6362: R_RISCV_RELAX *ABS* + 6366: 00060613 mv a2,a2 6366: R_RISCV_PCREL_LO12_I .L0 + 6366: R_RISCV_RELAX *ABS* + +000000000000636a <.LVL498>: + 636a: 0028 addi a0,sp,8 + 636c: 00000097 auipc ra,0x0 636c: R_RISCV_CALL asprintf + 636c: R_RISCV_RELAX *ABS* + 6370: 000080e7 jalr ra # 636c <.LVL498+0x2> + +0000000000006374 <.LVL499>: + 6374: 842a mv s0,a0 + +0000000000006376 <.LVL500>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2384 + if (ret < 0) + 6376: fc054ae3 bltz a0,634a <.L304> 6376: R_RISCV_BRANCH .L304 +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2389 + ret = nsh_catfile(vtbl, argv[0], fdpath); + 637a: 6622 ld a2,8(sp) + 637c: 00093583 ld a1,0(s2) + 6380: 8526 mv a0,s1 + +0000000000006382 <.LVL501>: + 6382: 00000097 auipc ra,0x0 6382: R_RISCV_CALL nsh_catfile + 6382: R_RISCV_RELAX *ABS* + 6386: 000080e7 jalr ra # 6382 <.LVL501> + +000000000000638a <.LVL502>: + 638a: 842a mv s0,a0 + +000000000000638c <.LVL503>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2390 + free(fdpath); + 638c: 6522 ld a0,8(sp) + 638e: 00000097 auipc ra,0x0 638e: R_RISCV_CALL free + 638e: R_RISCV_RELAX *ABS* + 6392: 000080e7 jalr ra # 638e <.LVL503+0x2> + +0000000000006396 <.LVL504>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2391 + return ret; + 6396: bf55 j 634a <.L304> 6396: R_RISCV_RVC_JUMP .L304 + +0000000000006398 <.L301>: +/Users/Luppy/ox64/apps/nshlib/nsh_fscmds.c:2394 + return nsh_foreach_direntry(vtbl, "fdinfo", CONFIG_NSH_PROC_MOUNTPOINT, + 6398: 4701 li a4,0 + 639a: 00000697 auipc a3,0x0 639a: R_RISCV_PCREL_HI20 fdinfo_callback + 639a: R_RISCV_RELAX *ABS* + 639e: 00068693 mv a3,a3 639e: R_RISCV_PCREL_LO12_I .L0 + 639e: R_RISCV_RELAX *ABS* + 63a2: 00000617 auipc a2,0x0 63a2: R_RISCV_PCREL_HI20 .LC45 + 63a2: R_RISCV_RELAX *ABS* + 63a6: 00060613 mv a2,a2 63a6: R_RISCV_PCREL_LO12_I .L0 + 63a6: R_RISCV_RELAX *ABS* + +00000000000063aa <.LVL506>: + 63aa: 00000597 auipc a1,0x0 63aa: R_RISCV_PCREL_HI20 .LC20 + 63aa: R_RISCV_RELAX *ABS* + 63ae: 00058593 mv a1,a1 63ae: R_RISCV_PCREL_LO12_I .L0 + 63ae: R_RISCV_RELAX *ABS* + +00000000000063b2 <.LVL507>: + 63b2: 00000317 auipc t1,0x0 63b2: R_RISCV_CALL nsh_foreach_direntry + 63b2: R_RISCV_RELAX *ABS* + 63b6: 00030067 jr t1 # 63b2 <.LVL507> + +00000000000063ba : +getpid_callback(): +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:70 + +#if defined(CONFIG_FS_PROCFS) && !defined(CONFIG_NSH_DISABLE_PIDOF) +static int getpid_callback(FAR struct nsh_vtbl_s *vtbl, + FAR const char *dirpath, + FAR struct dirent *entryp, FAR void *pvarg) +{ + 63ba: 7129 addi sp,sp,-320 + 63bc: fa22 sd s0,304(sp) + 63be: fe06 sd ra,312(sp) + 63c0: f626 sd s1,296(sp) + 63c2: f24a sd s2,288(sp) + 63c4: ee4e sd s3,280(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:76 + FAR struct getpid_arg_s *arg = (FAR struct getpid_arg_s *)pvarg; + char buffer[PATH_MAX]; + int fd; + int len; + + if (arg->next == arg->count) + 63c6: 6e98 ld a4,24(a3) + 63c8: 6a9c ld a5,16(a3) +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:78 + { + return -E2BIG; + 63ca: 5465 li s0,-7 +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:76 + if (arg->next == arg->count) + 63cc: 02f70c63 beq a4,a5,6404 <.L2> 63cc: R_RISCV_BRANCH .L2 +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:83 + } + + /* Match the name of the process */ + + snprintf(buffer, sizeof(buffer), "%s/%s/cmdline", dirpath, entryp->d_name); + 63d0: 00160913 addi s2,a2,1 # 63a3 <.L301+0xb> + 63d4: 874a mv a4,s2 + 63d6: 00000617 auipc a2,0x0 63d6: R_RISCV_PCREL_HI20 .LC0 + 63d6: R_RISCV_RELAX *ABS* + 63da: 00060613 mv a2,a2 63da: R_RISCV_PCREL_LO12_I .L0 + 63da: R_RISCV_RELAX *ABS* + +00000000000063de <.LVL1>: + 63de: 84b6 mv s1,a3 + 63e0: 0808 addi a0,sp,16 + +00000000000063e2 <.LVL2>: + 63e2: 86ae mv a3,a1 + +00000000000063e4 <.LVL3>: + 63e4: 10000593 li a1,256 + +00000000000063e8 <.LVL4>: + 63e8: 00000097 auipc ra,0x0 63e8: R_RISCV_CALL snprintf + 63e8: R_RISCV_RELAX *ABS* + 63ec: 000080e7 jalr ra # 63e8 <.LVL4> + +00000000000063f0 <.LVL5>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:85 + + fd = open(buffer, O_RDONLY); + 63f0: 4585 li a1,1 + 63f2: 0808 addi a0,sp,16 + 63f4: 00000097 auipc ra,0x0 63f4: R_RISCV_CALL open + 63f4: R_RISCV_RELAX *ABS* + 63f8: 000080e7 jalr ra # 63f4 <.LVL5+0x4> + +00000000000063fc <.LVL6>: + 63fc: 89aa mv s3,a0 + +00000000000063fe <.LVL7>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:86 + if (fd < 0) + 63fe: 00055b63 bgez a0,6414 <.L3> 63fe: R_RISCV_BRANCH .L3 + +0000000000006402 <.L5>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:88 + { + return 0; + 6402: 4401 li s0,0 + +0000000000006404 <.L2>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:107 + { + arg->pids[arg->next++] = atoi(entryp->d_name); + } + + return OK; +} + 6404: 70f2 ld ra,312(sp) + 6406: 8522 mv a0,s0 + 6408: 7452 ld s0,304(sp) + 640a: 74b2 ld s1,296(sp) + 640c: 7912 ld s2,288(sp) + 640e: 69f2 ld s3,280(sp) + 6410: 6131 addi sp,sp,320 + 6412: 8082 ret + +0000000000006414 <.L3>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:91 + len = read(fd, buffer, sizeof(buffer) - 1); + 6414: 0ff00613 li a2,255 + 6418: 080c addi a1,sp,16 + 641a: 00000097 auipc ra,0x0 641a: R_RISCV_CALL read + 641a: R_RISCV_RELAX *ABS* + 641e: 000080e7 jalr ra # 641a <.L3+0x6> + +0000000000006422 <.LVL11>: + 6422: 0005041b sext.w s0,a0 + +0000000000006426 <.LVL12>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:92 + close(fd); + 6426: 854e mv a0,s3 + 6428: 00000097 auipc ra,0x0 6428: R_RISCV_CALL close + 6428: R_RISCV_RELAX *ABS* + 642c: 000080e7 jalr ra # 6428 <.LVL12+0x2> + +0000000000006430 <.LVL13>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:93 + if (len < 0) + 6430: 00045a63 bgez s0,6444 <.L4> 6430: R_RISCV_BRANCH .L4 +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:95 + return -errno; + 6434: 00000097 auipc ra,0x0 6434: R_RISCV_CALL __errno + 6434: R_RISCV_RELAX *ABS* + 6438: 000080e7 jalr ra # 6434 <.LVL13+0x4> + +000000000000643c <.LVL14>: + 643c: 4100 lw s0,0(a0) + +000000000000643e <.LVL15>: + 643e: 4080043b negw s0,s0 + 6442: b7c9 j 6404 <.L2> 6442: R_RISCV_RVC_JUMP .L2 + +0000000000006444 <.L4>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:99 + len = strlen(arg->name); + 6444: 608c ld a1,0(s1) +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:98 + buffer[len] = '\0'; + 6446: 0a1c addi a5,sp,272 + 6448: 943e add s0,s0,a5 + +000000000000644a <.LVL17>: + 644a: f0040023 sb zero,-256(s0) +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:99 + len = strlen(arg->name); + 644e: 852e mv a0,a1 + 6450: e42e sd a1,8(sp) + 6452: 00000097 auipc ra,0x0 6452: R_RISCV_CALL strlen + 6452: R_RISCV_RELAX *ABS* + 6456: 000080e7 jalr ra # 6452 <.LVL17+0x8> + +000000000000645a <.LVL18>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:100 + if (strncmp(buffer, arg->name, len) == 0 && + 645a: 65a2 ld a1,8(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:99 + len = strlen(arg->name); + 645c: 0005099b sext.w s3,a0 + +0000000000006460 <.LVL19>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:100 + if (strncmp(buffer, arg->name, len) == 0 && + 6460: 864e mv a2,s3 + 6462: 0808 addi a0,sp,16 + 6464: 00000097 auipc ra,0x0 6464: R_RISCV_CALL strncmp + 6464: R_RISCV_RELAX *ABS* + 6468: 000080e7 jalr ra # 6464 <.LVL19+0x4> + +000000000000646c <.LVL20>: + 646c: 842a mv s0,a0 + 646e: f951 bnez a0,6402 <.L5> 646e: R_RISCV_RVC_BRANCH .L5 +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:101 (discriminator 1) + (isspace(buffer[len]) || buffer[len] == '\0')) + 6470: 0a1c addi a5,sp,272 + 6472: 99be add s3,s3,a5 + +0000000000006474 <.LVL21>: + 6474: f009c983 lbu s3,-256(s3) + 6478: 854e mv a0,s3 + 647a: 00000097 auipc ra,0x0 647a: R_RISCV_CALL isspace + 647a: R_RISCV_RELAX *ABS* + 647e: 000080e7 jalr ra # 647a <.LVL21+0x6> + +0000000000006482 <.LVL22>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:100 (discriminator 1) + if (strncmp(buffer, arg->name, len) == 0 && + 6482: e119 bnez a0,6488 <.L6> 6482: R_RISCV_RVC_BRANCH .L6 +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:101 + (isspace(buffer[len]) || buffer[len] == '\0')) + 6484: f6099fe3 bnez s3,6402 <.L5> 6484: R_RISCV_BRANCH .L5 + +0000000000006488 <.L6>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:103 + arg->pids[arg->next++] = atoi(entryp->d_name); + 6488: 6c9c ld a5,24(s1) + 648a: 6498 ld a4,8(s1) + 648c: 854a mv a0,s2 + 648e: 00178693 addi a3,a5,1 + 6492: ec94 sd a3,24(s1) + 6494: 078a slli a5,a5,0x2 + 6496: 00f704b3 add s1,a4,a5 + +000000000000649a <.LVL23>: + 649a: 00000097 auipc ra,0x0 649a: R_RISCV_CALL atoi + 649a: R_RISCV_RELAX *ABS* + 649e: 000080e7 jalr ra # 649a <.LVL23> + +00000000000064a2 <.LVL24>: + 64a2: c088 sw a0,0(s1) + 64a4: b785 j 6404 <.L2> 64a4: R_RISCV_RVC_JUMP .L2 + +00000000000064a6 : +nsh_catfile(): +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:133 + ****************************************************************************/ + +#ifdef NSH_HAVE_CATFILE +int nsh_catfile(FAR struct nsh_vtbl_s *vtbl, FAR const char *cmd, + FAR const char *filepath) +{ + 64a6: 711d addi sp,sp,-96 + 64a8: e8a2 sd s0,80(sp) + 64aa: e4a6 sd s1,72(sp) + 64ac: 842a mv s0,a0 + 64ae: 84ae mv s1,a1 +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:140 + int fd; + int ret = OK; + + /* Open the file for reading */ + + fd = open(filepath, O_RDONLY); + 64b0: 8532 mv a0,a2 + +00000000000064b2 <.LVL26>: + 64b2: 4585 li a1,1 + +00000000000064b4 <.LVL27>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:133 +{ + 64b4: e0ca sd s2,64(sp) + 64b6: ec86 sd ra,88(sp) + 64b8: fc4e sd s3,56(sp) + 64ba: f852 sd s4,48(sp) + 64bc: f456 sd s5,40(sp) + 64be: f05a sd s6,32(sp) + 64c0: ec5e sd s7,24(sp) + 64c2: e862 sd s8,16(sp) + 64c4: e466 sd s9,8(sp) + 64c6: e06a sd s10,0(sp) + 64c8: 8932 mv s2,a2 +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:140 + fd = open(filepath, O_RDONLY); + 64ca: 00000097 auipc ra,0x0 64ca: R_RISCV_CALL open + 64ca: R_RISCV_RELAX *ABS* + 64ce: 000080e7 jalr ra # 64ca <.LVL27+0x16> + +00000000000064d2 <.LVL28>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:141 + if (fd < 0) + 64d2: 06055863 bgez a0,6542 <.L10> 64d2: R_RISCV_BRANCH .L10 +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:144 + { +#if defined(CONFIG_NSH_PROC_MOUNTPOINT) + if (strncmp(filepath, CONFIG_NSH_PROC_MOUNTPOINT, + 64d6: 4615 li a2,5 + 64d8: 00000597 auipc a1,0x0 64d8: R_RISCV_PCREL_HI20 .LC1 + 64d8: R_RISCV_RELAX *ABS* + 64dc: 00058593 mv a1,a1 64dc: R_RISCV_PCREL_LO12_I .L0 + 64dc: R_RISCV_RELAX *ABS* + 64e0: 854a mv a0,s2 + +00000000000064e2 <.LVL29>: + 64e2: 00000097 auipc ra,0x0 64e2: R_RISCV_CALL strncmp + 64e2: R_RISCV_RELAX *ABS* + 64e6: 000080e7 jalr ra # 64e2 <.LVL29> + +00000000000064ea <.LVL30>: + 64ea: e911 bnez a0,64fe <.L11> 64ea: R_RISCV_RVC_BRANCH .L11 +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:147 + sizeof(CONFIG_NSH_PROC_MOUNTPOINT) - 1) == 0) + { + nsh_error(vtbl, + 64ec: 741c ld a5,40(s0) + 64ee: 86ca mv a3,s2 + 64f0: 8626 mv a2,s1 + 64f2: 00000597 auipc a1,0x0 64f2: R_RISCV_PCREL_HI20 .LC2 + 64f2: R_RISCV_RELAX *ABS* + 64f6: 00058593 mv a1,a1 64f6: R_RISCV_PCREL_LO12_I .L0 + 64f6: R_RISCV_RELAX *ABS* + 64fa: 8522 mv a0,s0 + 64fc: 9782 jalr a5 + +00000000000064fe <.L11>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:153 + "nsh: %s: Could not open %s (is procfs mounted?)\n", + cmd, filepath); + } +#endif + + nsh_error(vtbl, g_fmtcmdfailed, cmd, "open", NSH_ERRNO); + 64fe: 02843903 ld s2,40(s0) + +0000000000006502 <.LVL32>: + 6502: 00000097 auipc ra,0x0 6502: R_RISCV_CALL __errno + 6502: R_RISCV_RELAX *ABS* + 6506: 000080e7 jalr ra # 6502 <.LVL32> + +000000000000650a <.LVL33>: + 650a: 4118 lw a4,0(a0) + 650c: 00000697 auipc a3,0x0 650c: R_RISCV_PCREL_HI20 .LC3 + 650c: R_RISCV_RELAX *ABS* + 6510: 00068693 mv a3,a3 6510: R_RISCV_PCREL_LO12_I .L0 + 6510: R_RISCV_RELAX *ABS* + +0000000000006514 <.L31>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:161 + + buffer = (FAR char *)malloc(IOBUFFERSIZE); + if (buffer == NULL) + { + close(fd); + nsh_error(vtbl, g_fmtcmdfailed, cmd, "malloc", NSH_ERRNO); + 6514: 8626 mv a2,s1 + 6516: 00000597 auipc a1,0x0 6516: R_RISCV_PCREL_HI20 g_fmtcmdfailed + 6516: R_RISCV_RELAX *ABS* + 651a: 00058593 mv a1,a1 651a: R_RISCV_PCREL_LO12_I .L0 + 651a: R_RISCV_RELAX *ABS* + 651e: 8522 mv a0,s0 + 6520: 9902 jalr s2 + +0000000000006522 <.LVL34>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:162 + return ERROR; + 6522: 597d li s2,-1 + +0000000000006524 <.L12>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:249 + /* Close the input file and return the result */ + + close(fd); + free(buffer); + return ret; +} + 6524: 60e6 ld ra,88(sp) + 6526: 6446 ld s0,80(sp) + +0000000000006528 <.LVL36>: + 6528: 64a6 ld s1,72(sp) + +000000000000652a <.LVL37>: + 652a: 79e2 ld s3,56(sp) + 652c: 7a42 ld s4,48(sp) + 652e: 7aa2 ld s5,40(sp) + 6530: 7b02 ld s6,32(sp) + 6532: 6be2 ld s7,24(sp) + 6534: 6c42 ld s8,16(sp) + 6536: 6ca2 ld s9,8(sp) + 6538: 6d02 ld s10,0(sp) + 653a: 854a mv a0,s2 + 653c: 6906 ld s2,64(sp) + 653e: 6125 addi sp,sp,96 + 6540: 8082 ret + +0000000000006542 <.L10>: + 6542: 8a2a mv s4,a0 +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:157 + buffer = (FAR char *)malloc(IOBUFFERSIZE); + 6544: 20000513 li a0,512 + +0000000000006548 <.LVL39>: + 6548: 00000097 auipc ra,0x0 6548: R_RISCV_CALL malloc + 6548: R_RISCV_RELAX *ABS* + 654c: 000080e7 jalr ra # 6548 <.LVL39> + +0000000000006550 <.LVL40>: + 6550: 89aa mv s3,a0 + +0000000000006552 <.LVL41>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:136 + int ret = OK; + 6552: 4901 li s2,0 + +0000000000006554 <.LVL42>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:158 + if (buffer == NULL) + 6554: c535 beqz a0,65c0 <.L28> 6554: R_RISCV_RVC_BRANCH .L28 + +0000000000006556 <.LBB2>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:209 + if (errcode == EINTR) + 6556: 4b91 li s7,4 +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:215 + nsh_error(vtbl, g_fmtcmdfailed, cmd, "write", + 6558: 00000c17 auipc s8,0x0 6558: R_RISCV_PCREL_HI20 .LC6 + 6558: R_RISCV_RELAX *ABS* + 655c: 000c0c13 mv s8,s8 655c: R_RISCV_PCREL_LO12_I .L0 + 655c: R_RISCV_RELAX *ABS* + 6560: 00000c97 auipc s9,0x0 6560: R_RISCV_PCREL_HI20 g_fmtcmdfailed + 6560: R_RISCV_RELAX *ABS* + 6564: 000c8c93 mv s9,s9 6564: R_RISCV_PCREL_LO12_I .L0 + 6564: R_RISCV_RELAX *ABS* +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:211 + nsh_error(vtbl, g_fmtsignalrecvd, cmd); + 6568: 00000d17 auipc s10,0x0 6568: R_RISCV_PCREL_HI20 g_fmtsignalrecvd + 6568: R_RISCV_RELAX *ABS* + 656c: 000d0d13 mv s10,s10 656c: R_RISCV_PCREL_LO12_I .L0 + 656c: R_RISCV_RELAX *ABS* + +0000000000006570 <.L21>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:169 + int nbytesread = read(fd, buffer, IOBUFFERSIZE); + 6570: 20000613 li a2,512 + 6574: 85ce mv a1,s3 + 6576: 8552 mv a0,s4 + 6578: 00000097 auipc ra,0x0 6578: R_RISCV_CALL read + 6578: R_RISCV_RELAX *ABS* + 657c: 000080e7 jalr ra # 6578 <.L21+0x8> + +0000000000006580 <.LVL44>: + 6580: 00050a9b sext.w s5,a0 + +0000000000006584 <.LVL45>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:173 + if (nbytesread < 0) + 6584: 060adb63 bgez s5,65fa <.L14> 6584: R_RISCV_BRANCH .L14 + +0000000000006588 <.LBB10>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:175 + int errval = errno; + 6588: 00000097 auipc ra,0x0 6588: R_RISCV_CALL __errno + 6588: R_RISCV_RELAX *ABS* + 658c: 000080e7 jalr ra # 6588 <.LBB10> + +0000000000006590 <.LVL46>: + 6590: 4118 lw a4,0(a0) + +0000000000006592 <.LVL47>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:179 + if (errval == EINTR) + 6592: 4691 li a3,4 + 6594: 741c ld a5,40(s0) + 6596: 04d71663 bne a4,a3,65e2 <.L15> 6596: R_RISCV_BRANCH .L15 +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:181 + nsh_error(vtbl, g_fmtsignalrecvd, cmd); + 659a: 8626 mv a2,s1 + 659c: 00000597 auipc a1,0x0 659c: R_RISCV_PCREL_HI20 g_fmtsignalrecvd + 659c: R_RISCV_RELAX *ABS* + 65a0: 00058593 mv a1,a1 65a0: R_RISCV_PCREL_LO12_I .L0 + 65a0: R_RISCV_RELAX *ABS* + 65a4: 8522 mv a0,s0 + 65a6: 9782 jalr a5 + +00000000000065a8 <.L30>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:189 + ret = ERROR; + 65a8: 597d li s2,-1 + +00000000000065aa <.L16>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:246 + close(fd); + 65aa: 8552 mv a0,s4 + 65ac: 00000097 auipc ra,0x0 65ac: R_RISCV_CALL close + 65ac: R_RISCV_RELAX *ABS* + 65b0: 000080e7 jalr ra # 65ac <.L16+0x2> + +00000000000065b4 <.LVL50>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:247 + free(buffer); + 65b4: 854e mv a0,s3 + 65b6: 00000097 auipc ra,0x0 65b6: R_RISCV_CALL free + 65b6: R_RISCV_RELAX *ABS* + 65ba: 000080e7 jalr ra # 65b6 <.LVL50+0x2> + +00000000000065be <.LVL51>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:248 + return ret; + 65be: b79d j 6524 <.L12> 65be: R_RISCV_RVC_JUMP .L12 + +00000000000065c0 <.L28>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:160 + close(fd); + 65c0: 8552 mv a0,s4 + +00000000000065c2 <.LVL53>: + 65c2: 00000097 auipc ra,0x0 65c2: R_RISCV_CALL close + 65c2: R_RISCV_RELAX *ABS* + 65c6: 000080e7 jalr ra # 65c2 <.LVL53> + +00000000000065ca <.LVL54>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:161 + nsh_error(vtbl, g_fmtcmdfailed, cmd, "malloc", NSH_ERRNO); + 65ca: 02843903 ld s2,40(s0) + 65ce: 00000097 auipc ra,0x0 65ce: R_RISCV_CALL __errno + 65ce: R_RISCV_RELAX *ABS* + 65d2: 000080e7 jalr ra # 65ce <.LVL54+0x4> + +00000000000065d6 <.LVL55>: + 65d6: 4118 lw a4,0(a0) + 65d8: 00000697 auipc a3,0x0 65d8: R_RISCV_PCREL_HI20 .LC4 + 65d8: R_RISCV_RELAX *ABS* + 65dc: 00068693 mv a3,a3 65dc: R_RISCV_PCREL_LO12_I .L0 + 65dc: R_RISCV_RELAX *ABS* + 65e0: bf15 j 6514 <.L31> 65e0: R_RISCV_RVC_JUMP .L31 + +00000000000065e2 <.L15>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:185 + nsh_error(vtbl, g_fmtcmdfailed, cmd, "read", + 65e2: 00000697 auipc a3,0x0 65e2: R_RISCV_PCREL_HI20 .LC5 + 65e2: R_RISCV_RELAX *ABS* + 65e6: 00068693 mv a3,a3 65e6: R_RISCV_PCREL_LO12_I .L0 + 65e6: R_RISCV_RELAX *ABS* + 65ea: 8626 mv a2,s1 + 65ec: 00000597 auipc a1,0x0 65ec: R_RISCV_PCREL_HI20 g_fmtcmdfailed + 65ec: R_RISCV_RELAX *ABS* + 65f0: 00058593 mv a1,a1 65f0: R_RISCV_PCREL_LO12_I .L0 + 65f0: R_RISCV_RELAX *ABS* + 65f4: 8522 mv a0,s0 + 65f6: 9782 jalr a5 + +00000000000065f8 <.LVL57>: + 65f8: bf45 j 65a8 <.L30> 65f8: R_RISCV_RVC_JUMP .L30 + +00000000000065fa <.L14>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:195 + else if (nbytesread > 0) + 65fa: fa0a88e3 beqz s5,65aa <.L16> 65fa: R_RISCV_BRANCH .L16 + +00000000000065fe <.LBB12>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:197 + int nbyteswritten = 0; + 65fe: 4b01 li s6,0 + +0000000000006600 <.L20>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:201 + ssize_t n = nsh_write(vtbl, buffer + nbyteswritten, + 6600: 6c1c ld a5,24(s0) + 6602: 416a863b subw a2,s5,s6 + 6606: 016985b3 add a1,s3,s6 + 660a: 8522 mv a0,s0 + 660c: 9782 jalr a5 + +000000000000660e <.LVL59>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:203 + if (n < 0) + 660e: 02055663 bgez a0,663a <.L17> 660e: R_RISCV_BRANCH .L17 + +0000000000006612 <.LBB6>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:205 + int errcode = errno; + 6612: 00000097 auipc ra,0x0 6612: R_RISCV_CALL __errno + 6612: R_RISCV_RELAX *ABS* + 6616: 000080e7 jalr ra # 6612 <.LBB6> + +000000000000661a <.LVL60>: + 661a: 4118 lw a4,0(a0) + +000000000000661c <.LVL61>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:209 + if (errcode == EINTR) + 661c: 741c ld a5,40(s0) + 661e: 01771863 bne a4,s7,662e <.L18> 661e: R_RISCV_BRANCH .L18 +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:211 + nsh_error(vtbl, g_fmtsignalrecvd, cmd); + 6622: 8626 mv a2,s1 + 6624: 85ea mv a1,s10 + 6626: 8522 mv a0,s0 + 6628: 9782 jalr a5 + +000000000000662a <.L19>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:133 +{ + 662a: 597d li s2,-1 + +000000000000662c <.LVL63>: + 662c: b791 j 6570 <.L21> 662c: R_RISCV_RVC_JUMP .L21 + +000000000000662e <.L18>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:215 + nsh_error(vtbl, g_fmtcmdfailed, cmd, "write", + 662e: 86e2 mv a3,s8 + 6630: 8626 mv a2,s1 + 6632: 85e6 mv a1,s9 + 6634: 8522 mv a0,s0 + 6636: 9782 jalr a5 + +0000000000006638 <.LVL65>: + 6638: bfcd j 662a <.L19> 6638: R_RISCV_RVC_JUMP .L19 + +000000000000663a <.L17>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:224 + nbyteswritten += n; + 663a: 01650b3b addw s6,a0,s6 + +000000000000663e <.LBE9>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:199 + while (nbyteswritten < nbytesread) + 663e: fd5b41e3 blt s6,s5,6600 <.L20> 663e: R_RISCV_BRANCH .L20 + 6642: b73d j 6570 <.L21> 6642: R_RISCV_RVC_JUMP .L21 + +0000000000006644 : +nsh_readfile(): +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:275 + ****************************************************************************/ + +#ifdef NSH_HAVE_READFILE +int nsh_readfile(FAR struct nsh_vtbl_s *vtbl, FAR const char *cmd, + FAR const char *filepath, FAR char *buffer, size_t buflen) +{ + 6644: 715d addi sp,sp,-80 + 6646: e0a2 sd s0,64(sp) + 6648: ec56 sd s5,24(sp) + 664a: 842a mv s0,a0 + 664c: 8aae mv s5,a1 +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:285 + int fd; + int ret; + + /* Open the file */ + + fd = open(filepath, O_RDONLY); + 664e: 8532 mv a0,a2 + +0000000000006650 <.LVL69>: + 6650: 4585 li a1,1 + +0000000000006652 <.LVL70>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:275 +{ + 6652: f84a sd s2,48(sp) + 6654: f44e sd s3,40(sp) + 6656: e486 sd ra,72(sp) + 6658: fc26 sd s1,56(sp) + 665a: f052 sd s4,32(sp) + 665c: e85a sd s6,16(sp) + 665e: e45e sd s7,8(sp) + 6660: e062 sd s8,0(sp) + 6662: 8936 mv s2,a3 + 6664: 89ba mv s3,a4 +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:285 + fd = open(filepath, O_RDONLY); + 6666: 00000097 auipc ra,0x0 6666: R_RISCV_CALL open + 6666: R_RISCV_RELAX *ABS* + 666a: 000080e7 jalr ra # 6666 <.LVL70+0x14> + +000000000000666e <.LVL71>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:286 + if (fd < 0) + 666e: 04055163 bgez a0,66b0 <.L33> 666e: R_RISCV_BRANCH .L33 +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:288 + { + nsh_error(vtbl, g_fmtcmdfailed, cmd, "open", NSH_ERRNO); + 6672: 7404 ld s1,40(s0) + 6674: 00000097 auipc ra,0x0 6674: R_RISCV_CALL __errno + 6674: R_RISCV_RELAX *ABS* + 6678: 000080e7 jalr ra # 6674 <.LVL71+0x6> + +000000000000667c <.LVL72>: + 667c: 4118 lw a4,0(a0) + 667e: 00000697 auipc a3,0x0 667e: R_RISCV_PCREL_HI20 .LC3 + 667e: R_RISCV_RELAX *ABS* + 6682: 00068693 mv a3,a3 6682: R_RISCV_PCREL_LO12_I .L0 + 6682: R_RISCV_RELAX *ABS* + 6686: 8522 mv a0,s0 + 6688: 8656 mv a2,s5 + 668a: 00000597 auipc a1,0x0 668a: R_RISCV_PCREL_HI20 g_fmtcmdfailed + 668a: R_RISCV_RELAX *ABS* + 668e: 00058593 mv a1,a1 668e: R_RISCV_PCREL_LO12_I .L0 + 668e: R_RISCV_RELAX *ABS* + 6692: 9482 jalr s1 + +0000000000006694 <.LVL73>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:289 + return ERROR; + 6694: 547d li s0,-1 + +0000000000006696 <.L34>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:353 + + /* Close the file and return. */ + + close(fd); + return ret; +} + 6696: 60a6 ld ra,72(sp) + 6698: 8522 mv a0,s0 + 669a: 6406 ld s0,64(sp) + 669c: 74e2 ld s1,56(sp) + 669e: 7942 ld s2,48(sp) + 66a0: 79a2 ld s3,40(sp) + +00000000000066a2 <.LVL75>: + 66a2: 7a02 ld s4,32(sp) + 66a4: 6ae2 ld s5,24(sp) + +00000000000066a6 <.LVL76>: + 66a6: 6b42 ld s6,16(sp) + 66a8: 6ba2 ld s7,8(sp) + 66aa: 6c02 ld s8,0(sp) + 66ac: 6161 addi sp,sp,80 + 66ae: 8082 ret + +00000000000066b0 <.L33>: + 66b0: 84aa mv s1,a0 + +00000000000066b2 <.LVL78>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:297 + *buffer = '\0'; /* NUL terminate the empty buffer */ + 66b2: 00090023 sb zero,0(s2) + +00000000000066b6 <.LVL79>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:299 + remaining = buflen - 1; /* Reserve one byte for a NUL terminator */ + 66b6: fff98a13 addi s4,s3,-1 + +00000000000066ba <.LVL80>: + 66ba: 8b4a mv s6,s2 +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:296 + ntotal = 0; /* No bytes read yet */ + 66bc: 4b81 li s7,0 + +00000000000066be <.LBB17>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:316 + if (errcode != EINTR) + 66be: 4c11 li s8,4 + +00000000000066c0 <.L40>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:304 + nread = read(fd, bufptr, remaining); + 66c0: 8652 mv a2,s4 + 66c2: 85da mv a1,s6 + 66c4: 8526 mv a0,s1 + 66c6: 00000097 auipc ra,0x0 66c6: R_RISCV_CALL read + 66c6: R_RISCV_RELAX *ABS* + 66ca: 000080e7 jalr ra # 66c6 <.L40+0x6> + +00000000000066ce <.LVL82>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:305 + if (nread < 0) + 66ce: 06055263 bgez a0,6732 <.L35> 66ce: R_RISCV_BRANCH .L35 + +00000000000066d2 <.LBB18>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:309 + int errcode = errno; + 66d2: 00000097 auipc ra,0x0 66d2: R_RISCV_CALL __errno + 66d2: R_RISCV_RELAX *ABS* + 66d6: 000080e7 jalr ra # 66d2 <.LBB18> + +00000000000066da <.LVL83>: + 66da: 411c lw a5,0(a0) + +00000000000066dc <.LVL84>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:310 + DEBUGASSERT(errcode > 0); + 66dc: 02f04063 bgtz a5,66fc <.L36> 66dc: R_RISCV_BRANCH .L36 +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:310 (discriminator 1) + 66e0: 00000617 auipc a2,0x0 66e0: R_RISCV_PCREL_HI20 .LC7 + 66e0: R_RISCV_RELAX *ABS* + 66e4: 00060613 mv a2,a2 66e4: R_RISCV_PCREL_LO12_I .L0 + 66e4: R_RISCV_RELAX *ABS* + 66e8: 13600593 li a1,310 + +00000000000066ec <.L45>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:335 (discriminator 1) + DEBUGASSERT(nread <= (ssize_t)remaining); + 66ec: 00000517 auipc a0,0x0 66ec: R_RISCV_PCREL_HI20 .LC8 + 66ec: R_RISCV_RELAX *ABS* + 66f0: 00050513 mv a0,a0 66f0: R_RISCV_PCREL_LO12_I .L0 + 66f0: R_RISCV_RELAX *ABS* + 66f4: 00000097 auipc ra,0x0 66f4: R_RISCV_CALL __assert + 66f4: R_RISCV_RELAX *ABS* + 66f8: 000080e7 jalr ra # 66f4 <.L45+0x8> + +00000000000066fc <.L36>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:316 (discriminator 2) + if (errcode != EINTR) + 66fc: 05878d63 beq a5,s8,6756 <.L37> 66fc: R_RISCV_BRANCH .L37 +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:320 + nsh_error(vtbl, g_fmtcmdfailed, cmd, "read", NSH_ERRNO); + 6700: 02843903 ld s2,40(s0) + +0000000000006704 <.LVL87>: + 6704: 00000097 auipc ra,0x0 6704: R_RISCV_CALL __errno + 6704: R_RISCV_RELAX *ABS* + 6708: 000080e7 jalr ra # 6704 <.LVL87> + +000000000000670c <.LVL88>: + 670c: 4118 lw a4,0(a0) + 670e: 00000697 auipc a3,0x0 670e: R_RISCV_PCREL_HI20 .LC5 + 670e: R_RISCV_RELAX *ABS* + 6712: 00068693 mv a3,a3 6712: R_RISCV_PCREL_LO12_I .L0 + 6712: R_RISCV_RELAX *ABS* + 6716: 8656 mv a2,s5 + 6718: 00000597 auipc a1,0x0 6718: R_RISCV_PCREL_HI20 g_fmtcmdfailed + 6718: R_RISCV_RELAX *ABS* + 671c: 00058593 mv a1,a1 671c: R_RISCV_PCREL_LO12_I .L0 + 671c: R_RISCV_RELAX *ABS* + 6720: 8522 mv a0,s0 + 6722: 9902 jalr s2 + +0000000000006724 <.L44>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:300 + ret = ERROR; /* Assume failure */ + 6724: 547d li s0,-1 + +0000000000006726 <.L38>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:351 + close(fd); + 6726: 8526 mv a0,s1 + 6728: 00000097 auipc ra,0x0 6728: R_RISCV_CALL close + 6728: R_RISCV_RELAX *ABS* + 672c: 000080e7 jalr ra # 6728 <.L38+0x2> + +0000000000006730 <.LVL91>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:352 + return ret; + 6730: b79d j 6696 <.L34> 6730: R_RISCV_RVC_JUMP .L34 + +0000000000006732 <.L35>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:324 + else if (nread == 0) + 6732: c50d beqz a0,675c <.L41> 6732: R_RISCV_RVC_BRANCH .L41 +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:335 + DEBUGASSERT(nread <= (ssize_t)remaining); + 6734: 00aa5963 bge s4,a0,6746 <.L39> 6734: R_RISCV_BRANCH .L39 +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:335 (discriminator 1) + 6738: 00000617 auipc a2,0x0 6738: R_RISCV_PCREL_HI20 .LC9 + 6738: R_RISCV_RELAX *ABS* + 673c: 00060613 mv a2,a2 673c: R_RISCV_PCREL_LO12_I .L0 + 673c: R_RISCV_RELAX *ABS* + 6740: 14f00593 li a1,335 + 6744: b765 j 66ec <.L45> 6744: R_RISCV_RVC_JUMP .L45 + +0000000000006746 <.L39>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:336 (discriminator 2) + ntotal += nread; + 6746: 9baa add s7,s7,a0 +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:337 (discriminator 2) + buffer[ntotal] = '\0'; + 6748: 01790733 add a4,s2,s7 + 674c: 00070023 sb zero,0(a4) # 8000 <.LVL80> +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:343 (discriminator 2) + bufptr += nread; + 6750: 9b2a add s6,s6,a0 +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:344 (discriminator 2) + remaining -= nread; + 6752: 40aa0a33 sub s4,s4,a0 + +0000000000006756 <.L37>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:347 + while (buflen > 0); + 6756: f60995e3 bnez s3,66c0 <.L40> 6756: R_RISCV_BRANCH .L40 + 675a: b7e9 j 6724 <.L44> 675a: R_RISCV_RVC_JUMP .L44 + +000000000000675c <.L41>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:328 + ret = OK; + 675c: 4401 li s0,0 + +000000000000675e <.LVL97>: + 675e: b7e1 j 6726 <.L38> 675e: R_RISCV_RVC_JUMP .L38 + +0000000000006760 : +nsh_writefile(): +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:378 + +#ifdef NSH_HAVE_WRITEFILE +int nsh_writefile(FAR struct nsh_vtbl_s *vtbl, FAR const char *cmd, + FAR const char *buffer, size_t len, + FAR const char *filepath) +{ + 6760: 7139 addi sp,sp,-64 + 6762: f426 sd s1,40(sp) + 6764: f04a sd s2,32(sp) + 6766: 84aa mv s1,a0 + 6768: 892e mv s2,a1 +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:384 + int fd; + int ret; + + /* Open the file for reading */ + + fd = open(filepath, O_WRONLY); + 676a: 853a mv a0,a4 + +000000000000676c <.LVL99>: + 676c: 4589 li a1,2 + +000000000000676e <.LVL100>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:378 +{ + 676e: f822 sd s0,48(sp) + 6770: e852 sd s4,16(sp) + 6772: fc06 sd ra,56(sp) + 6774: 8a32 mv s4,a2 + 6776: ec4e sd s3,24(sp) + 6778: e436 sd a3,8(sp) + 677a: 843a mv s0,a4 +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:384 + fd = open(filepath, O_WRONLY); + 677c: 00000097 auipc ra,0x0 677c: R_RISCV_CALL open + 677c: R_RISCV_RELAX *ABS* + 6780: 000080e7 jalr ra # 677c <.LVL100+0xe> + +0000000000006784 <.LVL101>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:385 + if (fd < 0) + 6784: 6622 ld a2,8(sp) + 6786: 06055063 bgez a0,67e6 <.L47> 6786: R_RISCV_BRANCH .L47 +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:388 + { +#if defined(CONFIG_NSH_PROC_MOUNTPOINT) + if (strncmp(filepath, CONFIG_NSH_PROC_MOUNTPOINT, + 678a: 4615 li a2,5 + 678c: 00000597 auipc a1,0x0 678c: R_RISCV_PCREL_HI20 .LC1 + 678c: R_RISCV_RELAX *ABS* + 6790: 00058593 mv a1,a1 6790: R_RISCV_PCREL_LO12_I .L0 + 6790: R_RISCV_RELAX *ABS* + 6794: 8522 mv a0,s0 + +0000000000006796 <.LVL102>: + 6796: 00000097 auipc ra,0x0 6796: R_RISCV_CALL strncmp + 6796: R_RISCV_RELAX *ABS* + 679a: 000080e7 jalr ra # 6796 <.LVL102> + +000000000000679e <.LVL103>: + 679e: e911 bnez a0,67b2 <.L48> 679e: R_RISCV_RVC_BRANCH .L48 +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:391 + sizeof(CONFIG_NSH_PROC_MOUNTPOINT) - 1) == 0) + { + nsh_error(vtbl, + 67a0: 749c ld a5,40(s1) + 67a2: 86a2 mv a3,s0 + 67a4: 864a mv a2,s2 + 67a6: 00000597 auipc a1,0x0 67a6: R_RISCV_PCREL_HI20 .LC2 + 67a6: R_RISCV_RELAX *ABS* + 67aa: 00058593 mv a1,a1 67aa: R_RISCV_PCREL_LO12_I .L0 + 67aa: R_RISCV_RELAX *ABS* + 67ae: 8526 mv a0,s1 + 67b0: 9782 jalr a5 + +00000000000067b2 <.L48>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:397 + "nsh: %s: Could not open %s (is procfs mounted?)\n", + cmd, filepath); + } +#endif + + nsh_error(vtbl, g_fmtcmdfailed, cmd, "open", NSH_ERRNO); + 67b2: 7480 ld s0,40(s1) + +00000000000067b4 <.LVL105>: + 67b4: 00000097 auipc ra,0x0 67b4: R_RISCV_CALL __errno + 67b4: R_RISCV_RELAX *ABS* + 67b8: 000080e7 jalr ra # 67b4 <.LVL105> + +00000000000067bc <.LVL106>: + 67bc: 4118 lw a4,0(a0) + 67be: 00000697 auipc a3,0x0 67be: R_RISCV_PCREL_HI20 .LC3 + 67be: R_RISCV_RELAX *ABS* + 67c2: 00068693 mv a3,a3 67c2: R_RISCV_PCREL_LO12_I .L0 + 67c2: R_RISCV_RELAX *ABS* + 67c6: 864a mv a2,s2 + 67c8: 00000597 auipc a1,0x0 67c8: R_RISCV_PCREL_HI20 g_fmtcmdfailed + 67c8: R_RISCV_RELAX *ABS* + 67cc: 00058593 mv a1,a1 67cc: R_RISCV_PCREL_LO12_I .L0 + 67cc: R_RISCV_RELAX *ABS* + 67d0: 8526 mv a0,s1 + 67d2: 9402 jalr s0 + +00000000000067d4 <.LVL107>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:398 + return ERROR; + 67d4: 557d li a0,-1 + +00000000000067d6 <.L49>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:409 + nsh_error(vtbl, g_fmtcmdfailed, cmd, "write", NSH_ERRNO); + } + + close(fd); + return ret > 0 ? OK : ERROR; +} + 67d6: 70e2 ld ra,56(sp) + 67d8: 7442 ld s0,48(sp) + 67da: 74a2 ld s1,40(sp) + +00000000000067dc <.LVL109>: + 67dc: 7902 ld s2,32(sp) + +00000000000067de <.LVL110>: + 67de: 69e2 ld s3,24(sp) + 67e0: 6a42 ld s4,16(sp) + 67e2: 6121 addi sp,sp,64 + +00000000000067e4 <.LVL111>: + 67e4: 8082 ret + +00000000000067e6 <.L47>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:401 + ret = write(fd, buffer, len); + 67e6: 85d2 mv a1,s4 + 67e8: 89aa mv s3,a0 + 67ea: 00000097 auipc ra,0x0 67ea: R_RISCV_CALL write + 67ea: R_RISCV_RELAX *ABS* + 67ee: 000080e7 jalr ra # 67ea <.L47+0x4> + +00000000000067f2 <.LVL113>: + 67f2: 0005041b sext.w s0,a0 + +00000000000067f6 <.LVL114>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:402 + if (ret < 0) + 67f6: 02045463 bgez s0,681e <.L50> 67f6: R_RISCV_BRANCH .L50 +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:404 + nsh_error(vtbl, g_fmtcmdfailed, cmd, "write", NSH_ERRNO); + 67fa: 0284ba03 ld s4,40(s1) + +00000000000067fe <.LVL115>: + 67fe: 00000097 auipc ra,0x0 67fe: R_RISCV_CALL __errno + 67fe: R_RISCV_RELAX *ABS* + 6802: 000080e7 jalr ra # 67fe <.LVL115> + +0000000000006806 <.LVL116>: + 6806: 4118 lw a4,0(a0) + 6808: 00000697 auipc a3,0x0 6808: R_RISCV_PCREL_HI20 .LC6 + 6808: R_RISCV_RELAX *ABS* + 680c: 00068693 mv a3,a3 680c: R_RISCV_PCREL_LO12_I .L0 + 680c: R_RISCV_RELAX *ABS* + 6810: 864a mv a2,s2 + 6812: 00000597 auipc a1,0x0 6812: R_RISCV_PCREL_HI20 g_fmtcmdfailed + 6812: R_RISCV_RELAX *ABS* + 6816: 00058593 mv a1,a1 6816: R_RISCV_PCREL_LO12_I .L0 + 6816: R_RISCV_RELAX *ABS* + 681a: 8526 mv a0,s1 + 681c: 9a02 jalr s4 + +000000000000681e <.L50>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:407 + close(fd); + 681e: 854e mv a0,s3 + 6820: 00000097 auipc ra,0x0 6820: R_RISCV_CALL close + 6820: R_RISCV_RELAX *ABS* + 6824: 000080e7 jalr ra # 6820 <.L50+0x2> + +0000000000006828 <.LVL118>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:408 + return ret > 0 ? OK : ERROR; + 6828: 00142513 slti a0,s0,1 + 682c: 40a0053b negw a0,a0 + 6830: b75d j 67d6 <.L49> 6830: R_RISCV_RVC_JUMP .L49 + +0000000000006832 : +nsh_foreach_direntry(): +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:435 + +#ifdef NSH_HAVE_FOREACH_DIRENTRY +int nsh_foreach_direntry(FAR struct nsh_vtbl_s *vtbl, FAR const char *cmd, + FAR const char *dirpath, + nsh_direntry_handler_t handler, void *pvarg) +{ + 6832: 7139 addi sp,sp,-64 + 6834: f822 sd s0,48(sp) + 6836: 842a mv s0,a0 +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:441 + DIR *dirp; + int ret = OK; + + /* Open the directory */ + + dirp = opendir(dirpath); + 6838: 8532 mv a0,a2 + +000000000000683a <.LVL120>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:435 +{ + 683a: f426 sd s1,40(sp) + 683c: f04a sd s2,32(sp) + 683e: ec4e sd s3,24(sp) + 6840: e852 sd s4,16(sp) + 6842: e456 sd s5,8(sp) + 6844: fc06 sd ra,56(sp) + 6846: 89ae mv s3,a1 + 6848: 84b2 mv s1,a2 + 684a: 8a36 mv s4,a3 + 684c: 8aba mv s5,a4 +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:441 + dirp = opendir(dirpath); + 684e: 00000097 auipc ra,0x0 684e: R_RISCV_CALL opendir + 684e: R_RISCV_RELAX *ABS* + 6852: 000080e7 jalr ra # 684e <.LVL120+0x14> + +0000000000006856 <.LVL121>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:442 + if (dirp == NULL) + 6856: 892a mv s2,a0 + 6858: e12d bnez a0,68ba <.L53> 6858: R_RISCV_RVC_BRANCH .L53 +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:447 + { + /* Failed to open the directory */ + +#if defined(CONFIG_NSH_PROC_MOUNTPOINT) + if (strncmp(dirpath, CONFIG_NSH_PROC_MOUNTPOINT, + 685a: 4615 li a2,5 + 685c: 00000597 auipc a1,0x0 685c: R_RISCV_PCREL_HI20 .LC1 + 685c: R_RISCV_RELAX *ABS* + 6860: 00058593 mv a1,a1 6860: R_RISCV_PCREL_LO12_I .L0 + 6860: R_RISCV_RELAX *ABS* + 6864: 8526 mv a0,s1 + +0000000000006866 <.LVL122>: + 6866: 00000097 auipc ra,0x0 6866: R_RISCV_CALL strncmp + 6866: R_RISCV_RELAX *ABS* + 686a: 000080e7 jalr ra # 6866 <.LVL122> + +000000000000686e <.LVL123>: + 686e: e911 bnez a0,6882 <.L54> 686e: R_RISCV_RVC_BRANCH .L54 +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:450 + sizeof(CONFIG_NSH_PROC_MOUNTPOINT) - 1) == 0) + { + nsh_error(vtbl, + 6870: 741c ld a5,40(s0) + 6872: 86a6 mv a3,s1 + 6874: 864e mv a2,s3 + 6876: 00000597 auipc a1,0x0 6876: R_RISCV_PCREL_HI20 .LC2 + 6876: R_RISCV_RELAX *ABS* + 687a: 00058593 mv a1,a1 687a: R_RISCV_PCREL_LO12_I .L0 + 687a: R_RISCV_RELAX *ABS* + 687e: 8522 mv a0,s0 + 6880: 9782 jalr a5 + +0000000000006882 <.L54>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:456 + "nsh: %s: Could not open %s (is procfs mounted?)\n", + cmd, dirpath); + } + +#endif + nsh_error(vtbl, g_fmtcmdfailed, cmd, "opendir", NSH_ERRNO); + 6882: 7404 ld s1,40(s0) + +0000000000006884 <.LVL125>: + 6884: 00000097 auipc ra,0x0 6884: R_RISCV_CALL __errno + 6884: R_RISCV_RELAX *ABS* + 6888: 000080e7 jalr ra # 6884 <.LVL125> + +000000000000688c <.LVL126>: + 688c: 4118 lw a4,0(a0) + 688e: 00000697 auipc a3,0x0 688e: R_RISCV_PCREL_HI20 .LC10 + 688e: R_RISCV_RELAX *ABS* + 6892: 00068693 mv a3,a3 6892: R_RISCV_PCREL_LO12_I .L0 + 6892: R_RISCV_RELAX *ABS* + 6896: 8522 mv a0,s0 + 6898: 864e mv a2,s3 + 689a: 00000597 auipc a1,0x0 689a: R_RISCV_PCREL_HI20 g_fmtcmdfailed + 689a: R_RISCV_RELAX *ABS* + 689e: 00058593 mv a1,a1 689e: R_RISCV_PCREL_LO12_I .L0 + 689e: R_RISCV_RELAX *ABS* + 68a2: 9482 jalr s1 + +00000000000068a4 <.LVL127>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:457 + return ERROR; + 68a4: 547d li s0,-1 + +00000000000068a6 <.L55>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:485 + } + } + + closedir(dirp); + return ret; +} + 68a6: 70e2 ld ra,56(sp) + 68a8: 8522 mv a0,s0 + 68aa: 7442 ld s0,48(sp) + 68ac: 74a2 ld s1,40(sp) + 68ae: 7902 ld s2,32(sp) + +00000000000068b0 <.LVL129>: + 68b0: 69e2 ld s3,24(sp) + +00000000000068b2 <.LVL130>: + 68b2: 6a42 ld s4,16(sp) + +00000000000068b4 <.LVL131>: + 68b4: 6aa2 ld s5,8(sp) + +00000000000068b6 <.LVL132>: + 68b6: 6121 addi sp,sp,64 + 68b8: 8082 ret + +00000000000068ba <.L53>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:464 + FAR struct dirent *entryp = readdir(dirp); + 68ba: 854a mv a0,s2 + 68bc: 00000097 auipc ra,0x0 68bc: R_RISCV_CALL readdir + 68bc: R_RISCV_RELAX *ABS* + 68c0: 000080e7 jalr ra # 68bc <.L53+0x2> + +00000000000068c4 <.LVL134>: + 68c4: 862a mv a2,a0 + +00000000000068c6 <.LVL135>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:465 + if (entryp == NULL) + 68c6: cd11 beqz a0,68e2 <.L57> 68c6: R_RISCV_RVC_BRANCH .L57 +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:474 + if (handler(vtbl, dirpath, entryp, pvarg) < 0) + 68c8: 86d6 mv a3,s5 + 68ca: 85a6 mv a1,s1 + 68cc: 8522 mv a0,s0 + +00000000000068ce <.LVL136>: + 68ce: 9a02 jalr s4 + +00000000000068d0 <.LVL137>: + 68d0: fe0555e3 bgez a0,68ba <.L53> 68d0: R_RISCV_BRANCH .L53 +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:478 + ret = ERROR; + 68d4: 547d li s0,-1 + +00000000000068d6 <.L56>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:483 + closedir(dirp); + 68d6: 854a mv a0,s2 + 68d8: 00000097 auipc ra,0x0 68d8: R_RISCV_CALL closedir + 68d8: R_RISCV_RELAX *ABS* + 68dc: 000080e7 jalr ra # 68d8 <.L56+0x2> + +00000000000068e0 <.LVL139>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:484 + return ret; + 68e0: b7d9 j 68a6 <.L55> 68e0: R_RISCV_RVC_JUMP .L55 + +00000000000068e2 <.L57>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:437 + int ret = OK; + 68e2: 4401 li s0,0 + +00000000000068e4 <.LVL141>: + 68e4: bfcd j 68d6 <.L56> 68e4: R_RISCV_RVC_JUMP .L56 + +00000000000068e6 : +nsh_trimdir(): +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:504 + * + ****************************************************************************/ + +#ifdef NSH_HAVE_TRIMDIR +void nsh_trimdir(FAR char *dirpath) +{ + 68e6: 1141 addi sp,sp,-16 + 68e8: e022 sd s0,0(sp) + 68ea: e406 sd ra,8(sp) + 68ec: 842a mv s0,a0 +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:507 + /* Skip any trailing '/' characters (unless it is also the leading '/') */ + + int len = strlen(dirpath) - 1; + 68ee: 00000097 auipc ra,0x0 68ee: R_RISCV_CALL strlen + 68ee: R_RISCV_RELAX *ABS* + 68f2: 000080e7 jalr ra # 68ee + +00000000000068f6 <.LVL143>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:508 + while (len > 0 && dirpath[len] == '/') + 68f6: fff5079b addiw a5,a0,-1 + 68fa: 02f00693 li a3,47 + +00000000000068fe <.L63>: + 68fe: 0007871b sext.w a4,a5 + 6902: 00e05863 blez a4,6912 <.L62> 6902: R_RISCV_BRANCH .L62 + 6906: 00f40733 add a4,s0,a5 +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:508 (discriminator 1) + 690a: 00074603 lbu a2,0(a4) + 690e: 00d60663 beq a2,a3,691a <.L65> 690e: R_RISCV_BRANCH .L65 + +0000000000006912 <.L62>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:513 + { + dirpath[len] = '\0'; + len--; + } +} + 6912: 60a2 ld ra,8(sp) + 6914: 6402 ld s0,0(sp) + +0000000000006916 <.LVL145>: + 6916: 0141 addi sp,sp,16 + 6918: 8082 ret + +000000000000691a <.L65>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:510 + dirpath[len] = '\0'; + 691a: 00070023 sb zero,0(a4) + +000000000000691e <.LVL147>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:511 + len--; + 691e: 17fd addi a5,a5,-1 + +0000000000006920 <.LVL148>: + 6920: bff9 j 68fe <.L63> 6920: R_RISCV_RVC_JUMP .L63 + +0000000000006922 : +nsh_trimspaces(): +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:532 + * + ****************************************************************************/ + +#ifdef NSH_HAVE_TRIMSPACES +FAR char *nsh_trimspaces(FAR char *str) +{ + 6922: 1101 addi sp,sp,-32 + 6924: e822 sd s0,16(sp) + 6926: ec06 sd ra,24(sp) + 6928: e426 sd s1,8(sp) + 692a: e04a sd s2,0(sp) + 692c: 842a mv s0,a0 + +000000000000692e <.L68>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:539 (discriminator 1) + int ndx; + + /* Strip leading whitespace from the value */ + + for (trimmed = str; + *trimmed != '\0' && isspace(*trimmed); + 692e: 00044503 lbu a0,0(s0) +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:538 (discriminator 1) + for (trimmed = str; + 6932: ed05 bnez a0,696a <.L69> 6932: R_RISCV_RVC_BRANCH .L69 + +0000000000006934 <.L72>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:544 + trimmed++); + + /* Strip trailing whitespace from the value */ + + for (ndx = strlen(trimmed) - 1; + 6934: 8522 mv a0,s0 + 6936: 00000097 auipc ra,0x0 6936: R_RISCV_CALL strlen + 6936: R_RISCV_RELAX *ABS* + 693a: 000080e7 jalr ra # 6936 <.L72+0x2> + +000000000000693e <.LVL151>: + 693e: fff5049b addiw s1,a0,-1 + +0000000000006942 <.L70>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:544 (discriminator 1) + 6942: 0004879b sext.w a5,s1 + 6946: 0007cb63 bltz a5,695c <.L67> 6946: R_RISCV_BRANCH .L67 + 694a: 00940933 add s2,s0,s1 +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:545 + ndx >= 0 && isspace(trimmed[ndx]); + 694e: 00094503 lbu a0,0(s2) + 6952: 00000097 auipc ra,0x0 6952: R_RISCV_CALL isspace + 6952: R_RISCV_RELAX *ABS* + 6956: 000080e7 jalr ra # 6952 <.L70+0x10> + +000000000000695a <.LVL153>: + 695a: ed19 bnez a0,6978 <.L74> 695a: R_RISCV_RVC_BRANCH .L74 + +000000000000695c <.L67>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:552 + { + trimmed[ndx] = '\0'; + } + + return trimmed; +} + 695c: 60e2 ld ra,24(sp) + 695e: 8522 mv a0,s0 + 6960: 6442 ld s0,16(sp) + +0000000000006962 <.LVL154>: + 6962: 64a2 ld s1,8(sp) + +0000000000006964 <.LVL155>: + 6964: 6902 ld s2,0(sp) + 6966: 6105 addi sp,sp,32 + 6968: 8082 ret + +000000000000696a <.L69>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:539 + *trimmed != '\0' && isspace(*trimmed); + 696a: 00000097 auipc ra,0x0 696a: R_RISCV_CALL isspace + 696a: R_RISCV_RELAX *ABS* + 696e: 000080e7 jalr ra # 696a <.L69> + +0000000000006972 <.LVL157>: + 6972: d169 beqz a0,6934 <.L72> 6972: R_RISCV_RVC_BRANCH .L72 +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:540 + trimmed++); + 6974: 0405 addi s0,s0,1 + 6976: bf65 j 692e <.L68> 6976: R_RISCV_RVC_JUMP .L68 + +0000000000006978 <.L74>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:548 + trimmed[ndx] = '\0'; + 6978: 00090023 sb zero,0(s2) + +000000000000697c <.LVL160>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:546 + ndx--) + 697c: 14fd addi s1,s1,-1 + +000000000000697e <.LVL161>: + 697e: b7d1 j 6942 <.L70> 697e: R_RISCV_RVC_JUMP .L70 + +0000000000006980 : +nsh_getdirpath(): +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:574 + ****************************************************************************/ + +#ifdef NSH_HAVE_IOBUFFER +FAR char *nsh_getdirpath(FAR struct nsh_vtbl_s *vtbl, + FAR const char *dirpath, FAR const char *path) +{ + 6980: 7179 addi sp,sp,-48 + 6982: ec26 sd s1,24(sp) + 6984: 84ae mv s1,a1 + 6986: f022 sd s0,32(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:577 + /* Handle the case where all that is left is '/' */ + + if (strcmp(dirpath, "/") == 0) + 6988: 00000597 auipc a1,0x0 6988: R_RISCV_PCREL_HI20 .LC11 + 6988: R_RISCV_RELAX *ABS* + 698c: 00058593 mv a1,a1 698c: R_RISCV_PCREL_LO12_I .L0 + 698c: R_RISCV_RELAX *ABS* + +0000000000006990 <.LVL163>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:574 +{ + 6990: 842a mv s0,a0 +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:577 + if (strcmp(dirpath, "/") == 0) + 6992: 8526 mv a0,s1 + +0000000000006994 <.LVL164>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:574 +{ + 6994: f406 sd ra,40(sp) + 6996: e432 sd a2,8(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:577 + if (strcmp(dirpath, "/") == 0) + 6998: 00000097 auipc ra,0x0 6998: R_RISCV_CALL strcmp + 6998: R_RISCV_RELAX *ABS* + 699c: 000080e7 jalr ra # 6998 <.LVL164+0x4> + +00000000000069a0 <.LVL165>: + 69a0: 6722 ld a4,8(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:579 + { + snprintf(vtbl->iobuffer, IOBUFFERSIZE, "/%s", path); + 69a2: 05840413 addi s0,s0,88 + +00000000000069a6 <.LVL166>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:577 + if (strcmp(dirpath, "/") == 0) + 69a6: e515 bnez a0,69d2 <.L77> 69a6: R_RISCV_RVC_BRANCH .L77 +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:579 + snprintf(vtbl->iobuffer, IOBUFFERSIZE, "/%s", path); + 69a8: 86ba mv a3,a4 + 69aa: 00000617 auipc a2,0x0 69aa: R_RISCV_PCREL_HI20 .LC12 + 69aa: R_RISCV_RELAX *ABS* + 69ae: 00060613 mv a2,a2 69ae: R_RISCV_PCREL_LO12_I .L0 + 69ae: R_RISCV_RELAX *ABS* + 69b2: 20000593 li a1,512 + 69b6: 8522 mv a0,s0 + 69b8: 00000097 auipc ra,0x0 69b8: R_RISCV_CALL snprintf + 69b8: R_RISCV_RELAX *ABS* + 69bc: 000080e7 jalr ra # 69b8 <.LVL166+0x12> + +00000000000069c0 <.L78>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:586 + else + { + snprintf(vtbl->iobuffer, IOBUFFERSIZE, "%s/%s", dirpath, path); + } + + return strdup(vtbl->iobuffer); + 69c0: 8522 mv a0,s0 +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:587 +} + 69c2: 7402 ld s0,32(sp) + +00000000000069c4 <.LVL168>: + 69c4: 70a2 ld ra,40(sp) + 69c6: 64e2 ld s1,24(sp) + +00000000000069c8 <.LVL169>: + 69c8: 6145 addi sp,sp,48 + +00000000000069ca <.LVL170>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:586 + return strdup(vtbl->iobuffer); + 69ca: 00000317 auipc t1,0x0 69ca: R_RISCV_CALL strdup + 69ca: R_RISCV_RELAX *ABS* + 69ce: 00030067 jr t1 # 69ca <.LVL170> + +00000000000069d2 <.L77>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:583 + snprintf(vtbl->iobuffer, IOBUFFERSIZE, "%s/%s", dirpath, path); + 69d2: 86a6 mv a3,s1 + 69d4: 00000617 auipc a2,0x0 69d4: R_RISCV_PCREL_HI20 .LC13 + 69d4: R_RISCV_RELAX *ABS* + 69d8: 00060613 mv a2,a2 69d8: R_RISCV_PCREL_LO12_I .L0 + 69d8: R_RISCV_RELAX *ABS* + 69dc: 20000593 li a1,512 + 69e0: 8522 mv a0,s0 + 69e2: 00000097 auipc ra,0x0 69e2: R_RISCV_CALL snprintf + 69e2: R_RISCV_RELAX *ABS* + 69e6: 000080e7 jalr ra # 69e2 <.L77+0x10> + +00000000000069ea <.LVL172>: + 69ea: bfd9 j 69c0 <.L78> 69ea: R_RISCV_RVC_JUMP .L78 + +00000000000069ec : +nsh_getpid(): +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:610 + ****************************************************************************/ + +#if defined(CONFIG_FS_PROCFS) && !defined(CONFIG_NSH_DISABLE_PIDOF) +ssize_t nsh_getpid(FAR struct nsh_vtbl_s *vtbl, FAR const char *name, + FAR pid_t *pids, size_t count) +{ + 69ec: 7179 addi sp,sp,-48 + 69ee: f406 sd ra,40(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:611 + struct getpid_arg_s argv = + 69f0: e02e sd a1,0(sp) + 69f2: e432 sd a2,8(sp) + 69f4: e836 sd a3,16(sp) + 69f6: ec02 sd zero,24(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:621 + 0 + }; + + if (NULL == name || pids == NULL) + { + return -EINVAL; + 69f8: 57a9 li a5,-22 +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:619 + if (NULL == name || pids == NULL) + 69fa: c585 beqz a1,6a22 <.L80> 69fa: R_RISCV_RVC_BRANCH .L80 +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:619 (discriminator 1) + 69fc: c21d beqz a2,6a22 <.L80> 69fc: R_RISCV_RVC_BRANCH .L80 +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:626 + } + + /* No need to determine the return value */ + + nsh_foreach_direntry(vtbl, "pidof", CONFIG_NSH_PROC_MOUNTPOINT, + 69fe: 870a mv a4,sp + 6a00: 00000697 auipc a3,0x0 6a00: R_RISCV_PCREL_HI20 getpid_callback + 6a00: R_RISCV_RELAX *ABS* + 6a04: 00068693 mv a3,a3 6a04: R_RISCV_PCREL_LO12_I .L0 + 6a04: R_RISCV_RELAX *ABS* + +0000000000006a08 <.LVL174>: + 6a08: 00000617 auipc a2,0x0 6a08: R_RISCV_PCREL_HI20 .LC1 + 6a08: R_RISCV_RELAX *ABS* + 6a0c: 00060613 mv a2,a2 6a0c: R_RISCV_PCREL_LO12_I .L0 + 6a0c: R_RISCV_RELAX *ABS* + +0000000000006a10 <.LVL175>: + 6a10: 00000597 auipc a1,0x0 6a10: R_RISCV_PCREL_HI20 .LC14 + 6a10: R_RISCV_RELAX *ABS* + 6a14: 00058593 mv a1,a1 6a14: R_RISCV_PCREL_LO12_I .L0 + 6a14: R_RISCV_RELAX *ABS* + +0000000000006a18 <.LVL176>: + 6a18: 00000097 auipc ra,0x0 6a18: R_RISCV_CALL nsh_foreach_direntry + 6a18: R_RISCV_RELAX *ABS* + 6a1c: 000080e7 jalr ra # 6a18 <.LVL176> + +0000000000006a20 <.LVL177>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:629 + getpid_callback, &argv); + + return argv.next; + 6a20: 67e2 ld a5,24(sp) + +0000000000006a22 <.L80>: +/Users/Luppy/ox64/apps/nshlib/nsh_fsutils.c:630 +} + 6a22: 70a2 ld ra,40(sp) + 6a24: 853e mv a0,a5 + 6a26: 6145 addi sp,sp,48 + 6a28: 8082 ret + +0000000000006a2a : +cmd_free(): +/Users/Luppy/ox64/apps/nshlib/nsh_mmcmds.c:43 +/**************************************************************************** + * Name: cmd_free + ****************************************************************************/ + +int cmd_free(FAR struct nsh_vtbl_s *vtbl, int argc, FAR char **argv) +{ + 6a2a: 87b2 mv a5,a2 +/Users/Luppy/ox64/apps/nshlib/nsh_mmcmds.c:46 + UNUSED(argc); + + return nsh_catfile(vtbl, argv[0], CONFIG_NSH_PROC_MOUNTPOINT "/meminfo"); + 6a2c: 638c ld a1,0(a5) + +0000000000006a2e <.LVL1>: + 6a2e: 00000617 auipc a2,0x0 6a2e: R_RISCV_PCREL_HI20 .LC0 + 6a2e: R_RISCV_RELAX *ABS* + 6a32: 00060613 mv a2,a2 6a32: R_RISCV_PCREL_LO12_I .L0 + 6a32: R_RISCV_RELAX *ABS* + +0000000000006a36 <.LVL2>: + 6a36: 00000317 auipc t1,0x0 6a36: R_RISCV_CALL nsh_catfile + 6a36: R_RISCV_RELAX *ABS* + 6a3a: 00030067 jr t1 # 6a36 <.LVL2> + +0000000000006a3e : +cmd_memdump(): +/Users/Luppy/ox64/apps/nshlib/nsh_mmcmds.c:58 +/**************************************************************************** + * Name: cmd_memdump + ****************************************************************************/ + +int cmd_memdump(FAR struct nsh_vtbl_s *vtbl, int argc, FAR char **argv) +{ + 6a3e: 7175 addi sp,sp,-144 + 6a40: e122 sd s0,128(sp) + 6a42: fca6 sd s1,120(sp) + 6a44: f8ca sd s2,112(sp) + 6a46: 84ae mv s1,a1 + 6a48: 892a mv s2,a0 + 6a4a: 8432 mv s0,a2 +/Users/Luppy/ox64/apps/nshlib/nsh_mmcmds.c:59 + char arg[CONFIG_NSH_LINELEN] = ""; + 6a4c: 4581 li a1,0 + +0000000000006a4e <.LVL5>: + 6a4e: 04800613 li a2,72 + +0000000000006a52 <.LVL6>: + 6a52: 0028 addi a0,sp,8 + +0000000000006a54 <.LVL7>: +/Users/Luppy/ox64/apps/nshlib/nsh_mmcmds.c:58 +{ + 6a54: e506 sd ra,136(sp) + 6a56: f4ce sd s3,104(sp) + 6a58: f0d2 sd s4,96(sp) + 6a5a: ecd6 sd s5,88(sp) + 6a5c: e8da sd s6,80(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_mmcmds.c:59 + char arg[CONFIG_NSH_LINELEN] = ""; + 6a5e: e002 sd zero,0(sp) + 6a60: 00000097 auipc ra,0x0 6a60: R_RISCV_CALL memset + 6a60: R_RISCV_RELAX *ABS* + 6a64: 000080e7 jalr ra # 6a60 <.LVL7+0xc> + +0000000000006a68 <.LVL8>: +/Users/Luppy/ox64/apps/nshlib/nsh_mmcmds.c:62 + int i; + + if (argc == 1) + 6a68: 4785 li a5,1 + 6a6a: 02f49f63 bne s1,a5,6aa8 <.L3> 6a6a: R_RISCV_BRANCH .L3 +/Users/Luppy/ox64/apps/nshlib/nsh_mmcmds.c:64 + { + strlcpy(arg, "used", CONFIG_NSH_LINELEN); + 6a6e: 05000613 li a2,80 + 6a72: 00000597 auipc a1,0x0 6a72: R_RISCV_PCREL_HI20 .LC1 + 6a72: R_RISCV_RELAX *ABS* + 6a76: 00058593 mv a1,a1 6a76: R_RISCV_PCREL_LO12_I .L0 + 6a76: R_RISCV_RELAX *ABS* + 6a7a: 850a mv a0,sp + 6a7c: 00000097 auipc ra,0x0 6a7c: R_RISCV_CALL strlcpy + 6a7c: R_RISCV_RELAX *ABS* + 6a80: 000080e7 jalr ra # 6a7c <.LVL8+0x14> + +0000000000006a84 <.L4>: +/Users/Luppy/ox64/apps/nshlib/nsh_mmcmds.c:84 + strlcat(arg, " ", CONFIG_NSH_LINELEN); + } + } + } + + return nsh_writefile(vtbl, argv[0], arg, strlen(arg), + 6a84: 850a mv a0,sp + 6a86: 00000097 auipc ra,0x0 6a86: R_RISCV_CALL strlen + 6a86: R_RISCV_RELAX *ABS* + 6a8a: 000080e7 jalr ra # 6a86 <.L4+0x2> + +0000000000006a8e <.LVL10>: + 6a8e: 600c ld a1,0(s0) + 6a90: 86aa mv a3,a0 + 6a92: 00000717 auipc a4,0x0 6a92: R_RISCV_PCREL_HI20 .LC4 + 6a92: R_RISCV_RELAX *ABS* + 6a96: 00070713 mv a4,a4 6a96: R_RISCV_PCREL_LO12_I .L0 + 6a96: R_RISCV_RELAX *ABS* + 6a9a: 860a mv a2,sp + 6a9c: 854a mv a0,s2 + 6a9e: 00000097 auipc ra,0x0 6a9e: R_RISCV_CALL nsh_writefile + 6a9e: R_RISCV_RELAX *ABS* + 6aa2: 000080e7 jalr ra # 6a9e <.LVL10+0x10> + +0000000000006aa6 <.LVL11>: + 6aa6: a069 j 6b30 <.L8> 6aa6: R_RISCV_RVC_JUMP .L8 + +0000000000006aa8 <.L3>: +/Users/Luppy/ox64/apps/nshlib/nsh_mmcmds.c:66 + else if (argc >= 2 && (strcmp(argv[1], "-h") == 0 || + 6aa8: fc97dee3 bge a5,s1,6a84 <.L4> 6aa8: R_RISCV_BRANCH .L4 +/Users/Luppy/ox64/apps/nshlib/nsh_mmcmds.c:66 (discriminator 1) + 6aac: 00843983 ld s3,8(s0) + 6ab0: 00000597 auipc a1,0x0 6ab0: R_RISCV_PCREL_HI20 .LC2 + 6ab0: R_RISCV_RELAX *ABS* + 6ab4: 00058593 mv a1,a1 6ab4: R_RISCV_PCREL_LO12_I .L0 + 6ab4: R_RISCV_RELAX *ABS* + 6ab8: 854e mv a0,s3 + 6aba: 00000097 auipc ra,0x0 6aba: R_RISCV_CALL strcmp + 6aba: R_RISCV_RELAX *ABS* + 6abe: 000080e7 jalr ra # 6aba <.L3+0x12> + +0000000000006ac2 <.LVL12>: + 6ac2: cd29 beqz a0,6b1c <.L6> 6ac2: R_RISCV_RVC_BRANCH .L6 +/Users/Luppy/ox64/apps/nshlib/nsh_mmcmds.c:67 (discriminator 2) + strcmp(argv[1], "help") == 0)) + 6ac4: 854e mv a0,s3 + 6ac6: 00000597 auipc a1,0x0 6ac6: R_RISCV_PCREL_HI20 .LC3 + 6ac6: R_RISCV_RELAX *ABS* + 6aca: 00058593 mv a1,a1 6aca: R_RISCV_PCREL_LO12_I .L0 + 6aca: R_RISCV_RELAX *ABS* + 6ace: 00000097 auipc ra,0x0 6ace: R_RISCV_CALL strcmp + 6ace: R_RISCV_RELAX *ABS* + 6ad2: 000080e7 jalr ra # 6ace <.LVL12+0xc> + +0000000000006ad6 <.LVL13>: + 6ad6: 4985 li s3,1 +/Users/Luppy/ox64/apps/nshlib/nsh_mmcmds.c:66 (discriminator 2) + else if (argc >= 2 && (strcmp(argv[1], "-h") == 0 || + 6ad8: c131 beqz a0,6b1c <.L6> 6ad8: R_RISCV_RVC_BRANCH .L6 +/Users/Luppy/ox64/apps/nshlib/nsh_mmcmds.c:77 + if (i < argc - 1) + 6ada: fff48a9b addiw s5,s1,-1 +/Users/Luppy/ox64/apps/nshlib/nsh_mmcmds.c:79 + strlcat(arg, " ", CONFIG_NSH_LINELEN); + 6ade: 00000b17 auipc s6,0x0 6ade: R_RISCV_PCREL_HI20 .LC5 + 6ade: R_RISCV_RELAX *ABS* + 6ae2: 000b0b13 mv s6,s6 6ae2: R_RISCV_PCREL_LO12_I .L0 + 6ae2: R_RISCV_RELAX *ABS* + +0000000000006ae6 <.L7>: +/Users/Luppy/ox64/apps/nshlib/nsh_mmcmds.c:74 (discriminator 1) + for (i = 1; i < argc; i++) + 6ae6: 00098a1b sext.w s4,s3 + 6aea: f89a5de3 bge s4,s1,6a84 <.L4> 6aea: R_RISCV_BRANCH .L4 +/Users/Luppy/ox64/apps/nshlib/nsh_mmcmds.c:76 + strlcat(arg, argv[i], CONFIG_NSH_LINELEN); + 6aee: 00399793 slli a5,s3,0x3 + 6af2: 97a2 add a5,a5,s0 + 6af4: 638c ld a1,0(a5) + 6af6: 05000613 li a2,80 + 6afa: 850a mv a0,sp + 6afc: 00000097 auipc ra,0x0 6afc: R_RISCV_CALL strlcat + 6afc: R_RISCV_RELAX *ABS* + 6b00: 000080e7 jalr ra # 6afc <.L7+0x16> + +0000000000006b04 <.LVL15>: +/Users/Luppy/ox64/apps/nshlib/nsh_mmcmds.c:77 + if (i < argc - 1) + 6b04: 015a5a63 bge s4,s5,6b18 <.L9> 6b04: R_RISCV_BRANCH .L9 +/Users/Luppy/ox64/apps/nshlib/nsh_mmcmds.c:79 + strlcat(arg, " ", CONFIG_NSH_LINELEN); + 6b08: 05000613 li a2,80 + 6b0c: 85da mv a1,s6 + 6b0e: 850a mv a0,sp + 6b10: 00000097 auipc ra,0x0 6b10: R_RISCV_CALL strlcat + 6b10: R_RISCV_RELAX *ABS* + 6b14: 000080e7 jalr ra # 6b10 <.LVL15+0xc> + +0000000000006b18 <.L9>: +/Users/Luppy/ox64/apps/nshlib/nsh_mmcmds.c:74 (discriminator 2) + for (i = 1; i < argc; i++) + 6b18: 0985 addi s3,s3,1 + +0000000000006b1a <.LVL17>: + 6b1a: b7f1 j 6ae6 <.L7> 6b1a: R_RISCV_RVC_JUMP .L7 + +0000000000006b1c <.L6>: +/Users/Luppy/ox64/apps/nshlib/nsh_mmcmds.c:69 + return nsh_catfile(vtbl, argv[0], + 6b1c: 600c ld a1,0(s0) + 6b1e: 00000617 auipc a2,0x0 6b1e: R_RISCV_PCREL_HI20 .LC4 + 6b1e: R_RISCV_RELAX *ABS* + 6b22: 00060613 mv a2,a2 6b22: R_RISCV_PCREL_LO12_I .L0 + 6b22: R_RISCV_RELAX *ABS* + 6b26: 854a mv a0,s2 + 6b28: 00000097 auipc ra,0x0 6b28: R_RISCV_CALL nsh_catfile + 6b28: R_RISCV_RELAX *ABS* + 6b2c: 000080e7 jalr ra # 6b28 <.L6+0xc> + +0000000000006b30 <.L8>: +/Users/Luppy/ox64/apps/nshlib/nsh_mmcmds.c:86 + CONFIG_NSH_PROC_MOUNTPOINT "/memdump"); +} + 6b30: 60aa ld ra,136(sp) + 6b32: 640a ld s0,128(sp) + +0000000000006b34 <.LVL20>: + 6b34: 74e6 ld s1,120(sp) + 6b36: 7946 ld s2,112(sp) + +0000000000006b38 <.LVL21>: + 6b38: 79a6 ld s3,104(sp) + 6b3a: 7a06 ld s4,96(sp) + 6b3c: 6ae6 ld s5,88(sp) + 6b3e: 6b46 ld s6,80(sp) + 6b40: 6149 addi sp,sp,144 + 6b42: 8082 ret + +0000000000006b44 : +cmd_df(): +/Users/Luppy/ox64/apps/nshlib/nsh_mntcmds.c:58 + ****************************************************************************/ + +#if !defined(CONFIG_DISABLE_MOUNTPOINT) && !defined(CONFIG_NSH_DISABLE_DF) +#ifdef NSH_HAVE_CATFILE +int cmd_df(FAR struct nsh_vtbl_s *vtbl, int argc, FAR char **argv) +{ + 6b44: 1101 addi sp,sp,-32 + 6b46: e822 sd s0,16(sp) + 6b48: ec06 sd ra,24(sp) + 6b4a: e426 sd s1,8(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_mntcmds.c:60 +#if defined(HAVE_DF_HUMANREADBLE) && defined(HAVE_DF_BLOCKOUTPUT) + if (argc > 1 && strcmp(argv[1], "-h") == 0) + 6b4c: 4785 li a5,1 +/Users/Luppy/ox64/apps/nshlib/nsh_mntcmds.c:64 +#endif +#ifdef HAVE_DF_HUMANREADBLE + { + return nsh_catfile(vtbl, argv[0], + 6b4e: 6204 ld s1,0(a2) +/Users/Luppy/ox64/apps/nshlib/nsh_mntcmds.c:58 +{ + 6b50: 842a mv s0,a0 +/Users/Luppy/ox64/apps/nshlib/nsh_mntcmds.c:60 + if (argc > 1 && strcmp(argv[1], "-h") == 0) + 6b52: 02b7d063 bge a5,a1,6b72 <.L2> 6b52: R_RISCV_BRANCH .L2 +/Users/Luppy/ox64/apps/nshlib/nsh_mntcmds.c:60 (discriminator 1) + 6b56: 6608 ld a0,8(a2) + +0000000000006b58 <.LVL1>: + 6b58: 00000597 auipc a1,0x0 6b58: R_RISCV_PCREL_HI20 .LC0 + 6b58: R_RISCV_RELAX *ABS* + 6b5c: 00058593 mv a1,a1 6b5c: R_RISCV_PCREL_LO12_I .L0 + 6b5c: R_RISCV_RELAX *ABS* + +0000000000006b60 <.LVL2>: + 6b60: 00000097 auipc ra,0x0 6b60: R_RISCV_CALL strcmp + 6b60: R_RISCV_RELAX *ABS* + 6b64: 000080e7 jalr ra # 6b60 <.LVL2> + +0000000000006b68 <.LVL3>: +/Users/Luppy/ox64/apps/nshlib/nsh_mntcmds.c:64 (discriminator 1) + return nsh_catfile(vtbl, argv[0], + 6b68: 00000617 auipc a2,0x0 6b68: R_RISCV_PCREL_HI20 .LC1 + 6b68: R_RISCV_RELAX *ABS* + 6b6c: 00060613 mv a2,a2 6b6c: R_RISCV_PCREL_LO12_I .L0 + 6b6c: R_RISCV_RELAX *ABS* +/Users/Luppy/ox64/apps/nshlib/nsh_mntcmds.c:60 (discriminator 1) + if (argc > 1 && strcmp(argv[1], "-h") == 0) + 6b70: c509 beqz a0,6b7a <.L4> 6b70: R_RISCV_RVC_BRANCH .L4 + +0000000000006b72 <.L2>: +/Users/Luppy/ox64/apps/nshlib/nsh_mntcmds.c:73 +#if defined(HAVE_DF_HUMANREADBLE) && defined(HAVE_DF_BLOCKOUTPUT) + else +#endif +#ifdef HAVE_DF_BLOCKOUTPUT + { + return nsh_catfile(vtbl, argv[0], + 6b72: 00000617 auipc a2,0x0 6b72: R_RISCV_PCREL_HI20 .LC2 + 6b72: R_RISCV_RELAX *ABS* + 6b76: 00060613 mv a2,a2 6b76: R_RISCV_PCREL_LO12_I .L0 + 6b76: R_RISCV_RELAX *ABS* + +0000000000006b7a <.L4>: + 6b7a: 8522 mv a0,s0 +/Users/Luppy/ox64/apps/nshlib/nsh_mntcmds.c:77 + CONFIG_NSH_PROC_MOUNTPOINT "/fs/blocks"); + } +#endif +} + 6b7c: 6442 ld s0,16(sp) + +0000000000006b7e <.LVL4>: + 6b7e: 60e2 ld ra,24(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_mntcmds.c:73 + return nsh_catfile(vtbl, argv[0], + 6b80: 85a6 mv a1,s1 +/Users/Luppy/ox64/apps/nshlib/nsh_mntcmds.c:77 +} + 6b82: 64a2 ld s1,8(sp) + 6b84: 6105 addi sp,sp,32 +/Users/Luppy/ox64/apps/nshlib/nsh_mntcmds.c:73 + return nsh_catfile(vtbl, argv[0], + 6b86: 00000317 auipc t1,0x0 6b86: R_RISCV_CALL nsh_catfile + 6b86: R_RISCV_RELAX *ABS* + 6b8a: 00030067 jr t1 # 6b86 <.LVL4+0x8> + +0000000000006b8e : +cmd_mount(): +/Users/Luppy/ox64/apps/nshlib/nsh_mntcmds.c:87 + * Name: cmd_mount + ****************************************************************************/ + +#if !defined(CONFIG_DISABLE_MOUNTPOINT) && !defined(CONFIG_NSH_DISABLE_MOUNT) +int cmd_mount(FAR struct nsh_vtbl_s *vtbl, int argc, FAR char **argv) +{ + 6b8e: 7119 addi sp,sp,-128 + 6b90: f0ca sd s2,96(sp) + 6b92: fc86 sd ra,120(sp) + 6b94: f8a2 sd s0,112(sp) + 6b96: f4a6 sd s1,104(sp) + 6b98: ecce sd s3,88(sp) + 6b9a: e8d2 sd s4,80(sp) + 6b9c: e4d6 sd s5,72(sp) + 6b9e: e0da sd s6,64(sp) + 6ba0: fc5e sd s7,56(sp) + 6ba2: f862 sd s8,48(sp) + 6ba4: f466 sd s9,40(sp) + 6ba6: f06a sd s10,32(sp) + 6ba8: ec6e sd s11,24(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_mntcmds.c:101 + int ret; + + /* The mount command behaves differently if no parameters are provided. */ + +#if defined(NSH_HAVE_CATFILE) && defined(HAVE_MOUNT_LIST) + if (argc < 2) + 6baa: 4785 li a5,1 +/Users/Luppy/ox64/apps/nshlib/nsh_mntcmds.c:87 +{ + 6bac: 8932 mv s2,a2 +/Users/Luppy/ox64/apps/nshlib/nsh_mntcmds.c:101 + if (argc < 2) + 6bae: 0ab7c563 blt a5,a1,6c58 <.L26> 6bae: R_RISCV_BRANCH .L26 +/Users/Luppy/ox64/apps/nshlib/nsh_mntcmds.c:229 + { + nsh_freefullpath(fulltarget); + } + + return ret; +} + 6bb2: 7446 ld s0,112(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_mntcmds.c:103 + return nsh_catfile(vtbl, argv[0], + 6bb4: 00093583 ld a1,0(s2) + +0000000000006bb8 <.LVL7>: +/Users/Luppy/ox64/apps/nshlib/nsh_mntcmds.c:229 +} + 6bb8: 70e6 ld ra,120(sp) + 6bba: 74a6 ld s1,104(sp) + 6bbc: 7906 ld s2,96(sp) + 6bbe: 69e6 ld s3,88(sp) + 6bc0: 6a46 ld s4,80(sp) + 6bc2: 6aa6 ld s5,72(sp) + 6bc4: 6b06 ld s6,64(sp) + 6bc6: 7be2 ld s7,56(sp) + 6bc8: 7c42 ld s8,48(sp) + 6bca: 7ca2 ld s9,40(sp) + 6bcc: 7d02 ld s10,32(sp) + 6bce: 6de2 ld s11,24(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_mntcmds.c:103 + return nsh_catfile(vtbl, argv[0], + 6bd0: 00000617 auipc a2,0x0 6bd0: R_RISCV_PCREL_HI20 .LC3 + 6bd0: R_RISCV_RELAX *ABS* + 6bd4: 00060613 mv a2,a2 6bd4: R_RISCV_PCREL_LO12_I .L0 + 6bd4: R_RISCV_RELAX *ABS* + +0000000000006bd8 <.LVL8>: +/Users/Luppy/ox64/apps/nshlib/nsh_mntcmds.c:229 +} + 6bd8: 6109 addi sp,sp,128 +/Users/Luppy/ox64/apps/nshlib/nsh_mntcmds.c:103 + return nsh_catfile(vtbl, argv[0], + 6bda: 00000317 auipc t1,0x0 6bda: R_RISCV_CALL nsh_catfile + 6bda: R_RISCV_RELAX *ABS* + 6bde: 00030067 jr t1 # 6bda <.LVL8+0x2> + +0000000000006be2 <.L12>: +/Users/Luppy/ox64/apps/nshlib/nsh_mntcmds.c:116 + switch (option) + 6be2: 07748463 beq s1,s7,6c4a <.L7> 6be2: R_RISCV_BRANCH .L7 + 6be6: 01848d63 beq s1,s8,6c00 <.L8> 6be6: R_RISCV_BRANCH .L8 + 6bea: 00093603 ld a2,0(s2) + 6bee: 741c ld a5,40(s0) +/Users/Luppy/ox64/apps/nshlib/nsh_mntcmds.c:133 + nsh_error(vtbl, g_fmtarginvalid, argv[0]); + 6bf0: 85ea mv a1,s10 +/Users/Luppy/ox64/apps/nshlib/nsh_mntcmds.c:116 + switch (option) + 6bf2: 01949363 bne s1,s9,6bf8 <.L42> 6bf2: R_RISCV_BRANCH .L42 +/Users/Luppy/ox64/apps/nshlib/nsh_mntcmds.c:127 + nsh_error(vtbl, g_fmtargrequired, argv[0]); + 6bf6: 85ee mv a1,s11 + +0000000000006bf8 <.L42>: +/Users/Luppy/ox64/apps/nshlib/nsh_mntcmds.c:133 + nsh_error(vtbl, g_fmtarginvalid, argv[0]); + 6bf8: 8522 mv a0,s0 + +0000000000006bfa <.LVL10>: + 6bfa: 9782 jalr a5 + +0000000000006bfc <.LVL11>: +/Users/Luppy/ox64/apps/nshlib/nsh_mntcmds.c:134 + badarg = true; + 6bfc: 4a85 li s5,1 +/Users/Luppy/ox64/apps/nshlib/nsh_mntcmds.c:135 + break; + 6bfe: a039 j 6c0c <.L6> 6bfe: R_RISCV_RVC_JUMP .L6 + +0000000000006c00 <.L8>: +/Users/Luppy/ox64/apps/nshlib/nsh_mntcmds.c:119 + filesystem = optarg; + 6c00: 00000097 auipc ra,0x0 6c00: R_RISCV_CALL getoptargp + 6c00: R_RISCV_RELAX *ABS* + 6c04: 000080e7 jalr ra # 6c00 <.L8> + +0000000000006c08 <.LVL13>: + 6c08: 00053a03 ld s4,0(a0) # 66ec <.L45> + +0000000000006c0c <.L6>: +/Users/Luppy/ox64/apps/nshlib/nsh_mntcmds.c:114 + while ((option = getopt(argc, argv, ":o:t:")) != ERROR) + 6c0c: 00000617 auipc a2,0x0 6c0c: R_RISCV_PCREL_HI20 .LC4 + 6c0c: R_RISCV_RELAX *ABS* + 6c10: 00060613 mv a2,a2 6c10: R_RISCV_PCREL_LO12_I .L0 + 6c10: R_RISCV_RELAX *ABS* + 6c14: 85ca mv a1,s2 + 6c16: 854e mv a0,s3 + 6c18: 00000097 auipc ra,0x0 6c18: R_RISCV_CALL getopt + 6c18: R_RISCV_RELAX *ABS* + 6c1c: 000080e7 jalr ra # 6c18 <.L6+0xc> + +0000000000006c20 <.LVL15>: + 6c20: 57fd li a5,-1 + 6c22: 84aa mv s1,a0 + +0000000000006c24 <.LVL16>: + 6c24: faf51fe3 bne a0,a5,6be2 <.L12> 6c24: R_RISCV_BRANCH .L12 +/Users/Luppy/ox64/apps/nshlib/nsh_mntcmds.c:143 + if (badarg) + 6c28: 0c0a9363 bnez s5,6cee <.L27> 6c28: R_RISCV_BRANCH .L27 +/Users/Luppy/ox64/apps/nshlib/nsh_mntcmds.c:153 + if (optind >= argc) + 6c2c: 00000097 auipc ra,0x0 6c2c: R_RISCV_CALL getoptindp + 6c2c: R_RISCV_RELAX *ABS* + 6c30: 000080e7 jalr ra # 6c2c <.LVL16+0x8> + +0000000000006c34 <.LVL17>: + 6c34: 411c lw a5,0(a0) + 6c36: 0537c563 blt a5,s3,6c80 <.L15> 6c36: R_RISCV_BRANCH .L15 + +0000000000006c3a <.L25>: +/Users/Luppy/ox64/apps/nshlib/nsh_mntcmds.c:182 + nsh_error(vtbl, g_fmtargrequired, argv[0]); + 6c3a: 741c ld a5,40(s0) + 6c3c: 00093603 ld a2,0(s2) + 6c40: 00000597 auipc a1,0x0 6c40: R_RISCV_PCREL_HI20 g_fmtargrequired + 6c40: R_RISCV_RELAX *ABS* + 6c44: 00058593 mv a1,a1 6c44: R_RISCV_PCREL_LO12_I .L0 + 6c44: R_RISCV_RELAX *ABS* + 6c48: a04d j 6cea <.L43> 6c48: R_RISCV_RVC_JUMP .L43 + +0000000000006c4a <.L7>: +/Users/Luppy/ox64/apps/nshlib/nsh_mntcmds.c:123 + options = optarg; + 6c4a: 00000097 auipc ra,0x0 6c4a: R_RISCV_CALL getoptargp + 6c4a: R_RISCV_RELAX *ABS* + 6c4e: 000080e7 jalr ra # 6c4a <.L7> + +0000000000006c52 <.LVL20>: + 6c52: 00053b03 ld s6,0(a0) +/Users/Luppy/ox64/apps/nshlib/nsh_mntcmds.c:124 + break; + 6c56: bf5d j 6c0c <.L6> 6c56: R_RISCV_RVC_JUMP .L6 + +0000000000006c58 <.L26>: + 6c58: 842a mv s0,a0 + 6c5a: 89ae mv s3,a1 +/Users/Luppy/ox64/apps/nshlib/nsh_mntcmds.c:94 + bool badarg = false; + 6c5c: 4a81 li s5,0 +/Users/Luppy/ox64/apps/nshlib/nsh_mntcmds.c:93 + FAR const char *options = NULL; + 6c5e: 4b01 li s6,0 +/Users/Luppy/ox64/apps/nshlib/nsh_mntcmds.c:92 + FAR const char *filesystem = NULL; + 6c60: 4a01 li s4,0 +/Users/Luppy/ox64/apps/nshlib/nsh_mntcmds.c:116 + switch (option) + 6c62: 06f00b93 li s7,111 + 6c66: 07400c13 li s8,116 + 6c6a: 03a00c93 li s9,58 +/Users/Luppy/ox64/apps/nshlib/nsh_mntcmds.c:133 + nsh_error(vtbl, g_fmtarginvalid, argv[0]); + 6c6e: 00000d17 auipc s10,0x0 6c6e: R_RISCV_PCREL_HI20 g_fmtarginvalid + 6c6e: R_RISCV_RELAX *ABS* + 6c72: 000d0d13 mv s10,s10 6c72: R_RISCV_PCREL_LO12_I .L0 + 6c72: R_RISCV_RELAX *ABS* +/Users/Luppy/ox64/apps/nshlib/nsh_mntcmds.c:127 + nsh_error(vtbl, g_fmtargrequired, argv[0]); + 6c76: 00000d97 auipc s11,0x0 6c76: R_RISCV_PCREL_HI20 g_fmtargrequired + 6c76: R_RISCV_RELAX *ABS* + 6c7a: 000d8d93 mv s11,s11 6c7a: R_RISCV_PCREL_LO12_I .L0 + 6c7a: R_RISCV_RELAX *ABS* + 6c7e: b779 j 6c0c <.L6> 6c7e: R_RISCV_RVC_JUMP .L6 + +0000000000006c80 <.L15>: +/Users/Luppy/ox64/apps/nshlib/nsh_mntcmds.c:160 + target = argv[optind]; + 6c80: 00000097 auipc ra,0x0 6c80: R_RISCV_CALL getoptindp + 6c80: R_RISCV_RELAX *ABS* + 6c84: 000080e7 jalr ra # 6c80 <.L15> + +0000000000006c88 <.LVL24>: + 6c88: 411c lw a5,0(a0) + 6c8a: 078e slli a5,a5,0x3 + 6c8c: 97ca add a5,a5,s2 + 6c8e: 0007ba83 ld s5,0(a5) + +0000000000006c92 <.LVL25>: +/Users/Luppy/ox64/apps/nshlib/nsh_mntcmds.c:161 + optind++; + 6c92: 00000097 auipc ra,0x0 6c92: R_RISCV_CALL getoptindp + 6c92: R_RISCV_RELAX *ABS* + 6c96: 000080e7 jalr ra # 6c92 <.LVL25> + +0000000000006c9a <.LVL26>: + 6c9a: 411c lw a5,0(a0) + 6c9c: 2785 addiw a5,a5,1 + 6c9e: c11c sw a5,0(a0) +/Users/Luppy/ox64/apps/nshlib/nsh_mntcmds.c:163 + if (optind < argc) + 6ca0: 00000097 auipc ra,0x0 6ca0: R_RISCV_CALL getoptindp + 6ca0: R_RISCV_RELAX *ABS* + 6ca4: 000080e7 jalr ra # 6ca0 <.LVL26+0x6> + +0000000000006ca8 <.LVL27>: + 6ca8: 411c lw a5,0(a0) + 6caa: 0f37d963 bge a5,s3,6d9c <.L16> 6caa: R_RISCV_BRANCH .L16 + +0000000000006cae <.LVL28>: +/Users/Luppy/ox64/apps/nshlib/nsh_mntcmds.c:166 + target = argv[optind]; + 6cae: 00000097 auipc ra,0x0 6cae: R_RISCV_CALL getoptindp + 6cae: R_RISCV_RELAX *ABS* + 6cb2: 000080e7 jalr ra # 6cae <.LVL28> + +0000000000006cb6 <.LVL29>: + 6cb6: 411c lw a5,0(a0) + 6cb8: 078e slli a5,a5,0x3 + 6cba: 97ca add a5,a5,s2 + 6cbc: 0007bb83 ld s7,0(a5) + +0000000000006cc0 <.LVL30>: +/Users/Luppy/ox64/apps/nshlib/nsh_mntcmds.c:167 + optind++; + 6cc0: 00000097 auipc ra,0x0 6cc0: R_RISCV_CALL getoptindp + 6cc0: R_RISCV_RELAX *ABS* + 6cc4: 000080e7 jalr ra # 6cc0 <.LVL30> + +0000000000006cc8 <.LVL31>: + 6cc8: 411c lw a5,0(a0) + 6cca: 2785 addiw a5,a5,1 + 6ccc: c11c sw a5,0(a0) +/Users/Luppy/ox64/apps/nshlib/nsh_mntcmds.c:169 + if (optind < argc) + 6cce: 00000097 auipc ra,0x0 6cce: R_RISCV_CALL getoptindp + 6cce: R_RISCV_RELAX *ABS* + 6cd2: 000080e7 jalr ra # 6cce <.LVL31+0x6> + +0000000000006cd6 <.LVL32>: + 6cd6: 411c lw a5,0(a0) + 6cd8: 0337db63 bge a5,s3,6d0e <.L17> 6cd8: R_RISCV_BRANCH .L17 +/Users/Luppy/ox64/apps/nshlib/nsh_mntcmds.c:171 + nsh_error(vtbl, g_fmttoomanyargs, argv[0]); + 6cdc: 741c ld a5,40(s0) + 6cde: 00093603 ld a2,0(s2) + 6ce2: 00000597 auipc a1,0x0 6ce2: R_RISCV_PCREL_HI20 g_fmttoomanyargs + 6ce2: R_RISCV_RELAX *ABS* + 6ce6: 00058593 mv a1,a1 6ce6: R_RISCV_PCREL_LO12_I .L0 + 6ce6: R_RISCV_RELAX *ABS* + +0000000000006cea <.L43>: +/Users/Luppy/ox64/apps/nshlib/nsh_mntcmds.c:182 + nsh_error(vtbl, g_fmtargrequired, argv[0]); + 6cea: 8522 mv a0,s0 + 6cec: 9782 jalr a5 + +0000000000006cee <.L27>: +/Users/Luppy/ox64/apps/nshlib/nsh_mntcmds.c:229 +} + 6cee: 70e6 ld ra,120(sp) + 6cf0: 7446 ld s0,112(sp) + +0000000000006cf2 <.LVL35>: + 6cf2: 7906 ld s2,96(sp) + +0000000000006cf4 <.LVL36>: + 6cf4: 69e6 ld s3,88(sp) + 6cf6: 6a46 ld s4,80(sp) + 6cf8: 6aa6 ld s5,72(sp) + 6cfa: 6b06 ld s6,64(sp) + +0000000000006cfc <.LVL37>: + 6cfc: 7be2 ld s7,56(sp) + 6cfe: 7c42 ld s8,48(sp) + 6d00: 7ca2 ld s9,40(sp) + 6d02: 7d02 ld s10,32(sp) + 6d04: 6de2 ld s11,24(sp) + 6d06: 8526 mv a0,s1 + 6d08: 74a6 ld s1,104(sp) + 6d0a: 6109 addi sp,sp,128 + 6d0c: 8082 ret + +0000000000006d0e <.L17>: +/Users/Luppy/ox64/apps/nshlib/nsh_mntcmds.c:180 + if (!filesystem) + 6d0e: f20a06e3 beqz s4,6c3a <.L25> 6d0e: R_RISCV_BRANCH .L25 + +0000000000006d12 <.LVL39>: +/Users/Luppy/ox64/apps/nshlib/nsh_mntcmds.c:193 + if (source) + 6d12: 000a8a63 beqz s5,6d26 <.L19> 6d12: R_RISCV_BRANCH .L19 +/Users/Luppy/ox64/apps/nshlib/nsh_mntcmds.c:195 + fullsource = nsh_getfullpath(vtbl, source); + 6d16: 85d6 mv a1,s5 + 6d18: 8522 mv a0,s0 + 6d1a: 00000097 auipc ra,0x0 6d1a: R_RISCV_CALL nsh_getfullpath + 6d1a: R_RISCV_RELAX *ABS* + 6d1e: 000080e7 jalr ra # 6d1a <.LVL39+0x8> + +0000000000006d22 <.LVL40>: + 6d22: 8aaa mv s5,a0 + +0000000000006d24 <.LVL41>: +/Users/Luppy/ox64/apps/nshlib/nsh_mntcmds.c:196 + if (!fullsource) + 6d24: d569 beqz a0,6cee <.L27> 6d24: R_RISCV_RVC_BRANCH .L27 + +0000000000006d26 <.L19>: +/Users/Luppy/ox64/apps/nshlib/nsh_mntcmds.c:202 + fulltarget = nsh_getfullpath(vtbl, target); + 6d26: 85de mv a1,s7 + 6d28: 8522 mv a0,s0 + 6d2a: 00000097 auipc ra,0x0 6d2a: R_RISCV_CALL nsh_getfullpath + 6d2a: R_RISCV_RELAX *ABS* + 6d2e: 000080e7 jalr ra # 6d2a <.L19+0x4> + +0000000000006d32 <.LVL43>: + 6d32: 89aa mv s3,a0 + +0000000000006d34 <.LVL44>: +/Users/Luppy/ox64/apps/nshlib/nsh_mntcmds.c:203 + if (!fulltarget) + 6d34: c529 beqz a0,6d7e <.L21> 6d34: R_RISCV_RVC_BRANCH .L21 +/Users/Luppy/ox64/apps/nshlib/nsh_mntcmds.c:211 + ret = mount(fullsource, fulltarget, filesystem, 0, options); + 6d36: 85aa mv a1,a0 + 6d38: 875a mv a4,s6 + 6d3a: 4681 li a3,0 + 6d3c: 8652 mv a2,s4 + 6d3e: 8556 mv a0,s5 + +0000000000006d40 <.LVL45>: + 6d40: 00000097 auipc ra,0x0 6d40: R_RISCV_CALL mount + 6d40: R_RISCV_RELAX *ABS* + 6d44: 000080e7 jalr ra # 6d40 <.LVL45> + +0000000000006d48 <.LVL46>: + 6d48: 84aa mv s1,a0 + +0000000000006d4a <.LVL47>: +/Users/Luppy/ox64/apps/nshlib/nsh_mntcmds.c:212 + if (ret < 0) + 6d4a: 02055763 bgez a0,6d78 <.L22> 6d4a: R_RISCV_BRANCH .L22 +/Users/Luppy/ox64/apps/nshlib/nsh_mntcmds.c:214 + nsh_error(vtbl, g_fmtcmdfailed, argv[0], "mount", NSH_ERRNO); + 6d4e: 00093603 ld a2,0(s2) + 6d52: 02843a03 ld s4,40(s0) + +0000000000006d56 <.LVL48>: + 6d56: e432 sd a2,8(sp) + 6d58: 00000097 auipc ra,0x0 6d58: R_RISCV_CALL __errno + 6d58: R_RISCV_RELAX *ABS* + 6d5c: 000080e7 jalr ra # 6d58 <.LVL48+0x2> + +0000000000006d60 <.LVL49>: + 6d60: 4118 lw a4,0(a0) + 6d62: 6622 ld a2,8(sp) + 6d64: 00000697 auipc a3,0x0 6d64: R_RISCV_PCREL_HI20 .LC5 + 6d64: R_RISCV_RELAX *ABS* + 6d68: 00068693 mv a3,a3 6d68: R_RISCV_PCREL_LO12_I .L0 + 6d68: R_RISCV_RELAX *ABS* + 6d6c: 00000597 auipc a1,0x0 6d6c: R_RISCV_PCREL_HI20 g_fmtcmdfailed + 6d6c: R_RISCV_RELAX *ABS* + 6d70: 00058593 mv a1,a1 6d70: R_RISCV_PCREL_LO12_I .L0 + 6d70: R_RISCV_RELAX *ABS* + 6d74: 8522 mv a0,s0 + 6d76: 9a02 jalr s4 + +0000000000006d78 <.L22>: +/Users/Luppy/ox64/apps/nshlib/nsh_mntcmds.c:218 + if (fullsource) + 6d78: 000a9563 bnez s5,6d82 <.L23> 6d78: R_RISCV_BRANCH .L23 + 6d7c: a811 j 6d90 <.L24> 6d7c: R_RISCV_RVC_JUMP .L24 + +0000000000006d7e <.L21>: + 6d7e: f60a88e3 beqz s5,6cee <.L27> 6d7e: R_RISCV_BRANCH .L27 + +0000000000006d82 <.L23>: +/Users/Luppy/ox64/apps/nshlib/nsh_mntcmds.c:220 + nsh_freefullpath(fullsource); + 6d82: 8556 mv a0,s5 + 6d84: 00000097 auipc ra,0x0 6d84: R_RISCV_CALL nsh_freefullpath + 6d84: R_RISCV_RELAX *ABS* + 6d88: 000080e7 jalr ra # 6d84 <.L23+0x2> + +0000000000006d8c <.LVL53>: +/Users/Luppy/ox64/apps/nshlib/nsh_mntcmds.c:223 + if (fulltarget) + 6d8c: f60981e3 beqz s3,6cee <.L27> 6d8c: R_RISCV_BRANCH .L27 + +0000000000006d90 <.L24>: +/Users/Luppy/ox64/apps/nshlib/nsh_mntcmds.c:225 + nsh_freefullpath(fulltarget); + 6d90: 854e mv a0,s3 + 6d92: 00000097 auipc ra,0x0 6d92: R_RISCV_CALL nsh_freefullpath + 6d92: R_RISCV_RELAX *ABS* + 6d96: 000080e7 jalr ra # 6d92 <.L24+0x2> + +0000000000006d9a <.LVL54>: + 6d9a: bf91 j 6cee <.L27> 6d9a: R_RISCV_RVC_JUMP .L27 + +0000000000006d9c <.L16>: +/Users/Luppy/ox64/apps/nshlib/nsh_mntcmds.c:180 + if (!filesystem) + 6d9c: e80a0fe3 beqz s4,6c3a <.L25> 6d9c: R_RISCV_BRANCH .L25 +/Users/Luppy/ox64/apps/nshlib/nsh_mntcmds.c:160 + target = argv[optind]; + 6da0: 8bd6 mv s7,s5 +/Users/Luppy/ox64/apps/nshlib/nsh_mntcmds.c:190 + fullsource = NULL; + 6da2: 4a81 li s5,0 + +0000000000006da4 <.LVL56>: + 6da4: b749 j 6d26 <.L19> 6da4: R_RISCV_RVC_JUMP .L19 + +0000000000006da6 : +cmd_umount(): +/Users/Luppy/ox64/apps/nshlib/nsh_mntcmds.c:363 + * Name: cmd_umount + ****************************************************************************/ + +#if !defined(CONFIG_DISABLE_MOUNTPOINT) && !defined(CONFIG_NSH_DISABLE_UMOUNT) +int cmd_umount(FAR struct nsh_vtbl_s *vtbl, int argc, FAR char **argv) +{ + 6da6: 7139 addi sp,sp,-64 + 6da8: f822 sd s0,48(sp) + 6daa: f04a sd s2,32(sp) + 6dac: ec4e sd s3,24(sp) + 6dae: fc06 sd ra,56(sp) + 6db0: f426 sd s1,40(sp) + 6db2: e852 sd s4,16(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_mntcmds.c:366 + UNUSED(argc); + + FAR char *fullpath = nsh_getfullpath(vtbl, argv[1]); + 6db4: 660c ld a1,8(a2) + +0000000000006db6 <.LVL58>: +/Users/Luppy/ox64/apps/nshlib/nsh_mntcmds.c:363 +{ + 6db6: 892a mv s2,a0 + 6db8: 89b2 mv s3,a2 +/Users/Luppy/ox64/apps/nshlib/nsh_mntcmds.c:366 + FAR char *fullpath = nsh_getfullpath(vtbl, argv[1]); + 6dba: 00000097 auipc ra,0x0 6dba: R_RISCV_CALL nsh_getfullpath + 6dba: R_RISCV_RELAX *ABS* + 6dbe: 000080e7 jalr ra # 6dba <.LVL58+0x4> + +0000000000006dc2 <.LVL59>: +/Users/Luppy/ox64/apps/nshlib/nsh_mntcmds.c:367 + int ret = ERROR; + 6dc2: 547d li s0,-1 +/Users/Luppy/ox64/apps/nshlib/nsh_mntcmds.c:369 + + if (fullpath) + 6dc4: c521 beqz a0,6e0c <.L45> 6dc4: R_RISCV_RVC_BRANCH .L45 +/Users/Luppy/ox64/apps/nshlib/nsh_mntcmds.c:373 + { + /* Perform the umount */ + + ret = umount(fullpath); + 6dc6: 4581 li a1,0 + 6dc8: 84aa mv s1,a0 + 6dca: 00000097 auipc ra,0x0 6dca: R_RISCV_CALL umount2 + 6dca: R_RISCV_RELAX *ABS* + 6dce: 000080e7 jalr ra # 6dca <.LVL59+0x8> + +0000000000006dd2 <.LVL60>: + 6dd2: 842a mv s0,a0 + +0000000000006dd4 <.LVL61>: +/Users/Luppy/ox64/apps/nshlib/nsh_mntcmds.c:374 + if (ret < 0) + 6dd4: 02055763 bgez a0,6e02 <.L46> 6dd4: R_RISCV_BRANCH .L46 +/Users/Luppy/ox64/apps/nshlib/nsh_mntcmds.c:376 + { + nsh_error(vtbl, g_fmtcmdfailed, argv[0], "umount", NSH_ERRNO); + 6dd8: 0009b603 ld a2,0(s3) + 6ddc: 02893a03 ld s4,40(s2) + 6de0: e432 sd a2,8(sp) + 6de2: 00000097 auipc ra,0x0 6de2: R_RISCV_CALL __errno + 6de2: R_RISCV_RELAX *ABS* + 6de6: 000080e7 jalr ra # 6de2 <.LVL61+0xe> + +0000000000006dea <.LVL62>: + 6dea: 4118 lw a4,0(a0) + 6dec: 6622 ld a2,8(sp) + 6dee: 00000697 auipc a3,0x0 6dee: R_RISCV_PCREL_HI20 .LC6 + 6dee: R_RISCV_RELAX *ABS* + 6df2: 00068693 mv a3,a3 6df2: R_RISCV_PCREL_LO12_I .L0 + 6df2: R_RISCV_RELAX *ABS* + 6df6: 00000597 auipc a1,0x0 6df6: R_RISCV_PCREL_HI20 g_fmtcmdfailed + 6df6: R_RISCV_RELAX *ABS* + 6dfa: 00058593 mv a1,a1 6dfa: R_RISCV_PCREL_LO12_I .L0 + 6dfa: R_RISCV_RELAX *ABS* + 6dfe: 854a mv a0,s2 + 6e00: 9a02 jalr s4 + +0000000000006e02 <.L46>: +/Users/Luppy/ox64/apps/nshlib/nsh_mntcmds.c:379 + } + + nsh_freefullpath(fullpath); + 6e02: 8526 mv a0,s1 + 6e04: 00000097 auipc ra,0x0 6e04: R_RISCV_CALL nsh_freefullpath + 6e04: R_RISCV_RELAX *ABS* + 6e08: 000080e7 jalr ra # 6e04 <.L46+0x2> + +0000000000006e0c <.L45>: +/Users/Luppy/ox64/apps/nshlib/nsh_mntcmds.c:383 + } + + return ret; +} + 6e0c: 70e2 ld ra,56(sp) + 6e0e: 8522 mv a0,s0 + 6e10: 7442 ld s0,48(sp) + +0000000000006e12 <.LVL65>: + 6e12: 74a2 ld s1,40(sp) + 6e14: 7902 ld s2,32(sp) + +0000000000006e16 <.LVL66>: + 6e16: 69e2 ld s3,24(sp) + +0000000000006e18 <.LVL67>: + 6e18: 6a42 ld s4,16(sp) + 6e1a: 6121 addi sp,sp,64 + 6e1c: 8082 ret + +0000000000006e1e : +cmd_printf(): +/Users/Luppy/ox64/apps/nshlib/nsh_printf.c:47 + * Name: cmd_printf + ****************************************************************************/ + +#ifndef CONFIG_NSH_DISABLE_PRINTF +int cmd_printf(FAR struct nsh_vtbl_s *vtbl, int argc, FAR char **argv) +{ + 6e1e: 7119 addi sp,sp,-128 + 6e20: f8a2 sd s0,112(sp) + 6e22: f4a6 sd s1,104(sp) + 6e24: f0ca sd s2,96(sp) + 6e26: ecce sd s3,88(sp) + 6e28: e8d2 sd s4,80(sp) + 6e2a: e4d6 sd s5,72(sp) + 6e2c: e0da sd s6,64(sp) + 6e2e: fc5e sd s7,56(sp) + 6e30: f862 sd s8,48(sp) + 6e32: f466 sd s9,40(sp) + 6e34: f06a sd s10,32(sp) + 6e36: ec6e sd s11,24(sp) + 6e38: fc86 sd ra,120(sp) + 6e3a: 842a mv s0,a0 + 6e3c: 892e mv s2,a1 + 6e3e: 89b2 mv s3,a2 +/Users/Luppy/ox64/apps/nshlib/nsh_printf.c:58 + + /* parse each argument, detecting the right action to take + * case it doesn't starts with a format then just print it + */ + + for (i = 1; i < argc; i++) + 6e40: 4485 li s1,1 +/Users/Luppy/ox64/apps/nshlib/nsh_printf.c:64 + { + fmt = argv[i]; + + /* Is it really a FORMAT ? */ + + if (fmt[0] == '\\') + 6e42: 05c00a93 li s5,92 +/Users/Luppy/ox64/apps/nshlib/nsh_printf.c:112 + break; + } + } + else + { + nsh_output(vtbl, "%s", argv[i]); + 6e46: 00000b17 auipc s6,0x0 6e46: R_RISCV_PCREL_HI20 .LC6 + 6e46: R_RISCV_RELAX *ABS* + 6e4a: 000b0b13 mv s6,s6 6e4a: R_RISCV_PCREL_LO12_I .L0 + 6e4a: R_RISCV_RELAX *ABS* +/Users/Luppy/ox64/apps/nshlib/nsh_printf.c:69 + switch (ch) + 6e4e: 07400a13 li s4,116 +/Users/Luppy/ox64/apps/nshlib/nsh_printf.c:103 + nsh_output(vtbl, "\t"); + 6e52: 00000b97 auipc s7,0x0 6e52: R_RISCV_PCREL_HI20 .LC5 + 6e52: R_RISCV_RELAX *ABS* + 6e56: 000b8b93 mv s7,s7 6e56: R_RISCV_PCREL_LO12_I .L0 + 6e56: R_RISCV_RELAX *ABS* +/Users/Luppy/ox64/apps/nshlib/nsh_printf.c:69 + switch (ch) + 6e5a: 07800c13 li s8,120 +/Users/Luppy/ox64/apps/nshlib/nsh_printf.c:76 + if (len >= 7) + 6e5e: 4c99 li s9,6 +/Users/Luppy/ox64/apps/nshlib/nsh_printf.c:83 + else if (len >= 3) + 6e60: 4d09 li s10,2 +/Users/Luppy/ox64/apps/nshlib/nsh_printf.c:90 + nsh_output(vtbl, "%c", value & 0xff); + 6e62: 00000d97 auipc s11,0x0 6e62: R_RISCV_PCREL_HI20 .LC2 + 6e62: R_RISCV_RELAX *ABS* + 6e66: 000d8d93 mv s11,s11 6e66: R_RISCV_PCREL_LO12_I .L0 + 6e66: R_RISCV_RELAX *ABS* + +0000000000006e6a <.L2>: +/Users/Luppy/ox64/apps/nshlib/nsh_printf.c:58 (discriminator 1) + for (i = 1; i < argc; i++) + 6e6a: 0004879b sext.w a5,s1 + 6e6e: 0327c263 blt a5,s2,6e92 <.L11> 6e6e: R_RISCV_BRANCH .L11 +/Users/Luppy/ox64/apps/nshlib/nsh_printf.c:117 + } + } + + return OK; +} + 6e72: 70e6 ld ra,120(sp) + 6e74: 7446 ld s0,112(sp) + +0000000000006e76 <.LVL2>: + 6e76: 74a6 ld s1,104(sp) + +0000000000006e78 <.LVL3>: + 6e78: 7906 ld s2,96(sp) + 6e7a: 69e6 ld s3,88(sp) + +0000000000006e7c <.LVL4>: + 6e7c: 6a46 ld s4,80(sp) + 6e7e: 6aa6 ld s5,72(sp) + 6e80: 6b06 ld s6,64(sp) + 6e82: 7be2 ld s7,56(sp) + 6e84: 7c42 ld s8,48(sp) + 6e86: 7ca2 ld s9,40(sp) + 6e88: 7d02 ld s10,32(sp) + 6e8a: 6de2 ld s11,24(sp) + 6e8c: 4501 li a0,0 + 6e8e: 6109 addi sp,sp,128 + 6e90: 8082 ret + +0000000000006e92 <.L11>: +/Users/Luppy/ox64/apps/nshlib/nsh_printf.c:60 + fmt = argv[i]; + 6e92: 00349793 slli a5,s1,0x3 + 6e96: 97ce add a5,a5,s3 + 6e98: 6390 ld a2,0(a5) + +0000000000006e9a <.LVL6>: +/Users/Luppy/ox64/apps/nshlib/nsh_printf.c:64 + if (fmt[0] == '\\') + 6e9a: 00064783 lbu a5,0(a2) # 6c0c <.L6> + 6e9e: 0d579b63 bne a5,s5,6f74 <.L3> 6e9e: R_RISCV_BRANCH .L3 + +0000000000006ea2 <.LVL7>: +/Users/Luppy/ox64/apps/nshlib/nsh_printf.c:67 + ch = fmt[0]; + 6ea2: 00164783 lbu a5,1(a2) + +0000000000006ea6 <.LVL8>: +/Users/Luppy/ox64/apps/nshlib/nsh_printf.c:69 + switch (ch) + 6ea6: 0d478463 beq a5,s4,6f6e <.L4> 6ea6: R_RISCV_BRANCH .L4 + 6eaa: 00fa6c63 bltu s4,a5,6ec2 <.L5> 6eaa: R_RISCV_BRANCH .L5 + 6eae: 06e00713 li a4,110 + 6eb2: 0ae78063 beq a5,a4,6f52 <.L6> 6eb2: R_RISCV_BRANCH .L6 + 6eb6: 07200713 li a4,114 + 6eba: 0ae78463 beq a5,a4,6f62 <.L7> 6eba: R_RISCV_BRANCH .L7 + +0000000000006ebe <.L8>: +/Users/Luppy/ox64/apps/nshlib/nsh_printf.c:58 (discriminator 2) + for (i = 1; i < argc; i++) + 6ebe: 0485 addi s1,s1,1 + +0000000000006ec0 <.LVL10>: + 6ec0: b76d j 6e6a <.L2> 6ec0: R_RISCV_RVC_JUMP .L2 + +0000000000006ec2 <.L5>: +/Users/Luppy/ox64/apps/nshlib/nsh_printf.c:69 + switch (ch) + 6ec2: ff879ee3 bne a5,s8,6ebe <.L8> 6ec2: R_RISCV_BRANCH .L8 +/Users/Luppy/ox64/apps/nshlib/nsh_printf.c:72 + fmt++; + 6ec6: 00260793 addi a5,a2,2 + +0000000000006eca <.LVL12>: +/Users/Luppy/ox64/apps/nshlib/nsh_printf.c:73 + value = strtoul(fmt, NULL, 16); + 6eca: 4581 li a1,0 + 6ecc: 4641 li a2,16 + +0000000000006ece <.LVL13>: + 6ece: 853e mv a0,a5 + 6ed0: e43e sd a5,8(sp) + 6ed2: 00000097 auipc ra,0x0 6ed2: R_RISCV_CALL strtoul + 6ed2: R_RISCV_RELAX *ABS* + 6ed6: 000080e7 jalr ra # 6ed2 <.LVL13+0x4> + +0000000000006eda <.LVL14>: +/Users/Luppy/ox64/apps/nshlib/nsh_printf.c:74 + len = strnlen(fmt, 10); + 6eda: 67a2 ld a5,8(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_printf.c:73 + value = strtoul(fmt, NULL, 16); + 6edc: 0005061b sext.w a2,a0 +/Users/Luppy/ox64/apps/nshlib/nsh_printf.c:74 + len = strnlen(fmt, 10); + 6ee0: 45a9 li a1,10 + 6ee2: 853e mv a0,a5 +/Users/Luppy/ox64/apps/nshlib/nsh_printf.c:73 + value = strtoul(fmt, NULL, 16); + 6ee4: e032 sd a2,0(sp) + +0000000000006ee6 <.LVL15>: +/Users/Luppy/ox64/apps/nshlib/nsh_printf.c:74 + len = strnlen(fmt, 10); + 6ee6: 00000097 auipc ra,0x0 6ee6: R_RISCV_CALL strnlen + 6ee6: R_RISCV_RELAX *ABS* + 6eea: 000080e7 jalr ra # 6ee6 <.LVL15> + +0000000000006eee <.LVL16>: + 6eee: 2501 sext.w a0,a0 + +0000000000006ef0 <.LVL17>: +/Users/Luppy/ox64/apps/nshlib/nsh_printf.c:76 + if (len >= 7) + 6ef0: 6602 ld a2,0(sp) + 6ef2: 02acd763 bge s9,a0,6f20 <.L9> 6ef2: R_RISCV_BRANCH .L9 +/Users/Luppy/ox64/apps/nshlib/nsh_printf.c:78 + nsh_output(vtbl, "%c%c%c%c", value & 0xff, + 6ef6: 03043803 ld a6,48(s0) + 6efa: 0106571b srliw a4,a2,0x10 + 6efe: 0086569b srliw a3,a2,0x8 + 6f02: 0186579b srliw a5,a2,0x18 + 6f06: 0ff77713 zext.b a4,a4 + 6f0a: 0ff6f693 zext.b a3,a3 + 6f0e: 0ff67613 zext.b a2,a2 + 6f12: 00000597 auipc a1,0x0 6f12: R_RISCV_PCREL_HI20 .LC0 + 6f12: R_RISCV_RELAX *ABS* + 6f16: 00058593 mv a1,a1 6f16: R_RISCV_PCREL_LO12_I .L0 + 6f16: R_RISCV_RELAX *ABS* + 6f1a: 8522 mv a0,s0 + +0000000000006f1c <.LVL18>: + 6f1c: 9802 jalr a6 + +0000000000006f1e <.LVL19>: + 6f1e: b745 j 6ebe <.L8> 6f1e: R_RISCV_RVC_JUMP .L8 + +0000000000006f20 <.L9>: +/Users/Luppy/ox64/apps/nshlib/nsh_printf.c:83 + else if (len >= 3) + 6f20: 02ad5063 bge s10,a0,6f40 <.L10> 6f20: R_RISCV_BRANCH .L10 +/Users/Luppy/ox64/apps/nshlib/nsh_printf.c:85 + nsh_output(vtbl, "%c%c", value & 0xff, + 6f24: 781c ld a5,48(s0) + 6f26: 0086569b srliw a3,a2,0x8 + 6f2a: 0ff6f693 zext.b a3,a3 + 6f2e: 0ff67613 zext.b a2,a2 + 6f32: 00000597 auipc a1,0x0 6f32: R_RISCV_PCREL_HI20 .LC1 + 6f32: R_RISCV_RELAX *ABS* + 6f36: 00058593 mv a1,a1 6f36: R_RISCV_PCREL_LO12_I .L0 + 6f36: R_RISCV_RELAX *ABS* + 6f3a: 8522 mv a0,s0 + +0000000000006f3c <.LVL21>: + 6f3c: 9782 jalr a5 + +0000000000006f3e <.LVL22>: + 6f3e: b741 j 6ebe <.L8> 6f3e: R_RISCV_RVC_JUMP .L8 + +0000000000006f40 <.L10>: +/Users/Luppy/ox64/apps/nshlib/nsh_printf.c:88 + else if (len >= 1) + 6f40: f6a05fe3 blez a0,6ebe <.L8> 6f40: R_RISCV_BRANCH .L8 +/Users/Luppy/ox64/apps/nshlib/nsh_printf.c:90 + nsh_output(vtbl, "%c", value & 0xff); + 6f44: 781c ld a5,48(s0) + 6f46: 0ff67613 zext.b a2,a2 + 6f4a: 85ee mv a1,s11 + 6f4c: 8522 mv a0,s0 + +0000000000006f4e <.LVL24>: + 6f4e: 9782 jalr a5 + +0000000000006f50 <.LVL25>: + 6f50: b7bd j 6ebe <.L8> 6f50: R_RISCV_RVC_JUMP .L8 + +0000000000006f52 <.L6>: +/Users/Luppy/ox64/apps/nshlib/nsh_printf.c:95 + nsh_output(vtbl, "\n"); + 6f52: 781c ld a5,48(s0) + +0000000000006f54 <.LVL27>: + 6f54: 00000597 auipc a1,0x0 6f54: R_RISCV_PCREL_HI20 .LC3 + 6f54: R_RISCV_RELAX *ABS* + 6f58: 00058593 mv a1,a1 6f58: R_RISCV_PCREL_LO12_I .L0 + 6f58: R_RISCV_RELAX *ABS* + +0000000000006f5c <.L13>: +/Users/Luppy/ox64/apps/nshlib/nsh_printf.c:99 + nsh_output(vtbl, "\r"); + 6f5c: 8522 mv a0,s0 + 6f5e: 9782 jalr a5 + +0000000000006f60 <.LVL28>: +/Users/Luppy/ox64/apps/nshlib/nsh_printf.c:100 + break; + 6f60: bfb9 j 6ebe <.L8> 6f60: R_RISCV_RVC_JUMP .L8 + +0000000000006f62 <.L7>: +/Users/Luppy/ox64/apps/nshlib/nsh_printf.c:99 + nsh_output(vtbl, "\r"); + 6f62: 781c ld a5,48(s0) + +0000000000006f64 <.LVL30>: + 6f64: 00000597 auipc a1,0x0 6f64: R_RISCV_PCREL_HI20 .LC4 + 6f64: R_RISCV_RELAX *ABS* + 6f68: 00058593 mv a1,a1 6f68: R_RISCV_PCREL_LO12_I .L0 + 6f68: R_RISCV_RELAX *ABS* + 6f6c: bfc5 j 6f5c <.L13> 6f6c: R_RISCV_RVC_JUMP .L13 + +0000000000006f6e <.L4>: +/Users/Luppy/ox64/apps/nshlib/nsh_printf.c:103 + nsh_output(vtbl, "\t"); + 6f6e: 781c ld a5,48(s0) + +0000000000006f70 <.LVL32>: + 6f70: 85de mv a1,s7 + 6f72: b7ed j 6f5c <.L13> 6f72: R_RISCV_RVC_JUMP .L13 + +0000000000006f74 <.L3>: +/Users/Luppy/ox64/apps/nshlib/nsh_printf.c:112 + nsh_output(vtbl, "%s", argv[i]); + 6f74: 781c ld a5,48(s0) + 6f76: 85da mv a1,s6 + 6f78: 8522 mv a0,s0 + 6f7a: 9782 jalr a5 + +0000000000006f7c <.LVL34>: + 6f7c: b789 j 6ebe <.L8> 6f7c: R_RISCV_RVC_JUMP .L8 + +0000000000006f7e : +ps_callback(): +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:251 + ****************************************************************************/ + +#ifndef CONFIG_NSH_DISABLE_PS +static int ps_callback(FAR struct nsh_vtbl_s *vtbl, FAR const char *dirpath, + FAR struct dirent *entryp, FAR void *pvarg) +{ + 6f7e: 7171 addi sp,sp,-176 + 6f80: f506 sd ra,168(sp) + 6f82: f122 sd s0,160(sp) + 6f84: ed26 sd s1,152(sp) + 6f86: e94a sd s2,144(sp) + 6f88: e54e sd s3,136(sp) + 6f8a: e152 sd s4,128(sp) + 6f8c: fcd6 sd s5,120(sp) + 6f8e: f8da sd s6,112(sp) + 6f90: f4de sd s7,104(sp) + 6f92: f0e2 sd s8,96(sp) + 6f94: ece6 sd s9,88(sp) + 6f96: e8ea sd s10,80(sp) + 6f98: e4ee sd s11,72(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:275 + + /* Task/thread entries in the /proc directory will all be (1) directories + * with (2) all numeric names. + */ + + if (!DIRENT_ISDIRECTORY(entryp->d_type)) + 6f9a: 00064703 lbu a4,0(a2) +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:251 +{ + 6f9e: f42e sd a1,40(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:275 + if (!DIRENT_ISDIRECTORY(entryp->d_type)) + 6fa0: 4791 li a5,4 + 6fa2: 42f71a63 bne a4,a5,73d6 <.L38> 6fa2: R_RISCV_BRANCH .L38 + 6fa6: 84aa mv s1,a0 + 6fa8: 4705 li a4,1 +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:286 + + /* Check each character in the name */ + + for (i = 0; i < NAME_MAX && entryp->d_name[i] != '\0'; i++) + { + if (!isdigit(entryp->d_name[i])) + 6faa: 46a5 li a3,9 + +0000000000006fac <.LVL1>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:284 + for (i = 0; i < NAME_MAX && entryp->d_name[i] != '\0'; i++) + 6fac: 02100593 li a1,33 + +0000000000006fb0 <.L3>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:284 (discriminator 3) + 6fb0: 00e607b3 add a5,a2,a4 + 6fb4: 0007c783 lbu a5,0(a5) + 6fb8: cb81 beqz a5,6fc8 <.L4> 6fb8: R_RISCV_RVC_BRANCH .L4 +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:286 + if (!isdigit(entryp->d_name[i])) + 6fba: fd07879b addiw a5,a5,-48 + 6fbe: 40f6ec63 bltu a3,a5,73d6 <.L38> 6fbe: R_RISCV_BRANCH .L38 + +0000000000006fc2 <.LVL3>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:284 (discriminator 2) + for (i = 0; i < NAME_MAX && entryp->d_name[i] != '\0'; i++) + 6fc2: 0705 addi a4,a4,1 + +0000000000006fc4 <.LVL4>: + 6fc4: feb716e3 bne a4,a1,6fb0 <.L3> 6fc4: R_RISCV_BRANCH .L3 + +0000000000006fc8 <.L4>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:311 + status.td_sigmask = ""; + + /* Read the task status */ + + filepath = NULL; + ret = asprintf(&filepath, "%s/%s/status", dirpath, entryp->d_name); + 6fc8: 00160913 addi s2,a2,1 + 6fcc: 7622 ld a2,40(sp) + +0000000000006fce <.LVL6>: + 6fce: 86ca mv a3,s2 + 6fd0: 00000597 auipc a1,0x0 6fd0: R_RISCV_PCREL_HI20 .LC1 + 6fd0: R_RISCV_RELAX *ABS* + 6fd4: 00058593 mv a1,a1 6fd4: R_RISCV_PCREL_LO12_I .L0 + 6fd4: R_RISCV_RELAX *ABS* + 6fd8: 1828 addi a0,sp,56 + +0000000000006fda <.LVL7>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:310 + filepath = NULL; + 6fda: fc02 sd zero,56(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:311 + ret = asprintf(&filepath, "%s/%s/status", dirpath, entryp->d_name); + 6fdc: 00000097 auipc ra,0x0 6fdc: R_RISCV_CALL asprintf + 6fdc: R_RISCV_RELAX *ABS* + 6fe0: 000080e7 jalr ra # 6fdc <.LVL7+0x2> + +0000000000006fe4 <.LVL8>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:312 + if (ret < 0 || filepath == NULL) + 6fe4: 00054463 bltz a0,6fec <.L6> 6fe4: R_RISCV_BRANCH .L6 + 6fe8: 7662 ld a2,56(sp) + 6fea: e229 bnez a2,702c <.L7> 6fea: R_RISCV_RVC_BRANCH .L7 + +0000000000006fec <.L6>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:314 + { + nsh_error(vtbl, g_fmtcmdfailed, "ps", "asprintf", NSH_ERRNO); + 6fec: 7480 ld s0,40(s1) + 6fee: 00000097 auipc ra,0x0 6fee: R_RISCV_CALL __errno + 6fee: R_RISCV_RELAX *ABS* + 6ff2: 000080e7 jalr ra # 6fee <.L6+0x2> + +0000000000006ff6 <.LVL9>: + 6ff6: 4118 lw a4,0(a0) + 6ff8: 00000697 auipc a3,0x0 6ff8: R_RISCV_PCREL_HI20 .LC2 + 6ff8: R_RISCV_RELAX *ABS* + 6ffc: 00068693 mv a3,a3 6ffc: R_RISCV_PCREL_LO12_I .L0 + 6ffc: R_RISCV_RELAX *ABS* + 7000: 00000617 auipc a2,0x0 7000: R_RISCV_PCREL_HI20 .LC3 + 7000: R_RISCV_RELAX *ABS* + 7004: 00060613 mv a2,a2 7004: R_RISCV_PCREL_LO12_I .L0 + 7004: R_RISCV_RELAX *ABS* + 7008: 00000597 auipc a1,0x0 7008: R_RISCV_PCREL_HI20 g_fmtcmdfailed + 7008: R_RISCV_RELAX *ABS* + 700c: 00058593 mv a1,a1 700c: R_RISCV_PCREL_LO12_I .L0 + 700c: R_RISCV_RELAX *ABS* + 7010: 8526 mv a0,s1 + 7012: 9402 jalr s0 + +0000000000007014 <.L39>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:306 + status.td_sigmask = ""; + 7014: 00000417 auipc s0,0x0 7014: R_RISCV_PCREL_HI20 .LC0 + 7014: R_RISCV_RELAX *ABS* + 7018: 00040413 mv s0,s0 7018: R_RISCV_PCREL_LO12_I .L0 + 7018: R_RISCV_RELAX *ABS* +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:305 + status.td_policy = ""; + 701c: 8b22 mv s6,s0 +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:304 + status.td_priority = ""; + 701e: 89a2 mv s3,s0 +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:303 + status.td_flags = ""; + 7020: 8a22 mv s4,s0 +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:302 + status.td_event = ""; + 7022: 8c22 mv s8,s0 +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:301 + status.td_state = ""; + 7024: 8ba2 mv s7,s0 +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:297 + status.td_groupid = ""; + 7026: 8aa2 mv s5,s0 +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:296 + status.td_type = ""; + 7028: 8ca2 mv s9,s0 + 702a: a8bd j 70a8 <.L8> 702a: R_RISCV_RVC_JUMP .L8 + +000000000000702c <.L7>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:318 + } + else + { + ret = nsh_readfile(vtbl, "ps", filepath, vtbl->iobuffer, IOBUFFERSIZE); + 702c: 05848d13 addi s10,s1,88 + 7030: 20000713 li a4,512 + 7034: 86ea mv a3,s10 + 7036: 00000597 auipc a1,0x0 7036: R_RISCV_PCREL_HI20 .LC3 + 7036: R_RISCV_RELAX *ABS* + 703a: 00058593 mv a1,a1 703a: R_RISCV_PCREL_LO12_I .L0 + 703a: R_RISCV_RELAX *ABS* + 703e: 8526 mv a0,s1 + +0000000000007040 <.LVL12>: + 7040: 00000097 auipc ra,0x0 7040: R_RISCV_CALL nsh_readfile + 7040: R_RISCV_RELAX *ABS* + 7044: 000080e7 jalr ra # 7040 <.LVL12> + +0000000000007048 <.LVL13>: + 7048: 842a mv s0,a0 + +000000000000704a <.LVL14>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:319 + free(filepath); + 704a: 7562 ld a0,56(sp) + 704c: 00000097 auipc ra,0x0 704c: R_RISCV_CALL free + 704c: R_RISCV_RELAX *ABS* + 7050: 000080e7 jalr ra # 704c <.LVL14+0x2> + +0000000000007054 <.LVL15>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:321 + + if (ret >= 0) + 7054: fc0440e3 bltz s0,7014 <.L39> 7054: R_RISCV_BRANCH .L39 +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:306 + status.td_sigmask = ""; + 7058: 00000417 auipc s0,0x0 7058: R_RISCV_PCREL_HI20 .LC0 + 7058: R_RISCV_RELAX *ABS* + 705c: 00040413 mv s0,s0 705c: R_RISCV_PCREL_LO12_I .L0 + 705c: R_RISCV_RELAX *ABS* + +0000000000007060 <.LVL16>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:305 + status.td_policy = ""; + 7060: 8b22 mv s6,s0 +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:304 + status.td_priority = ""; + 7062: 89a2 mv s3,s0 +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:303 + status.td_flags = ""; + 7064: 8a22 mv s4,s0 +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:302 + status.td_event = ""; + 7066: 8c22 mv s8,s0 +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:301 + status.td_state = ""; + 7068: 8ba2 mv s7,s0 +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:297 + status.td_groupid = ""; + 706a: 8aa2 mv s5,s0 +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:296 + status.td_type = ""; + 706c: 8ca2 mv s9,s0 + +000000000000706e <.L21>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:333 + /* Find the beginning of the next line and NUL-terminate the + * current line. + */ + + line = nextline; + for (nextline++; + 706e: 001d0793 addi a5,s10,1 # 6c6f <.L26+0x17> + +0000000000007072 <.L9>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:334 + *nextline != '\n' && *nextline != '\0'; + 7072: 0007c703 lbu a4,0(a5) +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:333 + for (nextline++; + 7076: 46a9 li a3,10 + 7078: 36d70663 beq a4,a3,73e4 <.L10> 7078: R_RISCV_BRANCH .L10 +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:334 + *nextline != '\n' && *nextline != '\0'; + 707c: e745 bnez a4,7124 <.L11> 707c: R_RISCV_RVC_BRANCH .L11 +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:343 + { + *nextline++ = '\0'; + } + else + { + nextline = NULL; + 707e: 4d81 li s11,0 + +0000000000007080 <.L36>: +nsh_parse_statusline(): +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:174 + if (strncmp(line, g_type, strlen(g_type)) == 0) + 7080: 4615 li a2,5 + 7082: 00000597 auipc a1,0x0 7082: R_RISCV_PCREL_HI20 .LANCHOR0 + 7082: R_RISCV_RELAX *ABS* + 7086: 00058593 mv a1,a1 7086: R_RISCV_PCREL_LO12_I .L0 + 7086: R_RISCV_RELAX *ABS* + 708a: 856a mv a0,s10 + 708c: 00000097 auipc ra,0x0 708c: R_RISCV_CALL strncmp + 708c: R_RISCV_RELAX *ABS* + 7090: 000080e7 jalr ra # 708c <.L36+0xc> + +0000000000007094 <.LVL20>: + 7094: e951 bnez a0,7128 <.L12> 7094: R_RISCV_RVC_BRANCH .L12 +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:178 + status->td_type = nsh_trimspaces(&line[12]); + 7096: 00cd0513 addi a0,s10,12 + 709a: 00000097 auipc ra,0x0 709a: R_RISCV_CALL nsh_trimspaces + 709a: R_RISCV_RELAX *ABS* + 709e: 000080e7 jalr ra # 709a <.LVL20+0x6> + +00000000000070a2 <.LVL21>: + 70a2: 8caa mv s9,a0 + +00000000000070a4 <.L13>: +ps_callback(): +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:350 + + /* Parse the current line */ + + nsh_parse_statusline(line, &status); + } + while (nextline != NULL); + 70a4: 060d9e63 bnez s11,7120 <.L40> 70a4: R_RISCV_BRANCH .L40 + +00000000000070a8 <.L8>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:356 + } + } + + /* Finally, print the status information */ + + nsh_output(vtbl, + 70a8: e822 sd s0,16(sp) + 70aa: e462 sd s8,8(sp) + 70ac: e05e sd s7,0(sp) + 70ae: 0304b303 ld t1,48(s1) + 70b2: 86d6 mv a3,s5 + 70b4: 864a mv a2,s2 + 70b6: 00000597 auipc a1,0x0 70b6: R_RISCV_PCREL_HI20 .LC4 + 70b6: R_RISCV_RELAX *ABS* + 70ba: 00058593 mv a1,a1 70ba: R_RISCV_PCREL_LO12_I .L0 + 70ba: R_RISCV_RELAX *ABS* + 70be: 88d2 mv a7,s4 + 70c0: 8866 mv a6,s9 + 70c2: 87da mv a5,s6 + 70c4: 874e mv a4,s3 + 70c6: 8526 mv a0,s1 + 70c8: 9302 jalr t1 + +00000000000070ca <.LVL24>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:436 + +#if !defined(CONFIG_NSH_DISABLE_PSSTACKUSAGE) + /* Get the StackSize and StackUsed */ + + filepath = NULL; + ret = asprintf(&filepath, "%s/%s/stack", dirpath, entryp->d_name); + 70ca: 7622 ld a2,40(sp) + 70cc: 86ca mv a3,s2 + 70ce: 00000597 auipc a1,0x0 70ce: R_RISCV_PCREL_HI20 .LC5 + 70ce: R_RISCV_RELAX *ABS* + 70d2: 00058593 mv a1,a1 70d2: R_RISCV_PCREL_LO12_I .L0 + 70d2: R_RISCV_RELAX *ABS* + 70d6: 1828 addi a0,sp,56 +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:435 + filepath = NULL; + 70d8: fc02 sd zero,56(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:436 + ret = asprintf(&filepath, "%s/%s/stack", dirpath, entryp->d_name); + 70da: 00000097 auipc ra,0x0 70da: R_RISCV_CALL asprintf + 70da: R_RISCV_RELAX *ABS* + 70de: 000080e7 jalr ra # 70da <.LVL24+0x10> + +00000000000070e2 <.LVL25>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:437 + if (ret < 0 || filepath == NULL) + 70e2: 00054563 bltz a0,70ec <.L22> 70e2: R_RISCV_BRANCH .L22 + 70e6: 7662 ld a2,56(sp) + 70e8: 14061e63 bnez a2,7244 <.L23> 70e8: R_RISCV_BRANCH .L23 + +00000000000070ec <.L22>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:439 + { + nsh_error(vtbl, g_fmtcmdfailed, "ps", "asprintf", NSH_ERRNO); + 70ec: 7480 ld s0,40(s1) + 70ee: 00000097 auipc ra,0x0 70ee: R_RISCV_CALL __errno + 70ee: R_RISCV_RELAX *ABS* + 70f2: 000080e7 jalr ra # 70ee <.L22+0x2> + +00000000000070f6 <.LVL26>: + 70f6: 4118 lw a4,0(a0) + 70f8: 00000697 auipc a3,0x0 70f8: R_RISCV_PCREL_HI20 .LC2 + 70f8: R_RISCV_RELAX *ABS* + 70fc: 00068693 mv a3,a3 70fc: R_RISCV_PCREL_LO12_I .L0 + 70fc: R_RISCV_RELAX *ABS* + 7100: 00000617 auipc a2,0x0 7100: R_RISCV_PCREL_HI20 .LC3 + 7100: R_RISCV_RELAX *ABS* + 7104: 00060613 mv a2,a2 7104: R_RISCV_PCREL_LO12_I .L0 + 7104: R_RISCV_RELAX *ABS* + 7108: 00000597 auipc a1,0x0 7108: R_RISCV_PCREL_HI20 g_fmtcmdfailed + 7108: R_RISCV_RELAX *ABS* + 710c: 00058593 mv a1,a1 710c: R_RISCV_PCREL_LO12_I .L0 + 710c: R_RISCV_RELAX *ABS* + 7110: 8526 mv a0,s1 + 7112: 9402 jalr s0 + +0000000000007114 <.LVL27>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:266 + unsigned long stack_used = 0; + 7114: 4981 li s3,0 +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:440 + vtbl->iobuffer[0] = '\0'; + 7116: 04048c23 sb zero,88(s1) + +000000000000711a <.L41>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:264 + unsigned long stack_size = 0; + 711a: 4401 li s0,0 +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:267 + unsigned long stack_filled = 0; + 711c: 4701 li a4,0 + 711e: aa4d j 72d0 <.L24> 711e: R_RISCV_RVC_JUMP .L24 + +0000000000007120 <.L40>: + 7120: 8d6e mv s10,s11 + +0000000000007122 <.LVL30>: + 7122: b7b1 j 706e <.L21> 7122: R_RISCV_RVC_JUMP .L21 + +0000000000007124 <.L11>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:335 + nextline++); + 7124: 0785 addi a5,a5,1 + 7126: b7b1 j 7072 <.L9> 7126: R_RISCV_RVC_JUMP .L9 + +0000000000007128 <.L12>: +nsh_parse_statusline(): +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:180 + else if (strncmp(line, g_groupid, strlen(g_groupid)) == 0) + 7128: 4619 li a2,6 + 712a: 00000597 auipc a1,0x0 712a: R_RISCV_PCREL_HI20 .LANCHOR1 + 712a: R_RISCV_RELAX *ABS* + 712e: 00058593 mv a1,a1 712e: R_RISCV_PCREL_LO12_I .L0 + 712e: R_RISCV_RELAX *ABS* + 7132: 856a mv a0,s10 + 7134: 00000097 auipc ra,0x0 7134: R_RISCV_CALL strncmp + 7134: R_RISCV_RELAX *ABS* + 7138: 000080e7 jalr ra # 7134 <.L12+0xc> + +000000000000713c <.LVL34>: + 713c: e909 bnez a0,714e <.L14> 713c: R_RISCV_RVC_BRANCH .L14 +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:184 + status->td_groupid = nsh_trimspaces(&line[12]); + 713e: 00cd0513 addi a0,s10,12 + 7142: 00000097 auipc ra,0x0 7142: R_RISCV_CALL nsh_trimspaces + 7142: R_RISCV_RELAX *ABS* + 7146: 000080e7 jalr ra # 7142 <.LVL34+0x6> + +000000000000714a <.LVL35>: + 714a: 8aaa mv s5,a0 + +000000000000714c <.LVL36>: + 714c: bfa1 j 70a4 <.L13> 714c: R_RISCV_RVC_JUMP .L13 + +000000000000714e <.L14>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:196 + else if (strncmp(line, g_state, strlen(g_state)) == 0) + 714e: 4619 li a2,6 + 7150: 00000597 auipc a1,0x0 7150: R_RISCV_PCREL_HI20 .LANCHOR2 + 7150: R_RISCV_RELAX *ABS* + 7154: 00058593 mv a1,a1 7154: R_RISCV_PCREL_LO12_I .L0 + 7154: R_RISCV_RELAX *ABS* + 7158: 856a mv a0,s10 + 715a: 00000097 auipc ra,0x0 715a: R_RISCV_CALL strncmp + 715a: R_RISCV_RELAX *ABS* + 715e: 000080e7 jalr ra # 715a <.L14+0xc> + +0000000000007162 <.LVL38>: + 7162: e905 bnez a0,7192 <.L15> 7162: R_RISCV_RVC_BRANCH .L15 + +0000000000007164 <.LBB12>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:202 + status->td_state = nsh_trimspaces(&line[12]); + 7164: 00cd0513 addi a0,s10,12 + 7168: 00000097 auipc ra,0x0 7168: R_RISCV_CALL nsh_trimspaces + 7168: R_RISCV_RELAX *ABS* + 716c: 000080e7 jalr ra # 7168 <.LBB12+0x4> + +0000000000007170 <.LVL39>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:206 + ptr = strchr(status->td_state, ','); + 7170: 02c00593 li a1,44 +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:202 + status->td_state = nsh_trimspaces(&line[12]); + 7174: 8baa mv s7,a0 + +0000000000007176 <.LVL40>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:206 + ptr = strchr(status->td_state, ','); + 7176: 00000097 auipc ra,0x0 7176: R_RISCV_CALL strchr + 7176: R_RISCV_RELAX *ABS* + 717a: 000080e7 jalr ra # 7176 <.LVL40> + +000000000000717e <.LVL41>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:207 + if (ptr != NULL) + 717e: d11d beqz a0,70a4 <.L13> 717e: R_RISCV_RVC_BRANCH .L13 + +0000000000007180 <.LVL42>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:209 + *ptr++ = '\0'; + 7180: 00050023 sb zero,0(a0) +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:210 + status->td_event = nsh_trimspaces(ptr); + 7184: 0505 addi a0,a0,1 + +0000000000007186 <.LVL43>: + 7186: 00000097 auipc ra,0x0 7186: R_RISCV_CALL nsh_trimspaces + 7186: R_RISCV_RELAX *ABS* + 718a: 000080e7 jalr ra # 7186 <.LVL43> + +000000000000718e <.LVL44>: + 718e: 8c2a mv s8,a0 + +0000000000007190 <.LVL45>: + 7190: bf11 j 70a4 <.L13> 7190: R_RISCV_RVC_JUMP .L13 + +0000000000007192 <.L15>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:213 + else if (strncmp(line, g_flags, strlen(g_flags)) == 0) + 7192: 4619 li a2,6 + 7194: 00000597 auipc a1,0x0 7194: R_RISCV_PCREL_HI20 .LANCHOR3 + 7194: R_RISCV_RELAX *ABS* + 7198: 00058593 mv a1,a1 7198: R_RISCV_PCREL_LO12_I .L0 + 7198: R_RISCV_RELAX *ABS* + 719c: 856a mv a0,s10 + 719e: 00000097 auipc ra,0x0 719e: R_RISCV_CALL strncmp + 719e: R_RISCV_RELAX *ABS* + 71a2: 000080e7 jalr ra # 719e <.L15+0xc> + +00000000000071a6 <.LVL47>: + 71a6: e909 bnez a0,71b8 <.L16> 71a6: R_RISCV_RVC_BRANCH .L16 +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:215 + status->td_flags = nsh_trimspaces(&line[12]); + 71a8: 00cd0513 addi a0,s10,12 + 71ac: 00000097 auipc ra,0x0 71ac: R_RISCV_CALL nsh_trimspaces + 71ac: R_RISCV_RELAX *ABS* + 71b0: 000080e7 jalr ra # 71ac <.LVL47+0x6> + +00000000000071b4 <.LVL48>: + 71b4: 8a2a mv s4,a0 + 71b6: b5fd j 70a4 <.L13> 71b6: R_RISCV_RVC_JUMP .L13 + +00000000000071b8 <.L16>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:217 + else if (strncmp(line, g_priority, strlen(g_priority)) == 0) + 71b8: 4625 li a2,9 + 71ba: 00000597 auipc a1,0x0 71ba: R_RISCV_PCREL_HI20 .LANCHOR4 + 71ba: R_RISCV_RELAX *ABS* + 71be: 00058593 mv a1,a1 71be: R_RISCV_PCREL_LO12_I .L0 + 71be: R_RISCV_RELAX *ABS* + 71c2: 856a mv a0,s10 + 71c4: 00000097 auipc ra,0x0 71c4: R_RISCV_CALL strncmp + 71c4: R_RISCV_RELAX *ABS* + 71c8: 000080e7 jalr ra # 71c4 <.L16+0xc> + +00000000000071cc <.LVL49>: + 71cc: e50d bnez a0,71f6 <.L17> 71cc: R_RISCV_RVC_BRANCH .L17 + +00000000000071ce <.LBB13>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:219 + FAR char *ptr = nsh_trimspaces(&line[12]); + 71ce: 00cd0513 addi a0,s10,12 + 71d2: 00000097 auipc ra,0x0 71d2: R_RISCV_CALL nsh_trimspaces + 71d2: R_RISCV_RELAX *ABS* + 71d6: 000080e7 jalr ra # 71d2 <.LBB13+0x4> + +00000000000071da <.LVL50>: + 71da: 89aa mv s3,a0 + +00000000000071dc <.LVL51>: + 71dc: 87aa mv a5,a0 +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:224 + while (isdigit(*ptr)) + 71de: 46a5 li a3,9 + +00000000000071e0 <.L18>: + 71e0: 0007c703 lbu a4,0(a5) + 71e4: fd07071b addiw a4,a4,-48 + 71e8: 00e6f563 bgeu a3,a4,71f2 <.L19> 71e8: R_RISCV_BRANCH .L19 +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:229 + *ptr = '\0'; + 71ec: 00078023 sb zero,0(a5) + +00000000000071f0 <.LBE13>: + 71f0: bd55 j 70a4 <.L13> 71f0: R_RISCV_RVC_JUMP .L13 + +00000000000071f2 <.L19>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:226 + ++ptr; + 71f2: 0785 addi a5,a5,1 + 71f4: b7f5 j 71e0 <.L18> 71f4: R_RISCV_RVC_JUMP .L18 + +00000000000071f6 <.L17>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:231 + else if (strncmp(line, g_scheduler, strlen(g_scheduler)) == 0) + 71f6: 4629 li a2,10 + 71f8: 00000597 auipc a1,0x0 71f8: R_RISCV_PCREL_HI20 .LANCHOR5 + 71f8: R_RISCV_RELAX *ABS* + 71fc: 00058593 mv a1,a1 71fc: R_RISCV_PCREL_LO12_I .L0 + 71fc: R_RISCV_RELAX *ABS* + 7200: 856a mv a0,s10 + 7202: 00000097 auipc ra,0x0 7202: R_RISCV_CALL strncmp + 7202: R_RISCV_RELAX *ABS* + 7206: 000080e7 jalr ra # 7202 <.L17+0xc> + +000000000000720a <.LVL55>: + 720a: e909 bnez a0,721c <.L20> 720a: R_RISCV_RVC_BRANCH .L20 +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:235 + status->td_policy = nsh_trimspaces(&line[12 + 6]); + 720c: 012d0513 addi a0,s10,18 + 7210: 00000097 auipc ra,0x0 7210: R_RISCV_CALL nsh_trimspaces + 7210: R_RISCV_RELAX *ABS* + 7214: 000080e7 jalr ra # 7210 <.LVL55+0x6> + +0000000000007218 <.LVL56>: + 7218: 8b2a mv s6,a0 + 721a: b569 j 70a4 <.L13> 721a: R_RISCV_RVC_JUMP .L13 + +000000000000721c <.L20>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:237 + else if (strncmp(line, g_sigmask, strlen(g_sigmask)) == 0) + 721c: 4621 li a2,8 + 721e: 00000597 auipc a1,0x0 721e: R_RISCV_PCREL_HI20 .LANCHOR6 + 721e: R_RISCV_RELAX *ABS* + 7222: 00058593 mv a1,a1 7222: R_RISCV_PCREL_LO12_I .L0 + 7222: R_RISCV_RELAX *ABS* + 7226: 856a mv a0,s10 + 7228: 00000097 auipc ra,0x0 7228: R_RISCV_CALL strncmp + 7228: R_RISCV_RELAX *ABS* + 722c: 000080e7 jalr ra # 7228 <.L20+0xc> + +0000000000007230 <.LVL57>: + 7230: e6051ae3 bnez a0,70a4 <.L13> 7230: R_RISCV_BRANCH .L13 +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:239 + status->td_sigmask = nsh_trimspaces(&line[12]); + 7234: 00cd0513 addi a0,s10,12 + 7238: 00000097 auipc ra,0x0 7238: R_RISCV_CALL nsh_trimspaces + 7238: R_RISCV_RELAX *ABS* + 723c: 000080e7 jalr ra # 7238 <.LVL57+0x8> + +0000000000007240 <.LVL58>: + 7240: 842a mv s0,a0 + 7242: b58d j 70a4 <.L13> 7242: R_RISCV_RVC_JUMP .L13 + +0000000000007244 <.L23>: +ps_callback(): +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:444 + } + else + { + ret = nsh_readfile(vtbl, "ps", filepath, vtbl->iobuffer, + 7244: 05848a13 addi s4,s1,88 + 7248: 20000713 li a4,512 + 724c: 86d2 mv a3,s4 + 724e: 00000597 auipc a1,0x0 724e: R_RISCV_PCREL_HI20 .LC3 + 724e: R_RISCV_RELAX *ABS* + 7252: 00058593 mv a1,a1 7252: R_RISCV_PCREL_LO12_I .L0 + 7252: R_RISCV_RELAX *ABS* + 7256: 8526 mv a0,s1 + +0000000000007258 <.LVL60>: + 7258: 00000097 auipc ra,0x0 7258: R_RISCV_CALL nsh_readfile + 7258: R_RISCV_RELAX *ABS* + 725c: 000080e7 jalr ra # 7258 <.LVL60> + +0000000000007260 <.LVL61>: + 7260: 842a mv s0,a0 + +0000000000007262 <.LVL62>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:446 + IOBUFFERSIZE); + free(filepath); + 7262: 7562 ld a0,56(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:266 + unsigned long stack_used = 0; + 7264: 4981 li s3,0 +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:446 + free(filepath); + 7266: 00000097 auipc ra,0x0 7266: R_RISCV_CALL free + 7266: R_RISCV_RELAX *ABS* + 726a: 000080e7 jalr ra # 7266 <.LVL62+0x4> + +000000000000726e <.LVL63>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:448 + + if (ret >= 0) + 726e: ea0446e3 bltz s0,711a <.L41> 726e: R_RISCV_BRANCH .L41 +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:264 + unsigned long stack_size = 0; + 7272: 4401 li s0,0 + +0000000000007274 <.LVL64>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:458 + /* Find the beginning of the next line and NUL-terminate the + * current line. + */ + + line = nextline; + for (nextline++; + 7274: 4b29 li s6,10 +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:482 + * StackBase: xxxxxxxxxx + * StackSize: xxxx + * StackUsed: xxxx + */ + + if (strncmp(line, g_stacksize, strlen(g_stacksize)) == 0) + 7276: 00000b97 auipc s7,0x0 7276: R_RISCV_PCREL_HI20 .LANCHOR7 + 7276: R_RISCV_RELAX *ABS* + 727a: 000b8b93 mv s7,s7 727a: R_RISCV_PCREL_LO12_I .L0 + 727a: R_RISCV_RELAX *ABS* + +000000000000727e <.LVL65>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:487 + { + stack_size = strtoul(&line[12], NULL, 0); + } +#ifdef CONFIG_STACK_COLORATION + else if (strncmp(line, g_stackused, strlen(g_stackused)) == 0) + 727e: 00000c17 auipc s8,0x0 727e: R_RISCV_PCREL_HI20 .LANCHOR8 + 727e: R_RISCV_RELAX *ABS* + 7282: 000c0c13 mv s8,s8 7282: R_RISCV_PCREL_LO12_I .L0 + 7282: R_RISCV_RELAX *ABS* + +0000000000007286 <.L30>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:458 + for (nextline++; + 7286: 001a0793 addi a5,s4,1 + +000000000000728a <.L25>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:459 + *nextline != '\n' && *nextline != '\0'; + 728a: 0007c703 lbu a4,0(a5) +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:458 + for (nextline++; + 728e: 15670663 beq a4,s6,73da <.L26> 728e: R_RISCV_BRANCH .L26 +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:459 + *nextline != '\n' && *nextline != '\0'; + 7292: eb71 bnez a4,7366 <.L27> 7292: R_RISCV_RVC_BRANCH .L27 +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:468 + nextline = NULL; + 7294: 4a81 li s5,0 + +0000000000007296 <.L35>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:482 + if (strncmp(line, g_stacksize, strlen(g_stacksize)) == 0) + 7296: 4629 li a2,10 + 7298: 85de mv a1,s7 + 729a: 8552 mv a0,s4 + 729c: 00000097 auipc ra,0x0 729c: R_RISCV_CALL strncmp + 729c: R_RISCV_RELAX *ABS* + 72a0: 000080e7 jalr ra # 729c <.L35+0x6> + +00000000000072a4 <.LVL69>: + 72a4: e179 bnez a0,736a <.L28> 72a4: R_RISCV_RVC_BRANCH .L28 +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:484 + stack_size = strtoul(&line[12], NULL, 0); + 72a6: 4601 li a2,0 + 72a8: 4581 li a1,0 + 72aa: 00ca0513 addi a0,s4,12 + 72ae: 00000097 auipc ra,0x0 72ae: R_RISCV_CALL strtoul + 72ae: R_RISCV_RELAX *ABS* + 72b2: 000080e7 jalr ra # 72ae <.LVL69+0xa> + +00000000000072b6 <.LVL70>: + 72b6: 842a mv s0,a0 + +00000000000072b8 <.L29>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:493 + { + stack_used = strtoul(&line[12], NULL, 0); + } +#endif + } + while (nextline != NULL); + 72b8: 0a0a9563 bnez s5,7362 <.L42> 72b8: R_RISCV_BRANCH .L42 +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:267 + unsigned long stack_filled = 0; + 72bc: 4701 li a4,0 +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:499 + } + } + +#ifdef CONFIG_STACK_COLORATION + + if (stack_size > 0 && stack_used > 0) + 72be: c809 beqz s0,72d0 <.L24> 72be: R_RISCV_RVC_BRANCH .L24 + 72c0: 00098863 beqz s3,72d0 <.L24> 72c0: R_RISCV_BRANCH .L24 +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:503 + { + /* Use fixed-point math with one decimal place */ + + stack_filled = 10 * 100 * stack_used / stack_size; + 72c4: 3e800713 li a4,1000 + 72c8: 02e98733 mul a4,s3,a4 + 72cc: 02875733 divu a4,a4,s0 + +00000000000072d0 <.L24>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:532 + } +#endif + +#if defined(PS_SHOW_HEAPSIZE) || defined (PS_SHOW_STACKSIZE) || \ + defined (PS_SHOW_STACKUSAGE) || defined (NSH_HAVE_CPULOAD) + nsh_output(vtbl, + 72d0: 46a9 li a3,10 + 72d2: 31f00813 li a6,799 + 72d6: 00e83833 sltu a6,a6,a4 + 72da: 0304b883 ld a7,48(s1) + 72de: 8622 mv a2,s0 + 72e0: 00000597 auipc a1,0x0 72e0: R_RISCV_PCREL_HI20 .LC6 + 72e0: R_RISCV_RELAX *ABS* + 72e4: 00058593 mv a1,a1 72e4: R_RISCV_PCREL_LO12_I .L0 + 72e4: R_RISCV_RELAX *ABS* + 72e8: 02080813 addi a6,a6,32 + 72ec: 8526 mv a0,s1 + 72ee: 02d777b3 remu a5,a4,a3 + 72f2: 02d75733 divu a4,a4,a3 + +00000000000072f6 <.LVL73>: + 72f6: 86ce mv a3,s3 + 72f8: 9882 jalr a7 + +00000000000072fa <.LVL74>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:567 +#endif + + /* Read the task/thread command line */ + + filepath = NULL; + ret = asprintf(&filepath, "%s/%s/cmdline", dirpath, entryp->d_name); + 72fa: 7622 ld a2,40(sp) + 72fc: 86ca mv a3,s2 + 72fe: 00000597 auipc a1,0x0 72fe: R_RISCV_PCREL_HI20 .LC7 + 72fe: R_RISCV_RELAX *ABS* + 7302: 00058593 mv a1,a1 7302: R_RISCV_PCREL_LO12_I .L0 + 7302: R_RISCV_RELAX *ABS* + 7306: 1828 addi a0,sp,56 +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:566 + filepath = NULL; + 7308: fc02 sd zero,56(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:567 + ret = asprintf(&filepath, "%s/%s/cmdline", dirpath, entryp->d_name); + 730a: 00000097 auipc ra,0x0 730a: R_RISCV_CALL asprintf + 730a: R_RISCV_RELAX *ABS* + 730e: 000080e7 jalr ra # 730a <.LVL74+0x10> + +0000000000007312 <.LVL75>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:569 + + if (ret < 0 || filepath == NULL) + 7312: 00054463 bltz a0,731a <.L32> 7312: R_RISCV_BRANCH .L32 + 7316: 7662 ld a2,56(sp) + 7318: ea3d bnez a2,738e <.L33> 7318: R_RISCV_RVC_BRANCH .L33 + +000000000000731a <.L32>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:571 + { + nsh_error(vtbl, g_fmtcmdfailed, "ps", "asprintf", NSH_ERRNO); + 731a: 7480 ld s0,40(s1) + 731c: 00000097 auipc ra,0x0 731c: R_RISCV_CALL __errno + 731c: R_RISCV_RELAX *ABS* + 7320: 000080e7 jalr ra # 731c <.L32+0x2> + +0000000000007324 <.LVL76>: + 7324: 4118 lw a4,0(a0) + 7326: 00000697 auipc a3,0x0 7326: R_RISCV_PCREL_HI20 .LC2 + 7326: R_RISCV_RELAX *ABS* + 732a: 00068693 mv a3,a3 732a: R_RISCV_PCREL_LO12_I .L0 + 732a: R_RISCV_RELAX *ABS* + 732e: 00000617 auipc a2,0x0 732e: R_RISCV_PCREL_HI20 .LC3 + 732e: R_RISCV_RELAX *ABS* + 7332: 00060613 mv a2,a2 7332: R_RISCV_PCREL_LO12_I .L0 + 7332: R_RISCV_RELAX *ABS* + 7336: 00000597 auipc a1,0x0 7336: R_RISCV_PCREL_HI20 g_fmtcmdfailed + 7336: R_RISCV_RELAX *ABS* + 733a: 00058593 mv a1,a1 733a: R_RISCV_PCREL_LO12_I .L0 + 733a: R_RISCV_RELAX *ABS* + 733e: 8526 mv a0,s1 + 7340: 9402 jalr s0 + +0000000000007342 <.LVL77>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:572 + return ERROR; + 7342: 557d li a0,-1 + +0000000000007344 <.L52>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:585 + return ERROR; + } + + nsh_output(vtbl, "%s\n", nsh_trimspaces(vtbl->iobuffer)); + return OK; +} + 7344: 70aa ld ra,168(sp) + 7346: 740a ld s0,160(sp) + 7348: 64ea ld s1,152(sp) + 734a: 694a ld s2,144(sp) + 734c: 69aa ld s3,136(sp) + 734e: 6a0a ld s4,128(sp) + 7350: 7ae6 ld s5,120(sp) + 7352: 7b46 ld s6,112(sp) + 7354: 7ba6 ld s7,104(sp) + 7356: 7c06 ld s8,96(sp) + 7358: 6ce6 ld s9,88(sp) + 735a: 6d46 ld s10,80(sp) + 735c: 6da6 ld s11,72(sp) + 735e: 614d addi sp,sp,176 + +0000000000007360 <.LVL79>: + 7360: 8082 ret + +0000000000007362 <.L42>: + 7362: 8a56 mv s4,s5 + +0000000000007364 <.LVL81>: + 7364: b70d j 7286 <.L30> 7364: R_RISCV_RVC_JUMP .L30 + +0000000000007366 <.L27>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:460 + nextline++); + 7366: 0785 addi a5,a5,1 + 7368: b70d j 728a <.L25> 7368: R_RISCV_RVC_JUMP .L25 + +000000000000736a <.L28>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:487 + else if (strncmp(line, g_stackused, strlen(g_stackused)) == 0) + 736a: 4629 li a2,10 + 736c: 85e2 mv a1,s8 + 736e: 8552 mv a0,s4 + 7370: 00000097 auipc ra,0x0 7370: R_RISCV_CALL strncmp + 7370: R_RISCV_RELAX *ABS* + 7374: 000080e7 jalr ra # 7370 <.L28+0x6> + +0000000000007378 <.LVL85>: + 7378: f121 bnez a0,72b8 <.L29> 7378: R_RISCV_RVC_BRANCH .L29 +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:489 + stack_used = strtoul(&line[12], NULL, 0); + 737a: 4601 li a2,0 + 737c: 4581 li a1,0 + 737e: 00ca0513 addi a0,s4,12 + 7382: 00000097 auipc ra,0x0 7382: R_RISCV_CALL strtoul + 7382: R_RISCV_RELAX *ABS* + 7386: 000080e7 jalr ra # 7382 <.LVL85+0xa> + +000000000000738a <.LVL86>: + 738a: 89aa mv s3,a0 + +000000000000738c <.LVL87>: + 738c: b735 j 72b8 <.L29> 738c: R_RISCV_RVC_JUMP .L29 + +000000000000738e <.L33>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:575 + ret = nsh_readfile(vtbl, "ps", filepath, vtbl->iobuffer, IOBUFFERSIZE); + 738e: 05848913 addi s2,s1,88 + +0000000000007392 <.LVL89>: + 7392: 20000713 li a4,512 + 7396: 86ca mv a3,s2 + 7398: 00000597 auipc a1,0x0 7398: R_RISCV_PCREL_HI20 .LC3 + 7398: R_RISCV_RELAX *ABS* + 739c: 00058593 mv a1,a1 739c: R_RISCV_PCREL_LO12_I .L0 + 739c: R_RISCV_RELAX *ABS* + 73a0: 8526 mv a0,s1 + +00000000000073a2 <.LVL90>: + 73a2: 00000097 auipc ra,0x0 73a2: R_RISCV_CALL nsh_readfile + 73a2: R_RISCV_RELAX *ABS* + 73a6: 000080e7 jalr ra # 73a2 <.LVL90> + +00000000000073aa <.LVL91>: + 73aa: 842a mv s0,a0 + +00000000000073ac <.LVL92>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:576 + free(filepath); + 73ac: 7562 ld a0,56(sp) + 73ae: 00000097 auipc ra,0x0 73ae: R_RISCV_CALL free + 73ae: R_RISCV_RELAX *ABS* + 73b2: 000080e7 jalr ra # 73ae <.LVL92+0x2> + +00000000000073b6 <.LVL93>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:580 + return ERROR; + 73b6: 557d li a0,-1 +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:578 + if (ret < 0) + 73b8: f80446e3 bltz s0,7344 <.L52> 73b8: R_RISCV_BRANCH .L52 +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:583 + nsh_output(vtbl, "%s\n", nsh_trimspaces(vtbl->iobuffer)); + 73bc: 7880 ld s0,48(s1) + +00000000000073be <.LVL94>: + 73be: 854a mv a0,s2 + 73c0: 00000097 auipc ra,0x0 73c0: R_RISCV_CALL nsh_trimspaces + 73c0: R_RISCV_RELAX *ABS* + 73c4: 000080e7 jalr ra # 73c0 <.LVL94+0x2> + +00000000000073c8 <.LVL95>: + 73c8: 862a mv a2,a0 + 73ca: 00000597 auipc a1,0x0 73ca: R_RISCV_PCREL_HI20 .LC8 + 73ca: R_RISCV_RELAX *ABS* + 73ce: 00058593 mv a1,a1 73ce: R_RISCV_PCREL_LO12_I .L0 + 73ce: R_RISCV_RELAX *ABS* + 73d2: 8526 mv a0,s1 + 73d4: 9402 jalr s0 + +00000000000073d6 <.L38>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:279 + return OK; + 73d6: 4501 li a0,0 + 73d8: b7b5 j 7344 <.L52> 73d8: R_RISCV_RVC_JUMP .L52 + +00000000000073da <.L26>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:464 + *nextline++ = '\0'; + 73da: 00178a93 addi s5,a5,1 + +00000000000073de <.LVL98>: + 73de: 00078023 sb zero,0(a5) + 73e2: bd55 j 7296 <.L35> 73e2: R_RISCV_RVC_JUMP .L35 + +00000000000073e4 <.L10>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:339 + *nextline++ = '\0'; + 73e4: 00178d93 addi s11,a5,1 + +00000000000073e8 <.LVL100>: + 73e8: 00078023 sb zero,0(a5) + 73ec: b951 j 7080 <.L36> 73ec: R_RISCV_RVC_JUMP .L36 + +00000000000073ee : +cmd_exec(): +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:598 + * Name: cmd_exec + ****************************************************************************/ + +#ifndef CONFIG_NSH_DISABLE_EXEC +int cmd_exec(FAR struct nsh_vtbl_s *vtbl, int argc, FAR char **argv) +{ + 73ee: 7179 addi sp,sp,-48 + 73f0: e84a sd s2,16(sp) + 73f2: 8932 mv s2,a2 + 73f4: f022 sd s0,32(sp) + 73f6: 842a mv s0,a0 +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:604 + UNUSED(argc); + + FAR char *endptr; + uintptr_t addr; + + addr = (uintptr_t)strtol(argv[1], &endptr, 0); + 73f8: 00893503 ld a0,8(s2) + +00000000000073fc <.LVL102>: + 73fc: 4601 li a2,0 + +00000000000073fe <.LVL103>: + 73fe: 002c addi a1,sp,8 + +0000000000007400 <.LVL104>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:598 +{ + 7400: f406 sd ra,40(sp) + 7402: ec26 sd s1,24(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:604 + addr = (uintptr_t)strtol(argv[1], &endptr, 0); + 7404: 00000097 auipc ra,0x0 7404: R_RISCV_CALL strtol + 7404: R_RISCV_RELAX *ABS* + 7408: 000080e7 jalr ra # 7404 <.LVL104+0x4> + +000000000000740c <.LVL105>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:605 + if (!addr || endptr == argv[1] || *endptr != '\0') + 740c: c909 beqz a0,741e <.L55> 740c: R_RISCV_RVC_BRANCH .L55 +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:605 (discriminator 1) + 740e: 67a2 ld a5,8(sp) + 7410: 00893703 ld a4,8(s2) + 7414: 00f70563 beq a4,a5,741e <.L55> 7414: R_RISCV_BRANCH .L55 +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:605 (discriminator 2) + 7418: 0007c783 lbu a5,0(a5) + 741c: c38d beqz a5,743e <.L56> 741c: R_RISCV_RVC_BRANCH .L56 + +000000000000741e <.L55>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:607 + { + nsh_error(vtbl, g_fmtarginvalid, argv[0]); + 741e: 741c ld a5,40(s0) + 7420: 00093603 ld a2,0(s2) + 7424: 00000597 auipc a1,0x0 7424: R_RISCV_PCREL_HI20 g_fmtarginvalid + 7424: R_RISCV_RELAX *ABS* + 7428: 00058593 mv a1,a1 7428: R_RISCV_PCREL_LO12_I .L0 + 7428: R_RISCV_RELAX *ABS* + 742c: 8522 mv a0,s0 + +000000000000742e <.LVL106>: + 742e: 9782 jalr a5 + +0000000000007430 <.LVL107>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:608 + return ERROR; + 7430: 557d li a0,-1 + +0000000000007432 <.L57>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:613 + } + + nsh_output(vtbl, "Calling %p\n", (void *)addr); + return ((exec_t)addr)(); +} + 7432: 70a2 ld ra,40(sp) + 7434: 7402 ld s0,32(sp) + +0000000000007436 <.LVL108>: + 7436: 64e2 ld s1,24(sp) + 7438: 6942 ld s2,16(sp) + +000000000000743a <.LVL109>: + 743a: 6145 addi sp,sp,48 + 743c: 8082 ret + +000000000000743e <.L56>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:611 + nsh_output(vtbl, "Calling %p\n", (void *)addr); + 743e: 781c ld a5,48(s0) + 7440: 84aa mv s1,a0 + 7442: 862a mv a2,a0 + 7444: 00000597 auipc a1,0x0 7444: R_RISCV_PCREL_HI20 .LC9 + 7444: R_RISCV_RELAX *ABS* + 7448: 00058593 mv a1,a1 7448: R_RISCV_PCREL_LO12_I .L0 + 7448: R_RISCV_RELAX *ABS* + 744c: 8522 mv a0,s0 + +000000000000744e <.LVL111>: + 744e: 9782 jalr a5 + +0000000000007450 <.LVL112>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:612 + return ((exec_t)addr)(); + 7450: 9482 jalr s1 + +0000000000007452 <.LVL113>: + 7452: b7c5 j 7432 <.L57> 7452: R_RISCV_RVC_JUMP .L57 + +0000000000007454 : +cmd_ps(): +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:622 + * Name: cmd_ps + ****************************************************************************/ + +#ifndef CONFIG_NSH_DISABLE_PS +int cmd_ps(FAR struct nsh_vtbl_s *vtbl, int argc, FAR char **argv) +{ + 7454: 715d addi sp,sp,-80 +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:626 + UNUSED(argc); + UNUSED(argv); + + nsh_output(vtbl, "%5s %5s " + 7456: 00000797 auipc a5,0x0 7456: R_RISCV_PCREL_HI20 .LC17 + 7456: R_RISCV_RELAX *ABS* + 745a: 00078793 mv a5,a5 745a: R_RISCV_PCREL_LO12_I .L0 + 745a: R_RISCV_RELAX *ABS* + 745e: f83e sd a5,48(sp) + 7460: 00000797 auipc a5,0x0 7460: R_RISCV_PCREL_HI20 .LC18 + 7460: R_RISCV_RELAX *ABS* + 7464: 00078793 mv a5,a5 7464: R_RISCV_PCREL_LO12_I .L0 + 7464: R_RISCV_RELAX *ABS* + 7468: f43e sd a5,40(sp) + 746a: 00000797 auipc a5,0x0 746a: R_RISCV_PCREL_HI20 .LC19 + 746a: R_RISCV_RELAX *ABS* + 746e: 00078793 mv a5,a5 746e: R_RISCV_PCREL_LO12_I .L0 + 746e: R_RISCV_RELAX *ABS* + 7472: f03e sd a5,32(sp) + 7474: 00000797 auipc a5,0x0 7474: R_RISCV_PCREL_HI20 .LC20 + 7474: R_RISCV_RELAX *ABS* + 7478: 00078793 mv a5,a5 7478: R_RISCV_PCREL_LO12_I .L0 + 7478: R_RISCV_RELAX *ABS* + 747c: ec3e sd a5,24(sp) + 747e: 00000797 auipc a5,0x0 747e: R_RISCV_PCREL_HI20 .LC21 + 747e: R_RISCV_RELAX *ABS* + 7482: 00078793 mv a5,a5 7482: R_RISCV_PCREL_LO12_I .L0 + 7482: R_RISCV_RELAX *ABS* + 7486: e83e sd a5,16(sp) + 7488: 00000797 auipc a5,0x0 7488: R_RISCV_PCREL_HI20 .LC22 + 7488: R_RISCV_RELAX *ABS* + 748c: 00078793 mv a5,a5 748c: R_RISCV_PCREL_LO12_I .L0 + 748c: R_RISCV_RELAX *ABS* + 7490: e43e sd a5,8(sp) + 7492: 00000797 auipc a5,0x0 7492: R_RISCV_PCREL_HI20 .LC23 + 7492: R_RISCV_RELAX *ABS* + 7496: 00078793 mv a5,a5 7496: R_RISCV_PCREL_LO12_I .L0 + 7496: R_RISCV_RELAX *ABS* +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:622 +{ + 749a: e0a2 sd s0,64(sp) + 749c: e486 sd ra,72(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:626 + nsh_output(vtbl, "%5s %5s " + 749e: e03e sd a5,0(sp) + 74a0: 03053303 ld t1,48(a0) + 74a4: 00000717 auipc a4,0x0 74a4: R_RISCV_PCREL_HI20 .LC13 + 74a4: R_RISCV_RELAX *ABS* + 74a8: 00070713 mv a4,a4 74a8: R_RISCV_PCREL_LO12_I .L0 + 74a8: R_RISCV_RELAX *ABS* + 74ac: 00000697 auipc a3,0x0 74ac: R_RISCV_PCREL_HI20 .LC14 + 74ac: R_RISCV_RELAX *ABS* + 74b0: 00068693 mv a3,a3 74b0: R_RISCV_PCREL_LO12_I .L0 + 74b0: R_RISCV_RELAX *ABS* + 74b4: 00000617 auipc a2,0x0 74b4: R_RISCV_PCREL_HI20 .LC15 + 74b4: R_RISCV_RELAX *ABS* + 74b8: 00060613 mv a2,a2 74b8: R_RISCV_PCREL_LO12_I .L0 + 74b8: R_RISCV_RELAX *ABS* + +00000000000074bc <.LVL115>: + 74bc: 00000597 auipc a1,0x0 74bc: R_RISCV_PCREL_HI20 .LC16 + 74bc: R_RISCV_RELAX *ABS* + 74c0: 00058593 mv a1,a1 74c0: R_RISCV_PCREL_LO12_I .L0 + 74c0: R_RISCV_RELAX *ABS* + +00000000000074c4 <.LVL116>: + 74c4: 00000897 auipc a7,0x0 74c4: R_RISCV_PCREL_HI20 .LC10 + 74c4: R_RISCV_RELAX *ABS* + 74c8: 00088893 mv a7,a7 74c8: R_RISCV_PCREL_LO12_I .L0 + 74c8: R_RISCV_RELAX *ABS* + 74cc: 00000817 auipc a6,0x0 74cc: R_RISCV_PCREL_HI20 .LC11 + 74cc: R_RISCV_RELAX *ABS* + 74d0: 00080813 mv a6,a6 74d0: R_RISCV_PCREL_LO12_I .L0 + 74d0: R_RISCV_RELAX *ABS* + 74d4: 00000797 auipc a5,0x0 74d4: R_RISCV_PCREL_HI20 .LC12 + 74d4: R_RISCV_RELAX *ABS* + 74d8: 00078793 mv a5,a5 74d8: R_RISCV_PCREL_LO12_I .L0 + 74d8: R_RISCV_RELAX *ABS* +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:622 +{ + 74dc: 842a mv s0,a0 +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:626 + nsh_output(vtbl, "%5s %5s " + 74de: 9302 jalr t1 + +00000000000074e0 <.LVL117>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:668 + "CPU", +#endif + "COMMAND" + ); + + return nsh_foreach_direntry(vtbl, "ps", CONFIG_NSH_PROC_MOUNTPOINT, + 74e0: 8522 mv a0,s0 +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:670 + ps_callback, NULL); +} + 74e2: 6406 ld s0,64(sp) + +00000000000074e4 <.LVL118>: + 74e4: 60a6 ld ra,72(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:668 + return nsh_foreach_direntry(vtbl, "ps", CONFIG_NSH_PROC_MOUNTPOINT, + 74e6: 4701 li a4,0 + 74e8: 00000697 auipc a3,0x0 74e8: R_RISCV_PCREL_HI20 ps_callback + 74e8: R_RISCV_RELAX *ABS* + 74ec: 00068693 mv a3,a3 74ec: R_RISCV_PCREL_LO12_I .L0 + 74ec: R_RISCV_RELAX *ABS* + 74f0: 00000617 auipc a2,0x0 74f0: R_RISCV_PCREL_HI20 .LC24 + 74f0: R_RISCV_RELAX *ABS* + 74f4: 00060613 mv a2,a2 74f4: R_RISCV_PCREL_LO12_I .L0 + 74f4: R_RISCV_RELAX *ABS* + 74f8: 00000597 auipc a1,0x0 74f8: R_RISCV_PCREL_HI20 .LC3 + 74f8: R_RISCV_RELAX *ABS* + 74fc: 00058593 mv a1,a1 74fc: R_RISCV_PCREL_LO12_I .L0 + 74fc: R_RISCV_RELAX *ABS* +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:670 +} + 7500: 6161 addi sp,sp,80 +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:668 + return nsh_foreach_direntry(vtbl, "ps", CONFIG_NSH_PROC_MOUNTPOINT, + 7502: 00000317 auipc t1,0x0 7502: R_RISCV_CALL nsh_foreach_direntry + 7502: R_RISCV_RELAX *ABS* + 7506: 00030067 jr t1 # 7502 <.LVL118+0x1e> + +000000000000750a : +cmd_pidof(): +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:679 + * Name: cmd_pidof + ****************************************************************************/ + +#if defined(CONFIG_FS_PROCFS) && !defined(CONFIG_NSH_DISABLE_PIDOF) +int cmd_pidof(FAR struct nsh_vtbl_s *vtbl, int argc, FAR char **argv) +{ + 750a: 7159 addi sp,sp,-112 +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:680 + FAR const char *name = argv[argc - 1]; + 750c: 058e slli a1,a1,0x3 + +000000000000750e <.LVL121>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:679 +{ + 750e: eca6 sd s1,88(sp) + 7510: e4ce sd s3,72(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:680 + FAR const char *name = argv[argc - 1]; + 7512: 95b2 add a1,a1,a2 +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:679 +{ + 7514: f486 sd ra,104(sp) + 7516: f0a2 sd s0,96(sp) + 7518: e8ca sd s2,80(sp) + 751a: e0d2 sd s4,64(sp) + 751c: fc56 sd s5,56(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:680 + FAR const char *name = argv[argc - 1]; + 751e: ff85b703 ld a4,-8(a1) # 74f0 <.LVL118+0xc> + +0000000000007522 <.LVL122>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:679 +{ + 7522: 89b2 mv s3,a2 +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:685 + pid_t pids[8]; + ssize_t ret; + int i; + + ret = nsh_getpid(vtbl, name, pids, nitems(pids)); + 7524: 46a1 li a3,8 + 7526: 85ba mv a1,a4 + 7528: 0810 addi a2,sp,16 + +000000000000752a <.LVL123>: + 752a: e43a sd a4,8(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:679 +{ + 752c: 84aa mv s1,a0 +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:685 + ret = nsh_getpid(vtbl, name, pids, nitems(pids)); + 752e: 00000097 auipc ra,0x0 752e: R_RISCV_CALL nsh_getpid + 752e: R_RISCV_RELAX *ABS* + 7532: 000080e7 jalr ra # 752e <.LVL123+0x4> + +0000000000007536 <.LVL124>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:686 + if (ret <= 0) + 7536: 6722 ld a4,8(sp) + 7538: 02a04963 bgtz a0,756a <.L70> 7538: R_RISCV_BRANCH .L70 +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:688 + { + nsh_error(vtbl, g_fmtnosuch, argv[0], "task", name); + 753c: 749c ld a5,40(s1) + 753e: 0009b603 ld a2,0(s3) + 7542: 00000697 auipc a3,0x0 7542: R_RISCV_PCREL_HI20 .LC25 + 7542: R_RISCV_RELAX *ABS* + 7546: 00068693 mv a3,a3 7546: R_RISCV_PCREL_LO12_I .L0 + 7546: R_RISCV_RELAX *ABS* + 754a: 00000597 auipc a1,0x0 754a: R_RISCV_PCREL_HI20 g_fmtnosuch + 754a: R_RISCV_RELAX *ABS* + 754e: 00058593 mv a1,a1 754e: R_RISCV_PCREL_LO12_I .L0 + 754e: R_RISCV_RELAX *ABS* + 7552: 8526 mv a0,s1 + +0000000000007554 <.LVL125>: + 7554: 9782 jalr a5 + +0000000000007556 <.LVL126>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:689 + return ERROR; + 7556: 557d li a0,-1 + +0000000000007558 <.L66>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:698 + { + nsh_output(vtbl, "%d ", pids[i]); + } + + return OK; +} + 7558: 70a6 ld ra,104(sp) + 755a: 7406 ld s0,96(sp) + 755c: 64e6 ld s1,88(sp) + +000000000000755e <.LVL127>: + 755e: 6946 ld s2,80(sp) + 7560: 69a6 ld s3,72(sp) + +0000000000007562 <.LVL128>: + 7562: 6a06 ld s4,64(sp) + 7564: 7ae2 ld s5,56(sp) + 7566: 6165 addi sp,sp,112 + +0000000000007568 <.LVL129>: + 7568: 8082 ret + +000000000000756a <.L70>: + 756a: 892a mv s2,a0 + 756c: 0800 addi s0,sp,16 + 756e: 4a01 li s4,0 + 7570: 00000a97 auipc s5,0x0 7570: R_RISCV_PCREL_HI20 .LC26 + 7570: R_RISCV_RELAX *ABS* + 7574: 000a8a93 mv s5,s5 7574: R_RISCV_PCREL_LO12_I .L0 + 7574: R_RISCV_RELAX *ABS* + +0000000000007578 <.L67>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:694 (discriminator 3) + nsh_output(vtbl, "%d ", pids[i]); + 7578: 4010 lw a2,0(s0) + 757a: 789c ld a5,48(s1) + 757c: 85d6 mv a1,s5 + 757e: 8526 mv a0,s1 +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:692 (discriminator 3) + for (i = 0; i < ret; i++) + 7580: 0a05 addi s4,s4,1 + +0000000000007582 <.LVL132>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:694 (discriminator 3) + nsh_output(vtbl, "%d ", pids[i]); + 7582: 9782 jalr a5 + +0000000000007584 <.LVL133>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:692 (discriminator 3) + for (i = 0; i < ret; i++) + 7584: 0411 addi s0,s0,4 + 7586: ff2a19e3 bne s4,s2,7578 <.L67> 7586: R_RISCV_BRANCH .L67 +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:697 + return OK; + 758a: 4501 li a0,0 + 758c: b7f1 j 7558 <.L66> 758c: R_RISCV_RVC_JUMP .L66 + +000000000000758e : +cmd_kill(): +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:707 + * Name: cmd_kill + ****************************************************************************/ + +#ifndef CONFIG_NSH_DISABLE_KILL +int cmd_kill(FAR struct nsh_vtbl_s *vtbl, int argc, FAR char **argv) +{ + 758e: 715d addi sp,sp,-80 + 7590: e0a2 sd s0,64(sp) + 7592: fc26 sd s1,56(sp) + 7594: e486 sd ra,72(sp) + 7596: f84a sd s2,48(sp) + 7598: f44e sd s3,40(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:717 + + /* kill will send SIGTERM to the task in case no signal is selected by + * - option + */ + + if (argc == 3) /* kill - */ + 759a: 478d li a5,3 +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:707 +{ + 759c: 84aa mv s1,a0 + 759e: 8432 mv s0,a2 +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:717 + if (argc == 3) /* kill - */ + 75a0: 04f59c63 bne a1,a5,75f8 <.L73> 75a0: R_RISCV_BRANCH .L73 +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:723 + { + /* Check incoming parameters. + * The first parameter should be "-" + */ + + ptr = argv[1]; + 75a4: 6608 ld a0,8(a2) + +00000000000075a6 <.LVL135>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:724 + if (*ptr != '-' || ptr[1] < '0' || ptr[1] > '9') + 75a6: 02d00793 li a5,45 + 75aa: 00054703 lbu a4,0(a0) + 75ae: 02f71c63 bne a4,a5,75e6 <.L78> 75ae: R_RISCV_BRANCH .L78 +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:724 (discriminator 1) + 75b2: 00154783 lbu a5,1(a0) + 75b6: 49a5 li s3,9 + 75b8: fd07879b addiw a5,a5,-48 + 75bc: 0ff7f793 zext.b a5,a5 + 75c0: 02f9e363 bltu s3,a5,75e6 <.L78> 75c0: R_RISCV_BRANCH .L78 +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:731 + goto invalid_arg; + } + + /* Extract the signal number */ + + signal = strtol(&ptr[1], &endptr, 0); + 75c4: 4601 li a2,0 + +00000000000075c6 <.LVL136>: + 75c6: 082c addi a1,sp,24 + +00000000000075c8 <.LVL137>: + 75c8: 0505 addi a0,a0,1 + +00000000000075ca <.LVL138>: + 75ca: 00000097 auipc ra,0x0 75ca: R_RISCV_CALL strtol + 75ca: R_RISCV_RELAX *ABS* + 75ce: 000080e7 jalr ra # 75ca <.LVL138> + +00000000000075d2 <.LVL139>: + 75d2: 892a mv s2,a0 + +00000000000075d4 <.LVL140>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:735 + + /* The second parameter should be */ + + ptr = argv[2]; + 75d4: 6808 ld a0,16(s0) + +00000000000075d6 <.LVL141>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:737 + + if (*ptr < '0' || *ptr > '9') + 75d6: 00054783 lbu a5,0(a0) + 75da: fd07879b addiw a5,a5,-48 + 75de: 0ff7f793 zext.b a5,a5 + 75e2: 02f9f963 bgeu s3,a5,7614 <.L75> 75e2: R_RISCV_BRANCH .L75 + +00000000000075e6 <.L78>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:799 + nsh_error(vtbl, g_fmtcmdfailed, argv[0], "kill", NSH_ERRNO); + return ERROR; + } + +invalid_arg: + nsh_error(vtbl, g_fmtarginvalid, argv[0]); + 75e6: 749c ld a5,40(s1) + 75e8: 6010 ld a2,0(s0) + 75ea: 00000597 auipc a1,0x0 75ea: R_RISCV_PCREL_HI20 g_fmtarginvalid + 75ea: R_RISCV_RELAX *ABS* + 75ee: 00058593 mv a1,a1 75ee: R_RISCV_PCREL_LO12_I .L0 + 75ee: R_RISCV_RELAX *ABS* + 75f2: 8526 mv a0,s1 + 75f4: 9782 jalr a5 + +00000000000075f6 <.LVL143>: + 75f6: a841 j 7686 <.L85> 75f6: R_RISCV_RVC_JUMP .L85 + +00000000000075f8 <.L73>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:742 + else if (argc == 2) /* kill */ + 75f8: 4789 li a5,2 + 75fa: fef596e3 bne a1,a5,75e6 <.L78> 75fa: R_RISCV_BRANCH .L78 + +00000000000075fe <.LVL145>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:750 + ptr = argv[1]; + 75fe: 6608 ld a0,8(a2) + +0000000000007600 <.LVL146>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:752 + if (*ptr < '0' || *ptr > '9') + 7600: 4725 li a4,9 + 7602: 00054783 lbu a5,0(a0) + 7606: fd07879b addiw a5,a5,-48 + 760a: 0ff7f793 zext.b a5,a5 + 760e: fcf76ce3 bltu a4,a5,75e6 <.L78> 760e: R_RISCV_BRANCH .L78 +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:746 + signal = (long) SIGTERM; /* SIGTERM is always defined in signal.h */ + 7612: 493d li s2,15 + +0000000000007614 <.L75>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:766 + pid = strtol(ptr, &endptr, 0); + 7614: 082c addi a1,sp,24 + 7616: 4601 li a2,0 + 7618: 00000097 auipc ra,0x0 7618: R_RISCV_CALL strtol + 7618: R_RISCV_RELAX *ABS* + 761c: 000080e7 jalr ra # 7618 <.L75+0x4> + +0000000000007620 <.LVL148>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:777 + if (kill((pid_t)pid, (int)signal) == 0) + 7620: 0009059b sext.w a1,s2 + 7624: 2501 sext.w a0,a0 + +0000000000007626 <.LVL149>: + 7626: 00000097 auipc ra,0x0 7626: R_RISCV_CALL kill + 7626: R_RISCV_RELAX *ABS* + 762a: 000080e7 jalr ra # 7626 <.LVL149> + +000000000000762e <.LVL150>: + 762e: cd29 beqz a0,7688 <.L76> 762e: R_RISCV_RVC_BRANCH .L76 +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:782 + switch (errno) + 7630: 00000097 auipc ra,0x0 7630: R_RISCV_CALL __errno + 7630: R_RISCV_RELAX *ABS* + 7634: 000080e7 jalr ra # 7630 <.LVL150+0x2> + +0000000000007638 <.LVL151>: + 7638: 411c lw a5,0(a0) + 763a: 470d li a4,3 + 763c: 6010 ld a2,0(s0) + 763e: 0284b903 ld s2,40(s1) + +0000000000007642 <.LVL152>: + 7642: 02e78763 beq a5,a4,7670 <.L77> 7642: R_RISCV_BRANCH .L77 + 7646: 4759 li a4,22 + 7648: f8e78fe3 beq a5,a4,75e6 <.L78> 7648: R_RISCV_BRANCH .L78 + 764c: e432 sd a2,8(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:794 + nsh_error(vtbl, g_fmtcmdfailed, argv[0], "kill", NSH_ERRNO); + 764e: 00000097 auipc ra,0x0 764e: R_RISCV_CALL __errno + 764e: R_RISCV_RELAX *ABS* + 7652: 000080e7 jalr ra # 764e <.LVL152+0xc> + +0000000000007656 <.LVL153>: + 7656: 4118 lw a4,0(a0) + 7658: 6622 ld a2,8(sp) + 765a: 00000697 auipc a3,0x0 765a: R_RISCV_PCREL_HI20 .LC27 + 765a: R_RISCV_RELAX *ABS* + 765e: 00068693 mv a3,a3 765e: R_RISCV_PCREL_LO12_I .L0 + 765e: R_RISCV_RELAX *ABS* + 7662: 00000597 auipc a1,0x0 7662: R_RISCV_PCREL_HI20 g_fmtcmdfailed + 7662: R_RISCV_RELAX *ABS* + 7666: 00058593 mv a1,a1 7666: R_RISCV_PCREL_LO12_I .L0 + 7666: R_RISCV_RELAX *ABS* + 766a: 8526 mv a0,s1 + 766c: 9902 jalr s2 + +000000000000766e <.LVL154>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:795 + return ERROR; + 766e: a821 j 7686 <.L85> 766e: R_RISCV_RVC_JUMP .L85 + +0000000000007670 <.L77>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:788 + nsh_error(vtbl, g_fmtnosuch, argv[0], "task", argv[2]); + 7670: 6818 ld a4,16(s0) + 7672: 00000697 auipc a3,0x0 7672: R_RISCV_PCREL_HI20 .LC25 + 7672: R_RISCV_RELAX *ABS* + 7676: 00068693 mv a3,a3 7676: R_RISCV_PCREL_LO12_I .L0 + 7676: R_RISCV_RELAX *ABS* + 767a: 00000597 auipc a1,0x0 767a: R_RISCV_PCREL_HI20 g_fmtnosuch + 767a: R_RISCV_RELAX *ABS* + 767e: 00058593 mv a1,a1 767e: R_RISCV_PCREL_LO12_I .L0 + 767e: R_RISCV_RELAX *ABS* + 7682: 8526 mv a0,s1 + 7684: 9902 jalr s2 + +0000000000007686 <.L85>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:800 + return ERROR; + 7686: 557d li a0,-1 + +0000000000007688 <.L76>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:801 +} + 7688: 60a6 ld ra,72(sp) + 768a: 6406 ld s0,64(sp) + +000000000000768c <.LVL156>: + 768c: 74e2 ld s1,56(sp) + +000000000000768e <.LVL157>: + 768e: 7942 ld s2,48(sp) + 7690: 79a2 ld s3,40(sp) + 7692: 6161 addi sp,sp,80 + 7694: 8082 ret + +0000000000007696 : +cmd_sleep(): +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:810 + * Name: cmd_sleep + ****************************************************************************/ + +#ifndef CONFIG_NSH_DISABLE_SLEEP +int cmd_sleep(FAR struct nsh_vtbl_s *vtbl, int argc, FAR char **argv) +{ + 7696: 7179 addi sp,sp,-48 + 7698: f022 sd s0,32(sp) + 769a: 8432 mv s0,a2 + 769c: ec26 sd s1,24(sp) + 769e: 84aa mv s1,a0 +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:816 + UNUSED(argc); + + FAR char *endptr; + long secs; + + secs = strtol(argv[1], &endptr, 0); + 76a0: 6408 ld a0,8(s0) + +00000000000076a2 <.LVL159>: + 76a2: 4601 li a2,0 + +00000000000076a4 <.LVL160>: + 76a4: 002c addi a1,sp,8 + +00000000000076a6 <.LVL161>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:810 +{ + 76a6: f406 sd ra,40(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:816 + secs = strtol(argv[1], &endptr, 0); + 76a8: 00000097 auipc ra,0x0 76a8: R_RISCV_CALL strtol + 76a8: R_RISCV_RELAX *ABS* + 76ac: 000080e7 jalr ra # 76a8 <.LVL161+0x2> + +00000000000076b0 <.LVL162>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:817 + if (!secs || endptr == argv[1] || *endptr != '\0') + 76b0: c901 beqz a0,76c0 <.L87> 76b0: R_RISCV_RVC_BRANCH .L87 +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:817 (discriminator 1) + 76b2: 67a2 ld a5,8(sp) + 76b4: 6418 ld a4,8(s0) + 76b6: 00f70563 beq a4,a5,76c0 <.L87> 76b6: R_RISCV_BRANCH .L87 +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:817 (discriminator 2) + 76ba: 0007c783 lbu a5,0(a5) # 74d4 <.LVL116+0x10> + 76be: cf99 beqz a5,76dc <.L88> 76be: R_RISCV_RVC_BRANCH .L88 + +00000000000076c0 <.L87>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:819 + { + nsh_error(vtbl, g_fmtarginvalid, argv[0]); + 76c0: 749c ld a5,40(s1) + 76c2: 6010 ld a2,0(s0) + 76c4: 00000597 auipc a1,0x0 76c4: R_RISCV_PCREL_HI20 g_fmtarginvalid + 76c4: R_RISCV_RELAX *ABS* + 76c8: 00058593 mv a1,a1 76c8: R_RISCV_PCREL_LO12_I .L0 + 76c8: R_RISCV_RELAX *ABS* + 76cc: 8526 mv a0,s1 + +00000000000076ce <.LVL163>: + 76ce: 9782 jalr a5 + +00000000000076d0 <.LVL164>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:820 + return ERROR; + 76d0: 557d li a0,-1 + +00000000000076d2 <.L89>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:825 + } + + sleep(secs); + return OK; +} + 76d2: 70a2 ld ra,40(sp) + 76d4: 7402 ld s0,32(sp) + +00000000000076d6 <.LVL165>: + 76d6: 64e2 ld s1,24(sp) + +00000000000076d8 <.LVL166>: + 76d8: 6145 addi sp,sp,48 + 76da: 8082 ret + +00000000000076dc <.L88>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:823 + sleep(secs); + 76dc: 2501 sext.w a0,a0 + +00000000000076de <.LVL168>: + 76de: 00000097 auipc ra,0x0 76de: R_RISCV_CALL sleep + 76de: R_RISCV_RELAX *ABS* + 76e2: 000080e7 jalr ra # 76de <.LVL168> + +00000000000076e6 <.LVL169>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:824 + return OK; + 76e6: 4501 li a0,0 + 76e8: b7ed j 76d2 <.L89> 76e8: R_RISCV_RVC_JUMP .L89 + +00000000000076ea : +cmd_usleep(): +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:834 + * Name: cmd_usleep + ****************************************************************************/ + +#ifndef CONFIG_NSH_DISABLE_USLEEP +int cmd_usleep(FAR struct nsh_vtbl_s *vtbl, int argc, FAR char **argv) +{ + 76ea: 7179 addi sp,sp,-48 + 76ec: f022 sd s0,32(sp) + 76ee: 8432 mv s0,a2 + 76f0: ec26 sd s1,24(sp) + 76f2: 84aa mv s1,a0 +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:840 + UNUSED(argc); + + FAR char *endptr; + long usecs; + + usecs = strtol(argv[1], &endptr, 0); + 76f4: 6408 ld a0,8(s0) + +00000000000076f6 <.LVL171>: + 76f6: 4601 li a2,0 + +00000000000076f8 <.LVL172>: + 76f8: 002c addi a1,sp,8 + +00000000000076fa <.LVL173>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:834 +{ + 76fa: f406 sd ra,40(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:840 + usecs = strtol(argv[1], &endptr, 0); + 76fc: 00000097 auipc ra,0x0 76fc: R_RISCV_CALL strtol + 76fc: R_RISCV_RELAX *ABS* + 7700: 000080e7 jalr ra # 76fc <.LVL173+0x2> + +0000000000007704 <.LVL174>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:841 + if (!usecs || endptr == argv[1] || *endptr != '\0') + 7704: c901 beqz a0,7714 <.L95> 7704: R_RISCV_RVC_BRANCH .L95 +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:841 (discriminator 1) + 7706: 67a2 ld a5,8(sp) + 7708: 6418 ld a4,8(s0) + 770a: 00f70563 beq a4,a5,7714 <.L95> 770a: R_RISCV_BRANCH .L95 +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:841 (discriminator 2) + 770e: 0007c783 lbu a5,0(a5) + 7712: cf99 beqz a5,7730 <.L96> 7712: R_RISCV_RVC_BRANCH .L96 + +0000000000007714 <.L95>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:843 + { + nsh_error(vtbl, g_fmtarginvalid, argv[0]); + 7714: 749c ld a5,40(s1) + 7716: 6010 ld a2,0(s0) + 7718: 00000597 auipc a1,0x0 7718: R_RISCV_PCREL_HI20 g_fmtarginvalid + 7718: R_RISCV_RELAX *ABS* + 771c: 00058593 mv a1,a1 771c: R_RISCV_PCREL_LO12_I .L0 + 771c: R_RISCV_RELAX *ABS* + 7720: 8526 mv a0,s1 + +0000000000007722 <.LVL175>: + 7722: 9782 jalr a5 + +0000000000007724 <.LVL176>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:844 + return ERROR; + 7724: 557d li a0,-1 + +0000000000007726 <.L97>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:849 + } + + usleep(usecs); + return OK; +} + 7726: 70a2 ld ra,40(sp) + 7728: 7402 ld s0,32(sp) + +000000000000772a <.LVL177>: + 772a: 64e2 ld s1,24(sp) + +000000000000772c <.LVL178>: + 772c: 6145 addi sp,sp,48 + 772e: 8082 ret + +0000000000007730 <.L96>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:847 + usleep(usecs); + 7730: 2501 sext.w a0,a0 + +0000000000007732 <.LVL180>: + 7732: 00000097 auipc ra,0x0 7732: R_RISCV_CALL usleep + 7732: R_RISCV_RELAX *ABS* + 7736: 000080e7 jalr ra # 7732 <.LVL180> + +000000000000773a <.LVL181>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:848 + return OK; + 773a: 4501 li a0,0 + 773c: b7ed j 7726 <.L97> 773c: R_RISCV_RVC_JUMP .L97 + +000000000000773e : +cmd_uptime(): +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:858 + * Name: cmd_uptime + ****************************************************************************/ + +#ifndef CONFIG_NSH_DISABLE_UPTIME +int cmd_uptime(FAR struct nsh_vtbl_s *vtbl, int argc, FAR char **argv) +{ + 773e: 7155 addi sp,sp,-208 + 7740: e1a2 sd s0,192(sp) + 7742: e586 sd ra,200(sp) + 7744: fd26 sd s1,184(sp) + 7746: f94a sd s2,176(sp) + 7748: f54e sd s3,168(sp) + 774a: f152 sd s4,160(sp) + 774c: ed56 sd s5,152(sp) + 774e: e95a sd s6,144(sp) + 7750: e55e sd s7,136(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:873 + time_t uptime = 0; + + bool pretty_format_opt = false; + bool system_load_opt = false; + + if (argc < 2) + 7752: 4785 li a5,1 +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:858 +{ + 7754: 842a mv s0,a0 +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:873 + if (argc < 2) + 7756: 16b7c263 blt a5,a1,78ba <.L103> 7756: R_RISCV_BRANCH .L103 + +000000000000775a <.LVL183>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:877 + { + system_load_opt = true; + + current_time_seconds = time(NULL); + 775a: 4501 li a0,0 + +000000000000775c <.LVL184>: + 775c: 00000097 auipc ra,0x0 775c: R_RISCV_CALL time + 775c: R_RISCV_RELAX *ABS* + 7760: 000080e7 jalr ra # 775c <.LVL184> + +0000000000007764 <.LVL185>: + 7764: c62a sw a0,12(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:878 + current_time = localtime(¤t_time_seconds); + 7766: 0068 addi a0,sp,12 + 7768: 00000097 auipc ra,0x0 7768: R_RISCV_CALL localtime + 7768: R_RISCV_RELAX *ABS* + 776c: 000080e7 jalr ra # 7768 <.LVL185+0x4> + +0000000000007770 <.LVL186>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:879 + nsh_output(vtbl, "%02u:%02u:%02u ", current_time->tm_hour, + 7770: 4118 lw a4,0(a0) + 7772: 4154 lw a3,4(a0) + 7774: 4510 lw a2,8(a0) + 7776: 781c ld a5,48(s0) + 7778: 00000597 auipc a1,0x0 7778: R_RISCV_PCREL_HI20 .LC29 + 7778: R_RISCV_RELAX *ABS* + 777c: 00058593 mv a1,a1 777c: R_RISCV_PCREL_LO12_I .L0 + 777c: R_RISCV_RELAX *ABS* + 7780: 8522 mv a0,s0 + +0000000000007782 <.LVL187>: + 7782: 9782 jalr a5 + +0000000000007784 <.LVL188>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:875 + system_load_opt = true; + 7784: 4985 li s3,1 +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:870 + bool pretty_format_opt = false; + 7786: 4a81 li s5,0 + +0000000000007788 <.L104>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:916 + nsh_output(vtbl, "-s, system up since\n"); + + return ERROR; + } + + sysinfo(&sys_info); + 7788: 0808 addi a0,sp,16 + 778a: 00000097 auipc ra,0x0 778a: R_RISCV_CALL sysinfo + 778a: R_RISCV_RELAX *ABS* + 778e: 000080e7 jalr ra # 778a <.L104+0x2> + +0000000000007792 <.LVL190>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:917 + uptime = sys_info.uptime; + 7792: 4942 lw s2,16(sp) + +0000000000007794 <.LVL191>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:920 + + updays = uptime / 86400; + uptime -= updays * 86400; + 7794: 67d5 lui a5,0x15 + 7796: 1807879b addiw a5,a5,384 + 779a: 02f97a3b remuw s4,s2,a5 + +000000000000779e <.LVL192>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:921 + uphours = uptime / 3600; + 779e: 6485 lui s1,0x1 + 77a0: e104849b addiw s1,s1,-496 +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:925 + uptime -= uphours * 3600; + upminutes = uptime / 60; + + nsh_output(vtbl, "up "); + 77a4: 781c ld a5,48(s0) + 77a6: 00000597 auipc a1,0x0 77a6: R_RISCV_PCREL_HI20 .LC41 + 77a6: R_RISCV_RELAX *ABS* + 77aa: 00058593 mv a1,a1 77aa: R_RISCV_PCREL_LO12_I .L0 + 77aa: R_RISCV_RELAX *ABS* + 77ae: 8522 mv a0,s0 + 77b0: 9782 jalr a5 + +00000000000077b2 <.LVL193>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:927 + + if (updays) + 77b2: 67d5 lui a5,0x15 + 77b4: 17f78793 addi a5,a5,383 # 1517f <.LASF37+0xa> + 77b8: 029a7bbb remuw s7,s4,s1 +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:921 + uphours = uptime / 3600; + 77bc: 029a5b3b divuw s6,s4,s1 + +00000000000077c0 <.LVL194>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:923 + upminutes = uptime / 60; + 77c0: 03c00493 li s1,60 + +00000000000077c4 <.LVL195>: + 77c4: 029bd4bb divuw s1,s7,s1 + +00000000000077c8 <.LVL196>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:927 + if (updays) + 77c8: 0327fc63 bgeu a5,s2,7800 <.L108> 77c8: R_RISCV_BRANCH .L108 +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:929 + { + nsh_output(vtbl, "%" PRIu32 " day%s, ", updays, + 77cc: 0002a7b7 lui a5,0x2a + 77d0: 2ff78793 addi a5,a5,767 # 2a2ff <.LASF38+0x3> + 77d4: 7818 ld a4,48(s0) + 77d6: 00000697 auipc a3,0x0 77d6: R_RISCV_PCREL_HI20 .LC0 + 77d6: R_RISCV_RELAX *ABS* + 77da: 00068693 mv a3,a3 77da: R_RISCV_PCREL_LO12_I .L0 + 77da: R_RISCV_RELAX *ABS* + 77de: 0127f663 bgeu a5,s2,77ea <.L109> 77de: R_RISCV_BRANCH .L109 + 77e2: 00000697 auipc a3,0x0 77e2: R_RISCV_PCREL_HI20 .LC28 + 77e2: R_RISCV_RELAX *ABS* + 77e6: 00068693 mv a3,a3 77e6: R_RISCV_PCREL_LO12_I .L0 + 77e6: R_RISCV_RELAX *ABS* + +00000000000077ea <.L109>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:929 (discriminator 4) + 77ea: 6655 lui a2,0x15 + 77ec: 1806061b addiw a2,a2,384 + 77f0: 00000597 auipc a1,0x0 77f0: R_RISCV_PCREL_HI20 .LC42 + 77f0: R_RISCV_RELAX *ABS* + 77f4: 00058593 mv a1,a1 77f4: R_RISCV_PCREL_LO12_I .L0 + 77f4: R_RISCV_RELAX *ABS* + 77f8: 8522 mv a0,s0 + 77fa: 02c9563b divuw a2,s2,a2 + 77fe: 9702 jalr a4 + +0000000000007800 <.L108>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:937 + + if (pretty_format_opt) + { + if (uphours) + { + nsh_output(vtbl, "%" PRIu32 " hour%s, ", uphours, + 7800: 7818 ld a4,48(s0) +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:933 + if (pretty_format_opt) + 7802: 1c0a8663 beqz s5,79ce <.L110> 7802: R_RISCV_BRANCH .L110 +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:935 + if (uphours) + 7806: 6785 lui a5,0x1 + 7808: e0f78793 addi a5,a5,-497 # e0f <.LVL1+0x9> + 780c: 0347f663 bgeu a5,s4,7838 <.L111> 780c: R_RISCV_BRANCH .L111 +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:937 + nsh_output(vtbl, "%" PRIu32 " hour%s, ", uphours, + 7810: 6789 lui a5,0x2 + 7812: c1f78793 addi a5,a5,-993 # 1c1f <.LVL2+0x3> + 7816: 00000697 auipc a3,0x0 7816: R_RISCV_PCREL_HI20 .LC28 + 7816: R_RISCV_RELAX *ABS* + 781a: 00068693 mv a3,a3 781a: R_RISCV_PCREL_LO12_I .L0 + 781a: R_RISCV_RELAX *ABS* + 781e: 0147e663 bltu a5,s4,782a <.L112> 781e: R_RISCV_BRANCH .L112 + 7822: 00000697 auipc a3,0x0 7822: R_RISCV_PCREL_HI20 .LC0 + 7822: R_RISCV_RELAX *ABS* + 7826: 00068693 mv a3,a3 7826: R_RISCV_PCREL_LO12_I .L0 + 7826: R_RISCV_RELAX *ABS* + +000000000000782a <.L112>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:937 (discriminator 4) + 782a: 865a mv a2,s6 + 782c: 00000597 auipc a1,0x0 782c: R_RISCV_PCREL_HI20 .LC43 + 782c: R_RISCV_RELAX *ABS* + 7830: 00058593 mv a1,a1 7830: R_RISCV_PCREL_LO12_I .L0 + 7830: R_RISCV_RELAX *ABS* + 7834: 8522 mv a0,s0 + 7836: 9702 jalr a4 + +0000000000007838 <.L111>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:941 + (uphours > 1) ? "s" : ""); + } + + nsh_output(vtbl, "%" PRIu32 " minute%s", upminutes, + 7838: 07700713 li a4,119 + 783c: 781c ld a5,48(s0) + 783e: 00000697 auipc a3,0x0 783e: R_RISCV_PCREL_HI20 .LC28 + 783e: R_RISCV_RELAX *ABS* + 7842: 00068693 mv a3,a3 7842: R_RISCV_PCREL_LO12_I .L0 + 7842: R_RISCV_RELAX *ABS* + 7846: 01776663 bltu a4,s7,7852 <.L113> 7846: R_RISCV_BRANCH .L113 + 784a: 00000697 auipc a3,0x0 784a: R_RISCV_PCREL_HI20 .LC0 + 784a: R_RISCV_RELAX *ABS* + 784e: 00068693 mv a3,a3 784e: R_RISCV_PCREL_LO12_I .L0 + 784e: R_RISCV_RELAX *ABS* + +0000000000007852 <.L113>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:941 (discriminator 4) + 7852: 8626 mv a2,s1 + 7854: 00000597 auipc a1,0x0 7854: R_RISCV_PCREL_HI20 .LC44 + 7854: R_RISCV_RELAX *ABS* + 7858: 00058593 mv a1,a1 7858: R_RISCV_PCREL_LO12_I .L0 + 7858: R_RISCV_RELAX *ABS* + 785c: 8522 mv a0,s0 + 785e: 9782 jalr a5 + +0000000000007860 <.L114>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:949 + else + { + nsh_output(vtbl, "%2" PRIu32 ":" "%02" PRIu32, uphours, upminutes); + } + + if (system_load_opt) + 7860: 04098463 beqz s3,78a8 <.L115> 7860: R_RISCV_BRANCH .L115 +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:951 + { + nsh_output(vtbl, ", load average: %lu.%02lu, %lu.%02lu, %lu.%02lu", + 7864: 6662 ld a2,24(sp) + 7866: 7702 ld a4,32(sp) + 7868: 7822 ld a6,40(sp) + 786a: 66c1 lui a3,0x10 + 786c: 16fd addi a3,a3,-1 + 786e: 06400593 li a1,100 + 7872: 00d878b3 and a7,a6,a3 + 7876: 00d777b3 and a5,a4,a3 + 787a: 8ef1 and a3,a3,a2 + 787c: 02b888b3 mul a7,a7,a1 + 7880: 03043303 ld t1,48(s0) # 7088 <.L36+0x8> + 7884: 01085813 srli a6,a6,0x10 + 7888: 8341 srli a4,a4,0x10 + 788a: 8241 srli a2,a2,0x10 + 788c: 8522 mv a0,s0 + 788e: 02b787b3 mul a5,a5,a1 + 7892: 0108d893 srli a7,a7,0x10 + 7896: 02b686b3 mul a3,a3,a1 + 789a: 83c1 srli a5,a5,0x10 + 789c: 00000597 auipc a1,0x0 789c: R_RISCV_PCREL_HI20 .LC46 + 789c: R_RISCV_RELAX *ABS* + 78a0: 00058593 mv a1,a1 78a0: R_RISCV_PCREL_LO12_I .L0 + 78a0: R_RISCV_RELAX *ABS* + 78a4: 82c1 srli a3,a3,0x10 + 78a6: 9302 jalr t1 + +00000000000078a8 <.L115>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:957 + LOAD_INT(sys_info.loads[0]), LOAD_FRAC(sys_info.loads[0]), + LOAD_INT(sys_info.loads[1]), LOAD_FRAC(sys_info.loads[1]), + LOAD_INT(sys_info.loads[2]), LOAD_FRAC(sys_info.loads[2])); + } + + nsh_output(vtbl, "\n"); + 78a8: 781c ld a5,48(s0) + 78aa: 00000597 auipc a1,0x0 78aa: R_RISCV_PCREL_HI20 .LC47 + 78aa: R_RISCV_RELAX *ABS* + 78ae: 00058593 mv a1,a1 78ae: R_RISCV_PCREL_LO12_I .L0 + 78ae: R_RISCV_RELAX *ABS* + 78b2: 8522 mv a0,s0 + 78b4: 9782 jalr a5 + +00000000000078b6 <.LVL201>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:959 + + return OK; + 78b6: 4481 li s1,0 + 78b8: a8b5 j 7934 <.L106> 78b8: R_RISCV_RVC_JUMP .L106 + +00000000000078ba <.L103>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:882 + else if (strcmp(argv[1], "-p") == 0) + 78ba: 00863903 ld s2,8(a2) # 15008 <.LASF8+0x1> + 78be: 00000597 auipc a1,0x0 78be: R_RISCV_PCREL_HI20 .LC30 + 78be: R_RISCV_RELAX *ABS* + 78c2: 00058593 mv a1,a1 78c2: R_RISCV_PCREL_LO12_I .L0 + 78c2: R_RISCV_RELAX *ABS* + +00000000000078c6 <.LVL203>: + 78c6: 854a mv a0,s2 + 78c8: 00000097 auipc ra,0x0 78c8: R_RISCV_CALL strcmp + 78c8: R_RISCV_RELAX *ABS* + 78cc: 000080e7 jalr ra # 78c8 <.LVL203+0x2> + +00000000000078d0 <.LVL204>: + 78d0: cd65 beqz a0,79c8 <.L116> 78d0: R_RISCV_RVC_BRANCH .L116 +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:886 + else if (strcmp(argv[1], "-s") == 0) + 78d2: 00000597 auipc a1,0x0 78d2: R_RISCV_PCREL_HI20 .LC31 + 78d2: R_RISCV_RELAX *ABS* + 78d6: 00058593 mv a1,a1 78d6: R_RISCV_PCREL_LO12_I .L0 + 78d6: R_RISCV_RELAX *ABS* + 78da: 854a mv a0,s2 + 78dc: 00000097 auipc ra,0x0 78dc: R_RISCV_CALL strcmp + 78dc: R_RISCV_RELAX *ABS* + 78e0: 000080e7 jalr ra # 78dc <.LVL204+0xc> + +00000000000078e4 <.LVL205>: + 78e4: 84aa mv s1,a0 + 78e6: e13d bnez a0,794c <.L105> 78e6: R_RISCV_RVC_BRANCH .L105 +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:888 + sysinfo(&sys_info); + 78e8: 0808 addi a0,sp,16 + 78ea: 00000097 auipc ra,0x0 78ea: R_RISCV_CALL sysinfo + 78ea: R_RISCV_RELAX *ABS* + 78ee: 000080e7 jalr ra # 78ea <.LVL205+0x6> + +00000000000078f2 <.LVL206>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:889 + time(¤t_time_seconds); + 78f2: 0068 addi a0,sp,12 + 78f4: 00000097 auipc ra,0x0 78f4: R_RISCV_CALL time + 78f4: R_RISCV_RELAX *ABS* + 78f8: 000080e7 jalr ra # 78f4 <.LVL206+0x2> + +00000000000078fc <.LVL207>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:890 + current_time_seconds -= sys_info.uptime; + 78fc: 6742 ld a4,16(sp) + 78fe: 47b2 lw a5,12(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:891 + current_time = localtime(¤t_time_seconds); + 7900: 0068 addi a0,sp,12 +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:890 + current_time_seconds -= sys_info.uptime; + 7902: 9f99 subw a5,a5,a4 + 7904: c63e sw a5,12(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:891 + current_time = localtime(¤t_time_seconds); + 7906: 00000097 auipc ra,0x0 7906: R_RISCV_CALL localtime + 7906: R_RISCV_RELAX *ABS* + 790a: 000080e7 jalr ra # 7906 <.LVL207+0xa> + +000000000000790e <.LVL208>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:892 + nsh_output(vtbl, "%04u-%02u-%02u %02u:%02u:%02u\n", + 790e: 4914 lw a3,16(a0) + 7910: 4950 lw a2,20(a0) + 7912: 00052883 lw a7,0(a0) + 7916: 00452803 lw a6,4(a0) + 791a: 451c lw a5,8(a0) + 791c: 4558 lw a4,12(a0) + 791e: 03043303 ld t1,48(s0) + 7922: 2685 addiw a3,a3,1 + 7924: 76c6061b addiw a2,a2,1900 + 7928: 00000597 auipc a1,0x0 7928: R_RISCV_PCREL_HI20 .LC32 + 7928: R_RISCV_RELAX *ABS* + 792c: 00058593 mv a1,a1 792c: R_RISCV_PCREL_LO12_I .L0 + 792c: R_RISCV_RELAX *ABS* + 7930: 8522 mv a0,s0 + +0000000000007932 <.LVL209>: + 7932: 9302 jalr t1 + +0000000000007934 <.L106>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:960 +} + 7934: 60ae ld ra,200(sp) + 7936: 640e ld s0,192(sp) + +0000000000007938 <.LVL211>: + 7938: 794a ld s2,176(sp) + 793a: 79aa ld s3,168(sp) + 793c: 7a0a ld s4,160(sp) + 793e: 6aea ld s5,152(sp) + 7940: 6b4a ld s6,144(sp) + 7942: 6baa ld s7,136(sp) + 7944: 8526 mv a0,s1 + 7946: 74ea ld s1,184(sp) + 7948: 6169 addi sp,sp,208 + 794a: 8082 ret + +000000000000794c <.L105>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:900 + if (strcmp(argv[1], "-h") != 0) + 794c: 00000597 auipc a1,0x0 794c: R_RISCV_PCREL_HI20 .LC33 + 794c: R_RISCV_RELAX *ABS* + 7950: 00058593 mv a1,a1 7950: R_RISCV_PCREL_LO12_I .L0 + 7950: R_RISCV_RELAX *ABS* + 7954: 854a mv a0,s2 + 7956: 00000097 auipc ra,0x0 7956: R_RISCV_CALL strcmp + 7956: R_RISCV_RELAX *ABS* + 795a: 000080e7 jalr ra # 7956 <.L105+0xa> + +000000000000795e <.LVL213>: + 795e: c909 beqz a0,7970 <.L107> 795e: R_RISCV_RVC_BRANCH .L107 +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:902 + nsh_output(vtbl, "uptime: invalid option -- %s\n", argv[1]); + 7960: 781c ld a5,48(s0) + 7962: 864a mv a2,s2 + 7964: 00000597 auipc a1,0x0 7964: R_RISCV_PCREL_HI20 .LC34 + 7964: R_RISCV_RELAX *ABS* + 7968: 00058593 mv a1,a1 7968: R_RISCV_PCREL_LO12_I .L0 + 7968: R_RISCV_RELAX *ABS* + 796c: 8522 mv a0,s0 + 796e: 9782 jalr a5 + +0000000000007970 <.L107>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:905 + nsh_output(vtbl, "Usage:\n"); + 7970: 781c ld a5,48(s0) + 7972: 00000597 auipc a1,0x0 7972: R_RISCV_PCREL_HI20 .LC35 + 7972: R_RISCV_RELAX *ABS* + 7976: 00058593 mv a1,a1 7976: R_RISCV_PCREL_LO12_I .L0 + 7976: R_RISCV_RELAX *ABS* + 797a: 8522 mv a0,s0 + 797c: 9782 jalr a5 + +000000000000797e <.LVL215>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:906 + nsh_output(vtbl, "uptime [options]\n"); + 797e: 781c ld a5,48(s0) + 7980: 00000597 auipc a1,0x0 7980: R_RISCV_PCREL_HI20 .LC36 + 7980: R_RISCV_RELAX *ABS* + 7984: 00058593 mv a1,a1 7984: R_RISCV_PCREL_LO12_I .L0 + 7984: R_RISCV_RELAX *ABS* + 7988: 8522 mv a0,s0 + 798a: 9782 jalr a5 + +000000000000798c <.LVL216>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:908 + nsh_output(vtbl, "Options:\n"); + 798c: 781c ld a5,48(s0) + 798e: 00000597 auipc a1,0x0 798e: R_RISCV_PCREL_HI20 .LC37 + 798e: R_RISCV_RELAX *ABS* + 7992: 00058593 mv a1,a1 7992: R_RISCV_PCREL_LO12_I .L0 + 7992: R_RISCV_RELAX *ABS* + 7996: 8522 mv a0,s0 + 7998: 9782 jalr a5 + +000000000000799a <.LVL217>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:909 + nsh_output(vtbl, "-p, show uptime in pretty format\n"); + 799a: 781c ld a5,48(s0) + 799c: 00000597 auipc a1,0x0 799c: R_RISCV_PCREL_HI20 .LC38 + 799c: R_RISCV_RELAX *ABS* + 79a0: 00058593 mv a1,a1 79a0: R_RISCV_PCREL_LO12_I .L0 + 79a0: R_RISCV_RELAX *ABS* + 79a4: 8522 mv a0,s0 + 79a6: 9782 jalr a5 + +00000000000079a8 <.LVL218>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:910 + nsh_output(vtbl, "-h, display this help and exit\n"); + 79a8: 781c ld a5,48(s0) + 79aa: 00000597 auipc a1,0x0 79aa: R_RISCV_PCREL_HI20 .LC39 + 79aa: R_RISCV_RELAX *ABS* + 79ae: 00058593 mv a1,a1 79ae: R_RISCV_PCREL_LO12_I .L0 + 79ae: R_RISCV_RELAX *ABS* + 79b2: 8522 mv a0,s0 + 79b4: 9782 jalr a5 + +00000000000079b6 <.LVL219>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:911 + nsh_output(vtbl, "-s, system up since\n"); + 79b6: 781c ld a5,48(s0) + 79b8: 00000597 auipc a1,0x0 79b8: R_RISCV_PCREL_HI20 .LC40 + 79b8: R_RISCV_RELAX *ABS* + 79bc: 00058593 mv a1,a1 79bc: R_RISCV_PCREL_LO12_I .L0 + 79bc: R_RISCV_RELAX *ABS* + 79c0: 8522 mv a0,s0 + 79c2: 9782 jalr a5 + +00000000000079c4 <.LVL220>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:913 + return ERROR; + 79c4: 54fd li s1,-1 + 79c6: b7bd j 7934 <.L106> 79c6: R_RISCV_RVC_JUMP .L106 + +00000000000079c8 <.L116>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:871 + bool system_load_opt = false; + 79c8: 4981 li s3,0 +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:884 + pretty_format_opt = true; + 79ca: 4a85 li s5,1 + 79cc: bb75 j 7788 <.L104> 79cc: R_RISCV_RVC_JUMP .L104 + +00000000000079ce <.L110>: +/Users/Luppy/ox64/apps/nshlib/nsh_proccmds.c:946 + nsh_output(vtbl, "%2" PRIu32 ":" "%02" PRIu32, uphours, upminutes); + 79ce: 86a6 mv a3,s1 + 79d0: 865a mv a2,s6 + 79d2: 00000597 auipc a1,0x0 79d2: R_RISCV_PCREL_HI20 .LC45 + 79d2: R_RISCV_RELAX *ABS* + 79d6: 00058593 mv a1,a1 79d6: R_RISCV_PCREL_LO12_I .L0 + 79d6: R_RISCV_RELAX *ABS* + 79da: 8522 mv a0,s0 + 79dc: 9702 jalr a4 + +00000000000079de <.LVL222>: + 79de: b549 j 7860 <.L114> 79de: R_RISCV_RVC_JUMP .L114 + +00000000000079e0 : +cmd_uname(): +/Users/Luppy/ox64/apps/nshlib/nsh_syscmds.c:689 + * Name: cmd_uname + ****************************************************************************/ + +#ifndef CONFIG_NSH_DISABLE_UNAME +int cmd_uname(FAR struct nsh_vtbl_s *vtbl, int argc, FAR char **argv) +{ + 79e0: 714d addi sp,sp,-336 + 79e2: e2a2 sd s0,320(sp) + 79e4: fe26 sd s1,312(sp) + 79e6: f64e sd s3,296(sp) + 79e8: f252 sd s4,288(sp) + 79ea: ee56 sd s5,280(sp) + 79ec: ea5a sd s6,272(sp) + 79ee: e65e sd s7,264(sp) + 79f0: e262 sd s8,256(sp) + 79f2: fde6 sd s9,248(sp) + 79f4: f9ea sd s10,240(sp) + 79f6: f5ee sd s11,232(sp) + 79f8: e686 sd ra,328(sp) + 79fa: fa4a sd s2,304(sp) + 79fc: 0a80 addi s0,sp,336 + 79fe: 89aa mv s3,a0 + 7a00: 8a2e mv s4,a1 + 7a02: 8ab2 mv s5,a2 +/Users/Luppy/ox64/apps/nshlib/nsh_syscmds.c:703 + int i; + + /* Get the uname options */ + + set = 0; + badarg = false; + 7a04: 4701 li a4,0 +/Users/Luppy/ox64/apps/nshlib/nsh_syscmds.c:702 + set = 0; + 7a06: 4481 li s1,0 +/Users/Luppy/ox64/apps/nshlib/nsh_syscmds.c:705 + + while ((option = getopt(argc, argv, "asonrvmpi")) != ERROR) + 7a08: 00000c17 auipc s8,0x0 7a08: R_RISCV_PCREL_HI20 .LC1 + 7a08: R_RISCV_RELAX *ABS* + 7a0c: 000c0c13 mv s8,s8 7a0c: R_RISCV_PCREL_LO12_I .L0 + 7a0c: R_RISCV_RELAX *ABS* + 7a10: 5bfd li s7,-1 + 7a12: 4cd5 li s9,21 +/Users/Luppy/ox64/apps/nshlib/nsh_syscmds.c:749 + set |= UNAME_PLATFORM; + break; + + case '?': + default: + nsh_error(vtbl, g_fmtarginvalid, argv[0]); + 7a14: 00000d17 auipc s10,0x0 7a14: R_RISCV_PCREL_HI20 g_fmtarginvalid + 7a14: R_RISCV_RELAX *ABS* + 7a18: 000d0d13 mv s10,s10 7a18: R_RISCV_PCREL_LO12_I .L0 + 7a18: R_RISCV_RELAX *ABS* + 7a1c: 00000b17 auipc s6,0x0 7a1c: R_RISCV_PCREL_HI20 .L5 + 7a1c: R_RISCV_RELAX *ABS* + 7a20: 000b0b13 mv s6,s6 7a20: R_RISCV_PCREL_LO12_I .L0 + 7a20: R_RISCV_RELAX *ABS* +/Users/Luppy/ox64/apps/nshlib/nsh_syscmds.c:705 + while ((option = getopt(argc, argv, "asonrvmpi")) != ERROR) + 7a24: 03d00d93 li s11,61 + +0000000000007a28 <.L2>: + 7a28: 8662 mv a2,s8 + 7a2a: 85d6 mv a1,s5 + 7a2c: 8552 mv a0,s4 + 7a2e: eae43c23 sd a4,-328(s0) + +0000000000007a32 <.LVL2>: + 7a32: 00000097 auipc ra,0x0 7a32: R_RISCV_CALL getopt + 7a32: R_RISCV_RELAX *ABS* + 7a36: 000080e7 jalr ra # 7a32 <.LVL2> + +0000000000007a3a <.LVL3>: + 7a3a: eb843703 ld a4,-328(s0) + 7a3e: 892a mv s2,a0 + +0000000000007a40 <.LVL4>: + 7a40: 07751963 bne a0,s7,7ab2 <.L12> 7a40: R_RISCV_BRANCH .L12 +/Users/Luppy/ox64/apps/nshlib/nsh_syscmds.c:759 + + /* If a bad argument was encountered, then return without processing the + * command + */ + + if (badarg) + 7a44: e729 bnez a4,7a8e <.L13> 7a44: R_RISCV_RVC_BRANCH .L13 +/Users/Luppy/ox64/apps/nshlib/nsh_syscmds.c:766 + return ERROR; + } + + /* If nothing is provided on the command line, the default is -s */ + + if (set == 0) + 7a46: 87a6 mv a5,s1 + 7a48: e091 bnez s1,7a4c <.L14> 7a48: R_RISCV_RVC_BRANCH .L14 + 7a4a: 4785 li a5,1 + +0000000000007a4c <.L14>: +/Users/Luppy/ox64/apps/nshlib/nsh_syscmds.c:773 + set = UNAME_KERNEL; + } + + /* Get uname data */ + + ret = uname(&info); + 7a4c: ef840513 addi a0,s0,-264 + +0000000000007a50 <.LVL5>: + 7a50: 0007849b sext.w s1,a5 + +0000000000007a54 <.LVL6>: + 7a54: 00000097 auipc ra,0x0 7a54: R_RISCV_CALL uname + 7a54: R_RISCV_RELAX *ABS* + 7a58: 000080e7 jalr ra # 7a54 <.LVL6> + +0000000000007a5c <.LVL7>: +/Users/Luppy/ox64/apps/nshlib/nsh_syscmds.c:774 + if (ret < 0) + 7a5c: 0a055a63 bgez a0,7b10 <.L15> 7a5c: R_RISCV_BRANCH .L15 +/Users/Luppy/ox64/apps/nshlib/nsh_syscmds.c:776 + { + nsh_error(vtbl, g_fmtcmdfailed, argv[0], "uname", NSH_ERRNO); + 7a60: 000ab603 ld a2,0(s5) # 7570 <.L70+0x6> + 7a64: 0289b483 ld s1,40(s3) + 7a68: eac43c23 sd a2,-328(s0) + +0000000000007a6c <.LVL8>: + 7a6c: 00000097 auipc ra,0x0 7a6c: R_RISCV_CALL __errno + 7a6c: R_RISCV_RELAX *ABS* + 7a70: 000080e7 jalr ra # 7a6c <.LVL8> + +0000000000007a74 <.LVL9>: + 7a74: 4118 lw a4,0(a0) + 7a76: eb843603 ld a2,-328(s0) + 7a7a: 00000697 auipc a3,0x0 7a7a: R_RISCV_PCREL_HI20 .LC2 + 7a7a: R_RISCV_RELAX *ABS* + 7a7e: 00068693 mv a3,a3 7a7e: R_RISCV_PCREL_LO12_I .L0 + 7a7e: R_RISCV_RELAX *ABS* + 7a82: 00000597 auipc a1,0x0 7a82: R_RISCV_PCREL_HI20 g_fmtcmdfailed + 7a82: R_RISCV_RELAX *ABS* + 7a86: 00058593 mv a1,a1 7a86: R_RISCV_PCREL_LO12_I .L0 + 7a86: R_RISCV_RELAX *ABS* + 7a8a: 854e mv a0,s3 + 7a8c: 9482 jalr s1 + +0000000000007a8e <.L13>: +/Users/Luppy/ox64/apps/nshlib/nsh_syscmds.c:840 + } + + lib_stream_putc(&stream, '\n'); + nsh_write(vtbl, stream.buffer, stream.common.nput); + return OK; +} + 7a8e: eb040113 addi sp,s0,-336 + 7a92: 60b6 ld ra,328(sp) + 7a94: 854a mv a0,s2 + 7a96: 6416 ld s0,320(sp) + 7a98: 74f2 ld s1,312(sp) + 7a9a: 7952 ld s2,304(sp) + 7a9c: 79b2 ld s3,296(sp) + +0000000000007a9e <.LVL11>: + 7a9e: 7a12 ld s4,288(sp) + 7aa0: 6af2 ld s5,280(sp) + +0000000000007aa2 <.LVL12>: + 7aa2: 6b52 ld s6,272(sp) + 7aa4: 6bb2 ld s7,264(sp) + 7aa6: 6c12 ld s8,256(sp) + 7aa8: 7cee ld s9,248(sp) + 7aaa: 7d4e ld s10,240(sp) + 7aac: 7dae ld s11,232(sp) + 7aae: 6171 addi sp,sp,336 + 7ab0: 8082 ret + +0000000000007ab2 <.L12>: +/Users/Luppy/ox64/apps/nshlib/nsh_syscmds.c:707 + switch (option) + 7ab2: f9f9091b addiw s2,s2,-97 + 7ab6: 0009079b sext.w a5,s2 + 7aba: 02fcef63 bltu s9,a5,7af8 <.L3> 7aba: R_RISCV_BRANCH .L3 + 7abe: 02091793 slli a5,s2,0x20 + 7ac2: 01e7d913 srli s2,a5,0x1e + 7ac6: 995a add s2,s2,s6 + 7ac8: 00092783 lw a5,0(s2) + 7acc: 97da add a5,a5,s6 + 7ace: 8782 jr a5 + +0000000000007ad0 <.L6>: +/Users/Luppy/ox64/apps/nshlib/nsh_syscmds.c:715 + set |= UNAME_KERNEL; + 7ad0: 0014e493 ori s1,s1,1 +/Users/Luppy/ox64/apps/nshlib/nsh_syscmds.c:716 + break; + 7ad4: bf91 j 7a28 <.L2> 7ad4: R_RISCV_RVC_JUMP .L2 + +0000000000007ad6 <.L7>: +/Users/Luppy/ox64/apps/nshlib/nsh_syscmds.c:725 + set |= UNAME_RELEASE; + 7ad6: 0044e493 ori s1,s1,4 +/Users/Luppy/ox64/apps/nshlib/nsh_syscmds.c:726 + break; + 7ada: b7b9 j 7a28 <.L2> 7ada: R_RISCV_RVC_JUMP .L2 + +0000000000007adc <.L4>: +/Users/Luppy/ox64/apps/nshlib/nsh_syscmds.c:729 + set |= UNAME_VERSION; + 7adc: 0084e493 ori s1,s1,8 +/Users/Luppy/ox64/apps/nshlib/nsh_syscmds.c:730 + break; + 7ae0: b7a1 j 7a28 <.L2> 7ae0: R_RISCV_RVC_JUMP .L2 + +0000000000007ae2 <.L9>: +/Users/Luppy/ox64/apps/nshlib/nsh_syscmds.c:733 + set |= UNAME_MACHINE; + 7ae2: 0104e493 ori s1,s1,16 +/Users/Luppy/ox64/apps/nshlib/nsh_syscmds.c:734 + break; + 7ae6: b789 j 7a28 <.L2> 7ae6: R_RISCV_RVC_JUMP .L2 + +0000000000007ae8 <.L8>: +/Users/Luppy/ox64/apps/nshlib/nsh_syscmds.c:737 + if (set != UNAME_ALL) + 7ae8: f5b480e3 beq s1,s11,7a28 <.L2> 7ae8: R_RISCV_BRANCH .L2 +/Users/Luppy/ox64/apps/nshlib/nsh_syscmds.c:739 + set |= UNAME_UNKNOWN; + 7aec: 0404e493 ori s1,s1,64 + 7af0: bf25 j 7a28 <.L2> 7af0: R_RISCV_RVC_JUMP .L2 + +0000000000007af2 <.L10>: +/Users/Luppy/ox64/apps/nshlib/nsh_syscmds.c:744 + set |= UNAME_PLATFORM; + 7af2: 0204e493 ori s1,s1,32 +/Users/Luppy/ox64/apps/nshlib/nsh_syscmds.c:745 + break; + 7af6: bf0d j 7a28 <.L2> 7af6: R_RISCV_RVC_JUMP .L2 + +0000000000007af8 <.L3>: +/Users/Luppy/ox64/apps/nshlib/nsh_syscmds.c:749 + nsh_error(vtbl, g_fmtarginvalid, argv[0]); + 7af8: 0289b783 ld a5,40(s3) + 7afc: 000ab603 ld a2,0(s5) + 7b00: 85ea mv a1,s10 + 7b02: 854e mv a0,s3 + +0000000000007b04 <.LVL20>: + 7b04: 9782 jalr a5 + +0000000000007b06 <.LVL21>: +/Users/Luppy/ox64/apps/nshlib/nsh_syscmds.c:750 + badarg = true; + 7b06: 4705 li a4,1 +/Users/Luppy/ox64/apps/nshlib/nsh_syscmds.c:751 + break; + 7b08: b705 j 7a28 <.L2> 7b08: R_RISCV_RVC_JUMP .L2 + +0000000000007b0a <.L27>: +/Users/Luppy/ox64/apps/nshlib/nsh_syscmds.c:705 + while ((option = getopt(argc, argv, "asonrvmpi")) != ERROR) + 7b0a: 03d00493 li s1,61 + +0000000000007b0e <.LVL23>: + 7b0e: bf29 j 7a28 <.L2> 7b0e: R_RISCV_RVC_JUMP .L2 + +0000000000007b10 <.L15>: +/Users/Luppy/ox64/apps/nshlib/nsh_syscmds.c:783 + lib_memoutstream(&stream, alloca(sizeof(struct utsname)), + 7b10: 7135 addi sp,sp,-160 + 7b12: 09200613 li a2,146 + 7b16: 858a mv a1,sp + 7b18: ec840513 addi a0,s0,-312 + +0000000000007b1c <.LVL25>: + 7b1c: 00000097 auipc ra,0x0 7b1c: R_RISCV_CALL lib_memoutstream + 7b1c: R_RISCV_RELAX *ABS* + 7b20: 000080e7 jalr ra # 7b1c <.LVL25> + +0000000000007b24 <.LVL26>: +/Users/Luppy/ox64/apps/nshlib/nsh_syscmds.c:785 + for (i = 0; set != 0; i++) + 7b24: 4d81 li s11,0 +/Users/Luppy/ox64/apps/nshlib/nsh_syscmds.c:782 + first = true; + 7b26: 4685 li a3,1 + +0000000000007b28 <.LBB2>: +/Users/Luppy/ox64/apps/nshlib/nsh_syscmds.c:787 + unsigned int mask = (1 << i); + 7b28: 4b85 li s7,1 + 7b2a: 4c19 li s8,6 + 7b2c: 00000b17 auipc s6,0x0 7b2c: R_RISCV_PCREL_HI20 .L19 + 7b2c: R_RISCV_RELAX *ABS* + 7b30: 000b0b13 mv s6,s6 7b30: R_RISCV_PCREL_LO12_I .L0 + 7b30: R_RISCV_RELAX *ABS* +/Users/Luppy/ox64/apps/nshlib/nsh_syscmds.c:819 + str = g_unknown; + 7b34: 00000c97 auipc s9,0x0 7b34: R_RISCV_PCREL_HI20 .LANCHOR0 + 7b34: R_RISCV_RELAX *ABS* + 7b38: 000c8c93 mv s9,s9 7b38: R_RISCV_PCREL_LO12_I .L0 + 7b38: R_RISCV_RELAX *ABS* +/Users/Luppy/ox64/apps/nshlib/nsh_syscmds.c:815 + str = BOARD_NAME; + 7b3c: 00000d17 auipc s10,0x0 7b3c: R_RISCV_PCREL_HI20 .LC0 + 7b3c: R_RISCV_RELAX *ABS* + 7b40: 000d0d13 mv s10,s10 7b40: R_RISCV_PCREL_LO12_I .L0 + 7b40: R_RISCV_RELAX *ABS* + +0000000000007b44 <.L26>: +/Users/Luppy/ox64/apps/nshlib/nsh_syscmds.c:787 + unsigned int mask = (1 << i); + 7b44: 01bb97bb sllw a5,s7,s11 + +0000000000007b48 <.LVL28>: +/Users/Luppy/ox64/apps/nshlib/nsh_syscmds.c:788 + if ((set & mask) != 0) + 7b48: 00f4f733 and a4,s1,a5 + 7b4c: 2701 sext.w a4,a4 + 7b4e: c729 beqz a4,7b98 <.L16> 7b4e: R_RISCV_RVC_BRANCH .L16 +/Users/Luppy/ox64/apps/nshlib/nsh_syscmds.c:790 + set &= ~mask; + 7b50: fff7c793 not a5,a5 + +0000000000007b54 <.LVL29>: + 7b54: 8cfd and s1,s1,a5 + +0000000000007b56 <.LVL30>: + 7b56: 2481 sext.w s1,s1 + +0000000000007b58 <.LVL31>: +/Users/Luppy/ox64/apps/nshlib/nsh_syscmds.c:791 + switch (i) + 7b58: 07bc6963 bltu s8,s11,7bca <.L17> 7b58: R_RISCV_BRANCH .L17 + 7b5c: 002d9793 slli a5,s11,0x2 + 7b60: 97da add a5,a5,s6 + 7b62: 439c lw a5,0(a5) + 7b64: 97da add a5,a5,s6 + 7b66: 8782 jr a5 + +0000000000007b68 <.L23>: +/Users/Luppy/ox64/apps/nshlib/nsh_syscmds.c:803 + str = info.release; + 7b68: f2d40a13 addi s4,s0,-211 + +0000000000007b6c <.L22>: +/Users/Luppy/ox64/apps/nshlib/nsh_syscmds.c:827 + if (!first) + 7b6c: ea81 bnez a3,7b7c <.L25> 7b6c: R_RISCV_RVC_BRANCH .L25 +/Users/Luppy/ox64/apps/nshlib/nsh_syscmds.c:829 + lib_stream_putc(&stream, ' '); + 7b6e: ed043783 ld a5,-304(s0) + 7b72: 02000593 li a1,32 + 7b76: ec840513 addi a0,s0,-312 + 7b7a: 9782 jalr a5 + +0000000000007b7c <.L25>: +/Users/Luppy/ox64/apps/nshlib/nsh_syscmds.c:832 + lib_stream_puts(&stream, str, strlen(str)); + 7b7c: 8552 mv a0,s4 + 7b7e: 00000097 auipc ra,0x0 7b7e: R_RISCV_CALL strlen + 7b7e: R_RISCV_RELAX *ABS* + 7b82: 000080e7 jalr ra # 7b7e <.L25+0x2> + +0000000000007b86 <.LVL34>: + 7b86: ed843783 ld a5,-296(s0) + 7b8a: 0005061b sext.w a2,a0 + 7b8e: 85d2 mv a1,s4 + 7b90: ec840513 addi a0,s0,-312 + 7b94: 9782 jalr a5 + +0000000000007b96 <.LVL35>: +/Users/Luppy/ox64/apps/nshlib/nsh_syscmds.c:833 + first = false; + 7b96: 4681 li a3,0 + +0000000000007b98 <.L16>: +/Users/Luppy/ox64/apps/nshlib/nsh_syscmds.c:785 (discriminator 2) + for (i = 0; set != 0; i++) + 7b98: 2d85 addiw s11,s11,1 + +0000000000007b9a <.LVL37>: + 7b9a: f4cd bnez s1,7b44 <.L26> 7b9a: R_RISCV_RVC_BRANCH .L26 +/Users/Luppy/ox64/apps/nshlib/nsh_syscmds.c:837 + lib_stream_putc(&stream, '\n'); + 7b9c: ed043783 ld a5,-304(s0) + 7ba0: 45a9 li a1,10 + 7ba2: ec840513 addi a0,s0,-312 + 7ba6: 9782 jalr a5 + +0000000000007ba8 <.LVL38>: +/Users/Luppy/ox64/apps/nshlib/nsh_syscmds.c:838 + nsh_write(vtbl, stream.buffer, stream.common.nput); + 7ba8: 0189b783 ld a5,24(s3) + 7bac: ec842603 lw a2,-312(s0) + 7bb0: ee843583 ld a1,-280(s0) + 7bb4: 854e mv a0,s3 +/Users/Luppy/ox64/apps/nshlib/nsh_syscmds.c:839 + return OK; + 7bb6: 4901 li s2,0 +/Users/Luppy/ox64/apps/nshlib/nsh_syscmds.c:838 + nsh_write(vtbl, stream.buffer, stream.common.nput); + 7bb8: 9782 jalr a5 + +0000000000007bba <.LVL39>: +/Users/Luppy/ox64/apps/nshlib/nsh_syscmds.c:839 + return OK; + 7bba: bdd1 j 7a8e <.L13> 7bba: R_RISCV_RVC_JUMP .L13 + +0000000000007bbc <.L21>: +/Users/Luppy/ox64/apps/nshlib/nsh_syscmds.c:811 + str = info.machine; + 7bbc: f7540a13 addi s4,s0,-139 + +0000000000007bc0 <.LVL41>: +/Users/Luppy/ox64/apps/nshlib/nsh_syscmds.c:812 + break; + 7bc0: b775 j 7b6c <.L22> 7bc0: R_RISCV_RVC_JUMP .L22 + +0000000000007bc2 <.L20>: +/Users/Luppy/ox64/apps/nshlib/nsh_syscmds.c:815 + str = BOARD_NAME; + 7bc2: 8a6a mv s4,s10 +/Users/Luppy/ox64/apps/nshlib/nsh_syscmds.c:816 + break; + 7bc4: b765 j 7b6c <.L22> 7bc4: R_RISCV_RVC_JUMP .L22 + +0000000000007bc6 <.L18>: +/Users/Luppy/ox64/apps/nshlib/nsh_syscmds.c:819 + str = g_unknown; + 7bc6: 8a66 mv s4,s9 +/Users/Luppy/ox64/apps/nshlib/nsh_syscmds.c:820 + break; + 7bc8: b755 j 7b6c <.L22> 7bc8: R_RISCV_RVC_JUMP .L22 + +0000000000007bca <.L17>: +/Users/Luppy/ox64/apps/nshlib/nsh_syscmds.c:823 + nsh_error(vtbl, g_fmtarginvalid, argv[0]); + 7bca: 0289b783 ld a5,40(s3) + 7bce: 000ab603 ld a2,0(s5) + 7bd2: 00000597 auipc a1,0x0 7bd2: R_RISCV_PCREL_HI20 g_fmtarginvalid + 7bd2: R_RISCV_RELAX *ABS* + 7bd6: 00058593 mv a1,a1 7bd6: R_RISCV_PCREL_LO12_I .L0 + 7bd6: R_RISCV_RELAX *ABS* + 7bda: 854e mv a0,s3 + 7bdc: 9782 jalr a5 + +0000000000007bde <.LVL45>: +/Users/Luppy/ox64/apps/nshlib/nsh_syscmds.c:824 + return ERROR; + 7bde: bd45 j 7a8e <.L13> 7bde: R_RISCV_RVC_JUMP .L13 + +0000000000007be0 <.L24>: +/Users/Luppy/ox64/apps/nshlib/nsh_syscmds.c:794 + str = info.sysname; + 7be0: ef840a13 addi s4,s0,-264 + 7be4: b761 j 7b6c <.L22> 7be4: R_RISCV_RVC_JUMP .L22 + +0000000000007be6 <.L28>: +/Users/Luppy/ox64/apps/nshlib/nsh_syscmds.c:790 + set &= ~mask; + 7be6: f4240a13 addi s4,s0,-190 + 7bea: b749 j 7b6c <.L22> 7bea: R_RISCV_RVC_JUMP .L22 + +0000000000007bec : +expression(): +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:307 +/**************************************************************************** + * Name: expression + ****************************************************************************/ + +static int expression(FAR struct nsh_vtbl_s *vtbl, int argc, FAR char **argv) +{ + 7bec: 7115 addi sp,sp,-224 + 7bee: e5a6 sd s1,200(sp) + 7bf0: e1ca sd s2,192(sp) + 7bf2: fd4e sd s3,184(sp) + 7bf4: f952 sd s4,176(sp) + 7bf6: f556 sd s5,168(sp) + 7bf8: f15a sd s6,160(sp) + 7bfa: ed5e sd s7,152(sp) + 7bfc: e962 sd s8,144(sp) + 7bfe: e566 sd s9,136(sp) + 7c00: ed86 sd ra,216(sp) + 7c02: e9a2 sd s0,208(sp) + 7c04: e16a sd s10,128(sp) + 7c06: fcee sd s11,120(sp) + 7c08: 89aa mv s3,a0 + 7c0a: 892e mv s2,a1 + 7c0c: 84b2 mv s1,a2 +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:313 + int value; + int i = 0; + + /* Check for unary operations on expressions */ + + if (strcmp(argv[0], "!") == 0) + 7c0e: 00000a17 auipc s4,0x0 7c0e: R_RISCV_PCREL_HI20 .LC0 + 7c0e: R_RISCV_RELAX *ABS* + 7c12: 000a0a13 mv s4,s4 7c12: R_RISCV_PCREL_LO12_I .L0 + 7c12: R_RISCV_RELAX *ABS* +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:326 + TEST_FALSE : TEST_TRUE; + } + + /* Check for unary operations on simple, typed arguments */ + + else if (argv[0][0] == '-') + 7c16: 02d00a93 li s5,45 +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:347 + /* Check for binary operations on simple, typed arguments */ + + else + { +do_binary: + if (argc < 3) + 7c1a: 4b09 li s6,2 + +0000000000007c1c <.LBB6>: +binaryexpression(): +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:88 + if (strcmp(argv[1], "=") == 0 || strcmp(argv[1], "==") == 0) + 7c1c: 00000b97 auipc s7,0x0 7c1c: R_RISCV_PCREL_HI20 .LC11 + 7c1c: R_RISCV_RELAX *ABS* + 7c20: 000b8b93 mv s7,s7 7c20: R_RISCV_PCREL_LO12_I .L0 + 7c20: R_RISCV_RELAX *ABS* + 7c24: 00000c17 auipc s8,0x0 7c24: R_RISCV_PCREL_HI20 .LC12 + 7c24: R_RISCV_RELAX *ABS* + 7c28: 000c0c13 mv s8,s8 7c28: R_RISCV_PCREL_LO12_I .L0 + 7c28: R_RISCV_RELAX *ABS* +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:97 + if (strcmp(argv[1], "!=") == 0) + 7c2c: 00000c97 auipc s9,0x0 7c2c: R_RISCV_PCREL_HI20 .LC13 + 7c2c: R_RISCV_RELAX *ABS* + 7c30: 000c8c93 mv s9,s9 7c30: R_RISCV_PCREL_LO12_I .L0 + 7c30: R_RISCV_RELAX *ABS* + +0000000000007c34 <.L2>: +expression(): +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:313 + if (strcmp(argv[0], "!") == 0) + 7c34: 6080 ld s0,0(s1) + 7c36: 85d2 mv a1,s4 + 7c38: 8522 mv a0,s0 + 7c3a: 00000097 auipc ra,0x0 7c3a: R_RISCV_CALL strcmp + 7c3a: R_RISCV_RELAX *ABS* + 7c3e: 000080e7 jalr ra # 7c3a <.L2+0x6> + +0000000000007c42 <.LVL2>: + 7c42: e129 bnez a0,7c84 <.L3> 7c42: R_RISCV_RVC_BRANCH .L3 +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:315 + if (argc < 2) + 7c44: 4785 li a5,1 + 7c46: 3527db63 bge a5,s2,7f9c <.L27> 7c46: R_RISCV_BRANCH .L27 +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:320 + return expression(vtbl, argc - 1, &argv[1]) == TEST_TRUE ? + 7c4a: 00848613 addi a2,s1,8 # 1008 <.L2+0x2> + 7c4e: fff9059b addiw a1,s2,-1 + 7c52: 854e mv a0,s3 + 7c54: 00000097 auipc ra,0x0 7c54: R_RISCV_CALL expression + 7c54: R_RISCV_RELAX *ABS* + 7c58: 000080e7 jalr ra # 7c54 <.LVL2+0x12> + +0000000000007c5c <.LVL3>: +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:321 + TEST_FALSE : TEST_TRUE; + 7c5c: 00153413 seqz s0,a0 + 7c60: 40800433 neg s0,s0 + +0000000000007c64 <.L5>: +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:407 + return value; + +errout_syntax: + nsh_error(vtbl, g_fmtsyntax, "test"); + return TEST_FALSE; +} + 7c64: 60ee ld ra,216(sp) + 7c66: 8522 mv a0,s0 + 7c68: 644e ld s0,208(sp) + 7c6a: 64ae ld s1,200(sp) + 7c6c: 690e ld s2,192(sp) + 7c6e: 79ea ld s3,184(sp) + +0000000000007c70 <.LVL5>: + 7c70: 7a4a ld s4,176(sp) + 7c72: 7aaa ld s5,168(sp) + 7c74: 7b0a ld s6,160(sp) + 7c76: 6bea ld s7,152(sp) + 7c78: 6c4a ld s8,144(sp) + 7c7a: 6caa ld s9,136(sp) + 7c7c: 6d0a ld s10,128(sp) + 7c7e: 7de6 ld s11,120(sp) + 7c80: 612d addi sp,sp,224 + 7c82: 8082 ret + +0000000000007c84 <.L3>: +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:326 + else if (argv[0][0] == '-') + 7c84: 00044783 lbu a5,0(s0) + 7c88: 1b579763 bne a5,s5,7e36 <.L6> 7c88: R_RISCV_BRANCH .L6 +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:328 + if (argc < 2) + 7c8c: 4785 li a5,1 + 7c8e: 3127d763 bge a5,s2,7f9c <.L27> 7c8e: R_RISCV_BRANCH .L27 + +0000000000007c92 <.LBB10>: +unaryexpression(): +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:188 + if (strcmp(argv[0], "-n") == 0) + 7c92: 00000597 auipc a1,0x0 7c92: R_RISCV_PCREL_HI20 .LC1 + 7c92: R_RISCV_RELAX *ABS* + 7c96: 00058593 mv a1,a1 7c96: R_RISCV_PCREL_LO12_I .L0 + 7c96: R_RISCV_RELAX *ABS* + 7c9a: 8522 mv a0,s0 + 7c9c: 00000097 auipc ra,0x0 7c9c: R_RISCV_CALL strcmp + 7c9c: R_RISCV_RELAX *ABS* + 7ca0: 000080e7 jalr ra # 7c9c <.LBB10+0xa> + +0000000000007ca4 <.LVL8>: +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:192 + return strlen(argv[1]) != 0 ? TEST_TRUE : TEST_FALSE; + 7ca4: 0084bd03 ld s10,8(s1) +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:188 + if (strcmp(argv[0], "-n") == 0) + 7ca8: e131 bnez a0,7cec <.L7> 7ca8: R_RISCV_RVC_BRANCH .L7 +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:192 + return strlen(argv[1]) != 0 ? TEST_TRUE : TEST_FALSE; + 7caa: 000d4783 lbu a5,0(s10) # 7b3c <.LBB2+0x14> + +0000000000007cae <.L61>: + 7cae: cfa1 beqz a5,7d06 <.L8> 7cae: R_RISCV_RVC_BRANCH .L8 + +0000000000007cb0 <.L11>: +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:334 + if (value == TEST_ERROR) + 7cb0: 4d09 li s10,2 +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:192 + return strlen(argv[1]) != 0 ? TEST_TRUE : TEST_FALSE; + 7cb2: 4401 li s0,0 + +0000000000007cb4 <.L9>: +expression(): +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:365 + if (i < argc) + 7cb4: fb2d58e3 bge s10,s2,7c64 <.L5> 7cb4: R_RISCV_BRANCH .L5 +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:369 + if (strcmp(argv[i], "-a") == 0) + 7cb8: 003d1d93 slli s11,s10,0x3 + 7cbc: 01b487b3 add a5,s1,s11 + 7cc0: 639c ld a5,0(a5) + 7cc2: 00000597 auipc a1,0x0 7cc2: R_RISCV_PCREL_HI20 .LC20 + 7cc2: R_RISCV_RELAX *ABS* + 7cc6: 00058593 mv a1,a1 7cc6: R_RISCV_PCREL_LO12_I .L0 + 7cc6: R_RISCV_RELAX *ABS* + 7cca: 853e mv a0,a5 + 7ccc: e43e sd a5,8(sp) + 7cce: 00000097 auipc ra,0x0 7cce: R_RISCV_CALL strcmp + 7cce: R_RISCV_RELAX *ABS* + 7cd2: 000080e7 jalr ra # 7cce <.L9+0x1a> + +0000000000007cd6 <.LVL12>: + 7cd6: 67a2 ld a5,8(sp) + 7cd8: 2a051563 bnez a0,7f82 <.L34> 7cd8: R_RISCV_BRANCH .L34 +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:371 + if (value != TEST_TRUE) + 7cdc: 2c041c63 bnez s0,7fb4 <.L37> 7cdc: R_RISCV_BRANCH .L37 + +0000000000007ce0 <.L60>: +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:392 + i++; + 7ce0: 2d05 addiw s10,s10,1 + +0000000000007ce2 <.LVL14>: +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:393 + return expression(vtbl, argc - i, &argv[i]); + 7ce2: 0da1 addi s11,s11,8 + 7ce4: 41a9093b subw s2,s2,s10 + 7ce8: 94ee add s1,s1,s11 + 7cea: b7a9 j 7c34 <.L2> 7cea: R_RISCV_RVC_JUMP .L2 + +0000000000007cec <.L7>: +unaryexpression(): +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:197 + if (strcmp(argv[0], "-z") == 0) + 7cec: 00000597 auipc a1,0x0 7cec: R_RISCV_PCREL_HI20 .LC2 + 7cec: R_RISCV_RELAX *ABS* + 7cf0: 00058593 mv a1,a1 7cf0: R_RISCV_PCREL_LO12_I .L0 + 7cf0: R_RISCV_RELAX *ABS* + 7cf4: 8522 mv a0,s0 + 7cf6: 00000097 auipc ra,0x0 7cf6: R_RISCV_CALL strcmp + 7cf6: R_RISCV_RELAX *ABS* + 7cfa: 000080e7 jalr ra # 7cf6 <.L7+0xa> + +0000000000007cfe <.LVL16>: + 7cfe: e519 bnez a0,7d0c <.L10> 7cfe: R_RISCV_RVC_BRANCH .L10 +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:201 + return strlen(argv[1]) == 0 ? TEST_TRUE : TEST_FALSE; + 7d00: 000d4783 lbu a5,0(s10) + 7d04: d7d5 beqz a5,7cb0 <.L11> 7d04: R_RISCV_RVC_BRANCH .L11 + +0000000000007d06 <.L8>: +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:334 + if (value == TEST_ERROR) + 7d06: 4d09 li s10,2 +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:192 + return strlen(argv[1]) != 0 ? TEST_TRUE : TEST_FALSE; + 7d08: 547d li s0,-1 + 7d0a: b76d j 7cb4 <.L9> 7d0a: R_RISCV_RVC_JUMP .L9 + +0000000000007d0c <.L10>: +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:208 + fullpath = nsh_getfullpath(vtbl, argv[1]); + 7d0c: 85ea mv a1,s10 + 7d0e: 854e mv a0,s3 + 7d10: 00000097 auipc ra,0x0 7d10: R_RISCV_CALL nsh_getfullpath + 7d10: R_RISCV_RELAX *ABS* + 7d14: 000080e7 jalr ra # 7d10 <.L10+0x4> + +0000000000007d18 <.LVL19>: + 7d18: 842a mv s0,a0 + +0000000000007d1a <.LVL20>: +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:209 + if (fullpath) + 7d1a: c921 beqz a0,7d6a <.L36> 7d1a: R_RISCV_RVC_BRANCH .L36 +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:211 + ret = stat(fullpath, &buf); + 7d1c: 082c addi a1,sp,24 + 7d1e: 00000097 auipc ra,0x0 7d1e: R_RISCV_CALL stat + 7d1e: R_RISCV_RELAX *ABS* + 7d22: 000080e7 jalr ra # 7d1e <.LVL20+0x4> + +0000000000007d26 <.LVL21>: + 7d26: 8d2a mv s10,a0 + +0000000000007d28 <.LVL22>: +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:212 + nsh_freefullpath(fullpath); + 7d28: 8522 mv a0,s0 + 7d2a: 00000097 auipc ra,0x0 7d2a: R_RISCV_CALL nsh_freefullpath + 7d2a: R_RISCV_RELAX *ABS* + 7d2e: 000080e7 jalr ra # 7d2a <.LVL22+0x2> + +0000000000007d32 <.LVL23>: +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:215 + if (ret != 0) + 7d32: 000d0a63 beqz s10,7d46 <.L13> 7d32: R_RISCV_BRANCH .L13 + +0000000000007d36 <.L12>: +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:220 + memset(&buf, 0, sizeof(struct stat)); + 7d36: 05800613 li a2,88 + 7d3a: 4581 li a1,0 + 7d3c: 0828 addi a0,sp,24 + 7d3e: 00000097 auipc ra,0x0 7d3e: R_RISCV_CALL memset + 7d3e: R_RISCV_RELAX *ABS* + 7d42: 000080e7 jalr ra # 7d3e <.L12+0x8> + +0000000000007d46 <.L13>: +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:225 + if (strcmp(argv[0], "-b") == 0) + 7d46: 6080 ld s0,0(s1) + +0000000000007d48 <.LVL26>: + 7d48: 00000597 auipc a1,0x0 7d48: R_RISCV_PCREL_HI20 .LC3 + 7d48: R_RISCV_RELAX *ABS* + 7d4c: 00058593 mv a1,a1 7d4c: R_RISCV_PCREL_LO12_I .L0 + 7d4c: R_RISCV_RELAX *ABS* + 7d50: 8522 mv a0,s0 + 7d52: 00000097 auipc ra,0x0 7d52: R_RISCV_CALL strcmp + 7d52: R_RISCV_RELAX *ABS* + 7d56: 000080e7 jalr ra # 7d52 <.LVL26+0xa> + +0000000000007d5a <.LVL27>: + 7d5a: e911 bnez a0,7d6e <.L14> 7d5a: R_RISCV_RVC_BRANCH .L14 +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:229 + return S_ISBLK(buf.st_mode) ? TEST_TRUE : TEST_FALSE; + 7d5c: 5782 lw a5,32(sp) + 7d5e: 673d lui a4,0xf + 7d60: 8ff9 and a5,a5,a4 + 7d62: 6719 lui a4,0x6 + +0000000000007d64 <.L63>: +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:265 + return S_ISREG(buf.st_mode) ? TEST_TRUE : TEST_FALSE; + 7d64: fae791e3 bne a5,a4,7d06 <.L8> 7d64: R_RISCV_BRANCH .L8 + 7d68: b7a1 j 7cb0 <.L11> 7d68: R_RISCV_RVC_JUMP .L11 + +0000000000007d6a <.L36>: +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:184 + int ret = TEST_ERROR; + 7d6a: 4d05 li s10,1 + 7d6c: b7e9 j 7d36 <.L12> 7d6c: R_RISCV_RVC_JUMP .L12 + +0000000000007d6e <.L14>: +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:234 + if (strcmp(argv[0], "-c") == 0) + 7d6e: 00000597 auipc a1,0x0 7d6e: R_RISCV_PCREL_HI20 .LC4 + 7d6e: R_RISCV_RELAX *ABS* + 7d72: 00058593 mv a1,a1 7d72: R_RISCV_PCREL_LO12_I .L0 + 7d72: R_RISCV_RELAX *ABS* + 7d76: 8522 mv a0,s0 + 7d78: 00000097 auipc ra,0x0 7d78: R_RISCV_CALL strcmp + 7d78: R_RISCV_RELAX *ABS* + 7d7c: 000080e7 jalr ra # 7d78 <.L14+0xa> + +0000000000007d80 <.LVL30>: + 7d80: e511 bnez a0,7d8c <.L15> 7d80: R_RISCV_RVC_BRANCH .L15 +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:238 + return S_ISCHR(buf.st_mode) ? TEST_TRUE : TEST_FALSE; + 7d82: 5782 lw a5,32(sp) + 7d84: 673d lui a4,0xf + 7d86: 8ff9 and a5,a5,a4 + 7d88: 6709 lui a4,0x2 + 7d8a: bfe9 j 7d64 <.L63> 7d8a: R_RISCV_RVC_JUMP .L63 + +0000000000007d8c <.L15>: +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:243 + if (strcmp(argv[0], "-d") == 0) + 7d8c: 00000597 auipc a1,0x0 7d8c: R_RISCV_PCREL_HI20 .LC5 + 7d8c: R_RISCV_RELAX *ABS* + 7d90: 00058593 mv a1,a1 7d90: R_RISCV_PCREL_LO12_I .L0 + 7d90: R_RISCV_RELAX *ABS* + 7d94: 8522 mv a0,s0 + 7d96: 00000097 auipc ra,0x0 7d96: R_RISCV_CALL strcmp + 7d96: R_RISCV_RELAX *ABS* + 7d9a: 000080e7 jalr ra # 7d96 <.L15+0xa> + +0000000000007d9e <.LVL31>: + 7d9e: e511 bnez a0,7daa <.L16> 7d9e: R_RISCV_RVC_BRANCH .L16 +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:247 + return S_ISDIR(buf.st_mode) ? TEST_TRUE : TEST_FALSE; + 7da0: 5782 lw a5,32(sp) + 7da2: 673d lui a4,0xf + 7da4: 8ff9 and a5,a5,a4 + 7da6: 6711 lui a4,0x4 + 7da8: bf75 j 7d64 <.L63> 7da8: R_RISCV_RVC_JUMP .L63 + +0000000000007daa <.L16>: +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:252 + if (strcmp(argv[0], "-e") == 0) + 7daa: 00000597 auipc a1,0x0 7daa: R_RISCV_PCREL_HI20 .LC6 + 7daa: R_RISCV_RELAX *ABS* + 7dae: 00058593 mv a1,a1 7dae: R_RISCV_PCREL_LO12_I .L0 + 7dae: R_RISCV_RELAX *ABS* + 7db2: 8522 mv a0,s0 + 7db4: 00000097 auipc ra,0x0 7db4: R_RISCV_CALL strcmp + 7db4: R_RISCV_RELAX *ABS* + 7db8: 000080e7 jalr ra # 7db4 <.L16+0xa> + +0000000000007dbc <.LVL32>: + 7dbc: e501 bnez a0,7dc4 <.L17> 7dbc: R_RISCV_RVC_BRANCH .L17 +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:256 + return ret == 0 ? TEST_TRUE : TEST_FALSE; + 7dbe: ee0d09e3 beqz s10,7cb0 <.L11> 7dbe: R_RISCV_BRANCH .L11 + 7dc2: b791 j 7d06 <.L8> 7dc2: R_RISCV_RVC_JUMP .L8 + +0000000000007dc4 <.L17>: +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:261 + if (strcmp(argv[0], "-f") == 0) + 7dc4: 00000597 auipc a1,0x0 7dc4: R_RISCV_PCREL_HI20 .LC7 + 7dc4: R_RISCV_RELAX *ABS* + 7dc8: 00058593 mv a1,a1 7dc8: R_RISCV_PCREL_LO12_I .L0 + 7dc8: R_RISCV_RELAX *ABS* + 7dcc: 8522 mv a0,s0 + 7dce: 00000097 auipc ra,0x0 7dce: R_RISCV_CALL strcmp + 7dce: R_RISCV_RELAX *ABS* + 7dd2: 000080e7 jalr ra # 7dce <.L17+0xa> + +0000000000007dd6 <.LVL33>: + 7dd6: e511 bnez a0,7de2 <.L18> 7dd6: R_RISCV_RVC_BRANCH .L18 +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:265 + return S_ISREG(buf.st_mode) ? TEST_TRUE : TEST_FALSE; + 7dd8: 5782 lw a5,32(sp) + 7dda: 673d lui a4,0xf + 7ddc: 8ff9 and a5,a5,a4 + 7dde: 6721 lui a4,0x8 + 7de0: b751 j 7d64 <.L63> 7de0: R_RISCV_RVC_JUMP .L63 + +0000000000007de2 <.L18>: +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:270 + if (strcmp(argv[0], "-r") == 0) + 7de2: 00000597 auipc a1,0x0 7de2: R_RISCV_PCREL_HI20 .LC8 + 7de2: R_RISCV_RELAX *ABS* + 7de6: 00058593 mv a1,a1 7de6: R_RISCV_PCREL_LO12_I .L0 + 7de6: R_RISCV_RELAX *ABS* + 7dea: 8522 mv a0,s0 + 7dec: 00000097 auipc ra,0x0 7dec: R_RISCV_CALL strcmp + 7dec: R_RISCV_RELAX *ABS* + 7df0: 000080e7 jalr ra # 7dec <.L18+0xa> + +0000000000007df4 <.LVL34>: + 7df4: e509 bnez a0,7dfe <.L19> 7df4: R_RISCV_RVC_BRANCH .L19 +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:274 + return (buf.st_mode & (S_IRUSR | S_IRGRP | S_IROTH)) != 0 ? + 7df6: 5782 lw a5,32(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:275 + TEST_TRUE : TEST_FALSE; + 7df8: 1247f793 andi a5,a5,292 + 7dfc: bd4d j 7cae <.L61> 7dfc: R_RISCV_RVC_JUMP .L61 + +0000000000007dfe <.L19>: +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:280 + if (strcmp(argv[0], "-s") == 0) + 7dfe: 00000597 auipc a1,0x0 7dfe: R_RISCV_PCREL_HI20 .LC9 + 7dfe: R_RISCV_RELAX *ABS* + 7e02: 00058593 mv a1,a1 7e02: R_RISCV_PCREL_LO12_I .L0 + 7e02: R_RISCV_RELAX *ABS* + 7e06: 8522 mv a0,s0 + 7e08: 00000097 auipc ra,0x0 7e08: R_RISCV_CALL strcmp + 7e08: R_RISCV_RELAX *ABS* + 7e0c: 000080e7 jalr ra # 7e08 <.L19+0xa> + +0000000000007e10 <.LVL35>: + 7e10: e509 bnez a0,7e1a <.L20> 7e10: R_RISCV_RVC_BRANCH .L20 +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:284 + return buf.st_size > 0 ? TEST_TRUE : TEST_FALSE; + 7e12: 57d2 lw a5,52(sp) + 7e14: e8f04ee3 bgtz a5,7cb0 <.L11> 7e14: R_RISCV_BRANCH .L11 + 7e18: b5fd j 7d06 <.L8> 7e18: R_RISCV_RVC_JUMP .L8 + +0000000000007e1a <.L20>: +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:289 + if (strcmp(argv[0], "-w") == 0) + 7e1a: 00000597 auipc a1,0x0 7e1a: R_RISCV_PCREL_HI20 .LC10 + 7e1a: R_RISCV_RELAX *ABS* + 7e1e: 00058593 mv a1,a1 7e1e: R_RISCV_PCREL_LO12_I .L0 + 7e1e: R_RISCV_RELAX *ABS* + 7e22: 8522 mv a0,s0 + 7e24: 00000097 auipc ra,0x0 7e24: R_RISCV_CALL strcmp + 7e24: R_RISCV_RELAX *ABS* + 7e28: 000080e7 jalr ra # 7e24 <.L20+0xa> + +0000000000007e2c <.LVL36>: + 7e2c: e509 bnez a0,7e36 <.L6> 7e2c: R_RISCV_RVC_BRANCH .L6 +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:293 + return (buf.st_mode & (S_IWUSR | S_IWGRP | S_IWOTH)) != 0 ? + 7e2e: 5782 lw a5,32(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:294 + TEST_TRUE : TEST_FALSE; + 7e30: 0927f793 andi a5,a5,146 + 7e34: bdad j 7cae <.L61> 7e34: R_RISCV_RVC_JUMP .L61 + +0000000000007e36 <.L6>: +expression(): +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:347 + if (argc < 3) + 7e36: 172b5363 bge s6,s2,7f9c <.L27> 7e36: R_RISCV_BRANCH .L27 + +0000000000007e3a <.LBB18>: +binaryexpression(): +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:88 + if (strcmp(argv[1], "=") == 0 || strcmp(argv[1], "==") == 0) + 7e3a: 0084bd03 ld s10,8(s1) + 7e3e: 85de mv a1,s7 + 7e40: 856a mv a0,s10 + 7e42: 00000097 auipc ra,0x0 7e42: R_RISCV_CALL strcmp + 7e42: R_RISCV_RELAX *ABS* + 7e46: 000080e7 jalr ra # 7e42 <.LBB18+0x8> + +0000000000007e4a <.LVL39>: +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:101 + return strcmp(argv[0], argv[2]) != 0 ? TEST_TRUE : TEST_FALSE; + 7e4a: 6080 ld s0,0(s1) +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:88 + if (strcmp(argv[1], "=") == 0 || strcmp(argv[1], "==") == 0) + 7e4c: c901 beqz a0,7e5c <.L22> 7e4c: R_RISCV_RVC_BRANCH .L22 + 7e4e: 85e2 mv a1,s8 + 7e50: 856a mv a0,s10 + 7e52: 00000097 auipc ra,0x0 7e52: R_RISCV_CALL strcmp + 7e52: R_RISCV_RELAX *ABS* + 7e56: 000080e7 jalr ra # 7e52 <.LVL39+0x8> + +0000000000007e5a <.LVL40>: + 7e5a: ed01 bnez a0,7e72 <.L23> 7e5a: R_RISCV_RVC_BRANCH .L23 + +0000000000007e5c <.L22>: +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:92 + return strcmp(argv[0], argv[2]) == 0 ? TEST_TRUE : TEST_FALSE; + 7e5c: 688c ld a1,16(s1) + 7e5e: 8522 mv a0,s0 + 7e60: 00000097 auipc ra,0x0 7e60: R_RISCV_CALL strcmp + 7e60: R_RISCV_RELAX *ABS* + 7e64: 000080e7 jalr ra # 7e60 <.L22+0x4> + +0000000000007e68 <.LVL41>: + 7e68: 00a03433 snez s0,a0 + +0000000000007e6c <.L67>: +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:169 + return integer1 != integer2 ? TEST_TRUE : TEST_FALSE; + 7e6c: 40800433 neg s0,s0 + 7e70: a045 j 7f10 <.L24> 7e70: R_RISCV_RVC_JUMP .L24 + +0000000000007e72 <.L23>: +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:97 + if (strcmp(argv[1], "!=") == 0) + 7e72: 85e6 mv a1,s9 + 7e74: 856a mv a0,s10 + 7e76: 00000097 auipc ra,0x0 7e76: R_RISCV_CALL strcmp + 7e76: R_RISCV_RELAX *ABS* + 7e7a: 000080e7 jalr ra # 7e76 <.L23+0x4> + +0000000000007e7e <.LVL42>: + 7e7e: e911 bnez a0,7e92 <.L25> 7e7e: R_RISCV_RVC_BRANCH .L25 +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:101 + return strcmp(argv[0], argv[2]) != 0 ? TEST_TRUE : TEST_FALSE; + 7e80: 688c ld a1,16(s1) + 7e82: 8522 mv a0,s0 + 7e84: 00000097 auipc ra,0x0 7e84: R_RISCV_CALL strcmp + 7e84: R_RISCV_RELAX *ABS* + 7e88: 000080e7 jalr ra # 7e84 <.LVL42+0x6> + +0000000000007e8c <.LVL43>: + 7e8c: 00153413 seqz s0,a0 + 7e90: bff1 j 7e6c <.L67> 7e90: R_RISCV_RVC_JUMP .L67 + +0000000000007e92 <.L25>: +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:106 + integer1 = strtol(argv[0], &endptr, 0); + 7e92: 8522 mv a0,s0 + 7e94: 4601 li a2,0 + 7e96: 082c addi a1,sp,24 + 7e98: 00000097 auipc ra,0x0 7e98: R_RISCV_CALL strtol + 7e98: R_RISCV_RELAX *ABS* + 7e9c: 000080e7 jalr ra # 7e98 <.L25+0x6> + +0000000000007ea0 <.LVL44>: +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:107 + if (argv[0][0] == '\0' || *endptr != '\0') + 7ea0: 609c ld a5,0(s1) +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:106 + integer1 = strtol(argv[0], &endptr, 0); + 7ea2: 842a mv s0,a0 + +0000000000007ea4 <.LVL45>: +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:107 + if (argv[0][0] == '\0' || *endptr != '\0') + 7ea4: 0007c783 lbu a5,0(a5) + 7ea8: cbf5 beqz a5,7f9c <.L27> 7ea8: R_RISCV_RVC_BRANCH .L27 + 7eaa: 67e2 ld a5,24(sp) + 7eac: 0007c783 lbu a5,0(a5) + 7eb0: e7f5 bnez a5,7f9c <.L27> 7eb0: R_RISCV_RVC_BRANCH .L27 +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:112 + integer2 = strtol(argv[2], &endptr, 0); + 7eb2: 6888 ld a0,16(s1) + 7eb4: 4601 li a2,0 + 7eb6: 082c addi a1,sp,24 + 7eb8: 00000097 auipc ra,0x0 7eb8: R_RISCV_CALL strtol + 7eb8: R_RISCV_RELAX *ABS* + 7ebc: 000080e7 jalr ra # 7eb8 <.LVL45+0x14> + +0000000000007ec0 <.LVL46>: +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:113 + if (argv[2][0] == '\0' || *endptr != '\0') + 7ec0: 689c ld a5,16(s1) +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:112 + integer2 = strtol(argv[2], &endptr, 0); + 7ec2: 8d2a mv s10,a0 + +0000000000007ec4 <.LVL47>: +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:113 + if (argv[2][0] == '\0' || *endptr != '\0') + 7ec4: 0007c783 lbu a5,0(a5) + 7ec8: cbf1 beqz a5,7f9c <.L27> 7ec8: R_RISCV_RVC_BRANCH .L27 + 7eca: 67e2 ld a5,24(sp) + 7ecc: 0007c783 lbu a5,0(a5) + 7ed0: e7f1 bnez a5,7f9c <.L27> 7ed0: R_RISCV_RVC_BRANCH .L27 +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:120 + if (strcmp(argv[1], "-eq") == 0) + 7ed2: 0084bd83 ld s11,8(s1) + 7ed6: 00000597 auipc a1,0x0 7ed6: R_RISCV_PCREL_HI20 .LC14 + 7ed6: R_RISCV_RELAX *ABS* + 7eda: 00058593 mv a1,a1 7eda: R_RISCV_PCREL_LO12_I .L0 + 7eda: R_RISCV_RELAX *ABS* + 7ede: 856e mv a0,s11 + +0000000000007ee0 <.LVL48>: + 7ee0: 00000097 auipc ra,0x0 7ee0: R_RISCV_CALL strcmp + 7ee0: R_RISCV_RELAX *ABS* + 7ee4: 000080e7 jalr ra # 7ee0 <.LVL48> + +0000000000007ee8 <.LVL49>: + 7ee8: e511 bnez a0,7ef4 <.L29> 7ee8: R_RISCV_RVC_BRANCH .L29 +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:124 + return integer1 == integer2 ? TEST_TRUE : TEST_FALSE; + 7eea: 41a40433 sub s0,s0,s10 + +0000000000007eee <.LVL50>: + 7eee: 00803433 snez s0,s0 + 7ef2: bfad j 7e6c <.L67> 7ef2: R_RISCV_RVC_JUMP .L67 + +0000000000007ef4 <.L29>: +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:129 + if (strcmp(argv[1], "-ge") == 0) + 7ef4: 00000597 auipc a1,0x0 7ef4: R_RISCV_PCREL_HI20 .LC15 + 7ef4: R_RISCV_RELAX *ABS* + 7ef8: 00058593 mv a1,a1 7ef8: R_RISCV_PCREL_LO12_I .L0 + 7ef8: R_RISCV_RELAX *ABS* + 7efc: 856e mv a0,s11 + 7efe: 00000097 auipc ra,0x0 7efe: R_RISCV_CALL strcmp + 7efe: R_RISCV_RELAX *ABS* + 7f02: 000080e7 jalr ra # 7efe <.L29+0xa> + +0000000000007f06 <.LVL52>: + 7f06: e519 bnez a0,7f14 <.L30> 7f06: R_RISCV_RVC_BRANCH .L30 +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:133 + return integer1 >= integer2 ? TEST_TRUE : TEST_FALSE; + 7f08: 01a42433 slt s0,s0,s10 + +0000000000007f0c <.L66>: +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:151 + return integer1 <= integer2 ? TEST_TRUE : TEST_FALSE; + 7f0c: 4080043b negw s0,s0 + +0000000000007f10 <.L24>: +expression(): +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:352 + i += 3; + 7f10: 4d0d li s10,3 + 7f12: b34d j 7cb4 <.L9> 7f12: R_RISCV_RVC_JUMP .L9 + +0000000000007f14 <.L30>: +binaryexpression(): +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:138 + if (strcmp(argv[1], "-gt") == 0) + 7f14: 00000597 auipc a1,0x0 7f14: R_RISCV_PCREL_HI20 .LC16 + 7f14: R_RISCV_RELAX *ABS* + 7f18: 00058593 mv a1,a1 7f18: R_RISCV_PCREL_LO12_I .L0 + 7f18: R_RISCV_RELAX *ABS* + 7f1c: 856e mv a0,s11 + 7f1e: 00000097 auipc ra,0x0 7f1e: R_RISCV_CALL strcmp + 7f1e: R_RISCV_RELAX *ABS* + 7f22: 000080e7 jalr ra # 7f1e <.L30+0xa> + +0000000000007f26 <.LVL56>: + 7f26: e509 bnez a0,7f30 <.L31> 7f26: R_RISCV_RVC_BRANCH .L31 +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:142 + return integer1 > integer2 ? TEST_TRUE : TEST_FALSE; + 7f28: 008d2433 slt s0,s10,s0 + +0000000000007f2c <.L68>: +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:160 + return integer1 < integer2 ? TEST_TRUE : TEST_FALSE; + 7f2c: 347d addiw s0,s0,-1 + 7f2e: b7cd j 7f10 <.L24> 7f2e: R_RISCV_RVC_JUMP .L24 + +0000000000007f30 <.L31>: +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:147 + if (strcmp(argv[1], "-le") == 0) + 7f30: 00000597 auipc a1,0x0 7f30: R_RISCV_PCREL_HI20 .LC17 + 7f30: R_RISCV_RELAX *ABS* + 7f34: 00058593 mv a1,a1 7f34: R_RISCV_PCREL_LO12_I .L0 + 7f34: R_RISCV_RELAX *ABS* + 7f38: 856e mv a0,s11 + 7f3a: 00000097 auipc ra,0x0 7f3a: R_RISCV_CALL strcmp + 7f3a: R_RISCV_RELAX *ABS* + 7f3e: 000080e7 jalr ra # 7f3a <.L31+0xa> + +0000000000007f42 <.LVL59>: + 7f42: e501 bnez a0,7f4a <.L32> 7f42: R_RISCV_RVC_BRANCH .L32 +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:151 + return integer1 <= integer2 ? TEST_TRUE : TEST_FALSE; + 7f44: 008d2433 slt s0,s10,s0 + +0000000000007f48 <.LVL60>: + 7f48: b7d1 j 7f0c <.L66> 7f48: R_RISCV_RVC_JUMP .L66 + +0000000000007f4a <.L32>: +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:156 + if (strcmp(argv[1], "-lt") == 0) + 7f4a: 00000597 auipc a1,0x0 7f4a: R_RISCV_PCREL_HI20 .LC18 + 7f4a: R_RISCV_RELAX *ABS* + 7f4e: 00058593 mv a1,a1 7f4e: R_RISCV_PCREL_LO12_I .L0 + 7f4e: R_RISCV_RELAX *ABS* + 7f52: 856e mv a0,s11 + 7f54: 00000097 auipc ra,0x0 7f54: R_RISCV_CALL strcmp + 7f54: R_RISCV_RELAX *ABS* + 7f58: 000080e7 jalr ra # 7f54 <.L32+0xa> + +0000000000007f5c <.LVL62>: + 7f5c: e501 bnez a0,7f64 <.L33> 7f5c: R_RISCV_RVC_BRANCH .L33 +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:160 + return integer1 < integer2 ? TEST_TRUE : TEST_FALSE; + 7f5e: 01a42433 slt s0,s0,s10 + +0000000000007f62 <.LVL63>: + 7f62: b7e9 j 7f2c <.L68> 7f62: R_RISCV_RVC_JUMP .L68 + +0000000000007f64 <.L33>: +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:165 + if (strcmp(argv[1], "-ne") == 0) + 7f64: 00000597 auipc a1,0x0 7f64: R_RISCV_PCREL_HI20 .LC19 + 7f64: R_RISCV_RELAX *ABS* + 7f68: 00058593 mv a1,a1 7f68: R_RISCV_PCREL_LO12_I .L0 + 7f68: R_RISCV_RELAX *ABS* + 7f6c: 856e mv a0,s11 + 7f6e: 00000097 auipc ra,0x0 7f6e: R_RISCV_CALL strcmp + 7f6e: R_RISCV_RELAX *ABS* + 7f72: 000080e7 jalr ra # 7f6e <.L33+0xa> + +0000000000007f76 <.LVL65>: + 7f76: e11d bnez a0,7f9c <.L27> 7f76: R_RISCV_RVC_BRANCH .L27 +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:169 + return integer1 != integer2 ? TEST_TRUE : TEST_FALSE; + 7f78: 41a40433 sub s0,s0,s10 + +0000000000007f7c <.LVL66>: + 7f7c: 00143413 seqz s0,s0 + 7f80: b5f5 j 7e6c <.L67> 7f80: R_RISCV_RVC_JUMP .L67 + +0000000000007f82 <.L34>: +expression(): +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:384 + else if (strcmp(argv[i], "-o") == 0) + 7f82: 00000597 auipc a1,0x0 7f82: R_RISCV_PCREL_HI20 .LC21 + 7f82: R_RISCV_RELAX *ABS* + 7f86: 00058593 mv a1,a1 7f86: R_RISCV_PCREL_LO12_I .L0 + 7f86: R_RISCV_RELAX *ABS* + 7f8a: 853e mv a0,a5 + 7f8c: 00000097 auipc ra,0x0 7f8c: R_RISCV_CALL strcmp + 7f8c: R_RISCV_RELAX *ABS* + 7f90: 000080e7 jalr ra # 7f8c <.L34+0xa> + +0000000000007f94 <.LVL68>: + 7f94: e501 bnez a0,7f9c <.L27> 7f94: R_RISCV_RVC_BRANCH .L27 +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:386 + if (value == TEST_TRUE) + 7f96: d40415e3 bnez s0,7ce0 <.L60> 7f96: R_RISCV_BRANCH .L60 + 7f9a: b1e9 j 7c64 <.L5> 7f9a: R_RISCV_RVC_JUMP .L5 + +0000000000007f9c <.L27>: +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:405 + nsh_error(vtbl, g_fmtsyntax, "test"); + 7f9c: 0289b783 ld a5,40(s3) + 7fa0: 00000617 auipc a2,0x0 7fa0: R_RISCV_PCREL_HI20 .LC22 + 7fa0: R_RISCV_RELAX *ABS* + 7fa4: 00060613 mv a2,a2 7fa4: R_RISCV_PCREL_LO12_I .L0 + 7fa4: R_RISCV_RELAX *ABS* + 7fa8: 00000597 auipc a1,0x0 7fa8: R_RISCV_PCREL_HI20 g_fmtsyntax + 7fa8: R_RISCV_RELAX *ABS* + 7fac: 00058593 mv a1,a1 7fac: R_RISCV_PCREL_LO12_I .L0 + 7fac: R_RISCV_RELAX *ABS* + 7fb0: 854e mv a0,s3 + 7fb2: 9782 jalr a5 + +0000000000007fb4 <.L37>: +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:373 + return TEST_FALSE; + 7fb4: 547d li s0,-1 + 7fb6: b17d j 7c64 <.L5> 7fb6: R_RISCV_RVC_JUMP .L5 + +0000000000007fb8 : +cmd_test(): +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:419 + * Name: cmd_test + ****************************************************************************/ + +int cmd_test(FAR struct nsh_vtbl_s *vtbl, int argc, FAR char **argv) +{ + return expression(vtbl, argc - 1, &argv[1]); + 7fb8: 0621 addi a2,a2,8 + +0000000000007fba <.LVL72>: + 7fba: 35fd addiw a1,a1,-1 + +0000000000007fbc <.LVL73>: + 7fbc: 00000317 auipc t1,0x0 7fbc: R_RISCV_CALL expression + 7fbc: R_RISCV_RELAX *ABS* + 7fc0: 00030067 jr t1 # 7fbc <.LVL73> + +0000000000007fc4 : +cmd_lbracket(): +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:427 +/**************************************************************************** + * Name: cmd_lbracket + ****************************************************************************/ + +int cmd_lbracket(FAR struct nsh_vtbl_s *vtbl, int argc, FAR char **argv) +{ + 7fc4: 1101 addi sp,sp,-32 +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:432 + /* Verify that the closing right bracket is the last thing on the command + * line. + */ + + if (strcmp(argv[argc - 1], "]") != 0) + 7fc6: 00359793 slli a5,a1,0x3 +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:427 +{ + 7fca: e822 sd s0,16(sp) + 7fcc: e426 sd s1,8(sp) + 7fce: e04a sd s2,0(sp) + 7fd0: ec06 sd ra,24(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:432 + if (strcmp(argv[argc - 1], "]") != 0) + 7fd2: 97b2 add a5,a5,a2 +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:427 +{ + 7fd4: 842a mv s0,a0 +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:432 + if (strcmp(argv[argc - 1], "]") != 0) + 7fd6: ff87b503 ld a0,-8(a5) + +0000000000007fda <.LVL76>: +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:427 +{ + 7fda: 892e mv s2,a1 +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:432 + if (strcmp(argv[argc - 1], "]") != 0) + 7fdc: 00000597 auipc a1,0x0 7fdc: R_RISCV_PCREL_HI20 .LC23 + 7fdc: R_RISCV_RELAX *ABS* + 7fe0: 00058593 mv a1,a1 7fe0: R_RISCV_PCREL_LO12_I .L0 + 7fe0: R_RISCV_RELAX *ABS* + +0000000000007fe4 <.LVL77>: +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:427 +{ + 7fe4: 84b2 mv s1,a2 +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:432 + if (strcmp(argv[argc - 1], "]") != 0) + 7fe6: 00000097 auipc ra,0x0 7fe6: R_RISCV_CALL strcmp + 7fe6: R_RISCV_RELAX *ABS* + 7fea: 000080e7 jalr ra # 7fe6 <.LVL77+0x2> + +0000000000007fee <.LVL78>: + 7fee: ed19 bnez a0,800c <.L74> 7fee: R_RISCV_RVC_BRANCH .L74 +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:442 + + /* Then perform the test on the arguments enclosed by the left and right + * brackets. + */ + + return expression(vtbl, argc - 2, &argv[1]); + 7ff0: 8522 mv a0,s0 +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:443 +} + 7ff2: 6442 ld s0,16(sp) + +0000000000007ff4 <.LVL79>: + 7ff4: 60e2 ld ra,24(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:442 + return expression(vtbl, argc - 2, &argv[1]); + 7ff6: 00848613 addi a2,s1,8 + 7ffa: ffe9059b addiw a1,s2,-2 +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:443 +} + 7ffe: 64a2 ld s1,8(sp) + +0000000000008000 <.LVL80>: + 8000: 6902 ld s2,0(sp) + 8002: 6105 addi sp,sp,32 +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:442 + return expression(vtbl, argc - 2, &argv[1]); + 8004: 00000317 auipc t1,0x0 8004: R_RISCV_CALL expression + 8004: R_RISCV_RELAX *ABS* + 8008: 00030067 jr t1 # 8004 <.LVL80+0x4> + +000000000000800c <.L74>: +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:434 + nsh_error(vtbl, g_fmtsyntax, argv[0]); + 800c: 741c ld a5,40(s0) + 800e: 6090 ld a2,0(s1) + 8010: 8522 mv a0,s0 + 8012: 00000597 auipc a1,0x0 8012: R_RISCV_PCREL_HI20 g_fmtsyntax + 8012: R_RISCV_RELAX *ABS* + 8016: 00058593 mv a1,a1 8016: R_RISCV_PCREL_LO12_I .L0 + 8016: R_RISCV_RELAX *ABS* + 801a: 9782 jalr a5 + +000000000000801c <.LVL82>: +/Users/Luppy/ox64/apps/nshlib/nsh_test.c:443 +} + 801c: 60e2 ld ra,24(sp) + 801e: 6442 ld s0,16(sp) + +0000000000008020 <.LVL83>: + 8020: 64a2 ld s1,8(sp) + +0000000000008022 <.LVL84>: + 8022: 6902 ld s2,0(sp) + 8024: 557d li a0,-1 + 8026: 6105 addi sp,sp,32 + 8028: 8082 ret + +000000000000802a : +cmd_time(): +/Users/Luppy/ox64/apps/nshlib/nsh_timcmds.c:294 + * Name: cmd_time + ****************************************************************************/ + +#ifndef CONFIG_NSH_DISABLE_TIME +int cmd_time(FAR struct nsh_vtbl_s *vtbl, int argc, FAR char **argv) +{ + 802a: 711d addi sp,sp,-96 + 802c: e8a2 sd s0,80(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_timcmds.c:306 + bool redirsave; + int ret; + + /* Get the current time */ + + ret = clock_gettime(CLOCK_MONOTONIC, &start); + 802e: 080c addi a1,sp,16 + +0000000000008030 <.LVL1>: +/Users/Luppy/ox64/apps/nshlib/nsh_timcmds.c:294 +{ + 8030: 842a mv s0,a0 +/Users/Luppy/ox64/apps/nshlib/nsh_timcmds.c:306 + ret = clock_gettime(CLOCK_MONOTONIC, &start); + 8032: 4505 li a0,1 + +0000000000008034 <.LVL2>: +/Users/Luppy/ox64/apps/nshlib/nsh_timcmds.c:294 +{ + 8034: e0ca sd s2,64(sp) + 8036: ec86 sd ra,88(sp) + 8038: e4a6 sd s1,72(sp) + 803a: fc4e sd s3,56(sp) + 803c: 8932 mv s2,a2 +/Users/Luppy/ox64/apps/nshlib/nsh_timcmds.c:306 + ret = clock_gettime(CLOCK_MONOTONIC, &start); + 803e: 00000097 auipc ra,0x0 803e: R_RISCV_CALL clock_gettime + 803e: R_RISCV_RELAX *ABS* + 8042: 000080e7 jalr ra # 803e <.LVL2+0xa> + +0000000000008046 <.LVL3>: +/Users/Luppy/ox64/apps/nshlib/nsh_timcmds.c:307 + if (ret < 0) + 8046: 02055f63 bgez a0,8084 <.L2> 8046: R_RISCV_BRANCH .L2 +/Users/Luppy/ox64/apps/nshlib/nsh_timcmds.c:309 + { + nsh_error(vtbl, g_fmtcmdfailed, argv[0], "clock_gettime", NSH_ERRNO); + 804a: 00093603 ld a2,0(s2) + 804e: 7404 ld s1,40(s0) + 8050: e432 sd a2,8(sp) + 8052: 00000097 auipc ra,0x0 8052: R_RISCV_CALL __errno + 8052: R_RISCV_RELAX *ABS* + 8056: 000080e7 jalr ra # 8052 <.LVL3+0xc> + +000000000000805a <.LVL4>: + 805a: 4118 lw a4,0(a0) + 805c: 6622 ld a2,8(sp) + 805e: 00000697 auipc a3,0x0 805e: R_RISCV_PCREL_HI20 .LC0 + 805e: R_RISCV_RELAX *ABS* + 8062: 00068693 mv a3,a3 8062: R_RISCV_PCREL_LO12_I .L0 + 8062: R_RISCV_RELAX *ABS* + 8066: 00000597 auipc a1,0x0 8066: R_RISCV_PCREL_HI20 g_fmtcmdfailed + 8066: R_RISCV_RELAX *ABS* + 806a: 00058593 mv a1,a1 806a: R_RISCV_PCREL_LO12_I .L0 + 806a: R_RISCV_RELAX *ABS* + 806e: 8522 mv a0,s0 + 8070: 9482 jalr s1 + +0000000000008072 <.LVL5>: +/Users/Luppy/ox64/apps/nshlib/nsh_timcmds.c:310 + return ERROR; + 8072: 54fd li s1,-1 + +0000000000008074 <.L3>: +/Users/Luppy/ox64/apps/nshlib/nsh_timcmds.c:360 + vtbl->np.np_bg = bgsave; +#endif + vtbl->np.np_redirect = redirsave; + + return ret; +} + 8074: 60e6 ld ra,88(sp) + 8076: 6446 ld s0,80(sp) + +0000000000008078 <.LVL6>: + 8078: 6906 ld s2,64(sp) + +000000000000807a <.LVL7>: + 807a: 79e2 ld s3,56(sp) + 807c: 8526 mv a0,s1 + 807e: 64a6 ld s1,72(sp) + 8080: 6125 addi sp,sp,96 + 8082: 8082 ret + +0000000000008084 <.L2>: +/Users/Luppy/ox64/apps/nshlib/nsh_timcmds.c:322 + ret = nsh_parse(vtbl, argv[1]); + 8084: 00893583 ld a1,8(s2) + 8088: 8522 mv a0,s0 + +000000000000808a <.LVL9>: +/Users/Luppy/ox64/apps/nshlib/nsh_timcmds.c:316 + bgsave = vtbl->np.np_bg; + 808a: 29845983 lhu s3,664(s0) + +000000000000808e <.LVL10>: +/Users/Luppy/ox64/apps/nshlib/nsh_timcmds.c:322 + ret = nsh_parse(vtbl, argv[1]); + 808e: 00000097 auipc ra,0x0 808e: R_RISCV_CALL nsh_parse + 808e: R_RISCV_RELAX *ABS* + 8092: 000080e7 jalr ra # 808e <.LVL10> + +0000000000008096 <.LVL11>: + 8096: 84aa mv s1,a0 + +0000000000008098 <.LVL12>: +/Users/Luppy/ox64/apps/nshlib/nsh_timcmds.c:323 + if (ret >= 0) + 8098: 04054063 bltz a0,80d8 <.L4> 8098: R_RISCV_BRANCH .L4 + +000000000000809c <.LBB2>: +/Users/Luppy/ox64/apps/nshlib/nsh_timcmds.c:330 + ret = clock_gettime(CLOCK_MONOTONIC, &end); + 809c: 100c addi a1,sp,32 + 809e: 4505 li a0,1 + +00000000000080a0 <.LVL13>: + 80a0: 00000097 auipc ra,0x0 80a0: R_RISCV_CALL clock_gettime + 80a0: R_RISCV_RELAX *ABS* + 80a4: 000080e7 jalr ra # 80a0 <.LVL13> + +00000000000080a8 <.LVL14>: + 80a8: 84aa mv s1,a0 + +00000000000080aa <.LVL15>: +/Users/Luppy/ox64/apps/nshlib/nsh_timcmds.c:331 + if (ret < 0) + 80aa: 02055a63 bgez a0,80de <.L5> 80aa: R_RISCV_BRANCH .L5 +/Users/Luppy/ox64/apps/nshlib/nsh_timcmds.c:333 + nsh_error(vtbl, g_fmtcmdfailed, + 80ae: 00093603 ld a2,0(s2) + 80b2: 7404 ld s1,40(s0) + 80b4: e432 sd a2,8(sp) + 80b6: 00000097 auipc ra,0x0 80b6: R_RISCV_CALL __errno + 80b6: R_RISCV_RELAX *ABS* + 80ba: 000080e7 jalr ra # 80b6 <.LVL15+0xc> + +00000000000080be <.LVL16>: + 80be: 4118 lw a4,0(a0) + 80c0: 6622 ld a2,8(sp) + 80c2: 00000697 auipc a3,0x0 80c2: R_RISCV_PCREL_HI20 .LC0 + 80c2: R_RISCV_RELAX *ABS* + 80c6: 00068693 mv a3,a3 80c6: R_RISCV_PCREL_LO12_I .L0 + 80c6: R_RISCV_RELAX *ABS* + 80ca: 00000597 auipc a1,0x0 80ca: R_RISCV_PCREL_HI20 g_fmtcmdfailed + 80ca: R_RISCV_RELAX *ABS* + 80ce: 00058593 mv a1,a1 80ce: R_RISCV_PCREL_LO12_I .L0 + 80ce: R_RISCV_RELAX *ABS* + 80d2: 8522 mv a0,s0 + 80d4: 9482 jalr s1 + +00000000000080d6 <.LVL17>: +/Users/Luppy/ox64/apps/nshlib/nsh_timcmds.c:335 + ret = ERROR; + 80d6: 54fd li s1,-1 + +00000000000080d8 <.L4>: +/Users/Luppy/ox64/apps/nshlib/nsh_timcmds.c:355 + vtbl->np.np_bg = bgsave; + 80d8: 29341c23 sh s3,664(s0) +/Users/Luppy/ox64/apps/nshlib/nsh_timcmds.c:359 + return ret; + 80dc: bf61 j 8074 <.L3> 80dc: R_RISCV_RVC_JUMP .L3 + +00000000000080de <.L5>: +/Users/Luppy/ox64/apps/nshlib/nsh_timcmds.c:339 + diff.tv_sec = end.tv_sec - start.tv_sec; + 80de: 47c2 lw a5,16(sp) + 80e0: 5702 lw a4,32(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_timcmds.c:340 + if (start.tv_nsec > end.tv_nsec) + 80e2: 65e2 ld a1,24(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_timcmds.c:339 + diff.tv_sec = end.tv_sec - start.tv_sec; + 80e4: 40f7063b subw a2,a4,a5 + +00000000000080e8 <.LVL20>: +/Users/Luppy/ox64/apps/nshlib/nsh_timcmds.c:340 + if (start.tv_nsec > end.tv_nsec) + 80e8: 77a2 ld a5,40(sp) + 80ea: 00b7d963 bge a5,a1,80fc <.L7> 80ea: R_RISCV_BRANCH .L7 +/Users/Luppy/ox64/apps/nshlib/nsh_timcmds.c:343 + end.tv_nsec += 1000000000; + 80ee: 3b9ad737 lui a4,0x3b9ad + 80f2: a0070713 addi a4,a4,-1536 # 3b9aca00 <.Ldebug_info0+0x3b97693b> + 80f6: 97ba add a5,a5,a4 +/Users/Luppy/ox64/apps/nshlib/nsh_timcmds.c:342 + diff.tv_sec--; + 80f8: 367d addiw a2,a2,-1 + +00000000000080fa <.LVL21>: +/Users/Luppy/ox64/apps/nshlib/nsh_timcmds.c:343 + end.tv_nsec += 1000000000; + 80fa: f43e sd a5,40(sp) + +00000000000080fc <.L7>: +/Users/Luppy/ox64/apps/nshlib/nsh_timcmds.c:346 + diff.tv_nsec = end.tv_nsec - start.tv_nsec; + 80fc: 76a2 ld a3,40(sp) +/Users/Luppy/ox64/apps/nshlib/nsh_timcmds.c:347 + nsh_output(vtbl, "\n%lu.%04lu sec\n", (unsigned long)diff.tv_sec, + 80fe: 67e1 lui a5,0x18 + 8100: 6a078793 addi a5,a5,1696 # 186a0 <.LASF2+0x2b> +/Users/Luppy/ox64/apps/nshlib/nsh_timcmds.c:346 + diff.tv_nsec = end.tv_nsec - start.tv_nsec; + 8104: 8e8d sub a3,a3,a1 + +0000000000008106 <.LVL23>: +/Users/Luppy/ox64/apps/nshlib/nsh_timcmds.c:347 + nsh_output(vtbl, "\n%lu.%04lu sec\n", (unsigned long)diff.tv_sec, + 8106: 02f6d6b3 divu a3,a3,a5 + +000000000000810a <.LVL24>: + 810a: 7818 ld a4,48(s0) + 810c: 1602 slli a2,a2,0x20 + +000000000000810e <.LVL25>: + 810e: 9201 srli a2,a2,0x20 + 8110: 00000597 auipc a1,0x0 8110: R_RISCV_PCREL_HI20 .LC1 + 8110: R_RISCV_RELAX *ABS* + 8114: 00058593 mv a1,a1 8114: R_RISCV_PCREL_LO12_I .L0 + 8114: R_RISCV_RELAX *ABS* + +0000000000008118 <.LVL26>: + 8118: 8522 mv a0,s0 + +000000000000811a <.LVL27>: + 811a: 9702 jalr a4 + +000000000000811c <.LVL28>: + 811c: bf75 j 80d8 <.L4> 811c: R_RISCV_RVC_JUMP .L4 + +000000000000811e : +free(): +/Users/Luppy/ox64/nuttx/mm/umm_heap/umm_free.c:49 + ****************************************************************************/ + +#undef free /* See mm/README.txt */ +void free(FAR void *mem) +{ + mm_free(USR_HEAP, mem); + 811e: 008017b7 lui a5,0x801 + 8122: 07a2 slli a5,a5,0x8 +/Users/Luppy/ox64/nuttx/mm/umm_heap/umm_free.c:48 +{ + 8124: 85aa mv a1,a0 +/Users/Luppy/ox64/nuttx/mm/umm_heap/umm_free.c:49 + mm_free(USR_HEAP, mem); + 8126: 6788 ld a0,8(a5) + +0000000000008128 <.LVL1>: + 8128: 00000317 auipc t1,0x0 8128: R_RISCV_CALL mm_free + 8128: R_RISCV_RELAX *ABS* + 812c: 00030067 jr t1 # 8128 <.LVL1> + +0000000000008130 : +malloc(): +/Users/Luppy/ox64/nuttx/mm/umm_heap/umm_malloc.c:54 + * + ****************************************************************************/ + +#undef malloc /* See mm/README.txt */ +FAR void *malloc(size_t size) +{ + 8130: 85aa mv a1,a0 +/Users/Luppy/ox64/nuttx/mm/umm_heap/umm_malloc.c:58 +#if defined(CONFIG_ARCH_ADDRENV) && defined(CONFIG_BUILD_KERNEL) + /* Use memalign() because it implements the sbrk() logic */ + + return memalign(sizeof(FAR void *), size); + 8132: 4521 li a0,8 + +0000000000008134 <.LVL1>: + 8134: 00000317 auipc t1,0x0 8134: R_RISCV_CALL memalign + 8134: R_RISCV_RELAX *ABS* + 8138: 00030067 jr t1 # 8134 <.LVL1> + +000000000000813c : +memalign(): +/Users/Luppy/ox64/nuttx/mm/umm_heap/umm_memalign.c:53 + * + ****************************************************************************/ + +#undef memalign /* See mm/README.txt */ +FAR void *memalign(size_t alignment, size_t size) +{ + 813c: 7179 addi sp,sp,-48 + 813e: e44e sd s3,8(sp) +/Users/Luppy/ox64/nuttx/mm/umm_heap/umm_memalign.c:75 + * allocated). + */ + + do + { + mem = mm_memalign(USR_HEAP, alignment, size); + 8140: 008019b7 lui s3,0x801 +/Users/Luppy/ox64/nuttx/mm/umm_heap/umm_memalign.c:53 +{ + 8144: f022 sd s0,32(sp) + 8146: e84a sd s2,16(sp) + 8148: e052 sd s4,0(sp) + 814a: f406 sd ra,40(sp) + 814c: ec26 sd s1,24(sp) + 814e: 892a mv s2,a0 + 8150: 842e mv s0,a1 +/Users/Luppy/ox64/nuttx/mm/umm_heap/umm_memalign.c:75 + mem = mm_memalign(USR_HEAP, alignment, size); + 8152: 09a2 slli s3,s3,0x8 +/Users/Luppy/ox64/nuttx/mm/umm_heap/umm_memalign.c:60 + umm_try_initialize(); + 8154: 00000097 auipc ra,0x0 8154: R_RISCV_CALL umm_try_initialize + 8154: R_RISCV_RELAX *ABS* + 8158: 000080e7 jalr ra # 8154 + +000000000000815c <.LVL1>: +/Users/Luppy/ox64/nuttx/mm/umm_heap/umm_memalign.c:79 + if (!mem) + { + brkaddr = sbrk(size < 1 ? 1 : size); + if (brkaddr == (FAR void *)-1) + 815c: 5a7d li s4,-1 + +000000000000815e <.L4>: +/Users/Luppy/ox64/nuttx/mm/umm_heap/umm_memalign.c:75 + mem = mm_memalign(USR_HEAP, alignment, size); + 815e: 0089b503 ld a0,8(s3) # 801008 <.Ldebug_info0+0x7caf43> + 8162: 8622 mv a2,s0 + 8164: 85ca mv a1,s2 + 8166: 00000097 auipc ra,0x0 8166: R_RISCV_CALL mm_memalign + 8166: R_RISCV_RELAX *ABS* + 816a: 000080e7 jalr ra # 8166 <.L4+0x8> + +000000000000816e <.LVL2>: + 816e: 84aa mv s1,a0 + +0000000000008170 <.LVL3>: +/Users/Luppy/ox64/nuttx/mm/umm_heap/umm_memalign.c:76 + if (!mem) + 8170: e911 bnez a0,8184 <.L1> 8170: R_RISCV_RVC_BRANCH .L1 +/Users/Luppy/ox64/nuttx/mm/umm_heap/umm_memalign.c:78 + brkaddr = sbrk(size < 1 ? 1 : size); + 8172: 8522 mv a0,s0 + 8174: e011 bnez s0,8178 <.L3> 8174: R_RISCV_RVC_BRANCH .L3 + 8176: 4505 li a0,1 + +0000000000008178 <.L3>: + 8178: 00000097 auipc ra,0x0 8178: R_RISCV_CALL sbrk + 8178: R_RISCV_RELAX *ABS* + 817c: 000080e7 jalr ra # 8178 <.L3> + +0000000000008180 <.LVL4>: +/Users/Luppy/ox64/nuttx/mm/umm_heap/umm_memalign.c:79 + if (brkaddr == (FAR void *)-1) + 8180: fd451fe3 bne a0,s4,815e <.L4> 8180: R_RISCV_BRANCH .L4 + +0000000000008184 <.L1>: +/Users/Luppy/ox64/nuttx/mm/umm_heap/umm_memalign.c:99 + set_errno(ENOMEM); + } + + return ret; +#endif +} + 8184: 70a2 ld ra,40(sp) + 8186: 7402 ld s0,32(sp) + +0000000000008188 <.LVL6>: + 8188: 6942 ld s2,16(sp) + +000000000000818a <.LVL7>: + 818a: 69a2 ld s3,8(sp) + 818c: 6a02 ld s4,0(sp) + 818e: 8526 mv a0,s1 + 8190: 64e2 ld s1,24(sp) + +0000000000008192 <.LVL8>: + 8192: 6145 addi sp,sp,48 + 8194: 8082 ret + +0000000000008196 : +realloc(): +/Users/Luppy/ox64/nuttx/mm/umm_heap/umm_realloc.c:55 + * + ****************************************************************************/ + +#undef realloc /* See mm/README.txt */ +FAR void *realloc(FAR void *oldmem, size_t size) +{ + 8196: 7179 addi sp,sp,-48 + 8198: e44e sd s3,8(sp) +/Users/Luppy/ox64/nuttx/mm/umm_heap/umm_realloc.c:77 + * allocated). + */ + + do + { + mem = mm_realloc(USR_HEAP, oldmem, size); + 819a: 008019b7 lui s3,0x801 +/Users/Luppy/ox64/nuttx/mm/umm_heap/umm_realloc.c:55 +{ + 819e: f022 sd s0,32(sp) + 81a0: e84a sd s2,16(sp) + 81a2: e052 sd s4,0(sp) + 81a4: f406 sd ra,40(sp) + 81a6: ec26 sd s1,24(sp) + 81a8: 892a mv s2,a0 + 81aa: 842e mv s0,a1 +/Users/Luppy/ox64/nuttx/mm/umm_heap/umm_realloc.c:77 + mem = mm_realloc(USR_HEAP, oldmem, size); + 81ac: 09a2 slli s3,s3,0x8 +/Users/Luppy/ox64/nuttx/mm/umm_heap/umm_realloc.c:62 + umm_try_initialize(); + 81ae: 00000097 auipc ra,0x0 81ae: R_RISCV_CALL umm_try_initialize + 81ae: R_RISCV_RELAX *ABS* + 81b2: 000080e7 jalr ra # 81ae + +00000000000081b6 <.LVL1>: +/Users/Luppy/ox64/nuttx/mm/umm_heap/umm_realloc.c:81 + if (!mem) + { + brkaddr = sbrk(size < 1 ? 1 : size); + if (brkaddr == (FAR void *)-1) + 81b6: 5a7d li s4,-1 + +00000000000081b8 <.L4>: +/Users/Luppy/ox64/nuttx/mm/umm_heap/umm_realloc.c:77 + mem = mm_realloc(USR_HEAP, oldmem, size); + 81b8: 0089b503 ld a0,8(s3) # 801008 <.Ldebug_info0+0x7caf43> + 81bc: 8622 mv a2,s0 + 81be: 85ca mv a1,s2 + 81c0: 00000097 auipc ra,0x0 81c0: R_RISCV_CALL mm_realloc + 81c0: R_RISCV_RELAX *ABS* + 81c4: 000080e7 jalr ra # 81c0 <.L4+0x8> + +00000000000081c8 <.LVL2>: + 81c8: 84aa mv s1,a0 + +00000000000081ca <.LVL3>: +/Users/Luppy/ox64/nuttx/mm/umm_heap/umm_realloc.c:78 + if (!mem) + 81ca: e911 bnez a0,81de <.L1> 81ca: R_RISCV_RVC_BRANCH .L1 +/Users/Luppy/ox64/nuttx/mm/umm_heap/umm_realloc.c:80 + brkaddr = sbrk(size < 1 ? 1 : size); + 81cc: 8522 mv a0,s0 + 81ce: e011 bnez s0,81d2 <.L3> 81ce: R_RISCV_RVC_BRANCH .L3 + 81d0: 4505 li a0,1 + +00000000000081d2 <.L3>: + 81d2: 00000097 auipc ra,0x0 81d2: R_RISCV_CALL sbrk + 81d2: R_RISCV_RELAX *ABS* + 81d6: 000080e7 jalr ra # 81d2 <.L3> + +00000000000081da <.LVL4>: +/Users/Luppy/ox64/nuttx/mm/umm_heap/umm_realloc.c:81 + if (brkaddr == (FAR void *)-1) + 81da: fd451fe3 bne a0,s4,81b8 <.L4> 81da: R_RISCV_BRANCH .L4 + +00000000000081de <.L1>: +/Users/Luppy/ox64/nuttx/mm/umm_heap/umm_realloc.c:101 + set_errno(ENOMEM); + } + + return ret; +#endif +} + 81de: 70a2 ld ra,40(sp) + 81e0: 7402 ld s0,32(sp) + +00000000000081e2 <.LVL6>: + 81e2: 6942 ld s2,16(sp) + +00000000000081e4 <.LVL7>: + 81e4: 69a2 ld s3,8(sp) + 81e6: 6a02 ld s4,0(sp) + 81e8: 8526 mv a0,s1 + 81ea: 64e2 ld s1,24(sp) + +00000000000081ec <.LVL8>: + 81ec: 6145 addi sp,sp,48 + 81ee: 8082 ret + +00000000000081f0 : +zalloc(): +/Users/Luppy/ox64/nuttx/mm/umm_heap/umm_zalloc.c:54 + * + ****************************************************************************/ + +#undef zalloc /* See mm/README.txt */ +FAR void *zalloc(size_t size) +{ + 81f0: 1101 addi sp,sp,-32 + 81f2: e822 sd s0,16(sp) + 81f4: ec06 sd ra,24(sp) + 81f6: e42a sd a0,8(sp) +/Users/Luppy/ox64/nuttx/mm/umm_heap/umm_zalloc.c:58 +#ifdef CONFIG_ARCH_ADDRENV + /* Use malloc() because it implements the sbrk() logic */ + + FAR void *mem = malloc(size); + 81f8: 00000097 auipc ra,0x0 81f8: R_RISCV_CALL malloc + 81f8: R_RISCV_RELAX *ABS* + 81fc: 000080e7 jalr ra # 81f8 + +0000000000008200 <.LVL1>: + 8200: 842a mv s0,a0 + +0000000000008202 <.LVL2>: +/Users/Luppy/ox64/nuttx/mm/umm_heap/umm_zalloc.c:59 + if (mem) + 8202: c519 beqz a0,8210 <.L1> 8202: R_RISCV_RVC_BRANCH .L1 +/Users/Luppy/ox64/nuttx/mm/umm_heap/umm_zalloc.c:61 + { + memset(mem, 0, size); + 8204: 6622 ld a2,8(sp) + 8206: 4581 li a1,0 + 8208: 00000097 auipc ra,0x0 8208: R_RISCV_CALL memset + 8208: R_RISCV_RELAX *ABS* + 820c: 000080e7 jalr ra # 8208 <.LVL2+0x6> + +0000000000008210 <.L1>: +/Users/Luppy/ox64/nuttx/mm/umm_heap/umm_zalloc.c:78 + set_errno(ENOMEM); + } + + return ret; +#endif +} + 8210: 60e2 ld ra,24(sp) + 8212: 8522 mv a0,s0 + 8214: 6442 ld s0,16(sp) + +0000000000008216 <.LVL4>: + 8216: 6105 addi sp,sp,32 + +0000000000008218 <.LVL5>: + 8218: 8082 ret + +000000000000821a : +sbrk(): +/Users/Luppy/ox64/nuttx/mm/umm_heap/umm_sbrk.c:74 + * size. + * + ****************************************************************************/ + +FAR void *sbrk(intptr_t incr) +{ + 821a: 1101 addi sp,sp,-32 + 821c: ec06 sd ra,24(sp) + 821e: e822 sd s0,16(sp) + 8220: e426 sd s1,8(sp) + 8222: e04a sd s2,0(sp) +/Users/Luppy/ox64/nuttx/mm/umm_heap/umm_sbrk.c:81 + uintptr_t allocbase; + unsigned int pgincr; + size_t bytesize; + int errcode; + + DEBUGASSERT(incr >= 0); + 8224: 02055063 bgez a0,8244 <.L2> 8224: R_RISCV_BRANCH .L2 +/Users/Luppy/ox64/nuttx/mm/umm_heap/umm_sbrk.c:81 (discriminator 1) + 8228: 00000617 auipc a2,0x0 8228: R_RISCV_PCREL_HI20 .LC0 + 8228: R_RISCV_RELAX *ABS* + 822c: 00060613 mv a2,a2 822c: R_RISCV_PCREL_LO12_I .L0 + 822c: R_RISCV_RELAX *ABS* + 8230: 05100593 li a1,81 + 8234: 00000517 auipc a0,0x0 8234: R_RISCV_PCREL_HI20 .LC1 + 8234: R_RISCV_RELAX *ABS* + 8238: 00050513 mv a0,a0 8238: R_RISCV_PCREL_LO12_I .L0 + 8238: R_RISCV_RELAX *ABS* + +000000000000823c <.LVL1>: + 823c: 00000097 auipc ra,0x0 823c: R_RISCV_CALL __assert + 823c: R_RISCV_RELAX *ABS* + 8240: 000080e7 jalr ra # 823c <.LVL1> + +0000000000008244 <.L2>: +/Users/Luppy/ox64/nuttx/mm/umm_heap/umm_sbrk.c:94 + + umm_try_initialize(); + + /* Get the current break address (NOTE: assumes region 0). */ + + brkaddr = (uintptr_t)mm_brkaddr(USR_HEAP, 0); + 8244: 00801937 lui s2,0x801 + 8248: 842a mv s0,a0 + 824a: 0922 slli s2,s2,0x8 +/Users/Luppy/ox64/nuttx/mm/umm_heap/umm_sbrk.c:90 + umm_try_initialize(); + 824c: 00000097 auipc ra,0x0 824c: R_RISCV_CALL umm_try_initialize + 824c: R_RISCV_RELAX *ABS* + 8250: 000080e7 jalr ra # 824c <.L2+0x8> + +0000000000008254 <.LVL3>: +/Users/Luppy/ox64/nuttx/mm/umm_heap/umm_sbrk.c:94 + brkaddr = (uintptr_t)mm_brkaddr(USR_HEAP, 0); + 8254: 00893503 ld a0,8(s2) # 801008 <.Ldebug_info0+0x7caf43> + 8258: 4581 li a1,0 + 825a: 00000097 auipc ra,0x0 825a: R_RISCV_CALL mm_brkaddr + 825a: R_RISCV_RELAX *ABS* + 825e: 000080e7 jalr ra # 825a <.LVL3+0x6> + +0000000000008262 <.LVL4>: + 8262: 84aa mv s1,a0 + +0000000000008264 <.LVL5>: +/Users/Luppy/ox64/nuttx/mm/umm_heap/umm_sbrk.c:95 + if (incr > 0) + 8264: c805 beqz s0,8294 <.L1> 8264: R_RISCV_RVC_BRANCH .L1 +/Users/Luppy/ox64/nuttx/mm/umm_heap/umm_sbrk.c:99 + { + /* Convert the increment to multiples of the page size */ + + pgincr = MM_NPAGES(incr); + 8266: 6585 lui a1,0x1 + 8268: 15fd addi a1,a1,-1 + 826a: 942e add s0,s0,a1 + +000000000000826c <.LVL6>: + 826c: 8031 srli s0,s0,0xc + +000000000000826e <.LVL7>: + 826e: 2401 sext.w s0,s0 + +0000000000008270 <.LVL8>: +/Users/Luppy/ox64/nuttx/mm/umm_heap/umm_sbrk.c:105 + + /* Allocate the requested number of pages and map them to the + * break address. + */ + + allocbase = pgalloc(brkaddr, pgincr); + 8270: 85a2 mv a1,s0 + 8272: 00000097 auipc ra,0x0 8272: R_RISCV_CALL pgalloc + 8272: R_RISCV_RELAX *ABS* + 8276: 000080e7 jalr ra # 8272 <.LVL8+0x2> + +000000000000827a <.LVL9>: + 827a: 85aa mv a1,a0 + +000000000000827c <.LVL10>: +/Users/Luppy/ox64/nuttx/mm/umm_heap/umm_sbrk.c:106 + if (allocbase == 0) + 827c: c11d beqz a0,82a2 <.L4> 827c: R_RISCV_RVC_BRANCH .L4 + +000000000000827e <.LVL11>: +/Users/Luppy/ox64/nuttx/mm/umm_heap/umm_sbrk.c:114 + goto errout; + } + + /* Extend the heap (region 0) */ + + bytesize = pgincr << MM_PGSHIFT; + 827e: 00c4161b slliw a2,s0,0xc +/Users/Luppy/ox64/nuttx/mm/umm_heap/umm_sbrk.c:115 + mm_extend(USR_HEAP, (FAR void *)allocbase, bytesize, 0); + 8282: 00893503 ld a0,8(s2) + +0000000000008286 <.LVL12>: + 8286: 1602 slli a2,a2,0x20 + 8288: 4681 li a3,0 + 828a: 9201 srli a2,a2,0x20 + 828c: 00000097 auipc ra,0x0 828c: R_RISCV_CALL mm_extend + 828c: R_RISCV_RELAX *ABS* + 8290: 000080e7 jalr ra # 828c <.LVL12+0x6> + +0000000000008294 <.L1>: +/Users/Luppy/ox64/nuttx/mm/umm_heap/umm_sbrk.c:123 + return (FAR void *)brkaddr; + +errout: + set_errno(errcode); + return (FAR void *)-1; +} + 8294: 60e2 ld ra,24(sp) + 8296: 6442 ld s0,16(sp) + 8298: 6902 ld s2,0(sp) + 829a: 8526 mv a0,s1 + 829c: 64a2 ld s1,8(sp) + 829e: 6105 addi sp,sp,32 + 82a0: 8082 ret + +00000000000082a2 <.L4>: +/Users/Luppy/ox64/nuttx/mm/umm_heap/umm_sbrk.c:121 + set_errno(errcode); + 82a2: 00000097 auipc ra,0x0 82a2: R_RISCV_CALL __errno + 82a2: R_RISCV_RELAX *ABS* + 82a6: 000080e7 jalr ra # 82a2 <.L4> + +00000000000082aa <.LVL15>: + 82aa: 47ad li a5,11 + 82ac: c11c sw a5,0(a0) +/Users/Luppy/ox64/nuttx/mm/umm_heap/umm_sbrk.c:122 + return (FAR void *)-1; + 82ae: 54fd li s1,-1 + +00000000000082b0 <.LVL16>: + 82b0: b7d5 j 8294 <.L1> 82b0: R_RISCV_RVC_JUMP .L1 + +00000000000082b2 : +mm_brkaddr(): +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_brkaddr.c:53 + uintptr_t brkaddr; + +#if CONFIG_MM_REGIONS > 1 + DEBUGASSERT(heap && region < heap->mm_nregions); +#else + DEBUGASSERT(heap && region == 0); + 82b2: c111 beqz a0,82b6 <.L2> 82b2: R_RISCV_RVC_BRANCH .L2 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_brkaddr.c:53 (discriminator 2) + 82b4: c18d beqz a1,82d6 <.L3> 82b4: R_RISCV_RVC_BRANCH .L3 + +00000000000082b6 <.L2>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_brkaddr.c:47 (discriminator 3) +{ + 82b6: 1141 addi sp,sp,-16 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_brkaddr.c:53 (discriminator 3) + DEBUGASSERT(heap && region == 0); + 82b8: 00000617 auipc a2,0x0 82b8: R_RISCV_PCREL_HI20 .LC0 + 82b8: R_RISCV_RELAX *ABS* + 82bc: 00060613 mv a2,a2 82bc: R_RISCV_PCREL_LO12_I .L0 + 82bc: R_RISCV_RELAX *ABS* + 82c0: 03500593 li a1,53 + +00000000000082c4 <.LVL1>: + 82c4: 00000517 auipc a0,0x0 82c4: R_RISCV_PCREL_HI20 .LC1 + 82c4: R_RISCV_RELAX *ABS* + 82c8: 00050513 mv a0,a0 82c8: R_RISCV_PCREL_LO12_I .L0 + 82c8: R_RISCV_RELAX *ABS* + +00000000000082cc <.LVL2>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_brkaddr.c:47 (discriminator 3) +{ + 82cc: e406 sd ra,8(sp) +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_brkaddr.c:53 (discriminator 3) + DEBUGASSERT(heap && region == 0); + 82ce: 00000097 auipc ra,0x0 82ce: R_RISCV_CALL __assert + 82ce: R_RISCV_RELAX *ABS* + 82d2: 000080e7 jalr ra # 82ce <.LVL2+0x2> + +00000000000082d6 <.L3>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_brkaddr.c:56 (discriminator 4) +#endif + + brkaddr = (uintptr_t)heap->mm_heapend[region]; + 82d6: 6128 ld a0,64(a0) + +00000000000082d8 <.LVL4>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_brkaddr.c:57 (discriminator 4) + return brkaddr ? (FAR void *)(brkaddr + MM_SIZEOF_ALLOCNODE) : NULL; + 82d8: c111 beqz a0,82dc <.L1> 82d8: R_RISCV_RVC_BRANCH .L1 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_brkaddr.c:57 (discriminator 1) + 82da: 0541 addi a0,a0,16 + +00000000000082dc <.L1>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_brkaddr.c:58 +} + 82dc: 8082 ret + +00000000000082de : +mm_extend(): +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_extend.c:54 + * + ****************************************************************************/ + +void mm_extend(FAR struct mm_heap_s *heap, FAR void *mem, size_t size, + int region) +{ + 82de: 7139 addi sp,sp,-64 + 82e0: fc06 sd ra,56(sp) + 82e2: f822 sd s0,48(sp) + 82e4: f426 sd s1,40(sp) + 82e6: f04a sd s2,32(sp) + 82e8: ec4e sd s3,24(sp) +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_extend.c:62 + uintptr_t blockstart; + uintptr_t blockend; + + /* Make sure that we were passed valid parameters */ + + DEBUGASSERT(heap && mem); + 82ea: c111 beqz a0,82ee <.L2> 82ea: R_RISCV_RVC_BRANCH .L2 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_extend.c:62 (discriminator 2) + 82ec: ed99 bnez a1,830a <.L3> 82ec: R_RISCV_RVC_BRANCH .L3 + +00000000000082ee <.L2>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_extend.c:62 (discriminator 3) + 82ee: 00000617 auipc a2,0x0 82ee: R_RISCV_PCREL_HI20 .LC0 + 82ee: R_RISCV_RELAX *ABS* + 82f2: 00060613 mv a2,a2 82f2: R_RISCV_PCREL_LO12_I .L0 + 82f2: R_RISCV_RELAX *ABS* + +00000000000082f6 <.LVL1>: + 82f6: 03e00593 li a1,62 + +00000000000082fa <.L15>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_extend.c:67 (discriminator 3) +#if CONFIG_MM_REGIONS > 1 + DEBUGASSERT(size >= MIN_EXTEND && region >= 0 && + region < heap->mm_nregions); +#else + DEBUGASSERT(size >= MIN_EXTEND && region == 0); + 82fa: 00000517 auipc a0,0x0 82fa: R_RISCV_PCREL_HI20 .LC1 + 82fa: R_RISCV_RELAX *ABS* + 82fe: 00050513 mv a0,a0 82fe: R_RISCV_PCREL_LO12_I .L0 + 82fe: R_RISCV_RELAX *ABS* + 8302: 00000097 auipc ra,0x0 8302: R_RISCV_CALL __assert + 8302: R_RISCV_RELAX *ABS* + 8306: 000080e7 jalr ra # 8302 <.L15+0x8> + +000000000000830a <.L3>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_extend.c:67 (discriminator 4) + 830a: 47fd li a5,31 + 830c: 84b2 mv s1,a2 + 830e: 00c7f363 bgeu a5,a2,8314 <.L4> 830e: R_RISCV_BRANCH .L4 + +0000000000008312 <.LVL4>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_extend.c:67 (discriminator 2) + 8312: ca81 beqz a3,8322 <.L5> 8312: R_RISCV_RVC_BRANCH .L5 + +0000000000008314 <.L4>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_extend.c:67 (discriminator 3) + 8314: 00000617 auipc a2,0x0 8314: R_RISCV_PCREL_HI20 .LC2 + 8314: R_RISCV_RELAX *ABS* + 8318: 00060613 mv a2,a2 8318: R_RISCV_PCREL_LO12_I .L0 + 8318: R_RISCV_RELAX *ABS* + 831c: 04300593 li a1,67 + +0000000000008320 <.LVL5>: + 8320: bfe9 j 82fa <.L15> 8320: R_RISCV_RVC_JUMP .L15 + +0000000000008322 <.L5>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_extend.c:75 (discriminator 4) + /* Make sure that the memory region are properly aligned */ + + blockstart = (uintptr_t)mem; + blockend = blockstart + size; + + DEBUGASSERT(MM_ALIGN_UP(blockstart) == blockstart); + 8322: 00f58993 addi s3,a1,15 # 100f <.L2+0x9> + 8326: ff09f993 andi s3,s3,-16 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_extend.c:73 (discriminator 4) + blockend = blockstart + size; + 832a: 00b607b3 add a5,a2,a1 + +000000000000832e <.LVL7>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_extend.c:75 (discriminator 4) + DEBUGASSERT(MM_ALIGN_UP(blockstart) == blockstart); + 832e: 00b98963 beq s3,a1,8340 <.L6> 832e: R_RISCV_BRANCH .L6 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_extend.c:75 (discriminator 1) + 8332: 00000617 auipc a2,0x0 8332: R_RISCV_PCREL_HI20 .LC3 + 8332: R_RISCV_RELAX *ABS* + 8336: 00060613 mv a2,a2 8336: R_RISCV_PCREL_LO12_I .L0 + 8336: R_RISCV_RELAX *ABS* + 833a: 04b00593 li a1,75 + +000000000000833e <.LVL8>: + 833e: bf75 j 82fa <.L15> 833e: R_RISCV_RVC_JUMP .L15 + +0000000000008340 <.L6>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_extend.c:76 (discriminator 2) + DEBUGASSERT(MM_ALIGN_DOWN(blockend) == blockend); + 8340: ff07f913 andi s2,a5,-16 + 8344: 00f90963 beq s2,a5,8356 <.L7> 8344: R_RISCV_BRANCH .L7 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_extend.c:76 (discriminator 1) + 8348: 00000617 auipc a2,0x0 8348: R_RISCV_PCREL_HI20 .LC4 + 8348: R_RISCV_RELAX *ABS* + 834c: 00060613 mv a2,a2 834c: R_RISCV_PCREL_LO12_I .L0 + 834c: R_RISCV_RELAX *ABS* + 8350: 04c00593 li a1,76 + +0000000000008354 <.LVL10>: + 8354: b75d j 82fa <.L15> 8354: R_RISCV_RVC_JUMP .L15 + +0000000000008356 <.L7>: + 8356: 842a mv s0,a0 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_extend.c:80 (discriminator 2) + + /* Take the memory manager mutex */ + + DEBUGVERIFY(mm_lock(heap)); + 8358: 00000097 auipc ra,0x0 8358: R_RISCV_CALL mm_lock + 8358: R_RISCV_RELAX *ABS* + 835c: 000080e7 jalr ra # 8358 <.L7+0x2> + +0000000000008360 <.LVL12>: + 8360: 00055963 bgez a0,8372 <.L8> 8360: R_RISCV_BRANCH .L8 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_extend.c:80 (discriminator 1) + 8364: 00000617 auipc a2,0x0 8364: R_RISCV_PCREL_HI20 .LC5 + 8364: R_RISCV_RELAX *ABS* + 8368: 00060613 mv a2,a2 8368: R_RISCV_PCREL_LO12_I .L0 + 8368: R_RISCV_RELAX *ABS* + 836c: 05000593 li a1,80 + 8370: b769 j 82fa <.L15> 8370: R_RISCV_RVC_JUMP .L15 + +0000000000008372 <.L8>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_extend.c:86 (discriminator 2) + + /* Get the terminal node in the old heap. The block to extend must + * immediately follow this node. + */ + + oldnode = heap->mm_heapend[region]; + 8372: 6038 ld a4,64(s0) + +0000000000008374 <.LVL13>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_extend.c:87 (discriminator 2) + DEBUGASSERT((uintptr_t)oldnode + MM_SIZEOF_ALLOCNODE == blockstart); + 8374: 01070593 addi a1,a4,16 + 8378: 01358963 beq a1,s3,838a <.L9> 8378: R_RISCV_BRANCH .L9 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_extend.c:87 (discriminator 1) + 837c: 00000617 auipc a2,0x0 837c: R_RISCV_PCREL_HI20 .LC6 + 837c: R_RISCV_RELAX *ABS* + 8380: 00060613 mv a2,a2 8380: R_RISCV_PCREL_LO12_I .L0 + 8380: R_RISCV_RELAX *ABS* + 8384: 05700593 li a1,87 + 8388: bf8d j 82fa <.L15> 8388: R_RISCV_RVC_JUMP .L15 + +000000000000838a <.L9>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_extend.c:95 (discriminator 2) + * This is the old size (MM_SIZEOF_ALLOCNODE) plus the size of + * the block (size) minus the size of the new terminal node + * (MM_SIZEOF_ALLOCNODE) or simply: + */ + + oldnode->size = size | (oldnode->size & MM_MASK_BIT); + 838a: 671c ld a5,8(a4) + 838c: 8b8d andi a5,a5,3 + 838e: 8fc5 or a5,a5,s1 + 8390: e71c sd a5,8(a4) +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_extend.c:99 (discriminator 2) + + /* The old node should already be marked as allocated */ + + DEBUGASSERT(MM_NODE_IS_ALLOC(oldnode)); + 8392: 8b85 andi a5,a5,1 + 8394: eb81 bnez a5,83a4 <.L10> 8394: R_RISCV_RVC_BRANCH .L10 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_extend.c:99 (discriminator 1) + 8396: 00000617 auipc a2,0x0 8396: R_RISCV_PCREL_HI20 .LC7 + 8396: R_RISCV_RELAX *ABS* + 839a: 00060613 mv a2,a2 839a: R_RISCV_PCREL_LO12_I .L0 + 839a: R_RISCV_RELAX *ABS* + 839e: 06300593 li a1,99 + 83a2: bfa1 j 82fa <.L15> 83a2: R_RISCV_RVC_JUMP .L15 + +00000000000083a4 <.L10>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_extend.c:104 (discriminator 2) + + /* Get and initialize the new terminal node in the heap */ + + newnode = (FAR struct mm_allocnode_s *) + (blockend - MM_SIZEOF_ALLOCNODE); + 83a4: 1941 addi s2,s2,-16 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_extend.c:105 (discriminator 2) + newnode->size = MM_SIZEOF_ALLOCNODE | MM_ALLOC_BIT; + 83a6: 47c5 li a5,17 + 83a8: 00f93423 sd a5,8(s2) +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_extend.c:111 (discriminator 2) + + heap->mm_heapend[region] = newnode; + + /* Finally, increase the total heap size accordingly */ + + heap->mm_heapsize += size; + 83ac: 7010 ld a2,32(s0) +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_extend.c:107 (discriminator 2) + heap->mm_heapend[region] = newnode; + 83ae: 05243023 sd s2,64(s0) +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_extend.c:112 (discriminator 2) + mm_unlock(heap); + 83b2: 8522 mv a0,s0 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_extend.c:111 (discriminator 2) + heap->mm_heapsize += size; + 83b4: 94b2 add s1,s1,a2 + +00000000000083b6 <.LVL14>: + 83b6: f004 sd s1,32(s0) + 83b8: e42e sd a1,8(sp) + +00000000000083ba <.LVL15>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_extend.c:112 (discriminator 2) + mm_unlock(heap); + 83ba: 00000097 auipc ra,0x0 83ba: R_RISCV_CALL mm_unlock + 83ba: R_RISCV_RELAX *ABS* + 83be: 000080e7 jalr ra # 83ba <.LVL15> + +00000000000083c2 <.LVL16>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_extend.c:118 (discriminator 2) + + /* Finally "free" the new block of memory where the old terminal node was + * located. + */ + + mm_free(heap, mem); + 83c2: 8522 mv a0,s0 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_extend.c:119 (discriminator 2) +} + 83c4: 7442 ld s0,48(sp) + +00000000000083c6 <.LVL17>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_extend.c:118 (discriminator 2) + mm_free(heap, mem); + 83c6: 65a2 ld a1,8(sp) +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_extend.c:119 (discriminator 2) +} + 83c8: 70e2 ld ra,56(sp) + 83ca: 74a2 ld s1,40(sp) + 83cc: 7902 ld s2,32(sp) + +00000000000083ce <.LVL18>: + 83ce: 69e2 ld s3,24(sp) + 83d0: 6121 addi sp,sp,64 + +00000000000083d2 <.LVL19>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_extend.c:118 (discriminator 2) + mm_free(heap, mem); + 83d2: 00000317 auipc t1,0x0 83d2: R_RISCV_CALL mm_free + 83d2: R_RISCV_RELAX *ABS* + 83d6: 00030067 jr t1 # 83d2 <.LVL19> + +00000000000083da : +mm_delayfree(): +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_free.c:74 + * Delay free memory if `delay` is true, otherwise free it immediately. + * + ****************************************************************************/ + +void mm_delayfree(FAR struct mm_heap_s *heap, FAR void *mem, bool delay) +{ + 83da: 1101 addi sp,sp,-32 + 83dc: e822 sd s0,16(sp) + 83de: e426 sd s1,8(sp) + 83e0: e04a sd s2,0(sp) + 83e2: ec06 sd ra,24(sp) + 83e4: 84aa mv s1,a0 + 83e6: 842e mv s0,a1 + 83e8: 8932 mv s2,a2 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_free.c:81 + FAR struct mm_freenode_s *prev; + FAR struct mm_freenode_s *next; + size_t nodesize; + size_t prevsize; + + if (mm_lock(heap) < 0) + 83ea: 00000097 auipc ra,0x0 83ea: R_RISCV_CALL mm_lock + 83ea: R_RISCV_RELAX *ABS* + 83ee: 000080e7 jalr ra # 83ea + +00000000000083f2 <.LVL1>: + 83f2: 12054963 bltz a0,8524 <.L1> 83f2: R_RISCV_BRANCH .L1 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_free.c:98 + memset(mem, 0x55, mm_malloc_size(heap, mem)); +#endif + + kasan_poison(mem, mm_malloc_size(heap, mem)); + + if (delay) + 83f6: 00090c63 beqz s2,840e <.L3> 83f6: R_RISCV_BRANCH .L3 + +00000000000083fa <.L30>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_free.c:196 + + /* Add the merged node to the nodelist */ + + mm_addfreechunk(heap, node); + mm_unlock(heap); +} + 83fa: 6442 ld s0,16(sp) + +00000000000083fc <.LVL2>: + 83fc: 60e2 ld ra,24(sp) + 83fe: 6902 ld s2,0(sp) + +0000000000008400 <.LBB16>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_free.c:195 + mm_unlock(heap); + 8400: 8526 mv a0,s1 + +0000000000008402 <.LBE16>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_free.c:196 +} + 8402: 64a2 ld s1,8(sp) + +0000000000008404 <.LVL3>: + 8404: 6105 addi sp,sp,32 + +0000000000008406 <.LBB17>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_free.c:195 + mm_unlock(heap); + 8406: 00000317 auipc t1,0x0 8406: R_RISCV_CALL mm_unlock + 8406: R_RISCV_RELAX *ABS* + 840a: 00030067 jr t1 # 8406 <.LBB17> + +000000000000840e <.L3>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_free.c:108 + nodesize = MM_SIZEOF_NODE(node); + 840e: ff843783 ld a5,-8(s0) +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_free.c:107 + node = (FAR struct mm_freenode_s *)((FAR char *)mem - MM_SIZEOF_ALLOCNODE); + 8412: ff040593 addi a1,s0,-16 + +0000000000008416 <.LVL5>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_free.c:112 + DEBUGASSERT(MM_NODE_IS_ALLOC(node)); + 8416: 0017f693 andi a3,a5,1 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_free.c:108 + nodesize = MM_SIZEOF_NODE(node); + 841a: ffc7f713 andi a4,a5,-4 + +000000000000841e <.LVL6>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_free.c:112 + DEBUGASSERT(MM_NODE_IS_ALLOC(node)); + 841e: ee99 bnez a3,843c <.L4> 841e: R_RISCV_RVC_BRANCH .L4 + 8420: 00000617 auipc a2,0x0 8420: R_RISCV_PCREL_HI20 .LC0 + 8420: R_RISCV_RELAX *ABS* + 8424: 00060613 mv a2,a2 8424: R_RISCV_PCREL_LO12_I .L0 + 8424: R_RISCV_RELAX *ABS* + 8428: 07000593 li a1,112 + +000000000000842c <.L31>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_free.c:177 + DEBUGASSERT(prev->blink); + 842c: 00000517 auipc a0,0x0 842c: R_RISCV_PCREL_HI20 .LC1 + 842c: R_RISCV_RELAX *ABS* + 8430: 00050513 mv a0,a0 8430: R_RISCV_PCREL_LO12_I .L0 + 8430: R_RISCV_RELAX *ABS* + 8434: 00000097 auipc ra,0x0 8434: R_RISCV_CALL __assert + 8434: R_RISCV_RELAX *ABS* + 8438: 000080e7 jalr ra # 8434 <.L31+0x8> + +000000000000843c <.L4>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_free.c:114 + node->size &= ~MM_ALLOC_BIT; + 843c: 9bf9 andi a5,a5,-2 + 843e: fef43c23 sd a5,-8(s0) +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_free.c:118 + heap->mm_curused -= nodesize; + 8442: 789c ld a5,48(s1) +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_free.c:122 + next = (FAR struct mm_freenode_s *)((FAR char *)node + nodesize); + 8444: 00e586b3 add a3,a1,a4 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_free.c:118 + heap->mm_curused -= nodesize; + 8448: 8f99 sub a5,a5,a4 + 844a: f89c sd a5,48(s1) + +000000000000844c <.LVL9>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_free.c:123 + DEBUGASSERT(MM_PREVNODE_IS_ALLOC(next)); + 844c: 669c ld a5,8(a3) + 844e: 0027f613 andi a2,a5,2 + 8452: ca01 beqz a2,8462 <.L5> 8452: R_RISCV_RVC_BRANCH .L5 + 8454: 00000617 auipc a2,0x0 8454: R_RISCV_PCREL_HI20 .LC2 + 8454: R_RISCV_RELAX *ABS* + 8458: 00060613 mv a2,a2 8458: R_RISCV_PCREL_LO12_I .L0 + 8458: R_RISCV_RELAX *ABS* + 845c: 07b00593 li a1,123 + +0000000000008460 <.LVL10>: + 8460: b7f1 j 842c <.L31> 8460: R_RISCV_RVC_JUMP .L31 + +0000000000008462 <.L5>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_free.c:124 + if (MM_NODE_IS_FREE(next)) + 8462: 0017f613 andi a2,a5,1 + 8466: ee3d bnez a2,84e4 <.L6> 8466: R_RISCV_RVC_BRANCH .L6 + +0000000000008468 <.LBB13>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_free.c:127 + size_t nextsize = MM_SIZEOF_NODE(next); + 8468: 9bf1 andi a5,a5,-4 + +000000000000846a <.LVL12>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_free.c:134 + andbeyond = (FAR struct mm_allocnode_s *)((FAR char *)next + nextsize); + 846a: 00f68633 add a2,a3,a5 + +000000000000846e <.LVL13>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_free.c:135 + DEBUGASSERT(MM_PREVNODE_IS_FREE(andbeyond) && + 846e: 6608 ld a0,8(a2) + 8470: 8909 andi a0,a0,2 + 8472: c501 beqz a0,847a <.L7> 8472: R_RISCV_RVC_BRANCH .L7 + 8474: 6208 ld a0,0(a2) + 8476: 00a78963 beq a5,a0,8488 <.L8> 8476: R_RISCV_BRANCH .L8 + +000000000000847a <.L7>: + 847a: 00000617 auipc a2,0x0 847a: R_RISCV_PCREL_HI20 .LC3 + 847a: R_RISCV_RELAX *ABS* + 847e: 00060613 mv a2,a2 847e: R_RISCV_PCREL_LO12_I .L0 + 847e: R_RISCV_RELAX *ABS* + +0000000000008482 <.LVL14>: + 8482: 08700593 li a1,135 + +0000000000008486 <.LVL15>: + 8486: b75d j 842c <.L31> 8486: R_RISCV_RVC_JUMP .L31 + +0000000000008488 <.L8>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_free.c:142 + DEBUGASSERT(next->blink); + 8488: 0186b803 ld a6,24(a3) # 80da <.L4+0x2> + 848c: 00081963 bnez a6,849e <.L9> 848c: R_RISCV_BRANCH .L9 + 8490: 00000617 auipc a2,0x0 8490: R_RISCV_PCREL_HI20 .LC4 + 8490: R_RISCV_RELAX *ABS* + 8494: 00060613 mv a2,a2 8494: R_RISCV_PCREL_LO12_I .L0 + 8494: R_RISCV_RELAX *ABS* + +0000000000008498 <.LVL17>: + 8498: 08e00593 li a1,142 + +000000000000849c <.LVL18>: + 849c: bf41 j 842c <.L31> 849c: R_RISCV_RVC_JUMP .L31 + +000000000000849e <.L9>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_free.c:143 + next->blink->flink = next->flink; + 849e: 6a88 ld a0,16(a3) + 84a0: 00a83823 sd a0,16(a6) # 74dc <.LVL116+0x18> +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_free.c:144 + if (next->flink) + 84a4: c119 beqz a0,84aa <.L10> 84a4: R_RISCV_RVC_BRANCH .L10 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_free.c:146 + next->flink->blink = next->blink; + 84a6: 6e94 ld a3,24(a3) + +00000000000084a8 <.LVL20>: + 84a8: ed14 sd a3,24(a0) + +00000000000084aa <.L10>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_free.c:151 + nodesize += nextsize; + 84aa: 973e add a4,a4,a5 + +00000000000084ac <.LVL21>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_free.c:152 + node->size = nodesize | (node->size & MM_MASK_BIT); + 84ac: ff843783 ld a5,-8(s0) + +00000000000084b0 <.LVL22>: + 84b0: 8b8d andi a5,a5,3 + 84b2: 8fd9 or a5,a5,a4 + 84b4: fef43c23 sd a5,-8(s0) +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_free.c:153 + andbeyond->preceding = nodesize; + 84b8: e218 sd a4,0(a2) + +00000000000084ba <.L11>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_free.c:166 + if (MM_PREVNODE_IS_FREE(node)) + 84ba: ff843783 ld a5,-8(s0) + 84be: 8b89 andi a5,a5,2 + 84c0: cfa1 beqz a5,8518 <.L12> 84c0: R_RISCV_RVC_BRANCH .L12 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_free.c:169 + ((FAR char *)node - node->preceding); + 84c2: ff043503 ld a0,-16(s0) +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_free.c:168 + prev = (FAR struct mm_freenode_s *) + 84c6: 8d89 sub a1,a1,a0 + +00000000000084c8 <.LVL24>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_free.c:170 + prevsize = MM_SIZEOF_NODE(prev); + 84c8: 6594 ld a3,8(a1) + 84ca: ffc6f793 andi a5,a3,-4 + +00000000000084ce <.LVL25>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_free.c:171 + DEBUGASSERT(MM_NODE_IS_FREE(prev) && node->preceding == prevsize); + 84ce: 8a85 andi a3,a3,1 + 84d0: e299 bnez a3,84d6 <.L13> 84d0: R_RISCV_RVC_BRANCH .L13 + 84d2: 00f50f63 beq a0,a5,84f0 <.L14> 84d2: R_RISCV_BRANCH .L14 + +00000000000084d6 <.L13>: + 84d6: 00000617 auipc a2,0x0 84d6: R_RISCV_PCREL_HI20 .LC5 + 84d6: R_RISCV_RELAX *ABS* + 84da: 00060613 mv a2,a2 84da: R_RISCV_PCREL_LO12_I .L0 + 84da: R_RISCV_RELAX *ABS* + +00000000000084de <.LVL26>: + 84de: 0ab00593 li a1,171 + +00000000000084e2 <.LVL27>: + 84e2: b7a9 j 842c <.L31> 84e2: R_RISCV_RVC_JUMP .L31 + +00000000000084e4 <.L6>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_free.c:158 + next->size |= MM_PREVFREE_BIT; + 84e4: 0027e793 ori a5,a5,2 + 84e8: e69c sd a5,8(a3) +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_free.c:159 + next->preceding = nodesize; + 84ea: e298 sd a4,0(a3) + 84ec: 8636 mv a2,a3 + 84ee: b7f1 j 84ba <.L11> 84ee: R_RISCV_RVC_JUMP .L11 + +00000000000084f0 <.L14>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_free.c:177 + DEBUGASSERT(prev->blink); + 84f0: 6d88 ld a0,24(a1) + 84f2: e901 bnez a0,8502 <.L15> 84f2: R_RISCV_RVC_BRANCH .L15 + 84f4: 00000617 auipc a2,0x0 84f4: R_RISCV_PCREL_HI20 .LC6 + 84f4: R_RISCV_RELAX *ABS* + 84f8: 00060613 mv a2,a2 84f8: R_RISCV_PCREL_LO12_I .L0 + 84f8: R_RISCV_RELAX *ABS* + +00000000000084fc <.LVL30>: + 84fc: 0b100593 li a1,177 + +0000000000008500 <.LVL31>: + 8500: b735 j 842c <.L31> 8500: R_RISCV_RVC_JUMP .L31 + +0000000000008502 <.L15>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_free.c:178 + prev->blink->flink = prev->flink; + 8502: 6994 ld a3,16(a1) + 8504: e914 sd a3,16(a0) +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_free.c:179 + if (prev->flink) + 8506: c299 beqz a3,850c <.L16> 8506: R_RISCV_RVC_BRANCH .L16 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_free.c:181 + prev->flink->blink = prev->blink; + 8508: 6d88 ld a0,24(a1) + 850a: ee88 sd a0,24(a3) + +000000000000850c <.L16>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_free.c:186 + prevsize += nodesize; + 850c: 973e add a4,a4,a5 + +000000000000850e <.LVL33>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_free.c:187 + prev->size = prevsize | (prev->size & MM_MASK_BIT); + 850e: 659c ld a5,8(a1) + 8510: 8b8d andi a5,a5,3 + 8512: 8fd9 or a5,a5,a4 + 8514: e59c sd a5,8(a1) +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_free.c:188 + next->preceding = prevsize; + 8516: e218 sd a4,0(a2) + +0000000000008518 <.L12>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_free.c:194 + mm_addfreechunk(heap, node); + 8518: 8526 mv a0,s1 + 851a: 00000097 auipc ra,0x0 851a: R_RISCV_CALL mm_addfreechunk + 851a: R_RISCV_RELAX *ABS* + 851e: 000080e7 jalr ra # 851a <.L12+0x2> + +0000000000008522 <.LVL35>: + 8522: bde1 j 83fa <.L30> 8522: R_RISCV_RVC_JUMP .L30 + +0000000000008524 <.L1>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_free.c:196 +} + 8524: 60e2 ld ra,24(sp) + 8526: 6442 ld s0,16(sp) + +0000000000008528 <.LVL37>: + 8528: 64a2 ld s1,8(sp) + +000000000000852a <.LVL38>: + 852a: 6902 ld s2,0(sp) + 852c: 6105 addi sp,sp,32 + 852e: 8082 ret + +0000000000008530 : +mm_free(): +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_free.c:213 +{ + minfo("Freeing %p\n", mem); + + /* Protect against attempts to free a NULL reference */ + + if (mem == NULL) + 8530: c5a9 beqz a1,857a <.L32> 8530: R_RISCV_RVC_BRANCH .L32 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_free.c:208 +{ + 8532: 1101 addi sp,sp,-32 + 8534: e822 sd s0,16(sp) + 8536: e426 sd s1,8(sp) + 8538: ec06 sd ra,24(sp) + 853a: 84aa mv s1,a0 + 853c: 842e mv s0,a1 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_free.c:218 + { + return; + } + + DEBUGASSERT(mm_heapmember(heap, mem)); + 853e: 00000097 auipc ra,0x0 853e: R_RISCV_CALL mm_heapmember + 853e: R_RISCV_RELAX *ABS* + 8542: 000080e7 jalr ra # 853e + +0000000000008546 <.LVL40>: + 8546: ed19 bnez a0,8564 <.L34> 8546: R_RISCV_RVC_BRANCH .L34 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_free.c:218 (discriminator 1) + 8548: 00000617 auipc a2,0x0 8548: R_RISCV_PCREL_HI20 .LC7 + 8548: R_RISCV_RELAX *ABS* + 854c: 00060613 mv a2,a2 854c: R_RISCV_PCREL_LO12_I .L0 + 854c: R_RISCV_RELAX *ABS* + 8550: 0da00593 li a1,218 + 8554: 00000517 auipc a0,0x0 8554: R_RISCV_PCREL_HI20 .LC1 + 8554: R_RISCV_RELAX *ABS* + 8558: 00050513 mv a0,a0 8558: R_RISCV_PCREL_LO12_I .L0 + 8558: R_RISCV_RELAX *ABS* + 855c: 00000097 auipc ra,0x0 855c: R_RISCV_CALL __assert + 855c: R_RISCV_RELAX *ABS* + 8560: 000080e7 jalr ra # 855c <.LVL40+0x16> + +0000000000008564 <.L34>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_free.c:227 (discriminator 2) + { + return; + } +#endif + + mm_delayfree(heap, mem, CONFIG_MM_FREE_DELAYCOUNT_MAX > 0); + 8564: 85a2 mv a1,s0 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_free.c:228 (discriminator 2) +} + 8566: 6442 ld s0,16(sp) + +0000000000008568 <.LVL42>: + 8568: 60e2 ld ra,24(sp) +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_free.c:227 (discriminator 2) + mm_delayfree(heap, mem, CONFIG_MM_FREE_DELAYCOUNT_MAX > 0); + 856a: 8526 mv a0,s1 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_free.c:228 (discriminator 2) +} + 856c: 64a2 ld s1,8(sp) + +000000000000856e <.LVL43>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_free.c:227 (discriminator 2) + mm_delayfree(heap, mem, CONFIG_MM_FREE_DELAYCOUNT_MAX > 0); + 856e: 4601 li a2,0 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_free.c:228 (discriminator 2) +} + 8570: 6105 addi sp,sp,32 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_free.c:227 (discriminator 2) + mm_delayfree(heap, mem, CONFIG_MM_FREE_DELAYCOUNT_MAX > 0); + 8572: 00000317 auipc t1,0x0 8572: R_RISCV_CALL mm_delayfree + 8572: R_RISCV_RELAX *ABS* + 8576: 00030067 jr t1 # 8572 <.LVL43+0x4> + +000000000000857a <.L32>: + 857a: 8082 ret + +000000000000857c : +mm_memalign(): +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_memalign.c:63 + size_t allocsize; + size_t newsize; + + /* Make sure that alignment is less than half max size_t */ + + if (alignment >= (SIZE_MAX / 2)) + 857c: 5775 li a4,-3 + 857e: 8305 srli a4,a4,0x1 + 8580: 00b77f63 bgeu a4,a1,859e <.L2> 8580: R_RISCV_BRANCH .L2 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_memalign.c:65 + { + return NULL; + 8584: 4501 li a0,0 + +0000000000008586 <.LVL1>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_memalign.c:279 + kasan_unpoison((FAR void *)alignedchunk, + mm_malloc_size(heap, (FAR void *)alignedchunk)); + + DEBUGASSERT(alignedchunk % alignment == 0); + return (FAR void *)alignedchunk; +} + 8586: 8082 ret + +0000000000008588 <.L4>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_memalign.c:65 + return NULL; + 8588: 4501 li a0,0 + +000000000000858a <.L1>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_memalign.c:279 +} + 858a: 60a6 ld ra,72(sp) + 858c: 6406 ld s0,64(sp) + 858e: 74e2 ld s1,56(sp) + 8590: 7942 ld s2,48(sp) + 8592: 79a2 ld s3,40(sp) + 8594: 7a02 ld s4,32(sp) + 8596: 6ae2 ld s5,24(sp) + 8598: 6b42 ld s6,16(sp) + 859a: 6161 addi sp,sp,80 + 859c: 8082 ret + +000000000000859e <.L2>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_memalign.c:53 +{ + 859e: 715d addi sp,sp,-80 + 85a0: f84a sd s2,48(sp) +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_memalign.c:70 + if ((alignment & -alignment) != alignment) + 85a2: 40b00933 neg s2,a1 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_memalign.c:53 +{ + 85a6: e486 sd ra,72(sp) + 85a8: e0a2 sd s0,64(sp) + 85aa: fc26 sd s1,56(sp) + 85ac: f44e sd s3,40(sp) + 85ae: f052 sd s4,32(sp) + 85b0: ec56 sd s5,24(sp) + 85b2: e85a sd s6,16(sp) +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_memalign.c:70 + if ((alignment & -alignment) != alignment) + 85b4: 00b97933 and s2,s2,a1 + 85b8: fcb918e3 bne s2,a1,8588 <.L4> 85b8: R_RISCV_BRANCH .L4 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_memalign.c:87 + if (alignment <= MM_ALIGN) + 85bc: 47c1 li a5,16 + 85be: 85b2 mv a1,a2 + +00000000000085c0 <.LVL4>: + 85c0: 0327e863 bltu a5,s2,85f0 <.L5> 85c0: R_RISCV_BRANCH .L5 + +00000000000085c4 <.LBB2>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_memalign.c:89 + FAR void *ptr = mm_malloc(heap, size); + 85c4: 00000097 auipc ra,0x0 85c4: R_RISCV_CALL mm_malloc + 85c4: R_RISCV_RELAX *ABS* + 85c8: 000080e7 jalr ra # 85c4 <.LBB2> + +00000000000085cc <.LVL6>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_memalign.c:90 + DEBUGASSERT(ptr == NULL || ((uintptr_t)ptr) % alignment == 0); + 85cc: dd55 beqz a0,8588 <.L4> 85cc: R_RISCV_RVC_BRANCH .L4 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_memalign.c:90 (discriminator 1) + 85ce: 032577b3 remu a5,a0,s2 + 85d2: dfc5 beqz a5,858a <.L1> 85d2: R_RISCV_RVC_BRANCH .L1 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_memalign.c:90 (discriminator 3) + 85d4: 00000617 auipc a2,0x0 85d4: R_RISCV_PCREL_HI20 .LC0 + 85d4: R_RISCV_RELAX *ABS* + 85d8: 00060613 mv a2,a2 85d8: R_RISCV_PCREL_LO12_I .L0 + 85d8: R_RISCV_RELAX *ABS* + 85dc: 05a00593 li a1,90 + 85e0: 00000517 auipc a0,0x0 85e0: R_RISCV_PCREL_HI20 .LC1 + 85e0: R_RISCV_RELAX *ABS* + 85e4: 00050513 mv a0,a0 85e4: R_RISCV_PCREL_LO12_I .L0 + 85e4: R_RISCV_RELAX *ABS* + +00000000000085e8 <.LVL7>: + 85e8: 00000097 auipc ra,0x0 85e8: R_RISCV_CALL __assert + 85e8: R_RISCV_RELAX *ABS* + 85ec: 000080e7 jalr ra # 85e8 <.LVL7> + +00000000000085f0 <.L5>: + 85f0: 02000793 li a5,32 + 85f4: 89aa mv s3,a0 + +00000000000085f6 <.LBE2>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_memalign.c:93 + else if (alignment < MM_MIN_CHUNK) + 85f6: 00f97463 bgeu s2,a5,85fe <.L6> 85f6: R_RISCV_BRANCH .L6 + 85fa: 02000913 li s2,32 + +00000000000085fe <.L6>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_memalign.c:112 + if (size < MM_MIN_CHUNK - MM_ALLOCNODE_OVERHEAD) + 85fe: 47e1 li a5,24 + 8600: 84ae mv s1,a1 + 8602: 00f5f363 bgeu a1,a5,8608 <.L7> 8602: R_RISCV_BRANCH .L7 + +0000000000008606 <.LVL10>: + 8606: 44e1 li s1,24 + +0000000000008608 <.L7>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_memalign.c:117 + newsize = MM_ALIGN_UP(size); /* Make multiples of our granule size */ + 8608: 00f48793 addi a5,s1,15 + 860c: 9bc1 andi a5,a5,-16 + +000000000000860e <.LVL12>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_memalign.c:118 + allocsize = newsize + 2 * alignment; /* Add double full alignment size */ + 860e: 00191b13 slli s6,s2,0x1 + 8612: 9b3e add s6,s6,a5 + +0000000000008614 <.LVL13>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_memalign.c:120 + if (newsize < size || allocsize < newsize) + 8614: f697eae3 bltu a5,s1,8588 <.L4> 8614: R_RISCV_BRANCH .L4 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_memalign.c:120 (discriminator 1) + 8618: f6fb68e3 bltu s6,a5,8588 <.L4> 8618: R_RISCV_BRANCH .L4 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_memalign.c:129 + rawchunk = (uintptr_t)mm_malloc(heap, allocsize); + 861c: 85da mv a1,s6 + 861e: 854e mv a0,s3 + +0000000000008620 <.LVL14>: + 8620: 00000097 auipc ra,0x0 8620: R_RISCV_CALL mm_malloc + 8620: R_RISCV_RELAX *ABS* + 8624: 000080e7 jalr ra # 8620 <.LVL14> + +0000000000008628 <.LVL15>: + 8628: 8a2a mv s4,a0 + +000000000000862a <.LVL16>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_memalign.c:130 + if (rawchunk == 0) + 862a: dd39 beqz a0,8588 <.L4> 862a: R_RISCV_RVC_BRANCH .L4 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_memalign.c:142 + DEBUGVERIFY(mm_lock(heap)); + 862c: 854e mv a0,s3 + +000000000000862e <.LVL17>: + 862e: 00000097 auipc ra,0x0 862e: R_RISCV_CALL mm_lock + 862e: R_RISCV_RELAX *ABS* + 8632: 000080e7 jalr ra # 862e <.LVL17> + +0000000000008636 <.LVL18>: + 8636: 02055063 bgez a0,8656 <.L8> 8636: R_RISCV_BRANCH .L8 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_memalign.c:142 (discriminator 1) + 863a: 00000617 auipc a2,0x0 863a: R_RISCV_PCREL_HI20 .LC2 + 863a: R_RISCV_RELAX *ABS* + 863e: 00060613 mv a2,a2 863e: R_RISCV_PCREL_LO12_I .L0 + 863e: R_RISCV_RELAX *ABS* + 8642: 08e00593 li a1,142 + 8646: 00000517 auipc a0,0x0 8646: R_RISCV_PCREL_HI20 .LC1 + 8646: R_RISCV_RELAX *ABS* + 864a: 00050513 mv a0,a0 864a: R_RISCV_PCREL_LO12_I .L0 + 864a: R_RISCV_RELAX *ABS* + 864e: 00000097 auipc ra,0x0 864e: R_RISCV_CALL __assert + 864e: R_RISCV_RELAX *ABS* + 8652: 000080e7 jalr ra # 864e <.LVL18+0x18> + +0000000000008656 <.L8>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_memalign.c:98 (discriminator 2) + mask = alignment - 1; + 8656: fff90413 addi s0,s2,-1 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_memalign.c:152 (discriminator 2) + alignedchunk = (rawchunk + mask) & ~mask; + 865a: 9452 add s0,s0,s4 + 865c: 41200533 neg a0,s2 + 8660: 8c69 and s0,s0,a0 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_memalign.c:148 (discriminator 2) + node = (FAR struct mm_allocnode_s *)(rawchunk - MM_SIZEOF_ALLOCNODE); + 8662: ff0a0593 addi a1,s4,-16 # 7bfe + +0000000000008666 <.LVL20>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_memalign.c:156 (discriminator 2) + if (alignedchunk != rawchunk) + 8666: 088a0263 beq s4,s0,86ea <.L9> 8666: R_RISCV_BRANCH .L9 + +000000000000866a <.LBB3>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_memalign.c:166 + ((FAR char *)node + MM_SIZEOF_NODE(node)); + 866a: 6594 ld a3,8(a1) +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_memalign.c:175 + precedingsize = (uintptr_t)newnode - (uintptr_t)node; + 866c: 414407b3 sub a5,s0,s4 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_memalign.c:185 + if (precedingsize < MM_MIN_CHUNK) + 8670: 467d li a2,31 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_memalign.c:166 + ((FAR char *)node + MM_SIZEOF_NODE(node)); + 8672: ffc6f713 andi a4,a3,-4 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_memalign.c:165 + next = (FAR struct mm_allocnode_s *) + 8676: 972e add a4,a4,a1 + +0000000000008678 <.LVL21>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_memalign.c:169 + (alignedchunk - MM_SIZEOF_ALLOCNODE); + 8678: ff040a93 addi s5,s0,-16 + +000000000000867c <.LVL22>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_memalign.c:185 + if (precedingsize < MM_MIN_CHUNK) + 867c: 00f66763 bltu a2,a5,868a <.L11> 867c: R_RISCV_BRANCH .L11 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_memalign.c:187 + alignedchunk += alignment; + 8680: 944a add s0,s0,s2 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_memalign.c:189 + (alignedchunk - MM_SIZEOF_ALLOCNODE); + 8682: ff040a93 addi s5,s0,-16 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_memalign.c:190 + precedingsize = (uintptr_t)newnode - (uintptr_t)node; + 8686: 414407b3 sub a5,s0,s4 + +000000000000868a <.L11>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_memalign.c:197 + if (MM_PREVNODE_IS_FREE(node)) + 868a: 8a89 andi a3,a3,2 + 868c: ce85 beqz a3,86c4 <.L12> 868c: R_RISCV_RVC_BRANCH .L12 + +000000000000868e <.LBB4>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_memalign.c:199 + FAR struct mm_freenode_s *prev = + 868e: ff0a3683 ld a3,-16(s4) + 8692: 8d95 sub a1,a1,a3 + +0000000000008694 <.LVL26>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_memalign.c:206 + DEBUGASSERT(prev->blink); + 8694: 6d90 ld a2,24(a1) + 8696: ee19 bnez a2,86b4 <.L13> 8696: R_RISCV_RVC_BRANCH .L13 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_memalign.c:206 (discriminator 1) + 8698: 00000617 auipc a2,0x0 8698: R_RISCV_PCREL_HI20 .LC3 + 8698: R_RISCV_RELAX *ABS* + 869c: 00060613 mv a2,a2 869c: R_RISCV_PCREL_LO12_I .L0 + 869c: R_RISCV_RELAX *ABS* + 86a0: 0ce00593 li a1,206 + +00000000000086a4 <.LVL27>: + 86a4: 00000517 auipc a0,0x0 86a4: R_RISCV_PCREL_HI20 .LC1 + 86a4: R_RISCV_RELAX *ABS* + 86a8: 00050513 mv a0,a0 86a8: R_RISCV_PCREL_LO12_I .L0 + 86a8: R_RISCV_RELAX *ABS* + 86ac: 00000097 auipc ra,0x0 86ac: R_RISCV_CALL __assert + 86ac: R_RISCV_RELAX *ABS* + 86b0: 000080e7 jalr ra # 86ac <.LVL27+0x8> + +00000000000086b4 <.L13>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_memalign.c:207 (discriminator 2) + prev->blink->flink = prev->flink; + 86b4: 6994 ld a3,16(a1) + 86b6: ea14 sd a3,16(a2) +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_memalign.c:208 (discriminator 2) + if (prev->flink) + 86b8: c299 beqz a3,86be <.L14> 86b8: R_RISCV_RVC_BRANCH .L14 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_memalign.c:210 + prev->flink->blink = prev->blink; + 86ba: 6d90 ld a2,24(a1) + 86bc: ee90 sd a2,24(a3) + +00000000000086be <.L14>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_memalign.c:213 + precedingsize += MM_SIZEOF_NODE(prev); + 86be: 6594 ld a3,8(a1) + 86c0: 9af1 andi a3,a3,-4 + 86c2: 97b6 add a5,a5,a3 + +00000000000086c4 <.L12>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_memalign.c:221 + newnodesize = (uintptr_t)next - (uintptr_t)newnode; + 86c4: 41570b33 sub s6,a4,s5 + +00000000000086c8 <.LVL30>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_memalign.c:217 + node->size = precedingsize; + 86c8: e59c sd a5,8(a1) + +00000000000086ca <.LVL31>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_memalign.c:222 + newnode->size = newnodesize | MM_ALLOC_BIT | MM_PREVFREE_BIT; + 86ca: 003b6693 ori a3,s6,3 + 86ce: 00dab423 sd a3,8(s5) +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_memalign.c:223 + newnode->preceding = precedingsize; + 86d2: 00fab023 sd a5,0(s5) +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_memalign.c:227 + next->size &= ~MM_PREVFREE_BIT; + 86d6: 671c ld a5,8(a4) + +00000000000086d8 <.LVL32>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_memalign.c:237 + mm_addfreechunk(heap, (FAR struct mm_freenode_s *)node); + 86d8: 854e mv a0,s3 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_memalign.c:233 + allocsize = newnodesize - MM_ALLOCNODE_OVERHEAD; + 86da: 1b61 addi s6,s6,-8 + +00000000000086dc <.LVL33>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_memalign.c:227 + next->size &= ~MM_PREVFREE_BIT; + 86dc: 9bf5 andi a5,a5,-3 + 86de: e71c sd a5,8(a4) + +00000000000086e0 <.LVL34>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_memalign.c:237 + mm_addfreechunk(heap, (FAR struct mm_freenode_s *)node); + 86e0: 00000097 auipc ra,0x0 86e0: R_RISCV_CALL mm_addfreechunk + 86e0: R_RISCV_RELAX *ABS* + 86e4: 000080e7 jalr ra # 86e0 <.LVL34> + +00000000000086e8 <.LVL35>: + 86e8: 85d6 mv a1,s5 + +00000000000086ea <.L9>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_memalign.c:251 + size = MM_ALIGN_UP(size + MM_ALLOCNODE_OVERHEAD); + 86ea: 01748613 addi a2,s1,23 + 86ee: 9a41 andi a2,a2,-16 + +00000000000086f0 <.LVL37>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_memalign.c:253 + if (allocsize > size) + 86f0: 01667963 bgeu a2,s6,8702 <.L15> 86f0: R_RISCV_BRANCH .L15 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_memalign.c:259 + mm_shrinkchunk(heap, node, size); + 86f4: 854e mv a0,s3 + 86f6: e42e sd a1,8(sp) + 86f8: 00000097 auipc ra,0x0 86f8: R_RISCV_CALL mm_shrinkchunk + 86f8: R_RISCV_RELAX *ABS* + 86fc: 000080e7 jalr ra # 86f8 <.LVL37+0x8> + +0000000000008700 <.LVL38>: + 8700: 65a2 ld a1,8(sp) + +0000000000008702 <.L15>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_memalign.c:264 + heap->mm_curused += MM_SIZEOF_NODE(node); + 8702: 659c ld a5,8(a1) + 8704: 0309b703 ld a4,48(s3) + 8708: 9bf1 andi a5,a5,-4 + 870a: 97ba add a5,a5,a4 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_memalign.c:265 + if (heap->mm_curused > heap->mm_maxused) + 870c: 0289b703 ld a4,40(s3) +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_memalign.c:264 + heap->mm_curused += MM_SIZEOF_NODE(node); + 8710: 02f9b823 sd a5,48(s3) +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_memalign.c:265 + if (heap->mm_curused > heap->mm_maxused) + 8714: 00f77463 bgeu a4,a5,871c <.L16> 8714: R_RISCV_BRANCH .L16 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_memalign.c:267 + heap->mm_maxused = heap->mm_curused; + 8718: 02f9b423 sd a5,40(s3) + +000000000000871c <.L16>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_memalign.c:270 + mm_unlock(heap); + 871c: 854e mv a0,s3 + 871e: 00000097 auipc ra,0x0 871e: R_RISCV_CALL mm_unlock + 871e: R_RISCV_RELAX *ABS* + 8722: 000080e7 jalr ra # 871e <.L16+0x2> + +0000000000008726 <.LVL40>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_memalign.c:277 + DEBUGASSERT(alignedchunk % alignment == 0); + 8726: 03247933 remu s2,s0,s2 + +000000000000872a <.LVL41>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_memalign.c:278 + return (FAR void *)alignedchunk; + 872a: 8522 mv a0,s0 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_memalign.c:277 + DEBUGASSERT(alignedchunk % alignment == 0); + 872c: e4090fe3 beqz s2,858a <.L1> 872c: R_RISCV_BRANCH .L1 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_memalign.c:277 (discriminator 1) + 8730: 00000617 auipc a2,0x0 8730: R_RISCV_PCREL_HI20 .LC4 + 8730: R_RISCV_RELAX *ABS* + 8734: 00060613 mv a2,a2 8734: R_RISCV_PCREL_LO12_I .L0 + 8734: R_RISCV_RELAX *ABS* + 8738: 11500593 li a1,277 + 873c: 00000517 auipc a0,0x0 873c: R_RISCV_PCREL_HI20 .LC1 + 873c: R_RISCV_RELAX *ABS* + 8740: 00050513 mv a0,a0 8740: R_RISCV_PCREL_LO12_I .L0 + 8740: R_RISCV_RELAX *ABS* + 8744: 00000097 auipc ra,0x0 8744: R_RISCV_CALL __assert + 8744: R_RISCV_RELAX *ABS* + 8748: 000080e7 jalr ra # 8744 <.LVL41+0x1a> + +000000000000874c : +mm_realloc(): +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:67 + * + ****************************************************************************/ + +FAR void *mm_realloc(FAR struct mm_heap_s *heap, FAR void *oldmem, + size_t size) +{ + 874c: 711d addi sp,sp,-96 + 874e: f852 sd s4,48(sp) + 8750: ec86 sd ra,88(sp) + 8752: e8a2 sd s0,80(sp) + 8754: e4a6 sd s1,72(sp) + 8756: e0ca sd s2,64(sp) + 8758: fc4e sd s3,56(sp) + 875a: f456 sd s5,40(sp) + 875c: f05a sd s6,32(sp) + 875e: ec5e sd s7,24(sp) + 8760: e862 sd s8,16(sp) + 8762: e466 sd s9,8(sp) + 8764: 8a32 mv s4,a2 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:79 + size_t nextsize = 0; + FAR void *newmem; + + /* If oldmem is NULL, then realloc is equivalent to malloc */ + + if (oldmem == NULL) + 8766: e195 bnez a1,878a <.L2> 8766: R_RISCV_RVC_BRANCH .L2 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:412 + mm_free(heap, oldmem); + } + + return newmem; + } +} + 8768: 6446 ld s0,80(sp) + 876a: 60e6 ld ra,88(sp) + 876c: 64a6 ld s1,72(sp) + 876e: 6906 ld s2,64(sp) + 8770: 79e2 ld s3,56(sp) + 8772: 7a42 ld s4,48(sp) + 8774: 7aa2 ld s5,40(sp) + 8776: 7b02 ld s6,32(sp) + 8778: 6be2 ld s7,24(sp) + 877a: 6c42 ld s8,16(sp) + 877c: 6ca2 ld s9,8(sp) +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:81 + return mm_malloc(heap, size); + 877e: 85b2 mv a1,a2 + +0000000000008780 <.LVL1>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:412 +} + 8780: 6125 addi sp,sp,96 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:81 + return mm_malloc(heap, size); + 8782: 00000317 auipc t1,0x0 8782: R_RISCV_CALL mm_malloc + 8782: R_RISCV_RELAX *ABS* + 8786: 00030067 jr t1 # 8782 <.LVL1+0x2> + +000000000000878a <.L2>: + 878a: 8aaa mv s5,a0 + 878c: 89ae mv s3,a1 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:84 + DEBUGASSERT(mm_heapmember(heap, oldmem)); + 878e: 00000097 auipc ra,0x0 878e: R_RISCV_CALL mm_heapmember + 878e: R_RISCV_RELAX *ABS* + 8792: 000080e7 jalr ra # 878e <.L2+0x4> + +0000000000008796 <.LVL3>: + 8796: ed19 bnez a0,87b4 <.L3> 8796: R_RISCV_RVC_BRANCH .L3 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:84 (discriminator 1) + 8798: 00000617 auipc a2,0x0 8798: R_RISCV_PCREL_HI20 .LC0 + 8798: R_RISCV_RELAX *ABS* + 879c: 00060613 mv a2,a2 879c: R_RISCV_PCREL_LO12_I .L0 + 879c: R_RISCV_RELAX *ABS* + 87a0: 05400593 li a1,84 + +00000000000087a4 <.L56>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:121 + DEBUGPANIC(); + 87a4: 00000517 auipc a0,0x0 87a4: R_RISCV_PCREL_HI20 .LC1 + 87a4: R_RISCV_RELAX *ABS* + 87a8: 00050513 mv a0,a0 87a8: R_RISCV_PCREL_LO12_I .L0 + 87a8: R_RISCV_RELAX *ABS* + 87ac: 00000097 auipc ra,0x0 87ac: R_RISCV_CALL __assert + 87ac: R_RISCV_RELAX *ABS* + 87b0: 000080e7 jalr ra # 87ac <.L56+0x8> + +00000000000087b4 <.L3>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:111 (discriminator 2) + if (size < MM_MIN_CHUNK - MM_ALLOCNODE_OVERHEAD) + 87b4: 47e1 li a5,24 + 87b6: 00fa7363 bgeu s4,a5,87bc <.L4> 87b6: R_RISCV_BRANCH .L4 + 87ba: 4a61 li s4,24 + +00000000000087bc <.L4>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:116 (discriminator 2) + newsize = MM_ALIGN_UP(size + MM_ALLOCNODE_OVERHEAD); + 87bc: 017a0913 addi s2,s4,23 + 87c0: ff097913 andi s2,s2,-16 + +00000000000087c4 <.LVL7>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:117 (discriminator 2) + if (newsize < size) + 87c4: 01497963 bgeu s2,s4,87d6 <.L5> 87c4: R_RISCV_BRANCH .L5 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:121 + DEBUGPANIC(); + 87c8: 00000617 auipc a2,0x0 87c8: R_RISCV_PCREL_HI20 .LC2 + 87c8: R_RISCV_RELAX *ABS* + 87cc: 00060613 mv a2,a2 87cc: R_RISCV_PCREL_LO12_I .L0 + 87cc: R_RISCV_RELAX *ABS* + 87d0: 07900593 li a1,121 + 87d4: bfc1 j 87a4 <.L56> 87d4: R_RISCV_RVC_JUMP .L56 + +00000000000087d6 <.L5>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:132 + DEBUGVERIFY(mm_lock(heap)); + 87d6: 8556 mv a0,s5 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:127 + oldnode = (FAR struct mm_allocnode_s *) + 87d8: ff098b13 addi s6,s3,-16 + +00000000000087dc <.LVL8>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:132 + DEBUGVERIFY(mm_lock(heap)); + 87dc: 00000097 auipc ra,0x0 87dc: R_RISCV_CALL mm_lock + 87dc: R_RISCV_RELAX *ABS* + 87e0: 000080e7 jalr ra # 87dc <.LVL8> + +00000000000087e4 <.LVL9>: + 87e4: 00055963 bgez a0,87f6 <.L6> 87e4: R_RISCV_BRANCH .L6 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:132 (discriminator 1) + 87e8: 00000617 auipc a2,0x0 87e8: R_RISCV_PCREL_HI20 .LC3 + 87e8: R_RISCV_RELAX *ABS* + 87ec: 00060613 mv a2,a2 87ec: R_RISCV_PCREL_LO12_I .L0 + 87ec: R_RISCV_RELAX *ABS* + 87f0: 08400593 li a1,132 + 87f4: bf45 j 87a4 <.L56> 87f4: R_RISCV_RVC_JUMP .L56 + +00000000000087f6 <.L6>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:133 (discriminator 2) + DEBUGASSERT(MM_NODE_IS_ALLOC(oldnode)); + 87f6: ff89b783 ld a5,-8(s3) + 87fa: fff7cb93 not s7,a5 + 87fe: 001bfb93 andi s7,s7,1 + 8802: 000b8963 beqz s7,8814 <.L7> 8802: R_RISCV_BRANCH .L7 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:133 (discriminator 1) + 8806: 00000617 auipc a2,0x0 8806: R_RISCV_PCREL_HI20 .LC4 + 8806: R_RISCV_RELAX *ABS* + 880a: 00060613 mv a2,a2 880a: R_RISCV_PCREL_LO12_I .L0 + 880a: R_RISCV_RELAX *ABS* + 880e: 08500593 li a1,133 + 8812: bf49 j 87a4 <.L56> 8812: R_RISCV_RVC_JUMP .L56 + +0000000000008814 <.L7>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:137 (discriminator 2) + oldsize = MM_SIZEOF_NODE(oldnode); + 8814: ffc7fc13 andi s8,a5,-4 + +0000000000008818 <.LVL10>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:138 (discriminator 2) + if (newsize <= oldsize) + 8818: 032c6f63 bltu s8,s2,8856 <.L8> 8818: R_RISCV_BRANCH .L8 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:144 + if (newsize < oldsize) + 881c: 01897963 bgeu s2,s8,882e <.L9> 881c: R_RISCV_BRANCH .L9 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:146 + mm_shrinkchunk(heap, oldnode, newsize); + 8820: 864a mv a2,s2 + 8822: 85da mv a1,s6 + 8824: 8556 mv a0,s5 + 8826: 00000097 auipc ra,0x0 8826: R_RISCV_CALL mm_shrinkchunk + 8826: R_RISCV_RELAX *ABS* + 882a: 000080e7 jalr ra # 8826 <.LVL10+0xe> + +000000000000882e <.L9>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:153 + mm_unlock(heap); + 882e: 8556 mv a0,s5 + 8830: 00000097 auipc ra,0x0 8830: R_RISCV_CALL mm_unlock + 8830: R_RISCV_RELAX *ABS* + 8834: 000080e7 jalr ra # 8830 <.L9+0x2> + +0000000000008838 <.LVL12>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:156 + return oldmem; + 8838: 8a4e mv s4,s3 + +000000000000883a <.L1>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:412 +} + 883a: 60e6 ld ra,88(sp) + 883c: 6446 ld s0,80(sp) + 883e: 64a6 ld s1,72(sp) + 8840: 6906 ld s2,64(sp) + 8842: 79e2 ld s3,56(sp) + +0000000000008844 <.LVL14>: + 8844: 7aa2 ld s5,40(sp) + +0000000000008846 <.LVL15>: + 8846: 7b02 ld s6,32(sp) + 8848: 6be2 ld s7,24(sp) + 884a: 6c42 ld s8,16(sp) + +000000000000884c <.LVL16>: + 884c: 6ca2 ld s9,8(sp) + 884e: 8552 mv a0,s4 + 8850: 7a42 ld s4,48(sp) + 8852: 6125 addi sp,sp,96 + 8854: 8082 ret + +0000000000008856 <.L8>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:164 + next = (FAR struct mm_freenode_s *)((FAR char *)oldnode + oldsize); + 8856: 018b0cb3 add s9,s6,s8 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:165 + if (MM_NODE_IS_FREE(next)) + 885a: 008cb483 ld s1,8(s9) # 7c34 <.L2> + 885e: 0014f713 andi a4,s1,1 + 8862: ef01 bnez a4,887a <.L33> 8862: R_RISCV_RVC_BRANCH .L33 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:167 + DEBUGASSERT(MM_PREVNODE_IS_ALLOC(next)); + 8864: 0024f713 andi a4,s1,2 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:168 + nextsize = MM_SIZEOF_NODE(next); + 8868: 98f1 andi s1,s1,-4 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:167 + DEBUGASSERT(MM_PREVNODE_IS_ALLOC(next)); + 886a: cb09 beqz a4,887c <.L11> 886a: R_RISCV_RVC_BRANCH .L11 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:167 (discriminator 1) + 886c: 00000617 auipc a2,0x0 886c: R_RISCV_PCREL_HI20 .LC5 + 886c: R_RISCV_RELAX *ABS* + 8870: 00060613 mv a2,a2 8870: R_RISCV_PCREL_LO12_I .L0 + 8870: R_RISCV_RELAX *ABS* + 8874: 0a700593 li a1,167 + 8878: b735 j 87a4 <.L56> 8878: R_RISCV_RVC_JUMP .L56 + +000000000000887a <.L33>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:74 + size_t nextsize = 0; + 887a: 4481 li s1,0 + +000000000000887c <.L11>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:171 + if (MM_PREVNODE_IS_FREE(oldnode)) + 887c: 8b89 andi a5,a5,2 + 887e: c38d beqz a5,88a0 <.L34> 887e: R_RISCV_RVC_BRANCH .L34 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:173 + prev = (FAR struct mm_freenode_s *) + 8880: ff09b703 ld a4,-16(s3) + 8884: 40eb05b3 sub a1,s6,a4 + +0000000000008888 <.LVL20>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:175 + DEBUGASSERT(MM_NODE_IS_FREE(prev)); + 8888: 659c ld a5,8(a1) + 888a: 0017f693 andi a3,a5,1 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:176 + prevsize = MM_SIZEOF_NODE(prev); + 888e: 9bf1 andi a5,a5,-4 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:175 + DEBUGASSERT(MM_NODE_IS_FREE(prev)); + 8890: ca89 beqz a3,88a2 <.L13> 8890: R_RISCV_RVC_BRANCH .L13 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:175 (discriminator 1) + 8892: 00000617 auipc a2,0x0 8892: R_RISCV_PCREL_HI20 .LC6 + 8892: R_RISCV_RELAX *ABS* + 8896: 00060613 mv a2,a2 8896: R_RISCV_PCREL_LO12_I .L0 + 8896: R_RISCV_RELAX *ABS* + 889a: 0af00593 li a1,175 + +000000000000889e <.LVL21>: + 889e: b719 j 87a4 <.L56> 889e: R_RISCV_RVC_JUMP .L56 + +00000000000088a0 <.L34>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:69 + FAR struct mm_freenode_s *prev = NULL; + 88a0: 4581 li a1,0 + +00000000000088a2 <.L13>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:181 + if (nextsize + prevsize + oldsize >= newsize) + 88a2: 018486b3 add a3,s1,s8 + 88a6: 96be add a3,a3,a5 + 88a8: 1326ed63 bltu a3,s2,89e2 <.L15> 88a8: R_RISCV_BRANCH .L15 + +00000000000088ac <.LBB2>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:183 + size_t needed = newsize - oldsize; + 88ac: 41890933 sub s2,s2,s8 + +00000000000088b0 <.LVL24>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:192 + if (nextsize > prevsize) + 88b0: 0297f563 bgeu a5,s1,88da <.L16> 88b0: R_RISCV_BRANCH .L16 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:196 + if (needed > prevsize) + 88b4: 1727f363 bgeu a5,s2,8a1a <.L17> 88b4: R_RISCV_BRANCH .L17 + +00000000000088b8 <.LVL25>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:203 + takenext = needed - prevsize; + 88b8: 40f90bb3 sub s7,s2,a5 + +00000000000088bc <.LVL26>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:243 + if (takeprev) + 88bc: ef95 bnez a5,88f8 <.L35> 88bc: R_RISCV_RVC_BRANCH .L35 + 88be: 8462 mv s0,s8 + 88c0: 8a4e mv s4,s3 + +00000000000088c2 <.L19>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:324 + DEBUGASSERT(next->blink); + 88c2: 018cb703 ld a4,24(s9) +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:317 + andbeyond = (FAR struct mm_allocnode_s *) + 88c6: 009c86b3 add a3,s9,s1 + +00000000000088ca <.LVL28>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:324 + DEBUGASSERT(next->blink); + 88ca: e771 bnez a4,8996 <.L28> 88ca: R_RISCV_RVC_BRANCH .L28 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:324 (discriminator 1) + 88cc: 00000617 auipc a2,0x0 88cc: R_RISCV_PCREL_HI20 .LC8 + 88cc: R_RISCV_RELAX *ABS* + 88d0: 00060613 mv a2,a2 88d0: R_RISCV_PCREL_LO12_I .L0 + 88d0: R_RISCV_RELAX *ABS* + 88d4: 14400593 li a1,324 + 88d8: b5f1 j 87a4 <.L56> 88d8: R_RISCV_RVC_JUMP .L56 + +00000000000088da <.L16>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:222 + if (needed > nextsize) + 88da: 0b24fa63 bgeu s1,s2,898e <.L36> 88da: R_RISCV_BRANCH .L36 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:228 + takeprev = needed - nextsize; + 88de: 40990433 sub s0,s2,s1 + +00000000000088e2 <.LVL30>: + 88e2: 8ba6 mv s7,s1 + +00000000000088e4 <.L18>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:251 + DEBUGASSERT(prev && prev->blink); + 88e4: c199 beqz a1,88ea <.L21> 88e4: R_RISCV_RVC_BRANCH .L21 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:251 (discriminator 2) + 88e6: 6d90 ld a2,24(a1) + 88e8: ea11 bnez a2,88fc <.L22> 88e8: R_RISCV_RVC_BRANCH .L22 + +00000000000088ea <.L21>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:251 (discriminator 3) + 88ea: 00000617 auipc a2,0x0 88ea: R_RISCV_PCREL_HI20 .LC7 + 88ea: R_RISCV_RELAX *ABS* + 88ee: 00060613 mv a2,a2 88ee: R_RISCV_PCREL_LO12_I .L0 + 88ee: R_RISCV_RELAX *ABS* + 88f2: 0fb00593 li a1,251 + 88f6: b57d j 87a4 <.L56> 88f6: R_RISCV_RVC_JUMP .L56 + +00000000000088f8 <.L35>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:243 + if (takeprev) + 88f8: 843e mv s0,a5 + 88fa: b7ed j 88e4 <.L18> 88fa: R_RISCV_RVC_JUMP .L18 + +00000000000088fc <.L22>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:252 (discriminator 4) + prev->blink->flink = prev->flink; + 88fc: 6994 ld a3,16(a1) + 88fe: ea14 sd a3,16(a2) + +0000000000008900 <.LVL34>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:253 (discriminator 4) + if (prev->flink) + 8900: c299 beqz a3,8906 <.L23> 8900: R_RISCV_RVC_BRANCH .L23 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:255 + prev->flink->blink = prev->blink; + 8902: 6d90 ld a2,24(a1) + 8904: ee90 sd a2,24(a3) + +0000000000008906 <.L23>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:260 + if (prevsize < takeprev + MM_MIN_CHUNK) + 8906: 02040693 addi a3,s0,32 + 890a: 00d7f363 bgeu a5,a3,8910 <.L24> 890a: R_RISCV_BRANCH .L24 + 890e: 843e mv s0,a5 + +0000000000008910 <.L24>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:267 + newnode = (FAR struct mm_allocnode_s *) + 8910: 408b0b33 sub s6,s6,s0 + +0000000000008914 <.LVL35>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:272 + if (takeprev < prevsize) + 8914: 06f47263 bgeu s0,a5,8978 <.L25> 8914: R_RISCV_BRANCH .L25 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:279 + prev->size = prevsize | (prev->size & MM_MASK_BIT); + 8918: 6594 ld a3,8(a1) +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:278 + prevsize -= takeprev; + 891a: 8f81 sub a5,a5,s0 + +000000000000891c <.LVL36>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:280 + nodesize += takeprev; + 891c: 9462 add s0,s0,s8 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:279 + prev->size = prevsize | (prev->size & MM_MASK_BIT); + 891e: 8a8d andi a3,a3,3 + 8920: 8edd or a3,a3,a5 + 8922: e594 sd a3,8(a1) + +0000000000008924 <.LVL37>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:281 + newnode->size = nodesize | MM_ALLOC_BIT | MM_PREVFREE_BIT; + 8924: 00346693 ori a3,s0,3 + 8928: 00db3423 sd a3,8(s6) # 7b34 <.LBB2+0xc> +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:282 + newnode->preceding = prevsize; + 892c: 00fb3023 sd a5,0(s6) +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:288 + mm_addfreechunk(heap, prev); + 8930: 8556 mv a0,s5 + 8932: 00000097 auipc ra,0x0 8932: R_RISCV_CALL mm_addfreechunk + 8932: R_RISCV_RELAX *ABS* + 8936: 000080e7 jalr ra # 8932 <.LVL37+0xe> + +000000000000893a <.L26>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:299 + newmem = (FAR void *)((FAR char *)newnode + MM_SIZEOF_ALLOCNODE); + 893a: 010b0a13 addi s4,s6,16 + +000000000000893e <.L20>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:308 + if (takenext) + 893e: f80b92e3 bnez s7,88c2 <.L19> 893e: R_RISCV_BRANCH .L19 + +0000000000008942 <.L27>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:370 + heap->mm_curused += newsize - oldsize; + 8942: 030ab603 ld a2,48(s5) +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:371 + if (heap->mm_curused > heap->mm_maxused) + 8946: 028ab783 ld a5,40(s5) +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:370 + heap->mm_curused += newsize - oldsize; + 894a: 9932 add s2,s2,a2 + +000000000000894c <.LVL41>: + 894c: 032ab823 sd s2,48(s5) +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:371 + if (heap->mm_curused > heap->mm_maxused) + 8950: 0127f463 bgeu a5,s2,8958 <.L32> 8950: R_RISCV_BRANCH .L32 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:373 + heap->mm_maxused = heap->mm_curused; + 8954: 032ab423 sd s2,40(s5) + +0000000000008958 <.L32>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:376 + mm_unlock(heap); + 8958: 8556 mv a0,s5 + 895a: 00000097 auipc ra,0x0 895a: R_RISCV_CALL mm_unlock + 895a: R_RISCV_RELAX *ABS* + 895e: 000080e7 jalr ra # 895a <.L32+0x2> + +0000000000008962 <.LVL42>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:380 + if (newmem != oldmem) + 8962: ed498ce3 beq s3,s4,883a <.L1> 8962: R_RISCV_BRANCH .L1 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:386 + memcpy(newmem, oldmem, oldsize - MM_ALLOCNODE_OVERHEAD); + 8966: ff8c0613 addi a2,s8,-8 # 7c1c <.LBB6> + 896a: 85ce mv a1,s3 + 896c: 8552 mv a0,s4 + 896e: 00000097 auipc ra,0x0 896e: R_RISCV_CALL memcpy + 896e: R_RISCV_RELAX *ABS* + 8972: 000080e7 jalr ra # 896e <.LVL42+0xc> + +0000000000008976 <.LVL43>: + 8976: b5d1 j 883a <.L1> 8976: R_RISCV_RVC_JUMP .L1 + +0000000000008978 <.L25>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:294 + nodesize += prevsize; + 8978: 01878433 add s0,a5,s8 + +000000000000897c <.LVL45>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:296 + (newnode->size & MM_MASK_BIT); + 897c: 008b3783 ld a5,8(s6) + 8980: 8b8d andi a5,a5,3 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:295 + newnode->size = nodesize | MM_ALLOC_BIT | + 8982: 8fc1 or a5,a5,s0 + 8984: 0017e793 ori a5,a5,1 + 8988: 00fb3423 sd a5,8(s6) + 898c: b77d j 893a <.L26> 898c: R_RISCV_RVC_JUMP .L26 + +000000000000898e <.L36>: + 898e: 8bca mv s7,s2 + 8990: 8462 mv s0,s8 + 8992: 8a4e mv s4,s3 + +0000000000008994 <.LVL47>: + 8994: b76d j 893e <.L20> 8994: R_RISCV_RVC_JUMP .L20 + +0000000000008996 <.L28>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:325 (discriminator 2) + next->blink->flink = next->flink; + 8996: 010cb783 ld a5,16(s9) + 899a: eb1c sd a5,16(a4) +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:326 (discriminator 2) + if (next->flink) + 899c: c781 beqz a5,89a4 <.L29> 899c: R_RISCV_RVC_BRANCH .L29 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:328 + next->flink->blink = next->blink; + 899e: 018cb703 ld a4,24(s9) + 89a2: ef98 sd a4,24(a5) + +00000000000089a4 <.L29>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:333 + if (nextsize < takenext + MM_MIN_CHUNK) + 89a4: 020b8793 addi a5,s7,32 # 7c3c <.L2+0x8> + 89a8: 00f4f363 bgeu s1,a5,89ae <.L30> 89a8: R_RISCV_BRANCH .L30 + 89ac: 8ba6 mv s7,s1 + +00000000000089ae <.L30>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:341 + oldnode->size = nodesize | (oldnode->size & MM_MASK_BIT); + 89ae: 008b3703 ld a4,8(s6) +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:340 + nodesize += takenext; + 89b2: 008b87b3 add a5,s7,s0 + +00000000000089b6 <.LVL49>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:341 + oldnode->size = nodesize | (oldnode->size & MM_MASK_BIT); + 89b6: 8b0d andi a4,a4,3 + 89b8: 8f5d or a4,a4,a5 + 89ba: 00eb3423 sd a4,8(s6) +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:345 + if (takenext < nextsize) + 89be: 009bfe63 bgeu s7,s1,89da <.L31> 89be: R_RISCV_BRANCH .L31 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:353 + newnode->size = nextsize - takenext; + 89c2: 417484b3 sub s1,s1,s7 + +00000000000089c6 <.LVL50>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:351 + newnode = (FAR struct mm_freenode_s *) + 89c6: 00fb05b3 add a1,s6,a5 + +00000000000089ca <.LVL51>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:353 + newnode->size = nextsize - takenext; + 89ca: e584 sd s1,8(a1) +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:354 + andbeyond->preceding = newnode->size; + 89cc: e284 sd s1,0(a3) +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:358 + mm_addfreechunk(heap, newnode); + 89ce: 8556 mv a0,s5 + 89d0: 00000097 auipc ra,0x0 89d0: R_RISCV_CALL mm_addfreechunk + 89d0: R_RISCV_RELAX *ABS* + 89d4: 000080e7 jalr ra # 89d0 <.LVL51+0x6> + +00000000000089d8 <.LVL52>: + 89d8: b7ad j 8942 <.L27> 89d8: R_RISCV_RVC_JUMP .L27 + +00000000000089da <.L31>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:364 + andbeyond->size &= ~MM_PREVFREE_BIT; + 89da: 669c ld a5,8(a3) + +00000000000089dc <.LVL54>: + 89dc: 9bf5 andi a5,a5,-3 + 89de: e69c sd a5,8(a3) + 89e0: b78d j 8942 <.L27> 89e0: R_RISCV_RVC_JUMP .L27 + +00000000000089e2 <.L15>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:402 + mm_unlock(heap); + 89e2: 8556 mv a0,s5 + 89e4: 00000097 auipc ra,0x0 89e4: R_RISCV_CALL mm_unlock + 89e4: R_RISCV_RELAX *ABS* + 89e8: 000080e7 jalr ra # 89e4 <.L15+0x2> + +00000000000089ec <.LVL56>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:403 + newmem = mm_malloc(heap, size); + 89ec: 85d2 mv a1,s4 + 89ee: 8556 mv a0,s5 + 89f0: 00000097 auipc ra,0x0 89f0: R_RISCV_CALL mm_malloc + 89f0: R_RISCV_RELAX *ABS* + 89f4: 000080e7 jalr ra # 89f0 <.LVL56+0x4> + +00000000000089f8 <.LVL57>: + 89f8: 8a2a mv s4,a0 + +00000000000089fa <.LVL58>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:404 + if (newmem) + 89fa: e40500e3 beqz a0,883a <.L1> 89fa: R_RISCV_BRANCH .L1 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:406 + memcpy(newmem, oldmem, oldsize - MM_ALLOCNODE_OVERHEAD); + 89fe: 85ce mv a1,s3 + 8a00: ff8c0613 addi a2,s8,-8 + 8a04: 00000097 auipc ra,0x0 8a04: R_RISCV_CALL memcpy + 8a04: R_RISCV_RELAX *ABS* + 8a08: 000080e7 jalr ra # 8a04 <.LVL58+0xa> + +0000000000008a0c <.LVL59>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:407 + mm_free(heap, oldmem); + 8a0c: 85ce mv a1,s3 + 8a0e: 8556 mv a0,s5 + 8a10: 00000097 auipc ra,0x0 8a10: R_RISCV_CALL mm_free + 8a10: R_RISCV_RELAX *ABS* + 8a14: 000080e7 jalr ra # 8a10 <.LVL59+0x4> + +0000000000008a18 <.LVL60>: + 8a18: b50d j 883a <.L1> 8a18: R_RISCV_RVC_JUMP .L1 + +0000000000008a1a <.L17>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_realloc.c:243 + if (takeprev) + 8a1a: 8a4e mv s4,s3 + +0000000000008a1c <.LVL62>: + 8a1c: f20903e3 beqz s2,8942 <.L27> 8a1c: R_RISCV_BRANCH .L27 + 8a20: 844a mv s0,s2 + 8a22: b5c9 j 88e4 <.L18> 8a22: R_RISCV_RVC_JUMP .L18 + +0000000000008a24 : +mm_heapmember(): +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_heapmember.c:82 +#else + /* A valid address from the heap would have to lie between the + * two guard nodes. + */ + + if (mem > (FAR void *)heap->mm_heapstart[0] && + 8a24: 7d1c ld a5,56(a0) + 8a26: 00b7f663 bgeu a5,a1,8a32 <.L3> 8a26: R_RISCV_BRANCH .L3 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_heapmember.c:82 (discriminator 1) + 8a2a: 6128 ld a0,64(a0) + +0000000000008a2c <.LVL1>: + 8a2c: 00a5b533 sltu a0,a1,a0 + 8a30: 8082 ret + +0000000000008a32 <.L3>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_heapmember.c:90 + return true; + } + + /* Otherwise, the address does not lie in the heap */ + + return false; + 8a32: 4501 li a0,0 + +0000000000008a34 <.LVL3>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_heapmember.c:93 + +#endif +} + 8a34: 8082 ret + +0000000000008a36 : +umm_initialize(): +/Users/Luppy/ox64/nuttx/mm/umm_heap/umm_initialize.c:85 + * None + * + ****************************************************************************/ + +void umm_initialize(FAR void *heap_start, size_t heap_size) +{ + 8a36: 1141 addi sp,sp,-16 + 8a38: 862e mv a2,a1 +/Users/Luppy/ox64/nuttx/mm/umm_heap/umm_initialize.c:87 +#ifdef CONFIG_BUILD_KERNEL + USR_HEAP = mm_initialize(NULL, heap_start, heap_size); + 8a3a: 85aa mv a1,a0 + +0000000000008a3c <.LVL1>: + 8a3c: 4501 li a0,0 + +0000000000008a3e <.LVL2>: +/Users/Luppy/ox64/nuttx/mm/umm_heap/umm_initialize.c:85 +{ + 8a3e: e406 sd ra,8(sp) +/Users/Luppy/ox64/nuttx/mm/umm_heap/umm_initialize.c:87 + USR_HEAP = mm_initialize(NULL, heap_start, heap_size); + 8a40: 00000097 auipc ra,0x0 8a40: R_RISCV_CALL mm_initialize + 8a40: R_RISCV_RELAX *ABS* + 8a44: 000080e7 jalr ra # 8a40 <.LVL2+0x2> + +0000000000008a48 <.LVL3>: + 8a48: 008017b7 lui a5,0x801 + 8a4c: 07a2 slli a5,a5,0x8 + 8a4e: e788 sd a0,8(a5) +/Users/Luppy/ox64/nuttx/mm/umm_heap/umm_initialize.c:91 +#else + USR_HEAP = mm_initialize("Umem", heap_start, heap_size); +#endif +} + 8a50: 60a2 ld ra,8(sp) + 8a52: 0141 addi sp,sp,16 + 8a54: 8082 ret + +0000000000008a56 : +umm_try_initialize(): +/Users/Luppy/ox64/nuttx/mm/umm_heap/umm_initialize.c:115 + uintptr_t allocbase; + size_t npages = 1; + + /* Return if the user heap is already initialized. */ + + if (USR_HEAP != NULL) + 8a56: 008017b7 lui a5,0x801 + 8a5a: 07a2 slli a5,a5,0x8 + 8a5c: 679c ld a5,8(a5) + 8a5e: ef9d bnez a5,8a9c <.L3> 8a5e: R_RISCV_RVC_BRANCH .L3 +/Users/Luppy/ox64/nuttx/mm/umm_heap/umm_initialize.c:109 +{ + 8a60: 1141 addi sp,sp,-16 +/Users/Luppy/ox64/nuttx/mm/umm_heap/umm_initialize.c:131 + /* If we provide a zero brkaddr to pgalloc(), + * it will create the first block in the correct virtual address + * space and return the start address of that block. + */ + + allocbase = pgalloc(0, npages); + 8a62: 4585 li a1,1 + 8a64: 4501 li a0,0 +/Users/Luppy/ox64/nuttx/mm/umm_heap/umm_initialize.c:109 +{ + 8a66: e406 sd ra,8(sp) +/Users/Luppy/ox64/nuttx/mm/umm_heap/umm_initialize.c:131 + allocbase = pgalloc(0, npages); + 8a68: 00000097 auipc ra,0x0 8a68: R_RISCV_CALL pgalloc + 8a68: R_RISCV_RELAX *ABS* + 8a6c: 000080e7 jalr ra # 8a68 + +0000000000008a70 <.LVL5>: +/Users/Luppy/ox64/nuttx/mm/umm_heap/umm_initialize.c:132 + DEBUGASSERT(allocbase != 0); + 8a70: ed19 bnez a0,8a8e <.L5> 8a70: R_RISCV_RVC_BRANCH .L5 +/Users/Luppy/ox64/nuttx/mm/umm_heap/umm_initialize.c:132 (discriminator 1) + 8a72: 00000617 auipc a2,0x0 8a72: R_RISCV_PCREL_HI20 .LC0 + 8a72: R_RISCV_RELAX *ABS* + 8a76: 00060613 mv a2,a2 8a76: R_RISCV_PCREL_LO12_I .L0 + 8a76: R_RISCV_RELAX *ABS* + 8a7a: 08400593 li a1,132 + 8a7e: 00000517 auipc a0,0x0 8a7e: R_RISCV_PCREL_HI20 .LC1 + 8a7e: R_RISCV_RELAX *ABS* + 8a82: 00050513 mv a0,a0 8a82: R_RISCV_PCREL_LO12_I .L0 + 8a82: R_RISCV_RELAX *ABS* + +0000000000008a86 <.LVL6>: + 8a86: 00000097 auipc ra,0x0 8a86: R_RISCV_CALL __assert + 8a86: R_RISCV_RELAX *ABS* + 8a8a: 000080e7 jalr ra # 8a86 <.LVL6> + +0000000000008a8e <.L5>: +/Users/Luppy/ox64/nuttx/mm/umm_heap/umm_initialize.c:137 (discriminator 2) + + /* Let umm_initialize do the real work. */ + + umm_initialize((FAR void *)allocbase, npages * CONFIG_MM_PGSIZE); +} + 8a8e: 60a2 ld ra,8(sp) +/Users/Luppy/ox64/nuttx/mm/umm_heap/umm_initialize.c:136 (discriminator 2) + umm_initialize((FAR void *)allocbase, npages * CONFIG_MM_PGSIZE); + 8a90: 6585 lui a1,0x1 +/Users/Luppy/ox64/nuttx/mm/umm_heap/umm_initialize.c:137 (discriminator 2) +} + 8a92: 0141 addi sp,sp,16 +/Users/Luppy/ox64/nuttx/mm/umm_heap/umm_initialize.c:136 (discriminator 2) + umm_initialize((FAR void *)allocbase, npages * CONFIG_MM_PGSIZE); + 8a94: 00000317 auipc t1,0x0 8a94: R_RISCV_CALL umm_initialize + 8a94: R_RISCV_RELAX *ABS* + 8a98: 00030067 jr t1 # 8a94 <.L5+0x6> + +0000000000008a9c <.L3>: + 8a9c: 8082 ret + +0000000000008a9e : +mm_addregion(): +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_initialize.c:102 + * + ****************************************************************************/ + +void mm_addregion(FAR struct mm_heap_s *heap, FAR void *heapstart, + size_t heapsize) +{ + 8a9e: 1101 addi sp,sp,-32 + 8aa0: e822 sd s0,16(sp) + 8aa2: e426 sd s1,8(sp) + 8aa4: e04a sd s2,0(sp) + 8aa6: ec06 sd ra,24(sp) + 8aa8: 84aa mv s1,a0 + 8aaa: 842e mv s0,a1 + 8aac: 8932 mv s2,a2 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_initialize.c:136 + + /* Register to KASan for access check */ + + kasan_register(heapstart, &heapsize); + + DEBUGVERIFY(mm_lock(heap)); + 8aae: 00000097 auipc ra,0x0 8aae: R_RISCV_CALL mm_lock + 8aae: R_RISCV_RELAX *ABS* + 8ab2: 000080e7 jalr ra # 8aae + +0000000000008ab6 <.LVL1>: + 8ab6: 02055063 bgez a0,8ad6 <.L2> 8ab6: R_RISCV_BRANCH .L2 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_initialize.c:136 (discriminator 1) + 8aba: 00000617 auipc a2,0x0 8aba: R_RISCV_PCREL_HI20 .LC0 + 8aba: R_RISCV_RELAX *ABS* + 8abe: 00060613 mv a2,a2 8abe: R_RISCV_PCREL_LO12_I .L0 + 8abe: R_RISCV_RELAX *ABS* + 8ac2: 08800593 li a1,136 + 8ac6: 00000517 auipc a0,0x0 8ac6: R_RISCV_PCREL_HI20 .LC1 + 8ac6: R_RISCV_RELAX *ABS* + 8aca: 00050513 mv a0,a0 8aca: R_RISCV_PCREL_LO12_I .L0 + 8aca: R_RISCV_RELAX *ABS* + 8ace: 00000097 auipc ra,0x0 8ace: R_RISCV_CALL __assert + 8ace: R_RISCV_RELAX *ABS* + 8ad2: 000080e7 jalr ra # 8ace <.LVL1+0x18> + +0000000000008ad6 <.L2>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_initialize.c:145 (discriminator 2) + * Note: (uintptr_t)node + MM_SIZEOF_ALLOCNODE is what's actually + * returned to the malloc user, which should have natural alignment. + * (that is, in this implementation, MM_MIN_CHUNK-alignment.) + */ + + heapbase = MM_ALIGN_UP((uintptr_t)heapstart + 2 * MM_SIZEOF_ALLOCNODE) - + 8ad6: 02f40593 addi a1,s0,47 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_initialize.c:161 (discriminator 2) + minfo("Region %d: base=%p size=%zu\n", IDX + 1, heapstart, heapsize); +#endif + + /* Add the size of this region to the total size of the heap */ + + heap->mm_heapsize += heapsize; + 8ada: 7094 ld a3,32(s1) +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_initialize.c:145 (discriminator 2) + heapbase = MM_ALIGN_UP((uintptr_t)heapstart + 2 * MM_SIZEOF_ALLOCNODE) - + 8adc: 99c1 andi a1,a1,-16 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_initialize.c:147 (discriminator 2) + heapend = MM_ALIGN_DOWN((uintptr_t)heapstart + (uintptr_t)heapsize); + 8ade: 944a add s0,s0,s2 + +0000000000008ae0 <.LVL3>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_initialize.c:145 (discriminator 2) + heapbase = MM_ALIGN_UP((uintptr_t)heapstart + 2 * MM_SIZEOF_ALLOCNODE) - + 8ae0: fe058713 addi a4,a1,-32 # fe0 <.LBE7+0x4> + +0000000000008ae4 <.LVL4>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_initialize.c:147 (discriminator 2) + heapend = MM_ALIGN_DOWN((uintptr_t)heapstart + (uintptr_t)heapsize); + 8ae4: 9841 andi s0,s0,-16 + +0000000000008ae6 <.LVL5>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_initialize.c:148 (discriminator 2) + heapsize = heapend - heapbase; + 8ae6: 40e407b3 sub a5,s0,a4 + +0000000000008aea <.LVL6>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_initialize.c:161 (discriminator 2) + heap->mm_heapsize += heapsize; + 8aea: 96be add a3,a3,a5 + 8aec: f094 sd a3,32(s1) +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_initialize.c:171 (discriminator 2) + * + * And create one free node between the guard nodes that contains + * all available memory. + */ + + heap->mm_heapstart[IDX] = (FAR struct mm_allocnode_s *)heapbase; + 8aee: fc98 sd a4,56(s1) +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_initialize.c:173 (discriminator 2) + MM_ADD_BACKTRACE(heap, heap->mm_heapstart[IDX]); + heap->mm_heapstart[IDX]->size = MM_SIZEOF_ALLOCNODE | MM_ALLOC_BIT; + 8af0: 46c5 li a3,17 + 8af2: fed5b423 sd a3,-24(a1) +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_initialize.c:177 (discriminator 2) + node = (FAR struct mm_freenode_s *) + (heapbase + MM_SIZEOF_ALLOCNODE); + DEBUGASSERT((((uintptr_t)node + MM_SIZEOF_ALLOCNODE) % MM_ALIGN) == 0); + node->size = heapsize - 2 * MM_SIZEOF_ALLOCNODE; + 8af6: 1781 addi a5,a5,-32 + +0000000000008af8 <.LVL7>: + 8af8: fef5bc23 sd a5,-8(a1) +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_initialize.c:179 (discriminator 2) + heap->mm_heapend[IDX] = (FAR struct mm_allocnode_s *) + (heapend - MM_SIZEOF_ALLOCNODE); + 8afc: 1441 addi s0,s0,-16 + +0000000000008afe <.LVL8>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_initialize.c:178 (discriminator 2) + heap->mm_heapend[IDX] = (FAR struct mm_allocnode_s *) + 8afe: e0a0 sd s0,64(s1) +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_initialize.c:180 (discriminator 2) + heap->mm_heapend[IDX]->size = MM_SIZEOF_ALLOCNODE | MM_ALLOC_BIT | + 8b00: 47cd li a5,19 + +0000000000008b02 <.LVL9>: + 8b02: e41c sd a5,8(s0) +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_initialize.c:182 (discriminator 2) + MM_PREVFREE_BIT; + heap->mm_heapend[IDX]->preceding = node->size; + 8b04: 60bc ld a5,64(s1) + 8b06: ff85b703 ld a4,-8(a1) + +0000000000008b0a <.LVL10>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_initialize.c:175 (discriminator 2) + (heapbase + MM_SIZEOF_ALLOCNODE); + 8b0a: 15c1 addi a1,a1,-16 + +0000000000008b0c <.LVL11>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_initialize.c:193 (discriminator 2) + heap->mm_nregions++; +#endif + + /* Add the single, large free node to the nodelist */ + + mm_addfreechunk(heap, node); + 8b0c: 8526 mv a0,s1 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_initialize.c:182 (discriminator 2) + heap->mm_heapend[IDX]->preceding = node->size; + 8b0e: e398 sd a4,0(a5) +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_initialize.c:193 (discriminator 2) + mm_addfreechunk(heap, node); + 8b10: 00000097 auipc ra,0x0 8b10: R_RISCV_CALL mm_addfreechunk + 8b10: R_RISCV_RELAX *ABS* + 8b14: 000080e7 jalr ra # 8b10 <.LVL11+0x4> + +0000000000008b18 <.LVL12>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_initialize.c:195 (discriminator 2) + mm_unlock(heap); +} + 8b18: 6442 ld s0,16(sp) + +0000000000008b1a <.LVL13>: + 8b1a: 60e2 ld ra,24(sp) + 8b1c: 6902 ld s2,0(sp) + +0000000000008b1e <.LVL14>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_initialize.c:194 (discriminator 2) + mm_unlock(heap); + 8b1e: 8526 mv a0,s1 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_initialize.c:195 (discriminator 2) +} + 8b20: 64a2 ld s1,8(sp) + +0000000000008b22 <.LVL15>: + 8b22: 6105 addi sp,sp,32 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_initialize.c:194 (discriminator 2) + mm_unlock(heap); + 8b24: 00000317 auipc t1,0x0 8b24: R_RISCV_CALL mm_unlock + 8b24: R_RISCV_RELAX *ABS* + 8b28: 00030067 jr t1 # 8b24 <.LVL15+0x2> + +0000000000008b2c : +mm_initialize(): +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_initialize.c:219 + * + ****************************************************************************/ + +FAR struct mm_heap_s *mm_initialize(FAR const char *name, + FAR void *heapstart, size_t heapsize) +{ + 8b2c: 1101 addi sp,sp,-32 + 8b2e: e822 sd s0,16(sp) +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_initialize.c:231 + + minfo("Heap: name=%s, start=%p size=%zu\n", name, heapstart, heapsize); + + /* First ensure the memory to be used is aligned */ + + heap_adj = MM_ALIGN_UP((uintptr_t)heapstart); + 8b30: 00f58413 addi s0,a1,15 + 8b34: 9841 andi s0,s0,-16 + +0000000000008b36 <.LVL18>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_initialize.c:232 + heapsize -= heap_adj - (uintptr_t)heapstart; + 8b36: 95b2 add a1,a1,a2 + +0000000000008b38 <.LVL19>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_initialize.c:219 +{ + 8b38: ec06 sd ra,24(sp) + 8b3a: e426 sd s1,8(sp) + 8b3c: e04a sd s2,0(sp) +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_initialize.c:232 + heapsize -= heap_adj - (uintptr_t)heapstart; + 8b3e: 40858633 sub a2,a1,s0 + +0000000000008b42 <.LVL20>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_initialize.c:236 + + /* Reserve a block space for mm_heap_s context */ + + DEBUGASSERT(heapsize > sizeof(struct mm_heap_s)); + 8b42: 2a800793 li a5,680 + 8b46: 02c7e063 bltu a5,a2,8b66 <.L5> 8b46: R_RISCV_BRANCH .L5 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_initialize.c:236 (discriminator 1) + 8b4a: 00000617 auipc a2,0x0 8b4a: R_RISCV_PCREL_HI20 .LC2 + 8b4a: R_RISCV_RELAX *ABS* + 8b4e: 00060613 mv a2,a2 8b4e: R_RISCV_PCREL_LO12_I .L0 + 8b4e: R_RISCV_RELAX *ABS* + +0000000000008b52 <.LVL21>: + 8b52: 0ec00593 li a1,236 + +0000000000008b56 <.LVL22>: + 8b56: 00000517 auipc a0,0x0 8b56: R_RISCV_PCREL_HI20 .LC1 + 8b56: R_RISCV_RELAX *ABS* + 8b5a: 00050513 mv a0,a0 8b5a: R_RISCV_PCREL_LO12_I .L0 + 8b5a: R_RISCV_RELAX *ABS* + +0000000000008b5e <.LVL23>: + 8b5e: 00000097 auipc ra,0x0 8b5e: R_RISCV_CALL __assert + 8b5e: R_RISCV_RELAX *ABS* + 8b62: 000080e7 jalr ra # 8b5e <.LVL23> + +0000000000008b66 <.L5>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_initialize.c:238 (discriminator 2) + heap = (FAR struct mm_heap_s *)heap_adj; + heapsize -= sizeof(struct mm_heap_s); + 8b66: d5860493 addi s1,a2,-680 # 88a2 <.L13> + +0000000000008b6a <.LVL25>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_initialize.c:245 (discriminator 2) + + DEBUGASSERT(MM_MIN_CHUNK >= MM_SIZEOF_ALLOCNODE); + + /* Set up global variables */ + + memset(heap, 0, sizeof(struct mm_heap_s)); + 8b6a: 4581 li a1,0 + 8b6c: 2a800613 li a2,680 + 8b70: 8522 mv a0,s0 + +0000000000008b72 <.LVL26>: + 8b72: 00000097 auipc ra,0x0 8b72: R_RISCV_CALL memset + 8b72: R_RISCV_RELAX *ABS* + 8b76: 000080e7 jalr ra # 8b72 <.LVL26> + +0000000000008b7a <.LVL27>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_initialize.c:239 (discriminator 2) + heapstart = (FAR char *)heap_adj + sizeof(struct mm_heap_s); + 8b7a: 2a840913 addi s2,s0,680 + +0000000000008b7e <.LVL28>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_initialize.c:249 (discriminator 2) + + /* Initialize the node array */ + + for (i = 1; i < MM_NNODES; i++) + 8b7e: 06840713 addi a4,s0,104 + 8b82: 05840793 addi a5,s0,88 + 8b86: 27840693 addi a3,s0,632 + +0000000000008b8a <.L6>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_initialize.c:252 (discriminator 3) + { + heap->mm_nodelist[i - 1].flink = &heap->mm_nodelist[i]; + heap->mm_nodelist[i].blink = &heap->mm_nodelist[i - 1]; + 8b8a: fe070613 addi a2,a4,-32 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_initialize.c:251 (discriminator 3) + heap->mm_nodelist[i - 1].flink = &heap->mm_nodelist[i]; + 8b8e: e398 sd a4,0(a5) +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_initialize.c:252 (discriminator 3) + heap->mm_nodelist[i].blink = &heap->mm_nodelist[i - 1]; + 8b90: f790 sd a2,40(a5) + +0000000000008b92 <.LVL30>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_initialize.c:249 (discriminator 3) + for (i = 1; i < MM_NNODES; i++) + 8b92: 02078793 addi a5,a5,32 # 801020 <.Ldebug_info0+0x7caf5b> + 8b96: 02070713 addi a4,a4,32 + +0000000000008b9a <.LVL31>: + 8b9a: fed798e3 bne a5,a3,8b8a <.L6> 8b9a: R_RISCV_BRANCH .L6 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_initialize.c:259 + + /* Initialize the malloc mutex to one (to support one-at- + * a-time access to private data sets). + */ + + nxmutex_init(&heap->mm_lock); + 8b9e: 8522 mv a0,s0 + 8ba0: 00000097 auipc ra,0x0 8ba0: R_RISCV_CALL nxmutex_init + 8ba0: R_RISCV_RELAX *ABS* + 8ba4: 000080e7 jalr ra # 8ba0 <.LVL31+0x6> + +0000000000008ba8 <.LVL32>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_initialize.c:273 +# endif +#endif + + /* Add the initial region of memory to the heap */ + + mm_addregion(heap, heapstart, heapsize); + 8ba8: 8522 mv a0,s0 + 8baa: 8626 mv a2,s1 + 8bac: 85ca mv a1,s2 + 8bae: 00000097 auipc ra,0x0 8bae: R_RISCV_CALL mm_addregion + 8bae: R_RISCV_RELAX *ABS* + 8bb2: 000080e7 jalr ra # 8bae <.LVL32+0x6> + +0000000000008bb6 <.LVL33>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_initialize.c:299 + CONFIG_MM_HEAP_MEMPOOL_EXPAND_SIZE, + CONFIG_MM_HEAP_MEMPOOL_DICTIONARY_EXPAND_SIZE); +#endif + + return heap; +} + 8bb6: 60e2 ld ra,24(sp) + 8bb8: 8522 mv a0,s0 + 8bba: 6442 ld s0,16(sp) + +0000000000008bbc <.LVL34>: + 8bbc: 64a2 ld s1,8(sp) + +0000000000008bbe <.LVL35>: + 8bbe: 6902 ld s2,0(sp) + +0000000000008bc0 <.LVL36>: + 8bc0: 6105 addi sp,sp,32 + 8bc2: 8082 ret + +0000000000008bc4 : +mm_uninitialize(): +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_initialize.c:326 +#if defined(CONFIG_FS_PROCFS) && !defined(CONFIG_FS_PROCFS_EXCLUDE_MEMINFO) +# if defined(CONFIG_BUILD_FLAT) || defined(__KERNEL__) + procfs_unregister_meminfo(&heap->mm_procfs); +# endif +#endif + nxmutex_destroy(&heap->mm_lock); + 8bc4: 00000317 auipc t1,0x0 8bc4: R_RISCV_CALL nxmutex_destroy + 8bc4: R_RISCV_RELAX *ABS* + 8bc8: 00030067 jr t1 # 8bc4 + +0000000000008bcc : +mm_lock(): +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_lock.c:59 + * 0 if the lock can be taken, otherwise negative errno. + * + ****************************************************************************/ + +int mm_lock(FAR struct mm_heap_s *heap) +{ + 8bcc: 1141 addi sp,sp,-16 + 8bce: e022 sd s0,0(sp) + 8bd0: e406 sd ra,8(sp) + 8bd2: 842a mv s0,a0 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_lock.c:89 + * + * This is handled by _SCHED_GETTID() to return the special value -ESRCH + * to indicate this special situation. + */ + + if (_SCHED_GETTID() < 0) + 8bd4: 00000097 auipc ra,0x0 8bd4: R_RISCV_CALL gettid + 8bd4: R_RISCV_RELAX *ABS* + 8bd8: 000080e7 jalr ra # 8bd4 + +0000000000008bdc <.LVL1>: + 8bdc: 00054a63 bltz a0,8bf0 <.L2> 8bdc: R_RISCV_BRANCH .L2 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_lock.c:95 + { + return -ESRCH; + } + else + { + return nxmutex_lock(&heap->mm_lock); + 8be0: 8522 mv a0,s0 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_lock.c:97 + } +} + 8be2: 6402 ld s0,0(sp) + +0000000000008be4 <.LVL2>: + 8be4: 60a2 ld ra,8(sp) + 8be6: 0141 addi sp,sp,16 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_lock.c:95 + return nxmutex_lock(&heap->mm_lock); + 8be8: 00000317 auipc t1,0x0 8be8: R_RISCV_CALL nxmutex_lock + 8be8: R_RISCV_RELAX *ABS* + 8bec: 00030067 jr t1 # 8be8 <.LVL2+0x4> + +0000000000008bf0 <.L2>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_lock.c:97 +} + 8bf0: 60a2 ld ra,8(sp) + 8bf2: 6402 ld s0,0(sp) + +0000000000008bf4 <.LVL4>: + 8bf4: 5575 li a0,-3 + 8bf6: 0141 addi sp,sp,16 + 8bf8: 8082 ret + +0000000000008bfa : +mm_unlock(): +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_lock.c:108 + * Release the MM mutex when it is not longer needed. + * + ****************************************************************************/ + +void mm_unlock(FAR struct mm_heap_s *heap) +{ + 8bfa: 1141 addi sp,sp,-16 + 8bfc: e406 sd ra,8(sp) +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_lock.c:116 + { + return; + } +#endif + + DEBUGVERIFY(nxmutex_unlock(&heap->mm_lock)); + 8bfe: 00000097 auipc ra,0x0 8bfe: R_RISCV_CALL nxmutex_unlock + 8bfe: R_RISCV_RELAX *ABS* + 8c02: 000080e7 jalr ra # 8bfe + +0000000000008c06 <.LVL6>: + 8c06: 02055063 bgez a0,8c26 <.L4> 8c06: R_RISCV_BRANCH .L4 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_lock.c:116 (discriminator 1) + 8c0a: 00000617 auipc a2,0x0 8c0a: R_RISCV_PCREL_HI20 .LC0 + 8c0a: R_RISCV_RELAX *ABS* + 8c0e: 00060613 mv a2,a2 8c0e: R_RISCV_PCREL_LO12_I .L0 + 8c0e: R_RISCV_RELAX *ABS* + 8c12: 07400593 li a1,116 + 8c16: 00000517 auipc a0,0x0 8c16: R_RISCV_PCREL_HI20 .LC1 + 8c16: R_RISCV_RELAX *ABS* + 8c1a: 00050513 mv a0,a0 8c1a: R_RISCV_PCREL_LO12_I .L0 + 8c1a: R_RISCV_RELAX *ABS* + 8c1e: 00000097 auipc ra,0x0 8c1e: R_RISCV_CALL __assert + 8c1e: R_RISCV_RELAX *ABS* + 8c22: 000080e7 jalr ra # 8c1e <.LVL6+0x18> + +0000000000008c26 <.L4>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_lock.c:117 +} + 8c26: 60a2 ld ra,8(sp) + 8c28: 0141 addi sp,sp,16 + 8c2a: 8082 ret + +0000000000008c2c : +mm_addfreechunk(): +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_addfreechunk.c:48 + * + ****************************************************************************/ + +void mm_addfreechunk(FAR struct mm_heap_s *heap, + FAR struct mm_freenode_s *node) +{ + 8c2c: 1101 addi sp,sp,-32 + 8c2e: e04a sd s2,0(sp) + 8c30: ec06 sd ra,24(sp) + 8c32: e822 sd s0,16(sp) + 8c34: e426 sd s1,8(sp) +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_addfreechunk.c:51 + FAR struct mm_freenode_s *next; + FAR struct mm_freenode_s *prev; + size_t nodesize = MM_SIZEOF_NODE(node); + 8c36: 659c ld a5,8(a1) +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_addfreechunk.c:54 + int ndx; + + DEBUGASSERT(nodesize >= MM_MIN_CHUNK); + 8c38: 477d li a4,31 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_addfreechunk.c:51 + size_t nodesize = MM_SIZEOF_NODE(node); + 8c3a: ffc7f913 andi s2,a5,-4 + +0000000000008c3e <.LVL1>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_addfreechunk.c:54 + DEBUGASSERT(nodesize >= MM_MIN_CHUNK); + 8c3e: 03276063 bltu a4,s2,8c5e <.L2> 8c3e: R_RISCV_BRANCH .L2 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_addfreechunk.c:54 (discriminator 1) + 8c42: 00000617 auipc a2,0x0 8c42: R_RISCV_PCREL_HI20 .LC0 + 8c42: R_RISCV_RELAX *ABS* + 8c46: 00060613 mv a2,a2 8c46: R_RISCV_PCREL_LO12_I .L0 + 8c46: R_RISCV_RELAX *ABS* + 8c4a: 03600593 li a1,54 + +0000000000008c4e <.L18>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_addfreechunk.c:55 (discriminator 1) + DEBUGASSERT(MM_NODE_IS_FREE(node)); + 8c4e: 00000517 auipc a0,0x0 8c4e: R_RISCV_PCREL_HI20 .LC1 + 8c4e: R_RISCV_RELAX *ABS* + 8c52: 00050513 mv a0,a0 8c52: R_RISCV_PCREL_LO12_I .L0 + 8c52: R_RISCV_RELAX *ABS* + +0000000000008c56 <.LVL3>: + 8c56: 00000097 auipc ra,0x0 8c56: R_RISCV_CALL __assert + 8c56: R_RISCV_RELAX *ABS* + 8c5a: 000080e7 jalr ra # 8c56 <.LVL3> + +0000000000008c5e <.L2>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_addfreechunk.c:55 (discriminator 2) + 8c5e: 8b85 andi a5,a5,1 + 8c60: cb81 beqz a5,8c70 <.L3> 8c60: R_RISCV_RVC_BRANCH .L3 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_addfreechunk.c:55 (discriminator 1) + 8c62: 00000617 auipc a2,0x0 8c62: R_RISCV_PCREL_HI20 .LC2 + 8c62: R_RISCV_RELAX *ABS* + 8c66: 00060613 mv a2,a2 8c66: R_RISCV_PCREL_LO12_I .L0 + 8c66: R_RISCV_RELAX *ABS* + 8c6a: 03700593 li a1,55 + +0000000000008c6e <.LVL5>: + 8c6e: b7c5 j 8c4e <.L18> 8c6e: R_RISCV_RVC_JUMP .L18 + +0000000000008c70 <.L3>: + 8c70: 84aa mv s1,a0 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_addfreechunk.c:59 (discriminator 2) + + /* Convert the size to a nodelist index */ + + ndx = mm_size2ndx(nodesize); + 8c72: 854a mv a0,s2 + +0000000000008c74 <.LVL7>: + 8c74: 842e mv s0,a1 + 8c76: 00000097 auipc ra,0x0 8c76: R_RISCV_CALL mm_size2ndx + 8c76: R_RISCV_RELAX *ABS* + 8c7a: 000080e7 jalr ra # 8c76 <.LVL7+0x2> + +0000000000008c7e <.LVL8>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_addfreechunk.c:63 (discriminator 2) + + /* Now put the new node into the next */ + + for (prev = &heap->mm_nodelist[ndx], + 8c7e: 00551713 slli a4,a0,0x5 + 8c82: 04870713 addi a4,a4,72 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_addfreechunk.c:64 (discriminator 2) + next = heap->mm_nodelist[ndx].flink; + 8c86: 0516 slli a0,a0,0x5 + +0000000000008c88 <.LVL9>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_addfreechunk.c:63 (discriminator 2) + for (prev = &heap->mm_nodelist[ndx], + 8c88: 9726 add a4,a4,s1 + +0000000000008c8a <.LVL10>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_addfreechunk.c:64 (discriminator 2) + next = heap->mm_nodelist[ndx].flink; + 8c8a: 94aa add s1,s1,a0 + +0000000000008c8c <.LVL11>: + 8c8c: 6cbc ld a5,88(s1) + +0000000000008c8e <.L4>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_addfreechunk.c:63 + for (prev = &heap->mm_nodelist[ndx], + 8c8e: c791 beqz a5,8c9a <.L5> 8c8e: R_RISCV_RVC_BRANCH .L5 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_addfreechunk.c:65 + next && next->size && MM_SIZEOF_NODE(next) < nodesize; + 8c90: 6794 ld a3,8(a5) + 8c92: c681 beqz a3,8c9a <.L5> 8c92: R_RISCV_RVC_BRANCH .L5 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_addfreechunk.c:65 (discriminator 1) + 8c94: 9af1 andi a3,a3,-4 + 8c96: 0126ed63 bltu a3,s2,8cb0 <.L6> 8c96: R_RISCV_BRANCH .L6 + +0000000000008c9a <.L5>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_addfreechunk.c:70 + prev = next, next = next->flink); + + /* Does it go in mid next or at the end? */ + + prev->flink = node; + 8c9a: eb00 sd s0,16(a4) +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_addfreechunk.c:71 + node->blink = prev; + 8c9c: ec18 sd a4,24(s0) +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_addfreechunk.c:72 + node->flink = next; + 8c9e: e81c sd a5,16(s0) +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_addfreechunk.c:74 + + if (next) + 8ca0: c391 beqz a5,8ca4 <.L1> 8ca0: R_RISCV_RVC_BRANCH .L1 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_addfreechunk.c:78 + { + /* The new node goes between prev and next */ + + next->blink = node; + 8ca2: ef80 sd s0,24(a5) + +0000000000008ca4 <.L1>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_addfreechunk.c:80 + } +} + 8ca4: 60e2 ld ra,24(sp) + 8ca6: 6442 ld s0,16(sp) + +0000000000008ca8 <.LVL13>: + 8ca8: 64a2 ld s1,8(sp) + 8caa: 6902 ld s2,0(sp) + +0000000000008cac <.LVL14>: + 8cac: 6105 addi sp,sp,32 + 8cae: 8082 ret + +0000000000008cb0 <.L6>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_addfreechunk.c:66 + prev = next, next = next->flink); + 8cb0: 873e mv a4,a5 + 8cb2: 6b9c ld a5,16(a5) + +0000000000008cb4 <.LVL16>: + 8cb4: bfe9 j 8c8e <.L4> 8cb4: R_RISCV_RVC_JUMP .L4 + +0000000000008cb6 : +mm_size2ndx(): +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_size2ndx.c:46 + * Convert the size to a nodelist index. + * + ****************************************************************************/ + +int mm_size2ndx(size_t size) +{ + 8cb6: 1141 addi sp,sp,-16 + 8cb8: e406 sd ra,8(sp) +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_size2ndx.c:47 + DEBUGASSERT(size >= MM_MIN_CHUNK); + 8cba: 477d li a4,31 + 8cbc: 02a76063 bltu a4,a0,8cdc <.L2> 8cbc: R_RISCV_BRANCH .L2 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_size2ndx.c:47 (discriminator 1) + 8cc0: 00000617 auipc a2,0x0 8cc0: R_RISCV_PCREL_HI20 .LC0 + 8cc0: R_RISCV_RELAX *ABS* + 8cc4: 00060613 mv a2,a2 8cc4: R_RISCV_PCREL_LO12_I .L0 + 8cc4: R_RISCV_RELAX *ABS* + 8cc8: 02f00593 li a1,47 + 8ccc: 00000517 auipc a0,0x0 8ccc: R_RISCV_PCREL_HI20 .LC1 + 8ccc: R_RISCV_RELAX *ABS* + 8cd0: 00050513 mv a0,a0 8cd0: R_RISCV_PCREL_LO12_I .L0 + 8cd0: R_RISCV_RELAX *ABS* + +0000000000008cd4 <.LVL1>: + 8cd4: 00000097 auipc ra,0x0 8cd4: R_RISCV_CALL __assert + 8cd4: R_RISCV_RELAX *ABS* + 8cd8: 000080e7 jalr ra # 8cd4 <.LVL1> + +0000000000008cdc <.L2>: + 8cdc: 87aa mv a5,a0 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_size2ndx.c:48 (discriminator 2) + if (size >= MM_MAX_CHUNK) + 8cde: 00400737 lui a4,0x400 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_size2ndx.c:50 (discriminator 2) + { + return MM_NNODES - 1; + 8ce2: 4545 li a0,17 + +0000000000008ce4 <.LVL3>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_size2ndx.c:48 (discriminator 2) + if (size >= MM_MAX_CHUNK) + 8ce4: 00e7f963 bgeu a5,a4,8cf6 <.L3> 8ce4: R_RISCV_BRANCH .L3 + +0000000000008ce8 <.LVL4>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_size2ndx.c:54 + } + + size >>= MM_MIN_SHIFT; + return flsl(size) - 1; + 8ce8: 0057d513 srli a0,a5,0x5 + +0000000000008cec <.LVL5>: + 8cec: 00000097 auipc ra,0x0 8cec: R_RISCV_CALL flsl + 8cec: R_RISCV_RELAX *ABS* + 8cf0: 000080e7 jalr ra # 8cec <.LVL5> + +0000000000008cf4 <.LVL6>: + 8cf4: 357d addiw a0,a0,-1 + +0000000000008cf6 <.L3>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_size2ndx.c:55 +} + 8cf6: 60a2 ld ra,8(sp) + 8cf8: 0141 addi sp,sp,16 + 8cfa: 8082 ret + +0000000000008cfc : +mm_shrinkchunk(): +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_shrinkchunk.c:54 + * + ****************************************************************************/ + +void mm_shrinkchunk(FAR struct mm_heap_s *heap, + FAR struct mm_allocnode_s *node, size_t size) +{ + 8cfc: 1141 addi sp,sp,-16 + 8cfe: e406 sd ra,8(sp) +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_shrinkchunk.c:58 + FAR struct mm_freenode_s *next; + size_t nodesize = MM_SIZEOF_NODE(node); + + DEBUGASSERT((size & MM_GRAN_MASK) == 0); + 8d00: 00f67693 andi a3,a2,15 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_shrinkchunk.c:56 + size_t nodesize = MM_SIZEOF_NODE(node); + 8d04: 659c ld a5,8(a1) + +0000000000008d06 <.LVL1>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_shrinkchunk.c:58 + DEBUGASSERT((size & MM_GRAN_MASK) == 0); + 8d06: ce99 beqz a3,8d24 <.L2> 8d06: R_RISCV_RVC_BRANCH .L2 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_shrinkchunk.c:58 (discriminator 1) + 8d08: 00000617 auipc a2,0x0 8d08: R_RISCV_PCREL_HI20 .LC0 + 8d08: R_RISCV_RELAX *ABS* + 8d0c: 00060613 mv a2,a2 8d0c: R_RISCV_PCREL_LO12_I .L0 + 8d0c: R_RISCV_RELAX *ABS* + +0000000000008d10 <.LVL2>: + 8d10: 03a00593 li a1,58 + +0000000000008d14 <.L13>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_shrinkchunk.c:81 (discriminator 1) + + /* Remove the next node. There must be a predecessor, but there may + * not be a successor node. + */ + + DEBUGASSERT(next->blink); + 8d14: 00000517 auipc a0,0x0 8d14: R_RISCV_PCREL_HI20 .LC1 + 8d14: R_RISCV_RELAX *ABS* + 8d18: 00050513 mv a0,a0 8d18: R_RISCV_PCREL_LO12_I .L0 + 8d18: R_RISCV_RELAX *ABS* + 8d1c: 00000097 auipc ra,0x0 8d1c: R_RISCV_CALL __assert + 8d1c: R_RISCV_RELAX *ABS* + 8d20: 000080e7 jalr ra # 8d1c <.L13+0x8> + +0000000000008d24 <.L2>: + 8d24: 9bf1 andi a5,a5,-4 + +0000000000008d26 <.LBE2>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_shrinkchunk.c:62 (discriminator 2) + next = (FAR struct mm_freenode_s *)((FAR char *)node + nodesize); + 8d26: 00f586b3 add a3,a1,a5 + +0000000000008d2a <.LVL6>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_shrinkchunk.c:66 (discriminator 2) + if (MM_NODE_IS_FREE(next)) + 8d2a: 872e mv a4,a1 + 8d2c: 668c ld a1,8(a3) + +0000000000008d2e <.LVL7>: + 8d2e: 0015f813 andi a6,a1,1 + 8d32: 06081463 bnez a6,8d9a <.L3> 8d32: R_RISCV_BRANCH .L3 + +0000000000008d36 <.LBB3>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_shrinkchunk.c:70 + size_t nextsize = MM_SIZEOF_NODE(next); + 8d36: ffc5f813 andi a6,a1,-4 + 8d3a: 88aa mv a7,a0 + +0000000000008d3c <.LVL8>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_shrinkchunk.c:74 + andbeyond = (FAR struct mm_allocnode_s *)((FAR char *)next + nextsize); + 8d3c: 01068533 add a0,a3,a6 + +0000000000008d40 <.LVL9>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_shrinkchunk.c:75 + DEBUGASSERT(MM_PREVNODE_IS_FREE(andbeyond)); + 8d40: 650c ld a1,8(a0) + 8d42: 8989 andi a1,a1,2 + 8d44: e981 bnez a1,8d54 <.L4> 8d44: R_RISCV_RVC_BRANCH .L4 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_shrinkchunk.c:75 (discriminator 1) + 8d46: 00000617 auipc a2,0x0 8d46: R_RISCV_PCREL_HI20 .LC2 + 8d46: R_RISCV_RELAX *ABS* + 8d4a: 00060613 mv a2,a2 8d4a: R_RISCV_PCREL_LO12_I .L0 + 8d4a: R_RISCV_RELAX *ABS* + +0000000000008d4e <.LVL10>: + 8d4e: 04b00593 li a1,75 + 8d52: b7c9 j 8d14 <.L13> 8d52: R_RISCV_RVC_JUMP .L13 + +0000000000008d54 <.L4>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_shrinkchunk.c:81 (discriminator 2) + DEBUGASSERT(next->blink); + 8d54: 0186b303 ld t1,24(a3) + 8d58: 00031963 bnez t1,8d6a <.L5> 8d58: R_RISCV_BRANCH .L5 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_shrinkchunk.c:81 (discriminator 1) + 8d5c: 00000617 auipc a2,0x0 8d5c: R_RISCV_PCREL_HI20 .LC3 + 8d5c: R_RISCV_RELAX *ABS* + 8d60: 00060613 mv a2,a2 8d60: R_RISCV_PCREL_LO12_I .L0 + 8d60: R_RISCV_RELAX *ABS* + +0000000000008d64 <.LVL12>: + 8d64: 05100593 li a1,81 + 8d68: b775 j 8d14 <.L13> 8d68: R_RISCV_RVC_JUMP .L13 + +0000000000008d6a <.L5>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_shrinkchunk.c:82 (discriminator 2) + next->blink->flink = next->flink; + 8d6a: 6a8c ld a1,16(a3) + 8d6c: 00b33823 sd a1,16(t1) + +0000000000008d70 <.LVL14>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_shrinkchunk.c:83 (discriminator 2) + if (next->flink) + 8d70: c199 beqz a1,8d76 <.L6> 8d70: R_RISCV_RVC_BRANCH .L6 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_shrinkchunk.c:85 + { + next->flink->blink = next->blink; + 8d72: 6e94 ld a3,24(a3) + +0000000000008d74 <.LVL15>: + 8d74: ed94 sd a3,24(a1) + +0000000000008d76 <.L6>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_shrinkchunk.c:96 + + newnode = (FAR struct mm_freenode_s *)((FAR char *)node + size); + + /* Set up the size of the new node */ + + newnode->size = nextsize + nodesize - size; + 8d76: 8f91 sub a5,a5,a2 + +0000000000008d78 <.LVL16>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_shrinkchunk.c:92 + newnode = (FAR struct mm_freenode_s *)((FAR char *)node + size); + 8d78: 00c705b3 add a1,a4,a2 + +0000000000008d7c <.LVL17>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_shrinkchunk.c:96 + newnode->size = nextsize + nodesize - size; + 8d7c: 97c2 add a5,a5,a6 + 8d7e: e59c sd a5,8(a1) +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_shrinkchunk.c:97 + node->size = size | (node->size & MM_MASK_BIT); + 8d80: 671c ld a5,8(a4) + 8d82: 8b8d andi a5,a5,3 + 8d84: 8e5d or a2,a2,a5 + +0000000000008d86 <.LVL18>: + 8d86: e710 sd a2,8(a4) +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_shrinkchunk.c:98 + andbeyond->preceding = newnode->size; + 8d88: 659c ld a5,8(a1) + 8d8a: e11c sd a5,0(a0) +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_shrinkchunk.c:102 + + /* Add the new node to the freenodelist */ + + mm_addfreechunk(heap, newnode); + 8d8c: 8546 mv a0,a7 + +0000000000008d8e <.L12>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_shrinkchunk.c:130 + + /* Add the new node to the freenodelist */ + + mm_addfreechunk(heap, newnode); + } +} + 8d8e: 60a2 ld ra,8(sp) + 8d90: 0141 addi sp,sp,16 + +0000000000008d92 <.LBB5>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_shrinkchunk.c:128 + mm_addfreechunk(heap, newnode); + 8d92: 00000317 auipc t1,0x0 8d92: R_RISCV_CALL mm_addfreechunk + 8d92: R_RISCV_RELAX *ABS* + 8d96: 00030067 jr t1 # 8d92 <.LBB5> + +0000000000008d9a <.L3>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_shrinkchunk.c:109 + else if (nodesize >= size + MM_MIN_CHUNK) + 8d9a: 02060593 addi a1,a2,32 # 8d7c <.LVL17> + 8d9e: 02b7e163 bltu a5,a1,8dc0 <.L1> 8d9e: R_RISCV_BRANCH .L1 + +0000000000008da2 <.LBB6>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_shrinkchunk.c:117 + newnode = (FAR struct mm_freenode_s *)((FAR char *)node + size); + 8da2: 00c705b3 add a1,a4,a2 + +0000000000008da6 <.LVL21>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_shrinkchunk.c:121 + newnode->size = nodesize - size; + 8da6: 8f91 sub a5,a5,a2 + 8da8: e59c sd a5,8(a1) + +0000000000008daa <.LVL22>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_shrinkchunk.c:122 + node->size = size | (node->size & MM_MASK_BIT); + 8daa: 671c ld a5,8(a4) + 8dac: 8b8d andi a5,a5,3 + 8dae: 8e5d or a2,a2,a5 + +0000000000008db0 <.LVL23>: + 8db0: e710 sd a2,8(a4) +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_shrinkchunk.c:123 + next->size |= MM_PREVFREE_BIT; + 8db2: 669c ld a5,8(a3) + 8db4: 0027e793 ori a5,a5,2 + 8db8: e69c sd a5,8(a3) +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_shrinkchunk.c:124 + next->preceding = newnode->size; + 8dba: 659c ld a5,8(a1) + 8dbc: e29c sd a5,0(a3) + 8dbe: bfc1 j 8d8e <.L12> 8dbe: R_RISCV_RVC_JUMP .L12 + +0000000000008dc0 <.L1>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_shrinkchunk.c:130 +} + 8dc0: 60a2 ld ra,8(sp) + 8dc2: 0141 addi sp,sp,16 + 8dc4: 8082 ret + +0000000000008dc6 : +mm_malloc(): +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_malloc.c:152 + * 8-byte alignment of the allocated data is assured. + * + ****************************************************************************/ + +FAR void *mm_malloc(FAR struct mm_heap_s *heap, size_t size) +{ + 8dc6: 1101 addi sp,sp,-32 + 8dc8: e426 sd s1,8(sp) + 8dca: ec06 sd ra,24(sp) + 8dcc: e822 sd s0,16(sp) + 8dce: e04a sd s2,0(sp) + 8dd0: 47e1 li a5,24 + 8dd2: 84aa mv s1,a0 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_malloc.c:176 + /* Adjust the size to account for (1) the size of the allocated node and + * (2) to make sure that it is aligned with MM_ALIGN and its size is at + * least MM_MIN_CHUNK. + */ + + if (size < MM_MIN_CHUNK - MM_ALLOCNODE_OVERHEAD) + 8dd4: 00f5f363 bgeu a1,a5,8dda <.L2> 8dd4: R_RISCV_BRANCH .L2 + 8dd8: 45e1 li a1,24 + +0000000000008dda <.L2>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_malloc.c:181 + { + size = MM_MIN_CHUNK - MM_ALLOCNODE_OVERHEAD; + } + + alignsize = MM_ALIGN_UP(size + MM_ALLOCNODE_OVERHEAD); + 8dda: 01758913 addi s2,a1,23 + 8dde: ff097913 andi s2,s2,-16 + +0000000000008de2 <.LVL3>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_malloc.c:182 + if (alignsize < size) + 8de2: 0eb96663 bltu s2,a1,8ece <.L3> 8de2: R_RISCV_BRANCH .L3 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_malloc.c:193 (discriminator 2) + + DEBUGASSERT(alignsize >= MM_ALIGN); + + /* We need to hold the MM mutex while we muck with the nodelist. */ + + DEBUGVERIFY(mm_lock(heap)); + 8de6: 8526 mv a0,s1 + +0000000000008de8 <.LVL4>: + 8de8: 00000097 auipc ra,0x0 8de8: R_RISCV_CALL mm_lock + 8de8: R_RISCV_RELAX *ABS* + 8dec: 000080e7 jalr ra # 8de8 <.LVL4> + +0000000000008df0 <.LVL5>: + 8df0: 02055063 bgez a0,8e10 <.L4> 8df0: R_RISCV_BRANCH .L4 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_malloc.c:193 (discriminator 1) + 8df4: 00000617 auipc a2,0x0 8df4: R_RISCV_PCREL_HI20 .LC0 + 8df4: R_RISCV_RELAX *ABS* + 8df8: 00060613 mv a2,a2 8df8: R_RISCV_PCREL_LO12_I .L0 + 8df8: R_RISCV_RELAX *ABS* + 8dfc: 0c100593 li a1,193 + +0000000000008e00 <.L25>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_malloc.c:206 (discriminator 1) + * other mm_nodelist[] entries. + */ + + for (node = heap->mm_nodelist[ndx].flink; node; node = node->flink) + { + DEBUGASSERT(node->blink->flink == node); + 8e00: 00000517 auipc a0,0x0 8e00: R_RISCV_PCREL_HI20 .LC1 + 8e00: R_RISCV_RELAX *ABS* + 8e04: 00050513 mv a0,a0 8e04: R_RISCV_PCREL_LO12_I .L0 + 8e04: R_RISCV_RELAX *ABS* + 8e08: 00000097 auipc ra,0x0 8e08: R_RISCV_CALL __assert + 8e08: R_RISCV_RELAX *ABS* + 8e0c: 000080e7 jalr ra # 8e08 <.L25+0x8> + +0000000000008e10 <.L4>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_malloc.c:197 (discriminator 2) + ndx = mm_size2ndx(alignsize); + 8e10: 854a mv a0,s2 + 8e12: 00000097 auipc ra,0x0 8e12: R_RISCV_CALL mm_size2ndx + 8e12: R_RISCV_RELAX *ABS* + 8e16: 000080e7 jalr ra # 8e12 <.L4+0x2> + +0000000000008e1a <.LVL8>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_malloc.c:204 (discriminator 2) + for (node = heap->mm_nodelist[ndx].flink; node; node = node->flink) + 8e1a: 0516 slli a0,a0,0x5 + +0000000000008e1c <.LVL9>: + 8e1c: 9526 add a0,a0,s1 + 8e1e: 6d20 ld s0,88(a0) + +0000000000008e20 <.L5>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_malloc.c:204 (discriminator 1) + 8e20: e00d bnez s0,8e42 <.L8> 8e20: R_RISCV_RVC_BRANCH .L8 + +0000000000008e22 <.L9>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_malloc.c:301 (discriminator 4) + node->size |= MM_ALLOC_BIT; + ret = (FAR void *)((FAR char *)node + MM_SIZEOF_ALLOCNODE); + } + + DEBUGASSERT(ret == NULL || mm_heapmember(heap, ret)); + mm_unlock(heap); + 8e22: 8526 mv a0,s1 + 8e24: 00000097 auipc ra,0x0 8e24: R_RISCV_CALL mm_unlock + 8e24: R_RISCV_RELAX *ABS* + 8e28: 000080e7 jalr ra # 8e24 <.L9+0x2> + +0000000000008e2c <.LVL12>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_malloc.c:364 (discriminator 4) + PANIC(); +#endif + } +#endif + + DEBUGASSERT(ret == NULL || ((uintptr_t)ret) % MM_ALIGN == 0); + 8e2c: c04d beqz s0,8ece <.L3> 8e2c: R_RISCV_RVC_BRANCH .L3 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_malloc.c:364 (discriminator 1) + 8e2e: 00f47793 andi a5,s0,15 + 8e32: cfd9 beqz a5,8ed0 <.L1> 8e32: R_RISCV_RVC_BRANCH .L1 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_malloc.c:364 (discriminator 3) + 8e34: 00000617 auipc a2,0x0 8e34: R_RISCV_PCREL_HI20 .LC5 + 8e34: R_RISCV_RELAX *ABS* + 8e38: 00060613 mv a2,a2 8e38: R_RISCV_PCREL_LO12_I .L0 + 8e38: R_RISCV_RELAX *ABS* + 8e3c: 16c00593 li a1,364 + 8e40: b7c1 j 8e00 <.L25> 8e40: R_RISCV_RVC_JUMP .L25 + +0000000000008e42 <.L8>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_malloc.c:206 + DEBUGASSERT(node->blink->flink == node); + 8e42: 6c14 ld a3,24(s0) + 8e44: 6a9c ld a5,16(a3) + 8e46: 00878963 beq a5,s0,8e58 <.L6> 8e46: R_RISCV_BRANCH .L6 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_malloc.c:206 (discriminator 1) + 8e4a: 00000617 auipc a2,0x0 8e4a: R_RISCV_PCREL_HI20 .LC2 + 8e4a: R_RISCV_RELAX *ABS* + 8e4e: 00060613 mv a2,a2 8e4e: R_RISCV_PCREL_LO12_I .L0 + 8e4e: R_RISCV_RELAX *ABS* + 8e52: 0ce00593 li a1,206 + 8e56: b76d j 8e00 <.L25> 8e56: R_RISCV_RVC_JUMP .L25 + +0000000000008e58 <.L6>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_malloc.c:207 (discriminator 2) + nodesize = MM_SIZEOF_NODE(node); + 8e58: 641c ld a5,8(s0) +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_malloc.c:204 (discriminator 2) + for (node = heap->mm_nodelist[ndx].flink; node; node = node->flink) + 8e5a: 6818 ld a4,16(s0) +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_malloc.c:207 (discriminator 2) + nodesize = MM_SIZEOF_NODE(node); + 8e5c: 9bf1 andi a5,a5,-4 + +0000000000008e5e <.LVL14>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_malloc.c:208 (discriminator 2) + if (nodesize >= alignsize) + 8e5e: 0927f063 bgeu a5,s2,8ede <.L7> 8e5e: R_RISCV_BRANCH .L7 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_malloc.c:204 + for (node = heap->mm_nodelist[ndx].flink; node; node = node->flink) + 8e62: 843a mv s0,a4 + +0000000000008e64 <.LVL15>: + 8e64: bf75 j 8e20 <.L5> 8e64: R_RISCV_RVC_JUMP .L5 + +0000000000008e66 <.L11>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_malloc.c:255 (discriminator 4) + remaining = nodesize - alignsize; + 8e66: 412787b3 sub a5,a5,s2 + +0000000000008e6a <.LVL17>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_malloc.c:256 (discriminator 4) + if (remaining >= MM_MIN_CHUNK) + 8e6a: 467d li a2,31 + 8e6c: 04f67e63 bgeu a2,a5,8ec8 <.L12> 8e6c: R_RISCV_BRANCH .L12 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_malloc.c:260 + remainder = (FAR struct mm_freenode_s *) + 8e70: 012405b3 add a1,s0,s2 + +0000000000008e74 <.LVL18>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_malloc.c:263 + remainder->size = remaining; + 8e74: e59c sd a5,8(a1) +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_malloc.c:267 + node->size = alignsize | (node->size & MM_MASK_BIT); + 8e76: 6418 ld a4,8(s0) +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_malloc.c:275 + mm_addfreechunk(heap, remainder); + 8e78: 8526 mv a0,s1 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_malloc.c:267 + node->size = alignsize | (node->size & MM_MASK_BIT); + 8e7a: 8b0d andi a4,a4,3 + 8e7c: 01276933 or s2,a4,s2 + +0000000000008e80 <.LVL19>: + 8e80: 01243423 sd s2,8(s0) +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_malloc.c:271 + next->preceding = remaining; + 8e84: e29c sd a5,0(a3) +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_malloc.c:275 + mm_addfreechunk(heap, remainder); + 8e86: 00000097 auipc ra,0x0 8e86: R_RISCV_CALL mm_addfreechunk + 8e86: R_RISCV_RELAX *ABS* + 8e8a: 000080e7 jalr ra # 8e86 <.LVL19+0x6> + +0000000000008e8e <.L13>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_malloc.c:288 + heap->mm_curused += MM_SIZEOF_NODE(node); + 8e8e: 641c ld a5,8(s0) + 8e90: 7898 ld a4,48(s1) + 8e92: 9bf1 andi a5,a5,-4 + 8e94: 97ba add a5,a5,a4 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_malloc.c:289 + if (heap->mm_curused > heap->mm_maxused) + 8e96: 7498 ld a4,40(s1) +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_malloc.c:288 + heap->mm_curused += MM_SIZEOF_NODE(node); + 8e98: f89c sd a5,48(s1) +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_malloc.c:289 + if (heap->mm_curused > heap->mm_maxused) + 8e9a: 00f77363 bgeu a4,a5,8ea0 <.L14> 8e9a: R_RISCV_BRANCH .L14 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_malloc.c:291 + heap->mm_maxused = heap->mm_curused; + 8e9e: f49c sd a5,40(s1) + +0000000000008ea0 <.L14>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_malloc.c:296 + node->size |= MM_ALLOC_BIT; + 8ea0: 641c ld a5,8(s0) +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_malloc.c:297 + ret = (FAR void *)((FAR char *)node + MM_SIZEOF_ALLOCNODE); + 8ea2: 0441 addi s0,s0,16 + +0000000000008ea4 <.LBE5>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_malloc.c:300 + DEBUGASSERT(ret == NULL || mm_heapmember(heap, ret)); + 8ea4: 8526 mv a0,s1 + +0000000000008ea6 <.LBB6>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_malloc.c:296 + node->size |= MM_ALLOC_BIT; + 8ea6: 0017e793 ori a5,a5,1 + 8eaa: fef43c23 sd a5,-8(s0) + +0000000000008eae <.LBE6>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_malloc.c:300 + DEBUGASSERT(ret == NULL || mm_heapmember(heap, ret)); + 8eae: 85a2 mv a1,s0 + 8eb0: 00000097 auipc ra,0x0 8eb0: R_RISCV_CALL mm_heapmember + 8eb0: R_RISCV_RELAX *ABS* + 8eb4: 000080e7 jalr ra # 8eb0 <.LBE6+0x2> + +0000000000008eb8 <.LVL23>: + 8eb8: f52d bnez a0,8e22 <.L9> 8eb8: R_RISCV_RVC_BRANCH .L9 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_malloc.c:300 (discriminator 3) + 8eba: 00000617 auipc a2,0x0 8eba: R_RISCV_PCREL_HI20 .LC4 + 8eba: R_RISCV_RELAX *ABS* + 8ebe: 00060613 mv a2,a2 8ebe: R_RISCV_PCREL_LO12_I .L0 + 8ebe: R_RISCV_RELAX *ABS* + 8ec2: 12c00593 li a1,300 + 8ec6: bf2d j 8e00 <.L25> 8ec6: R_RISCV_RVC_JUMP .L25 + +0000000000008ec8 <.L12>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_malloc.c:283 + next->size &= ~MM_PREVFREE_BIT; + 8ec8: 9b75 andi a4,a4,-3 + 8eca: e698 sd a4,8(a3) + 8ecc: b7c9 j 8e8e <.L13> 8ecc: R_RISCV_RVC_JUMP .L13 + +0000000000008ece <.L3>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_malloc.c:186 + return NULL; + 8ece: 4401 li s0,0 + +0000000000008ed0 <.L1>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_malloc.c:366 + return ret; +} + 8ed0: 60e2 ld ra,24(sp) + 8ed2: 8522 mv a0,s0 + 8ed4: 6442 ld s0,16(sp) + 8ed6: 64a2 ld s1,8(sp) + +0000000000008ed8 <.LVL26>: + 8ed8: 6902 ld s2,0(sp) + 8eda: 6105 addi sp,sp,32 + 8edc: 8082 ret + +0000000000008ede <.L7>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_malloc.c:230 + node->blink->flink = node->flink; + 8ede: ea98 sd a4,16(a3) +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_malloc.c:231 + if (node->flink) + 8ee0: c319 beqz a4,8ee6 <.L17> 8ee0: R_RISCV_RVC_BRANCH .L17 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_malloc.c:233 + node->flink->blink = node->blink; + 8ee2: 6c14 ld a3,24(s0) + 8ee4: ef14 sd a3,24(a4) + +0000000000008ee6 <.L17>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_malloc.c:238 + next = (FAR struct mm_freenode_s *)(((FAR char *)node) + nodesize); + 8ee6: 00f406b3 add a3,s0,a5 + +0000000000008eea <.LVL28>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_malloc.c:245 + DEBUGASSERT(MM_NODE_IS_ALLOC(next) && MM_PREVNODE_IS_FREE(next) && + 8eea: 6698 ld a4,8(a3) + 8eec: 460d li a2,3 + 8eee: 00377593 andi a1,a4,3 + 8ef2: 00c59563 bne a1,a2,8efc <.L10> 8ef2: R_RISCV_BRANCH .L10 +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_malloc.c:245 (discriminator 2) + 8ef6: 6290 ld a2,0(a3) + 8ef8: f6f607e3 beq a2,a5,8e66 <.L11> 8ef8: R_RISCV_BRANCH .L11 + +0000000000008efc <.L10>: +/Users/Luppy/ox64/nuttx/mm/mm_heap/mm_malloc.c:245 (discriminator 3) + 8efc: 00000617 auipc a2,0x0 8efc: R_RISCV_PCREL_HI20 .LC3 + 8efc: R_RISCV_RELAX *ABS* + 8f00: 00060613 mv a2,a2 8f00: R_RISCV_PCREL_LO12_I .L0 + 8f00: R_RISCV_RELAX *ABS* + 8f04: 0f500593 li a1,245 + 8f08: bde5 j 8e00 <.L25> 8f08: R_RISCV_RVC_JUMP .L25 + +0000000000008f0a : +iscntrl(): +/Users/Luppy/ox64/nuttx/libs/libc/ctype/lib_iscntrl.c:33 + * Public Functions + ****************************************************************************/ + +int iscntrl(int c) +{ + return c < 0x20 || c == 0x7f; + 8f0a: 47fd li a5,31 + 8f0c: 00a7d763 bge a5,a0,8f1a <.L3> 8f0c: R_RISCV_BRANCH .L3 +/Users/Luppy/ox64/nuttx/libs/libc/ctype/lib_iscntrl.c:33 (discriminator 2) + 8f10: f8150513 addi a0,a0,-127 # 8d81 <.LVL17+0x5> + +0000000000008f14 <.LVL1>: + 8f14: 00153513 seqz a0,a0 + 8f18: 8082 ret + +0000000000008f1a <.L3>: +/Users/Luppy/ox64/nuttx/libs/libc/ctype/lib_iscntrl.c:33 + 8f1a: 4505 li a0,1 + +0000000000008f1c <.LVL3>: +/Users/Luppy/ox64/nuttx/libs/libc/ctype/lib_iscntrl.c:34 +} + 8f1c: 8082 ret + +0000000000008f1e : +iscntrl_l(): +/Users/Luppy/ox64/nuttx/libs/libc/ctype/lib_iscntrl.c:38 + +int iscntrl_l(int c, locale_t locale) +{ + return iscntrl(c); + 8f1e: 00000317 auipc t1,0x0 8f1e: R_RISCV_CALL iscntrl + 8f1e: R_RISCV_RELAX *ABS* + 8f22: 00030067 jr t1 # 8f1e + +0000000000008f26 : +isspace(): +/Users/Luppy/ox64/nuttx/libs/libc/ctype/lib_isspace.c:34 + ****************************************************************************/ + +int isspace(int c) +{ + return c == ' ' || c == '\t' || c == '\n' || c == '\r' || + c == '\f' || c == '\v'; + 8f26: 02000793 li a5,32 + 8f2a: 00f50663 beq a0,a5,8f36 <.L3> 8f2a: R_RISCV_BRANCH .L3 +/Users/Luppy/ox64/nuttx/libs/libc/ctype/lib_isspace.c:33 + return c == ' ' || c == '\t' || c == '\n' || c == '\r' || + 8f2e: 355d addiw a0,a0,-9 + +0000000000008f30 <.LVL1>: +/Users/Luppy/ox64/nuttx/libs/libc/ctype/lib_isspace.c:34 + c == '\f' || c == '\v'; + 8f30: 00553513 sltiu a0,a0,5 + 8f34: 8082 ret + +0000000000008f36 <.L3>: + 8f36: 4505 li a0,1 + +0000000000008f38 <.LVL3>: +/Users/Luppy/ox64/nuttx/libs/libc/ctype/lib_isspace.c:35 +} + 8f38: 8082 ret + +0000000000008f3a : +isspace_l(): +/Users/Luppy/ox64/nuttx/libs/libc/ctype/lib_isspace.c:39 + +int isspace_l(int c, locale_t locale) +{ + return isspace(c); + 8f3a: 00000317 auipc t1,0x0 8f3a: R_RISCV_CALL isspace + 8f3a: R_RISCV_RELAX *ABS* + 8f3e: 00030067 jr t1 # 8f3a + +0000000000008f42 : +isxdigit(): +/Users/Luppy/ox64/nuttx/libs/libc/ctype/lib_isxdigit.c:34 + ****************************************************************************/ + +int isxdigit(int c) +{ + return (c >= '0' && c <= '9') || + (c >= 'a' && c <= 'f') || + 8f42: fd05071b addiw a4,a0,-48 + 8f46: 47a5 li a5,9 + 8f48: 00e7f963 bgeu a5,a4,8f5a <.L3> 8f48: R_RISCV_BRANCH .L3 +/Users/Luppy/ox64/nuttx/libs/libc/ctype/lib_isxdigit.c:34 (discriminator 2) + 8f4c: fdf57513 andi a0,a0,-33 + +0000000000008f50 <.LVL1>: + 8f50: fbf5051b addiw a0,a0,-65 + 8f54: 00653513 sltiu a0,a0,6 + 8f58: 8082 ret + +0000000000008f5a <.L3>: +/Users/Luppy/ox64/nuttx/libs/libc/ctype/lib_isxdigit.c:34 + 8f5a: 4505 li a0,1 + +0000000000008f5c <.LVL3>: +/Users/Luppy/ox64/nuttx/libs/libc/ctype/lib_isxdigit.c:36 + (c >= 'A' && c <= 'F'); +} + 8f5c: 8082 ret + +0000000000008f5e : +isxdigit_l(): +/Users/Luppy/ox64/nuttx/libs/libc/ctype/lib_isxdigit.c:40 + +int isxdigit_l(int c, locale_t locale) +{ + return isxdigit(c); + 8f5e: 00000317 auipc t1,0x0 8f5e: R_RISCV_CALL isxdigit + 8f5e: R_RISCV_RELAX *ABS* + 8f62: 00030067 jr t1 # 8f5e + +0000000000008f66 : +tolower(): +/Users/Luppy/ox64/nuttx/libs/libc/ctype/lib_tolower.c:33 + * Public Functions + ****************************************************************************/ + +int tolower(int c) +{ + return (c >= 'A' && c <= 'Z') ? (c - 'A' + 'a') : c; + 8f66: fbf5071b addiw a4,a0,-65 + 8f6a: 47e5 li a5,25 + 8f6c: 00e7e463 bltu a5,a4,8f74 <.L2> 8f6c: R_RISCV_BRANCH .L2 +/Users/Luppy/ox64/nuttx/libs/libc/ctype/lib_tolower.c:33 (discriminator 1) + 8f70: 0205051b addiw a0,a0,32 + +0000000000008f74 <.L2>: +/Users/Luppy/ox64/nuttx/libs/libc/ctype/lib_tolower.c:34 (discriminator 4) +} + 8f74: 8082 ret + +0000000000008f76 : +tolower_l(): +/Users/Luppy/ox64/nuttx/libs/libc/ctype/lib_tolower.c:38 + +int tolower_l(int c, locale_t locale) +{ + return tolower(c); + 8f76: 00000317 auipc t1,0x0 8f76: R_RISCV_CALL tolower + 8f76: R_RISCV_RELAX *ABS* + 8f7a: 00030067 jr t1 # 8f76 + +0000000000008f7e : +opendir(): +/Users/Luppy/ox64/nuttx/libs/libc/dirent/lib_opendir.c:72 + * ENOTDIR - 'path' is not a directory. + * + ****************************************************************************/ + +FAR DIR *opendir(FAR const char *path) +{ + 8f7e: 1101 addi sp,sp,-32 + 8f80: e426 sd s1,8(sp) + 8f82: 84aa mv s1,a0 +/Users/Luppy/ox64/nuttx/libs/libc/dirent/lib_opendir.c:76 + FAR DIR *dir; + int fd; + + dir = lib_malloc(sizeof(*dir)); + 8f84: 02800513 li a0,40 + +0000000000008f88 <.LVL1>: +/Users/Luppy/ox64/nuttx/libs/libc/dirent/lib_opendir.c:72 +{ + 8f88: e822 sd s0,16(sp) + 8f8a: ec06 sd ra,24(sp) +/Users/Luppy/ox64/nuttx/libs/libc/dirent/lib_opendir.c:76 + dir = lib_malloc(sizeof(*dir)); + 8f8c: 00000097 auipc ra,0x0 8f8c: R_RISCV_CALL malloc + 8f8c: R_RISCV_RELAX *ABS* + 8f90: 000080e7 jalr ra # 8f8c <.LVL1+0x4> + +0000000000008f94 <.LVL2>: + 8f94: 842a mv s0,a0 + +0000000000008f96 <.LVL3>: +/Users/Luppy/ox64/nuttx/libs/libc/dirent/lib_opendir.c:77 + if (dir == NULL) + 8f96: ed09 bnez a0,8fb0 <.L2> 8f96: R_RISCV_RVC_BRANCH .L2 +/Users/Luppy/ox64/nuttx/libs/libc/dirent/lib_opendir.c:79 + { + set_errno(ENOMEM); + 8f98: 00000097 auipc ra,0x0 8f98: R_RISCV_CALL __errno + 8f98: R_RISCV_RELAX *ABS* + 8f9c: 000080e7 jalr ra # 8f98 <.LVL3+0x2> + +0000000000008fa0 <.LVL4>: + 8fa0: 47b1 li a5,12 + 8fa2: c11c sw a5,0(a0) + +0000000000008fa4 <.L1>: +/Users/Luppy/ox64/nuttx/libs/libc/dirent/lib_opendir.c:99 + android_fdsan_create_owner_tag(ANDROID_FDSAN_OWNER_TYPE_DIR, + (uintptr_t)dir)); +#endif + + return dir; +} + 8fa4: 60e2 ld ra,24(sp) + 8fa6: 8522 mv a0,s0 + 8fa8: 6442 ld s0,16(sp) + 8faa: 64a2 ld s1,8(sp) + +0000000000008fac <.LVL6>: + 8fac: 6105 addi sp,sp,32 + 8fae: 8082 ret + +0000000000008fb0 <.L2>: +/Users/Luppy/ox64/nuttx/libs/libc/dirent/lib_opendir.c:83 + fd = open(path, O_RDONLY | O_DIRECTORY | O_CLOEXEC); + 8fb0: 6585 lui a1,0x1 + 8fb2: c0158593 addi a1,a1,-1023 # c01 <.L8+0xb> + 8fb6: 8526 mv a0,s1 + 8fb8: 00000097 auipc ra,0x0 8fb8: R_RISCV_CALL open + 8fb8: R_RISCV_RELAX *ABS* + 8fbc: 000080e7 jalr ra # 8fb8 <.L2+0x8> + +0000000000008fc0 <.LVL8>: +/Users/Luppy/ox64/nuttx/libs/libc/dirent/lib_opendir.c:84 + if (fd < 0) + 8fc0: 00055963 bgez a0,8fd2 <.L4> 8fc0: R_RISCV_BRANCH .L4 +/Users/Luppy/ox64/nuttx/libs/libc/dirent/lib_opendir.c:86 + lib_free(dir); + 8fc4: 8522 mv a0,s0 + +0000000000008fc6 <.LVL9>: + 8fc6: 00000097 auipc ra,0x0 8fc6: R_RISCV_CALL free + 8fc6: R_RISCV_RELAX *ABS* + 8fca: 000080e7 jalr ra # 8fc6 <.LVL9> + +0000000000008fce <.LVL10>: +/Users/Luppy/ox64/nuttx/libs/libc/dirent/lib_opendir.c:87 + return NULL; + 8fce: 4401 li s0,0 + +0000000000008fd0 <.LVL11>: + 8fd0: bfd1 j 8fa4 <.L1> 8fd0: R_RISCV_RVC_JUMP .L1 + +0000000000008fd2 <.L4>: +/Users/Luppy/ox64/nuttx/libs/libc/dirent/lib_opendir.c:90 + dir->fd = fd; + 8fd2: c008 sw a0,0(s0) +/Users/Luppy/ox64/nuttx/libs/libc/dirent/lib_opendir.c:98 + return dir; + 8fd4: bfc1 j 8fa4 <.L1> 8fd4: R_RISCV_RVC_JUMP .L1 + +0000000000008fd6 : +closedir(): +/Users/Luppy/ox64/nuttx/libs/libc/dirent/lib_closedir.c:62 + * returned, and errno is set appropriately. + * + ****************************************************************************/ + +int closedir(FAR DIR *dirp) +{ + 8fd6: 1101 addi sp,sp,-32 + 8fd8: ec06 sd ra,24(sp) + 8fda: e822 sd s0,16(sp) + 8fdc: e426 sd s1,8(sp) +/Users/Luppy/ox64/nuttx/libs/libc/dirent/lib_closedir.c:68 + int ret; +#ifdef CONFIG_FDSAN + uint64_t tag; +#endif + + if (dirp == NULL) + 8fde: ed11 bnez a0,8ffa <.L2> 8fde: R_RISCV_RVC_BRANCH .L2 +/Users/Luppy/ox64/nuttx/libs/libc/dirent/lib_closedir.c:70 + { + set_errno(EBADF); + 8fe0: 00000097 auipc ra,0x0 8fe0: R_RISCV_CALL __errno + 8fe0: R_RISCV_RELAX *ABS* + 8fe4: 000080e7 jalr ra # 8fe0 + +0000000000008fe8 <.LVL1>: + 8fe8: 47a5 li a5,9 + 8fea: c11c sw a5,0(a0) +/Users/Luppy/ox64/nuttx/libs/libc/dirent/lib_closedir.c:71 + return -1; + 8fec: 54fd li s1,-1 + +0000000000008fee <.L3>: +/Users/Luppy/ox64/nuttx/libs/libc/dirent/lib_closedir.c:84 + ret = close(dirp->fd); +#endif + + lib_free(dirp); + return ret; +} + 8fee: 60e2 ld ra,24(sp) + 8ff0: 6442 ld s0,16(sp) + 8ff2: 8526 mv a0,s1 + 8ff4: 64a2 ld s1,8(sp) + 8ff6: 6105 addi sp,sp,32 + 8ff8: 8082 ret + +0000000000008ffa <.L2>: + 8ffa: 842a mv s0,a0 +/Users/Luppy/ox64/nuttx/libs/libc/dirent/lib_closedir.c:79 + ret = close(dirp->fd); + 8ffc: 4108 lw a0,0(a0) + +0000000000008ffe <.LVL3>: + 8ffe: 00000097 auipc ra,0x0 8ffe: R_RISCV_CALL close + 8ffe: R_RISCV_RELAX *ABS* + 9002: 000080e7 jalr ra # 8ffe <.LVL3> + +0000000000009006 <.LVL4>: + 9006: 84aa mv s1,a0 +/Users/Luppy/ox64/nuttx/libs/libc/dirent/lib_closedir.c:82 + lib_free(dirp); + 9008: 8522 mv a0,s0 + 900a: 00000097 auipc ra,0x0 900a: R_RISCV_CALL free + 900a: R_RISCV_RELAX *ABS* + 900e: 000080e7 jalr ra # 900a <.LVL4+0x4> + +0000000000009012 <.LVL6>: +/Users/Luppy/ox64/nuttx/libs/libc/dirent/lib_closedir.c:83 + return ret; + 9012: bff1 j 8fee <.L3> 9012: R_RISCV_RVC_JUMP .L3 + +0000000000009014 : +readdir(): +/Users/Luppy/ox64/nuttx/libs/libc/dirent/lib_readdir.c:59 + * EBADF - Invalid directory stream descriptor dir + * + ****************************************************************************/ + +FAR struct dirent *readdir(DIR *dirp) +{ + 9014: 1141 addi sp,sp,-16 + 9016: e022 sd s0,0(sp) + 9018: e406 sd ra,8(sp) + 901a: 842a mv s0,a0 +/Users/Luppy/ox64/nuttx/libs/libc/dirent/lib_readdir.c:62 + int ret; + + if (!dirp) + 901c: ed01 bnez a0,9034 <.L2> 901c: R_RISCV_RVC_BRANCH .L2 +/Users/Luppy/ox64/nuttx/libs/libc/dirent/lib_readdir.c:64 + { + set_errno(EBADF); + 901e: 00000097 auipc ra,0x0 901e: R_RISCV_CALL __errno + 901e: R_RISCV_RELAX *ABS* + 9022: 000080e7 jalr ra # 901e + +0000000000009026 <.LVL1>: + 9026: 47a5 li a5,9 + 9028: c11c sw a5,0(a0) + +000000000000902a <.L3>: +/Users/Luppy/ox64/nuttx/libs/libc/dirent/lib_readdir.c:75 + { + return NULL; + } + + return &dirp->entry; +} + 902a: 60a2 ld ra,8(sp) + 902c: 8522 mv a0,s0 + 902e: 6402 ld s0,0(sp) + 9030: 0141 addi sp,sp,16 + 9032: 8082 ret + +0000000000009034 <.L2>: +/Users/Luppy/ox64/nuttx/libs/libc/dirent/lib_readdir.c:68 + ret = read(dirp->fd, &dirp->entry, sizeof(struct dirent)); + 9034: 4108 lw a0,0(a0) + 9036: 0411 addi s0,s0,4 + +0000000000009038 <.LVL4>: + 9038: 02200613 li a2,34 + 903c: 85a2 mv a1,s0 + 903e: 00000097 auipc ra,0x0 903e: R_RISCV_CALL read + 903e: R_RISCV_RELAX *ABS* + 9042: 000080e7 jalr ra # 903e <.LVL4+0x6> + +0000000000009046 <.LVL5>: +/Users/Luppy/ox64/nuttx/libs/libc/dirent/lib_readdir.c:69 + if (ret <= 0) + 9046: 2501 sext.w a0,a0 + 9048: fea041e3 bgtz a0,902a <.L3> 9048: R_RISCV_BRANCH .L3 +/Users/Luppy/ox64/nuttx/libs/libc/dirent/lib_readdir.c:71 + return NULL; + 904c: 4401 li s0,0 + +000000000000904e <.LVL6>: + 904e: bff1 j 902a <.L3> 904e: R_RISCV_RVC_JUMP .L3 + +0000000000009050 : +basename(): +/Users/Luppy/ox64/nuttx/libs/libc/libgen/lib_basename.c:61 + * On success the filename component of the path is returned. + * + ****************************************************************************/ + +FAR char *basename(FAR char *path) +{ + 9050: 1141 addi sp,sp,-16 + 9052: e406 sd ra,8(sp) + 9054: e022 sd s0,0(sp) +/Users/Luppy/ox64/nuttx/libs/libc/libgen/lib_basename.c:67 + FAR char *p; + size_t len; + + /* Handle some corner cases */ + + if (!path || *path == '\0') + 9056: c931 beqz a0,90aa <.L6> 9056: R_RISCV_RVC_BRANCH .L6 +/Users/Luppy/ox64/nuttx/libs/libc/libgen/lib_basename.c:67 (discriminator 1) + 9058: 00054783 lbu a5,0(a0) + 905c: 842a mv s0,a0 + 905e: c7b1 beqz a5,90aa <.L6> 905e: R_RISCV_RVC_BRANCH .L6 +/Users/Luppy/ox64/nuttx/libs/libc/libgen/lib_basename.c:74 + return "."; + } + + /* Check for trailing slash characters */ + + len = strlen(path); + 9060: 00000097 auipc ra,0x0 9060: R_RISCV_CALL strlen + 9060: R_RISCV_RELAX *ABS* + 9064: 000080e7 jalr ra # 9060 + +0000000000009068 <.LVL1>: +/Users/Luppy/ox64/nuttx/libs/libc/libgen/lib_basename.c:79 + while (path[len - 1] == '/') + { + /* Remove trailing '/' UNLESS this would make a zero length string */ + + if (len > 1) + 9068: 4785 li a5,1 + 906a: 9522 add a0,a0,s0 + +000000000000906c <.LVL2>: +/Users/Luppy/ox64/nuttx/libs/libc/libgen/lib_basename.c:75 + while (path[len - 1] == '/') + 906c: 02f00713 li a4,47 +/Users/Luppy/ox64/nuttx/libs/libc/libgen/lib_basename.c:79 + if (len > 1) + 9070: 40878633 sub a2,a5,s0 + +0000000000009074 <.L3>: +/Users/Luppy/ox64/nuttx/libs/libc/libgen/lib_basename.c:75 + while (path[len - 1] == '/') + 9074: fff54683 lbu a3,-1(a0) + 9078: 02e68163 beq a3,a4,909a <.L4> 9078: R_RISCV_BRANCH .L4 +/Users/Luppy/ox64/nuttx/libs/libc/libgen/lib_basename.c:94 + + /* Get the address of the last '/' which is not at the end of the path and, + * therefore, must be just before the beginning of the filename component. + */ + + p = strrchr(path, '/'); + 907c: 02f00593 li a1,47 + 9080: 8522 mv a0,s0 + +0000000000009082 <.LVL4>: + 9082: 00000097 auipc ra,0x0 9082: R_RISCV_CALL strrchr + 9082: R_RISCV_RELAX *ABS* + 9086: 000080e7 jalr ra # 9082 <.LVL4> + +000000000000908a <.LVL5>: +/Users/Luppy/ox64/nuttx/libs/libc/libgen/lib_basename.c:95 + if (p) + 908a: c119 beqz a0,9090 <.L2> 908a: R_RISCV_RVC_BRANCH .L2 +/Users/Luppy/ox64/nuttx/libs/libc/libgen/lib_basename.c:97 + { + return p + 1; + 908c: 00150413 addi s0,a0,1 + +0000000000009090 <.L2>: +/Users/Luppy/ox64/nuttx/libs/libc/libgen/lib_basename.c:103 + } + + /* There is no '/' in the path */ + + return path; +} + 9090: 60a2 ld ra,8(sp) + 9092: 8522 mv a0,s0 + 9094: 6402 ld s0,0(sp) + 9096: 0141 addi sp,sp,16 + 9098: 8082 ret + +000000000000909a <.L4>: +/Users/Luppy/ox64/nuttx/libs/libc/libgen/lib_basename.c:79 + if (len > 1) + 909a: 157d addi a0,a0,-1 + +000000000000909c <.LVL8>: + 909c: 00a606b3 add a3,a2,a0 + 90a0: 00d7fa63 bgeu a5,a3,90b4 <.L7> 90a0: R_RISCV_BRANCH .L7 +/Users/Luppy/ox64/nuttx/libs/libc/libgen/lib_basename.c:81 + path[len - 1] = '\0'; + 90a4: 00050023 sb zero,0(a0) + +00000000000090a8 <.LVL9>: +/Users/Luppy/ox64/nuttx/libs/libc/libgen/lib_basename.c:82 + len--; + 90a8: b7f1 j 9074 <.L3> 90a8: R_RISCV_RVC_JUMP .L3 + +00000000000090aa <.L6>: +/Users/Luppy/ox64/nuttx/libs/libc/libgen/lib_basename.c:69 + return "."; + 90aa: 00000417 auipc s0,0x0 90aa: R_RISCV_PCREL_HI20 .LC0 + 90aa: R_RISCV_RELAX *ABS* + 90ae: 00040413 mv s0,s0 90ae: R_RISCV_PCREL_LO12_I .L0 + 90ae: R_RISCV_RELAX *ABS* + 90b2: bff9 j 9090 <.L2> 90b2: R_RISCV_RVC_JUMP .L2 + +00000000000090b4 <.L7>: +/Users/Luppy/ox64/nuttx/libs/libc/libgen/lib_basename.c:86 + return "/"; + 90b4: 00000417 auipc s0,0x0 90b4: R_RISCV_PCREL_HI20 .LC1 + 90b4: R_RISCV_RELAX *ABS* + 90b8: 00040413 mv s0,s0 90b8: R_RISCV_PCREL_LO12_I .L0 + 90b8: R_RISCV_RELAX *ABS* + +00000000000090bc <.LVL12>: + 90bc: bfd1 j 9090 <.L2> 90bc: R_RISCV_RVC_JUMP .L2 + +00000000000090be : +dirname(): +/Users/Luppy/ox64/nuttx/libs/libc/libgen/lib_dirname.c:61 + * On success the directory component of the path is returned. + * + ****************************************************************************/ + +FAR char *dirname(FAR char *path) +{ + 90be: 1141 addi sp,sp,-16 + 90c0: e406 sd ra,8(sp) + 90c2: e022 sd s0,0(sp) +/Users/Luppy/ox64/nuttx/libs/libc/libgen/lib_dirname.c:67 + FAR char *p; + int len; + + /* Handle some corner cases */ + + if (!path || *path == '\0') + 90c4: c925 beqz a0,9134 <.L2> 90c4: R_RISCV_RVC_BRANCH .L2 +/Users/Luppy/ox64/nuttx/libs/libc/libgen/lib_dirname.c:67 (discriminator 1) + 90c6: 00054783 lbu a5,0(a0) + 90ca: 842a mv s0,a0 + 90cc: c7a5 beqz a5,9134 <.L2> 90cc: R_RISCV_RVC_BRANCH .L2 +/Users/Luppy/ox64/nuttx/libs/libc/libgen/lib_dirname.c:74 + return "."; + } + + /* Check for trailing slash characters */ + + len = strlen(path); + 90ce: 00000097 auipc ra,0x0 90ce: R_RISCV_CALL strlen + 90ce: R_RISCV_RELAX *ABS* + 90d2: 000080e7 jalr ra # 90ce + +00000000000090d6 <.LVL1>: +/Users/Luppy/ox64/nuttx/libs/libc/libgen/lib_dirname.c:75 + while (path[len - 1] == '/') + 90d6: 357d addiw a0,a0,-1 + +00000000000090d8 <.LVL2>: + 90d8: 02f00713 li a4,47 +/Users/Luppy/ox64/nuttx/libs/libc/libgen/lib_dirname.c:79 + { + /* Remove trailing '/' UNLESS this would make a zero length string */ + + if (len > 1) + 90dc: 4605 li a2,1 + +00000000000090de <.L3>: +/Users/Luppy/ox64/nuttx/libs/libc/libgen/lib_dirname.c:75 + while (path[len - 1] == '/') + 90de: 00a407b3 add a5,s0,a0 + 90e2: 0007c683 lbu a3,0(a5) + 90e6: 02e68663 beq a3,a4,9112 <.L6> 90e6: R_RISCV_BRANCH .L6 +/Users/Luppy/ox64/nuttx/libs/libc/libgen/lib_dirname.c:94 + + /* Get the address of the last '/' which is not at the end of the path and, + * therefore, must be the end of the directory component. + */ + + p = strrchr(path, '/'); + 90ea: 02f00593 li a1,47 + 90ee: 8522 mv a0,s0 + +00000000000090f0 <.LVL4>: + 90f0: 00000097 auipc ra,0x0 90f0: R_RISCV_CALL strrchr + 90f0: R_RISCV_RELAX *ABS* + 90f4: 000080e7 jalr ra # 90f0 <.LVL4> + +00000000000090f8 <.LVL5>: +/Users/Luppy/ox64/nuttx/libs/libc/libgen/lib_dirname.c:95 + if (p) + 90f8: cd15 beqz a0,9134 <.L2> 90f8: R_RISCV_RVC_BRANCH .L2 +/Users/Luppy/ox64/nuttx/libs/libc/libgen/lib_dirname.c:112 + + /* No, the directory component is the substring before the '/'. */ + + *p-- = '\0'; + } + while (*p == '/'); + 90fa: 02f00793 li a5,47 + +00000000000090fe <.L8>: +/Users/Luppy/ox64/nuttx/libs/libc/libgen/lib_dirname.c:103 + if (p == path) + 90fe: 00850e63 beq a0,s0,911a <.L7> 90fe: R_RISCV_BRANCH .L7 +/Users/Luppy/ox64/nuttx/libs/libc/libgen/lib_dirname.c:112 + while (*p == '/'); + 9102: fff54703 lbu a4,-1(a0) +/Users/Luppy/ox64/nuttx/libs/libc/libgen/lib_dirname.c:110 + *p-- = '\0'; + 9106: 00050023 sb zero,0(a0) + 910a: 157d addi a0,a0,-1 +/Users/Luppy/ox64/nuttx/libs/libc/libgen/lib_dirname.c:112 + while (*p == '/'); + 910c: fef709e3 beq a4,a5,90fe <.L8> 910c: R_RISCV_BRANCH .L8 + 9110: a809 j 9122 <.L5> 9110: R_RISCV_RVC_JUMP .L5 + +0000000000009112 <.L6>: +/Users/Luppy/ox64/nuttx/libs/libc/libgen/lib_dirname.c:79 + if (len > 1) + 9112: 0015069b addiw a3,a0,1 + 9116: 00d64b63 blt a2,a3,912c <.L4> 9116: R_RISCV_BRANCH .L4 + +000000000000911a <.L7>: +/Users/Luppy/ox64/nuttx/libs/libc/libgen/lib_dirname.c:86 + return "/"; + 911a: 00000417 auipc s0,0x0 911a: R_RISCV_PCREL_HI20 .LC1 + 911a: R_RISCV_RELAX *ABS* + 911e: 00040413 mv s0,s0 911e: R_RISCV_PCREL_LO12_I .L0 + 911e: R_RISCV_RELAX *ABS* + +0000000000009122 <.L5>: +/Users/Luppy/ox64/nuttx/libs/libc/libgen/lib_dirname.c:120 + } + + /* There is no '/' in the path */ + + return "."; +} + 9122: 60a2 ld ra,8(sp) + 9124: 8522 mv a0,s0 + 9126: 6402 ld s0,0(sp) + 9128: 0141 addi sp,sp,16 + 912a: 8082 ret + +000000000000912c <.L4>: +/Users/Luppy/ox64/nuttx/libs/libc/libgen/lib_dirname.c:81 + path[len - 1] = '\0'; + 912c: 00078023 sb zero,0(a5) + +0000000000009130 <.LVL11>: +/Users/Luppy/ox64/nuttx/libs/libc/libgen/lib_dirname.c:82 + len--; + 9130: 157d addi a0,a0,-1 + +0000000000009132 <.LVL12>: + 9132: b775 j 90de <.L3> 9132: R_RISCV_RVC_JUMP .L3 + +0000000000009134 <.L2>: +/Users/Luppy/ox64/nuttx/libs/libc/libgen/lib_dirname.c:69 + return "."; + 9134: 00000417 auipc s0,0x0 9134: R_RISCV_PCREL_HI20 .LC0 + 9134: R_RISCV_RELAX *ABS* + 9138: 00040413 mv s0,s0 9138: R_RISCV_PCREL_LO12_I .L0 + 9138: R_RISCV_RELAX *ABS* + 913c: b7dd j 9122 <.L5> 913c: R_RISCV_RVC_JUMP .L5 + +000000000000913e : +uname(): +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_utsname.c:82 + * Otherwise, -1 will be returned and errno set to indicate the error. + * + ****************************************************************************/ + +int uname(FAR struct utsname *name) +{ + 913e: 1101 addi sp,sp,-32 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_utsname.c:87 + int ret = 0; + + /* Copy the strings. Assure that each is NUL terminated. */ + + strlcpy(name->sysname, "NuttX", sizeof(name->sysname)); + 9140: 4655 li a2,21 + 9142: 00000597 auipc a1,0x0 9142: R_RISCV_PCREL_HI20 .LC0 + 9142: R_RISCV_RELAX *ABS* + 9146: 00058593 mv a1,a1 9146: R_RISCV_PCREL_LO12_I .L0 + 9146: R_RISCV_RELAX *ABS* +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_utsname.c:82 +{ + 914a: ec06 sd ra,24(sp) + 914c: e822 sd s0,16(sp) + 914e: e426 sd s1,8(sp) + 9150: 842a mv s0,a0 +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_utsname.c:87 + strlcpy(name->sysname, "NuttX", sizeof(name->sysname)); + 9152: 00000097 auipc ra,0x0 9152: R_RISCV_CALL strlcpy + 9152: R_RISCV_RELAX *ABS* + 9156: 000080e7 jalr ra # 9152 + +000000000000915a <.LVL1>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_utsname.c:91 + + /* Get the hostname */ + + ret = gethostname(name->nodename, HOST_NAME_MAX); + 915a: 02000593 li a1,32 + 915e: 01540513 addi a0,s0,21 # 9149 + 9162: 00000097 auipc ra,0x0 9162: R_RISCV_CALL gethostname + 9162: R_RISCV_RELAX *ABS* + 9166: 000080e7 jalr ra # 9162 <.LVL1+0x8> + +000000000000916a <.LVL2>: + 916a: 84aa mv s1,a0 + +000000000000916c <.LVL3>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_utsname.c:92 + name->nodename[HOST_NAME_MAX - 1] = '\0'; + 916c: 02040a23 sb zero,52(s0) +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_utsname.c:94 + + strlcpy(name->release, CONFIG_VERSION_STRING, sizeof(name->release)); + 9170: 4655 li a2,21 + 9172: 00000597 auipc a1,0x0 9172: R_RISCV_PCREL_HI20 .LC1 + 9172: R_RISCV_RELAX *ABS* + 9176: 00058593 mv a1,a1 9176: R_RISCV_PCREL_LO12_I .L0 + 9176: R_RISCV_RELAX *ABS* + 917a: 03540513 addi a0,s0,53 + 917e: 00000097 auipc ra,0x0 917e: R_RISCV_CALL strlcpy + 917e: R_RISCV_RELAX *ABS* + 9182: 000080e7 jalr ra # 917e <.LVL3+0x12> + +0000000000009186 <.LVL4>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_utsname.c:97 + +#if defined(__DATE__) && defined(__TIME__) + snprintf(name->version, VERSION_NAMELEN, "%s %s %s", + 9186: 00000797 auipc a5,0x0 9186: R_RISCV_PCREL_HI20 .LC2 + 9186: R_RISCV_RELAX *ABS* + 918a: 00078793 mv a5,a5 918a: R_RISCV_PCREL_LO12_I .L0 + 918a: R_RISCV_RELAX *ABS* + 918e: 00000717 auipc a4,0x0 918e: R_RISCV_PCREL_HI20 .LC3 + 918e: R_RISCV_RELAX *ABS* + 9192: 00070713 mv a4,a4 9192: R_RISCV_PCREL_LO12_I .L0 + 9192: R_RISCV_RELAX *ABS* + 9196: 00000697 auipc a3,0x0 9196: R_RISCV_PCREL_HI20 .LC4 + 9196: R_RISCV_RELAX *ABS* + 919a: 00068693 mv a3,a3 919a: R_RISCV_PCREL_LO12_I .L0 + 919a: R_RISCV_RELAX *ABS* + 919e: 00000617 auipc a2,0x0 919e: R_RISCV_PCREL_HI20 .LC5 + 919e: R_RISCV_RELAX *ABS* + 91a2: 00060613 mv a2,a2 91a2: R_RISCV_PCREL_LO12_I .L0 + 91a2: R_RISCV_RELAX *ABS* + 91a6: 03300593 li a1,51 + 91aa: 04a40513 addi a0,s0,74 + 91ae: 00000097 auipc ra,0x0 91ae: R_RISCV_CALL snprintf + 91ae: R_RISCV_RELAX *ABS* + 91b2: 000080e7 jalr ra # 91ae <.LVL4+0x28> + +00000000000091b6 <.LVL5>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_utsname.c:103 + CONFIG_VERSION_BUILD, __DATE__, __TIME__); +#else + strlcpy(name->version, CONFIG_VERSION_BUILD, sizeof(name->version)); +#endif + + strlcpy(name->machine, CONFIG_ARCH, sizeof(name->machine)); + 91b6: 07d40513 addi a0,s0,125 + 91ba: 4655 li a2,21 + 91bc: 00000597 auipc a1,0x0 91bc: R_RISCV_PCREL_HI20 .LC6 + 91bc: R_RISCV_RELAX *ABS* + 91c0: 00058593 mv a1,a1 91c0: R_RISCV_PCREL_LO12_I .L0 + 91c0: R_RISCV_RELAX *ABS* + 91c4: 00000097 auipc ra,0x0 91c4: R_RISCV_CALL strlcpy + 91c4: R_RISCV_RELAX *ABS* + 91c8: 000080e7 jalr ra # 91c4 <.LVL5+0xe> + +00000000000091cc <.LVL6>: +/Users/Luppy/ox64/nuttx/libs/libc/misc/lib_utsname.c:106 + + return ret; +} + 91cc: 60e2 ld ra,24(sp) + 91ce: 6442 ld s0,16(sp) + +00000000000091d0 <.LVL7>: + 91d0: 8526 mv a0,s1 + 91d2: 64a2 ld s1,8(sp) + +00000000000091d4 <.LVL8>: + 91d4: 6105 addi sp,sp,32 + 91d6: 8082 ret + +00000000000091d8 : +pthread_attr_init(): +/Users/Luppy/ox64/nuttx/libs/libc/pthread/pthread_attr_init.c:75 +int pthread_attr_init(FAR pthread_attr_t *attr) +{ + int ret = OK; + + linfo("attr=%p\n", attr); + if (!attr) + 91d8: c105 beqz a0,91f8 <.L3> 91d8: R_RISCV_RVC_BRANCH .L3 +/Users/Luppy/ox64/nuttx/libs/libc/pthread/pthread_attr_init.c:71 +{ + 91da: 1141 addi sp,sp,-16 +/Users/Luppy/ox64/nuttx/libs/libc/pthread/pthread_attr_init.c:86 + /* Set the child thread priority to be the default + * priority. Set the child stack size to some arbitrary + * default value. + */ + + memcpy(attr, &g_default_pthread_attr, sizeof(pthread_attr_t)); + 91dc: 4661 li a2,24 + 91de: 00000597 auipc a1,0x0 91de: R_RISCV_PCREL_HI20 .LANCHOR0 + 91de: R_RISCV_RELAX *ABS* + 91e2: 00058593 mv a1,a1 91e2: R_RISCV_PCREL_LO12_I .L0 + 91e2: R_RISCV_RELAX *ABS* +/Users/Luppy/ox64/nuttx/libs/libc/pthread/pthread_attr_init.c:71 +{ + 91e6: e406 sd ra,8(sp) +/Users/Luppy/ox64/nuttx/libs/libc/pthread/pthread_attr_init.c:86 + memcpy(attr, &g_default_pthread_attr, sizeof(pthread_attr_t)); + 91e8: 00000097 auipc ra,0x0 91e8: R_RISCV_CALL memcpy + 91e8: R_RISCV_RELAX *ABS* + 91ec: 000080e7 jalr ra # 91e8 + +00000000000091f0 <.LVL1>: +/Users/Luppy/ox64/nuttx/libs/libc/pthread/pthread_attr_init.c:91 + } + + linfo("Returning %d\n", ret); + return ret; +} + 91f0: 60a2 ld ra,8(sp) +/Users/Luppy/ox64/nuttx/libs/libc/pthread/pthread_attr_init.c:72 + int ret = OK; + 91f2: 4501 li a0,0 + +00000000000091f4 <.LVL2>: +/Users/Luppy/ox64/nuttx/libs/libc/pthread/pthread_attr_init.c:91 +} + 91f4: 0141 addi sp,sp,16 + 91f6: 8082 ret + +00000000000091f8 <.L3>: +/Users/Luppy/ox64/nuttx/libs/libc/pthread/pthread_attr_init.c:77 + ret = ENOMEM; + 91f8: 4531 li a0,12 + +00000000000091fa <.LVL4>: +/Users/Luppy/ox64/nuttx/libs/libc/pthread/pthread_attr_init.c:91 +} + 91fa: 8082 ret + +00000000000091fc : +pthread_attr_setschedpolicy(): +/Users/Luppy/ox64/nuttx/libs/libc/pthread/pthread_attr_setschedpolicy.c:55 + * Assumptions: + * + ****************************************************************************/ + +int pthread_attr_setschedpolicy(FAR pthread_attr_t *attr, int policy) +{ + 91fc: 87aa mv a5,a0 +/Users/Luppy/ox64/nuttx/libs/libc/pthread/pthread_attr_setschedpolicy.c:60 + int ret; + + linfo("attr=%p policy=%d\n", attr, policy); + + if (!attr || (policy != SCHED_OTHER + 91fe: c909 beqz a0,9210 <.L3> 91fe: R_RISCV_RVC_BRANCH .L3 +/Users/Luppy/ox64/nuttx/libs/libc/pthread/pthread_attr_setschedpolicy.c:60 (discriminator 1) + 9200: 4709 li a4,2 +/Users/Luppy/ox64/nuttx/libs/libc/pthread/pthread_attr_setschedpolicy.c:70 (discriminator 1) +#ifdef CONFIG_SCHED_SPORADIC + && policy != SCHED_SPORADIC +#endif + )) + { + ret = EINVAL; + 9202: 4559 li a0,22 + +0000000000009204 <.LVL1>: +/Users/Luppy/ox64/nuttx/libs/libc/pthread/pthread_attr_setschedpolicy.c:60 (discriminator 1) + if (!attr || (policy != SCHED_OTHER + 9204: 00b76763 bltu a4,a1,9212 <.L2> 9204: R_RISCV_BRANCH .L2 +/Users/Luppy/ox64/nuttx/libs/libc/pthread/pthread_attr_setschedpolicy.c:74 + } + else + { + attr->policy = policy; + 9208: 00b780a3 sb a1,1(a5) # 9187 <.LVL4+0x1> + +000000000000920c <.LVL2>: +/Users/Luppy/ox64/nuttx/libs/libc/pthread/pthread_attr_setschedpolicy.c:75 + ret = OK; + 920c: 4501 li a0,0 + 920e: 8082 ret + +0000000000009210 <.L3>: +/Users/Luppy/ox64/nuttx/libs/libc/pthread/pthread_attr_setschedpolicy.c:70 + ret = EINVAL; + 9210: 4559 li a0,22 + +0000000000009212 <.L2>: +/Users/Luppy/ox64/nuttx/libs/libc/pthread/pthread_attr_setschedpolicy.c:80 (discriminator 3) + } + + linfo("Returning %d\n", ret); + return ret; +} + 9212: 8082 ret + +0000000000009214 : +pthread_attr_setschedparam(): +/Users/Luppy/ox64/nuttx/libs/libc/pthread/pthread_attr_setschedparam.c:55 + * + ****************************************************************************/ + +int pthread_attr_setschedparam(FAR pthread_attr_t *attr, + FAR const struct sched_param *param) +{ + 9214: 87aa mv a5,a0 +/Users/Luppy/ox64/nuttx/libs/libc/pthread/pthread_attr_setschedparam.c:62 + + linfo("attr=%p param=%p\n", attr, param); + + if (!attr || !param) + { + ret = EINVAL; + 9216: 4559 li a0,22 + +0000000000009218 <.LVL1>: +/Users/Luppy/ox64/nuttx/libs/libc/pthread/pthread_attr_setschedparam.c:60 + if (!attr || !param) + 9218: c799 beqz a5,9226 <.L2> 9218: R_RISCV_RVC_BRANCH .L2 +/Users/Luppy/ox64/nuttx/libs/libc/pthread/pthread_attr_setschedparam.c:60 (discriminator 1) + 921a: c591 beqz a1,9226 <.L2> 921a: R_RISCV_RVC_BRANCH .L2 +/Users/Luppy/ox64/nuttx/libs/libc/pthread/pthread_attr_setschedparam.c:66 + } + else + { + attr->priority = (short)param->sched_priority; + 921c: 4198 lw a4,0(a1) +/Users/Luppy/ox64/nuttx/libs/libc/pthread/pthread_attr_setschedparam.c:75 + attr->repl_period.tv_sec = param->sched_ss_repl_period.tv_sec; + attr->repl_period.tv_nsec = param->sched_ss_repl_period.tv_nsec; + attr->budget.tv_sec = param->sched_ss_init_budget.tv_sec; + attr->budget.tv_nsec = param->sched_ss_init_budget.tv_nsec; +#endif + ret = OK; + 921e: 4501 li a0,0 +/Users/Luppy/ox64/nuttx/libs/libc/pthread/pthread_attr_setschedparam.c:66 + attr->priority = (short)param->sched_priority; + 9220: 00e78023 sb a4,0(a5) + +0000000000009224 <.LVL2>: +/Users/Luppy/ox64/nuttx/libs/libc/pthread/pthread_attr_setschedparam.c:75 + ret = OK; + 9224: 8082 ret + +0000000000009226 <.L2>: +/Users/Luppy/ox64/nuttx/libs/libc/pthread/pthread_attr_setschedparam.c:80 (discriminator 3) + } + + linfo("Returning %d\n", ret); + return ret; +} + 9226: 8082 ret + +0000000000009228 : +pthread_startup(): +/Users/Luppy/ox64/nuttx/libs/libc/pthread/pthread_create.c:54 + * + ****************************************************************************/ + +static void pthread_startup(pthread_startroutine_t entry, + pthread_addr_t arg) +{ + 9228: 1141 addi sp,sp,-16 + 922a: e406 sd ra,8(sp) + 922c: 87aa mv a5,a0 +/Users/Luppy/ox64/nuttx/libs/libc/pthread/pthread_create.c:55 + DEBUGASSERT(entry != NULL); + 922e: ed19 bnez a0,924c <.L2> 922e: R_RISCV_RVC_BRANCH .L2 +/Users/Luppy/ox64/nuttx/libs/libc/pthread/pthread_create.c:55 (discriminator 1) + 9230: 00000617 auipc a2,0x0 9230: R_RISCV_PCREL_HI20 .LC0 + 9230: R_RISCV_RELAX *ABS* + 9234: 00060613 mv a2,a2 9234: R_RISCV_PCREL_LO12_I .L0 + 9234: R_RISCV_RELAX *ABS* + 9238: 03700593 li a1,55 + +000000000000923c <.LVL1>: + 923c: 00000517 auipc a0,0x0 923c: R_RISCV_PCREL_HI20 .LC1 + 923c: R_RISCV_RELAX *ABS* + 9240: 00050513 mv a0,a0 9240: R_RISCV_PCREL_LO12_I .L0 + 9240: R_RISCV_RELAX *ABS* + +0000000000009244 <.LVL2>: + 9244: 00000097 auipc ra,0x0 9244: R_RISCV_CALL __assert + 9244: R_RISCV_RELAX *ABS* + 9248: 000080e7 jalr ra # 9244 <.LVL2> + +000000000000924c <.L2>: + 924c: 852e mv a0,a1 + +000000000000924e <.LVL4>: +/Users/Luppy/ox64/nuttx/libs/libc/pthread/pthread_create.c:59 (discriminator 2) + + /* Pass control to the thread entry point. Handle any returned value. */ + + pthread_exit(entry(arg)); + 924e: 9782 jalr a5 + +0000000000009250 <.LVL5>: + 9250: 00000097 auipc ra,0x0 9250: R_RISCV_CALL pthread_exit + 9250: R_RISCV_RELAX *ABS* + 9254: 000080e7 jalr ra # 9250 <.LVL5> + +0000000000009258 : +pthread_create(): +/Users/Luppy/ox64/nuttx/libs/libc/pthread/pthread_create.c:88 + * + ****************************************************************************/ + +int pthread_create(FAR pthread_t *thread, FAR const pthread_attr_t *attr, + pthread_startroutine_t pthread_entry, pthread_addr_t arg) +{ + 9258: 8736 mv a4,a3 +/Users/Luppy/ox64/nuttx/libs/libc/pthread/pthread_create.c:89 + return nx_pthread_create(pthread_startup, thread, attr, pthread_entry, + 925a: 86b2 mv a3,a2 + +000000000000925c <.LVL8>: + 925c: 862e mv a2,a1 + +000000000000925e <.LVL9>: + 925e: 85aa mv a1,a0 + +0000000000009260 <.LVL10>: + 9260: 00000517 auipc a0,0x0 9260: R_RISCV_PCREL_HI20 pthread_startup + 9260: R_RISCV_RELAX *ABS* + 9264: 00050513 mv a0,a0 9264: R_RISCV_PCREL_LO12_I .L0 + 9264: R_RISCV_RELAX *ABS* + +0000000000009268 <.LVL11>: + 9268: 00000317 auipc t1,0x0 9268: R_RISCV_CALL nx_pthread_create + 9268: R_RISCV_RELAX *ABS* + 926c: 00030067 jr t1 # 9268 <.LVL11> + +0000000000009270 : +sq_remfirst(): +/Users/Luppy/ox64/nuttx/libs/libc/queue/sq_remfirst.c:40 + * sq_remfirst function removes the first entry from 'queue' + * + ****************************************************************************/ + +FAR sq_entry_t *sq_remfirst(sq_queue_t *queue) +{ + 9270: 87aa mv a5,a0 +/Users/Luppy/ox64/nuttx/libs/libc/queue/sq_remfirst.c:41 + FAR sq_entry_t *ret = queue->head; + 9272: 6108 ld a0,0(a0) + +0000000000009274 <.LVL1>: +/Users/Luppy/ox64/nuttx/libs/libc/queue/sq_remfirst.c:43 + + if (ret) + 9274: c901 beqz a0,9284 <.L1> 9274: R_RISCV_RVC_BRANCH .L1 +/Users/Luppy/ox64/nuttx/libs/libc/queue/sq_remfirst.c:45 + { + queue->head = ret->flink; + 9276: 6118 ld a4,0(a0) + 9278: e398 sd a4,0(a5) +/Users/Luppy/ox64/nuttx/libs/libc/queue/sq_remfirst.c:46 + if (!queue->head) + 927a: e319 bnez a4,9280 <.L3> 927a: R_RISCV_RVC_BRANCH .L3 +/Users/Luppy/ox64/nuttx/libs/libc/queue/sq_remfirst.c:48 + { + queue->tail = NULL; + 927c: 0007b423 sd zero,8(a5) + +0000000000009280 <.L3>: +/Users/Luppy/ox64/nuttx/libs/libc/queue/sq_remfirst.c:51 + } + + ret->flink = NULL; + 9280: 00053023 sd zero,0(a0) # 9260 <.LVL10> + +0000000000009284 <.L1>: +/Users/Luppy/ox64/nuttx/libs/libc/queue/sq_remfirst.c:55 + } + + return ret; +} + 9284: 8082 ret + +0000000000009286 : +sq_remafter(): +/Users/Luppy/ox64/nuttx/libs/libc/queue/sq_remafter.c:44 + +FAR sq_entry_t *sq_remafter(FAR sq_entry_t *node, sq_queue_t *queue) +{ + FAR sq_entry_t *ret = node->flink; + + if (queue->head && ret) + 9286: 6198 ld a4,0(a1) +/Users/Luppy/ox64/nuttx/libs/libc/queue/sq_remafter.c:41 +{ + 9288: 87aa mv a5,a0 +/Users/Luppy/ox64/nuttx/libs/libc/queue/sq_remafter.c:42 + FAR sq_entry_t *ret = node->flink; + 928a: 6108 ld a0,0(a0) + +000000000000928c <.LVL1>: +/Users/Luppy/ox64/nuttx/libs/libc/queue/sq_remafter.c:44 + if (queue->head && ret) + 928c: cb11 beqz a4,92a0 <.L1> 928c: R_RISCV_RVC_BRANCH .L1 +/Users/Luppy/ox64/nuttx/libs/libc/queue/sq_remafter.c:44 (discriminator 1) + 928e: c909 beqz a0,92a0 <.L1> 928e: R_RISCV_RVC_BRANCH .L1 +/Users/Luppy/ox64/nuttx/libs/libc/queue/sq_remafter.c:46 + { + if (queue->tail == ret) + 9290: 6598 ld a4,8(a1) + 9292: 00a71863 bne a4,a0,92a2 <.L3> 9292: R_RISCV_BRANCH .L3 +/Users/Luppy/ox64/nuttx/libs/libc/queue/sq_remafter.c:48 + { + queue->tail = node; + 9296: e59c sd a5,8(a1) +/Users/Luppy/ox64/nuttx/libs/libc/queue/sq_remafter.c:49 + node->flink = NULL; + 9298: 0007b023 sd zero,0(a5) + +000000000000929c <.L4>: +/Users/Luppy/ox64/nuttx/libs/libc/queue/sq_remafter.c:56 + else + { + node->flink = ret->flink; + } + + ret->flink = NULL; + 929c: 00053023 sd zero,0(a0) + +00000000000092a0 <.L1>: +/Users/Luppy/ox64/nuttx/libs/libc/queue/sq_remafter.c:60 + } + + return ret; +} + 92a0: 8082 ret + +00000000000092a2 <.L3>: +/Users/Luppy/ox64/nuttx/libs/libc/queue/sq_remafter.c:53 + node->flink = ret->flink; + 92a2: 6118 ld a4,0(a0) + 92a4: e398 sd a4,0(a5) + 92a6: bfdd j 929c <.L4> 92a6: R_RISCV_RVC_JUMP .L4 + +00000000000092a8 : +sched_get_priority_max(): +/Users/Luppy/ox64/nuttx/libs/libc/sched/sched_getprioritymax.c:55 + * + ****************************************************************************/ + +int sched_get_priority_max(int policy) +{ + if (policy < SCHED_OTHER || policy > SCHED_SPORADIC) + 92a8: 478d li a5,3 + 92aa: 00a7fe63 bgeu a5,a0,92c6 <.L3> 92aa: R_RISCV_BRANCH .L3 +/Users/Luppy/ox64/nuttx/libs/libc/sched/sched_getprioritymax.c:54 +{ + 92ae: 1141 addi sp,sp,-16 + 92b0: e406 sd ra,8(sp) +/Users/Luppy/ox64/nuttx/libs/libc/sched/sched_getprioritymax.c:57 + { + set_errno(EINVAL); + 92b2: 00000097 auipc ra,0x0 92b2: R_RISCV_CALL __errno + 92b2: R_RISCV_RELAX *ABS* + 92b6: 000080e7 jalr ra # 92b2 + +00000000000092ba <.LVL1>: + 92ba: 47d9 li a5,22 + 92bc: c11c sw a5,0(a0) +/Users/Luppy/ox64/nuttx/libs/libc/sched/sched_getprioritymax.c:62 + return ERROR; + } + + return SCHED_PRIORITY_MAX; +} + 92be: 60a2 ld ra,8(sp) +/Users/Luppy/ox64/nuttx/libs/libc/sched/sched_getprioritymax.c:58 + return ERROR; + 92c0: 557d li a0,-1 +/Users/Luppy/ox64/nuttx/libs/libc/sched/sched_getprioritymax.c:62 +} + 92c2: 0141 addi sp,sp,16 + 92c4: 8082 ret + +00000000000092c6 <.L3>: +/Users/Luppy/ox64/nuttx/libs/libc/sched/sched_getprioritymax.c:61 + return SCHED_PRIORITY_MAX; + 92c6: 0ff00513 li a0,255 + +00000000000092ca <.LVL3>: +/Users/Luppy/ox64/nuttx/libs/libc/sched/sched_getprioritymax.c:62 +} + 92ca: 8082 ret + +00000000000092cc : +sched_get_priority_min(): +/Users/Luppy/ox64/nuttx/libs/libc/sched/sched_getprioritymin.c:55 + * + ****************************************************************************/ + +int sched_get_priority_min(int policy) +{ + DEBUGASSERT(policy >= SCHED_OTHER && policy <= SCHED_SPORADIC); + 92cc: 478d li a5,3 + 92ce: 02a7f263 bgeu a5,a0,92f2 <.L2> 92ce: R_RISCV_BRANCH .L2 +/Users/Luppy/ox64/nuttx/libs/libc/sched/sched_getprioritymin.c:54 (discriminator 1) +{ + 92d2: 1141 addi sp,sp,-16 +/Users/Luppy/ox64/nuttx/libs/libc/sched/sched_getprioritymin.c:55 (discriminator 1) + DEBUGASSERT(policy >= SCHED_OTHER && policy <= SCHED_SPORADIC); + 92d4: 00000617 auipc a2,0x0 92d4: R_RISCV_PCREL_HI20 .LC0 + 92d4: R_RISCV_RELAX *ABS* + 92d8: 00060613 mv a2,a2 92d8: R_RISCV_PCREL_LO12_I .L0 + 92d8: R_RISCV_RELAX *ABS* + 92dc: 03700593 li a1,55 + 92e0: 00000517 auipc a0,0x0 92e0: R_RISCV_PCREL_HI20 .LC1 + 92e0: R_RISCV_RELAX *ABS* + 92e4: 00050513 mv a0,a0 92e4: R_RISCV_PCREL_LO12_I .L0 + 92e4: R_RISCV_RELAX *ABS* + +00000000000092e8 <.LVL1>: +/Users/Luppy/ox64/nuttx/libs/libc/sched/sched_getprioritymin.c:54 (discriminator 1) +{ + 92e8: e406 sd ra,8(sp) +/Users/Luppy/ox64/nuttx/libs/libc/sched/sched_getprioritymin.c:55 (discriminator 1) + DEBUGASSERT(policy >= SCHED_OTHER && policy <= SCHED_SPORADIC); + 92ea: 00000097 auipc ra,0x0 92ea: R_RISCV_CALL __assert + 92ea: R_RISCV_RELAX *ABS* + 92ee: 000080e7 jalr ra # 92ea <.LVL1+0x2> + +00000000000092f2 <.L2>: +/Users/Luppy/ox64/nuttx/libs/libc/sched/sched_getprioritymin.c:57 (discriminator 2) + return SCHED_PRIORITY_MIN; +} + 92f2: 4505 li a0,1 + +00000000000092f4 <.LVL3>: + 92f4: 8082 ret + +00000000000092f6 : +posix_spawn_file_actions_addopen(): +/Users/Luppy/ox64/nuttx/libs/libc/spawn/lib_psfa_addopen.c:71 + +int posix_spawn_file_actions_addopen( + FAR posix_spawn_file_actions_t *file_actions, + int fd, FAR const char *path, int oflags, + mode_t mode) +{ + 92f6: 7139 addi sp,sp,-64 + 92f8: fc06 sd ra,56(sp) + 92fa: f822 sd s0,48(sp) + 92fc: f426 sd s1,40(sp) + 92fe: f04a sd s2,32(sp) + 9300: ec4e sd s3,24(sp) + 9302: e852 sd s4,16(sp) + 9304: e456 sd s5,8(sp) + 9306: e05a sd s6,0(sp) +/Users/Luppy/ox64/nuttx/libs/libc/spawn/lib_psfa_addopen.c:76 + FAR struct spawn_open_file_action_s *entry; + size_t len; + size_t alloc; + + DEBUGASSERT(file_actions && path && fd >= 0); + 9308: c511 beqz a0,9314 <.L2> 9308: R_RISCV_RVC_BRANCH .L2 + 930a: 84b2 mv s1,a2 +/Users/Luppy/ox64/nuttx/libs/libc/spawn/lib_psfa_addopen.c:76 (discriminator 2) + 930c: c601 beqz a2,9314 <.L2> 930c: R_RISCV_RVC_BRANCH .L2 + 930e: 8a2e mv s4,a1 +/Users/Luppy/ox64/nuttx/libs/libc/spawn/lib_psfa_addopen.c:76 + 9310: 0205d063 bgez a1,9330 <.L3> 9310: R_RISCV_BRANCH .L3 + +0000000000009314 <.L2>: +/Users/Luppy/ox64/nuttx/libs/libc/spawn/lib_psfa_addopen.c:76 (discriminator 9) + 9314: 00000617 auipc a2,0x0 9314: R_RISCV_PCREL_HI20 .LC0 + 9314: R_RISCV_RELAX *ABS* + 9318: 00060613 mv a2,a2 9318: R_RISCV_PCREL_LO12_I .L0 + 9318: R_RISCV_RELAX *ABS* + +000000000000931c <.LVL1>: + 931c: 04c00593 li a1,76 + +0000000000009320 <.LVL2>: + 9320: 00000517 auipc a0,0x0 9320: R_RISCV_PCREL_HI20 .LC1 + 9320: R_RISCV_RELAX *ABS* + 9324: 00050513 mv a0,a0 9324: R_RISCV_PCREL_LO12_I .L0 + 9324: R_RISCV_RELAX *ABS* + +0000000000009328 <.LVL3>: + 9328: 00000097 auipc ra,0x0 9328: R_RISCV_CALL __assert + 9328: R_RISCV_RELAX *ABS* + 932c: 000080e7 jalr ra # 9328 <.LVL3> + +0000000000009330 <.L3>: + 9330: 892a mv s2,a0 +/Users/Luppy/ox64/nuttx/libs/libc/spawn/lib_psfa_addopen.c:82 (discriminator 10) + + /* Get the size of the action including storage for the path plus its NUL + * terminating character. + */ + + len = strlen(path); + 9332: 8532 mv a0,a2 + +0000000000009334 <.LVL5>: + 9334: 8b36 mv s6,a3 + 9336: 8aba mv s5,a4 + 9338: 00000097 auipc ra,0x0 9338: R_RISCV_CALL strlen + 9338: R_RISCV_RELAX *ABS* + 933c: 000080e7 jalr ra # 9338 <.LVL5+0x4> + +0000000000009340 <.LVL6>: + 9340: 89aa mv s3,a0 + +0000000000009342 <.LVL7>: +/Users/Luppy/ox64/nuttx/libs/libc/spawn/lib_psfa_addopen.c:87 (discriminator 10) + alloc = SIZEOF_OPEN_FILE_ACTION_S(len); + + /* Allocate the action list entry of this size */ + + entry = (FAR struct spawn_open_file_action_s *)lib_zalloc(alloc); + 9342: 02050513 addi a0,a0,32 # 9340 <.LVL6> + +0000000000009346 <.LVL8>: + 9346: 00000097 auipc ra,0x0 9346: R_RISCV_CALL zalloc + 9346: R_RISCV_RELAX *ABS* + 934a: 000080e7 jalr ra # 9346 <.LVL8> + +000000000000934e <.LVL9>: + 934e: 842a mv s0,a0 + +0000000000009350 <.LVL10>: +/Users/Luppy/ox64/nuttx/libs/libc/spawn/lib_psfa_addopen.c:90 (discriminator 10) + if (!entry) + { + return ENOMEM; + 9350: 4531 li a0,12 +/Users/Luppy/ox64/nuttx/libs/libc/spawn/lib_psfa_addopen.c:88 (discriminator 10) + if (!entry) + 9352: c80d beqz s0,9384 <.L4> 9352: R_RISCV_RVC_BRANCH .L4 +/Users/Luppy/ox64/nuttx/libs/libc/spawn/lib_psfa_addopen.c:95 + } + + /* Initialize the file action entry */ + + entry->action = SPAWN_FILE_ACTION_OPEN; + 9354: 478d li a5,3 +/Users/Luppy/ox64/nuttx/libs/libc/spawn/lib_psfa_addopen.c:99 + entry->fd = fd; + entry->oflags = oflags; + entry->mode = mode; + strlcpy(entry->path, path, len + 1); + 9356: 00198613 addi a2,s3,1 + 935a: 85a6 mv a1,s1 + 935c: 01840513 addi a0,s0,24 +/Users/Luppy/ox64/nuttx/libs/libc/spawn/lib_psfa_addopen.c:95 + entry->action = SPAWN_FILE_ACTION_OPEN; + 9360: c41c sw a5,8(s0) +/Users/Luppy/ox64/nuttx/libs/libc/spawn/lib_psfa_addopen.c:96 + entry->fd = fd; + 9362: 01442623 sw s4,12(s0) +/Users/Luppy/ox64/nuttx/libs/libc/spawn/lib_psfa_addopen.c:97 + entry->oflags = oflags; + 9366: 01642823 sw s6,16(s0) +/Users/Luppy/ox64/nuttx/libs/libc/spawn/lib_psfa_addopen.c:98 + entry->mode = mode; + 936a: 01542a23 sw s5,20(s0) +/Users/Luppy/ox64/nuttx/libs/libc/spawn/lib_psfa_addopen.c:99 + strlcpy(entry->path, path, len + 1); + 936e: 00000097 auipc ra,0x0 936e: R_RISCV_CALL strlcpy + 936e: R_RISCV_RELAX *ABS* + 9372: 000080e7 jalr ra # 936e <.LVL10+0x1e> + +0000000000009376 <.LVL11>: +/Users/Luppy/ox64/nuttx/libs/libc/spawn/lib_psfa_addopen.c:103 + + /* And add it to the file action list */ + + add_file_action(file_actions, + 9376: 854a mv a0,s2 + 9378: 85a2 mv a1,s0 + 937a: 00000097 auipc ra,0x0 937a: R_RISCV_CALL add_file_action + 937a: R_RISCV_RELAX *ABS* + 937e: 000080e7 jalr ra # 937a <.LVL11+0x4> + +0000000000009382 <.LVL12>: +/Users/Luppy/ox64/nuttx/libs/libc/spawn/lib_psfa_addopen.c:105 + (FAR struct spawn_general_file_action_s *)entry); + return OK; + 9382: 4501 li a0,0 + +0000000000009384 <.L4>: +/Users/Luppy/ox64/nuttx/libs/libc/spawn/lib_psfa_addopen.c:106 +} + 9384: 70e2 ld ra,56(sp) + 9386: 7442 ld s0,48(sp) + +0000000000009388 <.LVL13>: + 9388: 74a2 ld s1,40(sp) + +000000000000938a <.LVL14>: + 938a: 7902 ld s2,32(sp) + +000000000000938c <.LVL15>: + 938c: 69e2 ld s3,24(sp) + +000000000000938e <.LVL16>: + 938e: 6a42 ld s4,16(sp) + 9390: 6aa2 ld s5,8(sp) + 9392: 6b02 ld s6,0(sp) + 9394: 6121 addi sp,sp,64 + 9396: 8082 ret + +0000000000009398 : +posix_spawn_file_actions_destroy(): +/Users/Luppy/ox64/nuttx/libs/libc/spawn/lib_psfa_destroy.c:62 + * + ****************************************************************************/ + +int posix_spawn_file_actions_destroy( + FAR posix_spawn_file_actions_t *file_actions) +{ + 9398: 1101 addi sp,sp,-32 + 939a: ec06 sd ra,24(sp) + 939c: e822 sd s0,16(sp) + 939e: e426 sd s1,8(sp) +/Users/Luppy/ox64/nuttx/libs/libc/spawn/lib_psfa_destroy.c:66 + FAR struct spawn_general_file_action_s *curr; + FAR struct spawn_general_file_action_s *next; + + DEBUGASSERT(file_actions); + 93a0: ed19 bnez a0,93be <.L2> 93a0: R_RISCV_RVC_BRANCH .L2 +/Users/Luppy/ox64/nuttx/libs/libc/spawn/lib_psfa_destroy.c:66 (discriminator 1) + 93a2: 00000617 auipc a2,0x0 93a2: R_RISCV_PCREL_HI20 .LC0 + 93a2: R_RISCV_RELAX *ABS* + 93a6: 00060613 mv a2,a2 93a6: R_RISCV_PCREL_LO12_I .L0 + 93a6: R_RISCV_RELAX *ABS* + 93aa: 04200593 li a1,66 + 93ae: 00000517 auipc a0,0x0 93ae: R_RISCV_PCREL_HI20 .LC1 + 93ae: R_RISCV_RELAX *ABS* + 93b2: 00050513 mv a0,a0 93b2: R_RISCV_PCREL_LO12_I .L0 + 93b2: R_RISCV_RELAX *ABS* + +00000000000093b6 <.LVL1>: + 93b6: 00000097 auipc ra,0x0 93b6: R_RISCV_CALL __assert + 93b6: R_RISCV_RELAX *ABS* + 93ba: 000080e7 jalr ra # 93b6 <.LVL1> + +00000000000093be <.L2>: + 93be: 842a mv s0,a0 +/Users/Luppy/ox64/nuttx/libs/libc/spawn/lib_psfa_destroy.c:70 (discriminator 2) + + /* Destroy each file action, one at a time */ + + for (curr = (FAR struct spawn_general_file_action_s *)*file_actions; + 93c0: 6108 ld a0,0(a0) + +00000000000093c2 <.L3>: +/Users/Luppy/ox64/nuttx/libs/libc/spawn/lib_psfa_destroy.c:70 (discriminator 1) + 93c2: e901 bnez a0,93d2 <.L4> 93c2: R_RISCV_RVC_BRANCH .L4 +/Users/Luppy/ox64/nuttx/libs/libc/spawn/lib_psfa_destroy.c:84 + lib_free(curr); + } + + /* Mark the list empty */ + + *file_actions = NULL; + 93c4: 00043023 sd zero,0(s0) +/Users/Luppy/ox64/nuttx/libs/libc/spawn/lib_psfa_destroy.c:86 + return OK; +} + 93c8: 60e2 ld ra,24(sp) + 93ca: 6442 ld s0,16(sp) + +00000000000093cc <.LVL4>: + 93cc: 64a2 ld s1,8(sp) + 93ce: 6105 addi sp,sp,32 + 93d0: 8082 ret + +00000000000093d2 <.L4>: +/Users/Luppy/ox64/nuttx/libs/libc/spawn/lib_psfa_destroy.c:78 + next = curr->flink; + 93d2: 6104 ld s1,0(a0) +/Users/Luppy/ox64/nuttx/libs/libc/spawn/lib_psfa_destroy.c:79 + lib_free(curr); + 93d4: 00000097 auipc ra,0x0 93d4: R_RISCV_CALL free + 93d4: R_RISCV_RELAX *ABS* + 93d8: 000080e7 jalr ra # 93d4 <.L4+0x2> + +00000000000093dc <.LVL7>: +/Users/Luppy/ox64/nuttx/libs/libc/spawn/lib_psfa_destroy.c:72 + curr = next) + 93dc: 8526 mv a0,s1 + 93de: b7d5 j 93c2 <.L3> 93de: R_RISCV_RVC_JUMP .L3 + +00000000000093e0 : +posix_spawn_file_actions_init(): +/Users/Luppy/ox64/nuttx/libs/libc/spawn/lib_psfa_init.c:54 + ****************************************************************************/ + +int posix_spawn_file_actions_init( + FAR posix_spawn_file_actions_t *file_actions) +{ + *file_actions = NULL; + 93e0: 00053023 sd zero,0(a0) # 93ae +/Users/Luppy/ox64/nuttx/libs/libc/spawn/lib_psfa_init.c:56 + return OK; +} + 93e4: 4501 li a0,0 + +00000000000093e6 <.LVL1>: + 93e6: 8082 ret + +00000000000093e8 : +posix_spawnattr_init(): +/Users/Luppy/ox64/nuttx/libs/libc/spawn/lib_psa_init.c:56 + * number from . + * + ****************************************************************************/ + +int posix_spawnattr_init(posix_spawnattr_t *attr) +{ + 93e8: 1101 addi sp,sp,-32 + 93ea: ec06 sd ra,24(sp) + 93ec: e822 sd s0,16(sp) +/Users/Luppy/ox64/nuttx/libs/libc/spawn/lib_psa_init.c:60 + struct sched_param param; + int ret; + + DEBUGASSERT(attr); + 93ee: ed19 bnez a0,940c <.L2> 93ee: R_RISCV_RVC_BRANCH .L2 +/Users/Luppy/ox64/nuttx/libs/libc/spawn/lib_psa_init.c:60 (discriminator 1) + 93f0: 00000617 auipc a2,0x0 93f0: R_RISCV_PCREL_HI20 .LC0 + 93f0: R_RISCV_RELAX *ABS* + 93f4: 00060613 mv a2,a2 93f4: R_RISCV_PCREL_LO12_I .L0 + 93f4: R_RISCV_RELAX *ABS* + 93f8: 03c00593 li a1,60 + 93fc: 00000517 auipc a0,0x0 93fc: R_RISCV_PCREL_HI20 .LC1 + 93fc: R_RISCV_RELAX *ABS* + 9400: 00050513 mv a0,a0 9400: R_RISCV_PCREL_LO12_I .L0 + 9400: R_RISCV_RELAX *ABS* + +0000000000009404 <.LVL1>: + 9404: 00000097 auipc ra,0x0 9404: R_RISCV_CALL __assert + 9404: R_RISCV_RELAX *ABS* + 9408: 000080e7 jalr ra # 9404 <.LVL1> + +000000000000940c <.L2>: + 940c: 842a mv s0,a0 +/Users/Luppy/ox64/nuttx/libs/libc/spawn/lib_psa_init.c:64 (discriminator 2) + + /* Flags: None */ + + attr->flags = 0; + 940e: 00050023 sb zero,0(a0) # 93fc +/Users/Luppy/ox64/nuttx/libs/libc/spawn/lib_psa_init.c:68 (discriminator 2) + + /* Set the default priority to the same priority as this task */ + + ret = _SCHED_GETPARAM(0, ¶m); + 9412: 002c addi a1,sp,8 + 9414: 4501 li a0,0 + +0000000000009416 <.LVL3>: + 9416: 00000097 auipc ra,0x0 9416: R_RISCV_CALL sched_getparam + 9416: R_RISCV_RELAX *ABS* + 941a: 000080e7 jalr ra # 9416 <.LVL3> + +000000000000941e <.LVL4>: +/Users/Luppy/ox64/nuttx/libs/libc/spawn/lib_psa_init.c:69 (discriminator 2) + if (ret < 0) + 941e: 00055b63 bgez a0,9434 <.L3> 941e: R_RISCV_BRANCH .L3 + +0000000000009422 <.L7>: +/Users/Luppy/ox64/nuttx/libs/libc/spawn/lib_psa_init.c:81 + /* Set the default scheduler policy to the policy of this task */ + + ret = _SCHED_GETSCHEDULER(0); + if (ret < 0) + { + return _SCHED_ERRNO(ret); + 9422: 00000097 auipc ra,0x0 9422: R_RISCV_CALL __errno + 9422: R_RISCV_RELAX *ABS* + 9426: 000080e7 jalr ra # 9422 <.L7> + +000000000000942a <.LVL5>: + 942a: 4108 lw a0,0(a0) + +000000000000942c <.L4>: +/Users/Luppy/ox64/nuttx/libs/libc/spawn/lib_psa_init.c:110 +#ifndef CONFIG_BUILD_KERNEL + attr->stackaddr = NULL; +#endif + + return OK; +} + 942c: 60e2 ld ra,24(sp) + 942e: 6442 ld s0,16(sp) + +0000000000009430 <.LVL6>: + 9430: 6105 addi sp,sp,32 + 9432: 8082 ret + +0000000000009434 <.L3>: +/Users/Luppy/ox64/nuttx/libs/libc/spawn/lib_psa_init.c:74 + attr->priority = param.sched_priority; + 9434: 47a2 lw a5,8(sp) +/Users/Luppy/ox64/nuttx/libs/libc/spawn/lib_psa_init.c:78 + ret = _SCHED_GETSCHEDULER(0); + 9436: 4501 li a0,0 + +0000000000009438 <.LVL8>: +/Users/Luppy/ox64/nuttx/libs/libc/spawn/lib_psa_init.c:74 + attr->priority = param.sched_priority; + 9438: 00f400a3 sb a5,1(s0) +/Users/Luppy/ox64/nuttx/libs/libc/spawn/lib_psa_init.c:78 + ret = _SCHED_GETSCHEDULER(0); + 943c: 00000097 auipc ra,0x0 943c: R_RISCV_CALL sched_getscheduler + 943c: R_RISCV_RELAX *ABS* + 9440: 000080e7 jalr ra # 943c <.LVL8+0x4> + +0000000000009444 <.LVL9>: +/Users/Luppy/ox64/nuttx/libs/libc/spawn/lib_psa_init.c:79 + if (ret < 0) + 9444: fc054fe3 bltz a0,9422 <.L7> 9444: R_RISCV_BRANCH .L7 +/Users/Luppy/ox64/nuttx/libs/libc/spawn/lib_psa_init.c:84 + attr->policy = ret; + 9448: 00a40123 sb a0,2(s0) +/Users/Luppy/ox64/nuttx/libs/libc/spawn/lib_psa_init.c:88 + sigemptyset(&attr->sigmask); + 944c: 00440513 addi a0,s0,4 + +0000000000009450 <.LVL10>: + 9450: 00000097 auipc ra,0x0 9450: R_RISCV_CALL sigemptyset + 9450: R_RISCV_RELAX *ABS* + 9454: 000080e7 jalr ra # 9450 <.LVL10> + +0000000000009458 <.LVL11>: +/Users/Luppy/ox64/nuttx/libs/libc/spawn/lib_psa_init.c:103 + attr->stacksize = CONFIG_POSIX_SPAWN_DEFAULT_STACKSIZE; + 9458: 6785 lui a5,0x1 + 945a: 80078793 addi a5,a5,-2048 # 800 <.L111+0xc> + 945e: e81c sd a5,16(s0) +/Users/Luppy/ox64/nuttx/libs/libc/spawn/lib_psa_init.c:109 + return OK; + 9460: 4501 li a0,0 + 9462: b7e9 j 942c <.L4> 9462: R_RISCV_RVC_JUMP .L4 + +0000000000009464 : +posix_spawnattr_destroy(): +/Users/Luppy/ox64/nuttx/libs/libc/spawn/lib_psa_destroy.c:60 +int posix_spawnattr_destroy(FAR posix_spawnattr_t *attr) +{ + UNUSED(attr); + + return OK; +} + 9464: 4501 li a0,0 + +0000000000009466 <.LVL1>: + 9466: 8082 ret + +0000000000009468 : +asprintf(): +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_asprintf.c:53 + * buffer could not be allocated. + * + ****************************************************************************/ + +int asprintf(FAR char **ptr, FAR const IPTR char *fmt, ...) +{ + 9468: 715d addi sp,sp,-80 + 946a: f032 sd a2,32(sp) +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_asprintf.c:59 + va_list ap; + int ret; + + /* Let vasprintf do all of the work */ + + va_start(ap, fmt); + 946c: 1010 addi a2,sp,32 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_asprintf.c:53 +{ + 946e: ec06 sd ra,24(sp) + 9470: f436 sd a3,40(sp) + 9472: f83a sd a4,48(sp) + 9474: fc3e sd a5,56(sp) + 9476: e0c2 sd a6,64(sp) + 9478: e4c6 sd a7,72(sp) +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_asprintf.c:59 + va_start(ap, fmt); + 947a: e432 sd a2,8(sp) +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_asprintf.c:60 + ret = vasprintf(ptr, fmt, ap); + 947c: 00000097 auipc ra,0x0 947c: R_RISCV_CALL vasprintf + 947c: R_RISCV_RELAX *ABS* + 9480: 000080e7 jalr ra # 947c + +0000000000009484 <.LVL1>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_asprintf.c:64 + va_end(ap); + + return ret; +} + 9484: 60e2 ld ra,24(sp) + 9486: 6161 addi sp,sp,80 + 9488: 8082 ret + +000000000000948a : +snprintf(): +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_snprintf.c:41 +/**************************************************************************** + * snprintf + ****************************************************************************/ + +int snprintf(FAR char *buf, size_t size, FAR const IPTR char *format, ...) +{ + 948a: 7119 addi sp,sp,-128 + 948c: e0a2 sd s0,64(sp) + 948e: e486 sd ra,72(sp) + 9490: ecb6 sd a3,88(sp) + 9492: f0ba sd a4,96(sp) + 9494: f4be sd a5,104(sp) + 9496: f8c2 sd a6,112(sp) + 9498: fcc6 sd a7,120(sp) + 949a: 8432 mv s0,a2 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_snprintf.c:58 + * be written, the number of bytes that would have been written had [size] + * been sufficiently large excluding the terminating null shall be + * returned, and [buf] may be a null pointer." -- opengroup.org + */ + + if (size > 0) + 949c: c58d beqz a1,94c6 <.L2> 949c: R_RISCV_RVC_BRANCH .L2 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_snprintf.c:62 + { + /* Initialize a memory stream to write to the buffer */ + + lib_memoutstream(&u.memoutstream, buf, size); + 949e: 0005861b sext.w a2,a1 + +00000000000094a2 <.LVL1>: + 94a2: 85aa mv a1,a0 + +00000000000094a4 <.LVL2>: + 94a4: 0808 addi a0,sp,16 + +00000000000094a6 <.LVL3>: + 94a6: 00000097 auipc ra,0x0 94a6: R_RISCV_CALL lib_memoutstream + 94a6: R_RISCV_RELAX *ABS* + 94aa: 000080e7 jalr ra # 94a6 <.LVL3> + +00000000000094ae <.L3>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_snprintf.c:75 + stream = &u.nulloutstream; + } + + /* Then let lib_vsprintf do the real work */ + + va_start(ap, format); + 94ae: 08b0 addi a2,sp,88 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_snprintf.c:76 + n = lib_vsprintf(stream, format, ap); + 94b0: 85a2 mv a1,s0 + 94b2: 0808 addi a0,sp,16 + +00000000000094b4 <.LVL5>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_snprintf.c:75 + va_start(ap, format); + 94b4: e432 sd a2,8(sp) +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_snprintf.c:76 + n = lib_vsprintf(stream, format, ap); + 94b6: 00000097 auipc ra,0x0 94b6: R_RISCV_CALL lib_vsprintf + 94b6: R_RISCV_RELAX *ABS* + 94ba: 000080e7 jalr ra # 94b6 <.LVL5+0x2> + +00000000000094be <.LVL6>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_snprintf.c:79 + va_end(ap); + return n; +} + 94be: 60a6 ld ra,72(sp) + 94c0: 6406 ld s0,64(sp) + +00000000000094c2 <.LVL7>: + 94c2: 6109 addi sp,sp,128 + +00000000000094c4 <.LVL8>: + 94c4: 8082 ret + +00000000000094c6 <.L2>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_snprintf.c:69 + lib_nulloutstream(&u.nulloutstream); + 94c6: 0808 addi a0,sp,16 + +00000000000094c8 <.LVL10>: + 94c8: 00000097 auipc ra,0x0 94c8: R_RISCV_CALL lib_nulloutstream + 94c8: R_RISCV_RELAX *ABS* + 94cc: 000080e7 jalr ra # 94c8 <.LVL10> + +00000000000094d0 <.LVL11>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_snprintf.c:70 + stream = &u.nulloutstream; + 94d0: bff9 j 94ae <.L3> 94d0: R_RISCV_RVC_JUMP .L3 + +00000000000094d2 : +vasprintf(): +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_vasprintf.c:59 + * buffer could not be allocated. + * + ****************************************************************************/ + +int vasprintf(FAR char **ptr, FAR const IPTR char *fmt, va_list ap) +{ + 94d2: 7175 addi sp,sp,-144 + 94d4: e506 sd ra,136(sp) + 94d6: e122 sd s0,128(sp) + 94d8: fca6 sd s1,120(sp) + 94da: f8ca sd s2,112(sp) + 94dc: f4ce sd s3,104(sp) +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_vasprintf.c:76 + va_list ap2; +#endif + FAR char *buf; + int nbytes; + + DEBUGASSERT(ptr && fmt); + 94de: c119 beqz a0,94e4 <.L2> 94de: R_RISCV_RVC_BRANCH .L2 + 94e0: 84ae mv s1,a1 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_vasprintf.c:76 (discriminator 2) + 94e2: ed99 bnez a1,9500 <.L3> 94e2: R_RISCV_RVC_BRANCH .L3 + +00000000000094e4 <.L2>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_vasprintf.c:76 (discriminator 3) + 94e4: 00000617 auipc a2,0x0 94e4: R_RISCV_PCREL_HI20 .LC0 + 94e4: R_RISCV_RELAX *ABS* + 94e8: 00060613 mv a2,a2 94e8: R_RISCV_PCREL_LO12_I .L0 + 94e8: R_RISCV_RELAX *ABS* + +00000000000094ec <.LVL1>: + 94ec: 04c00593 li a1,76 + +00000000000094f0 <.L12>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_vasprintf.c:123 (discriminator 3) + /* Return a pointer to the string to the caller. NOTE: the memstream put() + * method has already added the NUL terminator to the end of the string + * (not included in the nput count). + */ + + DEBUGASSERT(nbytes < 0 || nbytes == nulloutstream.nput); + 94f0: 00000517 auipc a0,0x0 94f0: R_RISCV_PCREL_HI20 .LC1 + 94f0: R_RISCV_RELAX *ABS* + 94f4: 00050513 mv a0,a0 94f4: R_RISCV_PCREL_LO12_I .L0 + 94f4: R_RISCV_RELAX *ABS* + 94f8: 00000097 auipc ra,0x0 94f8: R_RISCV_CALL __assert + 94f8: R_RISCV_RELAX *ABS* + 94fc: 000080e7 jalr ra # 94f8 <.L12+0x8> + +0000000000009500 <.L3>: + 9500: 892a mv s2,a0 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_vasprintf.c:86 (discriminator 4) + lib_nulloutstream(&nulloutstream); + 9502: 0808 addi a0,sp,16 + +0000000000009504 <.LVL4>: + 9504: 89b2 mv s3,a2 + +0000000000009506 <.LVL5>: + 9506: 00000097 auipc ra,0x0 9506: R_RISCV_CALL lib_nulloutstream + 9506: R_RISCV_RELAX *ABS* + 950a: 000080e7 jalr ra # 9506 <.LVL5> + +000000000000950e <.LVL6>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_vasprintf.c:87 (discriminator 4) + lib_vsprintf(&nulloutstream, fmt, ap); + 950e: 864e mv a2,s3 + 9510: 85a6 mv a1,s1 + 9512: 0808 addi a0,sp,16 + 9514: 00000097 auipc ra,0x0 9514: R_RISCV_CALL lib_vsprintf + 9514: R_RISCV_RELAX *ABS* + 9518: 000080e7 jalr ra # 9514 <.LVL6+0x6> + +000000000000951c <.LVL7>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_vasprintf.c:93 (discriminator 4) + buf = lib_malloc(nulloutstream.nput + 1); + 951c: 4642 lw a2,16(sp) + 951e: 2605 addiw a2,a2,1 + 9520: 8532 mv a0,a2 + 9522: e432 sd a2,8(sp) + 9524: 00000097 auipc ra,0x0 9524: R_RISCV_CALL malloc + 9524: R_RISCV_RELAX *ABS* + 9528: 000080e7 jalr ra # 9524 <.LVL7+0x8> + +000000000000952c <.LVL8>: + 952c: 842a mv s0,a0 + +000000000000952e <.LVL9>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_vasprintf.c:94 (discriminator 4) + if (!buf) + 952e: c121 beqz a0,956e <.L7> 952e: R_RISCV_RVC_BRANCH .L7 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_vasprintf.c:107 + lib_memoutstream(&memoutstream, buf, nulloutstream.nput + 1); + 9530: 6622 ld a2,8(sp) + 9532: 85aa mv a1,a0 + 9534: 1808 addi a0,sp,48 + 9536: 00000097 auipc ra,0x0 9536: R_RISCV_CALL lib_memoutstream + 9536: R_RISCV_RELAX *ABS* + 953a: 000080e7 jalr ra # 9536 <.LVL9+0x8> + +000000000000953e <.LVL10>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_vasprintf.c:112 + nbytes = lib_vsprintf(&memoutstream.common, fmt, ap2); + 953e: 864e mv a2,s3 + 9540: 85a6 mv a1,s1 + 9542: 1808 addi a0,sp,48 + 9544: 00000097 auipc ra,0x0 9544: R_RISCV_CALL lib_vsprintf + 9544: R_RISCV_RELAX *ABS* + 9548: 000080e7 jalr ra # 9544 <.LVL10+0x6> + +000000000000954c <.LVL11>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_vasprintf.c:123 + DEBUGASSERT(nbytes < 0 || nbytes == nulloutstream.nput); + 954c: 00054c63 bltz a0,9564 <.L5> 954c: R_RISCV_BRANCH .L5 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_vasprintf.c:123 (discriminator 1) + 9550: 47c2 lw a5,16(sp) + 9552: 02a78063 beq a5,a0,9572 <.L6> 9552: R_RISCV_BRANCH .L6 +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_vasprintf.c:123 (discriminator 3) + 9556: 00000617 auipc a2,0x0 9556: R_RISCV_PCREL_HI20 .LC2 + 9556: R_RISCV_RELAX *ABS* + 955a: 00060613 mv a2,a2 955a: R_RISCV_PCREL_LO12_I .L0 + 955a: R_RISCV_RELAX *ABS* + 955e: 07b00593 li a1,123 + 9562: b779 j 94f0 <.L12> 9562: R_RISCV_RVC_JUMP .L12 + +0000000000009564 <.L5>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_vasprintf.c:127 + + if (nbytes < 0) + { + lib_free(buf); + 9564: 8522 mv a0,s0 + +0000000000009566 <.LVL12>: + 9566: 00000097 auipc ra,0x0 9566: R_RISCV_CALL free + 9566: R_RISCV_RELAX *ABS* + 956a: 000080e7 jalr ra # 9566 <.LVL12> + +000000000000956e <.L7>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_vasprintf.c:99 + return ERROR; + 956e: 557d li a0,-1 + 9570: a019 j 9576 <.L4> 9570: R_RISCV_RVC_JUMP .L4 + +0000000000009572 <.L6>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_vasprintf.c:131 + return ERROR; + } + + *ptr = buf; + 9572: 00893023 sd s0,0(s2) + +0000000000009576 <.L4>: +/Users/Luppy/ox64/nuttx/libs/libc/stdio/lib_vasprintf.c:133 + return nbytes; +} + 9576: 60aa ld ra,136(sp) + 9578: 640a ld s0,128(sp) + +000000000000957a <.LVL16>: + 957a: 74e6 ld s1,120(sp) + +000000000000957c <.LVL17>: + 957c: 7946 ld s2,112(sp) + +000000000000957e <.LVL18>: + 957e: 79a6 ld s3,104(sp) + +0000000000009580 <.LVL19>: + 9580: 6149 addi sp,sp,144 + 9582: 8082 ret + +0000000000009584 : +atoi(): +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_atoi.c:33 + * Public Functions + ****************************************************************************/ + +#undef atoi /* See mm/README.txt */ +int atoi(FAR const char *nptr) +{ + 9584: 1141 addi sp,sp,-16 +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_atoi.c:34 + return strtol(nptr, NULL, 10); + 9586: 4629 li a2,10 + 9588: 4581 li a1,0 +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_atoi.c:33 +{ + 958a: e406 sd ra,8(sp) +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_atoi.c:34 + return strtol(nptr, NULL, 10); + 958c: 00000097 auipc ra,0x0 958c: R_RISCV_CALL strtol + 958c: R_RISCV_RELAX *ABS* + 9590: 000080e7 jalr ra # 958c + +0000000000009594 <.LVL1>: +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_atoi.c:35 +} + 9594: 60a2 ld ra,8(sp) + 9596: 2501 sext.w a0,a0 + 9598: 0141 addi sp,sp,16 + 959a: 8082 ret + +000000000000959c : +strtol(): +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_strtol.c:56 + * * ERANGE if the number cannot be represented using long + * + ****************************************************************************/ + +long strtol(FAR const char *nptr, FAR char **endptr, int base) +{ + 959c: 7179 addi sp,sp,-48 + 959e: f406 sd ra,40(sp) + 95a0: f022 sd s0,32(sp) + 95a2: ec26 sd s1,24(sp) + 95a4: e84a sd s2,16(sp) + 95a6: e42a sd a0,8(sp) + 95a8: e032 sd a2,0(sp) +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_strtol.c:61 + unsigned long accum = 0; + long retval = 0; + char sign = 0; + + if (nptr) + 95aa: c959 beqz a0,9640 <.L9> 95aa: R_RISCV_RVC_BRANCH .L9 +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_strtol.c:65 + { + /* Skip leading spaces */ + + lib_skipspace(&nptr); + 95ac: 0028 addi a0,sp,8 + +00000000000095ae <.LVL1>: + 95ae: 842e mv s0,a1 + 95b0: 00000097 auipc ra,0x0 95b0: R_RISCV_CALL lib_skipspace + 95b0: R_RISCV_RELAX *ABS* + 95b4: 000080e7 jalr ra # 95b0 <.LVL1+0x2> + +00000000000095b8 <.LVL2>: +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_strtol.c:69 + + /* Check for leading + or - */ + + if (*nptr == '-' || *nptr == '+') + 95b8: 67a2 ld a5,8(sp) + 95ba: 6602 ld a2,0(sp) + 95bc: 0007c483 lbu s1,0(a5) + 95c0: fd54871b addiw a4,s1,-43 + 95c4: 0fd77713 andi a4,a4,253 + 95c8: eb1d bnez a4,95fe <.L10> 95c8: R_RISCV_RVC_BRANCH .L10 + +00000000000095ca <.LVL3>: +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_strtol.c:72 + { + sign = *nptr; + nptr++; + 95ca: 0785 addi a5,a5,1 + 95cc: e43e sd a5,8(sp) + +00000000000095ce <.L3>: +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_strtol.c:77 + } + + /* Get the unsigned value */ + + accum = strtoul(nptr, endptr, base); + 95ce: 6522 ld a0,8(sp) + 95d0: 85a2 mv a1,s0 + 95d2: 00000097 auipc ra,0x0 95d2: R_RISCV_CALL strtoul + 95d2: R_RISCV_RELAX *ABS* + 95d6: 000080e7 jalr ra # 95d2 <.L3+0x4> + +00000000000095da <.LVL5>: +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_strtol.c:81 + + /* Correct the sign of the result and check for overflow */ + + if (sign == '-') + 95da: 02d00713 li a4,45 + 95de: 02e49763 bne s1,a4,960c <.L4> 95de: R_RISCV_BRANCH .L4 + +00000000000095e2 <.LBB2>: +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_strtol.c:85 + { + const unsigned long limit = ((unsigned long)-(LONG_MIN + 1)) + 1; + + if (accum > limit) + 95e2: 597d li s2,-1 + 95e4: 197e slli s2,s2,0x3f + 95e6: 00a97e63 bgeu s2,a0,9602 <.L5> 95e6: R_RISCV_BRANCH .L5 +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_strtol.c:87 + { + set_errno(ERANGE); + 95ea: 00000097 auipc ra,0x0 95ea: R_RISCV_CALL __errno + 95ea: R_RISCV_RELAX *ABS* + 95ee: 000080e7 jalr ra # 95ea <.LBB2+0x8> + +00000000000095f2 <.LVL7>: + 95f2: 02200793 li a5,34 + 95f6: c11c sw a5,0(a0) + +00000000000095f8 <.LVL8>: +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_strtol.c:88 + retval = LONG_MIN; + 95f8: 854a mv a0,s2 + +00000000000095fa <.L6>: +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_strtol.c:111 + } + } + + /* Return the final pointer to the unused value */ + + if (endptr) + 95fa: e415 bnez s0,9626 <.L8> 95fa: R_RISCV_RVC_BRANCH .L8 + 95fc: a825 j 9634 <.L1> 95fc: R_RISCV_RVC_JUMP .L1 + +00000000000095fe <.L10>: +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_strtol.c:59 + char sign = 0; + 95fe: 4481 li s1,0 + 9600: b7f9 j 95ce <.L3> 9600: R_RISCV_RVC_JUMP .L3 + +0000000000009602 <.L5>: +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_strtol.c:92 + retval = (accum == limit) ? LONG_MIN : -(long)accum; + 9602: ff250ce3 beq a0,s2,95fa <.L6> 9602: R_RISCV_BRANCH .L6 +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_strtol.c:92 (discriminator 1) + 9606: 40a00533 neg a0,a0 + +000000000000960a <.LVL12>: + 960a: bfc5 j 95fa <.L6> 960a: R_RISCV_RVC_JUMP .L6 + +000000000000960c <.L4>: +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_strtol.c:97 + if (accum > LONG_MAX) + 960c: 00055b63 bgez a0,9622 <.L7> 960c: R_RISCV_BRANCH .L7 +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_strtol.c:99 + set_errno(ERANGE); + 9610: 00000097 auipc ra,0x0 9610: R_RISCV_CALL __errno + 9610: R_RISCV_RELAX *ABS* + 9614: 000080e7 jalr ra # 9610 <.L4+0x4> + +0000000000009618 <.LVL14>: + 9618: 02200793 li a5,34 + 961c: c11c sw a5,0(a0) + +000000000000961e <.LVL15>: +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_strtol.c:100 + retval = LONG_MAX; + 961e: 557d li a0,-1 + 9620: 8105 srli a0,a0,0x1 + +0000000000009622 <.L7>: +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_strtol.c:111 + if (endptr) + 9622: c809 beqz s0,9634 <.L1> 9622: R_RISCV_RVC_BRANCH .L1 +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_strtol.c:113 + { + if (sign) + 9624: c881 beqz s1,9634 <.L1> 9624: R_RISCV_RVC_BRANCH .L1 + +0000000000009626 <.L8>: +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_strtol.c:115 + { + if (*((*endptr) - 1) == sign) + 9626: 601c ld a5,0(s0) + 9628: fff7c703 lbu a4,-1(a5) + 962c: 00971463 bne a4,s1,9634 <.L1> 962c: R_RISCV_BRANCH .L1 +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_strtol.c:117 + { + (*endptr)--; + 9630: 17fd addi a5,a5,-1 + 9632: e01c sd a5,0(s0) + +0000000000009634 <.L1>: +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_strtol.c:123 + } + } + } + + return retval; +} + 9634: 70a2 ld ra,40(sp) + 9636: 7402 ld s0,32(sp) + 9638: 64e2 ld s1,24(sp) + 963a: 6942 ld s2,16(sp) + 963c: 6145 addi sp,sp,48 + 963e: 8082 ret + +0000000000009640 <.L9>: +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_strtol.c:58 + long retval = 0; + 9640: 4501 li a0,0 + +0000000000009642 <.LVL20>: +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_strtol.c:122 + return retval; + 9642: bfcd j 9634 <.L1> 9642: R_RISCV_RVC_JUMP .L1 + +0000000000009644 : +strtoul(): +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_strtoul.c:54 + * * ERANGE if the number cannot be represented using unsigned long + * + ****************************************************************************/ + +unsigned long strtoul(FAR const char *nptr, FAR char **endptr, int base) +{ + 9644: 711d addi sp,sp,-96 + 9646: e0ca sd s2,64(sp) + 9648: ec86 sd ra,88(sp) + 964a: e8a2 sd s0,80(sp) + 964c: e4a6 sd s1,72(sp) + 964e: fc4e sd s3,56(sp) + 9650: f852 sd s4,48(sp) + 9652: f456 sd s5,40(sp) + 9654: e42a sd a0,8(sp) + 9656: 892e mv s2,a1 +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_strtoul.c:61 + unsigned long limit; + int value; + int last_digit; + char sign = 0; + + if (nptr) + 9658: c975 beqz a0,974c <.L2> 9658: R_RISCV_RVC_BRANCH .L2 +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_strtoul.c:65 + { + /* Skip leading spaces */ + + lib_skipspace(&nptr); + 965a: 0028 addi a0,sp,8 + +000000000000965c <.LVL1>: + 965c: 8432 mv s0,a2 + 965e: 00000097 auipc ra,0x0 965e: R_RISCV_CALL lib_skipspace + 965e: R_RISCV_RELAX *ABS* + 9662: 000080e7 jalr ra # 965e <.LVL1+0x2> + +0000000000009666 <.LVL2>: +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_strtoul.c:69 + + /* Check for leading + or - already done for strtol */ + + if (*nptr == '-' || *nptr == '+') + 9666: 67a2 ld a5,8(sp) + 9668: 0007ca03 lbu s4,0(a5) + 966c: fd5a071b addiw a4,s4,-43 + 9670: 0fd77713 andi a4,a4,253 + 9674: e331 bnez a4,96b8 <.L16> 9674: R_RISCV_RVC_BRANCH .L16 + +0000000000009676 <.LVL3>: +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_strtoul.c:72 + { + sign = *nptr; + nptr++; + 9676: 0785 addi a5,a5,1 + 9678: e43e sd a5,8(sp) + +000000000000967a <.L3>: +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_strtoul.c:77 + } + + /* Check for unspecified or incorrect base */ + + base = lib_checkbase(base, &nptr); + 967a: 002c addi a1,sp,8 + 967c: 8522 mv a0,s0 + 967e: 00000097 auipc ra,0x0 967e: R_RISCV_CALL lib_checkbase + 967e: R_RISCV_RELAX *ABS* + 9682: 000080e7 jalr ra # 967e <.L3+0x4> + +0000000000009686 <.LVL5>: + 9686: 84aa mv s1,a0 + +0000000000009688 <.LVL6>: +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_strtoul.c:79 + + if (base < 0) + 9688: 02055a63 bgez a0,96bc <.L4> 9688: R_RISCV_BRANCH .L4 +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_strtoul.c:81 + { + set_errno(EINVAL); + 968c: 00000097 auipc ra,0x0 968c: R_RISCV_CALL __errno + 968c: R_RISCV_RELAX *ABS* + 9690: 000080e7 jalr ra # 968c <.LVL6+0x4> + +0000000000009694 <.LVL7>: + 9694: 47d9 li a5,22 + 9696: c11c sw a5,0(a0) +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_strtoul.c:82 + accum = 0; + 9698: 4401 li s0,0 + +000000000000969a <.L5>: +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_strtoul.c:120 + } + } + + /* Return the final pointer to the unused value */ + + if (endptr) + 969a: 08090463 beqz s2,9722 <.L1> 969a: R_RISCV_BRANCH .L1 +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_strtoul.c:122 + { + if (sign) + 969e: 000a0963 beqz s4,96b0 <.L15> 969e: R_RISCV_BRANCH .L15 + +00000000000096a2 <.L13>: +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_strtoul.c:124 + { + if (*(nptr - 1) == sign) + 96a2: 67a2 ld a5,8(sp) + 96a4: fff7c703 lbu a4,-1(a5) + 96a8: 01471463 bne a4,s4,96b0 <.L15> 96a8: R_RISCV_BRANCH .L15 +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_strtoul.c:126 + { + nptr--; + 96ac: 17fd addi a5,a5,-1 + 96ae: e43e sd a5,8(sp) + +00000000000096b0 <.L15>: +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_strtoul.c:130 + } + } + + *endptr = (FAR char *)nptr; + 96b0: 67a2 ld a5,8(sp) + 96b2: 00f93023 sd a5,0(s2) +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_strtoul.c:133 + } + + return accum; + 96b6: a0b5 j 9722 <.L1> 96b6: R_RISCV_RVC_JUMP .L1 + +00000000000096b8 <.L16>: +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_strtoul.c:59 + char sign = 0; + 96b8: 4a01 li s4,0 + 96ba: b7c1 j 967a <.L3> 96ba: R_RISCV_RVC_JUMP .L3 + +00000000000096bc <.L4>: +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_strtoul.c:86 + limit = ULONG_MAX / base; + 96bc: 57fd li a5,-1 + 96be: 02a7dab3 divu s5,a5,a0 + +00000000000096c2 <.LVL13>: +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_strtoul.c:55 + unsigned long accum = 0; + 96c2: 4401 li s0,0 +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_strtoul.c:87 + last_digit = ULONG_MAX % base; + 96c4: 02a7f7b3 remu a5,a5,a0 + 96c8: 0007899b sext.w s3,a5 + +00000000000096cc <.L6>: +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_strtoul.c:91 + while (lib_isbasedigit(*nptr, base, &value)) + 96cc: 67a2 ld a5,8(sp) + 96ce: 0870 addi a2,sp,28 + 96d0: 85a6 mv a1,s1 + 96d2: 0007c503 lbu a0,0(a5) + 96d6: 00000097 auipc ra,0x0 96d6: R_RISCV_CALL lib_isbasedigit + 96d6: R_RISCV_RELAX *ABS* + 96da: 000080e7 jalr ra # 96d6 <.L6+0xa> + +00000000000096de <.LVL15>: + 96de: c105 beqz a0,96fe <.L11> 96de: R_RISCV_RVC_BRANCH .L11 +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_strtoul.c:95 + if (accum > limit || (accum == limit && value > last_digit)) + 96e0: 008ae763 bltu s5,s0,96ee <.L7> 96e0: R_RISCV_BRANCH .L7 +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_strtoul.c:95 (discriminator 1) + 96e4: 47f2 lw a5,28(sp) + 96e6: 05541863 bne s0,s5,9736 <.L8> 96e6: R_RISCV_BRANCH .L8 +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_strtoul.c:95 (discriminator 2) + 96ea: 04f9d663 bge s3,a5,9736 <.L8> 96ea: R_RISCV_BRANCH .L8 + +00000000000096ee <.L7>: +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_strtoul.c:97 + set_errno(ERANGE); + 96ee: 00000097 auipc ra,0x0 96ee: R_RISCV_CALL __errno + 96ee: R_RISCV_RELAX *ABS* + 96f2: 000080e7 jalr ra # 96ee <.L7> + +00000000000096f6 <.LVL16>: + 96f6: 02200793 li a5,34 + 96fa: c11c sw a5,0(a0) + +00000000000096fc <.LVL17>: +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_strtoul.c:98 + accum = ULONG_MAX; + 96fc: 547d li s0,-1 + +00000000000096fe <.L11>: +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_strtoul.c:106 + while (lib_isbasedigit(*nptr, base, &value)) + 96fe: 67a2 ld a5,8(sp) + 9700: 0870 addi a2,sp,28 + 9702: 85a6 mv a1,s1 + 9704: 0007c503 lbu a0,0(a5) + 9708: 00000097 auipc ra,0x0 9708: R_RISCV_CALL lib_isbasedigit + 9708: R_RISCV_RELAX *ABS* + 970c: 000080e7 jalr ra # 9708 <.L11+0xa> + +0000000000009710 <.LVL19>: + 9710: e915 bnez a0,9744 <.L12> 9710: R_RISCV_RVC_BRANCH .L12 +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_strtoul.c:111 + if (sign == '-') + 9712: 02d00793 li a5,45 + 9716: f8fa12e3 bne s4,a5,969a <.L5> 9716: R_RISCV_BRANCH .L5 +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_strtoul.c:113 + accum = (~accum) + 1; + 971a: 40800433 neg s0,s0 + +000000000000971e <.LVL20>: +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_strtoul.c:120 + if (endptr) + 971e: f80912e3 bnez s2,96a2 <.L13> 971e: R_RISCV_BRANCH .L13 + +0000000000009722 <.L1>: +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_strtoul.c:134 +} + 9722: 60e6 ld ra,88(sp) + 9724: 8522 mv a0,s0 + 9726: 6446 ld s0,80(sp) + 9728: 64a6 ld s1,72(sp) + 972a: 6906 ld s2,64(sp) + +000000000000972c <.LVL22>: + 972c: 79e2 ld s3,56(sp) + 972e: 7a42 ld s4,48(sp) + 9730: 7aa2 ld s5,40(sp) + 9732: 6125 addi sp,sp,96 + 9734: 8082 ret + +0000000000009736 <.L8>: +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_strtoul.c:102 + accum = accum * base + value; + 9736: 02848433 mul s0,s1,s0 + +000000000000973a <.LVL24>: + 973a: 943e add s0,s0,a5 + +000000000000973c <.LVL25>: +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_strtoul.c:103 + nptr++; + 973c: 67a2 ld a5,8(sp) + 973e: 0785 addi a5,a5,1 + 9740: e43e sd a5,8(sp) + 9742: b769 j 96cc <.L6> 9742: R_RISCV_RVC_JUMP .L6 + +0000000000009744 <.L12>: +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_strtoul.c:108 + nptr++; + 9744: 67a2 ld a5,8(sp) + 9746: 0785 addi a5,a5,1 + 9748: e43e sd a5,8(sp) + 974a: bf55 j 96fe <.L11> 974a: R_RISCV_RVC_JUMP .L11 + +000000000000974c <.L2>: +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_strtoul.c:55 + unsigned long accum = 0; + 974c: 4401 li s0,0 +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_strtoul.c:120 + if (endptr) + 974e: f1ad bnez a1,96b0 <.L15> 974e: R_RISCV_RVC_BRANCH .L15 + 9750: bfc9 j 9722 <.L1> 9750: R_RISCV_RVC_JUMP .L1 + +0000000000009752 : +lib_checkbase(): +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_checkbase.c:55 + * - if base is invalid (<2 or >36), return -1. + * + ****************************************************************************/ + +int lib_checkbase(int base, FAR const char **pptr) +{ + 9752: 1101 addi sp,sp,-32 + 9754: e426 sd s1,8(sp) + 9756: ec06 sd ra,24(sp) + 9758: e822 sd s0,16(sp) + 975a: e04a sd s2,0(sp) +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_checkbase.c:56 + FAR const char *ptr = *pptr; + 975c: 6180 ld s0,0(a1) + +000000000000975e <.LVL1>: +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_checkbase.c:55 +{ + 975e: 84ae mv s1,a1 +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_checkbase.c:60 + + /* Check for unspecified base */ + + if (!base) + 9760: e121 bnez a0,97a0 <.L2> 9760: R_RISCV_RVC_BRANCH .L2 + +0000000000009762 <.LVL2>: +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_checkbase.c:70 + + /* Check for leading '0' - that would signify octal + * or hex (or binary) + */ + + if (*ptr == '0') + 9762: 00044683 lbu a3,0(s0) + 9766: 03000713 li a4,48 +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_checkbase.c:64 + base = 10; + 976a: 47a9 li a5,10 +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_checkbase.c:70 + if (*ptr == '0') + 976c: 02e69763 bne a3,a4,979a <.L3> 976c: R_RISCV_BRANCH .L3 + +0000000000009770 <.LVL3>: +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_checkbase.c:79 + base = 8; + ptr++; + + /* Check for hexadecimal */ + + if ((*ptr == 'X' || *ptr == 'x') && + 9770: 00144783 lbu a5,1(s0) + 9774: 05800713 li a4,88 +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_checkbase.c:75 + ptr++; + 9778: 00140913 addi s2,s0,1 + +000000000000977c <.LVL4>: +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_checkbase.c:79 + if ((*ptr == 'X' || *ptr == 'x') && + 977c: 0df7f793 andi a5,a5,223 + 9780: 06e79063 bne a5,a4,97e0 <.L8> 9780: R_RISCV_BRANCH .L8 +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_checkbase.c:80 (discriminator 3) + lib_isbasedigit(ptr[1], 16, NULL)) + 9784: 00244503 lbu a0,2(s0) + 9788: 4601 li a2,0 + 978a: 45c1 li a1,16 + +000000000000978c <.LVL5>: + 978c: 00000097 auipc ra,0x0 978c: R_RISCV_CALL lib_isbasedigit + 978c: R_RISCV_RELAX *ABS* + 9790: 000080e7 jalr ra # 978c <.LVL5> + +0000000000009794 <.LVL6>: +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_checkbase.c:79 (discriminator 3) + if ((*ptr == 'X' || *ptr == 'x') && + 9794: c531 beqz a0,97e0 <.L8> 9794: R_RISCV_RVC_BRANCH .L8 + +0000000000009796 <.LVL7>: +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_checkbase.c:83 + { + base = 16; + ptr++; + 9796: 0409 addi s0,s0,2 + +0000000000009798 <.LVL8>: +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_checkbase.c:82 + base = 16; + 9798: 47c1 li a5,16 + +000000000000979a <.L3>: +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_checkbase.c:109 + return -1; /* Means incorrect base */ + } + + /* Return the updated pointer and base */ + + *pptr = ptr; + 979a: e080 sd s0,0(s1) +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_checkbase.c:110 + return base; + 979c: 853e mv a0,a5 + 979e: a81d j 97d4 <.L5> 979e: R_RISCV_RVC_JUMP .L5 + +00000000000097a0 <.L2>: +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_checkbase.c:92 + else if (base == 16) + 97a0: 4741 li a4,16 + 97a2: 87aa mv a5,a0 + 97a4: 02e51263 bne a0,a4,97c8 <.L4> 97a4: R_RISCV_BRANCH .L4 +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_checkbase.c:94 + if (ptr[0] == '0' && (ptr[1] == 'X' || ptr[1] == 'x')) + 97a8: 00044683 lbu a3,0(s0) + 97ac: 03000713 li a4,48 + 97b0: fee695e3 bne a3,a4,979a <.L3> 97b0: R_RISCV_BRANCH .L3 +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_checkbase.c:94 (discriminator 1) + 97b4: 00144703 lbu a4,1(s0) + 97b8: 05800693 li a3,88 + 97bc: 0df77713 andi a4,a4,223 + 97c0: fcd71de3 bne a4,a3,979a <.L3> 97c0: R_RISCV_BRANCH .L3 +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_checkbase.c:96 + ptr += 2; + 97c4: 0409 addi s0,s0,2 + 97c6: bfd1 j 979a <.L3> 97c6: R_RISCV_RVC_JUMP .L3 + +00000000000097c8 <.L4>: +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_checkbase.c:102 + else if (base < 2 || base > 26) + 97c8: ffe5071b addiw a4,a0,-2 + 97cc: 46e1 li a3,24 +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_checkbase.c:104 + return -1; /* Means incorrect base */ + 97ce: 557d li a0,-1 + +00000000000097d0 <.LVL12>: +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_checkbase.c:102 + else if (base < 2 || base > 26) + 97d0: fce6f5e3 bgeu a3,a4,979a <.L3> 97d0: R_RISCV_BRANCH .L3 + +00000000000097d4 <.L5>: +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_checkbase.c:111 +} + 97d4: 60e2 ld ra,24(sp) + 97d6: 6442 ld s0,16(sp) + +00000000000097d8 <.LVL14>: + 97d8: 64a2 ld s1,8(sp) + +00000000000097da <.LVL15>: + 97da: 6902 ld s2,0(sp) + 97dc: 6105 addi sp,sp,32 + 97de: 8082 ret + +00000000000097e0 <.L8>: +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_checkbase.c:75 + ptr++; + 97e0: 844a mv s0,s2 +/Users/Luppy/ox64/nuttx/libs/libc/stdlib/lib_checkbase.c:74 + base = 8; + 97e2: 47a1 li a5,8 + 97e4: bf5d j 979a <.L3> 97e4: R_RISCV_RVC_JUMP .L3 + +00000000000097e6 : +memoutstream_puts(): +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_memoutstream.c:39 + * Name: memoutstream_puts + ****************************************************************************/ + +static int memoutstream_puts(FAR struct lib_outstream_s *self, + FAR const void *buf, int len) +{ + 97e6: 1101 addi sp,sp,-32 + 97e8: ec06 sd ra,24(sp) + 97ea: e822 sd s0,16(sp) + 97ec: e426 sd s1,8(sp) +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_memoutstream.c:44 + FAR struct lib_memoutstream_s *stream = + (FAR struct lib_memoutstream_s *)self; + int ncopy; + + DEBUGASSERT(self); + 97ee: ed19 bnez a0,980c <.L2> 97ee: R_RISCV_RVC_BRANCH .L2 + +00000000000097f0 <.LBB4>: + 97f0: 00000617 auipc a2,0x0 97f0: R_RISCV_PCREL_HI20 .LC0 + 97f0: R_RISCV_RELAX *ABS* + 97f4: 00060613 mv a2,a2 97f4: R_RISCV_PCREL_LO12_I .L0 + 97f4: R_RISCV_RELAX *ABS* + +00000000000097f8 <.LVL2>: + 97f8: 02c00593 li a1,44 + +00000000000097fc <.LVL3>: + 97fc: 00000517 auipc a0,0x0 97fc: R_RISCV_PCREL_HI20 .LC1 + 97fc: R_RISCV_RELAX *ABS* + 9800: 00050513 mv a0,a0 9800: R_RISCV_PCREL_LO12_I .L0 + 9800: R_RISCV_RELAX *ABS* + +0000000000009804 <.LVL4>: + 9804: 00000097 auipc ra,0x0 9804: R_RISCV_CALL __assert + 9804: R_RISCV_RELAX *ABS* + 9808: 000080e7 jalr ra # 9804 <.LVL4> + +000000000000980c <.L2>: +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_memoutstream.c:51 (discriminator 2) + /* If this will not overrun the buffer, then write the character to the + * buffer. Note that buflen was pre-decremented when the stream was + * created so it is okay to write past the end of the buflen by one. + */ + + ncopy = stream->buflen - self->nput >= len ? + 980c: 411c lw a5,0(a0) + 980e: 7500 ld s0,40(a0) + 9810: 84aa mv s1,a0 + 9812: 8c1d sub s0,s0,a5 +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_memoutstream.c:52 (discriminator 2) + len : stream->buflen - self->nput; + 9814: 00867363 bgeu a2,s0,981a <.L3> 9814: R_RISCV_BRANCH .L3 + +0000000000009818 <.LVL6>: + 9818: 8432 mv s0,a2 + +000000000000981a <.L3>: +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_memoutstream.c:51 (discriminator 2) + ncopy = stream->buflen - self->nput >= len ? + 981a: 2401 sext.w s0,s0 + +000000000000981c <.LVL7>: +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_memoutstream.c:53 (discriminator 2) + if (ncopy > 0) + 981c: 02805163 blez s0,983e <.L4> 981c: R_RISCV_BRANCH .L4 +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_memoutstream.c:55 + { + memcpy(stream->buffer + self->nput, buf, ncopy); + 9820: 7088 ld a0,32(s1) + 9822: 8622 mv a2,s0 + +0000000000009824 <.LVL8>: + 9824: 953e add a0,a0,a5 + 9826: 00000097 auipc ra,0x0 9826: R_RISCV_CALL memcpy + 9826: R_RISCV_RELAX *ABS* + 982a: 000080e7 jalr ra # 9826 <.LVL8+0x2> + +000000000000982e <.LVL9>: +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_memoutstream.c:56 + self->nput += ncopy; + 982e: 409c lw a5,0(s1) + 9830: 0087873b addw a4,a5,s0 +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_memoutstream.c:57 + stream->buffer[self->nput] = '\0'; + 9834: 709c ld a5,32(s1) +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_memoutstream.c:56 + self->nput += ncopy; + 9836: c098 sw a4,0(s1) +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_memoutstream.c:57 + stream->buffer[self->nput] = '\0'; + 9838: 97ba add a5,a5,a4 + 983a: 00078023 sb zero,0(a5) + +000000000000983e <.L4>: +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_memoutstream.c:61 + } + + return ncopy; +} + 983e: 60e2 ld ra,24(sp) + 9840: 8522 mv a0,s0 + 9842: 6442 ld s0,16(sp) + +0000000000009844 <.LVL10>: + 9844: 64a2 ld s1,8(sp) + +0000000000009846 <.LVL11>: + 9846: 6105 addi sp,sp,32 + 9848: 8082 ret + +000000000000984a : +memoutstream_putc(): +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_memoutstream.c:68 +/**************************************************************************** + * Name: memoutstream_putc + ****************************************************************************/ + +static void memoutstream_putc(FAR struct lib_outstream_s *self, int ch) +{ + 984a: 1101 addi sp,sp,-32 +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_memoutstream.c:69 + char tmp = ch; + 984c: 00b107a3 sb a1,15(sp) +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_memoutstream.c:70 + memoutstream_puts(self, &tmp, 1); + 9850: 4605 li a2,1 + 9852: 00f10593 addi a1,sp,15 + +0000000000009856 <.LVL13>: +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_memoutstream.c:68 +{ + 9856: ec06 sd ra,24(sp) +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_memoutstream.c:70 + memoutstream_puts(self, &tmp, 1); + 9858: 00000097 auipc ra,0x0 9858: R_RISCV_CALL memoutstream_puts + 9858: R_RISCV_RELAX *ABS* + 985c: 000080e7 jalr ra # 9858 <.LVL13+0x2> + +0000000000009860 <.LVL14>: +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_memoutstream.c:71 +} + 9860: 60e2 ld ra,24(sp) + 9862: 6105 addi sp,sp,32 + 9864: 8082 ret + +0000000000009866 : +lib_memoutstream(): +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_memoutstream.c:97 + ****************************************************************************/ + +void lib_memoutstream(FAR struct lib_memoutstream_s *outstream, + FAR char *bufstart, int buflen) +{ + outstream->common.putc = memoutstream_putc; + 9866: 00000797 auipc a5,0x0 9866: R_RISCV_PCREL_HI20 memoutstream_putc + 9866: R_RISCV_RELAX *ABS* + 986a: 00078793 mv a5,a5 986a: R_RISCV_PCREL_LO12_I .L0 + 986a: R_RISCV_RELAX *ABS* + 986e: e51c sd a5,8(a0) +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_memoutstream.c:98 + outstream->common.puts = memoutstream_puts; + 9870: 00000797 auipc a5,0x0 9870: R_RISCV_PCREL_HI20 memoutstream_puts + 9870: R_RISCV_RELAX *ABS* + 9874: 00078793 mv a5,a5 9874: R_RISCV_PCREL_LO12_I .L0 + 9874: R_RISCV_RELAX *ABS* + 9878: e91c sd a5,16(a0) +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_memoutstream.c:102 + outstream->common.flush = lib_noflush; + outstream->common.nput = 0; /* Will be buffer index */ + outstream->buffer = bufstart; /* Start of buffer */ + outstream->buflen = buflen - 1; /* Save space for null terminator */ + 987a: 367d addiw a2,a2,-1 + +000000000000987c <.LVL16>: +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_memoutstream.c:99 + outstream->common.flush = lib_noflush; + 987c: 00000797 auipc a5,0x0 987c: R_RISCV_PCREL_HI20 lib_noflush + 987c: R_RISCV_RELAX *ABS* + 9880: 00078793 mv a5,a5 9880: R_RISCV_PCREL_LO12_I .L0 + 9880: R_RISCV_RELAX *ABS* + 9884: ed1c sd a5,24(a0) +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_memoutstream.c:100 + outstream->common.nput = 0; /* Will be buffer index */ + 9886: 00052023 sw zero,0(a0) # 97fc <.LVL3> +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_memoutstream.c:101 + outstream->buffer = bufstart; /* Start of buffer */ + 988a: f10c sd a1,32(a0) +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_memoutstream.c:102 + outstream->buflen = buflen - 1; /* Save space for null terminator */ + 988c: f510 sd a2,40(a0) +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_memoutstream.c:103 + outstream->buffer[0] = '\0'; /* Start with an empty string */ + 988e: 00058023 sb zero,0(a1) # 91de +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_memoutstream.c:104 +} + 9892: 8082 ret + +0000000000009894 : +nulloutstream_puts(): +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_nulloutstream.c:44 + self->nput++; +} + +static int nulloutstream_puts(FAR struct lib_outstream_s *self, + FAR const void *buffer, int len) +{ + 9894: 87aa mv a5,a0 +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_nulloutstream.c:47 + UNUSED(buffer); + UNUSED(len); + DEBUGASSERT(self); + 9896: e10d bnez a0,98b8 <.L2> 9896: R_RISCV_RVC_BRANCH .L2 + +0000000000009898 <.LBB4>: +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_nulloutstream.c:44 +{ + 9898: 1141 addi sp,sp,-16 + +000000000000989a <.LBB8>: +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_nulloutstream.c:47 + DEBUGASSERT(self); + 989a: 00000617 auipc a2,0x0 989a: R_RISCV_PCREL_HI20 .LC0 + 989a: R_RISCV_RELAX *ABS* + 989e: 00060613 mv a2,a2 989e: R_RISCV_PCREL_LO12_I .L0 + 989e: R_RISCV_RELAX *ABS* + +00000000000098a2 <.LVL2>: + 98a2: 02f00593 li a1,47 + +00000000000098a6 <.LVL3>: + 98a6: 00000517 auipc a0,0x0 98a6: R_RISCV_PCREL_HI20 .LC1 + 98a6: R_RISCV_RELAX *ABS* + 98aa: 00050513 mv a0,a0 98aa: R_RISCV_PCREL_LO12_I .L0 + 98aa: R_RISCV_RELAX *ABS* + +00000000000098ae <.LBE8>: +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_nulloutstream.c:44 +{ + 98ae: e406 sd ra,8(sp) + +00000000000098b0 <.LBB9>: +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_nulloutstream.c:47 + DEBUGASSERT(self); + 98b0: 00000097 auipc ra,0x0 98b0: R_RISCV_CALL __assert + 98b0: R_RISCV_RELAX *ABS* + 98b4: 000080e7 jalr ra # 98b0 <.LBB9> + +00000000000098b8 <.L2>: +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_nulloutstream.c:48 (discriminator 2) + self->nput += len; + 98b8: 4398 lw a4,0(a5) + 98ba: 8532 mv a0,a2 + +00000000000098bc <.LVL6>: + 98bc: 9f31 addw a4,a4,a2 + 98be: c398 sw a4,0(a5) +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_nulloutstream.c:50 (discriminator 2) + return len; +} + 98c0: 8082 ret + +00000000000098c2 : +nulloutstream_putc(): +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_nulloutstream.c:38 + DEBUGASSERT(self); + 98c2: e10d bnez a0,98e4 <.L7> 98c2: R_RISCV_RVC_BRANCH .L7 + +00000000000098c4 <.LBB12>: +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_nulloutstream.c:36 +{ + 98c4: 1141 addi sp,sp,-16 + +00000000000098c6 <.LBB16>: +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_nulloutstream.c:38 + DEBUGASSERT(self); + 98c6: 00000617 auipc a2,0x0 98c6: R_RISCV_PCREL_HI20 .LC0 + 98c6: R_RISCV_RELAX *ABS* + 98ca: 00060613 mv a2,a2 98ca: R_RISCV_PCREL_LO12_I .L0 + 98ca: R_RISCV_RELAX *ABS* + 98ce: 02600593 li a1,38 + +00000000000098d2 <.LVL9>: + 98d2: 00000517 auipc a0,0x0 98d2: R_RISCV_PCREL_HI20 .LC1 + 98d2: R_RISCV_RELAX *ABS* + 98d6: 00050513 mv a0,a0 98d6: R_RISCV_PCREL_LO12_I .L0 + 98d6: R_RISCV_RELAX *ABS* + +00000000000098da <.LBE16>: +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_nulloutstream.c:36 +{ + 98da: e406 sd ra,8(sp) + +00000000000098dc <.LBB17>: +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_nulloutstream.c:38 + DEBUGASSERT(self); + 98dc: 00000097 auipc ra,0x0 98dc: R_RISCV_CALL __assert + 98dc: R_RISCV_RELAX *ABS* + 98e0: 000080e7 jalr ra # 98dc <.LBB17> + +00000000000098e4 <.L7>: +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_nulloutstream.c:39 (discriminator 2) + self->nput++; + 98e4: 411c lw a5,0(a0) + 98e6: 2785 addiw a5,a5,1 + 98e8: c11c sw a5,0(a0) + 98ea: 8082 ret + +00000000000098ec : +lib_nulloutstream(): +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_nulloutstream.c:74 + * + ****************************************************************************/ + +void lib_nulloutstream(FAR struct lib_outstream_s *stream) +{ + stream->putc = nulloutstream_putc; + 98ec: 00000797 auipc a5,0x0 98ec: R_RISCV_PCREL_HI20 nulloutstream_putc + 98ec: R_RISCV_RELAX *ABS* + 98f0: 00078793 mv a5,a5 98f0: R_RISCV_PCREL_LO12_I .L0 + 98f0: R_RISCV_RELAX *ABS* + 98f4: e51c sd a5,8(a0) +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_nulloutstream.c:75 + stream->puts = nulloutstream_puts; + 98f6: 00000797 auipc a5,0x0 98f6: R_RISCV_PCREL_HI20 nulloutstream_puts + 98f6: R_RISCV_RELAX *ABS* + 98fa: 00078793 mv a5,a5 98fa: R_RISCV_PCREL_LO12_I .L0 + 98fa: R_RISCV_RELAX *ABS* + 98fe: e91c sd a5,16(a0) +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_nulloutstream.c:76 + stream->flush = lib_noflush; + 9900: 00000797 auipc a5,0x0 9900: R_RISCV_PCREL_HI20 lib_noflush + 9900: R_RISCV_RELAX *ABS* + 9904: 00078793 mv a5,a5 9904: R_RISCV_PCREL_LO12_I .L0 + 9904: R_RISCV_RELAX *ABS* + 9908: ed1c sd a5,24(a0) +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_nulloutstream.c:77 + stream->nput = 0; + 990a: 00052023 sw zero,0(a0) # 98d2 <.LVL9> +/Users/Luppy/ox64/nuttx/libs/libc/stream/lib_nulloutstream.c:78 +} + 990e: 8082 ret + +0000000000009910 : +flsl(): +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_flsl.c:56 + +int flsl(long j) +{ + int ret = 0; + + if (j != 0) + 9910: cd11 beqz a0,992c <.L3> 9910: R_RISCV_RVC_BRANCH .L3 +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_flsl.c:53 +{ + 9912: 1141 addi sp,sp,-16 + 9914: e406 sd ra,8(sp) +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_flsl.c:61 + { +#ifdef CONFIG_HAVE_BUILTIN_CLZ + /* Count leading zeros function can be used to implement fls. */ + + ret = NBITS - __builtin_clzl(j); + 9916: 00000097 auipc ra,0x0 9916: R_RISCV_CALL __clzdi2 + 9916: R_RISCV_RELAX *ABS* + 991a: 000080e7 jalr ra # 9916 + +000000000000991e <.LVL1>: +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_flsl.c:78 + } +#endif + } + + return ret; +} + 991e: 60a2 ld ra,8(sp) +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_flsl.c:61 + ret = NBITS - __builtin_clzl(j); + 9920: 04000793 li a5,64 + 9924: 40a7853b subw a0,a5,a0 + +0000000000009928 <.LVL2>: +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_flsl.c:78 +} + 9928: 0141 addi sp,sp,16 + 992a: 8082 ret + +000000000000992c <.L3>: +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_flsl.c:54 + int ret = 0; + 992c: 4501 li a0,0 + +000000000000992e <.LVL4>: +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_flsl.c:78 +} + 992e: 8082 ret + +0000000000009930 : +lib_isbasedigit(): +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_isbasedigit.c:56 +bool lib_isbasedigit(int ch, int base, int *value) +{ + bool ret = false; + int tmp = 0; + + if (base <= 10) + 9930: 47a9 li a5,10 + 9932: 02b7c063 blt a5,a1,9952 <.L2> 9932: R_RISCV_BRANCH .L2 +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_isbasedigit.c:58 + { + if (ch >= '0' && ch <= base + '0' - 1) + 9936: 02f00793 li a5,47 + 993a: 04a7db63 bge a5,a0,9990 <.L12> 993a: R_RISCV_BRANCH .L12 +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_isbasedigit.c:58 (discriminator 1) + 993e: 02f5859b addiw a1,a1,47 + +0000000000009942 <.LVL1>: + 9942: 04a5c763 blt a1,a0,9990 <.L12> 9942: R_RISCV_BRANCH .L12 + +0000000000009946 <.L4>: +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_isbasedigit.c:60 + { + tmp = ch - '0'; + 9946: fd05079b addiw a5,a0,-48 + +000000000000994a <.L16>: +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_isbasedigit.c:79 + ret = true; + } + else if (ch >= 'A' && ch <= 'A' + base - 11) + { + tmp = ch - 'A' + 10; + ret = true; + 994a: 4505 li a0,1 + +000000000000994c <.L3>: +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_isbasedigit.c:83 + } + } + + if (value) + 994c: c211 beqz a2,9950 <.L6> 994c: R_RISCV_RVC_BRANCH .L6 +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_isbasedigit.c:85 + { + *value = tmp; + 994e: c21c sw a5,0(a2) + +0000000000009950 <.L6>: +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_isbasedigit.c:89 + } + + return ret; +} + 9950: 8082 ret + +0000000000009952 <.L2>: +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_isbasedigit.c:64 + else if (base <= 36) + 9952: 02400793 li a5,36 + 9956: 02b7cd63 blt a5,a1,9990 <.L12> 9956: R_RISCV_BRANCH .L12 +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_isbasedigit.c:66 + if (ch >= '0' && ch <= '9') + 995a: fd05079b addiw a5,a0,-48 + 995e: 4725 li a4,9 + 9960: fef773e3 bgeu a4,a5,9946 <.L4> 9960: R_RISCV_BRANCH .L4 +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_isbasedigit.c:71 + else if (ch >= 'a' && ch <= 'a' + base - 11) + 9964: 06000793 li a5,96 + 9968: 00a7d963 bge a5,a0,997a <.L5> 9968: R_RISCV_BRANCH .L5 +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_isbasedigit.c:71 (discriminator 1) + 996c: 0565859b addiw a1,a1,86 + +0000000000009970 <.LVL5>: + 9970: 02a5c063 blt a1,a0,9990 <.L12> 9970: R_RISCV_BRANCH .L12 +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_isbasedigit.c:73 + tmp = ch - 'a' + 10; + 9974: fa95079b addiw a5,a0,-87 + +0000000000009978 <.LVL6>: +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_isbasedigit.c:74 + ret = true; + 9978: bfc9 j 994a <.L16> 9978: R_RISCV_RVC_JUMP .L16 + +000000000000997a <.L5>: +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_isbasedigit.c:76 + else if (ch >= 'A' && ch <= 'A' + base - 11) + 997a: 04000793 li a5,64 + 997e: 00a7d963 bge a5,a0,9990 <.L12> 997e: R_RISCV_BRANCH .L12 +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_isbasedigit.c:76 (discriminator 1) + 9982: 0365859b addiw a1,a1,54 + +0000000000009986 <.LVL8>: + 9986: 00a5c563 blt a1,a0,9990 <.L12> 9986: R_RISCV_BRANCH .L12 +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_isbasedigit.c:78 + tmp = ch - 'A' + 10; + 998a: fc95079b addiw a5,a0,-55 + 998e: bf75 j 994a <.L16> 998e: R_RISCV_RVC_JUMP .L16 + +0000000000009990 <.L12>: +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_isbasedigit.c:54 + int tmp = 0; + 9990: 4781 li a5,0 +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_isbasedigit.c:53 + bool ret = false; + 9992: 4501 li a0,0 + +0000000000009994 <.LVL9>: + 9994: bf65 j 994c <.L3> 9994: R_RISCV_RVC_JUMP .L3 + +0000000000009996 : +lib_skipspace(): +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_skipspace.c:48 + * Skip over leading whitespace + * + ****************************************************************************/ + +void lib_skipspace(FAR const char **pptr) +{ + 9996: 1101 addi sp,sp,-32 + 9998: e822 sd s0,16(sp) + 999a: ec06 sd ra,24(sp) + 999c: e426 sd s1,8(sp) +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_skipspace.c:49 + FAR const char *ptr = *pptr; + 999e: 6104 ld s1,0(a0) + +00000000000099a0 <.LVL1>: +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_skipspace.c:48 +{ + 99a0: 842a mv s0,a0 + +00000000000099a2 <.L2>: +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_skipspace.c:50 (discriminator 1) + while (isspace(*ptr)) ptr++; + 99a2: 0004c503 lbu a0,0(s1) + 99a6: 00000097 auipc ra,0x0 99a6: R_RISCV_CALL isspace + 99a6: R_RISCV_RELAX *ABS* + 99aa: 000080e7 jalr ra # 99a6 <.L2+0x4> + +00000000000099ae <.LVL3>: + 99ae: e519 bnez a0,99bc <.L3> 99ae: R_RISCV_RVC_BRANCH .L3 +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_skipspace.c:51 + *pptr = ptr; + 99b0: e004 sd s1,0(s0) +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_skipspace.c:52 +} + 99b2: 60e2 ld ra,24(sp) + 99b4: 6442 ld s0,16(sp) + +00000000000099b6 <.LVL4>: + 99b6: 64a2 ld s1,8(sp) + +00000000000099b8 <.LVL5>: + 99b8: 6105 addi sp,sp,32 + 99ba: 8082 ret + +00000000000099bc <.L3>: +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_skipspace.c:50 (discriminator 2) + while (isspace(*ptr)) ptr++; + 99bc: 0485 addi s1,s1,1 + 99be: b7d5 j 99a2 <.L2> 99be: R_RISCV_RVC_JUMP .L2 + +00000000000099c0 : +strcspn(): +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_strcspn.c:44 + * + ****************************************************************************/ + +#undef strcspn /* See mm/README.txt */ +size_t strcspn(const char *s, const char *reject) +{ + 99c0: 1101 addi sp,sp,-32 + 99c2: e822 sd s0,16(sp) + 99c4: e426 sd s1,8(sp) + 99c6: e04a sd s2,0(sp) + 99c8: ec06 sd ra,24(sp) + 99ca: 892a mv s2,a0 + 99cc: 84ae mv s1,a1 +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_strcspn.c:46 + size_t i; + for (i = 0; s[i] && strchr(reject, s[i]) == NULL; i++); + 99ce: 4401 li s0,0 + +00000000000099d0 <.L2>: +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_strcspn.c:46 (discriminator 1) + 99d0: 008907b3 add a5,s2,s0 + 99d4: 0007c583 lbu a1,0(a5) # 9900 + 99d8: c599 beqz a1,99e6 <.L1> 99d8: R_RISCV_RVC_BRANCH .L1 +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_strcspn.c:46 (discriminator 3) + 99da: 8526 mv a0,s1 + 99dc: 00000097 auipc ra,0x0 99dc: R_RISCV_CALL strchr + 99dc: R_RISCV_RELAX *ABS* + 99e0: 000080e7 jalr ra # 99dc <.L2+0xc> + +00000000000099e4 <.LVL2>: + 99e4: c901 beqz a0,99f4 <.L4> 99e4: R_RISCV_RVC_BRANCH .L4 + +00000000000099e6 <.L1>: +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_strcspn.c:48 + return i; +} + 99e6: 60e2 ld ra,24(sp) + 99e8: 8522 mv a0,s0 + 99ea: 6442 ld s0,16(sp) + +00000000000099ec <.LVL3>: + 99ec: 64a2 ld s1,8(sp) + +00000000000099ee <.LVL4>: + 99ee: 6902 ld s2,0(sp) + +00000000000099f0 <.LVL5>: + 99f0: 6105 addi sp,sp,32 + 99f2: 8082 ret + +00000000000099f4 <.L4>: +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_strcspn.c:46 (discriminator 4) + for (i = 0; s[i] && strchr(reject, s[i]) == NULL; i++); + 99f4: 0405 addi s0,s0,1 + 99f6: bfe9 j 99d0 <.L2> 99f6: R_RISCV_RVC_JUMP .L2 + +00000000000099f8 : +strdup(): +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_strdup.c:37 + * Public Functions + ****************************************************************************/ + +#undef strdup /* See mm/README.txt */ +FAR char *strdup(FAR const char *s) +{ + 99f8: 1101 addi sp,sp,-32 + 99fa: ec06 sd ra,24(sp) + 99fc: e822 sd s0,16(sp) + 99fe: e42a sd a0,8(sp) +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_strdup.c:38 + size_t size = strlen(s) + 1; + 9a00: 00000097 auipc ra,0x0 9a00: R_RISCV_CALL strlen + 9a00: R_RISCV_RELAX *ABS* + 9a04: 000080e7 jalr ra # 9a00 + +0000000000009a08 <.LVL1>: + 9a08: 00150613 addi a2,a0,1 + +0000000000009a0c <.LVL2>: +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_strdup.c:39 + FAR char *news = (FAR char *)lib_malloc(size); + 9a0c: 8532 mv a0,a2 + 9a0e: e032 sd a2,0(sp) + 9a10: 00000097 auipc ra,0x0 9a10: R_RISCV_CALL malloc + 9a10: R_RISCV_RELAX *ABS* + 9a14: 000080e7 jalr ra # 9a10 <.LVL2+0x4> + +0000000000009a18 <.LVL3>: + 9a18: 842a mv s0,a0 + +0000000000009a1a <.LVL4>: +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_strdup.c:41 + + if (news) + 9a1a: c519 beqz a0,9a28 <.L1> 9a1a: R_RISCV_RVC_BRANCH .L1 +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_strdup.c:43 + { + strlcpy(news, s, size); + 9a1c: 6602 ld a2,0(sp) + 9a1e: 65a2 ld a1,8(sp) + 9a20: 00000097 auipc ra,0x0 9a20: R_RISCV_CALL strlcpy + 9a20: R_RISCV_RELAX *ABS* + 9a24: 000080e7 jalr ra # 9a20 <.LVL4+0x6> + +0000000000009a28 <.L1>: +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_strdup.c:47 + } + + return news; +} + 9a28: 60e2 ld ra,24(sp) + 9a2a: 8522 mv a0,s0 + 9a2c: 6442 ld s0,16(sp) + +0000000000009a2e <.LVL6>: + 9a2e: 6105 addi sp,sp,32 + +0000000000009a30 <.LVL7>: + 9a30: 8082 ret + +0000000000009a32 : +strncmp(): +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_strncmp.c:38 + ****************************************************************************/ + +#if !defined(CONFIG_LIBC_ARCH_STRNCMP) && defined(LIBC_BUILD_STRNCMP) +#undef strncmp /* See mm/README.txt */ +int strncmp(FAR const char *cs, FAR const char *ct, size_t nb) +{ + 9a32: 86aa mv a3,a0 +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_strncmp.c:40 + register int result = 0; + for (; nb > 0; nb--) + 9a34: 4701 li a4,0 + +0000000000009a36 <.L2>: +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_strncmp.c:40 (discriminator 1) + 9a36: 00e61463 bne a2,a4,9a3e <.L4> 9a36: R_RISCV_BRANCH .L4 +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_strncmp.c:42 + { + if ((result = (unsigned char)*cs - (unsigned char)*ct++) != 0 || + 9a3a: 4501 li a0,0 + 9a3c: a839 j 9a5a <.L3> 9a3c: R_RISCV_RVC_JUMP .L3 + +0000000000009a3e <.L4>: + 9a3e: 00e687b3 add a5,a3,a4 + 9a42: 0007c803 lbu a6,0(a5) + +0000000000009a46 <.LVL2>: + 9a46: 00e587b3 add a5,a1,a4 + 9a4a: 0007c783 lbu a5,0(a5) + 9a4e: 40f8053b subw a0,a6,a5 + +0000000000009a52 <.LVL3>: + 9a52: e501 bnez a0,9a5a <.L3> 9a52: R_RISCV_RVC_BRANCH .L3 + +0000000000009a54 <.LVL4>: +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_strncmp.c:42 (discriminator 1) + 9a54: 0705 addi a4,a4,1 + +0000000000009a56 <.LVL5>: + 9a56: fe0810e3 bnez a6,9a36 <.L2> 9a56: R_RISCV_BRANCH .L2 + +0000000000009a5a <.L3>: +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_strncmp.c:50 + break; + } + } + + return result; +} + 9a5a: 8082 ret + +0000000000009a5c : +strrchr(): +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_strrchr.c:42 + */ + +#if !defined(CONFIG_LIBC_ARCH_STRRCHR) && defined(LIBC_BUILD_STRRCHR) +#undef strrchr /* See mm/README.txt */ +FAR char *strrchr(FAR const char *s, int c) +{ + 9a5c: 87aa mv a5,a0 +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_strrchr.c:43 + FAR const char *r = NULL; + 9a5e: 4501 li a0,0 + +0000000000009a60 <.L3>: +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_strrchr.c:47 + + do + { + if (*s == c) + 9a60: 0007c703 lbu a4,0(a5) + 9a64: 00b71363 bne a4,a1,9a6a <.L2> 9a64: R_RISCV_BRANCH .L2 + 9a68: 853e mv a0,a5 + +0000000000009a6a <.L2>: +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_strrchr.c:52 + { + r = s; + } + } + while (*s++ != '\0'); + 9a6a: 0785 addi a5,a5,1 + 9a6c: fb75 bnez a4,9a60 <.L3> 9a6c: R_RISCV_RVC_BRANCH .L3 +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_strrchr.c:55 + + return (FAR char *)r; +} + 9a6e: 8082 ret + +0000000000009a70 : +memcmp(): +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_memcmp.c:43 +int memcmp(FAR const void *s1, FAR const void *s2, size_t n) +{ + FAR unsigned char *p1 = (FAR unsigned char *)s1; + FAR unsigned char *p2 = (FAR unsigned char *)s2; + + while (n-- > 0) + 9a70: 4781 li a5,0 + +0000000000009a72 <.L2>: + 9a72: 00f61463 bne a2,a5,9a7a <.L4> 9a72: R_RISCV_BRANCH .L4 +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_memcmp.c:58 + + p1++; + p2++; + } + + return 0; + 9a76: 4501 li a0,0 + +0000000000009a78 <.LVL2>: + 9a78: 8082 ret + +0000000000009a7a <.L4>: +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_memcmp.c:45 + if (*p1 < *p2) + 9a7a: 00f50733 add a4,a0,a5 + 9a7e: 00074683 lbu a3,0(a4) # 918e <.LVL4+0x8> + 9a82: 00f58733 add a4,a1,a5 + 9a86: 00074703 lbu a4,0(a4) + 9a8a: 00e6e763 bltu a3,a4,9a98 <.L5> 9a8a: R_RISCV_BRANCH .L5 +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_memcmp.c:49 + else if (*p1 > *p2) + 9a8e: 0785 addi a5,a5,1 + +0000000000009a90 <.LVL4>: + 9a90: fed771e3 bgeu a4,a3,9a72 <.L2> 9a90: R_RISCV_BRANCH .L2 +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_memcmp.c:51 + return 1; + 9a94: 4505 li a0,1 + +0000000000009a96 <.LVL5>: +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_memcmp.c:59 +} + 9a96: 8082 ret + +0000000000009a98 <.L5>: +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_memcmp.c:47 + return -1; + 9a98: 557d li a0,-1 + +0000000000009a9a <.LVL7>: + 9a9a: 8082 ret + +0000000000009a9c : +strchr(): +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_strchr.c:55 (discriminator 1) +#undef strchr /* See mm/README.txt */ +FAR char *strchr(FAR const char *s, int c) +{ + for (; ; s++) + { + if (*s == c) + 9a9c: 00054783 lbu a5,0(a0) + 9aa0: 00b78663 beq a5,a1,9aac <.L1> 9aa0: R_RISCV_BRANCH .L1 +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_strchr.c:60 + { + return (FAR char *)s; + } + + if (*s == '\0') + 9aa4: c399 beqz a5,9aaa <.L4> 9aa4: R_RISCV_RVC_BRANCH .L4 +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_strchr.c:53 + for (; ; s++) + 9aa6: 0505 addi a0,a0,1 + +0000000000009aa8 <.LVL1>: +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_strchr.c:55 + if (*s == c) + 9aa8: bfd5 j 9a9c 9aa8: R_RISCV_RVC_JUMP .L3 + +0000000000009aaa <.L4>: +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_strchr.c:66 + { + break; + } + } + + return NULL; + 9aaa: 4501 li a0,0 + +0000000000009aac <.L1>: +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_strchr.c:67 +} + 9aac: 8082 ret + +0000000000009aae : +strcmp(): +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_strcmp.c:38 + ****************************************************************************/ + +#if !defined(CONFIG_LIBC_ARCH_STRCMP) && defined(LIBC_BUILD_STRCMP) +#undef strcmp /* See mm/README.txt */ +int strcmp(FAR const char *cs, FAR const char *ct) +{ + 9aae: 87aa mv a5,a0 + +0000000000009ab0 <.L3>: +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_strcmp.c:42 + register int result; + for (; ; ) + { + if ((result = (unsigned char)*cs - (unsigned char)*ct++) != 0 || + 9ab0: 0007c703 lbu a4,0(a5) + 9ab4: 0005c503 lbu a0,0(a1) + 9ab8: 0585 addi a1,a1,1 + +0000000000009aba <.LVL2>: + 9aba: 40a7053b subw a0,a4,a0 + 9abe: e119 bnez a0,9ac4 <.L2> 9abe: R_RISCV_RVC_BRANCH .L2 +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_strcmp.c:43 (discriminator 1) + *cs++ == '\0') + 9ac0: 0785 addi a5,a5,1 +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_strcmp.c:42 (discriminator 1) + if ((result = (unsigned char)*cs - (unsigned char)*ct++) != 0 || + 9ac2: f77d bnez a4,9ab0 <.L3> 9ac2: R_RISCV_RVC_BRANCH .L3 + +0000000000009ac4 <.L2>: +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_strcmp.c:50 + break; + } + } + + return result; +} + 9ac4: 8082 ret + +0000000000009ac6 : +strlcat(): +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_strlcat.c:52 + ****************************************************************************/ + +#if !defined(CONFIG_LIBC_ARCH_STRLCAT) && defined(LIBC_BUILD_STRLCAT) +#undef strlcat /* See mm/README.txt */ +size_t strlcat(FAR char *dst, FAR const char *src, size_t dsize) +{ + 9ac6: 1141 addi sp,sp,-16 + 9ac8: e022 sd s0,0(sp) + 9aca: 842a mv s0,a0 + +0000000000009acc <.LVL1>: + 9acc: e406 sd ra,8(sp) + 9ace: 852e mv a0,a1 + +0000000000009ad0 <.LVL2>: +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_strlcat.c:60 + size_t n = dsize; + size_t dlen; + + /* Find the end of dst and adjust bytes left but don't go past end. */ + + while (n-- != 0 && *dst != '\0') + 9ad0: 00c406b3 add a3,s0,a2 + 9ad4: 87a2 mv a5,s0 + +0000000000009ad6 <.L2>: + 9ad6: 02d79163 bne a5,a3,9af8 <.L3> 9ad6: R_RISCV_BRANCH .L3 + +0000000000009ada <.L7>: +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_strlcat.c:65 + { + dst++; + } + + dlen = dst - odst; + 9ada: 40878433 sub s0,a5,s0 + +0000000000009ade <.LVL4>: +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_strlcat.c:66 + n = dsize - dlen; + 9ade: 408606b3 sub a3,a2,s0 + +0000000000009ae2 <.LVL5>: +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_strlcat.c:68 + + if (n-- == 0) + 9ae2: 02861063 bne a2,s0,9b02 <.L15> 9ae2: R_RISCV_BRANCH .L15 +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_strlcat.c:70 + { + return dlen + strlen(src); + 9ae6: 00000097 auipc ra,0x0 9ae6: R_RISCV_CALL strlen + 9ae6: R_RISCV_RELAX *ABS* + 9aea: 000080e7 jalr ra # 9ae6 <.LVL5+0x4> + +0000000000009aee <.L17>: +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_strlcat.c:89 + *dst = '\0'; + + /* Count does not include NUL */ + + return dlen + (src - osrc); +} + 9aee: 60a2 ld ra,8(sp) +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_strlcat.c:88 + return dlen + (src - osrc); + 9af0: 9522 add a0,a0,s0 +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_strlcat.c:89 +} + 9af2: 6402 ld s0,0(sp) + +0000000000009af4 <.LVL7>: + 9af4: 0141 addi sp,sp,16 + 9af6: 8082 ret + +0000000000009af8 <.L3>: +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_strlcat.c:60 (discriminator 1) + while (n-- != 0 && *dst != '\0') + 9af8: 0007c703 lbu a4,0(a5) + 9afc: df79 beqz a4,9ada <.L7> 9afc: R_RISCV_RVC_BRANCH .L7 +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_strlcat.c:62 + dst++; + 9afe: 0785 addi a5,a5,1 + +0000000000009b00 <.LVL9>: + 9b00: bfd9 j 9ad6 <.L2> 9b00: R_RISCV_RVC_JUMP .L2 + +0000000000009b02 <.L15>: +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_strlcat.c:68 + if (n-- == 0) + 9b02: 16fd addi a3,a3,-1 + +0000000000009b04 <.LVL11>: + 9b04: 872a mv a4,a0 + +0000000000009b06 <.L8>: +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_strlcat.c:73 + while (*src != '\0') + 9b06: 00074603 lbu a2,0(a4) + 9b0a: e611 bnez a2,9b16 <.L11> 9b0a: R_RISCV_RVC_BRANCH .L11 +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_strlcat.c:84 + *dst = '\0'; + 9b0c: 00078023 sb zero,0(a5) +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_strlcat.c:88 + return dlen + (src - osrc); + 9b10: 40a70533 sub a0,a4,a0 + +0000000000009b14 <.LVL13>: + 9b14: bfe9 j 9aee <.L17> 9b14: R_RISCV_RVC_JUMP .L17 + +0000000000009b16 <.L11>: +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_strlcat.c:75 + if (n != 0) + 9b16: c689 beqz a3,9b20 <.L10> 9b16: R_RISCV_RVC_BRANCH .L10 + +0000000000009b18 <.LVL15>: +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_strlcat.c:77 + *dst++ = *src; + 9b18: 00c78023 sb a2,0(a5) +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_strlcat.c:78 + n--; + 9b1c: 16fd addi a3,a3,-1 +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_strlcat.c:77 + *dst++ = *src; + 9b1e: 0785 addi a5,a5,1 + +0000000000009b20 <.L10>: +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_strlcat.c:81 + src++; + 9b20: 0705 addi a4,a4,1 + 9b22: b7d5 j 9b06 <.L8> 9b22: R_RISCV_RVC_JUMP .L8 + +0000000000009b24 : +strlcpy(): +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_strlcpy.c:51 + ****************************************************************************/ + +#if !defined(CONFIG_LIBC_ARCH_STRLCPY) && defined(LIBC_BUILD_STRLCPY) +#undef strlcpy /* See mm/README.txt */ +size_t strlcpy(FAR char *dst, FAR const char *src, size_t dsize) +{ + 9b24: 872a mv a4,a0 + +0000000000009b26 <.LVL1>: +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_strlcpy.c:55 + FAR const char *osrc = src; + size_t nleft = dsize; + + if (nleft != 0) + 9b26: c60d beqz a2,9b50 <.L8> 9b26: R_RISCV_RVC_BRANCH .L8 + 9b28: 962e add a2,a2,a1 + +0000000000009b2a <.LVL2>: + 9b2a: 87ae mv a5,a1 + +0000000000009b2c <.L3>: +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_strlcpy.c:57 + { + while (--nleft != 0) + 9b2c: 86be mv a3,a5 +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_strlcpy.c:59 + { + if ((*dst++ = *src++) == '\0') + 9b2e: 0785 addi a5,a5,1 + +0000000000009b30 <.LVL4>: +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_strlcpy.c:57 + while (--nleft != 0) + 9b30: 00c79663 bne a5,a2,9b3c <.L5> 9b30: R_RISCV_BRANCH .L5 + +0000000000009b34 <.LVL5>: +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_strlcpy.c:70 + + if (nleft == 0) + { + if (dsize != 0) + { + *dst = '\0'; + 9b34: 00070023 sb zero,0(a4) + 9b38: 87b6 mv a5,a3 + 9b3a: a821 j 9b52 <.L7> 9b3a: R_RISCV_RVC_JUMP .L7 + +0000000000009b3c <.L5>: +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_strlcpy.c:59 + if ((*dst++ = *src++) == '\0') + 9b3c: fff7c683 lbu a3,-1(a5) + +0000000000009b40 <.LVL7>: + 9b40: 0705 addi a4,a4,1 + 9b42: fed70fa3 sb a3,-1(a4) + 9b46: f2fd bnez a3,9b2c <.L3> 9b46: R_RISCV_RVC_BRANCH .L3 + +0000000000009b48 <.L4>: +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_strlcpy.c:76 + } + + while (*src++ != '\0'); + } + + return src - osrc - 1; + 9b48: 40b78533 sub a0,a5,a1 + 9b4c: 157d addi a0,a0,-1 +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_strlcpy.c:77 +} + 9b4e: 8082 ret + +0000000000009b50 <.L8>: + 9b50: 87ae mv a5,a1 + +0000000000009b52 <.L7>: +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_strlcpy.c:73 (discriminator 1) + while (*src++ != '\0'); + 9b52: 0007c703 lbu a4,0(a5) + 9b56: 0785 addi a5,a5,1 + 9b58: ff6d bnez a4,9b52 <.L7> 9b58: R_RISCV_RVC_BRANCH .L7 + 9b5a: b7fd j 9b48 <.L4> 9b5a: R_RISCV_RVC_JUMP .L4 + +0000000000009b5c : +strlen(): +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_strlen.c:40 +#if !defined(CONFIG_LIBC_ARCH_STRLEN) && defined(LIBC_BUILD_STRLEN) +#undef strlen /* See mm/README.txt */ +size_t strlen(FAR const char *s) +{ + FAR const char *sc; + for (sc = s; *sc != '\0'; ++sc); + 9b5c: 87aa mv a5,a0 + +0000000000009b5e <.L2>: +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_strlen.c:40 (discriminator 1) + 9b5e: 0007c703 lbu a4,0(a5) + 9b62: e701 bnez a4,9b6a <.L3> 9b62: R_RISCV_RVC_BRANCH .L3 +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_strlen.c:42 + return sc - s; +} + 9b64: 40a78533 sub a0,a5,a0 + +0000000000009b68 <.LVL2>: + 9b68: 8082 ret + +0000000000009b6a <.L3>: +/Users/Luppy/ox64/nuttx/libs/libc/string/lib_strlen.c:40 (discriminator 3) + for (sc = s; *sc != '\0'; ++sc); + 9b6a: 0785 addi a5,a5,1 + 9b6c: bfcd j 9b5e <.L2> 9b6c: R_RISCV_RVC_JUMP .L2 + +0000000000009b6e : +vsyslog(): +/Users/Luppy/ox64/nuttx/libs/libc/syslog/lib_syslog.c:55 + +void vsyslog(int priority, FAR const IPTR char *fmt, va_list ap) +{ + /* Check if this priority is enabled */ + + if ((g_syslog_mask & LOG_MASK(priority)) != 0) + 9b6e: 00000797 auipc a5,0x0 9b6e: R_RISCV_PCREL_HI20 g_syslog_mask + 9b6e: R_RISCV_RELAX *ABS* + 9b72: 0007c783 lbu a5,0(a5) # 9b6e 9b72: R_RISCV_PCREL_LO12_I .L0 + 9b72: R_RISCV_RELAX *ABS* + 9b76: 40a7d7bb sraw a5,a5,a0 + 9b7a: 8b85 andi a5,a5,1 + 9b7c: cf81 beqz a5,9b94 <.L7> 9b7c: R_RISCV_RVC_BRANCH .L7 + +0000000000009b7e <.LBB2>: +/Users/Luppy/ox64/nuttx/libs/libc/syslog/lib_syslog.c:52 +{ + 9b7e: 1101 addi sp,sp,-32 + +0000000000009b80 <.LBB3>: +/Users/Luppy/ox64/nuttx/libs/libc/syslog/lib_syslog.c:67 + */ + +#ifdef va_copy + va_list copy; + + va_copy(copy, ap); + 9b80: e432 sd a2,8(sp) +/Users/Luppy/ox64/nuttx/libs/libc/syslog/lib_syslog.c:68 + nx_vsyslog(priority, fmt, ©); + 9b82: 0030 addi a2,sp,8 + +0000000000009b84 <.LBE3>: +/Users/Luppy/ox64/nuttx/libs/libc/syslog/lib_syslog.c:52 +{ + 9b84: ec06 sd ra,24(sp) + +0000000000009b86 <.LBB4>: +/Users/Luppy/ox64/nuttx/libs/libc/syslog/lib_syslog.c:68 + nx_vsyslog(priority, fmt, ©); + 9b86: 00000097 auipc ra,0x0 9b86: R_RISCV_CALL nx_vsyslog + 9b86: R_RISCV_RELAX *ABS* + 9b8a: 000080e7 jalr ra # 9b86 <.LBB4> + +0000000000009b8e <.LBE4>: +/Users/Luppy/ox64/nuttx/libs/libc/syslog/lib_syslog.c:74 + va_end(copy); +#else + nx_vsyslog(priority, fmt, &ap); +#endif + } +} + 9b8e: 60e2 ld ra,24(sp) + 9b90: 6105 addi sp,sp,32 + 9b92: 8082 ret + +0000000000009b94 <.L7>: + 9b94: 8082 ret + +0000000000009b96 : +syslog(): +/Users/Luppy/ox64/nuttx/libs/libc/syslog/lib_syslog.c:94 + * None. + * + ****************************************************************************/ + +void syslog(int priority, FAR const IPTR char *fmt, ...) +{ + 9b96: 715d addi sp,sp,-80 + 9b98: f032 sd a2,32(sp) +/Users/Luppy/ox64/nuttx/libs/libc/syslog/lib_syslog.c:99 + va_list ap; + + /* Let vsyslog do the work */ + + va_start(ap, fmt); + 9b9a: 1010 addi a2,sp,32 +/Users/Luppy/ox64/nuttx/libs/libc/syslog/lib_syslog.c:94 +{ + 9b9c: ec06 sd ra,24(sp) + 9b9e: f436 sd a3,40(sp) + 9ba0: f83a sd a4,48(sp) + 9ba2: fc3e sd a5,56(sp) + 9ba4: e0c2 sd a6,64(sp) + 9ba6: e4c6 sd a7,72(sp) +/Users/Luppy/ox64/nuttx/libs/libc/syslog/lib_syslog.c:99 + va_start(ap, fmt); + 9ba8: e432 sd a2,8(sp) +/Users/Luppy/ox64/nuttx/libs/libc/syslog/lib_syslog.c:100 + vsyslog(priority, fmt, ap); + 9baa: 00000097 auipc ra,0x0 9baa: R_RISCV_CALL vsyslog + 9baa: R_RISCV_RELAX *ABS* + 9bae: 000080e7 jalr ra # 9baa + +0000000000009bb2 <.LVL5>: +/Users/Luppy/ox64/nuttx/libs/libc/syslog/lib_syslog.c:102 + va_end(ap); +} + 9bb2: 60e2 ld ra,24(sp) + 9bb4: 6161 addi sp,sp,80 + 9bb6: 8082 ret + +0000000000009bb8 : +setlogmask(): +/Users/Luppy/ox64/nuttx/libs/libc/syslog/lib_setlogmask.c:81 + +int setlogmask(int mask) +{ + uint8_t oldmask; + + oldmask = g_syslog_mask; + 9bb8: 00000797 auipc a5,0x0 9bb8: R_RISCV_PCREL_HI20 .LANCHOR0 + 9bb8: R_RISCV_RELAX *ABS* + 9bbc: 00078793 mv a5,a5 9bbc: R_RISCV_PCREL_LO12_I .L0 + 9bbc: R_RISCV_RELAX *ABS* + 9bc0: 0007c703 lbu a4,0(a5) # 9bb8 +/Users/Luppy/ox64/nuttx/libs/libc/syslog/lib_setlogmask.c:82 + g_syslog_mask = (uint8_t)mask; + 9bc4: 00a78023 sb a0,0(a5) +/Users/Luppy/ox64/nuttx/libs/libc/syslog/lib_setlogmask.c:85 + + return oldmask; +} + 9bc8: 853a mv a0,a4 + +0000000000009bca <.LVL2>: + 9bca: 8082 ret + +0000000000009bcc