mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-05 13:26:55 +00:00
Cosmetic changes, as suggested by Evan. No functionality changes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@49993 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -37,28 +37,29 @@ class JITDwarfEmitter {
|
||||
|
||||
unsigned char* EmitExceptionTable(MachineFunction* MF,
|
||||
unsigned char* StartFunction,
|
||||
unsigned char* EndFunction);
|
||||
unsigned char* EndFunction) const;
|
||||
|
||||
void EmitFrameMoves(intptr_t BaseLabelPtr,
|
||||
const std::vector<MachineMove> &Moves);
|
||||
const std::vector<MachineMove> &Moves) const;
|
||||
|
||||
unsigned char* EmitCommonEHFrame(const Function* Personality);
|
||||
unsigned char* EmitCommonEHFrame(const Function* Personality) const;
|
||||
|
||||
unsigned char* EmitEHFrame(const Function* Personality,
|
||||
unsigned char* StartBufferPtr,
|
||||
unsigned char* StartFunction,
|
||||
unsigned char* EndFunction,
|
||||
unsigned char* ExceptionTable);
|
||||
unsigned char* ExceptionTable) const;
|
||||
|
||||
unsigned GetExceptionTableSize(MachineFunction* MF);
|
||||
unsigned GetExceptionTableSizeInBytes(MachineFunction* MF) const;
|
||||
|
||||
unsigned GetFrameMovesSize(intptr_t BaseLabelPtr,
|
||||
const std::vector<MachineMove> &Moves);
|
||||
unsigned
|
||||
GetFrameMovesSizeInBytes(intptr_t BaseLabelPtr,
|
||||
const std::vector<MachineMove> &Moves) const;
|
||||
|
||||
unsigned GetCommonEHFrameSize(const Function* Personality);
|
||||
unsigned GetCommonEHFrameSizeInBytes(const Function* Personality) const;
|
||||
|
||||
unsigned GetEHFrameSize(const Function* Personality,
|
||||
unsigned char* StartFunction);
|
||||
unsigned GetEHFrameSizeInBytes(const Function* Personality,
|
||||
unsigned char* StartFunction) const;
|
||||
|
||||
public:
|
||||
|
||||
@@ -70,10 +71,10 @@ public:
|
||||
unsigned char* EndFunction);
|
||||
|
||||
|
||||
unsigned GetDwarfTableSize(MachineFunction& F,
|
||||
MachineCodeEmitter& MCE,
|
||||
unsigned char* StartFunction,
|
||||
unsigned char* EndFunction);
|
||||
unsigned GetDwarfTableSizeInBytes(MachineFunction& F,
|
||||
MachineCodeEmitter& MCE,
|
||||
unsigned char* StartFunction,
|
||||
unsigned char* EndFunction);
|
||||
|
||||
void setModuleInfo(MachineModuleInfo* Info) {
|
||||
MMI = Info;
|
||||
|
Reference in New Issue
Block a user