2012-12-07 16:50:23 +00:00
|
|
|
//===- lib/MC/ARMELFStreamer.cpp - ELF Object Output for ARM --------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file assembles .s files and emits ARM ELF .o object files. Different
|
|
|
|
// from generic ELF streamer in emitting mapping symbols ($a, $t and $d) to
|
|
|
|
// delimit regions of data and code.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2013-04-16 12:02:21 +00:00
|
|
|
#include "ARMRegisterInfo.h"
|
2013-01-30 15:39:04 +00:00
|
|
|
#include "ARMUnwindOp.h"
|
2013-04-16 12:02:21 +00:00
|
|
|
#include "ARMUnwindOpAsm.h"
|
2012-12-07 16:50:23 +00:00
|
|
|
#include "llvm/ADT/SmallPtrSet.h"
|
2012-12-08 10:45:24 +00:00
|
|
|
#include "llvm/ADT/Twine.h"
|
|
|
|
#include "llvm/MC/MCAsmBackend.h"
|
2012-12-07 16:50:23 +00:00
|
|
|
#include "llvm/MC/MCAssembler.h"
|
|
|
|
#include "llvm/MC/MCCodeEmitter.h"
|
|
|
|
#include "llvm/MC/MCContext.h"
|
|
|
|
#include "llvm/MC/MCELF.h"
|
|
|
|
#include "llvm/MC/MCELFStreamer.h"
|
|
|
|
#include "llvm/MC/MCELFSymbolFlags.h"
|
|
|
|
#include "llvm/MC/MCExpr.h"
|
|
|
|
#include "llvm/MC/MCInst.h"
|
|
|
|
#include "llvm/MC/MCObjectStreamer.h"
|
2013-04-16 12:02:21 +00:00
|
|
|
#include "llvm/MC/MCRegisterInfo.h"
|
2012-12-07 16:50:23 +00:00
|
|
|
#include "llvm/MC/MCSection.h"
|
2012-12-08 10:45:24 +00:00
|
|
|
#include "llvm/MC/MCSectionELF.h"
|
|
|
|
#include "llvm/MC/MCStreamer.h"
|
2012-12-07 16:50:23 +00:00
|
|
|
#include "llvm/MC/MCSymbol.h"
|
|
|
|
#include "llvm/MC/MCValue.h"
|
|
|
|
#include "llvm/Support/Debug.h"
|
|
|
|
#include "llvm/Support/ELF.h"
|
|
|
|
#include "llvm/Support/raw_ostream.h"
|
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
|
2013-04-16 12:02:21 +00:00
|
|
|
static std::string GetAEABIUnwindPersonalityName(unsigned Index) {
|
|
|
|
assert(Index < NUM_PERSONALITY_INDEX && "Invalid personality index");
|
|
|
|
return (Twine("__aeabi_unwind_cpp_pr") + Twine(Index)).str();
|
|
|
|
}
|
|
|
|
|
2012-12-07 16:50:23 +00:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
/// Extend the generic ELFStreamer class so that it can emit mapping symbols at
|
|
|
|
/// the appropriate points in the object files. These symbols are defined in the
|
|
|
|
/// ARM ELF ABI: infocenter.arm.com/help/topic/com.arm.../IHI0044D_aaelf.pdf.
|
|
|
|
///
|
|
|
|
/// In brief: $a, $t or $d should be emitted at the start of each contiguous
|
|
|
|
/// region of ARM code, Thumb code or data in a section. In practice, this
|
|
|
|
/// emission does not rely on explicit assembler directives but on inherent
|
|
|
|
/// properties of the directives doing the emission (e.g. ".byte" is data, "add
|
|
|
|
/// r0, r0, r0" an instruction).
|
|
|
|
///
|
|
|
|
/// As a result this system is orthogonal to the DataRegion infrastructure used
|
|
|
|
/// by MachO. Beware!
|
|
|
|
class ARMELFStreamer : public MCELFStreamer {
|
|
|
|
public:
|
2013-01-31 23:29:57 +00:00
|
|
|
ARMELFStreamer(MCContext &Context, MCAsmBackend &TAB, raw_ostream &OS,
|
|
|
|
MCCodeEmitter *Emitter, bool IsThumb)
|
|
|
|
: MCELFStreamer(SK_ARMELFStreamer, Context, TAB, OS, Emitter),
|
2013-04-16 12:02:21 +00:00
|
|
|
IsThumb(IsThumb), MappingSymbolCounter(0), LastEMS(EMS_None) {
|
|
|
|
Reset();
|
|
|
|
}
|
2012-12-07 16:50:23 +00:00
|
|
|
|
|
|
|
~ARMELFStreamer() {}
|
|
|
|
|
2013-01-30 15:39:04 +00:00
|
|
|
// ARM exception handling directives
|
|
|
|
virtual void EmitFnStart();
|
|
|
|
virtual void EmitFnEnd();
|
|
|
|
virtual void EmitCantUnwind();
|
|
|
|
virtual void EmitPersonality(const MCSymbol *Per);
|
|
|
|
virtual void EmitHandlerData();
|
|
|
|
virtual void EmitSetFP(unsigned NewFpReg,
|
|
|
|
unsigned NewSpReg,
|
|
|
|
int64_t Offset = 0);
|
|
|
|
virtual void EmitPad(int64_t Offset);
|
|
|
|
virtual void EmitRegSave(const SmallVectorImpl<unsigned> &RegList,
|
|
|
|
bool isVector);
|
|
|
|
|
2013-04-17 21:18:16 +00:00
|
|
|
virtual void ChangeSection(const MCSection *Section,
|
|
|
|
const MCExpr *Subsection) {
|
2012-12-07 16:50:23 +00:00
|
|
|
// We have to keep track of the mapping symbol state of any sections we
|
|
|
|
// use. Each one should start off as EMS_None, which is provided as the
|
|
|
|
// default constructor by DenseMap::lookup.
|
2013-04-17 21:18:16 +00:00
|
|
|
LastMappingSymbols[getPreviousSection().first] = LastEMS;
|
2012-12-07 16:50:23 +00:00
|
|
|
LastEMS = LastMappingSymbols.lookup(Section);
|
|
|
|
|
2013-04-17 21:18:16 +00:00
|
|
|
MCELFStreamer::ChangeSection(Section, Subsection);
|
2012-12-07 16:50:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// This function is the one used to emit instruction data into the ELF
|
|
|
|
/// streamer. We override it to add the appropriate mapping symbol if
|
|
|
|
/// necessary.
|
|
|
|
virtual void EmitInstruction(const MCInst& Inst) {
|
|
|
|
if (IsThumb)
|
|
|
|
EmitThumbMappingSymbol();
|
|
|
|
else
|
|
|
|
EmitARMMappingSymbol();
|
|
|
|
|
|
|
|
MCELFStreamer::EmitInstruction(Inst);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// This is one of the functions used to emit data into an ELF section, so the
|
|
|
|
/// ARM streamer overrides it to add the appropriate mapping symbol ($d) if
|
|
|
|
/// necessary.
|
2013-07-02 15:49:13 +00:00
|
|
|
virtual void EmitBytes(StringRef Data) {
|
2012-12-07 16:50:23 +00:00
|
|
|
EmitDataMappingSymbol();
|
2013-07-02 15:49:13 +00:00
|
|
|
MCELFStreamer::EmitBytes(Data);
|
2012-12-07 16:50:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// This is one of the functions used to emit data into an ELF section, so the
|
|
|
|
/// ARM streamer overrides it to add the appropriate mapping symbol ($d) if
|
|
|
|
/// necessary.
|
2013-07-02 15:49:13 +00:00
|
|
|
virtual void EmitValueImpl(const MCExpr *Value, unsigned Size) {
|
2012-12-07 16:50:23 +00:00
|
|
|
EmitDataMappingSymbol();
|
2013-07-02 15:49:13 +00:00
|
|
|
MCELFStreamer::EmitValueImpl(Value, Size);
|
2012-12-07 16:50:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
virtual void EmitAssemblerFlag(MCAssemblerFlag Flag) {
|
|
|
|
MCELFStreamer::EmitAssemblerFlag(Flag);
|
|
|
|
|
|
|
|
switch (Flag) {
|
|
|
|
case MCAF_SyntaxUnified:
|
|
|
|
return; // no-op here.
|
|
|
|
case MCAF_Code16:
|
|
|
|
IsThumb = true;
|
|
|
|
return; // Change to Thumb mode
|
|
|
|
case MCAF_Code32:
|
|
|
|
IsThumb = false;
|
|
|
|
return; // Change to ARM mode
|
|
|
|
case MCAF_Code64:
|
|
|
|
return;
|
|
|
|
case MCAF_SubsectionsViaSymbols:
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-01-31 23:29:57 +00:00
|
|
|
static bool classof(const MCStreamer *S) {
|
|
|
|
return S->getKind() == SK_ARMELFStreamer;
|
|
|
|
}
|
|
|
|
|
2012-12-07 16:50:23 +00:00
|
|
|
private:
|
|
|
|
enum ElfMappingSymbol {
|
|
|
|
EMS_None,
|
|
|
|
EMS_ARM,
|
|
|
|
EMS_Thumb,
|
|
|
|
EMS_Data
|
|
|
|
};
|
|
|
|
|
|
|
|
void EmitDataMappingSymbol() {
|
|
|
|
if (LastEMS == EMS_Data) return;
|
|
|
|
EmitMappingSymbol("$d");
|
|
|
|
LastEMS = EMS_Data;
|
|
|
|
}
|
|
|
|
|
|
|
|
void EmitThumbMappingSymbol() {
|
|
|
|
if (LastEMS == EMS_Thumb) return;
|
|
|
|
EmitMappingSymbol("$t");
|
|
|
|
LastEMS = EMS_Thumb;
|
|
|
|
}
|
|
|
|
|
|
|
|
void EmitARMMappingSymbol() {
|
|
|
|
if (LastEMS == EMS_ARM) return;
|
|
|
|
EmitMappingSymbol("$a");
|
|
|
|
LastEMS = EMS_ARM;
|
|
|
|
}
|
|
|
|
|
|
|
|
void EmitMappingSymbol(StringRef Name) {
|
|
|
|
MCSymbol *Start = getContext().CreateTempSymbol();
|
|
|
|
EmitLabel(Start);
|
|
|
|
|
2012-12-08 03:10:14 +00:00
|
|
|
MCSymbol *Symbol =
|
2012-12-08 10:45:24 +00:00
|
|
|
getContext().GetOrCreateSymbol(Name + "." +
|
|
|
|
Twine(MappingSymbolCounter++));
|
2012-12-07 16:50:23 +00:00
|
|
|
|
|
|
|
MCSymbolData &SD = getAssembler().getOrCreateSymbolData(*Symbol);
|
|
|
|
MCELF::SetType(SD, ELF::STT_NOTYPE);
|
|
|
|
MCELF::SetBinding(SD, ELF::STB_LOCAL);
|
|
|
|
SD.setExternal(false);
|
2013-04-17 21:18:16 +00:00
|
|
|
Symbol->setSection(*getCurrentSection().first);
|
2012-12-07 16:50:23 +00:00
|
|
|
|
|
|
|
const MCExpr *Value = MCSymbolRefExpr::Create(Start, getContext());
|
|
|
|
Symbol->setVariableValue(Value);
|
|
|
|
}
|
|
|
|
|
|
|
|
void EmitThumbFunc(MCSymbol *Func) {
|
|
|
|
// FIXME: Anything needed here to flag the function as thumb?
|
|
|
|
|
|
|
|
getAssembler().setIsThumbFunc(Func);
|
|
|
|
|
|
|
|
MCSymbolData &SD = getAssembler().getOrCreateSymbolData(*Func);
|
|
|
|
SD.setFlags(SD.getFlags() | ELF_Other_ThumbFunc);
|
|
|
|
}
|
|
|
|
|
2013-01-30 15:39:04 +00:00
|
|
|
// Helper functions for ARM exception handling directives
|
|
|
|
void Reset();
|
|
|
|
|
|
|
|
void EmitPersonalityFixup(StringRef Name);
|
2013-06-09 12:22:30 +00:00
|
|
|
void FlushPendingOffset();
|
2013-07-02 12:43:27 +00:00
|
|
|
void FlushUnwindOpcodes(bool NoHandlerData);
|
2013-01-30 15:39:04 +00:00
|
|
|
|
|
|
|
void SwitchToEHSection(const char *Prefix, unsigned Type, unsigned Flags,
|
|
|
|
SectionKind Kind, const MCSymbol &Fn);
|
|
|
|
void SwitchToExTabSection(const MCSymbol &FnStart);
|
|
|
|
void SwitchToExIdxSection(const MCSymbol &FnStart);
|
2012-12-07 16:50:23 +00:00
|
|
|
|
|
|
|
bool IsThumb;
|
|
|
|
int64_t MappingSymbolCounter;
|
|
|
|
|
|
|
|
DenseMap<const MCSection *, ElfMappingSymbol> LastMappingSymbols;
|
|
|
|
ElfMappingSymbol LastEMS;
|
|
|
|
|
2013-01-30 15:39:04 +00:00
|
|
|
// ARM Exception Handling Frame Information
|
|
|
|
MCSymbol *ExTab;
|
|
|
|
MCSymbol *FnStart;
|
|
|
|
const MCSymbol *Personality;
|
2013-06-09 12:22:30 +00:00
|
|
|
unsigned PersonalityIndex;
|
|
|
|
unsigned FPReg; // Frame pointer register
|
|
|
|
int64_t FPOffset; // Offset: (final frame pointer) - (initial $sp)
|
|
|
|
int64_t SPOffset; // Offset: (final $sp) - (initial $sp)
|
|
|
|
int64_t PendingOffset; // Offset: (final $sp) - (emitted $sp)
|
2013-04-16 12:02:21 +00:00
|
|
|
bool UsedFP;
|
2013-01-30 15:39:04 +00:00
|
|
|
bool CantUnwind;
|
2013-06-09 12:22:30 +00:00
|
|
|
SmallVector<uint8_t, 64> Opcodes;
|
2013-04-16 12:02:21 +00:00
|
|
|
UnwindOpcodeAssembler UnwindOpAsm;
|
2012-12-07 16:50:23 +00:00
|
|
|
};
|
2013-04-16 12:02:21 +00:00
|
|
|
} // end anonymous namespace
|
2012-12-07 16:50:23 +00:00
|
|
|
|
2013-01-30 15:39:04 +00:00
|
|
|
inline void ARMELFStreamer::SwitchToEHSection(const char *Prefix,
|
|
|
|
unsigned Type,
|
|
|
|
unsigned Flags,
|
|
|
|
SectionKind Kind,
|
|
|
|
const MCSymbol &Fn) {
|
|
|
|
const MCSectionELF &FnSection =
|
|
|
|
static_cast<const MCSectionELF &>(Fn.getSection());
|
|
|
|
|
|
|
|
// Create the name for new section
|
|
|
|
StringRef FnSecName(FnSection.getSectionName());
|
|
|
|
SmallString<128> EHSecName(Prefix);
|
|
|
|
if (FnSecName != ".text") {
|
|
|
|
EHSecName += FnSecName;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get .ARM.extab or .ARM.exidx section
|
|
|
|
const MCSectionELF *EHSection = NULL;
|
|
|
|
if (const MCSymbol *Group = FnSection.getGroup()) {
|
|
|
|
EHSection = getContext().getELFSection(
|
|
|
|
EHSecName, Type, Flags | ELF::SHF_GROUP, Kind,
|
|
|
|
FnSection.getEntrySize(), Group->getName());
|
|
|
|
} else {
|
|
|
|
EHSection = getContext().getELFSection(EHSecName, Type, Flags, Kind);
|
|
|
|
}
|
2013-04-16 12:02:21 +00:00
|
|
|
assert(EHSection && "Failed to get the required EH section");
|
2013-01-30 15:39:04 +00:00
|
|
|
|
|
|
|
// Switch to .ARM.extab or .ARM.exidx section
|
|
|
|
SwitchSection(EHSection);
|
|
|
|
EmitCodeAlignment(4, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void ARMELFStreamer::SwitchToExTabSection(const MCSymbol &FnStart) {
|
|
|
|
SwitchToEHSection(".ARM.extab",
|
|
|
|
ELF::SHT_PROGBITS,
|
|
|
|
ELF::SHF_ALLOC,
|
|
|
|
SectionKind::getDataRel(),
|
|
|
|
FnStart);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void ARMELFStreamer::SwitchToExIdxSection(const MCSymbol &FnStart) {
|
|
|
|
SwitchToEHSection(".ARM.exidx",
|
|
|
|
ELF::SHT_ARM_EXIDX,
|
|
|
|
ELF::SHF_ALLOC | ELF::SHF_LINK_ORDER,
|
|
|
|
SectionKind::getDataRel(),
|
|
|
|
FnStart);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ARMELFStreamer::Reset() {
|
|
|
|
ExTab = NULL;
|
|
|
|
FnStart = NULL;
|
|
|
|
Personality = NULL;
|
2013-06-09 12:22:30 +00:00
|
|
|
PersonalityIndex = NUM_PERSONALITY_INDEX;
|
|
|
|
FPReg = ARM::SP;
|
2013-04-16 12:02:21 +00:00
|
|
|
FPOffset = 0;
|
|
|
|
SPOffset = 0;
|
2013-06-09 12:22:30 +00:00
|
|
|
PendingOffset = 0;
|
2013-04-16 12:02:21 +00:00
|
|
|
UsedFP = false;
|
2013-01-30 15:39:04 +00:00
|
|
|
CantUnwind = false;
|
2013-04-16 12:02:21 +00:00
|
|
|
|
2013-06-09 12:22:30 +00:00
|
|
|
Opcodes.clear();
|
2013-04-16 12:02:21 +00:00
|
|
|
UnwindOpAsm.Reset();
|
2013-01-30 15:39:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Add the R_ARM_NONE fixup at the same position
|
|
|
|
void ARMELFStreamer::EmitPersonalityFixup(StringRef Name) {
|
|
|
|
const MCSymbol *PersonalitySym = getContext().GetOrCreateSymbol(Name);
|
|
|
|
|
|
|
|
const MCSymbolRefExpr *PersonalityRef =
|
|
|
|
MCSymbolRefExpr::Create(PersonalitySym,
|
|
|
|
MCSymbolRefExpr::VK_ARM_NONE,
|
|
|
|
getContext());
|
|
|
|
|
|
|
|
AddValueSymbols(PersonalityRef);
|
|
|
|
MCDataFragment *DF = getOrCreateDataFragment();
|
|
|
|
DF->getFixups().push_back(
|
|
|
|
MCFixup::Create(DF->getContents().size(), PersonalityRef,
|
|
|
|
MCFixup::getKindForSize(4, false)));
|
|
|
|
}
|
|
|
|
|
|
|
|
void ARMELFStreamer::EmitFnStart() {
|
|
|
|
assert(FnStart == 0);
|
|
|
|
FnStart = getContext().CreateTempSymbol();
|
|
|
|
EmitLabel(FnStart);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ARMELFStreamer::EmitFnEnd() {
|
|
|
|
assert(FnStart && ".fnstart must preceeds .fnend");
|
|
|
|
|
|
|
|
// Emit unwind opcodes if there is no .handlerdata directive
|
2013-05-10 16:17:24 +00:00
|
|
|
if (!ExTab && !CantUnwind)
|
|
|
|
FlushUnwindOpcodes(true);
|
2013-01-30 15:39:04 +00:00
|
|
|
|
|
|
|
// Emit the exception index table entry
|
|
|
|
SwitchToExIdxSection(*FnStart);
|
|
|
|
|
2013-04-16 12:02:21 +00:00
|
|
|
if (PersonalityIndex < NUM_PERSONALITY_INDEX)
|
|
|
|
EmitPersonalityFixup(GetAEABIUnwindPersonalityName(PersonalityIndex));
|
2013-01-30 15:39:04 +00:00
|
|
|
|
|
|
|
const MCSymbolRefExpr *FnStartRef =
|
|
|
|
MCSymbolRefExpr::Create(FnStart,
|
|
|
|
MCSymbolRefExpr::VK_ARM_PREL31,
|
|
|
|
getContext());
|
|
|
|
|
2013-07-02 15:49:13 +00:00
|
|
|
EmitValue(FnStartRef, 4);
|
2013-01-30 15:39:04 +00:00
|
|
|
|
|
|
|
if (CantUnwind) {
|
2013-07-02 15:49:13 +00:00
|
|
|
EmitIntValue(EXIDX_CANTUNWIND, 4);
|
2013-04-16 12:02:21 +00:00
|
|
|
} else if (ExTab) {
|
|
|
|
// Emit a reference to the unwind opcodes in the ".ARM.extab" section.
|
2013-01-30 15:39:04 +00:00
|
|
|
const MCSymbolRefExpr *ExTabEntryRef =
|
|
|
|
MCSymbolRefExpr::Create(ExTab,
|
|
|
|
MCSymbolRefExpr::VK_ARM_PREL31,
|
|
|
|
getContext());
|
2013-07-02 15:49:13 +00:00
|
|
|
EmitValue(ExTabEntryRef, 4);
|
2013-04-16 12:02:21 +00:00
|
|
|
} else {
|
|
|
|
// For the __aeabi_unwind_cpp_pr0, we have to emit the unwind opcodes in
|
|
|
|
// the second word of exception index table entry. The size of the unwind
|
|
|
|
// opcodes should always be 4 bytes.
|
|
|
|
assert(PersonalityIndex == AEABI_UNWIND_CPP_PR0 &&
|
|
|
|
"Compact model must use __aeabi_cpp_unwind_pr0 as personality");
|
2013-06-09 12:22:30 +00:00
|
|
|
assert(Opcodes.size() == 4u &&
|
2013-04-16 12:02:21 +00:00
|
|
|
"Unwind opcode size for __aeabi_cpp_unwind_pr0 must be equal to 4");
|
2013-06-09 12:22:30 +00:00
|
|
|
EmitBytes(StringRef(reinterpret_cast<const char*>(Opcodes.data()),
|
2013-07-02 15:49:13 +00:00
|
|
|
Opcodes.size()));
|
2013-01-30 15:39:04 +00:00
|
|
|
}
|
|
|
|
|
2013-05-10 16:17:24 +00:00
|
|
|
// Switch to the section containing FnStart
|
|
|
|
SwitchSection(&FnStart->getSection());
|
|
|
|
|
2013-01-30 15:39:04 +00:00
|
|
|
// Clean exception handling frame information
|
|
|
|
Reset();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ARMELFStreamer::EmitCantUnwind() {
|
|
|
|
CantUnwind = true;
|
|
|
|
}
|
|
|
|
|
2013-06-09 12:22:30 +00:00
|
|
|
void ARMELFStreamer::FlushPendingOffset() {
|
|
|
|
if (PendingOffset != 0) {
|
|
|
|
UnwindOpAsm.EmitSPOffset(-PendingOffset);
|
|
|
|
PendingOffset = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-02 12:43:27 +00:00
|
|
|
void ARMELFStreamer::FlushUnwindOpcodes(bool NoHandlerData) {
|
2013-06-09 12:22:30 +00:00
|
|
|
// Emit the unwind opcode to restore $sp.
|
|
|
|
if (UsedFP) {
|
2013-06-18 07:20:20 +00:00
|
|
|
const MCRegisterInfo *MRI = getContext().getRegisterInfo();
|
2013-06-09 12:22:30 +00:00
|
|
|
int64_t LastRegSaveSPOffset = SPOffset - PendingOffset;
|
|
|
|
UnwindOpAsm.EmitSPOffset(LastRegSaveSPOffset - FPOffset);
|
2013-06-18 07:20:20 +00:00
|
|
|
UnwindOpAsm.EmitSetSP(MRI->getEncodingValue(FPReg));
|
2013-06-09 12:22:30 +00:00
|
|
|
} else {
|
|
|
|
FlushPendingOffset();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Finalize the unwind opcode sequence
|
|
|
|
UnwindOpAsm.Finalize(PersonalityIndex, Opcodes);
|
2013-05-10 16:17:24 +00:00
|
|
|
|
|
|
|
// For compact model 0, we have to emit the unwind opcodes in the .ARM.exidx
|
|
|
|
// section. Thus, we don't have to create an entry in the .ARM.extab
|
|
|
|
// section.
|
2013-07-02 12:43:27 +00:00
|
|
|
if (NoHandlerData && PersonalityIndex == AEABI_UNWIND_CPP_PR0)
|
2013-05-10 16:17:24 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
// Switch to .ARM.extab section.
|
2013-01-30 15:39:04 +00:00
|
|
|
SwitchToExTabSection(*FnStart);
|
|
|
|
|
|
|
|
// Create .ARM.extab label for offset in .ARM.exidx
|
|
|
|
assert(!ExTab);
|
|
|
|
ExTab = getContext().CreateTempSymbol();
|
|
|
|
EmitLabel(ExTab);
|
|
|
|
|
2013-05-10 16:17:24 +00:00
|
|
|
// Emit personality
|
|
|
|
if (Personality) {
|
|
|
|
const MCSymbolRefExpr *PersonalityRef =
|
|
|
|
MCSymbolRefExpr::Create(Personality,
|
|
|
|
MCSymbolRefExpr::VK_ARM_PREL31,
|
|
|
|
getContext());
|
2013-01-30 15:39:04 +00:00
|
|
|
|
2013-07-02 15:49:13 +00:00
|
|
|
EmitValue(PersonalityRef, 4);
|
2013-05-10 16:17:24 +00:00
|
|
|
}
|
2013-01-30 15:39:04 +00:00
|
|
|
|
|
|
|
// Emit unwind opcodes
|
2013-06-09 12:22:30 +00:00
|
|
|
EmitBytes(StringRef(reinterpret_cast<const char *>(Opcodes.data()),
|
2013-07-02 15:49:13 +00:00
|
|
|
Opcodes.size()));
|
2013-07-02 12:43:27 +00:00
|
|
|
|
|
|
|
// According to ARM EHABI section 9.2, if the __aeabi_unwind_cpp_pr1() or
|
|
|
|
// __aeabi_unwind_cpp_pr2() is used, then the handler data must be emitted
|
|
|
|
// after the unwind opcodes. The handler data consists of several 32-bit
|
|
|
|
// words, and should be terminated by zero.
|
|
|
|
//
|
|
|
|
// In case that the .handlerdata directive is not specified by the
|
|
|
|
// programmer, we should emit zero to terminate the handler data.
|
|
|
|
if (NoHandlerData && !Personality)
|
|
|
|
EmitIntValue(0, 4);
|
2013-01-30 15:39:04 +00:00
|
|
|
}
|
|
|
|
|
2013-05-10 16:17:24 +00:00
|
|
|
void ARMELFStreamer::EmitHandlerData() {
|
|
|
|
FlushUnwindOpcodes(false);
|
|
|
|
}
|
|
|
|
|
2013-01-30 15:39:04 +00:00
|
|
|
void ARMELFStreamer::EmitPersonality(const MCSymbol *Per) {
|
|
|
|
Personality = Per;
|
2013-04-16 12:02:21 +00:00
|
|
|
UnwindOpAsm.setPersonality(Per);
|
2013-01-30 15:39:04 +00:00
|
|
|
}
|
|
|
|
|
2013-04-16 12:02:21 +00:00
|
|
|
void ARMELFStreamer::EmitSetFP(unsigned NewFPReg,
|
|
|
|
unsigned NewSPReg,
|
2013-01-30 15:39:04 +00:00
|
|
|
int64_t Offset) {
|
2013-06-09 12:22:30 +00:00
|
|
|
assert((NewSPReg == ARM::SP || NewSPReg == FPReg) &&
|
2013-04-16 12:02:21 +00:00
|
|
|
"the operand of .setfp directive should be either $sp or $fp");
|
|
|
|
|
|
|
|
UsedFP = true;
|
2013-06-09 12:22:30 +00:00
|
|
|
FPReg = NewFPReg;
|
|
|
|
|
|
|
|
if (NewSPReg == ARM::SP)
|
|
|
|
FPOffset = SPOffset + Offset;
|
|
|
|
else
|
|
|
|
FPOffset += Offset;
|
2013-01-30 15:39:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ARMELFStreamer::EmitPad(int64_t Offset) {
|
2013-06-09 12:22:30 +00:00
|
|
|
// Track the change of the $sp offset
|
|
|
|
SPOffset -= Offset;
|
|
|
|
|
|
|
|
// To squash multiple .pad directives, we should delay the unwind opcode
|
|
|
|
// until the .save, .vsave, .handlerdata, or .fnend directives.
|
|
|
|
PendingOffset -= Offset;
|
2013-01-30 15:39:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ARMELFStreamer::EmitRegSave(const SmallVectorImpl<unsigned> &RegList,
|
|
|
|
bool IsVector) {
|
2013-06-09 12:22:30 +00:00
|
|
|
// Collect the registers in the register list
|
|
|
|
unsigned Count = 0;
|
|
|
|
uint32_t Mask = 0;
|
2013-06-18 07:20:20 +00:00
|
|
|
const MCRegisterInfo *MRI = getContext().getRegisterInfo();
|
2013-04-16 12:02:21 +00:00
|
|
|
for (size_t i = 0; i < RegList.size(); ++i) {
|
2013-06-18 07:20:20 +00:00
|
|
|
unsigned Reg = MRI->getEncodingValue(RegList[i]);
|
2013-06-10 16:45:40 +00:00
|
|
|
assert(Reg < (IsVector ? 32U : 16U) && "Register out of range");
|
2013-06-09 12:22:30 +00:00
|
|
|
unsigned Bit = (1u << Reg);
|
|
|
|
if ((Mask & Bit) == 0) {
|
|
|
|
Mask |= Bit;
|
|
|
|
++Count;
|
|
|
|
}
|
2013-04-16 12:02:21 +00:00
|
|
|
}
|
2013-06-09 12:22:30 +00:00
|
|
|
|
|
|
|
// Track the change the $sp offset: For the .save directive, the
|
|
|
|
// corresponding push instruction will decrease the $sp by (4 * Count).
|
|
|
|
// For the .vsave directive, the corresponding vpush instruction will
|
|
|
|
// decrease $sp by (8 * Count).
|
|
|
|
SPOffset -= Count * (IsVector ? 8 : 4);
|
|
|
|
|
|
|
|
// Emit the opcode
|
|
|
|
FlushPendingOffset();
|
|
|
|
if (IsVector)
|
|
|
|
UnwindOpAsm.EmitVFPRegSave(Mask);
|
|
|
|
else
|
|
|
|
UnwindOpAsm.EmitRegSave(Mask);
|
2013-01-30 15:39:04 +00:00
|
|
|
}
|
|
|
|
|
2012-12-07 16:50:23 +00:00
|
|
|
namespace llvm {
|
|
|
|
MCELFStreamer* createARMELFStreamer(MCContext &Context, MCAsmBackend &TAB,
|
|
|
|
raw_ostream &OS, MCCodeEmitter *Emitter,
|
|
|
|
bool RelaxAll, bool NoExecStack,
|
|
|
|
bool IsThumb) {
|
|
|
|
ARMELFStreamer *S = new ARMELFStreamer(Context, TAB, OS, Emitter, IsThumb);
|
|
|
|
if (RelaxAll)
|
|
|
|
S->getAssembler().setRelaxAll(true);
|
|
|
|
if (NoExecStack)
|
|
|
|
S->getAssembler().setNoExecStack(true);
|
|
|
|
return S;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|