mirror of
https://github.com/RPCS3/llvm.git
synced 2025-02-12 05:40:30 +00:00
git-clang-format an area I am about to change.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@252241 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
7c482bb053
commit
618c595954
@ -995,38 +995,35 @@ static void EmitPersonality(MCStreamer &streamer, const MCSymbol &symbol,
|
||||
}
|
||||
|
||||
namespace {
|
||||
class FrameEmitterImpl {
|
||||
int CFAOffset;
|
||||
int InitialCFAOffset;
|
||||
bool IsEH;
|
||||
const MCSymbol *SectionStart;
|
||||
public:
|
||||
FrameEmitterImpl(bool isEH)
|
||||
: CFAOffset(0), InitialCFAOffset(0), IsEH(isEH), SectionStart(nullptr) {
|
||||
}
|
||||
class FrameEmitterImpl {
|
||||
int CFAOffset;
|
||||
int InitialCFAOffset;
|
||||
bool IsEH;
|
||||
const MCSymbol *SectionStart;
|
||||
|
||||
void setSectionStart(const MCSymbol *Label) { SectionStart = Label; }
|
||||
public:
|
||||
FrameEmitterImpl(bool isEH)
|
||||
: CFAOffset(0), InitialCFAOffset(0), IsEH(isEH), SectionStart(nullptr) {}
|
||||
|
||||
/// Emit the unwind information in a compact way.
|
||||
void EmitCompactUnwind(MCObjectStreamer &streamer,
|
||||
const MCDwarfFrameInfo &frame);
|
||||
void setSectionStart(const MCSymbol *Label) { SectionStart = Label; }
|
||||
|
||||
const MCSymbol &EmitCIE(MCObjectStreamer &streamer,
|
||||
const MCSymbol *personality,
|
||||
unsigned personalityEncoding,
|
||||
const MCSymbol *lsda,
|
||||
bool IsSignalFrame,
|
||||
unsigned lsdaEncoding,
|
||||
bool IsSimple);
|
||||
MCSymbol *EmitFDE(MCObjectStreamer &streamer,
|
||||
const MCSymbol &cieStart,
|
||||
const MCDwarfFrameInfo &frame);
|
||||
void EmitCFIInstructions(MCObjectStreamer &streamer,
|
||||
ArrayRef<MCCFIInstruction> Instrs,
|
||||
MCSymbol *BaseLabel);
|
||||
void EmitCFIInstruction(MCObjectStreamer &Streamer,
|
||||
const MCCFIInstruction &Instr);
|
||||
};
|
||||
/// Emit the unwind information in a compact way.
|
||||
void EmitCompactUnwind(MCObjectStreamer &streamer,
|
||||
const MCDwarfFrameInfo &frame);
|
||||
|
||||
const MCSymbol &EmitCIE(MCObjectStreamer &streamer,
|
||||
const MCSymbol *personality,
|
||||
unsigned personalityEncoding, const MCSymbol *lsda,
|
||||
bool IsSignalFrame, unsigned lsdaEncoding,
|
||||
bool IsSimple);
|
||||
MCSymbol *EmitFDE(MCObjectStreamer &streamer, const MCSymbol &cieStart,
|
||||
const MCDwarfFrameInfo &frame);
|
||||
void EmitCFIInstructions(MCObjectStreamer &streamer,
|
||||
ArrayRef<MCCFIInstruction> Instrs,
|
||||
MCSymbol *BaseLabel);
|
||||
void EmitCFIInstruction(MCObjectStreamer &Streamer,
|
||||
const MCCFIInstruction &Instr);
|
||||
};
|
||||
|
||||
} // end anonymous namespace
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user