LLVM backend for 6502
Go to file
Chad Rosier 1b1fdc0599 [avx] Add patterns for combining vextractf128 + vmovaps/vmovups/vmobdqu to
vextractf128 with 128-bit mem dest.

Combines

	vextractf128 $0, %ymm0, %xmm0
	vmovaps %xmm0, (%rdi)

to

    vextractf128 $0, %ymm0, (%rdi)

rdar://11082570


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@153139 91177308-0d34-0410-b5e6-96231b3b80d8
2012-03-20 21:43:40 +00:00
autoconf
bindings
cmake
docs
examples
include [Object/COFF]: Expose getSectionContents. 2012-03-19 20:27:37 +00:00
lib [avx] Add patterns for combining vextractf128 + vmovaps/vmovups/vmobdqu to 2012-03-20 21:43:40 +00:00
projects
runtime
test [avx] Add patterns for combining vextractf128 + vmovaps/vmovups/vmobdqu to 2012-03-20 21:43:40 +00:00
tools Fix two bugpoint bugs: 2012-03-19 23:42:11 +00:00
unittests
utils Reserve number of MI operands to accom,odate complex patterns. 2012-03-20 21:07:51 +00:00
.gitignore
CMakeLists.txt
configure
CREDITS.TXT
LICENSE.TXT
llvm.spec.in
LLVMBuild.txt
Makefile
Makefile.common
Makefile.config.in
Makefile.rules
README.txt test commit 2012-03-20 13:12:38 +00:00

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

This directory and its subdirectories contain source code for the Low Level
Virtual Machine, 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 HTML documentation provided in docs/index.html for further
assistance with LLVM.

If you're writing a package for LLVM, see docs/Packaging.html for our
suggestions.