mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-05 13:09:10 +00:00
Add info about register aliases, add prototype for createLocalRegisterAllocator
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5075 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
dfb0a541c7
commit
c2fc7ea60b
@ -25,6 +25,7 @@ Pass *createSimpleX86InstructionSelector(TargetMachine &TM);
|
|||||||
/// every register. Wow, great policy huh?
|
/// every register. Wow, great policy huh?
|
||||||
///
|
///
|
||||||
Pass *createSimpleRegisterAllocator(TargetMachine &TM);
|
Pass *createSimpleRegisterAllocator(TargetMachine &TM);
|
||||||
|
Pass *createLocalRegisterAllocator(TargetMachine &TM);
|
||||||
|
|
||||||
/// createX86CodePrinterPass - Print out the specified machine code function to
|
/// createX86CodePrinterPass - Print out the specified machine code function to
|
||||||
/// the specified stream. This function should work regardless of whether or
|
/// the specified stream. This function should work regardless of whether or
|
||||||
@ -46,7 +47,7 @@ namespace X86 {
|
|||||||
// mapping from register name to register number.
|
// mapping from register name to register number.
|
||||||
//
|
//
|
||||||
enum Register {
|
enum Register {
|
||||||
#define R(ENUM, NAME, FLAGS, TSFLAGS) ENUM,
|
#define R(ENUM, NAME, FLAGS, TSFLAGS, A1, A2, A3) ENUM,
|
||||||
#include "X86RegisterInfo.def"
|
#include "X86RegisterInfo.def"
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user