llvm-6502/lib/Target/Skeleton
Nate Begeman 6510b22cec Support multiple ValueTypes per RegisterClass, needed for upcoming vector
work.  This change has no effect on generated code.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24563 91177308-0d34-0410-b5e6-96231b3b80d8
2005-12-01 04:51:06 +00:00
..
.cvsignore ignore generated files 2004-11-21 00:01:54 +00:00
Makefile Change Library Names Not To Conflict With Others When Installed 2004-10-27 23:18:45 +00:00
README.txt Fix grammar. 2004-07-16 17:40:28 +00:00
Skeleton.h Remove trailing whitespace 2005-04-21 23:30:14 +00:00
Skeleton.td CR registers are not used by this "target" 2005-09-30 06:43:58 +00:00
SkeletonInstrInfo.cpp Remove trailing whitespace 2005-04-21 23:30:14 +00:00
SkeletonInstrInfo.h Remove trailing whitespace 2005-04-21 23:30:14 +00:00
SkeletonInstrInfo.td Make sure to set the operand list 2004-09-21 17:30:54 +00:00
SkeletonJITInfo.cpp Remove trailing whitespace 2005-04-21 23:30:14 +00:00
SkeletonJITInfo.h Remove trailing whitespace 2005-04-21 23:30:14 +00:00
SkeletonRegisterInfo.cpp Pass extra regclasses into spilling code 2005-09-30 01:29:42 +00:00
SkeletonRegisterInfo.h Pass extra regclasses into spilling code 2005-09-30 01:29:42 +00:00
SkeletonRegisterInfo.td Support multiple ValueTypes per RegisterClass, needed for upcoming vector 2005-12-01 04:51:06 +00:00
SkeletonTargetMachine.cpp Add a new option to indicate we want the code generator to emit code quickly,not spending tons of time microoptimizing it. This is useful for an -O0style of build. 2005-11-08 02:11:51 +00:00
SkeletonTargetMachine.h Add a new option to indicate we want the code generator to emit code quickly,not spending tons of time microoptimizing it. This is useful for an -O0style of build. 2005-11-08 02:11:51 +00:00

LLVM Target Skeleton
--------------------

This directory contains a very simple skeleton that can be used as the
starting point for new LLVM targets.  Basically, you can take this code
and start filling stuff in.

This directory contains mainly stubs and placeholders; there is no binary 
machine code emitter, no assembly writer, and no instruction selector 
here.  Most of the functions in these files call abort() or fail assertions 
on purpose, just to reinforce the fact that they don't work.

The things that are implemented are stubbed out in a pseudo-PowerPC target.
This should give you an idea of what to do, but anything implemented should
be replaced with your target details.

As always, if you're starting a new port, please mention it on the llvmdev
list, and if you have questions, that is a great place to ask.