mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-06 04:31:08 +00:00
Start adding to the meat of MachineCodeEmitter
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4869 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
4aff92860d
commit
d1c45a6633
@ -10,11 +10,29 @@
|
|||||||
#ifndef LLVM_CODEGEN_MACHINE_CODE_EMITTER_H
|
#ifndef LLVM_CODEGEN_MACHINE_CODE_EMITTER_H
|
||||||
#define LLVM_CODEGEN_MACHINE_CODE_EMITTER_H
|
#define LLVM_CODEGEN_MACHINE_CODE_EMITTER_H
|
||||||
|
|
||||||
|
class MachineFunction;
|
||||||
|
class MachineBasicBlock;
|
||||||
|
|
||||||
struct MachineCodeEmitter {
|
struct MachineCodeEmitter {
|
||||||
|
|
||||||
|
/// startFunction - This callback is invoked when the specified function is
|
||||||
|
/// about to be code generated.
|
||||||
|
///
|
||||||
|
virtual void startFunction(MachineFunction &F) {}
|
||||||
|
|
||||||
|
/// finishFunction - This callback is invoked when the specified function has
|
||||||
|
/// finished code generation.
|
||||||
|
///
|
||||||
|
virtual void finishFunction(MachineFunction &F) {}
|
||||||
|
|
||||||
|
/// startBasicBlock - This callback is invoked when a new basic block is about
|
||||||
|
/// to be emitted.
|
||||||
|
///
|
||||||
|
virtual void startBasicBlock(MachineBasicBlock &BB) {}
|
||||||
|
|
||||||
|
/// emitByte - This callback is invoked when a byte needs to be written to the
|
||||||
|
/// output stream.
|
||||||
|
virtual void emitByte(unsigned char B) {}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user