gpt4 book ai didi

c - 解释force_align_arg_pointer函数属性

转载 作者:太空狗 更新时间:2023-10-29 11:09:53 26 4
gpt4 key购买 nike

来自GCC documentation

On the Intel x86, the force_align_arg_pointer attribute may be applied to individual function definitions, generating an alternate prologue and epilogue that realigns the runtime stack. This supports mixing legacy codes that run with a 4-byte aligned stack with modern codes that keep a 16-byte stack for SSE compatibility. The alternate prologue and epilogue are slower and bigger than the regular ones, and the alternate prologue requires a scratch register; this lowers the number of registers available if used in conjunction with the regparm attribute. The force_align_arg_pointer attribute is incompatible with nested functions; this is considered a hard error.

具体来说,我想知道什么是序言、结语和 SSE 兼容性?

最佳答案

来自 gcc manual :

void TARGET_ASM_FUNCTION_PROLOGUE (FILE *file, HOST_WIDE_INT size)

prologue负责设置栈帧,初始化帧指针寄存器,保存必须保存的寄存器,分配size局部变量的额外存储字节。 file是应该输出汇编代码的标准输入输出流。

在具有“寄存器窗口”的机器上,函数入口代码不会将窗口中的寄存器保存在堆栈中,即使它们应该由函数调用保存;相反,如果函数中使用了任何未调用使用的寄存器,它会采取适当的步骤“压入”寄存器堆栈。

在函数可能有或没有帧指针的机器上,函数入口代码必须相应地变化;如果需要,它必须设置帧指针,否则就不需要。要确定是否需要帧指针,宏可以引用变量frame_pointer_needed。 .变量的值将为 1在运行时需要帧指针的函数中。

void TARGET_ASM_FUNCTION_EPILOGUE (FILE *file, HOST_WIDE_INT size)

如果已定义,则为输出汇编代码以退出函数的函数。结语负责在函数被调用时将保存的寄存器和堆栈指针恢复到它们的值,并将控制权返回给调用者。此宏采用与宏 TARGET_ASM_FUNCTION_PROLOGUE 相同的参数, 要恢复的寄存器由 regs_ever_live 确定和 CALL_USED_REGISTERS以同样的方式。

SSE (Streaming SIMD Extensions)是 128 位 CPU 寄存器的集合。这些寄存器可以包含 4 个 32 位标量,之后可以同时对 4 个元素中的每一个执行操作。相比之下,在常规装配中可能需要 4 次或更多次操作才能完成同样的事情。

关于c - 解释force_align_arg_pointer函数属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13841247/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com