mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-07 14:33:15 +00:00
Implement .cfi_same_value.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@129361 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
18bba84d77
commit
c57543964d
@ -230,7 +230,7 @@ namespace llvm {
|
|||||||
|
|
||||||
class MCCFIInstruction {
|
class MCCFIInstruction {
|
||||||
public:
|
public:
|
||||||
enum OpType { Remember, Restore, Move };
|
enum OpType { SameValue, Remember, Restore, Move };
|
||||||
private:
|
private:
|
||||||
OpType Operation;
|
OpType Operation;
|
||||||
MCSymbol *Label;
|
MCSymbol *Label;
|
||||||
@ -242,6 +242,10 @@ namespace llvm {
|
|||||||
: Operation(Op), Label(L) {
|
: Operation(Op), Label(L) {
|
||||||
assert(Op == Remember || Op == Restore);
|
assert(Op == Remember || Op == Restore);
|
||||||
}
|
}
|
||||||
|
MCCFIInstruction(OpType Op, MCSymbol *L, unsigned Register)
|
||||||
|
: Operation(Op), Label(L), Destination(Register) {
|
||||||
|
assert(Op == SameValue);
|
||||||
|
}
|
||||||
MCCFIInstruction(MCSymbol *L, const MachineLocation &D,
|
MCCFIInstruction(MCSymbol *L, const MachineLocation &D,
|
||||||
const MachineLocation &S)
|
const MachineLocation &S)
|
||||||
: Operation(Move), Label(L), Destination(D), Source(S) {
|
: Operation(Move), Label(L), Destination(D), Source(S) {
|
||||||
|
@ -446,6 +446,7 @@ namespace llvm {
|
|||||||
virtual bool EmitCFILsda(const MCSymbol *Sym, unsigned Encoding);
|
virtual bool EmitCFILsda(const MCSymbol *Sym, unsigned Encoding);
|
||||||
virtual bool EmitCFIRememberState();
|
virtual bool EmitCFIRememberState();
|
||||||
virtual bool EmitCFIRestoreState();
|
virtual bool EmitCFIRestoreState();
|
||||||
|
void EmitCFISameValue(int64_t Register);
|
||||||
|
|
||||||
/// EmitInstruction - Emit the given @p Instruction into the current
|
/// EmitInstruction - Emit the given @p Instruction into the current
|
||||||
/// section.
|
/// section.
|
||||||
|
@ -493,6 +493,12 @@ static void EmitCFIInstruction(MCStreamer &Streamer,
|
|||||||
case MCCFIInstruction::Restore:
|
case MCCFIInstruction::Restore:
|
||||||
Streamer.EmitIntValue(dwarf::DW_CFA_restore_state, 1);
|
Streamer.EmitIntValue(dwarf::DW_CFA_restore_state, 1);
|
||||||
return;
|
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");
|
llvm_unreachable("Unhandled case in switch");
|
||||||
}
|
}
|
||||||
|
@ -283,6 +283,8 @@ public:
|
|||||||
&GenericAsmParser::ParseDirectiveCFIRememberState>(".cfi_remember_state");
|
&GenericAsmParser::ParseDirectiveCFIRememberState>(".cfi_remember_state");
|
||||||
AddDirectiveHandler<
|
AddDirectiveHandler<
|
||||||
&GenericAsmParser::ParseDirectiveCFIRestoreState>(".cfi_restore_state");
|
&GenericAsmParser::ParseDirectiveCFIRestoreState>(".cfi_restore_state");
|
||||||
|
AddDirectiveHandler<
|
||||||
|
&GenericAsmParser::ParseDirectiveCFISameValue>(".cfi_same_value");
|
||||||
|
|
||||||
// Macro directives.
|
// Macro directives.
|
||||||
AddDirectiveHandler<&GenericAsmParser::ParseDirectiveMacrosOnOff>(
|
AddDirectiveHandler<&GenericAsmParser::ParseDirectiveMacrosOnOff>(
|
||||||
@ -314,6 +316,7 @@ public:
|
|||||||
bool ParseDirectiveCFIPersonalityOrLsda(StringRef, SMLoc DirectiveLoc);
|
bool ParseDirectiveCFIPersonalityOrLsda(StringRef, SMLoc DirectiveLoc);
|
||||||
bool ParseDirectiveCFIRememberState(StringRef, SMLoc DirectiveLoc);
|
bool ParseDirectiveCFIRememberState(StringRef, SMLoc DirectiveLoc);
|
||||||
bool ParseDirectiveCFIRestoreState(StringRef, SMLoc DirectiveLoc);
|
bool ParseDirectiveCFIRestoreState(StringRef, SMLoc DirectiveLoc);
|
||||||
|
bool ParseDirectiveCFISameValue(StringRef, SMLoc DirectiveLoc);
|
||||||
|
|
||||||
bool ParseDirectiveMacrosOnOff(StringRef, SMLoc DirectiveLoc);
|
bool ParseDirectiveMacrosOnOff(StringRef, SMLoc DirectiveLoc);
|
||||||
bool ParseDirectiveMacro(StringRef, SMLoc DirectiveLoc);
|
bool ParseDirectiveMacro(StringRef, SMLoc DirectiveLoc);
|
||||||
@ -2472,6 +2475,20 @@ bool GenericAsmParser::ParseDirectiveCFIRestoreState(StringRef IDVal,
|
|||||||
return getStreamer().EmitCFIRestoreState();
|
return getStreamer().EmitCFIRestoreState();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// ParseDirectiveCFISameValue
|
||||||
|
/// ::= .cfi_same_value register
|
||||||
|
bool GenericAsmParser::ParseDirectiveCFISameValue(StringRef IDVal,
|
||||||
|
SMLoc DirectiveLoc) {
|
||||||
|
int64_t Register = 0;
|
||||||
|
|
||||||
|
if (ParseRegisterOrRegisterNumber(Register, DirectiveLoc))
|
||||||
|
return true;
|
||||||
|
|
||||||
|
getStreamer().EmitCFISameValue(Register);
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
/// ParseDirectiveMacrosOnOff
|
/// ParseDirectiveMacrosOnOff
|
||||||
/// ::= .macros_on
|
/// ::= .macros_on
|
||||||
/// ::= .macros_off
|
/// ::= .macros_off
|
||||||
|
@ -259,6 +259,15 @@ bool MCStreamer::EmitCFIRestoreState() {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void MCStreamer::EmitCFISameValue(int64_t Register) {
|
||||||
|
EnsureValidFrame();
|
||||||
|
MCDwarfFrameInfo *CurFrame = getCurrentFrameInfo();
|
||||||
|
MCSymbol *Label = getContext().CreateTempSymbol();
|
||||||
|
EmitLabel(Label);
|
||||||
|
MCCFIInstruction Instruction(MCCFIInstruction::SameValue, Label, Register);
|
||||||
|
CurFrame->Instructions.push_back(Instruction);
|
||||||
|
}
|
||||||
|
|
||||||
void MCStreamer::EmitFnStart() {
|
void MCStreamer::EmitFnStart() {
|
||||||
errs() << "Not implemented yet\n";
|
errs() << "Not implemented yet\n";
|
||||||
abort();
|
abort();
|
||||||
|
42
test/MC/ELF/cfi-same-value.s
Normal file
42
test/MC/ELF/cfi-same-value.s
Normal file
@ -0,0 +1,42 @@
|
|||||||
|
// 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_same_value 6
|
||||||
|
nop
|
||||||
|
.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 02000000 00410806 00000000')
|
||||||
|
// 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…
x
Reference in New Issue
Block a user