hanchenye-llvm-project/llvm/lib/Target/Skeleton
Chris Lattner 894bf8eed0 ignore generated files
llvm-svn: 18073
2004-11-21 00:01:54 +00:00
..
.cvsignore ignore generated files 2004-11-21 00:01:54 +00:00
Makefile
README.txt
Skeleton.h
Skeleton.td
SkeletonInstrInfo.cpp
SkeletonInstrInfo.h
SkeletonInstrInfo.td
SkeletonJITInfo.cpp getJITStubForFunction is optional and unimplemented, just remove it for now. 2004-11-20 04:15:38 +00:00
SkeletonJITInfo.h getJITStubForFunction is optional and unimplemented, just remove it for now. 2004-11-20 04:15:38 +00:00
SkeletonRegisterInfo.cpp
SkeletonRegisterInfo.h
SkeletonRegisterInfo.td
SkeletonTargetMachine.cpp
SkeletonTargetMachine.h

README.txt

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.