Fork of llvm with experimental commits and workarounds for RPCS3
Go to file
Oliver Stannard e688a795a0 [ARM] Add ARMv8.2-A FP16 vector instructions
ARMv8.2-A adds 16-bit floating point versions of all existing SIMD
floating-point instructions. This is an optional extension, so all of
these instructions require the FeatureFullFP16 subtarget feature.

Note that VFP without SIMD is not a valid combination for any version of
ARMv8-A, but I have ensured that these instructions all depend on both
FeatureNEON and FeatureFullFP16 for consistency.

Differential Revision: http://reviews.llvm.org/D15039

llvm-svn: 255764
2015-12-16 12:37:39 +00:00
autoconf
bindings
cmake
docs [IR] Add support for floating pointer atomic loads and stores 2015-12-16 00:49:36 +00:00
examples
include [SectionMemoryManager] Make better use of virtual memory 2015-12-16 11:13:23 +00:00
lib [ARM] Add ARMv8.2-A FP16 vector instructions 2015-12-16 12:37:39 +00:00
projects
resources
test [ARM] Add ARMv8.2-A FP16 vector instructions 2015-12-16 12:37:39 +00:00
tools [sancov] blacklist support. 2015-12-16 00:31:48 +00:00
unittests
utils
.arcconfig
.clang-format
.clang-tidy
.gitignore
CMakeLists.txt
CODE_OWNERS.TXT
configure
CREDITS.TXT
LICENSE.TXT
llvm.spec.in
LLVMBuild.txt
Makefile
Makefile.common
Makefile.config.in
Makefile.rules
README.txt

Low Level Virtual Machine (LLVM)
================================

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.