LLVM backend for 6502
Go to file
Jakob Stoklund Olesen a063e19593 Run LiveVariables instead of computing liveness locally in -regalloc=fast.
This actually makes everything slower, but the plan is to have isel add <kill>
flags the way it is already adding <dead> flags. Then LiveVariables can be
removed again.

When ignoring the time spent in LiveVariables, -regalloc=fast is now twice as
fast as -regalloc=local.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@102034 91177308-0d34-0410-b5e6-96231b3b80d8
2010-04-21 23:18:07 +00:00
autoconf Add an autoconf check for -retain-symbols-file and conditionalize 2010-04-16 22:58:15 +00:00
bindings
cmake
docs Dragonegg will be released along side llvm-2.7. 2010-04-21 13:51:48 +00:00
examples Fix -Wcast-qual warning. 2010-04-20 11:50:37 +00:00
include Add fast register allocator, enabled with -regalloc=fast. 2010-04-21 18:02:42 +00:00
lib Run LiveVariables instead of computing liveness locally in -regalloc=fast. 2010-04-21 23:18:07 +00:00
projects
runtime Delete a blank line. 2010-04-16 13:32:55 +00:00
test Do not try to optimize a copy that has already been marked for deletion. 2010-04-21 20:57:54 +00:00
tools Support .a files directly (without -l). 2010-04-19 17:25:38 +00:00
unittests silence some unused-value warnings. 2010-04-18 03:28:20 +00:00
utils When doing Thumb disassembly, there's no need to consider t2ADDrSPi12/t2SUBrSPi12, 2010-04-20 18:45:24 +00:00
website
build-for-llvm-top.sh
CMakeLists.txt
configure Regenerate configure script. 2010-04-16 22:59:06 +00:00
CREDITS.TXT
LICENSE.TXT
llvm.spec.in
Makefile
Makefile.common
Makefile.config.in Add an autoconf check for -retain-symbols-file and conditionalize 2010-04-16 22:58:15 +00:00
Makefile.rules Enable -Wcast-qual for C++ files, where intentional qualifier-stripping can 2010-04-19 18:33:28 +00:00
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.