LLVM backend for 6502
Go to file
Evan Cheng d7e3cc840b Don't be overly aggressive with CSE of "ldr constantpool". If it's a pc-relative
value, the "add pc" must be CSE'ed at the same time. We could follow the same
approach as T2 by adding pseudo instructions that combine the ldr + "add pc".
But the better approach is to use movw + movt (which I will enable soon), so
I'll leave this as a TODO.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@123949 91177308-0d34-0410-b5e6-96231b3b80d8
2011-01-20 23:55:07 +00:00
autoconf
bindings
cmake Add some platform checks. Also fix a typo on a Makefile. 2011-01-17 16:35:14 +00:00
docs finish a sentence. 2011-01-18 06:12:10 +00:00
examples
include Sorry, several patches in one. 2011-01-20 08:34:58 +00:00
lib Don't be overly aggressive with CSE of "ldr constantpool". If it's a pc-relative 2011-01-20 23:55:07 +00:00
projects Regen configure 2010-12-12 21:42:01 +00:00
runtime
test Don't be overly aggressive with CSE of "ldr constantpool". If it's a pc-relative 2011-01-20 23:55:07 +00:00
tools RegionPassPrinter should contain the name of the pass printed 2011-01-20 21:03:20 +00:00
unittests Unittests/Support/Path: Tweak test. 2011-01-15 18:52:49 +00:00
utils Move InstAlias check of argument types to a separate loop. 2011-01-20 18:38:10 +00:00
website
.gitignore
build-for-llvm-top.sh
CMakeLists.txt Suppress warning "switch statement contains 'default' but no 'case' labels" on MSVC. 2011-01-17 02:07:17 +00:00
configure
CREDITS.TXT
LICENSE.TXT
llvm.spec.in
Makefile
Makefile.common
Makefile.config.in
Makefile.rules
ModuleInfo.txt
README.txt

\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.