LLVM backend for 6502
Go to file
Bill Wendling e717610f53 Add support for parsing register lists. We can't use a bitfield to keep track of
the registers, because the register numbers may be much greater than the number
of bits available in the machine's register.

I extracted the register list verification code out of the actual parsing of the
registers. This made checking for errors much easier. It also limits the number
of warnings that would be emitted for cascading infractions.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@118363 91177308-0d34-0410-b5e6-96231b3b80d8
2010-11-06 22:36:58 +00:00
autoconf
bindings
cmake
docs add (and document) the ability for alias results to have 2010-11-06 19:57:21 +00:00
examples
include Prune includes. 2010-11-06 11:45:59 +00:00
lib Add support for parsing register lists. We can't use a bitfield to keep track of 2010-11-06 22:36:58 +00:00
projects
runtime
test add aliases for movs between seg registers and mem. There are multiple 2010-11-06 22:35:34 +00:00
tools Rename FindExecutable to PrependMainExecutablePath. 2010-11-03 16:14:16 +00:00
unittests
utils pass literals like $$1 through to the asm matcher. This isn't right yet, but doesn't hurt. 2010-11-06 22:06:03 +00:00
website
build-for-llvm-top.sh
CMakeLists.txt
configure
CREDITS.TXT
LICENSE.TXT
llvm.spec.in
Makefile
Makefile.common
Makefile.config.in
Makefile.rules Add rule to build MC'ized CodeEmitter. 2010-11-03 23:46:01 +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.