2010-07-28 22:55:35 +02:00
|
|
|
//===- lib/MC/MCDwarf.cpp - MCDwarf implementation ------------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/MC/MCDwarf.h"
|
2011-07-20 07:58:47 +02:00
|
|
|
#include "llvm/MC/MCAsmInfo.h"
|
|
|
|
#include "llvm/MC/MCContext.h"
|
|
|
|
#include "llvm/MC/MCObjectFileInfo.h"
|
|
|
|
#include "llvm/MC/MCObjectWriter.h"
|
|
|
|
#include "llvm/MC/MCRegisterInfo.h"
|
2010-11-22 12:53:17 +01:00
|
|
|
#include "llvm/MC/MCStreamer.h"
|
2010-09-30 18:52:03 +02:00
|
|
|
#include "llvm/MC/MCSymbol.h"
|
|
|
|
#include "llvm/MC/MCExpr.h"
|
2010-07-28 22:55:35 +02:00
|
|
|
#include "llvm/Support/Debug.h"
|
2010-12-28 19:36:23 +01:00
|
|
|
#include "llvm/Support/ErrorHandling.h"
|
2010-07-28 22:55:35 +02:00
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2011-12-09 19:09:40 +01:00
|
|
|
#include "llvm/Support/Path.h"
|
|
|
|
#include "llvm/Support/SourceMgr.h"
|
2011-07-07 00:52:32 +02:00
|
|
|
#include "llvm/ADT/FoldingSet.h"
|
|
|
|
#include "llvm/ADT/SmallString.h"
|
|
|
|
#include "llvm/ADT/Twine.h"
|
2011-12-09 19:09:40 +01:00
|
|
|
#include "llvm/Config/config.h"
|
2010-07-28 22:55:35 +02:00
|
|
|
using namespace llvm;
|
|
|
|
|
2010-09-30 18:52:03 +02:00
|
|
|
// Given a special op, return the address skip amount (in units of
|
|
|
|
// DWARF2_LINE_MIN_INSN_LENGTH.
|
|
|
|
#define SPECIAL_ADDR(op) (((op) - DWARF2_LINE_OPCODE_BASE)/DWARF2_LINE_RANGE)
|
|
|
|
|
|
|
|
// The maximum address skip amount that can be encoded with a special op.
|
2011-07-01 01:59:38 +02:00
|
|
|
#define MAX_SPECIAL_ADDR_DELTA SPECIAL_ADDR(255)
|
2010-09-30 18:52:03 +02:00
|
|
|
|
|
|
|
// First special line opcode - leave room for the standard opcodes.
|
|
|
|
// Note: If you want to change this, you'll have to update the
|
|
|
|
// "standard_opcode_lengths" table that is emitted in DwarfFileTable::Emit().
|
2011-07-01 01:59:38 +02:00
|
|
|
#define DWARF2_LINE_OPCODE_BASE 13
|
2010-09-30 18:52:03 +02:00
|
|
|
|
|
|
|
// Minimum line offset in a special line info. opcode. This value
|
|
|
|
// was chosen to give a reasonable range of values.
|
2011-07-01 01:59:38 +02:00
|
|
|
#define DWARF2_LINE_BASE -5
|
2010-09-30 18:52:03 +02:00
|
|
|
|
|
|
|
// Range of line offsets in a special line info. opcode.
|
2011-07-01 01:59:38 +02:00
|
|
|
#define DWARF2_LINE_RANGE 14
|
2010-09-30 18:52:03 +02:00
|
|
|
|
|
|
|
// Define the architecture-dependent minimum instruction length (in bytes).
|
|
|
|
// This value should be rather too small than too big.
|
2011-07-01 01:59:38 +02:00
|
|
|
#define DWARF2_LINE_MIN_INSN_LENGTH 1
|
2010-09-30 18:52:03 +02:00
|
|
|
|
|
|
|
// Note: when DWARF2_LINE_MIN_INSN_LENGTH == 1 which is the current setting,
|
|
|
|
// this routine is a nop and will be optimized away.
|
2011-06-23 09:44:54 +02:00
|
|
|
static inline uint64_t ScaleAddrDelta(uint64_t AddrDelta) {
|
2010-09-30 18:52:03 +02:00
|
|
|
if (DWARF2_LINE_MIN_INSN_LENGTH == 1)
|
|
|
|
return AddrDelta;
|
|
|
|
if (AddrDelta % DWARF2_LINE_MIN_INSN_LENGTH != 0) {
|
|
|
|
// TODO: report this error, but really only once.
|
|
|
|
;
|
|
|
|
}
|
|
|
|
return AddrDelta / DWARF2_LINE_MIN_INSN_LENGTH;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// This is called when an instruction is assembled into the specified section
|
|
|
|
// and if there is information from the last .loc directive that has yet to have
|
|
|
|
// a line entry made for it is made.
|
|
|
|
//
|
2010-11-19 03:26:16 +01:00
|
|
|
void MCLineEntry::Make(MCStreamer *MCOS, const MCSection *Section) {
|
2010-09-30 18:52:03 +02:00
|
|
|
if (!MCOS->getContext().getDwarfLocSeen())
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Create a symbol at in the current section for use in the line entry.
|
|
|
|
MCSymbol *LineSym = MCOS->getContext().CreateTempSymbol();
|
|
|
|
// Set the value of the symbol to use for the MCLineEntry.
|
|
|
|
MCOS->EmitLabel(LineSym);
|
|
|
|
|
|
|
|
// Get the current .loc info saved in the context.
|
|
|
|
const MCDwarfLoc &DwarfLoc = MCOS->getContext().getCurrentDwarfLoc();
|
|
|
|
|
|
|
|
// Create a (local) line entry with the symbol and the current .loc info.
|
|
|
|
MCLineEntry LineEntry(LineSym, DwarfLoc);
|
|
|
|
|
|
|
|
// clear DwarfLocSeen saying the current .loc info is now used.
|
2010-10-04 22:17:24 +02:00
|
|
|
MCOS->getContext().ClearDwarfLocSeen();
|
2010-09-30 18:52:03 +02:00
|
|
|
|
|
|
|
// Get the MCLineSection for this section, if one does not exist for this
|
|
|
|
// section create it.
|
2010-11-19 08:41:23 +01:00
|
|
|
const DenseMap<const MCSection *, MCLineSection *> &MCLineSections =
|
2010-09-30 18:52:03 +02:00
|
|
|
MCOS->getContext().getMCLineSections();
|
2010-11-19 08:41:23 +01:00
|
|
|
MCLineSection *LineSection = MCLineSections.lookup(Section);
|
2010-09-30 18:52:03 +02:00
|
|
|
if (!LineSection) {
|
|
|
|
// Create a new MCLineSection. This will be deleted after the dwarf line
|
|
|
|
// table is created using it by iterating through the MCLineSections
|
|
|
|
// DenseMap.
|
|
|
|
LineSection = new MCLineSection;
|
|
|
|
// Save a pointer to the new LineSection into the MCLineSections DenseMap.
|
2010-11-19 08:41:23 +01:00
|
|
|
MCOS->getContext().addMCLineSection(Section, LineSection);
|
2010-09-30 18:52:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Add the line entry to this section's entries.
|
|
|
|
LineSection->addLineEntry(LineEntry);
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// This helper routine returns an expression of End - Start + IntVal .
|
|
|
|
//
|
2010-12-10 00:08:35 +01:00
|
|
|
static inline const MCExpr *MakeStartMinusEndExpr(const MCStreamer &MCOS,
|
|
|
|
const MCSymbol &Start,
|
|
|
|
const MCSymbol &End,
|
|
|
|
int IntVal) {
|
2010-09-30 18:52:03 +02:00
|
|
|
MCSymbolRefExpr::VariantKind Variant = MCSymbolRefExpr::VK_None;
|
|
|
|
const MCExpr *Res =
|
2010-12-10 00:08:35 +01:00
|
|
|
MCSymbolRefExpr::Create(&End, Variant, MCOS.getContext());
|
2010-09-30 18:52:03 +02:00
|
|
|
const MCExpr *RHS =
|
2010-12-10 00:08:35 +01:00
|
|
|
MCSymbolRefExpr::Create(&Start, Variant, MCOS.getContext());
|
2010-09-30 18:52:03 +02:00
|
|
|
const MCExpr *Res1 =
|
2010-12-10 00:08:35 +01:00
|
|
|
MCBinaryExpr::Create(MCBinaryExpr::Sub, Res, RHS, MCOS.getContext());
|
2010-09-30 18:52:03 +02:00
|
|
|
const MCExpr *Res2 =
|
2010-12-10 00:08:35 +01:00
|
|
|
MCConstantExpr::Create(IntVal, MCOS.getContext());
|
2010-09-30 18:52:03 +02:00
|
|
|
const MCExpr *Res3 =
|
2010-12-10 00:08:35 +01:00
|
|
|
MCBinaryExpr::Create(MCBinaryExpr::Sub, Res1, Res2, MCOS.getContext());
|
2010-09-30 18:52:03 +02:00
|
|
|
return Res3;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// This emits the Dwarf line table for the specified section from the entries
|
|
|
|
// in the LineSection.
|
|
|
|
//
|
2010-11-19 03:26:16 +01:00
|
|
|
static inline void EmitDwarfLineTable(MCStreamer *MCOS,
|
2010-09-30 18:52:03 +02:00
|
|
|
const MCSection *Section,
|
2010-12-10 08:39:47 +01:00
|
|
|
const MCLineSection *LineSection) {
|
2010-09-30 18:52:03 +02:00
|
|
|
unsigned FileNum = 1;
|
|
|
|
unsigned LastLine = 1;
|
|
|
|
unsigned Column = 0;
|
|
|
|
unsigned Flags = DWARF2_LINE_DEFAULT_IS_STMT ? DWARF2_FLAG_IS_STMT : 0;
|
|
|
|
unsigned Isa = 0;
|
|
|
|
MCSymbol *LastLabel = NULL;
|
|
|
|
|
|
|
|
// Loop through each MCLineEntry and encode the dwarf line number table.
|
2010-11-19 08:41:23 +01:00
|
|
|
for (MCLineSection::const_iterator
|
2010-09-30 18:52:03 +02:00
|
|
|
it = LineSection->getMCLineEntries()->begin(),
|
|
|
|
ie = LineSection->getMCLineEntries()->end(); it != ie; ++it) {
|
|
|
|
|
|
|
|
if (FileNum != it->getFileNum()) {
|
|
|
|
FileNum = it->getFileNum();
|
|
|
|
MCOS->EmitIntValue(dwarf::DW_LNS_set_file, 1);
|
2010-11-02 18:22:24 +01:00
|
|
|
MCOS->EmitULEB128IntValue(FileNum);
|
2010-09-30 18:52:03 +02:00
|
|
|
}
|
|
|
|
if (Column != it->getColumn()) {
|
|
|
|
Column = it->getColumn();
|
|
|
|
MCOS->EmitIntValue(dwarf::DW_LNS_set_column, 1);
|
2010-11-02 18:22:24 +01:00
|
|
|
MCOS->EmitULEB128IntValue(Column);
|
2010-09-30 18:52:03 +02:00
|
|
|
}
|
|
|
|
if (Isa != it->getIsa()) {
|
|
|
|
Isa = it->getIsa();
|
|
|
|
MCOS->EmitIntValue(dwarf::DW_LNS_set_isa, 1);
|
2010-11-02 18:22:24 +01:00
|
|
|
MCOS->EmitULEB128IntValue(Isa);
|
2010-09-30 18:52:03 +02:00
|
|
|
}
|
|
|
|
if ((it->getFlags() ^ Flags) & DWARF2_FLAG_IS_STMT) {
|
|
|
|
Flags = it->getFlags();
|
|
|
|
MCOS->EmitIntValue(dwarf::DW_LNS_negate_stmt, 1);
|
|
|
|
}
|
|
|
|
if (it->getFlags() & DWARF2_FLAG_BASIC_BLOCK)
|
|
|
|
MCOS->EmitIntValue(dwarf::DW_LNS_set_basic_block, 1);
|
|
|
|
if (it->getFlags() & DWARF2_FLAG_PROLOGUE_END)
|
|
|
|
MCOS->EmitIntValue(dwarf::DW_LNS_set_prologue_end, 1);
|
|
|
|
if (it->getFlags() & DWARF2_FLAG_EPILOGUE_BEGIN)
|
|
|
|
MCOS->EmitIntValue(dwarf::DW_LNS_set_epilogue_begin, 1);
|
|
|
|
|
2010-11-13 02:06:27 +01:00
|
|
|
int64_t LineDelta = static_cast<int64_t>(it->getLine()) - LastLine;
|
2010-09-30 18:52:03 +02:00
|
|
|
MCSymbol *Label = it->getLabel();
|
|
|
|
|
|
|
|
// At this point we want to emit/create the sequence to encode the delta in
|
|
|
|
// line numbers and the increment of the address from the previous Label
|
|
|
|
// and the current Label.
|
2011-07-15 04:09:41 +02:00
|
|
|
const MCAsmInfo &asmInfo = MCOS->getContext().getAsmInfo();
|
2011-07-14 07:43:07 +02:00
|
|
|
MCOS->EmitDwarfAdvanceLineAddr(LineDelta, LastLabel, Label,
|
|
|
|
asmInfo.getPointerSize());
|
2010-09-30 18:52:03 +02:00
|
|
|
|
|
|
|
LastLine = it->getLine();
|
|
|
|
LastLabel = Label;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Emit a DW_LNE_end_sequence for the end of the section.
|
|
|
|
// Using the pointer Section create a temporary label at the end of the
|
|
|
|
// section and use that and the LastLabel to compute the address delta
|
|
|
|
// and use INT64_MAX as the line delta which is the signal that this is
|
|
|
|
// actually a DW_LNE_end_sequence.
|
|
|
|
|
|
|
|
// Switch to the section to be able to create a symbol at its end.
|
|
|
|
MCOS->SwitchSection(Section);
|
2010-12-10 08:39:47 +01:00
|
|
|
|
|
|
|
MCContext &context = MCOS->getContext();
|
2010-09-30 18:52:03 +02:00
|
|
|
// Create a symbol at the end of the section.
|
2010-12-10 08:39:47 +01:00
|
|
|
MCSymbol *SectionEnd = context.CreateTempSymbol();
|
2010-09-30 18:52:03 +02:00
|
|
|
// Set the value of the symbol, as we are at the end of the section.
|
|
|
|
MCOS->EmitLabel(SectionEnd);
|
|
|
|
|
|
|
|
// Switch back the the dwarf line section.
|
2011-07-20 07:58:47 +02:00
|
|
|
MCOS->SwitchSection(context.getObjectFileInfo()->getDwarfLineSection());
|
2010-11-19 03:26:16 +01:00
|
|
|
|
2011-07-15 04:09:41 +02:00
|
|
|
const MCAsmInfo &asmInfo = MCOS->getContext().getAsmInfo();
|
2011-07-14 07:43:07 +02:00
|
|
|
MCOS->EmitDwarfAdvanceLineAddr(INT64_MAX, LastLabel, SectionEnd,
|
|
|
|
asmInfo.getPointerSize());
|
2010-09-30 18:52:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// This emits the Dwarf file and the line tables.
|
|
|
|
//
|
2010-12-10 08:39:47 +01:00
|
|
|
void MCDwarfFileTable::Emit(MCStreamer *MCOS) {
|
|
|
|
MCContext &context = MCOS->getContext();
|
2010-09-30 18:52:03 +02:00
|
|
|
// Switch to the section where the table will be emitted into.
|
2011-07-20 07:58:47 +02:00
|
|
|
MCOS->SwitchSection(context.getObjectFileInfo()->getDwarfLineSection());
|
2010-09-30 18:52:03 +02:00
|
|
|
|
|
|
|
// Create a symbol at the beginning of this section.
|
2010-12-10 08:39:47 +01:00
|
|
|
MCSymbol *LineStartSym = context.CreateTempSymbol();
|
2010-09-30 18:52:03 +02:00
|
|
|
// Set the value of the symbol, as we are at the start of the section.
|
|
|
|
MCOS->EmitLabel(LineStartSym);
|
|
|
|
|
|
|
|
// Create a symbol for the end of the section (to be set when we get there).
|
2010-12-10 08:39:47 +01:00
|
|
|
MCSymbol *LineEndSym = context.CreateTempSymbol();
|
2010-09-30 18:52:03 +02:00
|
|
|
|
|
|
|
// The first 4 bytes is the total length of the information for this
|
|
|
|
// compilation unit (not including these 4 bytes for the length).
|
2010-12-10 00:08:35 +01:00
|
|
|
MCOS->EmitAbsValue(MakeStartMinusEndExpr(*MCOS, *LineStartSym, *LineEndSym,4),
|
2010-12-06 18:27:56 +01:00
|
|
|
4);
|
2010-09-30 18:52:03 +02:00
|
|
|
|
|
|
|
// Next 2 bytes is the Version, which is Dwarf 2.
|
|
|
|
MCOS->EmitIntValue(2, 2);
|
|
|
|
|
|
|
|
// Create a symbol for the end of the prologue (to be set when we get there).
|
2010-12-10 08:39:47 +01:00
|
|
|
MCSymbol *ProEndSym = context.CreateTempSymbol(); // Lprologue_end
|
2010-09-30 18:52:03 +02:00
|
|
|
|
|
|
|
// Length of the prologue, is the next 4 bytes. Which is the start of the
|
|
|
|
// section to the end of the prologue. Not including the 4 bytes for the
|
|
|
|
// total length, the 2 bytes for the version, and these 4 bytes for the
|
|
|
|
// length of the prologue.
|
2010-12-10 00:08:35 +01:00
|
|
|
MCOS->EmitAbsValue(MakeStartMinusEndExpr(*MCOS, *LineStartSym, *ProEndSym,
|
2010-09-30 18:52:03 +02:00
|
|
|
(4 + 2 + 4)),
|
2010-12-04 04:21:47 +01:00
|
|
|
4, 0);
|
2010-09-30 18:52:03 +02:00
|
|
|
|
|
|
|
// Parameters of the state machine, are next.
|
|
|
|
MCOS->EmitIntValue(DWARF2_LINE_MIN_INSN_LENGTH, 1);
|
|
|
|
MCOS->EmitIntValue(DWARF2_LINE_DEFAULT_IS_STMT, 1);
|
|
|
|
MCOS->EmitIntValue(DWARF2_LINE_BASE, 1);
|
|
|
|
MCOS->EmitIntValue(DWARF2_LINE_RANGE, 1);
|
|
|
|
MCOS->EmitIntValue(DWARF2_LINE_OPCODE_BASE, 1);
|
|
|
|
|
|
|
|
// Standard opcode lengths
|
|
|
|
MCOS->EmitIntValue(0, 1); // length of DW_LNS_copy
|
|
|
|
MCOS->EmitIntValue(1, 1); // length of DW_LNS_advance_pc
|
|
|
|
MCOS->EmitIntValue(1, 1); // length of DW_LNS_advance_line
|
|
|
|
MCOS->EmitIntValue(1, 1); // length of DW_LNS_set_file
|
|
|
|
MCOS->EmitIntValue(1, 1); // length of DW_LNS_set_column
|
|
|
|
MCOS->EmitIntValue(0, 1); // length of DW_LNS_negate_stmt
|
|
|
|
MCOS->EmitIntValue(0, 1); // length of DW_LNS_set_basic_block
|
|
|
|
MCOS->EmitIntValue(0, 1); // length of DW_LNS_const_add_pc
|
|
|
|
MCOS->EmitIntValue(1, 1); // length of DW_LNS_fixed_advance_pc
|
|
|
|
MCOS->EmitIntValue(0, 1); // length of DW_LNS_set_prologue_end
|
|
|
|
MCOS->EmitIntValue(0, 1); // length of DW_LNS_set_epilogue_begin
|
|
|
|
MCOS->EmitIntValue(1, 1); // DW_LNS_set_isa
|
|
|
|
|
|
|
|
// Put out the directory and file tables.
|
|
|
|
|
|
|
|
// First the directory table.
|
|
|
|
const std::vector<StringRef> &MCDwarfDirs =
|
2010-12-10 08:39:47 +01:00
|
|
|
context.getMCDwarfDirs();
|
2010-09-30 18:52:03 +02:00
|
|
|
for (unsigned i = 0; i < MCDwarfDirs.size(); i++) {
|
|
|
|
MCOS->EmitBytes(MCDwarfDirs[i], 0); // the DirectoryName
|
|
|
|
MCOS->EmitBytes(StringRef("\0", 1), 0); // the null term. of the string
|
|
|
|
}
|
|
|
|
MCOS->EmitIntValue(0, 1); // Terminate the directory list
|
|
|
|
|
|
|
|
// Second the file table.
|
|
|
|
const std::vector<MCDwarfFile *> &MCDwarfFiles =
|
|
|
|
MCOS->getContext().getMCDwarfFiles();
|
|
|
|
for (unsigned i = 1; i < MCDwarfFiles.size(); i++) {
|
|
|
|
MCOS->EmitBytes(MCDwarfFiles[i]->getName(), 0); // FileName
|
|
|
|
MCOS->EmitBytes(StringRef("\0", 1), 0); // the null term. of the string
|
2010-11-02 18:22:24 +01:00
|
|
|
// the Directory num
|
|
|
|
MCOS->EmitULEB128IntValue(MCDwarfFiles[i]->getDirIndex());
|
2010-09-30 18:52:03 +02:00
|
|
|
MCOS->EmitIntValue(0, 1); // last modification timestamp (always 0)
|
|
|
|
MCOS->EmitIntValue(0, 1); // filesize (always 0)
|
|
|
|
}
|
|
|
|
MCOS->EmitIntValue(0, 1); // Terminate the file list
|
|
|
|
|
|
|
|
// This is the end of the prologue, so set the value of the symbol at the
|
|
|
|
// end of the prologue (that was used in a previous expression).
|
|
|
|
MCOS->EmitLabel(ProEndSym);
|
|
|
|
|
|
|
|
// Put out the line tables.
|
2010-11-19 08:41:23 +01:00
|
|
|
const DenseMap<const MCSection *, MCLineSection *> &MCLineSections =
|
2010-09-30 18:52:03 +02:00
|
|
|
MCOS->getContext().getMCLineSections();
|
2010-11-19 08:41:23 +01:00
|
|
|
const std::vector<const MCSection *> &MCLineSectionOrder =
|
|
|
|
MCOS->getContext().getMCLineSectionOrder();
|
|
|
|
for (std::vector<const MCSection*>::const_iterator it =
|
2011-07-01 01:59:38 +02:00
|
|
|
MCLineSectionOrder.begin(), ie = MCLineSectionOrder.end(); it != ie;
|
2010-11-19 08:41:23 +01:00
|
|
|
++it) {
|
|
|
|
const MCSection *Sec = *it;
|
|
|
|
const MCLineSection *Line = MCLineSections.lookup(Sec);
|
2010-12-10 08:39:47 +01:00
|
|
|
EmitDwarfLineTable(MCOS, Sec, Line);
|
2010-09-30 18:52:03 +02:00
|
|
|
|
|
|
|
// Now delete the MCLineSections that were created in MCLineEntry::Make()
|
|
|
|
// and used to emit the line table.
|
2010-11-19 08:41:23 +01:00
|
|
|
delete Line;
|
2010-09-30 18:52:03 +02:00
|
|
|
}
|
|
|
|
|
2010-12-04 01:31:13 +01:00
|
|
|
if (MCOS->getContext().getAsmInfo().getLinkerRequiresNonEmptyDwarfLines()
|
|
|
|
&& MCLineSectionOrder.begin() == MCLineSectionOrder.end()) {
|
2010-12-04 00:36:59 +01:00
|
|
|
// The darwin9 linker has a bug (see PR8715). For for 32-bit architectures
|
|
|
|
// it requires:
|
|
|
|
// total_length >= prologue_length + 10
|
|
|
|
// We are 4 bytes short, since we have total_length = 51 and
|
|
|
|
// prologue_length = 45
|
|
|
|
|
|
|
|
// The regular end_sequence should be sufficient.
|
|
|
|
MCDwarfLineAddr::Emit(MCOS, INT64_MAX, 0);
|
2010-12-03 01:10:48 +01:00
|
|
|
}
|
|
|
|
|
2010-09-30 18:52:03 +02:00
|
|
|
// This is the end of the section, so set the value of the symbol at the end
|
|
|
|
// of this section (that was used in a previous expression).
|
|
|
|
MCOS->EmitLabel(LineEndSym);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Utility function to write the encoding to an object writer.
|
|
|
|
void MCDwarfLineAddr::Write(MCObjectWriter *OW, int64_t LineDelta,
|
|
|
|
uint64_t AddrDelta) {
|
|
|
|
SmallString<256> Tmp;
|
|
|
|
raw_svector_ostream OS(Tmp);
|
|
|
|
MCDwarfLineAddr::Encode(LineDelta, AddrDelta, OS);
|
|
|
|
OW->WriteBytes(OS.str());
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Utility function to emit the encoding to a streamer.
|
2010-11-19 03:26:16 +01:00
|
|
|
void MCDwarfLineAddr::Emit(MCStreamer *MCOS, int64_t LineDelta,
|
2010-09-30 18:52:03 +02:00
|
|
|
uint64_t AddrDelta) {
|
|
|
|
SmallString<256> Tmp;
|
|
|
|
raw_svector_ostream OS(Tmp);
|
|
|
|
MCDwarfLineAddr::Encode(LineDelta, AddrDelta, OS);
|
|
|
|
MCOS->EmitBytes(OS.str(), /*AddrSpace=*/0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Utility function to encode a Dwarf pair of LineDelta and AddrDeltas.
|
|
|
|
void MCDwarfLineAddr::Encode(int64_t LineDelta, uint64_t AddrDelta,
|
|
|
|
raw_ostream &OS) {
|
|
|
|
uint64_t Temp, Opcode;
|
|
|
|
bool NeedCopy = false;
|
|
|
|
|
|
|
|
// Scale the address delta by the minimum instruction length.
|
|
|
|
AddrDelta = ScaleAddrDelta(AddrDelta);
|
|
|
|
|
|
|
|
// A LineDelta of INT64_MAX is a signal that this is actually a
|
|
|
|
// DW_LNE_end_sequence. We cannot use special opcodes here, since we want the
|
|
|
|
// end_sequence to emit the matrix entry.
|
|
|
|
if (LineDelta == INT64_MAX) {
|
|
|
|
if (AddrDelta == MAX_SPECIAL_ADDR_DELTA)
|
|
|
|
OS << char(dwarf::DW_LNS_const_add_pc);
|
|
|
|
else {
|
|
|
|
OS << char(dwarf::DW_LNS_advance_pc);
|
2011-06-18 16:42:47 +02:00
|
|
|
MCObjectWriter::EncodeULEB128(AddrDelta, OS);
|
2010-09-30 18:52:03 +02:00
|
|
|
}
|
|
|
|
OS << char(dwarf::DW_LNS_extended_op);
|
|
|
|
OS << char(1);
|
|
|
|
OS << char(dwarf::DW_LNE_end_sequence);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Bias the line delta by the base.
|
|
|
|
Temp = LineDelta - DWARF2_LINE_BASE;
|
|
|
|
|
|
|
|
// If the line increment is out of range of a special opcode, we must encode
|
|
|
|
// it with DW_LNS_advance_line.
|
|
|
|
if (Temp >= DWARF2_LINE_RANGE) {
|
|
|
|
OS << char(dwarf::DW_LNS_advance_line);
|
2011-11-09 14:19:15 +01:00
|
|
|
MCObjectWriter::EncodeSLEB128(LineDelta, OS);
|
2010-09-30 18:52:03 +02:00
|
|
|
|
|
|
|
LineDelta = 0;
|
|
|
|
Temp = 0 - DWARF2_LINE_BASE;
|
|
|
|
NeedCopy = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Use DW_LNS_copy instead of a "line +0, addr +0" special opcode.
|
|
|
|
if (LineDelta == 0 && AddrDelta == 0) {
|
|
|
|
OS << char(dwarf::DW_LNS_copy);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Bias the opcode by the special opcode base.
|
|
|
|
Temp += DWARF2_LINE_OPCODE_BASE;
|
|
|
|
|
|
|
|
// Avoid overflow when addr_delta is large.
|
|
|
|
if (AddrDelta < 256 + MAX_SPECIAL_ADDR_DELTA) {
|
|
|
|
// Try using a special opcode.
|
|
|
|
Opcode = Temp + AddrDelta * DWARF2_LINE_RANGE;
|
|
|
|
if (Opcode <= 255) {
|
|
|
|
OS << char(Opcode);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Try using DW_LNS_const_add_pc followed by special op.
|
|
|
|
Opcode = Temp + (AddrDelta - MAX_SPECIAL_ADDR_DELTA) * DWARF2_LINE_RANGE;
|
|
|
|
if (Opcode <= 255) {
|
|
|
|
OS << char(dwarf::DW_LNS_const_add_pc);
|
|
|
|
OS << char(Opcode);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Otherwise use DW_LNS_advance_pc.
|
|
|
|
OS << char(dwarf::DW_LNS_advance_pc);
|
2011-11-09 14:19:15 +01:00
|
|
|
MCObjectWriter::EncodeULEB128(AddrDelta, OS);
|
2010-09-30 18:52:03 +02:00
|
|
|
|
|
|
|
if (NeedCopy)
|
|
|
|
OS << char(dwarf::DW_LNS_copy);
|
|
|
|
else
|
|
|
|
OS << char(Temp);
|
|
|
|
}
|
|
|
|
|
2010-07-28 22:55:35 +02:00
|
|
|
void MCDwarfFile::print(raw_ostream &OS) const {
|
|
|
|
OS << '"' << getName() << '"';
|
|
|
|
}
|
|
|
|
|
|
|
|
void MCDwarfFile::dump() const {
|
|
|
|
print(dbgs());
|
|
|
|
}
|
2010-09-30 18:52:03 +02:00
|
|
|
|
2011-12-09 19:09:40 +01:00
|
|
|
// Utility function to write a tuple for .debug_abbrev.
|
|
|
|
static void EmitAbbrev(MCStreamer *MCOS, uint64_t Name, uint64_t Form) {
|
|
|
|
MCOS->EmitULEB128IntValue(Name);
|
|
|
|
MCOS->EmitULEB128IntValue(Form);
|
|
|
|
}
|
|
|
|
|
|
|
|
// When generating dwarf for assembly source files this emits
|
|
|
|
// the data for .debug_abbrev section which contains three DIEs.
|
|
|
|
static void EmitGenDwarfAbbrev(MCStreamer *MCOS) {
|
|
|
|
MCContext &context = MCOS->getContext();
|
|
|
|
MCOS->SwitchSection(context.getObjectFileInfo()->getDwarfAbbrevSection());
|
|
|
|
|
|
|
|
// DW_TAG_compile_unit DIE abbrev (1).
|
|
|
|
MCOS->EmitULEB128IntValue(1);
|
|
|
|
MCOS->EmitULEB128IntValue(dwarf::DW_TAG_compile_unit);
|
|
|
|
MCOS->EmitIntValue(dwarf::DW_CHILDREN_yes, 1);
|
|
|
|
EmitAbbrev(MCOS, dwarf::DW_AT_stmt_list, dwarf::DW_FORM_data4);
|
|
|
|
EmitAbbrev(MCOS, dwarf::DW_AT_low_pc, dwarf::DW_FORM_addr);
|
|
|
|
EmitAbbrev(MCOS, dwarf::DW_AT_high_pc, dwarf::DW_FORM_addr);
|
|
|
|
EmitAbbrev(MCOS, dwarf::DW_AT_name, dwarf::DW_FORM_string);
|
|
|
|
EmitAbbrev(MCOS, dwarf::DW_AT_comp_dir, dwarf::DW_FORM_string);
|
|
|
|
StringRef DwarfDebugFlags = context.getDwarfDebugFlags();
|
|
|
|
if (!DwarfDebugFlags.empty())
|
|
|
|
EmitAbbrev(MCOS, dwarf::DW_AT_APPLE_flags, dwarf::DW_FORM_string);
|
|
|
|
EmitAbbrev(MCOS, dwarf::DW_AT_producer, dwarf::DW_FORM_string);
|
|
|
|
EmitAbbrev(MCOS, dwarf::DW_AT_language, dwarf::DW_FORM_data2);
|
|
|
|
EmitAbbrev(MCOS, 0, 0);
|
|
|
|
|
|
|
|
// DW_TAG_subprogram DIE abbrev (2).
|
|
|
|
MCOS->EmitULEB128IntValue(2);
|
|
|
|
MCOS->EmitULEB128IntValue(dwarf::DW_TAG_subprogram);
|
|
|
|
MCOS->EmitIntValue(dwarf::DW_CHILDREN_yes, 1);
|
|
|
|
EmitAbbrev(MCOS, dwarf::DW_AT_name, dwarf::DW_FORM_string);
|
|
|
|
EmitAbbrev(MCOS, dwarf::DW_AT_decl_file, dwarf::DW_FORM_data4);
|
|
|
|
EmitAbbrev(MCOS, dwarf::DW_AT_decl_line, dwarf::DW_FORM_data4);
|
|
|
|
EmitAbbrev(MCOS, dwarf::DW_AT_low_pc, dwarf::DW_FORM_addr);
|
|
|
|
EmitAbbrev(MCOS, dwarf::DW_AT_high_pc, dwarf::DW_FORM_addr);
|
|
|
|
EmitAbbrev(MCOS, dwarf::DW_AT_prototyped, dwarf::DW_FORM_flag);
|
|
|
|
EmitAbbrev(MCOS, 0, 0);
|
|
|
|
|
|
|
|
// DW_TAG_unspecified_parameters DIE abbrev (3).
|
|
|
|
MCOS->EmitULEB128IntValue(3);
|
|
|
|
MCOS->EmitULEB128IntValue(dwarf::DW_TAG_unspecified_parameters);
|
|
|
|
MCOS->EmitIntValue(dwarf::DW_CHILDREN_no, 1);
|
|
|
|
EmitAbbrev(MCOS, 0, 0);
|
|
|
|
|
|
|
|
// Terminate the abbreviations for this compilation unit.
|
|
|
|
MCOS->EmitIntValue(0, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
// When generating dwarf for assembly source files this emits the data for
|
|
|
|
// .debug_aranges section. Which contains a header and a table of pairs of
|
|
|
|
// PointerSize'ed values for the address and size of section(s) with line table
|
|
|
|
// entries (just the default .text in our case) and a terminating pair of zeros.
|
|
|
|
static void EmitGenDwarfAranges(MCStreamer *MCOS) {
|
|
|
|
MCContext &context = MCOS->getContext();
|
|
|
|
|
|
|
|
// Create a symbol at the end of the section that we are creating the dwarf
|
|
|
|
// debugging info to use later in here as part of the expression to calculate
|
|
|
|
// the size of the section for the table.
|
|
|
|
MCOS->SwitchSection(context.getGenDwarfSection());
|
|
|
|
MCSymbol *SectionEndSym = context.CreateTempSymbol();
|
|
|
|
MCOS->EmitLabel(SectionEndSym);
|
|
|
|
context.setGenDwarfSectionEndSym(SectionEndSym);
|
|
|
|
|
|
|
|
MCOS->SwitchSection(context.getObjectFileInfo()->getDwarfARangesSection());
|
|
|
|
|
|
|
|
// This will be the length of the .debug_aranges section, first account for
|
|
|
|
// the size of each item in the header (see below where we emit these items).
|
|
|
|
int Length = 4 + 2 + 4 + 1 + 1;
|
|
|
|
|
|
|
|
// Figure the padding after the header before the table of address and size
|
|
|
|
// pairs who's values are PointerSize'ed.
|
|
|
|
const MCAsmInfo &asmInfo = context.getAsmInfo();
|
|
|
|
int AddrSize = asmInfo.getPointerSize();
|
|
|
|
int Pad = 2 * AddrSize - (Length & (2 * AddrSize - 1));
|
|
|
|
if (Pad == 2 * AddrSize)
|
|
|
|
Pad = 0;
|
|
|
|
Length += Pad;
|
|
|
|
|
|
|
|
// Add the size of the pair of PointerSize'ed values for the address and size
|
|
|
|
// of the one default .text section we have in the table.
|
|
|
|
Length += 2 * AddrSize;
|
|
|
|
// And the pair of terminating zeros.
|
|
|
|
Length += 2 * AddrSize;
|
|
|
|
|
|
|
|
|
|
|
|
// Emit the header for this section.
|
|
|
|
// The 4 byte length not including the 4 byte value for the length.
|
|
|
|
MCOS->EmitIntValue(Length - 4, 4);
|
|
|
|
// The 2 byte version, which is 2.
|
|
|
|
MCOS->EmitIntValue(2, 2);
|
|
|
|
// The 4 byte offset to the compile unit in the .debug_info from the start
|
|
|
|
// of the .debug_info, it is at the start of that section so this is zero.
|
|
|
|
MCOS->EmitIntValue(0, 4);
|
|
|
|
// The 1 byte size of an address.
|
|
|
|
MCOS->EmitIntValue(AddrSize, 1);
|
|
|
|
// The 1 byte size of a segment descriptor, we use a value of zero.
|
|
|
|
MCOS->EmitIntValue(0, 1);
|
|
|
|
// Align the header with the padding if needed, before we put out the table.
|
|
|
|
for(int i = 0; i < Pad; i++)
|
|
|
|
MCOS->EmitIntValue(0, 1);
|
|
|
|
|
|
|
|
// Now emit the table of pairs of PointerSize'ed values for the section(s)
|
|
|
|
// address and size, in our case just the one default .text section.
|
|
|
|
const MCExpr *Addr = MCSymbolRefExpr::Create(
|
|
|
|
context.getGenDwarfSectionStartSym(), MCSymbolRefExpr::VK_None, context);
|
|
|
|
const MCExpr *Size = MakeStartMinusEndExpr(*MCOS,
|
|
|
|
*context.getGenDwarfSectionStartSym(), *SectionEndSym, 0);
|
|
|
|
MCOS->EmitAbsValue(Addr, AddrSize);
|
|
|
|
MCOS->EmitAbsValue(Size, AddrSize);
|
|
|
|
|
|
|
|
// And finally the pair of terminating zeros.
|
|
|
|
MCOS->EmitIntValue(0, AddrSize);
|
|
|
|
MCOS->EmitIntValue(0, AddrSize);
|
|
|
|
}
|
|
|
|
|
|
|
|
// When generating dwarf for assembly source files this emits the data for
|
|
|
|
// .debug_info section which contains three parts. The header, the compile_unit
|
|
|
|
// DIE and a list of subprogram DIEs.
|
|
|
|
static void EmitGenDwarfInfo(MCStreamer *MCOS) {
|
|
|
|
MCContext &context = MCOS->getContext();
|
|
|
|
|
|
|
|
MCOS->SwitchSection(context.getObjectFileInfo()->getDwarfInfoSection());
|
|
|
|
|
|
|
|
// Create a symbol at the start and end of this section used in here for the
|
|
|
|
// expression to calculate the length in the header.
|
|
|
|
MCSymbol *InfoStart = context.CreateTempSymbol();
|
|
|
|
MCOS->EmitLabel(InfoStart);
|
|
|
|
MCSymbol *InfoEnd = context.CreateTempSymbol();
|
|
|
|
|
|
|
|
// First part: the header.
|
|
|
|
|
|
|
|
// The 4 byte total length of the information for this compilation unit, not
|
|
|
|
// including these 4 bytes.
|
|
|
|
const MCExpr *Length = MakeStartMinusEndExpr(*MCOS, *InfoStart, *InfoEnd, 4);
|
|
|
|
MCOS->EmitAbsValue(Length, 4);
|
|
|
|
|
|
|
|
// The 2 byte DWARF version, which is 2.
|
|
|
|
MCOS->EmitIntValue(2, 2);
|
|
|
|
|
|
|
|
// The 4 byte offset to the debug abbrevs from the start of the .debug_abbrev,
|
|
|
|
// it is at the start of that section so this is zero.
|
|
|
|
MCOS->EmitIntValue(0, 4);
|
|
|
|
|
|
|
|
const MCAsmInfo &asmInfo = context.getAsmInfo();
|
|
|
|
int AddrSize = asmInfo.getPointerSize();
|
|
|
|
// The 1 byte size of an address.
|
|
|
|
MCOS->EmitIntValue(AddrSize, 1);
|
|
|
|
|
|
|
|
// Second part: the compile_unit DIE.
|
|
|
|
|
|
|
|
// The DW_TAG_compile_unit DIE abbrev (1).
|
|
|
|
MCOS->EmitULEB128IntValue(1);
|
|
|
|
|
|
|
|
// DW_AT_stmt_list, a 4 byte offset from the start of the .debug_line section,
|
|
|
|
// which is at the start of that section so this is zero.
|
|
|
|
MCOS->EmitIntValue(0, 4);
|
|
|
|
|
|
|
|
// AT_low_pc, the first address of the default .text section.
|
|
|
|
const MCExpr *Start = MCSymbolRefExpr::Create(
|
|
|
|
context.getGenDwarfSectionStartSym(), MCSymbolRefExpr::VK_None, context);
|
|
|
|
MCOS->EmitAbsValue(Start, AddrSize);
|
|
|
|
|
|
|
|
// AT_high_pc, the last address of the default .text section.
|
|
|
|
const MCExpr *End = MCSymbolRefExpr::Create(
|
|
|
|
context.getGenDwarfSectionEndSym(), MCSymbolRefExpr::VK_None, context);
|
|
|
|
MCOS->EmitAbsValue(End, AddrSize);
|
|
|
|
|
|
|
|
// AT_name, the name of the source file. Reconstruct from the first directory
|
|
|
|
// and file table entries.
|
|
|
|
const std::vector<StringRef> &MCDwarfDirs =
|
|
|
|
context.getMCDwarfDirs();
|
|
|
|
if (MCDwarfDirs.size() > 0) {
|
|
|
|
MCOS->EmitBytes(MCDwarfDirs[0], 0);
|
|
|
|
MCOS->EmitBytes("/", 0);
|
|
|
|
}
|
|
|
|
const std::vector<MCDwarfFile *> &MCDwarfFiles =
|
|
|
|
MCOS->getContext().getMCDwarfFiles();
|
|
|
|
MCOS->EmitBytes(MCDwarfFiles[1]->getName(), 0);
|
|
|
|
MCOS->EmitIntValue(0, 1); // NULL byte to terminate the string.
|
|
|
|
|
|
|
|
// AT_comp_dir, the working directory the assembly was done in.
|
|
|
|
llvm::sys::Path CWD = llvm::sys::Path::GetCurrentDirectory();
|
|
|
|
MCOS->EmitBytes(StringRef(CWD.c_str()), 0);
|
|
|
|
MCOS->EmitIntValue(0, 1); // NULL byte to terminate the string.
|
|
|
|
|
|
|
|
// AT_APPLE_flags, the command line arguments of the assembler tool.
|
|
|
|
StringRef DwarfDebugFlags = context.getDwarfDebugFlags();
|
|
|
|
if (!DwarfDebugFlags.empty()){
|
|
|
|
MCOS->EmitBytes(DwarfDebugFlags, 0);
|
|
|
|
MCOS->EmitIntValue(0, 1); // NULL byte to terminate the string.
|
|
|
|
}
|
|
|
|
|
|
|
|
// AT_producer, the version of the assembler tool.
|
|
|
|
MCOS->EmitBytes(StringRef("llvm-mc (based on LLVM "), 0);
|
|
|
|
MCOS->EmitBytes(StringRef(PACKAGE_VERSION), 0);
|
|
|
|
MCOS->EmitBytes(StringRef(")"), 0);
|
|
|
|
MCOS->EmitIntValue(0, 1); // NULL byte to terminate the string.
|
|
|
|
|
|
|
|
// AT_language, a 4 byte value. We use DW_LANG_Mips_Assembler as the dwarf2
|
|
|
|
// draft has no standard code for assembler.
|
|
|
|
MCOS->EmitIntValue(dwarf::DW_LANG_Mips_Assembler, 2);
|
|
|
|
|
|
|
|
// Third part: the list of subprogram DIEs.
|
|
|
|
|
|
|
|
// Loop on saved info for dwarf subprograms and create the DIEs for them.
|
|
|
|
const std::vector<const MCGenDwarfSubprogramEntry *> &Entries =
|
|
|
|
MCOS->getContext().getMCGenDwarfSubprogramEntries();
|
|
|
|
for (std::vector<const MCGenDwarfSubprogramEntry *>::const_iterator it =
|
|
|
|
Entries.begin(), ie = Entries.end(); it != ie;
|
|
|
|
++it) {
|
|
|
|
const MCGenDwarfSubprogramEntry *Entry = *it;
|
|
|
|
|
|
|
|
// The DW_TAG_subprogram DIE abbrev (2).
|
|
|
|
MCOS->EmitULEB128IntValue(2);
|
|
|
|
|
|
|
|
// AT_name, of the label without any leading underbar.
|
|
|
|
MCOS->EmitBytes(Entry->getName(), 0);
|
|
|
|
MCOS->EmitIntValue(0, 1); // NULL byte to terminate the string.
|
|
|
|
|
|
|
|
// AT_decl_file, index into the file table.
|
|
|
|
MCOS->EmitIntValue(Entry->getFileNumber(), 4);
|
|
|
|
|
|
|
|
// AT_decl_line, source line number.
|
|
|
|
MCOS->EmitIntValue(Entry->getLineNumber(), 4);
|
|
|
|
|
|
|
|
// AT_low_pc, start address of the label.
|
|
|
|
const MCExpr *AT_low_pc = MCSymbolRefExpr::Create(Entry->getLabel(),
|
|
|
|
MCSymbolRefExpr::VK_None, context);
|
|
|
|
MCOS->EmitAbsValue(AT_low_pc, AddrSize);
|
|
|
|
|
|
|
|
// AT_high_pc, end address which is the next label or end of the section.
|
|
|
|
std::vector<const MCGenDwarfSubprogramEntry *>::const_iterator next = it+1;
|
|
|
|
if (next != Entries.end()){
|
|
|
|
const MCGenDwarfSubprogramEntry *NextEntry = *next;
|
|
|
|
const MCExpr *AT_high_pc = MCSymbolRefExpr::Create(NextEntry->getLabel(),
|
|
|
|
MCSymbolRefExpr::VK_None, context);
|
|
|
|
MCOS->EmitAbsValue(AT_high_pc, AddrSize);
|
|
|
|
} else {
|
|
|
|
MCOS->EmitAbsValue(End, AddrSize);
|
|
|
|
}
|
|
|
|
|
|
|
|
// DW_AT_prototyped, a one byte flag value of 0 saying we have no prototype.
|
|
|
|
MCOS->EmitIntValue(0, 1);
|
|
|
|
|
|
|
|
// The DW_TAG_unspecified_parameters DIE abbrev (3).
|
|
|
|
MCOS->EmitULEB128IntValue(3);
|
|
|
|
|
|
|
|
// Add the NULL DIE terminating the DW_TAG_unspecified_parameters DIE's.
|
|
|
|
MCOS->EmitIntValue(0, 1);
|
|
|
|
}
|
|
|
|
// Deallocate the MCGenDwarfSubprogramEntry classes that saved away the info
|
|
|
|
// for the dwarf subprograms.
|
|
|
|
for (std::vector<const MCGenDwarfSubprogramEntry *>::const_iterator it =
|
|
|
|
Entries.begin(), ie = Entries.end(); it != ie;
|
|
|
|
++it) {
|
|
|
|
const MCGenDwarfSubprogramEntry *Entry = *it;
|
|
|
|
delete Entry;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add the NULL DIE terminating the Compile Unit DIE's.
|
|
|
|
MCOS->EmitIntValue(0, 1);
|
|
|
|
|
|
|
|
// Now set the value of the symbol at the end of the info section.
|
|
|
|
MCOS->EmitLabel(InfoEnd);
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// When generating dwarf for assembly source files this emits the Dwarf
|
|
|
|
// sections.
|
|
|
|
//
|
|
|
|
void MCGenDwarfInfo::Emit(MCStreamer *MCOS) {
|
|
|
|
// Create the dwarf sections in this order (.debug_line already created).
|
|
|
|
MCContext &context = MCOS->getContext();
|
|
|
|
MCOS->SwitchSection(context.getObjectFileInfo()->getDwarfInfoSection());
|
|
|
|
MCOS->SwitchSection(context.getObjectFileInfo()->getDwarfAbbrevSection());
|
|
|
|
MCOS->SwitchSection(context.getObjectFileInfo()->getDwarfARangesSection());
|
|
|
|
|
|
|
|
// If there are no line table entries then do not emit any section contents.
|
|
|
|
if (context.getMCLineSections().empty())
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Output the data for .debug_aranges section.
|
|
|
|
EmitGenDwarfAranges(MCOS);
|
|
|
|
|
|
|
|
// Output the data for .debug_abbrev section.
|
|
|
|
EmitGenDwarfAbbrev(MCOS);
|
|
|
|
|
|
|
|
// Output the data for .debug_info section.
|
|
|
|
EmitGenDwarfInfo(MCOS);
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// When generating dwarf for assembly source files this is called when symbol
|
|
|
|
// for a label is created. If this symbol is not a temporary and is in the
|
|
|
|
// section that dwarf is being generated for, save the needed info to create
|
|
|
|
// a dwarf subprogram.
|
|
|
|
//
|
|
|
|
void MCGenDwarfSubprogramEntry::Make(MCSymbol *Symbol, MCStreamer *MCOS,
|
|
|
|
SourceMgr &SrcMgr, SMLoc &Loc) {
|
|
|
|
// We won't create dwarf subprogram's for temporary symbols or symbols not in
|
|
|
|
// the default text.
|
|
|
|
if (Symbol->isTemporary())
|
|
|
|
return;
|
|
|
|
MCContext &context = MCOS->getContext();
|
|
|
|
if (context.getGenDwarfSection() != MCOS->getCurrentSection())
|
|
|
|
return;
|
|
|
|
|
|
|
|
// The dwarf subprogram's name does not have the symbol name's leading
|
|
|
|
// underbar if any.
|
|
|
|
StringRef Name = Symbol->getName();
|
|
|
|
if (Name.startswith("_"))
|
|
|
|
Name = Name.substr(1, Name.size()-1);
|
|
|
|
|
|
|
|
// Get the dwarf file number to be used for the dwarf subprogram.
|
|
|
|
unsigned FileNumber = context.getGenDwarfFileNumber();
|
|
|
|
|
|
|
|
// Finding the line number is the expensive part which is why we just don't
|
|
|
|
// pass it in as for some symbols we won't create a dwarf subprogram.
|
|
|
|
int CurBuffer = SrcMgr.FindBufferContainingLoc(Loc);
|
|
|
|
unsigned LineNumber = SrcMgr.FindLineNumber(Loc, CurBuffer);
|
|
|
|
|
|
|
|
// We create a temporary symbol for use for the AT_high_pc and AT_low_pc
|
|
|
|
// values so that they don't have things like an ARM thumb bit from the
|
|
|
|
// original symbol. So when used they won't get a low bit set after
|
|
|
|
// relocation.
|
|
|
|
MCSymbol *Label = context.CreateTempSymbol();
|
|
|
|
MCOS->EmitLabel(Label);
|
|
|
|
|
|
|
|
// Create and entry for the info and add it to the other entries.
|
|
|
|
MCGenDwarfSubprogramEntry *Entry =
|
|
|
|
new MCGenDwarfSubprogramEntry(Name, FileNumber, LineNumber, Label);
|
|
|
|
MCOS->getContext().addMCGenDwarfSubprogramEntry(Entry);
|
|
|
|
}
|
|
|
|
|
2010-12-10 08:39:47 +01:00
|
|
|
static int getDataAlignmentFactor(MCStreamer &streamer) {
|
|
|
|
MCContext &context = streamer.getContext();
|
2011-07-15 04:09:41 +02:00
|
|
|
const MCAsmInfo &asmInfo = context.getAsmInfo();
|
2010-12-10 08:39:47 +01:00
|
|
|
int size = asmInfo.getPointerSize();
|
2011-07-15 04:09:41 +02:00
|
|
|
if (asmInfo.isStackGrowthDirectionUp())
|
2010-12-10 08:39:47 +01:00
|
|
|
return size;
|
2011-07-15 04:09:41 +02:00
|
|
|
else
|
|
|
|
return -size;
|
2010-12-10 08:39:47 +01:00
|
|
|
}
|
|
|
|
|
2011-04-22 02:08:43 +02:00
|
|
|
static unsigned getSizeForEncoding(MCStreamer &streamer,
|
|
|
|
unsigned symbolEncoding) {
|
2011-04-12 18:12:03 +02:00
|
|
|
MCContext &context = streamer.getContext();
|
|
|
|
unsigned format = symbolEncoding & 0x0f;
|
|
|
|
switch (format) {
|
|
|
|
default:
|
|
|
|
assert(0 && "Unknown Encoding");
|
|
|
|
case dwarf::DW_EH_PE_absptr:
|
|
|
|
case dwarf::DW_EH_PE_signed:
|
2011-07-15 04:09:41 +02:00
|
|
|
return context.getAsmInfo().getPointerSize();
|
2011-04-12 18:12:03 +02:00
|
|
|
case dwarf::DW_EH_PE_udata2:
|
|
|
|
case dwarf::DW_EH_PE_sdata2:
|
2011-04-22 02:08:43 +02:00
|
|
|
return 2;
|
2011-04-12 18:12:03 +02:00
|
|
|
case dwarf::DW_EH_PE_udata4:
|
|
|
|
case dwarf::DW_EH_PE_sdata4:
|
2011-04-22 02:08:43 +02:00
|
|
|
return 4;
|
2011-04-12 18:12:03 +02:00
|
|
|
case dwarf::DW_EH_PE_udata8:
|
|
|
|
case dwarf::DW_EH_PE_sdata8:
|
2011-04-22 02:08:43 +02:00
|
|
|
return 8;
|
2011-04-12 18:12:03 +02:00
|
|
|
}
|
2011-04-22 02:08:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void EmitSymbol(MCStreamer &streamer, const MCSymbol &symbol,
|
2011-07-01 00:02:20 +02:00
|
|
|
unsigned symbolEncoding, const char *comment = 0) {
|
2011-04-28 23:04:39 +02:00
|
|
|
MCContext &context = streamer.getContext();
|
|
|
|
const MCAsmInfo &asmInfo = context.getAsmInfo();
|
|
|
|
const MCExpr *v = asmInfo.getExprForFDESymbol(&symbol,
|
2011-05-01 05:50:49 +02:00
|
|
|
symbolEncoding,
|
2011-04-28 23:04:39 +02:00
|
|
|
streamer);
|
2011-04-22 02:08:43 +02:00
|
|
|
unsigned size = getSizeForEncoding(streamer, symbolEncoding);
|
2011-07-01 00:02:20 +02:00
|
|
|
if (streamer.isVerboseAsm() && comment) streamer.AddComment(comment);
|
2011-05-01 05:50:49 +02:00
|
|
|
streamer.EmitAbsValue(v, size);
|
2011-04-12 18:12:03 +02:00
|
|
|
}
|
|
|
|
|
2011-04-28 18:09:09 +02:00
|
|
|
static void EmitPersonality(MCStreamer &streamer, const MCSymbol &symbol,
|
|
|
|
unsigned symbolEncoding) {
|
|
|
|
MCContext &context = streamer.getContext();
|
|
|
|
const MCAsmInfo &asmInfo = context.getAsmInfo();
|
2011-05-01 05:50:49 +02:00
|
|
|
const MCExpr *v = asmInfo.getExprForPersonalitySymbol(&symbol,
|
|
|
|
symbolEncoding,
|
|
|
|
streamer);
|
2011-04-28 18:09:09 +02:00
|
|
|
unsigned size = getSizeForEncoding(streamer, symbolEncoding);
|
2011-05-01 05:50:49 +02:00
|
|
|
streamer.EmitValue(v, size);
|
2011-04-28 18:09:09 +02:00
|
|
|
}
|
|
|
|
|
2011-04-12 18:12:03 +02:00
|
|
|
static const MachineLocation TranslateMachineLocation(
|
2011-07-18 22:57:22 +02:00
|
|
|
const MCRegisterInfo &MRI,
|
2011-04-12 18:12:03 +02:00
|
|
|
const MachineLocation &Loc) {
|
|
|
|
unsigned Reg = Loc.getReg() == MachineLocation::VirtualFP ?
|
|
|
|
MachineLocation::VirtualFP :
|
2011-07-18 22:57:22 +02:00
|
|
|
unsigned(MRI.getDwarfRegNum(Loc.getReg(), true));
|
2011-04-12 18:12:03 +02:00
|
|
|
const MachineLocation &NewLoc = Loc.isReg() ?
|
|
|
|
MachineLocation(Reg) : MachineLocation(Reg, Loc.getOffset());
|
|
|
|
return NewLoc;
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
class FrameEmitterImpl {
|
|
|
|
int CFAOffset;
|
2011-04-28 05:26:11 +02:00
|
|
|
int CIENum;
|
2011-05-01 06:49:54 +02:00
|
|
|
bool UsingCFI;
|
2011-05-10 05:54:12 +02:00
|
|
|
bool IsEH;
|
2011-05-10 22:59:42 +02:00
|
|
|
const MCSymbol *SectionStart;
|
2011-04-12 18:12:03 +02:00
|
|
|
public:
|
2011-07-22 23:18:59 +02:00
|
|
|
FrameEmitterImpl(bool usingCFI, bool isEH)
|
|
|
|
: CFAOffset(0), CIENum(0), UsingCFI(usingCFI), IsEH(isEH),
|
|
|
|
SectionStart(0) {}
|
|
|
|
|
|
|
|
void setSectionStart(const MCSymbol *Label) { SectionStart = Label; }
|
2011-04-12 18:12:03 +02:00
|
|
|
|
2011-06-23 03:06:23 +02:00
|
|
|
/// EmitCompactUnwind - Emit the unwind information in a compact way. If
|
|
|
|
/// we're successful, return 'true'. Otherwise, return 'false' and it will
|
|
|
|
/// emit the normal CIE and FDE.
|
|
|
|
bool EmitCompactUnwind(MCStreamer &streamer,
|
|
|
|
const MCDwarfFrameInfo &frame);
|
|
|
|
|
2011-04-12 18:12:03 +02:00
|
|
|
const MCSymbol &EmitCIE(MCStreamer &streamer,
|
|
|
|
const MCSymbol *personality,
|
|
|
|
unsigned personalityEncoding,
|
|
|
|
const MCSymbol *lsda,
|
|
|
|
unsigned lsdaEncoding);
|
|
|
|
MCSymbol *EmitFDE(MCStreamer &streamer,
|
|
|
|
const MCSymbol &cieStart,
|
2011-05-10 05:01:39 +02:00
|
|
|
const MCDwarfFrameInfo &frame);
|
2011-04-12 18:12:03 +02:00
|
|
|
void EmitCFIInstructions(MCStreamer &streamer,
|
|
|
|
const std::vector<MCCFIInstruction> &Instrs,
|
|
|
|
MCSymbol *BaseLabel);
|
|
|
|
void EmitCFIInstruction(MCStreamer &Streamer,
|
|
|
|
const MCCFIInstruction &Instr);
|
|
|
|
};
|
2011-06-30 23:25:51 +02:00
|
|
|
|
|
|
|
} // end anonymous namespace
|
|
|
|
|
|
|
|
static void EmitEncodingByte(MCStreamer &Streamer, unsigned Encoding,
|
|
|
|
StringRef Prefix) {
|
|
|
|
if (Streamer.isVerboseAsm()) {
|
|
|
|
const char *EncStr = 0;
|
|
|
|
switch (Encoding) {
|
|
|
|
default: EncStr = "<unknown encoding>";
|
|
|
|
case dwarf::DW_EH_PE_absptr: EncStr = "absptr";
|
|
|
|
case dwarf::DW_EH_PE_omit: EncStr = "omit";
|
|
|
|
case dwarf::DW_EH_PE_pcrel: EncStr = "pcrel";
|
|
|
|
case dwarf::DW_EH_PE_udata4: EncStr = "udata4";
|
|
|
|
case dwarf::DW_EH_PE_udata8: EncStr = "udata8";
|
|
|
|
case dwarf::DW_EH_PE_sdata4: EncStr = "sdata4";
|
|
|
|
case dwarf::DW_EH_PE_sdata8: EncStr = "sdata8";
|
|
|
|
case dwarf::DW_EH_PE_pcrel |dwarf::DW_EH_PE_udata4: EncStr = "pcrel udata4";
|
|
|
|
case dwarf::DW_EH_PE_pcrel |dwarf::DW_EH_PE_sdata4: EncStr = "pcrel sdata4";
|
|
|
|
case dwarf::DW_EH_PE_pcrel |dwarf::DW_EH_PE_udata8: EncStr = "pcrel udata8";
|
|
|
|
case dwarf::DW_EH_PE_pcrel |dwarf::DW_EH_PE_sdata8: EncStr = "pcrel sdata8";
|
|
|
|
case dwarf::DW_EH_PE_indirect |dwarf::DW_EH_PE_pcrel|dwarf::DW_EH_PE_udata4:
|
|
|
|
EncStr = "indirect pcrel udata4";
|
|
|
|
case dwarf::DW_EH_PE_indirect |dwarf::DW_EH_PE_pcrel|dwarf::DW_EH_PE_sdata4:
|
|
|
|
EncStr = "indirect pcrel sdata4";
|
|
|
|
case dwarf::DW_EH_PE_indirect |dwarf::DW_EH_PE_pcrel|dwarf::DW_EH_PE_udata8:
|
|
|
|
EncStr = "indirect pcrel udata8";
|
|
|
|
case dwarf::DW_EH_PE_indirect |dwarf::DW_EH_PE_pcrel|dwarf::DW_EH_PE_sdata8:
|
|
|
|
EncStr = "indirect pcrel sdata8";
|
|
|
|
}
|
|
|
|
|
|
|
|
Streamer.AddComment(Twine(Prefix) + " = " + EncStr);
|
|
|
|
}
|
|
|
|
|
|
|
|
Streamer.EmitIntValue(Encoding, 1);
|
2011-04-12 18:12:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void FrameEmitterImpl::EmitCFIInstruction(MCStreamer &Streamer,
|
|
|
|
const MCCFIInstruction &Instr) {
|
2010-12-28 19:36:23 +01:00
|
|
|
int dataAlignmentFactor = getDataAlignmentFactor(Streamer);
|
2011-06-30 23:45:12 +02:00
|
|
|
bool VerboseAsm = Streamer.isVerboseAsm();
|
2010-12-10 08:39:47 +01:00
|
|
|
|
2010-12-28 19:36:23 +01:00
|
|
|
switch (Instr.getOperation()) {
|
2011-04-12 18:12:03 +02:00
|
|
|
case MCCFIInstruction::Move:
|
|
|
|
case MCCFIInstruction::RelMove: {
|
2010-12-28 19:36:23 +01:00
|
|
|
const MachineLocation &Dst = Instr.getDestination();
|
|
|
|
const MachineLocation &Src = Instr.getSource();
|
2011-04-12 20:53:30 +02:00
|
|
|
const bool IsRelative = Instr.getOperation() == MCCFIInstruction::RelMove;
|
2010-12-10 08:39:47 +01:00
|
|
|
|
|
|
|
// If advancing cfa.
|
|
|
|
if (Dst.isReg() && Dst.getReg() == MachineLocation::VirtualFP) {
|
|
|
|
if (Src.getReg() == MachineLocation::VirtualFP) {
|
2011-06-30 23:45:12 +02:00
|
|
|
if (VerboseAsm) Streamer.AddComment("DW_CFA_def_cfa_offset");
|
2010-12-28 19:36:23 +01:00
|
|
|
Streamer.EmitIntValue(dwarf::DW_CFA_def_cfa_offset, 1);
|
2010-12-10 08:39:47 +01:00
|
|
|
} else {
|
2011-06-30 23:45:12 +02:00
|
|
|
if (VerboseAsm) Streamer.AddComment("DW_CFA_def_cfa");
|
2010-12-28 19:36:23 +01:00
|
|
|
Streamer.EmitIntValue(dwarf::DW_CFA_def_cfa, 1);
|
2011-06-30 23:45:12 +02:00
|
|
|
if (VerboseAsm) Streamer.AddComment(Twine("Reg ") +
|
|
|
|
Twine(Src.getReg()));
|
2010-12-29 02:42:56 +01:00
|
|
|
Streamer.EmitULEB128IntValue(Src.getReg());
|
2010-12-10 08:39:47 +01:00
|
|
|
}
|
|
|
|
|
2011-04-12 20:53:30 +02:00
|
|
|
if (IsRelative)
|
|
|
|
CFAOffset += Src.getOffset();
|
|
|
|
else
|
|
|
|
CFAOffset = -Src.getOffset();
|
|
|
|
|
2011-06-30 23:45:12 +02:00
|
|
|
if (VerboseAsm) Streamer.AddComment(Twine("Offset " + Twine(CFAOffset)));
|
2011-04-22 01:39:26 +02:00
|
|
|
Streamer.EmitULEB128IntValue(CFAOffset);
|
2010-12-28 19:36:23 +01:00
|
|
|
return;
|
2010-12-10 08:39:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (Src.isReg() && Src.getReg() == MachineLocation::VirtualFP) {
|
|
|
|
assert(Dst.isReg() && "Machine move not supported yet.");
|
2011-06-30 23:45:12 +02:00
|
|
|
if (VerboseAsm) Streamer.AddComment("DW_CFA_def_cfa_register");
|
2010-12-28 19:36:23 +01:00
|
|
|
Streamer.EmitIntValue(dwarf::DW_CFA_def_cfa_register, 1);
|
2011-06-30 23:45:12 +02:00
|
|
|
if (VerboseAsm) Streamer.AddComment(Twine("Reg ") + Twine(Dst.getReg()));
|
2010-12-29 02:42:56 +01:00
|
|
|
Streamer.EmitULEB128IntValue(Dst.getReg());
|
2010-12-28 19:36:23 +01:00
|
|
|
return;
|
2010-12-10 08:39:47 +01:00
|
|
|
}
|
|
|
|
|
2010-12-29 02:42:56 +01:00
|
|
|
unsigned Reg = Src.getReg();
|
2011-04-12 18:12:03 +02:00
|
|
|
int Offset = Dst.getOffset();
|
|
|
|
if (IsRelative)
|
|
|
|
Offset -= CFAOffset;
|
|
|
|
Offset = Offset / dataAlignmentFactor;
|
2010-12-10 08:39:47 +01:00
|
|
|
|
|
|
|
if (Offset < 0) {
|
2011-06-30 23:45:12 +02:00
|
|
|
if (VerboseAsm) Streamer.AddComment("DW_CFA_offset_extended_sf");
|
2010-12-28 19:36:23 +01:00
|
|
|
Streamer.EmitIntValue(dwarf::DW_CFA_offset_extended_sf, 1);
|
2011-06-30 23:45:12 +02:00
|
|
|
if (VerboseAsm) Streamer.AddComment(Twine("Reg ") + Twine(Reg));
|
2010-12-28 19:36:23 +01:00
|
|
|
Streamer.EmitULEB128IntValue(Reg);
|
2011-06-30 23:45:12 +02:00
|
|
|
if (VerboseAsm) Streamer.AddComment(Twine("Offset ") + Twine(Offset));
|
2010-12-28 19:36:23 +01:00
|
|
|
Streamer.EmitSLEB128IntValue(Offset);
|
2010-12-10 08:39:47 +01:00
|
|
|
} else if (Reg < 64) {
|
2011-07-01 01:47:40 +02:00
|
|
|
if (VerboseAsm) Streamer.AddComment(Twine("DW_CFA_offset + Reg(") +
|
|
|
|
Twine(Reg) + ")");
|
2010-12-28 19:36:23 +01:00
|
|
|
Streamer.EmitIntValue(dwarf::DW_CFA_offset + Reg, 1);
|
2011-06-30 23:45:12 +02:00
|
|
|
if (VerboseAsm) Streamer.AddComment(Twine("Offset ") + Twine(Offset));
|
2011-04-22 01:26:40 +02:00
|
|
|
Streamer.EmitULEB128IntValue(Offset);
|
2010-12-10 08:39:47 +01:00
|
|
|
} else {
|
2011-06-30 23:45:12 +02:00
|
|
|
if (VerboseAsm) Streamer.AddComment("DW_CFA_offset_extended");
|
2010-12-28 19:36:23 +01:00
|
|
|
Streamer.EmitIntValue(dwarf::DW_CFA_offset_extended, 1);
|
2011-06-30 23:45:12 +02:00
|
|
|
if (VerboseAsm) Streamer.AddComment(Twine("Reg ") + Twine(Reg));
|
2011-04-22 01:26:40 +02:00
|
|
|
Streamer.EmitULEB128IntValue(Reg);
|
2011-06-30 23:45:12 +02:00
|
|
|
if (VerboseAsm) Streamer.AddComment(Twine("Offset ") + Twine(Offset));
|
2011-04-22 01:26:40 +02:00
|
|
|
Streamer.EmitULEB128IntValue(Offset);
|
2010-12-28 19:36:23 +01:00
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
2011-12-29 22:09:08 +01:00
|
|
|
case MCCFIInstruction::RememberState:
|
2011-06-30 23:45:12 +02:00
|
|
|
if (VerboseAsm) Streamer.AddComment("DW_CFA_remember_state");
|
2010-12-28 19:36:23 +01:00
|
|
|
Streamer.EmitIntValue(dwarf::DW_CFA_remember_state, 1);
|
|
|
|
return;
|
2011-12-29 22:09:08 +01:00
|
|
|
case MCCFIInstruction::RestoreState:
|
2011-06-30 23:45:12 +02:00
|
|
|
if (VerboseAsm) Streamer.AddComment("DW_CFA_restore_state");
|
2010-12-28 19:36:23 +01:00
|
|
|
Streamer.EmitIntValue(dwarf::DW_CFA_restore_state, 1);
|
|
|
|
return;
|
2011-04-12 17:31:05 +02:00
|
|
|
case MCCFIInstruction::SameValue: {
|
|
|
|
unsigned Reg = Instr.getDestination().getReg();
|
2011-06-30 23:45:12 +02:00
|
|
|
if (VerboseAsm) Streamer.AddComment("DW_CFA_same_value");
|
2011-04-12 17:31:05 +02:00
|
|
|
Streamer.EmitIntValue(dwarf::DW_CFA_same_value, 1);
|
2011-06-30 23:45:12 +02:00
|
|
|
if (VerboseAsm) Streamer.AddComment(Twine("Reg ") + Twine(Reg));
|
2011-04-22 01:39:26 +02:00
|
|
|
Streamer.EmitULEB128IntValue(Reg);
|
2011-04-12 17:31:05 +02:00
|
|
|
return;
|
|
|
|
}
|
2011-12-29 22:43:03 +01:00
|
|
|
case MCCFIInstruction::Restore: {
|
|
|
|
unsigned Reg = Instr.getDestination().getReg();
|
|
|
|
if (VerboseAsm) {
|
|
|
|
Streamer.AddComment("DW_CFA_restore");
|
|
|
|
Streamer.AddComment(Twine("Reg ") + Twine(Reg));
|
|
|
|
}
|
|
|
|
Streamer.EmitIntValue(dwarf::DW_CFA_restore | Reg, 1);
|
|
|
|
return;
|
|
|
|
}
|
2011-12-29 21:24:47 +01:00
|
|
|
case MCCFIInstruction::Escape:
|
|
|
|
if (VerboseAsm) Streamer.AddComment("Escape bytes");
|
|
|
|
Streamer.EmitBytes(Instr.getValues(), 0);
|
|
|
|
return;
|
2010-12-28 19:36:23 +01:00
|
|
|
}
|
|
|
|
llvm_unreachable("Unhandled case in switch");
|
|
|
|
}
|
|
|
|
|
|
|
|
/// EmitFrameMoves - Emit frame instructions to describe the layout of the
|
|
|
|
/// frame.
|
2011-04-12 18:12:03 +02:00
|
|
|
void FrameEmitterImpl::EmitCFIInstructions(MCStreamer &streamer,
|
|
|
|
const std::vector<MCCFIInstruction> &Instrs,
|
|
|
|
MCSymbol *BaseLabel) {
|
2010-12-28 19:36:23 +01:00
|
|
|
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) {
|
2011-07-01 00:35:49 +02:00
|
|
|
if (streamer.isVerboseAsm()) streamer.AddComment("DW_CFA_advance_loc4");
|
2010-12-28 19:36:23 +01:00
|
|
|
streamer.EmitDwarfAdvanceFrameAddr(BaseLabel, ThisSym);
|
|
|
|
BaseLabel = ThisSym;
|
|
|
|
}
|
2010-12-10 08:39:47 +01:00
|
|
|
}
|
2010-12-28 19:36:23 +01:00
|
|
|
|
2010-12-29 02:42:56 +01:00
|
|
|
EmitCFIInstruction(streamer, Instr);
|
2010-12-10 08:39:47 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-06-23 03:06:23 +02:00
|
|
|
/// EmitCompactUnwind - Emit the unwind information in a compact way. If we're
|
|
|
|
/// successful, return 'true'. Otherwise, return 'false' and it will emit the
|
|
|
|
/// normal CIE and FDE.
|
|
|
|
bool FrameEmitterImpl::EmitCompactUnwind(MCStreamer &Streamer,
|
|
|
|
const MCDwarfFrameInfo &Frame) {
|
|
|
|
MCContext &Context = Streamer.getContext();
|
2011-07-20 07:58:47 +02:00
|
|
|
const MCObjectFileInfo *MOFI = Context.getObjectFileInfo();
|
2011-06-30 23:25:51 +02:00
|
|
|
bool VerboseAsm = Streamer.isVerboseAsm();
|
2011-06-23 03:06:23 +02:00
|
|
|
|
|
|
|
// range-start range-length compact-unwind-enc personality-func lsda
|
|
|
|
// _foo LfooEnd-_foo 0x00000023 0 0
|
|
|
|
// _bar LbarEnd-_bar 0x00000025 __gxx_personality except_tab1
|
|
|
|
//
|
|
|
|
// .section __LD,__compact_unwind,regular,debug
|
|
|
|
//
|
|
|
|
// # compact unwind for _foo
|
|
|
|
// .quad _foo
|
|
|
|
// .set L1,LfooEnd-_foo
|
|
|
|
// .long L1
|
|
|
|
// .long 0x01010001
|
|
|
|
// .quad 0
|
|
|
|
// .quad 0
|
|
|
|
//
|
|
|
|
// # compact unwind for _bar
|
|
|
|
// .quad _bar
|
|
|
|
// .set L2,LbarEnd-_bar
|
|
|
|
// .long L2
|
|
|
|
// .long 0x01020011
|
|
|
|
// .quad __gxx_personality
|
|
|
|
// .quad except_tab1
|
|
|
|
|
2011-07-19 02:06:12 +02:00
|
|
|
uint32_t Encoding = Frame.CompactUnwindEncoding;
|
2011-07-07 02:54:13 +02:00
|
|
|
if (!Encoding) return false;
|
|
|
|
|
2011-07-15 01:34:45 +02:00
|
|
|
// The encoding needs to know we have an LSDA.
|
|
|
|
if (Frame.Lsda)
|
|
|
|
Encoding |= 0x40000000;
|
|
|
|
|
2011-07-20 07:58:47 +02:00
|
|
|
Streamer.SwitchSection(MOFI->getCompactUnwindSection());
|
2011-06-30 23:25:51 +02:00
|
|
|
|
2011-06-23 03:06:23 +02:00
|
|
|
// Range Start
|
2011-07-20 21:50:42 +02:00
|
|
|
unsigned FDEEncoding = MOFI->getFDEEncoding(UsingCFI);
|
2011-06-30 01:49:12 +02:00
|
|
|
unsigned Size = getSizeForEncoding(Streamer, FDEEncoding);
|
2011-06-30 23:25:51 +02:00
|
|
|
if (VerboseAsm) Streamer.AddComment("Range Start");
|
2011-06-30 01:49:12 +02:00
|
|
|
Streamer.EmitSymbolValue(Frame.Function, Size);
|
2011-06-23 03:06:23 +02:00
|
|
|
|
|
|
|
// Range Length
|
|
|
|
const MCExpr *Range = MakeStartMinusEndExpr(Streamer, *Frame.Begin,
|
|
|
|
*Frame.End, 0);
|
2011-06-30 23:25:51 +02:00
|
|
|
if (VerboseAsm) Streamer.AddComment("Range Length");
|
2011-06-30 02:30:52 +02:00
|
|
|
Streamer.EmitAbsValue(Range, 4);
|
|
|
|
|
|
|
|
// Compact Encoding
|
|
|
|
Size = getSizeForEncoding(Streamer, dwarf::DW_EH_PE_udata4);
|
2011-11-07 22:00:59 +01:00
|
|
|
if (VerboseAsm) Streamer.AddComment("Compact Unwind Encoding: 0x" +
|
|
|
|
Twine::utohexstr(Encoding));
|
2011-06-30 02:30:52 +02:00
|
|
|
Streamer.EmitIntValue(Encoding, Size);
|
|
|
|
|
2011-07-19 02:06:12 +02:00
|
|
|
|
2011-06-30 01:49:12 +02:00
|
|
|
// Personality Function
|
2011-07-15 01:34:45 +02:00
|
|
|
Size = getSizeForEncoding(Streamer, dwarf::DW_EH_PE_absptr);
|
2011-06-30 23:25:51 +02:00
|
|
|
if (VerboseAsm) Streamer.AddComment("Personality Function");
|
2011-06-30 01:53:16 +02:00
|
|
|
if (Frame.Personality)
|
2011-06-30 01:49:12 +02:00
|
|
|
Streamer.EmitSymbolValue(Frame.Personality, Size);
|
2011-06-30 01:53:16 +02:00
|
|
|
else
|
|
|
|
Streamer.EmitIntValue(0, Size); // No personality fn
|
2011-06-30 01:49:12 +02:00
|
|
|
|
|
|
|
// LSDA
|
2011-06-30 01:53:16 +02:00
|
|
|
Size = getSizeForEncoding(Streamer, Frame.LsdaEncoding);
|
2011-06-30 23:25:51 +02:00
|
|
|
if (VerboseAsm) Streamer.AddComment("LSDA");
|
2011-06-30 01:53:16 +02:00
|
|
|
if (Frame.Lsda)
|
2011-06-30 01:49:12 +02:00
|
|
|
Streamer.EmitSymbolValue(Frame.Lsda, Size);
|
2011-06-30 01:53:16 +02:00
|
|
|
else
|
|
|
|
Streamer.EmitIntValue(0, Size); // No LSDA
|
2011-06-30 01:49:12 +02:00
|
|
|
|
2011-06-23 03:06:23 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2011-04-12 18:12:03 +02:00
|
|
|
const MCSymbol &FrameEmitterImpl::EmitCIE(MCStreamer &streamer,
|
|
|
|
const MCSymbol *personality,
|
|
|
|
unsigned personalityEncoding,
|
|
|
|
const MCSymbol *lsda,
|
|
|
|
unsigned lsdaEncoding) {
|
2010-12-10 08:39:47 +01:00
|
|
|
MCContext &context = streamer.getContext();
|
2011-07-18 22:57:22 +02:00
|
|
|
const MCRegisterInfo &MRI = context.getRegisterInfo();
|
2011-07-20 07:58:47 +02:00
|
|
|
const MCObjectFileInfo *MOFI = context.getObjectFileInfo();
|
2011-06-30 23:25:51 +02:00
|
|
|
bool verboseAsm = streamer.isVerboseAsm();
|
2011-04-28 05:26:11 +02:00
|
|
|
|
|
|
|
MCSymbol *sectionStart;
|
2011-07-20 07:58:47 +02:00
|
|
|
if (MOFI->isFunctionEHFrameSymbolPrivate() || !IsEH)
|
2011-04-28 05:26:11 +02:00
|
|
|
sectionStart = context.CreateTempSymbol();
|
|
|
|
else
|
|
|
|
sectionStart = context.GetOrCreateSymbol(Twine("EH_frame") + Twine(CIENum));
|
|
|
|
|
2011-06-30 23:25:51 +02:00
|
|
|
streamer.EmitLabel(sectionStart);
|
2011-04-28 05:26:11 +02:00
|
|
|
CIENum++;
|
|
|
|
|
2011-07-07 02:54:13 +02:00
|
|
|
MCSymbol *sectionEnd = context.CreateTempSymbol();
|
2010-12-10 08:39:47 +01:00
|
|
|
|
|
|
|
// Length
|
|
|
|
const MCExpr *Length = MakeStartMinusEndExpr(streamer, *sectionStart,
|
|
|
|
*sectionEnd, 4);
|
2011-06-30 23:25:51 +02:00
|
|
|
if (verboseAsm) streamer.AddComment("CIE Length");
|
2011-04-27 03:43:49 +02:00
|
|
|
streamer.EmitAbsValue(Length, 4);
|
2010-12-10 08:39:47 +01:00
|
|
|
|
|
|
|
// CIE ID
|
2011-05-10 05:54:12 +02:00
|
|
|
unsigned CIE_ID = IsEH ? 0 : -1;
|
2011-06-30 23:25:51 +02:00
|
|
|
if (verboseAsm) streamer.AddComment("CIE ID Tag");
|
2011-05-10 05:54:12 +02:00
|
|
|
streamer.EmitIntValue(CIE_ID, 4);
|
2010-12-10 08:39:47 +01:00
|
|
|
|
|
|
|
// Version
|
2011-06-30 23:25:51 +02:00
|
|
|
if (verboseAsm) streamer.AddComment("DW_CIE_VERSION");
|
2010-12-10 08:39:47 +01:00
|
|
|
streamer.EmitIntValue(dwarf::DW_CIE_VERSION, 1);
|
|
|
|
|
|
|
|
// Augmentation String
|
|
|
|
SmallString<8> Augmentation;
|
2011-05-10 05:54:12 +02:00
|
|
|
if (IsEH) {
|
2011-06-30 23:25:51 +02:00
|
|
|
if (verboseAsm) streamer.AddComment("CIE Augmentation");
|
2011-05-10 05:54:12 +02:00
|
|
|
Augmentation += "z";
|
|
|
|
if (personality)
|
|
|
|
Augmentation += "P";
|
|
|
|
if (lsda)
|
|
|
|
Augmentation += "L";
|
|
|
|
Augmentation += "R";
|
|
|
|
streamer.EmitBytes(Augmentation.str(), 0);
|
|
|
|
}
|
2010-12-10 08:39:47 +01:00
|
|
|
streamer.EmitIntValue(0, 1);
|
|
|
|
|
|
|
|
// Code Alignment Factor
|
2011-06-30 23:25:51 +02:00
|
|
|
if (verboseAsm) streamer.AddComment("CIE Code Alignment Factor");
|
2010-12-10 08:39:47 +01:00
|
|
|
streamer.EmitULEB128IntValue(1);
|
|
|
|
|
|
|
|
// Data Alignment Factor
|
2011-06-30 23:25:51 +02:00
|
|
|
if (verboseAsm) streamer.AddComment("CIE Data Alignment Factor");
|
2010-12-10 08:39:47 +01:00
|
|
|
streamer.EmitSLEB128IntValue(getDataAlignmentFactor(streamer));
|
|
|
|
|
|
|
|
// Return Address Register
|
2011-06-30 23:25:51 +02:00
|
|
|
if (verboseAsm) streamer.AddComment("CIE Return Address Column");
|
2011-07-18 22:57:22 +02:00
|
|
|
streamer.EmitULEB128IntValue(MRI.getDwarfRegNum(MRI.getRARegister(), true));
|
2010-12-10 08:39:47 +01:00
|
|
|
|
|
|
|
// Augmentation Data Length (optional)
|
2011-04-29 23:50:57 +02:00
|
|
|
|
|
|
|
unsigned augmentationLength = 0;
|
2011-05-10 05:54:12 +02:00
|
|
|
if (IsEH) {
|
|
|
|
if (personality) {
|
|
|
|
// Personality Encoding
|
|
|
|
augmentationLength += 1;
|
|
|
|
// Personality
|
|
|
|
augmentationLength += getSizeForEncoding(streamer, personalityEncoding);
|
|
|
|
}
|
|
|
|
if (lsda)
|
|
|
|
augmentationLength += 1;
|
|
|
|
// Encoding of the FDE pointers
|
2011-04-29 23:50:57 +02:00
|
|
|
augmentationLength += 1;
|
|
|
|
|
2011-06-30 23:25:51 +02:00
|
|
|
if (verboseAsm) streamer.AddComment("Augmentation Size");
|
2011-05-10 05:54:12 +02:00
|
|
|
streamer.EmitULEB128IntValue(augmentationLength);
|
2010-12-10 08:39:47 +01:00
|
|
|
|
2011-05-10 05:54:12 +02:00
|
|
|
// Augmentation Data (optional)
|
|
|
|
if (personality) {
|
|
|
|
// Personality Encoding
|
2011-06-30 23:25:51 +02:00
|
|
|
EmitEncodingByte(streamer, personalityEncoding,
|
|
|
|
"Personality Encoding");
|
2011-05-10 05:54:12 +02:00
|
|
|
// Personality
|
2011-06-30 23:25:51 +02:00
|
|
|
if (verboseAsm) streamer.AddComment("Personality");
|
2011-05-10 05:54:12 +02:00
|
|
|
EmitPersonality(streamer, *personality, personalityEncoding);
|
|
|
|
}
|
2011-06-30 23:25:51 +02:00
|
|
|
|
2011-05-10 05:54:12 +02:00
|
|
|
if (lsda)
|
2011-06-30 23:25:51 +02:00
|
|
|
EmitEncodingByte(streamer, lsdaEncoding, "LSDA Encoding");
|
|
|
|
|
2011-05-10 05:54:12 +02:00
|
|
|
// Encoding of the FDE pointers
|
2011-07-20 21:50:42 +02:00
|
|
|
EmitEncodingByte(streamer, MOFI->getFDEEncoding(UsingCFI),
|
2011-06-30 23:25:51 +02:00
|
|
|
"FDE Encoding");
|
2010-12-27 16:56:22 +01:00
|
|
|
}
|
2010-12-10 08:39:47 +01:00
|
|
|
|
|
|
|
// Initial Instructions
|
|
|
|
|
2011-07-19 00:29:13 +02:00
|
|
|
const MCAsmInfo &MAI = context.getAsmInfo();
|
|
|
|
const std::vector<MachineMove> &Moves = MAI.getInitialFrameState();
|
2010-12-28 19:36:23 +01:00
|
|
|
std::vector<MCCFIInstruction> Instructions;
|
|
|
|
|
|
|
|
for (int i = 0, n = Moves.size(); i != n; ++i) {
|
2010-12-29 02:42:56 +01:00
|
|
|
MCSymbol *Label = Moves[i].getLabel();
|
|
|
|
const MachineLocation &Dst =
|
2011-07-18 22:57:22 +02:00
|
|
|
TranslateMachineLocation(MRI, Moves[i].getDestination());
|
2010-12-29 02:42:56 +01:00
|
|
|
const MachineLocation &Src =
|
2011-07-18 22:57:22 +02:00
|
|
|
TranslateMachineLocation(MRI, Moves[i].getSource());
|
2010-12-29 02:42:56 +01:00
|
|
|
MCCFIInstruction Inst(Label, Dst, Src);
|
2010-12-28 19:36:23 +01:00
|
|
|
Instructions.push_back(Inst);
|
|
|
|
}
|
2010-12-10 08:39:47 +01:00
|
|
|
|
2010-12-29 02:42:56 +01:00
|
|
|
EmitCFIInstructions(streamer, Instructions, NULL);
|
2010-12-10 08:39:47 +01:00
|
|
|
|
|
|
|
// Padding
|
2011-07-15 04:09:41 +02:00
|
|
|
streamer.EmitValueToAlignment(IsEH
|
|
|
|
? 4 : context.getAsmInfo().getPointerSize());
|
2010-12-10 08:39:47 +01:00
|
|
|
|
|
|
|
streamer.EmitLabel(sectionEnd);
|
|
|
|
return *sectionStart;
|
|
|
|
}
|
|
|
|
|
2011-04-12 18:12:03 +02:00
|
|
|
MCSymbol *FrameEmitterImpl::EmitFDE(MCStreamer &streamer,
|
|
|
|
const MCSymbol &cieStart,
|
2011-05-10 05:01:39 +02:00
|
|
|
const MCDwarfFrameInfo &frame) {
|
2010-12-27 16:56:22 +01:00
|
|
|
MCContext &context = streamer.getContext();
|
|
|
|
MCSymbol *fdeStart = context.CreateTempSymbol();
|
|
|
|
MCSymbol *fdeEnd = context.CreateTempSymbol();
|
2011-07-20 07:58:47 +02:00
|
|
|
const MCObjectFileInfo *MOFI = context.getObjectFileInfo();
|
2011-07-01 00:02:20 +02:00
|
|
|
bool verboseAsm = streamer.isVerboseAsm();
|
2010-12-10 08:39:47 +01:00
|
|
|
|
2011-08-25 00:31:37 +02:00
|
|
|
if (IsEH && frame.Function && !MOFI->isFunctionEHFrameSymbolPrivate()) {
|
2011-07-01 00:02:20 +02:00
|
|
|
MCSymbol *EHSym =
|
|
|
|
context.GetOrCreateSymbol(frame.Function->getName() + Twine(".eh"));
|
2011-04-28 14:50:37 +02:00
|
|
|
streamer.EmitEHSymAttributes(frame.Function, EHSym);
|
2011-04-28 04:46:42 +02:00
|
|
|
streamer.EmitLabel(EHSym);
|
|
|
|
}
|
|
|
|
|
2010-12-10 08:39:47 +01:00
|
|
|
// Length
|
|
|
|
const MCExpr *Length = MakeStartMinusEndExpr(streamer, *fdeStart, *fdeEnd, 0);
|
2011-07-01 00:02:20 +02:00
|
|
|
if (verboseAsm) streamer.AddComment("FDE Length");
|
2011-04-27 03:43:49 +02:00
|
|
|
streamer.EmitAbsValue(Length, 4);
|
2010-12-10 08:39:47 +01:00
|
|
|
|
|
|
|
streamer.EmitLabel(fdeStart);
|
2011-05-10 22:59:42 +02:00
|
|
|
|
2010-12-10 08:39:47 +01:00
|
|
|
// CIE Pointer
|
2011-05-10 22:59:42 +02:00
|
|
|
const MCAsmInfo &asmInfo = context.getAsmInfo();
|
2011-05-10 17:20:23 +02:00
|
|
|
if (IsEH) {
|
|
|
|
const MCExpr *offset = MakeStartMinusEndExpr(streamer, cieStart, *fdeStart,
|
|
|
|
0);
|
2011-07-01 00:02:20 +02:00
|
|
|
if (verboseAsm) streamer.AddComment("FDE CIE Offset");
|
2011-05-10 17:20:23 +02:00
|
|
|
streamer.EmitAbsValue(offset, 4);
|
2011-05-10 22:59:42 +02:00
|
|
|
} else if (!asmInfo.doesDwarfRequireRelocationForSectionOffset()) {
|
|
|
|
const MCExpr *offset = MakeStartMinusEndExpr(streamer, *SectionStart,
|
|
|
|
cieStart, 0);
|
|
|
|
streamer.EmitAbsValue(offset, 4);
|
2011-05-10 17:20:23 +02:00
|
|
|
} else {
|
|
|
|
streamer.EmitSymbolValue(&cieStart, 4);
|
|
|
|
}
|
2011-07-01 00:02:20 +02:00
|
|
|
|
2011-07-20 21:50:42 +02:00
|
|
|
unsigned fdeEncoding = MOFI->getFDEEncoding(UsingCFI);
|
2011-04-22 02:08:43 +02:00
|
|
|
unsigned size = getSizeForEncoding(streamer, fdeEncoding);
|
2010-12-10 08:39:47 +01:00
|
|
|
|
|
|
|
// PC Begin
|
2011-05-11 00:28:35 +02:00
|
|
|
unsigned PCBeginEncoding = IsEH ? fdeEncoding :
|
|
|
|
(unsigned)dwarf::DW_EH_PE_absptr;
|
2011-05-10 05:54:12 +02:00
|
|
|
unsigned PCBeginSize = getSizeForEncoding(streamer, PCBeginEncoding);
|
2011-07-01 00:02:20 +02:00
|
|
|
EmitSymbol(streamer, *frame.Begin, PCBeginEncoding, "FDE initial location");
|
2010-12-10 08:39:47 +01:00
|
|
|
|
|
|
|
// PC Range
|
|
|
|
const MCExpr *Range = MakeStartMinusEndExpr(streamer, *frame.Begin,
|
|
|
|
*frame.End, 0);
|
2011-07-01 00:02:20 +02:00
|
|
|
if (verboseAsm) streamer.AddComment("FDE address range");
|
2011-04-27 03:43:49 +02:00
|
|
|
streamer.EmitAbsValue(Range, size);
|
2010-12-10 08:39:47 +01:00
|
|
|
|
2011-05-10 05:54:12 +02:00
|
|
|
if (IsEH) {
|
|
|
|
// Augmentation Data Length
|
|
|
|
unsigned augmentationLength = 0;
|
2011-04-29 23:50:57 +02:00
|
|
|
|
2011-05-10 05:54:12 +02:00
|
|
|
if (frame.Lsda)
|
|
|
|
augmentationLength += getSizeForEncoding(streamer, frame.LsdaEncoding);
|
2011-04-29 23:50:57 +02:00
|
|
|
|
2011-07-01 00:02:20 +02:00
|
|
|
if (verboseAsm) streamer.AddComment("Augmentation size");
|
2011-05-10 05:54:12 +02:00
|
|
|
streamer.EmitULEB128IntValue(augmentationLength);
|
2010-12-10 08:39:47 +01:00
|
|
|
|
2011-05-10 05:54:12 +02:00
|
|
|
// Augmentation Data
|
|
|
|
if (frame.Lsda)
|
2011-07-01 00:02:20 +02:00
|
|
|
EmitSymbol(streamer, *frame.Lsda, frame.LsdaEncoding,
|
|
|
|
"Language Specific Data Area");
|
2011-05-10 05:54:12 +02:00
|
|
|
}
|
2011-04-29 05:06:29 +02:00
|
|
|
|
2010-12-10 08:39:47 +01:00
|
|
|
// Call Frame Instructions
|
|
|
|
|
2010-12-29 02:42:56 +01:00
|
|
|
EmitCFIInstructions(streamer, frame.Instructions, frame.Begin);
|
2010-12-28 05:15:37 +01:00
|
|
|
|
2010-12-10 08:39:47 +01:00
|
|
|
// Padding
|
2011-05-10 05:54:12 +02:00
|
|
|
streamer.EmitValueToAlignment(PCBeginSize);
|
2010-12-17 01:28:02 +01:00
|
|
|
|
|
|
|
return fdeEnd;
|
2010-12-10 08:39:47 +01:00
|
|
|
}
|
|
|
|
|
2010-12-30 23:34:44 +01:00
|
|
|
namespace {
|
|
|
|
struct CIEKey {
|
|
|
|
static const CIEKey getEmptyKey() { return CIEKey(0, 0, -1); }
|
|
|
|
static const CIEKey getTombstoneKey() { return CIEKey(0, -1, 0); }
|
|
|
|
|
|
|
|
CIEKey(const MCSymbol* Personality_, unsigned PersonalityEncoding_,
|
|
|
|
unsigned LsdaEncoding_) : Personality(Personality_),
|
|
|
|
PersonalityEncoding(PersonalityEncoding_),
|
|
|
|
LsdaEncoding(LsdaEncoding_) {
|
|
|
|
}
|
|
|
|
const MCSymbol* Personality;
|
|
|
|
unsigned PersonalityEncoding;
|
|
|
|
unsigned LsdaEncoding;
|
|
|
|
};
|
|
|
|
}
|
2010-12-27 16:56:22 +01:00
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
template <>
|
|
|
|
struct DenseMapInfo<CIEKey> {
|
|
|
|
static CIEKey getEmptyKey() {
|
2010-12-30 23:34:44 +01:00
|
|
|
return CIEKey::getEmptyKey();
|
2010-12-27 16:56:22 +01:00
|
|
|
}
|
|
|
|
static CIEKey getTombstoneKey() {
|
2010-12-30 23:34:44 +01:00
|
|
|
return CIEKey::getTombstoneKey();
|
2010-12-27 16:56:22 +01:00
|
|
|
}
|
|
|
|
static unsigned getHashValue(const CIEKey &Key) {
|
|
|
|
FoldingSetNodeID ID;
|
|
|
|
ID.AddPointer(Key.Personality);
|
|
|
|
ID.AddInteger(Key.PersonalityEncoding);
|
|
|
|
ID.AddInteger(Key.LsdaEncoding);
|
|
|
|
return ID.ComputeHash();
|
|
|
|
}
|
|
|
|
static bool isEqual(const CIEKey &LHS,
|
|
|
|
const CIEKey &RHS) {
|
|
|
|
return LHS.Personality == RHS.Personality &&
|
|
|
|
LHS.PersonalityEncoding == RHS.PersonalityEncoding &&
|
|
|
|
LHS.LsdaEncoding == RHS.LsdaEncoding;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2011-06-23 09:44:54 +02:00
|
|
|
void MCDwarfFrameEmitter::Emit(MCStreamer &Streamer,
|
|
|
|
bool UsingCFI,
|
|
|
|
bool IsEH) {
|
|
|
|
MCContext &Context = Streamer.getContext();
|
2011-07-20 07:58:47 +02:00
|
|
|
MCObjectFileInfo *MOFI =
|
|
|
|
const_cast<MCObjectFileInfo*>(Context.getObjectFileInfo());
|
2011-07-22 23:18:59 +02:00
|
|
|
FrameEmitterImpl Emitter(UsingCFI, IsEH);
|
2011-09-06 20:37:11 +02:00
|
|
|
ArrayRef<MCDwarfFrameInfo> FrameArray = Streamer.getFrameInfos();
|
2011-07-22 23:18:59 +02:00
|
|
|
|
2011-09-06 20:37:11 +02:00
|
|
|
// Emit the compact unwind info if available.
|
2011-12-15 01:14:24 +01:00
|
|
|
if (IsEH && MOFI->getCompactUnwindSection())
|
2011-07-22 23:18:59 +02:00
|
|
|
for (unsigned i = 0, n = Streamer.getNumFrameInfos(); i < n; ++i) {
|
|
|
|
const MCDwarfFrameInfo &Frame = Streamer.getFrameInfo(i);
|
2011-11-08 23:23:43 +01:00
|
|
|
if (Frame.CompactUnwindEncoding)
|
2011-09-06 20:37:11 +02:00
|
|
|
Emitter.EmitCompactUnwind(Streamer, Frame);
|
2011-07-22 23:18:59 +02:00
|
|
|
}
|
|
|
|
|
2011-07-20 07:58:47 +02:00
|
|
|
const MCSection &Section = IsEH ? *MOFI->getEHFrameSection() :
|
|
|
|
*MOFI->getDwarfFrameSection();
|
2011-06-23 09:44:54 +02:00
|
|
|
Streamer.SwitchSection(&Section);
|
|
|
|
MCSymbol *SectionStart = Context.CreateTempSymbol();
|
|
|
|
Streamer.EmitLabel(SectionStart);
|
2011-07-22 23:18:59 +02:00
|
|
|
Emitter.setSectionStart(SectionStart);
|
2011-06-23 09:44:54 +02:00
|
|
|
|
|
|
|
MCSymbol *FDEEnd = NULL;
|
2010-12-27 16:56:22 +01:00
|
|
|
DenseMap<CIEKey, const MCSymbol*> CIEStarts;
|
2010-12-26 21:20:31 +01:00
|
|
|
|
2011-05-10 05:54:12 +02:00
|
|
|
const MCSymbol *DummyDebugKey = NULL;
|
2011-07-22 23:18:59 +02:00
|
|
|
for (unsigned i = 0, n = FrameArray.size(); i < n; ++i) {
|
|
|
|
const MCDwarfFrameInfo &Frame = FrameArray[i];
|
2011-06-23 09:44:54 +02:00
|
|
|
CIEKey Key(Frame.Personality, Frame.PersonalityEncoding,
|
|
|
|
Frame.LsdaEncoding);
|
|
|
|
const MCSymbol *&CIEStart = IsEH ? CIEStarts[Key] : DummyDebugKey;
|
|
|
|
if (!CIEStart)
|
|
|
|
CIEStart = &Emitter.EmitCIE(Streamer, Frame.Personality,
|
|
|
|
Frame.PersonalityEncoding, Frame.Lsda,
|
|
|
|
Frame.LsdaEncoding);
|
2011-06-23 03:06:23 +02:00
|
|
|
|
2011-06-23 09:44:54 +02:00
|
|
|
FDEEnd = Emitter.EmitFDE(Streamer, *CIEStart, Frame);
|
2011-06-23 03:06:23 +02:00
|
|
|
|
2010-12-17 01:28:02 +01:00
|
|
|
if (i != n - 1)
|
2011-06-23 09:44:54 +02:00
|
|
|
Streamer.EmitLabel(FDEEnd);
|
2010-12-17 01:28:02 +01:00
|
|
|
}
|
2010-12-26 21:20:31 +01:00
|
|
|
|
2011-07-15 04:09:41 +02:00
|
|
|
Streamer.EmitValueToAlignment(Context.getAsmInfo().getPointerSize());
|
2011-06-23 09:44:54 +02:00
|
|
|
if (FDEEnd)
|
|
|
|
Streamer.EmitLabel(FDEEnd);
|
2010-12-10 08:39:47 +01:00
|
|
|
}
|
2010-12-28 06:39:27 +01:00
|
|
|
|
|
|
|
void MCDwarfFrameEmitter::EmitAdvanceLoc(MCStreamer &Streamer,
|
|
|
|
uint64_t AddrDelta) {
|
|
|
|
SmallString<256> Tmp;
|
|
|
|
raw_svector_ostream OS(Tmp);
|
2011-05-08 16:35:21 +02:00
|
|
|
MCDwarfFrameEmitter::EncodeAdvanceLoc(AddrDelta, OS);
|
2010-12-28 06:39:27 +01:00
|
|
|
Streamer.EmitBytes(OS.str(), /*AddrSpace=*/0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void MCDwarfFrameEmitter::EncodeAdvanceLoc(uint64_t AddrDelta,
|
2011-05-08 16:35:21 +02:00
|
|
|
raw_ostream &OS) {
|
2010-12-28 06:39:27 +01:00
|
|
|
// FIXME: Assumes the code alignment factor is 1.
|
2010-12-29 00:38:03 +01:00
|
|
|
if (AddrDelta == 0) {
|
2011-05-08 16:35:21 +02:00
|
|
|
} else if (isUIntN(6, AddrDelta)) {
|
2010-12-28 06:39:27 +01:00
|
|
|
uint8_t Opcode = dwarf::DW_CFA_advance_loc | AddrDelta;
|
|
|
|
OS << Opcode;
|
2011-05-08 16:35:21 +02:00
|
|
|
} else if (isUInt<8>(AddrDelta)) {
|
2010-12-28 06:39:27 +01:00
|
|
|
OS << uint8_t(dwarf::DW_CFA_advance_loc1);
|
|
|
|
OS << uint8_t(AddrDelta);
|
2011-05-08 16:35:21 +02:00
|
|
|
} else if (isUInt<16>(AddrDelta)) {
|
2010-12-29 03:30:49 +01:00
|
|
|
// FIXME: check what is the correct behavior on a big endian machine.
|
2010-12-28 06:39:27 +01:00
|
|
|
OS << uint8_t(dwarf::DW_CFA_advance_loc2);
|
2010-12-29 03:30:49 +01:00
|
|
|
OS << uint8_t( AddrDelta & 0xff);
|
|
|
|
OS << uint8_t((AddrDelta >> 8) & 0xff);
|
2010-12-28 06:39:27 +01:00
|
|
|
} else {
|
2010-12-29 03:30:49 +01:00
|
|
|
// FIXME: check what is the correct behavior on a big endian machine.
|
2010-12-28 06:39:27 +01:00
|
|
|
assert(isUInt<32>(AddrDelta));
|
|
|
|
OS << uint8_t(dwarf::DW_CFA_advance_loc4);
|
2010-12-29 03:30:49 +01:00
|
|
|
OS << uint8_t( AddrDelta & 0xff);
|
|
|
|
OS << uint8_t((AddrDelta >> 8) & 0xff);
|
|
|
|
OS << uint8_t((AddrDelta >> 16) & 0xff);
|
|
|
|
OS << uint8_t((AddrDelta >> 24) & 0xff);
|
|
|
|
|
2010-12-28 06:39:27 +01:00
|
|
|
}
|
|
|
|
}
|