mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-24 22:24:54 +00:00
Rename getPersonalityPICSymbol to getCFIPersonalitySymbol, document it, and
give it a bit more responsibility. Also implement it for MachO. If hacked to use cfi, 32 bit MachO will produce .cfi_personality 155, L___gxx_personality_v0$non_lazy_ptr and 64 bit will produce .cfi_presonality ___gxx_personality_v0 The general idea is that .cfi_personality gets passed the final symbol. It is up to codegen to produce it if using indirect representation (like 32 bit MachO), but it is up to MC to decide which relocations to create. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@130341 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -109,17 +109,8 @@ void DwarfCFIException::BeginFunction(const MachineFunction *MF) {
|
||||
if (PerEncoding == dwarf::DW_EH_PE_omit || !Per)
|
||||
return;
|
||||
|
||||
const MCSymbol *Sym;
|
||||
switch (PerEncoding & 0x70) {
|
||||
default:
|
||||
report_fatal_error("We do not support this DWARF encoding yet!");
|
||||
case dwarf::DW_EH_PE_absptr:
|
||||
Sym = Asm->Mang->getSymbol(Per);
|
||||
break;
|
||||
case dwarf::DW_EH_PE_pcrel:
|
||||
Sym = TLOF.getPersonalityPICSymbol(Per->getName());
|
||||
break;
|
||||
}
|
||||
const MCSymbol *Sym = TLOF.getCFIPersonalitySymbol(Per, PerEncoding,
|
||||
Asm->Mang, MMI);
|
||||
Asm->OutStreamer.EmitCFIPersonality(Sym, PerEncoding);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user