1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-26 04:32:44 +01:00
llvm-mirror/lib/Target/Skeleton
Misha Brukman 66d3c6e020 Convert tabs to spaces
llvm-svn: 21452
2005-04-22 17:54:37 +00:00
..
.cvsignore
Makefile
README.txt
Skeleton.h Remove trailing whitespace 2005-04-21 23:30:14 +00:00
Skeleton.td
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
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 Remove trailing whitespace 2005-04-21 23:30:14 +00:00
SkeletonRegisterInfo.h Remove trailing whitespace 2005-04-21 23:30:14 +00:00
SkeletonRegisterInfo.td
SkeletonTargetMachine.cpp Convert tabs to spaces 2005-04-22 17:54:37 +00:00
SkeletonTargetMachine.h Remove trailing whitespace 2005-04-21 23:30:14 +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.