mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-12 14:20:33 +00:00
Fix the case of a .cfi_rel_offset before any .cfi_def_cfa_offset.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@129362 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
c57543964d
commit
25f492e778
@ -230,7 +230,7 @@ namespace llvm {
|
||||
|
||||
class MCCFIInstruction {
|
||||
public:
|
||||
enum OpType { SameValue, Remember, Restore, Move };
|
||||
enum OpType { SameValue, Remember, Restore, Move, RelMove };
|
||||
private:
|
||||
OpType Operation;
|
||||
MCSymbol *Label;
|
||||
@ -250,6 +250,11 @@ namespace llvm {
|
||||
const MachineLocation &S)
|
||||
: Operation(Move), Label(L), Destination(D), Source(S) {
|
||||
}
|
||||
MCCFIInstruction(OpType Op, MCSymbol *L, const MachineLocation &D,
|
||||
const MachineLocation &S)
|
||||
: Operation(Op), Label(L), Destination(D), Source(S) {
|
||||
assert(Op == RelMove);
|
||||
}
|
||||
OpType getOperation() const { return Operation; }
|
||||
MCSymbol *getLabel() const { return Label; }
|
||||
const MachineLocation &getDestination() const { return Destination; }
|
||||
|
@ -447,6 +447,7 @@ namespace llvm {
|
||||
virtual bool EmitCFIRememberState();
|
||||
virtual bool EmitCFIRestoreState();
|
||||
void EmitCFISameValue(int64_t Register);
|
||||
void EmitCFIRelOffset(int64_t Register, int64_t Offset);
|
||||
|
||||
/// EmitInstruction - Emit the given @p Instruction into the current
|
||||
/// section.
|
||||
|
@ -439,94 +439,6 @@ static int getDataAlignmentFactor(MCStreamer &streamer) {
|
||||
return -size;
|
||||
}
|
||||
|
||||
static void EmitCFIInstruction(MCStreamer &Streamer,
|
||||
const MCCFIInstruction &Instr) {
|
||||
int dataAlignmentFactor = getDataAlignmentFactor(Streamer);
|
||||
|
||||
switch (Instr.getOperation()) {
|
||||
case MCCFIInstruction::Move: {
|
||||
const MachineLocation &Dst = Instr.getDestination();
|
||||
const MachineLocation &Src = Instr.getSource();
|
||||
|
||||
// If advancing cfa.
|
||||
if (Dst.isReg() && Dst.getReg() == MachineLocation::VirtualFP) {
|
||||
assert(!Src.isReg() && "Machine move not supported yet.");
|
||||
|
||||
if (Src.getReg() == MachineLocation::VirtualFP) {
|
||||
Streamer.EmitIntValue(dwarf::DW_CFA_def_cfa_offset, 1);
|
||||
} else {
|
||||
Streamer.EmitIntValue(dwarf::DW_CFA_def_cfa, 1);
|
||||
Streamer.EmitULEB128IntValue(Src.getReg());
|
||||
}
|
||||
|
||||
Streamer.EmitULEB128IntValue(-Src.getOffset(), 1);
|
||||
return;
|
||||
}
|
||||
|
||||
if (Src.isReg() && Src.getReg() == MachineLocation::VirtualFP) {
|
||||
assert(Dst.isReg() && "Machine move not supported yet.");
|
||||
Streamer.EmitIntValue(dwarf::DW_CFA_def_cfa_register, 1);
|
||||
Streamer.EmitULEB128IntValue(Dst.getReg());
|
||||
return;
|
||||
}
|
||||
|
||||
unsigned Reg = Src.getReg();
|
||||
int Offset = Dst.getOffset() / dataAlignmentFactor;
|
||||
|
||||
if (Offset < 0) {
|
||||
Streamer.EmitIntValue(dwarf::DW_CFA_offset_extended_sf, 1);
|
||||
Streamer.EmitULEB128IntValue(Reg);
|
||||
Streamer.EmitSLEB128IntValue(Offset);
|
||||
} else if (Reg < 64) {
|
||||
Streamer.EmitIntValue(dwarf::DW_CFA_offset + Reg, 1);
|
||||
Streamer.EmitULEB128IntValue(Offset, 1);
|
||||
} else {
|
||||
Streamer.EmitIntValue(dwarf::DW_CFA_offset_extended, 1);
|
||||
Streamer.EmitULEB128IntValue(Reg, 1);
|
||||
Streamer.EmitULEB128IntValue(Offset, 1);
|
||||
}
|
||||
return;
|
||||
}
|
||||
case MCCFIInstruction::Remember:
|
||||
Streamer.EmitIntValue(dwarf::DW_CFA_remember_state, 1);
|
||||
return;
|
||||
case MCCFIInstruction::Restore:
|
||||
Streamer.EmitIntValue(dwarf::DW_CFA_restore_state, 1);
|
||||
return;
|
||||
case MCCFIInstruction::SameValue: {
|
||||
unsigned Reg = Instr.getDestination().getReg();
|
||||
Streamer.EmitIntValue(dwarf::DW_CFA_same_value, 1);
|
||||
Streamer.EmitULEB128IntValue(Reg, 1);
|
||||
return;
|
||||
}
|
||||
}
|
||||
llvm_unreachable("Unhandled case in switch");
|
||||
}
|
||||
|
||||
/// EmitFrameMoves - Emit frame instructions to describe the layout of the
|
||||
/// frame.
|
||||
static void EmitCFIInstructions(MCStreamer &streamer,
|
||||
const std::vector<MCCFIInstruction> &Instrs,
|
||||
MCSymbol *BaseLabel) {
|
||||
for (unsigned i = 0, N = Instrs.size(); i < N; ++i) {
|
||||
const MCCFIInstruction &Instr = Instrs[i];
|
||||
MCSymbol *Label = Instr.getLabel();
|
||||
// Throw out move if the label is invalid.
|
||||
if (Label && !Label->isDefined()) continue; // Not emitted, in dead code.
|
||||
|
||||
// Advance row if new location.
|
||||
if (BaseLabel && Label) {
|
||||
MCSymbol *ThisSym = Label;
|
||||
if (ThisSym != BaseLabel) {
|
||||
streamer.EmitDwarfAdvanceFrameAddr(BaseLabel, ThisSym);
|
||||
BaseLabel = ThisSym;
|
||||
}
|
||||
}
|
||||
|
||||
EmitCFIInstruction(streamer, Instr);
|
||||
}
|
||||
}
|
||||
|
||||
static void EmitSymbol(MCStreamer &streamer, const MCSymbol &symbol,
|
||||
unsigned symbolEncoding) {
|
||||
MCContext &context = streamer.getContext();
|
||||
@ -578,11 +490,130 @@ static const MachineLocation TranslateMachineLocation(
|
||||
return NewLoc;
|
||||
}
|
||||
|
||||
static const MCSymbol &EmitCIE(MCStreamer &streamer,
|
||||
const MCSymbol *personality,
|
||||
unsigned personalityEncoding,
|
||||
const MCSymbol *lsda,
|
||||
unsigned lsdaEncoding) {
|
||||
namespace {
|
||||
class FrameEmitterImpl {
|
||||
int CFAOffset;
|
||||
|
||||
public:
|
||||
FrameEmitterImpl() : CFAOffset(0) {
|
||||
}
|
||||
|
||||
const MCSymbol &EmitCIE(MCStreamer &streamer,
|
||||
const MCSymbol *personality,
|
||||
unsigned personalityEncoding,
|
||||
const MCSymbol *lsda,
|
||||
unsigned lsdaEncoding);
|
||||
MCSymbol *EmitFDE(MCStreamer &streamer,
|
||||
const MCSymbol &cieStart,
|
||||
const MCDwarfFrameInfo &frame);
|
||||
void EmitCFIInstructions(MCStreamer &streamer,
|
||||
const std::vector<MCCFIInstruction> &Instrs,
|
||||
MCSymbol *BaseLabel);
|
||||
void EmitCFIInstruction(MCStreamer &Streamer,
|
||||
const MCCFIInstruction &Instr);
|
||||
};
|
||||
}
|
||||
|
||||
void FrameEmitterImpl::EmitCFIInstruction(MCStreamer &Streamer,
|
||||
const MCCFIInstruction &Instr) {
|
||||
int dataAlignmentFactor = getDataAlignmentFactor(Streamer);
|
||||
|
||||
switch (Instr.getOperation()) {
|
||||
case MCCFIInstruction::Move:
|
||||
case MCCFIInstruction::RelMove: {
|
||||
const MachineLocation &Dst = Instr.getDestination();
|
||||
const MachineLocation &Src = Instr.getSource();
|
||||
|
||||
// If advancing cfa.
|
||||
if (Dst.isReg() && Dst.getReg() == MachineLocation::VirtualFP) {
|
||||
assert(!Src.isReg() && "Machine move not supported yet.");
|
||||
|
||||
if (Src.getReg() == MachineLocation::VirtualFP) {
|
||||
Streamer.EmitIntValue(dwarf::DW_CFA_def_cfa_offset, 1);
|
||||
} else {
|
||||
Streamer.EmitIntValue(dwarf::DW_CFA_def_cfa, 1);
|
||||
Streamer.EmitULEB128IntValue(Src.getReg());
|
||||
}
|
||||
|
||||
CFAOffset = -Src.getOffset();
|
||||
Streamer.EmitULEB128IntValue(CFAOffset, 1);
|
||||
return;
|
||||
}
|
||||
|
||||
if (Src.isReg() && Src.getReg() == MachineLocation::VirtualFP) {
|
||||
assert(Dst.isReg() && "Machine move not supported yet.");
|
||||
Streamer.EmitIntValue(dwarf::DW_CFA_def_cfa_register, 1);
|
||||
Streamer.EmitULEB128IntValue(Dst.getReg());
|
||||
return;
|
||||
}
|
||||
|
||||
unsigned Reg = Src.getReg();
|
||||
|
||||
const bool IsRelative = Instr.getOperation() == MCCFIInstruction::RelMove;
|
||||
int Offset = Dst.getOffset();
|
||||
if (IsRelative)
|
||||
Offset -= CFAOffset;
|
||||
Offset = Offset / dataAlignmentFactor;
|
||||
|
||||
if (Offset < 0) {
|
||||
Streamer.EmitIntValue(dwarf::DW_CFA_offset_extended_sf, 1);
|
||||
Streamer.EmitULEB128IntValue(Reg);
|
||||
Streamer.EmitSLEB128IntValue(Offset);
|
||||
} else if (Reg < 64) {
|
||||
Streamer.EmitIntValue(dwarf::DW_CFA_offset + Reg, 1);
|
||||
Streamer.EmitULEB128IntValue(Offset, 1);
|
||||
} else {
|
||||
Streamer.EmitIntValue(dwarf::DW_CFA_offset_extended, 1);
|
||||
Streamer.EmitULEB128IntValue(Reg, 1);
|
||||
Streamer.EmitULEB128IntValue(Offset, 1);
|
||||
}
|
||||
return;
|
||||
}
|
||||
case MCCFIInstruction::Remember:
|
||||
Streamer.EmitIntValue(dwarf::DW_CFA_remember_state, 1);
|
||||
return;
|
||||
case MCCFIInstruction::Restore:
|
||||
Streamer.EmitIntValue(dwarf::DW_CFA_restore_state, 1);
|
||||
return;
|
||||
case MCCFIInstruction::SameValue: {
|
||||
unsigned Reg = Instr.getDestination().getReg();
|
||||
Streamer.EmitIntValue(dwarf::DW_CFA_same_value, 1);
|
||||
Streamer.EmitULEB128IntValue(Reg, 1);
|
||||
return;
|
||||
}
|
||||
}
|
||||
llvm_unreachable("Unhandled case in switch");
|
||||
}
|
||||
|
||||
/// EmitFrameMoves - Emit frame instructions to describe the layout of the
|
||||
/// frame.
|
||||
void FrameEmitterImpl::EmitCFIInstructions(MCStreamer &streamer,
|
||||
const std::vector<MCCFIInstruction> &Instrs,
|
||||
MCSymbol *BaseLabel) {
|
||||
for (unsigned i = 0, N = Instrs.size(); i < N; ++i) {
|
||||
const MCCFIInstruction &Instr = Instrs[i];
|
||||
MCSymbol *Label = Instr.getLabel();
|
||||
// Throw out move if the label is invalid.
|
||||
if (Label && !Label->isDefined()) continue; // Not emitted, in dead code.
|
||||
|
||||
// Advance row if new location.
|
||||
if (BaseLabel && Label) {
|
||||
MCSymbol *ThisSym = Label;
|
||||
if (ThisSym != BaseLabel) {
|
||||
streamer.EmitDwarfAdvanceFrameAddr(BaseLabel, ThisSym);
|
||||
BaseLabel = ThisSym;
|
||||
}
|
||||
}
|
||||
|
||||
EmitCFIInstruction(streamer, Instr);
|
||||
}
|
||||
}
|
||||
|
||||
const MCSymbol &FrameEmitterImpl::EmitCIE(MCStreamer &streamer,
|
||||
const MCSymbol *personality,
|
||||
unsigned personalityEncoding,
|
||||
const MCSymbol *lsda,
|
||||
unsigned lsdaEncoding) {
|
||||
MCContext &context = streamer.getContext();
|
||||
const TargetAsmInfo &asmInfo = context.getTargetAsmInfo();
|
||||
const MCSection §ion = *asmInfo.getEHFrameSection();
|
||||
@ -670,9 +701,9 @@ static const MCSymbol &EmitCIE(MCStreamer &streamer,
|
||||
return *sectionStart;
|
||||
}
|
||||
|
||||
static MCSymbol *EmitFDE(MCStreamer &streamer,
|
||||
const MCSymbol &cieStart,
|
||||
const MCDwarfFrameInfo &frame) {
|
||||
MCSymbol *FrameEmitterImpl::EmitFDE(MCStreamer &streamer,
|
||||
const MCSymbol &cieStart,
|
||||
const MCDwarfFrameInfo &frame) {
|
||||
MCContext &context = streamer.getContext();
|
||||
MCSymbol *fdeStart = context.CreateTempSymbol();
|
||||
MCSymbol *fdeEnd = context.CreateTempSymbol();
|
||||
@ -764,6 +795,7 @@ void MCDwarfFrameEmitter::Emit(MCStreamer &streamer) {
|
||||
const TargetAsmInfo &asmInfo = context.getTargetAsmInfo();
|
||||
MCSymbol *fdeEnd = NULL;
|
||||
DenseMap<CIEKey, const MCSymbol*> CIEStarts;
|
||||
FrameEmitterImpl Emitter;
|
||||
|
||||
for (unsigned i = 0, n = streamer.getNumFrameInfos(); i < n; ++i) {
|
||||
const MCDwarfFrameInfo &frame = streamer.getFrameInfo(i);
|
||||
@ -771,10 +803,10 @@ void MCDwarfFrameEmitter::Emit(MCStreamer &streamer) {
|
||||
frame.LsdaEncoding);
|
||||
const MCSymbol *&cieStart = CIEStarts[key];
|
||||
if (!cieStart)
|
||||
cieStart = &EmitCIE(streamer, frame.Personality,
|
||||
frame.PersonalityEncoding, frame.Lsda,
|
||||
frame.LsdaEncoding);
|
||||
fdeEnd = EmitFDE(streamer, *cieStart, frame);
|
||||
cieStart = &Emitter.EmitCIE(streamer, frame.Personality,
|
||||
frame.PersonalityEncoding, frame.Lsda,
|
||||
frame.LsdaEncoding);
|
||||
fdeEnd = Emitter.EmitFDE(streamer, *cieStart, frame);
|
||||
if (i != n - 1)
|
||||
streamer.EmitLabel(fdeEnd);
|
||||
}
|
||||
|
@ -149,9 +149,6 @@ public:
|
||||
LastOffset += Adjustment;
|
||||
return LastOffset;
|
||||
}
|
||||
int64_t getLastOffset() {
|
||||
return LastOffset;
|
||||
}
|
||||
void setLastOffset(int64_t Offset) {
|
||||
LastOffset = Offset;
|
||||
}
|
||||
@ -2402,9 +2399,8 @@ bool GenericAsmParser::ParseDirectiveCFIRelOffset(StringRef,
|
||||
if (getParser().ParseAbsoluteExpression(Offset))
|
||||
return true;
|
||||
|
||||
Offset -= getParser().getLastOffset();
|
||||
|
||||
return getStreamer().EmitCFIOffset(Register, Offset);
|
||||
getStreamer().EmitCFIRelOffset(Register, Offset);
|
||||
return false;
|
||||
}
|
||||
|
||||
static bool isValidEncoding(int64_t Encoding) {
|
||||
|
@ -221,6 +221,17 @@ bool MCStreamer::EmitCFIOffset(int64_t Register, int64_t Offset) {
|
||||
return false;
|
||||
}
|
||||
|
||||
void MCStreamer::EmitCFIRelOffset(int64_t Register, int64_t Offset) {
|
||||
EnsureValidFrame();
|
||||
MCDwarfFrameInfo *CurFrame = getCurrentFrameInfo();
|
||||
MCSymbol *Label = getContext().CreateTempSymbol();
|
||||
EmitLabel(Label);
|
||||
MachineLocation Dest(Register, Offset);
|
||||
MachineLocation Source(Register, Offset);
|
||||
MCCFIInstruction Instruction(MCCFIInstruction::RelMove, Label, Dest, Source);
|
||||
CurFrame->Instructions.push_back(Instruction);
|
||||
}
|
||||
|
||||
bool MCStreamer::EmitCFIPersonality(const MCSymbol *Sym,
|
||||
unsigned Encoding) {
|
||||
EnsureValidFrame();
|
||||
|
41
test/MC/ELF/cfi-rel-offset2.s
Normal file
41
test/MC/ELF/cfi-rel-offset2.s
Normal file
@ -0,0 +1,41 @@
|
||||
// RUN: llvm-mc -filetype=obj -triple x86_64-pc-linux-gnu %s -o - | elf-dump --dump-section-data | FileCheck %s
|
||||
|
||||
f:
|
||||
.cfi_startproc
|
||||
nop
|
||||
.cfi_rel_offset 6,16
|
||||
.cfi_endproc
|
||||
|
||||
// CHECK: # Section 0x00000004
|
||||
// CHECK-NEXT: (('sh_name', 0x00000011) # '.eh_frame'
|
||||
// CHECK-NEXT: ('sh_type', 0x00000001)
|
||||
// CHECK-NEXT: ('sh_flags', 0x00000002)
|
||||
// CHECK-NEXT: ('sh_addr', 0x00000000)
|
||||
// CHECK-NEXT: ('sh_offset', 0x00000048)
|
||||
// CHECK-NEXT: ('sh_size', 0x00000030)
|
||||
// CHECK-NEXT: ('sh_link', 0x00000000)
|
||||
// CHECK-NEXT: ('sh_info', 0x00000000)
|
||||
// CHECK-NEXT: ('sh_addralign', 0x00000008)
|
||||
// CHECK-NEXT: ('sh_entsize', 0x00000000)
|
||||
// CHECK-NEXT: ('_section_data', '14000000 00000000 017a5200 01781001 1b0c0708 90010000 14000000 1c000000 00000000 01000000 00411106 7f000000')
|
||||
// CHECK-NEXT: ),
|
||||
// CHECK-NEXT: # Section 0x00000005
|
||||
// CHECK-NEXT: (('sh_name', 0x0000000c) # '.rela.eh_frame'
|
||||
// CHECK-NEXT: ('sh_type', 0x00000004)
|
||||
// CHECK-NEXT: ('sh_flags', 0x00000000)
|
||||
// CHECK-NEXT: ('sh_addr', 0x00000000)
|
||||
// CHECK-NEXT: ('sh_offset', 0x00000390)
|
||||
// CHECK-NEXT: ('sh_size', 0x00000018)
|
||||
// CHECK-NEXT: ('sh_link', 0x00000007)
|
||||
// CHECK-NEXT: ('sh_info', 0x00000004)
|
||||
// CHECK-NEXT: ('sh_addralign', 0x00000008)
|
||||
// CHECK-NEXT: ('sh_entsize', 0x00000018)
|
||||
// CHECK-NEXT: ('_relocations', [
|
||||
// CHECK-NEXT: # Relocation 0x00000000
|
||||
// CHECK-NEXT: (('r_offset', 0x00000020)
|
||||
// CHECK-NEXT: ('r_sym', 0x00000002)
|
||||
// CHECK-NEXT: ('r_type', 0x00000002)
|
||||
// CHECK-NEXT: ('r_addend', 0x00000000)
|
||||
// CHECK-NEXT: ),
|
||||
// CHECK-NEXT: ])
|
||||
// CHECK-NEXT: ),
|
Loading…
Reference in New Issue
Block a user