- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在尝试了解裸机 C 应用程序的确切工作原理。我编写了自己的调用 __libc_init_array
的启动程序集代码,我看到它遍历 preinit_array
部分并调用其中的所有函数。据我了解,gcc 为一些需要在 main 之前运行的自己的初始化例程添加了该部分,但随后在 .init
部分中出现了 _init()
函数。
gcc 是否生成该函数?它来自libc吗?还是必须自己提供?有哪些好的资源可以用来学习这些东西?
最佳答案
what does symbols have to do with platform? is init_() generated by gcc on one platform and not on another?
是的,启动和结语例程留给实现,实际上 gcc
不会生成它。
libc 提供了这些符号 - https://github.com/bminor/newlib/blob/e0f24404b3fcfa2c332ae14c3934546c91be3f42/newlib/libc/misc/init.c
根据您的目标硬件,初始化可能会以完全不同的方式完成。
STM32Fxxx 启动示例。
.section .text.Reset_Handler
.weak Reset_Handler
.type Reset_Handler, %function
Reset_Handler:
ldr sp, =_estack /* Atollic update: set stack pointer */
/* Copy the data segment initializers from flash to SRAM */
movs r1, #0
b LoopCopyDataInit
CopyDataInit:
ldr r3, =_sidata
ldr r3, [r3, r1]
str r3, [r0, r1]
adds r1, r1, #4
LoopCopyDataInit:
ldr r0, =_sdata
ldr r3, =_edata
adds r2, r0, r1
cmp r2, r3
bcc CopyDataInit
ldr r2, =_sbss
b LoopFillZerobss
/* Zero fill the bss segment. */
FillZerobss:
movs r3, #0
str r3, [r2], #4
LoopFillZerobss:
ldr r3, = _ebss
cmp r2, r3
bcc FillZerobss
/* Call the clock system intitialization function.*/
bl SystemInit
/* Call static constructors */
bl __libc_init_array
/* Call the application's entry point.*/
bl main
如您所见,在此实现中调用了两个函数 - 一个用于极低杠杆硬件初始化的 SystemInit
和 __libc_init_array
它是 newlib 库的内部初始化(现在最常用于裸机项目)
问题是如果您决定不使用标准库并且不想链接任何标准库。一些 takechains 仅通过 return 语句提供弱函数,有些则没有。如果您遇到链接器问题,只需在启动文件中注释此调用或自己提供一个空函数
关于c - 裸机 C 应用程序究竟是如何启动的?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45915762/
Feel free to skip straight to TL/DR if you're not interested in details of the question 简短的序言: 我最近决定
我一直在阅读 A Tour of Go学习Go-Lang到目前为止一切顺利。 我目前在 Struct Fields类(class),这是右侧的示例代码: package main import "fm
Last time I got confused顺便说一下PowerShell急切地展开集合,基思总结了它的启发式如下: Putting the results (an array) within a
我是一名优秀的程序员,十分优秀!