mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-26 04:32:44 +01:00
76b4796e7c
llvm-svn: 14287 |
||
---|---|---|
.. | ||
Makefile | ||
PowerPC.h | ||
PowerPC.td | ||
PowerPCAsmPrinter.cpp | ||
PowerPCCodeEmitter.cpp | ||
PowerPCInstrBuilder.h | ||
PowerPCInstrInfo.cpp | ||
PowerPCInstrInfo.h | ||
PowerPCInstrInfo.td | ||
PowerPCInstrs.td | ||
PowerPCISelSimple.cpp | ||
PowerPCJITInfo.h | ||
PowerPCReg.td | ||
PowerPCRegisterInfo.cpp | ||
PowerPCRegisterInfo.h | ||
PowerPCRegisterInfo.td | ||
PowerPCTargetMachine.cpp | ||
PowerPCTargetMachine.h | ||
PPC32AsmPrinter.cpp | ||
PPC32CodeEmitter.cpp | ||
PPC32ISelSimple.cpp | ||
PPC.h | ||
PPCJITInfo.h | ||
PPCTargetMachine.cpp | ||
README.txt |
PowerPC backend skeleton ------------------------ Someday we'd like to have a PowerPC backend. Unfortunately, this is not yet that day. 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. If you want to use LLVM on the PowerPC *today*, use the C Backend (llc -march=c). It generates C code that you can compile with the native GCC compiler and run. A distant second choice would be the Interpreter (lli --force-interpreter=true). A few things *are* really here, including: * PowerPC register file definition in TableGen format * PowerPC definitions of TargetMachine and other target-specific classes "Patches," as they say, "are accepted." $Date$