commit | fe8eab468eee18329922901bcf74310534e08b59 | [log] [tgz] |
---|---|---|
author | Shubham Sandeep Rastogi <srastogi22@apple.com> | Thu Apr 06 14:30:27 2023 -0700 |
committer | Shubham Sandeep Rastogi <srastogi22@apple.com> | Wed Apr 26 16:16:33 2023 -0700 |
tree | 770117a75a70aa854f54f37a1ddbaf28e9b36259 | |
parent | 1533478615e998192e227bded9d0e9029474936b [diff] |
Add tests to verify behavior of .cfi_sections .debug_frame intrinsic. There was some lacking test coverage for checking when the .cfi_sections .debug_frame intrinsic is emitted. On x86_64, with -fno-exceptions there is no .cfi_sections .debug_frame intrinsic emitted because there is an unwind table attribute. On AArch64, with -fno-exceptions, there is no unwind table attribute, so the .cfi_sections .debug_frame intrinsic is emitted correctly. Alternatively, with -fexceptions, both AArch64 and x86_64 emit an unwind table and therefore do not emit a .cfi_sections .debug_frame intrinsic All this work was done in addition to https://reviews.llvm.org/D139663 patch. Differential Revision: https://reviews.llvm.org/D147747
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, or #llvm IRC channel on OFTC.
The LLVM project has adopted a code of conduct for participants to all modes of communication within the project.