llvm-project/llvm
Nikita Popov a9b03d9e2e [Attributor] Remove function pointer restriction for AAAlign
This check is not compatible with opaque pointers. We can avoid
it by adjusting the getPointerAlignment() implementation to avoid
creating unnecessary ptrtoint expressions for bitcasted pointers.
The code already uses OnlyIfReduced to not create an expression
if it does not simplify, and this makes sure that folding a
bitcast and ptrtoint into a ptrtoint doesn't count as a
simplification.

Differential Revision: https://reviews.llvm.org/D120904
2022-03-07 10:02:45 +01:00
..
benchmarks
bindings [SanitizerBounds] Add support for NoSanitizeBounds function 2022-03-01 18:47:02 +01:00
cmake [cmake] Pass /winsysroot explicitly 2022-03-04 22:27:59 -08:00
docs [llvm-cov] New parameters to set coverage coverage_watermark 2022-03-04 22:21:40 -08:00
examples [examples][BuildingAJIT] Use the right layer when adding code in Chapter 3. 2022-03-01 16:44:55 -08:00
include [SCEV] Enable verification in LoopPM 2022-03-07 09:46:20 +01:00
lib [Attributor] Remove function pointer restriction for AAAlign 2022-03-07 10:02:45 +01:00
projects
resources
runtimes Reapply "[cmake] Prefix gtest and gtest_main with "llvm_"." 2022-03-04 13:45:43 -08:00
test [AArch64] Use NPM for cost model tests. NFC 2022-03-07 08:57:50 +00:00
tools [llvm-cov] New parameters to set coverage coverage_watermark 2022-03-04 22:21:40 -08:00
unittests Reapply "[cmake] Prefix gtest and gtest_main with "llvm_"." 2022-03-04 13:45:43 -08:00
utils Reapply "[cmake] Prefix gtest and gtest_main with "llvm_"." 2022-03-04 13:45:43 -08:00
.clang-format
.clang-tidy
.gitattributes
.gitignore
CMakeLists.txt
CODE_OWNERS.TXT
CREDITS.TXT [Docs] Add self to credits 2022-02-22 16:43:53 -08:00
LICENSE.TXT
README.txt
RELEASE_TESTERS.TXT
configure
llvm.spec.in

README.txt

The LLVM Compiler Infrastructure
================================

This directory and its subdirectories contain source code for LLVM,
a toolkit for the construction of highly optimized compilers,
optimizers, and runtime environments.

LLVM is open source software. You may freely distribute it under the terms of
the license agreement found in LICENSE.txt.

Please see the documentation provided in docs/ for further
assistance with LLVM, and in particular docs/GettingStarted.rst for getting
started with LLVM and docs/README.txt for an overview of LLVM's
documentation setup.

If you are writing a package for LLVM, see docs/Packaging.rst for our
suggestions.