llvm-6502/lib/Target/Skeleton
2004-08-29 22:03:40 +00:00
..
Makefile Initial checkin of the rest of the skeleton target 2004-07-16 07:11:15 +00:00
README.txt Fix grammar. 2004-07-16 17:40:28 +00:00
Skeleton.h Initial checkin of the rest of the skeleton target 2004-07-16 07:11:15 +00:00
Skeleton.td Initial checkin of the rest of the skeleton target 2004-07-16 07:11:15 +00:00
SkeletonInstrInfo.cpp Initial checkin of the rest of the skeleton target 2004-07-16 07:11:15 +00:00
SkeletonInstrInfo.h Initial checkin of the rest of the skeleton target 2004-07-16 07:11:15 +00:00
SkeletonInstrInfo.td Initial checkin of the rest of the skeleton target 2004-07-16 07:11:15 +00:00
SkeletonJITInfo.cpp Initial checkin of the rest of the skeleton target 2004-07-16 07:11:15 +00:00
SkeletonJITInfo.h Initial checkin of the rest of the skeleton target 2004-07-16 07:11:15 +00:00
SkeletonRegisterInfo.cpp Code insertion methods now return void instead of #instrs inserted 2004-08-15 22:15:30 +00:00
SkeletonRegisterInfo.h Code insertion methods now return void instead of #instrs inserted 2004-08-15 22:15:30 +00:00
SkeletonRegisterInfo.td Register sizes should be specified in bits 2004-08-29 22:03:40 +00:00
SkeletonTargetMachine.cpp Initial checkin of the rest of the skeleton target 2004-07-16 07:11:15 +00:00
SkeletonTargetMachine.h Initial checkin of the rest of the skeleton target 2004-07-16 07:11:15 +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.