commit | 1b4bd4e1a5120c8bb4daa44787a3bc4559b6b3b4 | [log] [tgz] |
---|---|---|
author | Maksim Panchenko <maks@fb.com> | Fri Jan 24 16:43:02 2025 -0800 |
committer | GitHub <noreply@github.com> | Fri Jan 24 16:43:02 2025 -0800 |
tree | e903207cc9814760b0d1a6828181adbeabf0ad99 | |
parent | db1ee18eda6329d7577ad019a47822220b3e293d [diff] |
[BOLT][AArch64] Remove assertions from jump table heuristic (#124372) The code for jump table detection on AArch64 asserts liberally whenever the input instruction sequence does not match the expected pattern. As a result, BOLT fails to process binaries with such sequences instead of ignoring functions with unknown control flow. Remove asserts in analyzeIndirectBranchFragment() and mark indirect jumps as instructions with unknown control flow instead.
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.