| commit | b1dcf78378aaded19b47886cece991cee3441207 | [log] [tgz] |
|---|---|---|
| author | Feng Zou <feng.zou@intel.com> | Tue Jun 24 14:22:14 2025 +0800 |
| committer | GitHub <noreply@github.com> | Tue Jun 24 14:22:14 2025 +0800 |
| tree | cdc8a0046298df1254b6e81df668b6f02475c3a7 | |
| parent | ef048471f70143b4c0505dff10828a5b7e3a4ec4 [diff] |
[X86][APX] Fix issue of push2/pop2 instr with stack clash protection (#145303) When -stack-clash-protection option is specified and APX push2pop2 is enabled, there will be two calls to emitSPUpdate function which emits two STACKALLOC_W_PROBING pseudo instructions. The pseudo instruction for push2 padding is silently ignored which leads to the stack misaligned to 16 bytes and GP exception in runtime. Fixed by directly emitting "push %rax" instruction for push2 padding, instead of calling emitSPUpdate. There was a similar issue on https://reviews.llvm.org/D150033.
Welcome to the LLVM project!
This repository contains the source code for LLVM, a toolkit for the construction of highly optimized compilers, optimizers, and run-time environments.
The LLVM project has multiple components. The core of the project is itself called “LLVM”. This contains all of the tools, libraries, and header files needed to process intermediate representations and convert them into object files. Tools include an assembler, disassembler, bitcode analyzer, and bitcode optimizer.
C-like languages use the Clang frontend. This component compiles C, C++, Objective-C, and Objective-C++ code into LLVM bitcode -- and from there into object files, using LLVM.
Other components include: the libc++ C++ standard library, the LLD linker, and more.
Consult the Getting Started with LLVM page for information on building and running LLVM.
For information on how to contribute to the LLVM project, please take a look at the Contributing to LLVM guide.
Join the LLVM Discourse forums, Discord chat, LLVM Office Hours or Regular sync-ups.
The LLVM project has adopted a code of conduct for participants to all modes of communication within the project.