2016-01-15 03:25:04 +08:00
|
|
|
//===-- llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp --*- C++ -*--===//
|
2014-01-30 09:39:17 +08:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2016-01-15 03:25:04 +08:00
|
|
|
// This file contains support for writing Microsoft CodeView debug info.
|
2014-01-30 09:39:17 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2016-01-15 03:25:04 +08:00
|
|
|
#include "CodeViewDebug.h"
|
2016-01-14 07:44:57 +08:00
|
|
|
#include "llvm/DebugInfo/CodeView/CodeView.h"
|
2016-06-03 23:58:20 +08:00
|
|
|
#include "llvm/DebugInfo/CodeView/FieldListRecordBuilder.h"
|
2016-01-29 08:49:42 +08:00
|
|
|
#include "llvm/DebugInfo/CodeView/Line.h"
|
2016-01-14 07:44:57 +08:00
|
|
|
#include "llvm/DebugInfo/CodeView/SymbolRecord.h"
|
[codeview] Improve readability of type record assembly
Adds the method MCStreamer::EmitBinaryData, which is usually an alias
for EmitBytes. In the MCAsmStreamer case, it is overridden to emit hex
dump output like this:
.byte 0x0e, 0x00, 0x08, 0x10
.byte 0x03, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x10, 0x00, 0x00
Also, when verbose asm comments are enabled, this patch prints the dump
output for each comment before its record, like this:
# ArgList (0x1000) {
# TypeLeafKind: LF_ARGLIST (0x1201)
# NumArgs: 0
# Arguments [
# ]
# }
.byte 0x06, 0x00, 0x01, 0x12
.byte 0x00, 0x00, 0x00, 0x00
This should make debugging easier and testing more convenient.
Reviewers: aaboud
Subscribers: majnemer, zturner, amccarth, aaboud, llvm-commits
Differential Revision: http://reviews.llvm.org/D20711
llvm-svn: 271313
2016-06-01 02:45:36 +08:00
|
|
|
#include "llvm/DebugInfo/CodeView/TypeDumper.h"
|
2016-01-30 02:16:43 +08:00
|
|
|
#include "llvm/DebugInfo/CodeView/TypeIndex.h"
|
|
|
|
#include "llvm/DebugInfo/CodeView/TypeRecord.h"
|
2014-01-30 09:39:17 +08:00
|
|
|
#include "llvm/MC/MCExpr.h"
|
2016-05-26 07:16:12 +08:00
|
|
|
#include "llvm/MC/MCSectionCOFF.h"
|
2014-01-30 09:39:17 +08:00
|
|
|
#include "llvm/MC/MCSymbol.h"
|
|
|
|
#include "llvm/Support/COFF.h"
|
[codeview] Improve readability of type record assembly
Adds the method MCStreamer::EmitBinaryData, which is usually an alias
for EmitBytes. In the MCAsmStreamer case, it is overridden to emit hex
dump output like this:
.byte 0x0e, 0x00, 0x08, 0x10
.byte 0x03, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x10, 0x00, 0x00
Also, when verbose asm comments are enabled, this patch prints the dump
output for each comment before its record, like this:
# ArgList (0x1000) {
# TypeLeafKind: LF_ARGLIST (0x1201)
# NumArgs: 0
# Arguments [
# ]
# }
.byte 0x06, 0x00, 0x01, 0x12
.byte 0x00, 0x00, 0x00, 0x00
This should make debugging easier and testing more convenient.
Reviewers: aaboud
Subscribers: majnemer, zturner, amccarth, aaboud, llvm-commits
Differential Revision: http://reviews.llvm.org/D20711
llvm-svn: 271313
2016-06-01 02:45:36 +08:00
|
|
|
#include "llvm/Support/ScopedPrinter.h"
|
2016-02-11 04:55:49 +08:00
|
|
|
#include "llvm/Target/TargetSubtargetInfo.h"
|
|
|
|
#include "llvm/Target/TargetRegisterInfo.h"
|
|
|
|
#include "llvm/Target/TargetFrameLowering.h"
|
2014-01-30 09:39:17 +08:00
|
|
|
|
2016-02-11 04:55:49 +08:00
|
|
|
using namespace llvm;
|
2016-01-14 07:44:57 +08:00
|
|
|
using namespace llvm::codeview;
|
|
|
|
|
2016-02-11 04:55:49 +08:00
|
|
|
CodeViewDebug::CodeViewDebug(AsmPrinter *AP)
|
|
|
|
: DebugHandlerBase(AP), OS(*Asm->OutStreamer), CurFn(nullptr) {
|
|
|
|
// If module doesn't have named metadata anchors or COFF debug section
|
|
|
|
// is not available, skip any debug info related stuff.
|
|
|
|
if (!MMI->getModule()->getNamedMetadata("llvm.dbg.cu") ||
|
|
|
|
!AP->getObjFileLowering().getCOFFDebugSymbolsSection()) {
|
|
|
|
Asm = nullptr;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Tell MMI that we have debug info.
|
|
|
|
MMI->setDebugInfoAvailability(true);
|
|
|
|
}
|
2014-01-30 09:39:17 +08:00
|
|
|
|
2016-01-16 08:09:09 +08:00
|
|
|
StringRef CodeViewDebug::getFullFilepath(const DIFile *File) {
|
|
|
|
std::string &Filepath = FileToFilepathMap[File];
|
2015-12-03 06:34:30 +08:00
|
|
|
if (!Filepath.empty())
|
|
|
|
return Filepath;
|
2014-01-30 09:39:17 +08:00
|
|
|
|
2016-01-16 08:09:09 +08:00
|
|
|
StringRef Dir = File->getDirectory(), Filename = File->getFilename();
|
|
|
|
|
2014-01-30 09:39:17 +08:00
|
|
|
// Clang emits directory and relative filename info into the IR, but CodeView
|
|
|
|
// operates on full paths. We could change Clang to emit full paths too, but
|
|
|
|
// that would increase the IR size and probably not needed for other users.
|
|
|
|
// For now, just concatenate and canonicalize the path here.
|
|
|
|
if (Filename.find(':') == 1)
|
|
|
|
Filepath = Filename;
|
|
|
|
else
|
2015-03-28 01:51:30 +08:00
|
|
|
Filepath = (Dir + "\\" + Filename).str();
|
2014-01-30 09:39:17 +08:00
|
|
|
|
|
|
|
// Canonicalize the path. We have to do it textually because we may no longer
|
|
|
|
// have access the file in the filesystem.
|
|
|
|
// First, replace all slashes with backslashes.
|
|
|
|
std::replace(Filepath.begin(), Filepath.end(), '/', '\\');
|
|
|
|
|
|
|
|
// Remove all "\.\" with "\".
|
|
|
|
size_t Cursor = 0;
|
|
|
|
while ((Cursor = Filepath.find("\\.\\", Cursor)) != std::string::npos)
|
|
|
|
Filepath.erase(Cursor, 2);
|
|
|
|
|
|
|
|
// Replace all "\XXX\..\" with "\". Don't try too hard though as the original
|
|
|
|
// path should be well-formatted, e.g. start with a drive letter, etc.
|
|
|
|
Cursor = 0;
|
|
|
|
while ((Cursor = Filepath.find("\\..\\", Cursor)) != std::string::npos) {
|
|
|
|
// Something's wrong if the path starts with "\..\", abort.
|
|
|
|
if (Cursor == 0)
|
|
|
|
break;
|
|
|
|
|
|
|
|
size_t PrevSlash = Filepath.rfind('\\', Cursor - 1);
|
|
|
|
if (PrevSlash == std::string::npos)
|
|
|
|
// Something's wrong, abort.
|
|
|
|
break;
|
|
|
|
|
|
|
|
Filepath.erase(PrevSlash, Cursor + 3 - PrevSlash);
|
|
|
|
// The next ".." might be following the one we've just erased.
|
|
|
|
Cursor = PrevSlash;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Remove all duplicate backslashes.
|
|
|
|
Cursor = 0;
|
|
|
|
while ((Cursor = Filepath.find("\\\\", Cursor)) != std::string::npos)
|
|
|
|
Filepath.erase(Cursor, 1);
|
|
|
|
|
2015-12-03 06:34:30 +08:00
|
|
|
return Filepath;
|
2014-01-30 09:39:17 +08:00
|
|
|
}
|
|
|
|
|
2016-01-29 08:49:42 +08:00
|
|
|
unsigned CodeViewDebug::maybeRecordFile(const DIFile *F) {
|
|
|
|
unsigned NextId = FileIdMap.size() + 1;
|
|
|
|
auto Insertion = FileIdMap.insert(std::make_pair(F, NextId));
|
|
|
|
if (Insertion.second) {
|
|
|
|
// We have to compute the full filepath and emit a .cv_file directive.
|
|
|
|
StringRef FullPath = getFullFilepath(F);
|
2016-02-04 05:15:48 +08:00
|
|
|
NextId = OS.EmitCVFileDirective(NextId, FullPath);
|
2016-01-29 08:49:42 +08:00
|
|
|
assert(NextId == FileIdMap.size() && ".cv_file directive failed");
|
|
|
|
}
|
|
|
|
return Insertion.first->second;
|
|
|
|
}
|
|
|
|
|
2016-02-13 05:48:30 +08:00
|
|
|
CodeViewDebug::InlineSite &
|
|
|
|
CodeViewDebug::getInlineSite(const DILocation *InlinedAt,
|
|
|
|
const DISubprogram *Inlinee) {
|
2016-03-19 02:54:32 +08:00
|
|
|
auto SiteInsertion = CurFn->InlineSites.insert({InlinedAt, InlineSite()});
|
|
|
|
InlineSite *Site = &SiteInsertion.first->second;
|
|
|
|
if (SiteInsertion.second) {
|
2016-02-11 04:55:49 +08:00
|
|
|
Site->SiteFuncId = NextFuncId++;
|
2016-02-13 05:48:30 +08:00
|
|
|
Site->Inlinee = Inlinee;
|
2016-05-24 04:23:46 +08:00
|
|
|
InlinedSubprograms.insert(Inlinee);
|
2016-06-03 01:13:53 +08:00
|
|
|
getFuncIdForSubprogram(Inlinee);
|
2016-01-30 02:16:43 +08:00
|
|
|
}
|
2016-02-11 04:55:49 +08:00
|
|
|
return *Site;
|
2016-01-30 02:16:43 +08:00
|
|
|
}
|
|
|
|
|
2016-06-03 01:13:53 +08:00
|
|
|
TypeIndex CodeViewDebug::getFuncIdForSubprogram(const DISubprogram *SP) {
|
|
|
|
// It's possible to ask for the FuncId of a function which doesn't have a
|
|
|
|
// subprogram: inlining a function with debug info into a function with none.
|
|
|
|
if (!SP)
|
2016-06-03 02:51:24 +08:00
|
|
|
return TypeIndex::None();
|
2016-05-24 04:23:46 +08:00
|
|
|
|
2016-06-03 01:13:53 +08:00
|
|
|
// Check if we've already translated this subprogram.
|
|
|
|
auto I = TypeIndices.find(SP);
|
|
|
|
if (I != TypeIndices.end())
|
|
|
|
return I->second;
|
2016-05-24 04:23:46 +08:00
|
|
|
|
|
|
|
TypeIndex ParentScope = TypeIndex(0);
|
2016-06-18 00:11:20 +08:00
|
|
|
// The display name includes function template arguments. Drop them to match
|
|
|
|
// MSVC.
|
|
|
|
StringRef DisplayName = SP->getDisplayName().split('<').first;
|
2016-06-03 01:13:53 +08:00
|
|
|
FuncIdRecord FuncId(ParentScope, getTypeIndex(SP->getType()), DisplayName);
|
2016-05-24 04:23:46 +08:00
|
|
|
TypeIndex TI = TypeTable.writeFuncId(FuncId);
|
2016-06-03 01:13:53 +08:00
|
|
|
|
2016-06-03 23:58:20 +08:00
|
|
|
recordTypeIndexForDINode(SP, TI);
|
2016-06-03 01:13:53 +08:00
|
|
|
return TI;
|
2016-05-24 04:23:46 +08:00
|
|
|
}
|
|
|
|
|
2016-06-03 23:58:20 +08:00
|
|
|
void CodeViewDebug::recordTypeIndexForDINode(const DINode *Node, TypeIndex TI) {
|
|
|
|
auto InsertResult = TypeIndices.insert({Node, TI});
|
|
|
|
(void)InsertResult;
|
|
|
|
assert(InsertResult.second && "DINode was already assigned a type index");
|
|
|
|
}
|
|
|
|
|
2016-02-13 05:48:30 +08:00
|
|
|
void CodeViewDebug::recordLocalVariable(LocalVariable &&Var,
|
|
|
|
const DILocation *InlinedAt) {
|
|
|
|
if (InlinedAt) {
|
|
|
|
// This variable was inlined. Associate it with the InlineSite.
|
|
|
|
const DISubprogram *Inlinee = Var.DIVar->getScope()->getSubprogram();
|
|
|
|
InlineSite &Site = getInlineSite(InlinedAt, Inlinee);
|
|
|
|
Site.InlinedLocals.emplace_back(Var);
|
|
|
|
} else {
|
|
|
|
// This variable goes in the main ProcSym.
|
|
|
|
CurFn->Locals.emplace_back(Var);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-12 03:41:47 +08:00
|
|
|
static void addLocIfNotPresent(SmallVectorImpl<const DILocation *> &Locs,
|
|
|
|
const DILocation *Loc) {
|
|
|
|
auto B = Locs.begin(), E = Locs.end();
|
|
|
|
if (std::find(B, E, Loc) == E)
|
|
|
|
Locs.push_back(Loc);
|
|
|
|
}
|
|
|
|
|
2016-06-12 23:39:02 +08:00
|
|
|
void CodeViewDebug::maybeRecordLocation(const DebugLoc &DL,
|
2016-01-16 08:09:09 +08:00
|
|
|
const MachineFunction *MF) {
|
|
|
|
// Skip this instruction if it has the same location as the previous one.
|
|
|
|
if (DL == CurFn->LastLoc)
|
|
|
|
return;
|
|
|
|
|
|
|
|
const DIScope *Scope = DL.get()->getScope();
|
2014-01-30 09:39:17 +08:00
|
|
|
if (!Scope)
|
|
|
|
return;
|
2016-01-16 08:09:09 +08:00
|
|
|
|
2016-01-13 09:05:23 +08:00
|
|
|
// Skip this line if it is longer than the maximum we can record.
|
2016-01-29 08:49:42 +08:00
|
|
|
LineInfo LI(DL.getLine(), DL.getLine(), /*IsStatement=*/true);
|
|
|
|
if (LI.getStartLine() != DL.getLine() || LI.isAlwaysStepInto() ||
|
|
|
|
LI.isNeverStepInto())
|
2016-01-13 09:05:23 +08:00
|
|
|
return;
|
|
|
|
|
2016-01-29 08:49:42 +08:00
|
|
|
ColumnInfo CI(DL.getCol(), /*EndColumn=*/0);
|
|
|
|
if (CI.getStartColumn() != DL.getCol())
|
|
|
|
return;
|
2016-01-29 08:13:28 +08:00
|
|
|
|
2016-01-29 08:49:42 +08:00
|
|
|
if (!CurFn->HaveLineInfo)
|
|
|
|
CurFn->HaveLineInfo = true;
|
|
|
|
unsigned FileId = 0;
|
|
|
|
if (CurFn->LastLoc.get() && CurFn->LastLoc->getFile() == DL->getFile())
|
|
|
|
FileId = CurFn->LastFileId;
|
|
|
|
else
|
|
|
|
FileId = CurFn->LastFileId = maybeRecordFile(DL->getFile());
|
|
|
|
CurFn->LastLoc = DL;
|
2016-01-30 02:16:43 +08:00
|
|
|
|
|
|
|
unsigned FuncId = CurFn->FuncId;
|
2016-02-13 05:48:30 +08:00
|
|
|
if (const DILocation *SiteLoc = DL->getInlinedAt()) {
|
2016-02-12 03:41:47 +08:00
|
|
|
const DILocation *Loc = DL.get();
|
|
|
|
|
2016-01-30 02:16:43 +08:00
|
|
|
// If this location was actually inlined from somewhere else, give it the ID
|
|
|
|
// of the inline call site.
|
2016-02-13 05:48:30 +08:00
|
|
|
FuncId =
|
|
|
|
getInlineSite(SiteLoc, Loc->getScope()->getSubprogram()).SiteFuncId;
|
2016-02-12 03:41:47 +08:00
|
|
|
|
2016-01-30 02:16:43 +08:00
|
|
|
// Ensure we have links in the tree of inline call sites.
|
2016-02-12 03:41:47 +08:00
|
|
|
bool FirstLoc = true;
|
|
|
|
while ((SiteLoc = Loc->getInlinedAt())) {
|
2016-02-13 05:48:30 +08:00
|
|
|
InlineSite &Site =
|
|
|
|
getInlineSite(SiteLoc, Loc->getScope()->getSubprogram());
|
2016-02-12 03:41:47 +08:00
|
|
|
if (!FirstLoc)
|
|
|
|
addLocIfNotPresent(Site.ChildSites, Loc);
|
|
|
|
FirstLoc = false;
|
|
|
|
Loc = SiteLoc;
|
2016-01-30 02:16:43 +08:00
|
|
|
}
|
2016-02-12 03:41:47 +08:00
|
|
|
addLocIfNotPresent(CurFn->ChildSites, Loc);
|
2016-01-30 02:16:43 +08:00
|
|
|
}
|
|
|
|
|
2016-02-04 05:15:48 +08:00
|
|
|
OS.EmitCVLocDirective(FuncId, FileId, DL.getLine(), DL.getCol(),
|
|
|
|
/*PrologueEnd=*/false,
|
|
|
|
/*IsStmt=*/false, DL->getFilename());
|
2014-01-30 09:39:17 +08:00
|
|
|
}
|
|
|
|
|
2016-05-26 07:16:12 +08:00
|
|
|
void CodeViewDebug::emitCodeViewMagicVersion() {
|
|
|
|
OS.EmitValueToAlignment(4);
|
|
|
|
OS.AddComment("Debug section magic");
|
|
|
|
OS.EmitIntValue(COFF::DEBUG_SECTION_MAGIC, 4);
|
|
|
|
}
|
|
|
|
|
2016-01-15 03:25:04 +08:00
|
|
|
void CodeViewDebug::endModule() {
|
2016-06-07 08:02:03 +08:00
|
|
|
if (!Asm || !MMI->hasDebugInfo())
|
2014-10-11 00:05:32 +08:00
|
|
|
return;
|
|
|
|
|
|
|
|
assert(Asm != nullptr);
|
|
|
|
|
|
|
|
// The COFF .debug$S section consists of several subsections, each starting
|
|
|
|
// with a 4-byte control code (e.g. 0xF1, 0xF2, etc) and then a 4-byte length
|
|
|
|
// of the payload followed by the payload itself. The subsections are 4-byte
|
|
|
|
// aligned.
|
|
|
|
|
2016-06-07 08:02:03 +08:00
|
|
|
// Use the generic .debug$S section, and make a subsection for all the inlined
|
|
|
|
// subprograms.
|
|
|
|
switchToDebugSectionForSymbol(nullptr);
|
2016-05-26 07:16:12 +08:00
|
|
|
emitInlineeLinesSubsection();
|
2016-02-03 01:41:18 +08:00
|
|
|
|
2016-01-29 08:49:42 +08:00
|
|
|
// Emit per-function debug information.
|
|
|
|
for (auto &P : FnDebugInfo)
|
2016-06-15 08:19:52 +08:00
|
|
|
if (!P.first->isDeclarationForLinker())
|
|
|
|
emitDebugInfoForFunction(P.first, P.second);
|
2014-10-11 00:05:32 +08:00
|
|
|
|
2016-06-07 08:02:03 +08:00
|
|
|
// Emit global variable debug information.
|
2016-06-16 02:00:01 +08:00
|
|
|
setCurrentSubprogram(nullptr);
|
2016-06-07 08:02:03 +08:00
|
|
|
emitDebugInfoForGlobals();
|
|
|
|
|
2016-05-26 07:16:12 +08:00
|
|
|
// Switch back to the generic .debug$S section after potentially processing
|
|
|
|
// comdat symbol sections.
|
|
|
|
switchToDebugSectionForSymbol(nullptr);
|
|
|
|
|
2016-06-16 02:00:01 +08:00
|
|
|
// Emit UDT records for any types used by global variables.
|
|
|
|
if (!GlobalUDTs.empty()) {
|
|
|
|
MCSymbol *SymbolsEnd = beginCVSubsection(ModuleSubstreamKind::Symbols);
|
|
|
|
emitDebugInfoForUDTs(GlobalUDTs);
|
|
|
|
endCVSubsection(SymbolsEnd);
|
|
|
|
}
|
|
|
|
|
2014-10-11 00:05:32 +08:00
|
|
|
// This subsection holds a file index to offset in string table table.
|
2016-02-04 05:15:48 +08:00
|
|
|
OS.AddComment("File index to string table offset subsection");
|
|
|
|
OS.EmitCVFileChecksumsDirective();
|
2014-10-11 00:05:32 +08:00
|
|
|
|
|
|
|
// This subsection holds the string table.
|
2016-02-04 05:15:48 +08:00
|
|
|
OS.AddComment("String table");
|
|
|
|
OS.EmitCVStringTableDirective();
|
2014-10-11 00:05:32 +08:00
|
|
|
|
2016-06-02 01:05:51 +08:00
|
|
|
// Emit type information last, so that any types we translate while emitting
|
|
|
|
// function info are included.
|
|
|
|
emitTypeInformation();
|
|
|
|
|
2014-10-11 00:05:32 +08:00
|
|
|
clear();
|
|
|
|
}
|
|
|
|
|
2016-03-14 13:15:09 +08:00
|
|
|
static void emitNullTerminatedSymbolName(MCStreamer &OS, StringRef S) {
|
|
|
|
// Microsoft's linker seems to have trouble with symbol names longer than
|
|
|
|
// 0xffd8 bytes.
|
|
|
|
S = S.substr(0, 0xffd8);
|
|
|
|
SmallString<32> NullTerminatedString(S);
|
|
|
|
NullTerminatedString.push_back('\0');
|
|
|
|
OS.EmitBytes(NullTerminatedString);
|
|
|
|
}
|
|
|
|
|
2016-01-30 02:16:43 +08:00
|
|
|
void CodeViewDebug::emitTypeInformation() {
|
2016-05-24 04:23:46 +08:00
|
|
|
// Do nothing if we have no debug info or if no non-trivial types were emitted
|
|
|
|
// to TypeTable during codegen.
|
2016-01-30 02:16:43 +08:00
|
|
|
NamedMDNode *CU_Nodes =
|
2016-02-11 04:55:49 +08:00
|
|
|
MMI->getModule()->getNamedMetadata("llvm.dbg.cu");
|
2016-01-30 02:16:43 +08:00
|
|
|
if (!CU_Nodes)
|
|
|
|
return;
|
2016-05-24 04:23:46 +08:00
|
|
|
if (TypeTable.empty())
|
2016-03-19 02:54:32 +08:00
|
|
|
return;
|
|
|
|
|
|
|
|
// Start the .debug$T section with 0x4.
|
|
|
|
OS.SwitchSection(Asm->getObjFileLowering().getCOFFDebugTypesSection());
|
2016-05-26 07:16:12 +08:00
|
|
|
emitCodeViewMagicVersion();
|
2016-01-30 02:16:43 +08:00
|
|
|
|
[codeview] Improve readability of type record assembly
Adds the method MCStreamer::EmitBinaryData, which is usually an alias
for EmitBytes. In the MCAsmStreamer case, it is overridden to emit hex
dump output like this:
.byte 0x0e, 0x00, 0x08, 0x10
.byte 0x03, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x10, 0x00, 0x00
Also, when verbose asm comments are enabled, this patch prints the dump
output for each comment before its record, like this:
# ArgList (0x1000) {
# TypeLeafKind: LF_ARGLIST (0x1201)
# NumArgs: 0
# Arguments [
# ]
# }
.byte 0x06, 0x00, 0x01, 0x12
.byte 0x00, 0x00, 0x00, 0x00
This should make debugging easier and testing more convenient.
Reviewers: aaboud
Subscribers: majnemer, zturner, amccarth, aaboud, llvm-commits
Differential Revision: http://reviews.llvm.org/D20711
llvm-svn: 271313
2016-06-01 02:45:36 +08:00
|
|
|
SmallString<8> CommentPrefix;
|
|
|
|
if (OS.isVerboseAsm()) {
|
|
|
|
CommentPrefix += '\t';
|
|
|
|
CommentPrefix += Asm->MAI->getCommentString();
|
|
|
|
CommentPrefix += ' ';
|
|
|
|
}
|
|
|
|
|
|
|
|
CVTypeDumper CVTD(nullptr, /*PrintRecordBytes=*/false);
|
2016-05-24 04:23:46 +08:00
|
|
|
TypeTable.ForEachRecord(
|
[codeview] Improve readability of type record assembly
Adds the method MCStreamer::EmitBinaryData, which is usually an alias
for EmitBytes. In the MCAsmStreamer case, it is overridden to emit hex
dump output like this:
.byte 0x0e, 0x00, 0x08, 0x10
.byte 0x03, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x10, 0x00, 0x00
Also, when verbose asm comments are enabled, this patch prints the dump
output for each comment before its record, like this:
# ArgList (0x1000) {
# TypeLeafKind: LF_ARGLIST (0x1201)
# NumArgs: 0
# Arguments [
# ]
# }
.byte 0x06, 0x00, 0x01, 0x12
.byte 0x00, 0x00, 0x00, 0x00
This should make debugging easier and testing more convenient.
Reviewers: aaboud
Subscribers: majnemer, zturner, amccarth, aaboud, llvm-commits
Differential Revision: http://reviews.llvm.org/D20711
llvm-svn: 271313
2016-06-01 02:45:36 +08:00
|
|
|
[&](TypeIndex Index, StringRef Record) {
|
|
|
|
if (OS.isVerboseAsm()) {
|
|
|
|
// Emit a block comment describing the type record for readability.
|
|
|
|
SmallString<512> CommentBlock;
|
|
|
|
raw_svector_ostream CommentOS(CommentBlock);
|
|
|
|
ScopedPrinter SP(CommentOS);
|
|
|
|
SP.setPrefix(CommentPrefix);
|
|
|
|
CVTD.setPrinter(&SP);
|
2016-06-17 02:22:27 +08:00
|
|
|
Error EC = CVTD.dump({Record.bytes_begin(), Record.bytes_end()});
|
|
|
|
assert(!EC && "produced malformed type record");
|
|
|
|
consumeError(std::move(EC));
|
[codeview] Improve readability of type record assembly
Adds the method MCStreamer::EmitBinaryData, which is usually an alias
for EmitBytes. In the MCAsmStreamer case, it is overridden to emit hex
dump output like this:
.byte 0x0e, 0x00, 0x08, 0x10
.byte 0x03, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x10, 0x00, 0x00
Also, when verbose asm comments are enabled, this patch prints the dump
output for each comment before its record, like this:
# ArgList (0x1000) {
# TypeLeafKind: LF_ARGLIST (0x1201)
# NumArgs: 0
# Arguments [
# ]
# }
.byte 0x06, 0x00, 0x01, 0x12
.byte 0x00, 0x00, 0x00, 0x00
This should make debugging easier and testing more convenient.
Reviewers: aaboud
Subscribers: majnemer, zturner, amccarth, aaboud, llvm-commits
Differential Revision: http://reviews.llvm.org/D20711
llvm-svn: 271313
2016-06-01 02:45:36 +08:00
|
|
|
// emitRawComment will insert its own tab and comment string before
|
|
|
|
// the first line, so strip off our first one. It also prints its own
|
|
|
|
// newline.
|
|
|
|
OS.emitRawComment(
|
|
|
|
CommentOS.str().drop_front(CommentPrefix.size() - 1).rtrim());
|
|
|
|
}
|
|
|
|
OS.EmitBinaryData(Record);
|
2016-05-24 04:23:46 +08:00
|
|
|
});
|
2016-01-30 02:16:43 +08:00
|
|
|
}
|
|
|
|
|
2016-05-26 07:16:12 +08:00
|
|
|
void CodeViewDebug::emitInlineeLinesSubsection() {
|
2016-02-03 01:41:18 +08:00
|
|
|
if (InlinedSubprograms.empty())
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
|
|
OS.AddComment("Inlinee lines subsection");
|
2016-06-07 08:02:03 +08:00
|
|
|
MCSymbol *InlineEnd = beginCVSubsection(ModuleSubstreamKind::InlineeLines);
|
2016-02-03 01:41:18 +08:00
|
|
|
|
|
|
|
// We don't provide any extra file info.
|
|
|
|
// FIXME: Find out if debuggers use this info.
|
2016-02-03 07:18:23 +08:00
|
|
|
OS.AddComment("Inlinee lines signature");
|
2016-02-03 01:41:18 +08:00
|
|
|
OS.EmitIntValue(unsigned(InlineeLinesSignature::Normal), 4);
|
|
|
|
|
|
|
|
for (const DISubprogram *SP : InlinedSubprograms) {
|
2016-05-24 04:23:46 +08:00
|
|
|
assert(TypeIndices.count(SP));
|
|
|
|
TypeIndex InlineeIdx = TypeIndices[SP];
|
|
|
|
|
2016-02-03 07:18:23 +08:00
|
|
|
OS.AddBlankLine();
|
2016-02-03 01:41:18 +08:00
|
|
|
unsigned FileId = maybeRecordFile(SP->getFile());
|
|
|
|
OS.AddComment("Inlined function " + SP->getDisplayName() + " starts at " +
|
|
|
|
SP->getFilename() + Twine(':') + Twine(SP->getLine()));
|
2016-02-03 07:18:23 +08:00
|
|
|
OS.AddBlankLine();
|
2016-02-03 01:41:18 +08:00
|
|
|
// The filechecksum table uses 8 byte entries for now, and file ids start at
|
|
|
|
// 1.
|
|
|
|
unsigned FileOffset = (FileId - 1) * 8;
|
2016-02-03 07:18:23 +08:00
|
|
|
OS.AddComment("Type index of inlined function");
|
2016-05-24 04:23:46 +08:00
|
|
|
OS.EmitIntValue(InlineeIdx.getIndex(), 4);
|
2016-02-03 07:18:23 +08:00
|
|
|
OS.AddComment("Offset into filechecksum table");
|
2016-02-03 01:41:18 +08:00
|
|
|
OS.EmitIntValue(FileOffset, 4);
|
2016-02-03 07:18:23 +08:00
|
|
|
OS.AddComment("Starting line number");
|
2016-02-03 01:41:18 +08:00
|
|
|
OS.EmitIntValue(SP->getLine(), 4);
|
|
|
|
}
|
|
|
|
|
2016-06-07 08:02:03 +08:00
|
|
|
endCVSubsection(InlineEnd);
|
2016-02-03 01:41:18 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void CodeViewDebug::collectInlineSiteChildren(
|
|
|
|
SmallVectorImpl<unsigned> &Children, const FunctionInfo &FI,
|
|
|
|
const InlineSite &Site) {
|
|
|
|
for (const DILocation *ChildSiteLoc : Site.ChildSites) {
|
|
|
|
auto I = FI.InlineSites.find(ChildSiteLoc);
|
|
|
|
const InlineSite &ChildSite = I->second;
|
|
|
|
Children.push_back(ChildSite.SiteFuncId);
|
|
|
|
collectInlineSiteChildren(Children, FI, ChildSite);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-30 02:16:43 +08:00
|
|
|
void CodeViewDebug::emitInlinedCallSite(const FunctionInfo &FI,
|
|
|
|
const DILocation *InlinedAt,
|
|
|
|
const InlineSite &Site) {
|
2016-02-11 04:55:49 +08:00
|
|
|
MCSymbol *InlineBegin = MMI->getContext().createTempSymbol(),
|
|
|
|
*InlineEnd = MMI->getContext().createTempSymbol();
|
2016-01-30 02:16:43 +08:00
|
|
|
|
2016-05-24 04:23:46 +08:00
|
|
|
assert(TypeIndices.count(Site.Inlinee));
|
|
|
|
TypeIndex InlineeIdx = TypeIndices[Site.Inlinee];
|
2016-01-30 02:16:43 +08:00
|
|
|
|
|
|
|
// SymbolRecord
|
2016-02-04 05:15:48 +08:00
|
|
|
OS.AddComment("Record length");
|
2016-02-04 05:24:42 +08:00
|
|
|
OS.emitAbsoluteSymbolDiff(InlineEnd, InlineBegin, 2); // RecordLength
|
2016-01-30 02:16:43 +08:00
|
|
|
OS.EmitLabel(InlineBegin);
|
2016-02-04 05:15:48 +08:00
|
|
|
OS.AddComment("Record kind: S_INLINESITE");
|
2016-05-18 07:50:21 +08:00
|
|
|
OS.EmitIntValue(SymbolKind::S_INLINESITE, 2); // RecordKind
|
2016-01-30 02:16:43 +08:00
|
|
|
|
2016-02-04 05:15:48 +08:00
|
|
|
OS.AddComment("PtrParent");
|
|
|
|
OS.EmitIntValue(0, 4);
|
|
|
|
OS.AddComment("PtrEnd");
|
|
|
|
OS.EmitIntValue(0, 4);
|
|
|
|
OS.AddComment("Inlinee type index");
|
2016-05-24 04:23:46 +08:00
|
|
|
OS.EmitIntValue(InlineeIdx.getIndex(), 4);
|
2016-01-30 02:16:43 +08:00
|
|
|
|
2016-02-03 01:41:18 +08:00
|
|
|
unsigned FileId = maybeRecordFile(Site.Inlinee->getFile());
|
|
|
|
unsigned StartLineNum = Site.Inlinee->getLine();
|
|
|
|
SmallVector<unsigned, 3> SecondaryFuncIds;
|
|
|
|
collectInlineSiteChildren(SecondaryFuncIds, FI, Site);
|
|
|
|
|
|
|
|
OS.EmitCVInlineLinetableDirective(Site.SiteFuncId, FileId, StartLineNum,
|
2016-02-03 03:22:34 +08:00
|
|
|
FI.Begin, FI.End, SecondaryFuncIds);
|
2016-01-30 02:16:43 +08:00
|
|
|
|
|
|
|
OS.EmitLabel(InlineEnd);
|
|
|
|
|
2016-02-11 04:55:49 +08:00
|
|
|
for (const LocalVariable &Var : Site.InlinedLocals)
|
|
|
|
emitLocalVariable(Var);
|
|
|
|
|
2016-01-30 02:16:43 +08:00
|
|
|
// Recurse on child inlined call sites before closing the scope.
|
|
|
|
for (const DILocation *ChildSite : Site.ChildSites) {
|
|
|
|
auto I = FI.InlineSites.find(ChildSite);
|
|
|
|
assert(I != FI.InlineSites.end() &&
|
|
|
|
"child site not in function inline site map");
|
|
|
|
emitInlinedCallSite(FI, ChildSite, I->second);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Close the scope.
|
2016-02-04 05:15:48 +08:00
|
|
|
OS.AddComment("Record length");
|
|
|
|
OS.EmitIntValue(2, 2); // RecordLength
|
|
|
|
OS.AddComment("Record kind: S_INLINESITE_END");
|
2016-05-18 07:50:21 +08:00
|
|
|
OS.EmitIntValue(SymbolKind::S_INLINESITE_END, 2); // RecordKind
|
2016-01-30 02:16:43 +08:00
|
|
|
}
|
|
|
|
|
2016-05-26 07:16:12 +08:00
|
|
|
void CodeViewDebug::switchToDebugSectionForSymbol(const MCSymbol *GVSym) {
|
|
|
|
// If we have a symbol, it may be in a section that is COMDAT. If so, find the
|
|
|
|
// comdat key. A section may be comdat because of -ffunction-sections or
|
|
|
|
// because it is comdat in the IR.
|
|
|
|
MCSectionCOFF *GVSec =
|
|
|
|
GVSym ? dyn_cast<MCSectionCOFF>(&GVSym->getSection()) : nullptr;
|
|
|
|
const MCSymbol *KeySym = GVSec ? GVSec->getCOMDATSymbol() : nullptr;
|
|
|
|
|
|
|
|
MCSectionCOFF *DebugSec = cast<MCSectionCOFF>(
|
|
|
|
Asm->getObjFileLowering().getCOFFDebugSymbolsSection());
|
|
|
|
DebugSec = OS.getContext().getAssociativeCOFFSection(DebugSec, KeySym);
|
|
|
|
|
|
|
|
OS.SwitchSection(DebugSec);
|
|
|
|
|
|
|
|
// Emit the magic version number if this is the first time we've switched to
|
|
|
|
// this section.
|
|
|
|
if (ComdatDebugSections.insert(DebugSec).second)
|
|
|
|
emitCodeViewMagicVersion();
|
|
|
|
}
|
|
|
|
|
2016-06-18 00:11:20 +08:00
|
|
|
static const DISubprogram *getQualifiedNameComponents(
|
|
|
|
const DIScope *Scope, SmallVectorImpl<StringRef> &QualifiedNameComponents) {
|
|
|
|
const DISubprogram *ClosestSubprogram = nullptr;
|
|
|
|
while (Scope != nullptr) {
|
|
|
|
if (ClosestSubprogram == nullptr)
|
|
|
|
ClosestSubprogram = dyn_cast<DISubprogram>(Scope);
|
|
|
|
StringRef ScopeName = Scope->getName();
|
|
|
|
if (!ScopeName.empty())
|
|
|
|
QualifiedNameComponents.push_back(ScopeName);
|
|
|
|
Scope = Scope->getScope().resolve();
|
|
|
|
}
|
|
|
|
return ClosestSubprogram;
|
|
|
|
}
|
|
|
|
|
|
|
|
static std::string getQualifiedName(ArrayRef<StringRef> QualifiedNameComponents,
|
|
|
|
StringRef TypeName) {
|
|
|
|
std::string FullyQualifiedName;
|
|
|
|
for (StringRef QualifiedNameComponent : reverse(QualifiedNameComponents)) {
|
|
|
|
FullyQualifiedName.append(QualifiedNameComponent);
|
|
|
|
FullyQualifiedName.append("::");
|
|
|
|
}
|
|
|
|
FullyQualifiedName.append(TypeName);
|
|
|
|
return FullyQualifiedName;
|
|
|
|
}
|
|
|
|
|
2016-01-29 08:49:42 +08:00
|
|
|
void CodeViewDebug::emitDebugInfoForFunction(const Function *GV,
|
|
|
|
FunctionInfo &FI) {
|
2014-01-30 09:39:17 +08:00
|
|
|
// For each function there is a separate subsection
|
|
|
|
// which holds the PC to file:line table.
|
|
|
|
const MCSymbol *Fn = Asm->getSymbol(GV);
|
|
|
|
assert(Fn);
|
2014-03-26 17:50:36 +08:00
|
|
|
|
2016-05-26 07:16:12 +08:00
|
|
|
// Switch to the to a comdat section, if appropriate.
|
|
|
|
switchToDebugSectionForSymbol(Fn);
|
|
|
|
|
2016-06-18 00:11:20 +08:00
|
|
|
std::string FuncName;
|
2016-06-16 02:00:01 +08:00
|
|
|
auto *SP = GV->getSubprogram();
|
|
|
|
setCurrentSubprogram(SP);
|
2016-06-18 00:11:20 +08:00
|
|
|
|
|
|
|
// If we have a display name, build the fully qualified name by walking the
|
|
|
|
// chain of scopes.
|
|
|
|
if (SP != nullptr && !SP->getDisplayName().empty()) {
|
|
|
|
SmallVector<StringRef, 5> QualifiedNameComponents;
|
|
|
|
getQualifiedNameComponents(SP->getScope().resolve(),
|
|
|
|
QualifiedNameComponents);
|
|
|
|
FuncName = getQualifiedName(QualifiedNameComponents, SP->getDisplayName());
|
|
|
|
}
|
2015-03-21 03:50:00 +08:00
|
|
|
|
2016-01-14 08:12:54 +08:00
|
|
|
// If our DISubprogram name is empty, use the mangled name.
|
2016-01-14 03:32:35 +08:00
|
|
|
if (FuncName.empty())
|
|
|
|
FuncName = GlobalValue::getRealLinkageName(GV->getName());
|
2016-01-14 08:12:54 +08:00
|
|
|
|
2014-10-24 09:27:45 +08:00
|
|
|
// Emit a symbol subsection, required by VS2012+ to find function boundaries.
|
2016-02-04 05:15:48 +08:00
|
|
|
OS.AddComment("Symbol subsection for " + Twine(FuncName));
|
2016-06-07 08:02:03 +08:00
|
|
|
MCSymbol *SymbolsEnd = beginCVSubsection(ModuleSubstreamKind::Symbols);
|
2014-10-24 09:27:45 +08:00
|
|
|
{
|
2016-02-11 04:55:49 +08:00
|
|
|
MCSymbol *ProcRecordBegin = MMI->getContext().createTempSymbol(),
|
|
|
|
*ProcRecordEnd = MMI->getContext().createTempSymbol();
|
2016-02-04 05:15:48 +08:00
|
|
|
OS.AddComment("Record length");
|
2016-02-04 05:24:42 +08:00
|
|
|
OS.emitAbsoluteSymbolDiff(ProcRecordEnd, ProcRecordBegin, 2);
|
2016-02-04 05:15:48 +08:00
|
|
|
OS.EmitLabel(ProcRecordBegin);
|
2014-10-24 09:27:45 +08:00
|
|
|
|
2016-02-04 05:15:48 +08:00
|
|
|
OS.AddComment("Record kind: S_GPROC32_ID");
|
2016-05-18 07:50:21 +08:00
|
|
|
OS.EmitIntValue(unsigned(SymbolKind::S_GPROC32_ID), 2);
|
2016-01-14 07:44:57 +08:00
|
|
|
|
2016-02-03 07:18:23 +08:00
|
|
|
// These fields are filled in by tools like CVPACK which run after the fact.
|
2016-02-04 05:15:48 +08:00
|
|
|
OS.AddComment("PtrParent");
|
|
|
|
OS.EmitIntValue(0, 4);
|
|
|
|
OS.AddComment("PtrEnd");
|
|
|
|
OS.EmitIntValue(0, 4);
|
|
|
|
OS.AddComment("PtrNext");
|
|
|
|
OS.EmitIntValue(0, 4);
|
2014-10-24 09:27:45 +08:00
|
|
|
// This is the important bit that tells the debugger where the function
|
|
|
|
// code is located and what's its size:
|
2016-02-04 05:15:48 +08:00
|
|
|
OS.AddComment("Code size");
|
2016-02-04 05:24:42 +08:00
|
|
|
OS.emitAbsoluteSymbolDiff(FI.End, Fn, 4);
|
2016-02-04 05:15:48 +08:00
|
|
|
OS.AddComment("Offset after prologue");
|
|
|
|
OS.EmitIntValue(0, 4);
|
|
|
|
OS.AddComment("Offset before epilogue");
|
|
|
|
OS.EmitIntValue(0, 4);
|
|
|
|
OS.AddComment("Function type index");
|
2016-06-03 01:13:53 +08:00
|
|
|
OS.EmitIntValue(getFuncIdForSubprogram(GV->getSubprogram()).getIndex(), 4);
|
2016-02-04 05:15:48 +08:00
|
|
|
OS.AddComment("Function section relative address");
|
|
|
|
OS.EmitCOFFSecRel32(Fn);
|
|
|
|
OS.AddComment("Function section index");
|
|
|
|
OS.EmitCOFFSectionIndex(Fn);
|
|
|
|
OS.AddComment("Flags");
|
|
|
|
OS.EmitIntValue(0, 1);
|
2014-11-13 04:10:09 +08:00
|
|
|
// Emit the function display name as a null-terminated string.
|
2016-02-04 05:15:48 +08:00
|
|
|
OS.AddComment("Function name");
|
2016-03-13 18:53:30 +08:00
|
|
|
// Truncate the name so we won't overflow the record length field.
|
2016-03-14 13:15:09 +08:00
|
|
|
emitNullTerminatedSymbolName(OS, FuncName);
|
2016-02-04 05:15:48 +08:00
|
|
|
OS.EmitLabel(ProcRecordEnd);
|
2014-10-24 09:27:45 +08:00
|
|
|
|
2016-02-11 04:55:49 +08:00
|
|
|
for (const LocalVariable &Var : FI.Locals)
|
|
|
|
emitLocalVariable(Var);
|
|
|
|
|
2016-01-30 02:16:43 +08:00
|
|
|
// Emit inlined call site information. Only emit functions inlined directly
|
|
|
|
// into the parent function. We'll emit the other sites recursively as part
|
|
|
|
// of their parent inline site.
|
2016-02-11 04:55:49 +08:00
|
|
|
for (const DILocation *InlinedAt : FI.ChildSites) {
|
|
|
|
auto I = FI.InlineSites.find(InlinedAt);
|
|
|
|
assert(I != FI.InlineSites.end() &&
|
|
|
|
"child site not in function inline site map");
|
|
|
|
emitInlinedCallSite(FI, InlinedAt, I->second);
|
2016-01-30 02:16:43 +08:00
|
|
|
}
|
|
|
|
|
2016-06-16 02:00:01 +08:00
|
|
|
if (SP != nullptr)
|
|
|
|
emitDebugInfoForUDTs(LocalUDTs);
|
|
|
|
|
2014-10-24 09:27:45 +08:00
|
|
|
// We're done with this function.
|
2016-02-04 05:15:48 +08:00
|
|
|
OS.AddComment("Record length");
|
|
|
|
OS.EmitIntValue(0x0002, 2);
|
|
|
|
OS.AddComment("Record kind: S_PROC_ID_END");
|
2016-05-18 07:50:21 +08:00
|
|
|
OS.EmitIntValue(unsigned(SymbolKind::S_PROC_ID_END), 2);
|
2014-10-24 09:27:45 +08:00
|
|
|
}
|
2016-06-07 08:02:03 +08:00
|
|
|
endCVSubsection(SymbolsEnd);
|
2014-10-24 09:27:45 +08:00
|
|
|
|
2016-01-29 08:49:42 +08:00
|
|
|
// We have an assembler directive that takes care of the whole line table.
|
2016-02-04 05:15:48 +08:00
|
|
|
OS.EmitCVLinetableDirective(FI.FuncId, Fn, FI.End);
|
2014-01-30 09:39:17 +08:00
|
|
|
}
|
|
|
|
|
2016-02-13 05:48:30 +08:00
|
|
|
CodeViewDebug::LocalVarDefRange
|
|
|
|
CodeViewDebug::createDefRangeMem(uint16_t CVRegister, int Offset) {
|
|
|
|
LocalVarDefRange DR;
|
2016-02-16 23:35:51 +08:00
|
|
|
DR.InMemory = -1;
|
2016-02-13 05:48:30 +08:00
|
|
|
DR.DataOffset = Offset;
|
|
|
|
assert(DR.DataOffset == Offset && "truncation");
|
|
|
|
DR.StructOffset = 0;
|
|
|
|
DR.CVRegister = CVRegister;
|
|
|
|
return DR;
|
|
|
|
}
|
|
|
|
|
|
|
|
CodeViewDebug::LocalVarDefRange
|
|
|
|
CodeViewDebug::createDefRangeReg(uint16_t CVRegister) {
|
|
|
|
LocalVarDefRange DR;
|
|
|
|
DR.InMemory = 0;
|
|
|
|
DR.DataOffset = 0;
|
|
|
|
DR.StructOffset = 0;
|
|
|
|
DR.CVRegister = CVRegister;
|
|
|
|
return DR;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CodeViewDebug::collectVariableInfoFromMMITable(
|
|
|
|
DenseSet<InlinedVariable> &Processed) {
|
|
|
|
const TargetSubtargetInfo &TSI = Asm->MF->getSubtarget();
|
|
|
|
const TargetFrameLowering *TFI = TSI.getFrameLowering();
|
|
|
|
const TargetRegisterInfo *TRI = TSI.getRegisterInfo();
|
|
|
|
|
|
|
|
for (const MachineModuleInfo::VariableDbgInfo &VI :
|
|
|
|
MMI->getVariableDbgInfo()) {
|
2016-02-11 04:55:49 +08:00
|
|
|
if (!VI.Var)
|
|
|
|
continue;
|
|
|
|
assert(VI.Var->isValidLocationForIntrinsic(VI.Loc) &&
|
|
|
|
"Expected inlined-at fields to agree");
|
|
|
|
|
2016-02-13 05:48:30 +08:00
|
|
|
Processed.insert(InlinedVariable(VI.Var, VI.Loc->getInlinedAt()));
|
2016-02-11 04:55:49 +08:00
|
|
|
LexicalScope *Scope = LScopes.findLexicalScope(VI.Loc);
|
|
|
|
|
|
|
|
// If variable scope is not found then skip this variable.
|
|
|
|
if (!Scope)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
// Get the frame register used and the offset.
|
|
|
|
unsigned FrameReg = 0;
|
2016-02-13 05:48:30 +08:00
|
|
|
int FrameOffset = TFI->getFrameIndexReference(*Asm->MF, VI.Slot, FrameReg);
|
|
|
|
uint16_t CVReg = TRI->getCodeViewRegNum(FrameReg);
|
2016-02-11 04:55:49 +08:00
|
|
|
|
|
|
|
// Calculate the label ranges.
|
2016-02-13 05:48:30 +08:00
|
|
|
LocalVarDefRange DefRange = createDefRangeMem(CVReg, FrameOffset);
|
2016-02-11 04:55:49 +08:00
|
|
|
for (const InsnRange &Range : Scope->getRanges()) {
|
|
|
|
const MCSymbol *Begin = getLabelBeforeInsn(Range.first);
|
|
|
|
const MCSymbol *End = getLabelAfterInsn(Range.second);
|
2016-02-13 05:48:30 +08:00
|
|
|
End = End ? End : Asm->getFunctionEnd();
|
|
|
|
DefRange.Ranges.emplace_back(Begin, End);
|
2016-02-11 04:55:49 +08:00
|
|
|
}
|
|
|
|
|
2016-02-13 05:48:30 +08:00
|
|
|
LocalVariable Var;
|
|
|
|
Var.DIVar = VI.Var;
|
|
|
|
Var.DefRanges.emplace_back(std::move(DefRange));
|
|
|
|
recordLocalVariable(std::move(Var), VI.Loc->getInlinedAt());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CodeViewDebug::collectVariableInfo(const DISubprogram *SP) {
|
|
|
|
DenseSet<InlinedVariable> Processed;
|
|
|
|
// Grab the variable info that was squirreled away in the MMI side-table.
|
|
|
|
collectVariableInfoFromMMITable(Processed);
|
|
|
|
|
|
|
|
const TargetRegisterInfo *TRI = Asm->MF->getSubtarget().getRegisterInfo();
|
|
|
|
|
|
|
|
for (const auto &I : DbgValues) {
|
|
|
|
InlinedVariable IV = I.first;
|
|
|
|
if (Processed.count(IV))
|
|
|
|
continue;
|
|
|
|
const DILocalVariable *DIVar = IV.first;
|
|
|
|
const DILocation *InlinedAt = IV.second;
|
|
|
|
|
|
|
|
// Instruction ranges, specifying where IV is accessible.
|
|
|
|
const auto &Ranges = I.second;
|
|
|
|
|
|
|
|
LexicalScope *Scope = nullptr;
|
|
|
|
if (InlinedAt)
|
|
|
|
Scope = LScopes.findInlinedScope(DIVar->getScope(), InlinedAt);
|
|
|
|
else
|
|
|
|
Scope = LScopes.findLexicalScope(DIVar->getScope());
|
|
|
|
// If variable scope is not found then skip this variable.
|
|
|
|
if (!Scope)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
LocalVariable Var;
|
|
|
|
Var.DIVar = DIVar;
|
|
|
|
|
|
|
|
// Calculate the definition ranges.
|
|
|
|
for (auto I = Ranges.begin(), E = Ranges.end(); I != E; ++I) {
|
|
|
|
const InsnRange &Range = *I;
|
|
|
|
const MachineInstr *DVInst = Range.first;
|
|
|
|
assert(DVInst->isDebugValue() && "Invalid History entry");
|
|
|
|
const DIExpression *DIExpr = DVInst->getDebugExpression();
|
|
|
|
|
|
|
|
// Bail if there is a complex DWARF expression for now.
|
|
|
|
if (DIExpr && DIExpr->getNumElements() > 0)
|
|
|
|
continue;
|
|
|
|
|
2016-02-17 05:49:26 +08:00
|
|
|
// Bail if operand 0 is not a valid register. This means the variable is a
|
|
|
|
// simple constant, or is described by a complex expression.
|
|
|
|
// FIXME: Find a way to represent constant variables, since they are
|
|
|
|
// relatively common.
|
|
|
|
unsigned Reg =
|
|
|
|
DVInst->getOperand(0).isReg() ? DVInst->getOperand(0).getReg() : 0;
|
|
|
|
if (Reg == 0)
|
2016-02-17 05:14:51 +08:00
|
|
|
continue;
|
|
|
|
|
2016-02-13 05:48:30 +08:00
|
|
|
// Handle the two cases we can handle: indirect in memory and in register.
|
|
|
|
bool IsIndirect = DVInst->getOperand(1).isImm();
|
|
|
|
unsigned CVReg = TRI->getCodeViewRegNum(DVInst->getOperand(0).getReg());
|
|
|
|
{
|
|
|
|
LocalVarDefRange DefRange;
|
|
|
|
if (IsIndirect) {
|
|
|
|
int64_t Offset = DVInst->getOperand(1).getImm();
|
|
|
|
DefRange = createDefRangeMem(CVReg, Offset);
|
|
|
|
} else {
|
|
|
|
DefRange = createDefRangeReg(CVReg);
|
|
|
|
}
|
|
|
|
if (Var.DefRanges.empty() ||
|
|
|
|
Var.DefRanges.back().isDifferentLocation(DefRange)) {
|
|
|
|
Var.DefRanges.emplace_back(std::move(DefRange));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Compute the label range.
|
|
|
|
const MCSymbol *Begin = getLabelBeforeInsn(Range.first);
|
|
|
|
const MCSymbol *End = getLabelAfterInsn(Range.second);
|
|
|
|
if (!End) {
|
|
|
|
if (std::next(I) != E)
|
|
|
|
End = getLabelBeforeInsn(std::next(I)->first);
|
|
|
|
else
|
|
|
|
End = Asm->getFunctionEnd();
|
|
|
|
}
|
|
|
|
|
|
|
|
// If the last range end is our begin, just extend the last range.
|
|
|
|
// Otherwise make a new range.
|
|
|
|
SmallVectorImpl<std::pair<const MCSymbol *, const MCSymbol *>> &Ranges =
|
|
|
|
Var.DefRanges.back().Ranges;
|
|
|
|
if (!Ranges.empty() && Ranges.back().second == Begin)
|
|
|
|
Ranges.back().second = End;
|
|
|
|
else
|
|
|
|
Ranges.emplace_back(Begin, End);
|
|
|
|
|
|
|
|
// FIXME: Do more range combining.
|
2016-02-11 04:55:49 +08:00
|
|
|
}
|
2016-02-13 05:48:30 +08:00
|
|
|
|
|
|
|
recordLocalVariable(std::move(Var), InlinedAt);
|
2016-02-11 04:55:49 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-15 03:25:04 +08:00
|
|
|
void CodeViewDebug::beginFunction(const MachineFunction *MF) {
|
2014-01-30 09:39:17 +08:00
|
|
|
assert(!CurFn && "Can't process two functions at once!");
|
|
|
|
|
2016-02-11 04:55:49 +08:00
|
|
|
if (!Asm || !MMI->hasDebugInfo())
|
2014-01-30 09:39:17 +08:00
|
|
|
return;
|
|
|
|
|
2016-02-11 04:55:49 +08:00
|
|
|
DebugHandlerBase::beginFunction(MF);
|
|
|
|
|
2014-01-30 09:39:17 +08:00
|
|
|
const Function *GV = MF->getFunction();
|
|
|
|
assert(FnDebugInfo.count(GV) == false);
|
|
|
|
CurFn = &FnDebugInfo[GV];
|
2016-01-29 08:49:42 +08:00
|
|
|
CurFn->FuncId = NextFuncId++;
|
2016-02-03 01:41:18 +08:00
|
|
|
CurFn->Begin = Asm->getFunctionBegin();
|
2014-01-30 09:39:17 +08:00
|
|
|
|
2016-02-11 04:55:49 +08:00
|
|
|
// Find the end of the function prolog. First known non-DBG_VALUE and
|
|
|
|
// non-frame setup location marks the beginning of the function body.
|
2014-01-30 09:39:17 +08:00
|
|
|
// FIXME: is there a simpler a way to do this? Can we just search
|
|
|
|
// for the first instruction of the function, not the last of the prolog?
|
|
|
|
DebugLoc PrologEndLoc;
|
|
|
|
bool EmptyPrologue = true;
|
2014-05-01 06:17:38 +08:00
|
|
|
for (const auto &MBB : *MF) {
|
|
|
|
for (const auto &MI : MBB) {
|
2016-02-11 04:55:49 +08:00
|
|
|
if (!MI.isDebugValue() && !MI.getFlag(MachineInstr::FrameSetup) &&
|
|
|
|
MI.getDebugLoc()) {
|
2014-05-01 06:17:38 +08:00
|
|
|
PrologEndLoc = MI.getDebugLoc();
|
2014-01-30 09:39:17 +08:00
|
|
|
break;
|
2016-02-11 04:55:49 +08:00
|
|
|
} else if (!MI.isDebugValue()) {
|
|
|
|
EmptyPrologue = false;
|
2014-01-30 09:39:17 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-02-11 04:55:49 +08:00
|
|
|
|
2014-01-30 09:39:17 +08:00
|
|
|
// Record beginning of function if we have a non-empty prologue.
|
2015-03-31 03:14:47 +08:00
|
|
|
if (PrologEndLoc && !EmptyPrologue) {
|
|
|
|
DebugLoc FnStartDL = PrologEndLoc.getFnDebugLoc();
|
2014-01-30 09:39:17 +08:00
|
|
|
maybeRecordLocation(FnStartDL, MF);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-02 01:05:51 +08:00
|
|
|
TypeIndex CodeViewDebug::lowerType(const DIType *Ty) {
|
|
|
|
// Generic dispatch for lowering an unknown type.
|
|
|
|
switch (Ty->getTag()) {
|
2016-06-09 02:22:59 +08:00
|
|
|
case dwarf::DW_TAG_array_type:
|
|
|
|
return lowerTypeArray(cast<DICompositeType>(Ty));
|
2016-06-02 14:21:37 +08:00
|
|
|
case dwarf::DW_TAG_typedef:
|
|
|
|
return lowerTypeAlias(cast<DIDerivedType>(Ty));
|
2016-06-02 01:05:51 +08:00
|
|
|
case dwarf::DW_TAG_base_type:
|
|
|
|
return lowerTypeBasic(cast<DIBasicType>(Ty));
|
|
|
|
case dwarf::DW_TAG_pointer_type:
|
|
|
|
case dwarf::DW_TAG_reference_type:
|
|
|
|
case dwarf::DW_TAG_rvalue_reference_type:
|
|
|
|
return lowerTypePointer(cast<DIDerivedType>(Ty));
|
|
|
|
case dwarf::DW_TAG_ptr_to_member_type:
|
|
|
|
return lowerTypeMemberPointer(cast<DIDerivedType>(Ty));
|
|
|
|
case dwarf::DW_TAG_const_type:
|
|
|
|
case dwarf::DW_TAG_volatile_type:
|
|
|
|
return lowerTypeModifier(cast<DIDerivedType>(Ty));
|
2016-06-03 01:13:53 +08:00
|
|
|
case dwarf::DW_TAG_subroutine_type:
|
|
|
|
return lowerTypeFunction(cast<DISubroutineType>(Ty));
|
2016-06-17 05:32:16 +08:00
|
|
|
case dwarf::DW_TAG_enumeration_type:
|
|
|
|
return lowerTypeEnum(cast<DICompositeType>(Ty));
|
2016-06-03 23:58:20 +08:00
|
|
|
case dwarf::DW_TAG_class_type:
|
|
|
|
case dwarf::DW_TAG_structure_type:
|
|
|
|
return lowerTypeClass(cast<DICompositeType>(Ty));
|
|
|
|
case dwarf::DW_TAG_union_type:
|
|
|
|
return lowerTypeUnion(cast<DICompositeType>(Ty));
|
2016-06-02 01:05:51 +08:00
|
|
|
default:
|
|
|
|
// Use the null type index.
|
|
|
|
return TypeIndex();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-02 14:21:37 +08:00
|
|
|
TypeIndex CodeViewDebug::lowerTypeAlias(const DIDerivedType *Ty) {
|
|
|
|
DITypeRef UnderlyingTypeRef = Ty->getBaseType();
|
|
|
|
TypeIndex UnderlyingTypeIndex = getTypeIndex(UnderlyingTypeRef);
|
2016-06-16 02:00:01 +08:00
|
|
|
StringRef TypeName = Ty->getName();
|
|
|
|
|
|
|
|
SmallVector<StringRef, 5> QualifiedNameComponents;
|
|
|
|
const DISubprogram *ClosestSubprogram = getQualifiedNameComponents(
|
|
|
|
Ty->getScope().resolve(), QualifiedNameComponents);
|
|
|
|
|
|
|
|
if (ClosestSubprogram == nullptr) {
|
|
|
|
std::string FullyQualifiedName =
|
|
|
|
getQualifiedName(QualifiedNameComponents, TypeName);
|
|
|
|
GlobalUDTs.emplace_back(std::move(FullyQualifiedName), UnderlyingTypeIndex);
|
|
|
|
} else if (ClosestSubprogram == CurrentSubprogram) {
|
|
|
|
std::string FullyQualifiedName =
|
|
|
|
getQualifiedName(QualifiedNameComponents, TypeName);
|
|
|
|
LocalUDTs.emplace_back(std::move(FullyQualifiedName), UnderlyingTypeIndex);
|
|
|
|
}
|
|
|
|
// TODO: What if the ClosestSubprogram is neither null or the current
|
|
|
|
// subprogram? Currently, the UDT just gets dropped on the floor.
|
|
|
|
//
|
|
|
|
// The current behavior is not desirable. To get maximal fidelity, we would
|
|
|
|
// need to perform all type translation before beginning emission of .debug$S
|
|
|
|
// and then make LocalUDTs a member of FunctionInfo
|
|
|
|
|
2016-06-02 14:21:37 +08:00
|
|
|
if (UnderlyingTypeIndex == TypeIndex(SimpleTypeKind::Int32Long) &&
|
2016-06-16 02:00:01 +08:00
|
|
|
TypeName == "HRESULT")
|
2016-06-02 14:21:37 +08:00
|
|
|
return TypeIndex(SimpleTypeKind::HResult);
|
2016-06-04 23:40:33 +08:00
|
|
|
if (UnderlyingTypeIndex == TypeIndex(SimpleTypeKind::UInt16Short) &&
|
2016-06-16 02:00:01 +08:00
|
|
|
TypeName == "wchar_t")
|
2016-06-04 23:40:33 +08:00
|
|
|
return TypeIndex(SimpleTypeKind::WideCharacter);
|
2016-06-02 14:21:37 +08:00
|
|
|
return UnderlyingTypeIndex;
|
|
|
|
}
|
|
|
|
|
2016-06-09 02:22:59 +08:00
|
|
|
TypeIndex CodeViewDebug::lowerTypeArray(const DICompositeType *Ty) {
|
|
|
|
DITypeRef ElementTypeRef = Ty->getBaseType();
|
|
|
|
TypeIndex ElementTypeIndex = getTypeIndex(ElementTypeRef);
|
|
|
|
// IndexType is size_t, which depends on the bitness of the target.
|
|
|
|
TypeIndex IndexType = Asm->MAI->getPointerSize() == 8
|
|
|
|
? TypeIndex(SimpleTypeKind::UInt64Quad)
|
|
|
|
: TypeIndex(SimpleTypeKind::UInt32Long);
|
|
|
|
uint64_t Size = Ty->getSizeInBits() / 8;
|
|
|
|
ArrayRecord Record(ElementTypeIndex, IndexType, Size, Ty->getName());
|
|
|
|
return TypeTable.writeArray(Record);
|
|
|
|
}
|
|
|
|
|
2016-06-02 01:05:51 +08:00
|
|
|
TypeIndex CodeViewDebug::lowerTypeBasic(const DIBasicType *Ty) {
|
|
|
|
TypeIndex Index;
|
|
|
|
dwarf::TypeKind Kind;
|
|
|
|
uint32_t ByteSize;
|
|
|
|
|
|
|
|
Kind = static_cast<dwarf::TypeKind>(Ty->getEncoding());
|
2016-06-02 14:21:42 +08:00
|
|
|
ByteSize = Ty->getSizeInBits() / 8;
|
2016-06-02 01:05:51 +08:00
|
|
|
|
|
|
|
SimpleTypeKind STK = SimpleTypeKind::None;
|
|
|
|
switch (Kind) {
|
|
|
|
case dwarf::DW_ATE_address:
|
|
|
|
// FIXME: Translate
|
|
|
|
break;
|
|
|
|
case dwarf::DW_ATE_boolean:
|
|
|
|
switch (ByteSize) {
|
2016-06-02 15:02:32 +08:00
|
|
|
case 1: STK = SimpleTypeKind::Boolean8; break;
|
|
|
|
case 2: STK = SimpleTypeKind::Boolean16; break;
|
|
|
|
case 4: STK = SimpleTypeKind::Boolean32; break;
|
|
|
|
case 8: STK = SimpleTypeKind::Boolean64; break;
|
|
|
|
case 16: STK = SimpleTypeKind::Boolean128; break;
|
2016-06-02 01:05:51 +08:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case dwarf::DW_ATE_complex_float:
|
|
|
|
switch (ByteSize) {
|
2016-06-02 15:02:32 +08:00
|
|
|
case 2: STK = SimpleTypeKind::Complex16; break;
|
2016-06-02 01:05:51 +08:00
|
|
|
case 4: STK = SimpleTypeKind::Complex32; break;
|
|
|
|
case 8: STK = SimpleTypeKind::Complex64; break;
|
|
|
|
case 10: STK = SimpleTypeKind::Complex80; break;
|
|
|
|
case 16: STK = SimpleTypeKind::Complex128; break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case dwarf::DW_ATE_float:
|
|
|
|
switch (ByteSize) {
|
2016-06-02 15:02:32 +08:00
|
|
|
case 2: STK = SimpleTypeKind::Float16; break;
|
2016-06-02 01:05:51 +08:00
|
|
|
case 4: STK = SimpleTypeKind::Float32; break;
|
|
|
|
case 6: STK = SimpleTypeKind::Float48; break;
|
|
|
|
case 8: STK = SimpleTypeKind::Float64; break;
|
|
|
|
case 10: STK = SimpleTypeKind::Float80; break;
|
|
|
|
case 16: STK = SimpleTypeKind::Float128; break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case dwarf::DW_ATE_signed:
|
|
|
|
switch (ByteSize) {
|
2016-06-02 15:02:32 +08:00
|
|
|
case 1: STK = SimpleTypeKind::SByte; break;
|
|
|
|
case 2: STK = SimpleTypeKind::Int16Short; break;
|
|
|
|
case 4: STK = SimpleTypeKind::Int32; break;
|
|
|
|
case 8: STK = SimpleTypeKind::Int64Quad; break;
|
|
|
|
case 16: STK = SimpleTypeKind::Int128Oct; break;
|
2016-06-02 01:05:51 +08:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case dwarf::DW_ATE_unsigned:
|
|
|
|
switch (ByteSize) {
|
2016-06-02 15:02:32 +08:00
|
|
|
case 1: STK = SimpleTypeKind::Byte; break;
|
|
|
|
case 2: STK = SimpleTypeKind::UInt16Short; break;
|
|
|
|
case 4: STK = SimpleTypeKind::UInt32; break;
|
|
|
|
case 8: STK = SimpleTypeKind::UInt64Quad; break;
|
|
|
|
case 16: STK = SimpleTypeKind::UInt128Oct; break;
|
2016-06-02 01:05:51 +08:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case dwarf::DW_ATE_UTF:
|
|
|
|
switch (ByteSize) {
|
|
|
|
case 2: STK = SimpleTypeKind::Character16; break;
|
|
|
|
case 4: STK = SimpleTypeKind::Character32; break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case dwarf::DW_ATE_signed_char:
|
|
|
|
if (ByteSize == 1)
|
|
|
|
STK = SimpleTypeKind::SignedCharacter;
|
|
|
|
break;
|
|
|
|
case dwarf::DW_ATE_unsigned_char:
|
|
|
|
if (ByteSize == 1)
|
|
|
|
STK = SimpleTypeKind::UnsignedCharacter;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Apply some fixups based on the source-level type name.
|
|
|
|
if (STK == SimpleTypeKind::Int32 && Ty->getName() == "long int")
|
|
|
|
STK = SimpleTypeKind::Int32Long;
|
|
|
|
if (STK == SimpleTypeKind::UInt32 && Ty->getName() == "long unsigned int")
|
|
|
|
STK = SimpleTypeKind::UInt32Long;
|
2016-06-04 23:40:33 +08:00
|
|
|
if (STK == SimpleTypeKind::UInt16Short &&
|
|
|
|
(Ty->getName() == "wchar_t" || Ty->getName() == "__wchar_t"))
|
2016-06-02 01:05:51 +08:00
|
|
|
STK = SimpleTypeKind::WideCharacter;
|
|
|
|
if ((STK == SimpleTypeKind::SignedCharacter ||
|
|
|
|
STK == SimpleTypeKind::UnsignedCharacter) &&
|
|
|
|
Ty->getName() == "char")
|
|
|
|
STK = SimpleTypeKind::NarrowCharacter;
|
|
|
|
|
|
|
|
return TypeIndex(STK);
|
|
|
|
}
|
|
|
|
|
|
|
|
TypeIndex CodeViewDebug::lowerTypePointer(const DIDerivedType *Ty) {
|
|
|
|
TypeIndex PointeeTI = getTypeIndex(Ty->getBaseType());
|
|
|
|
|
|
|
|
// Pointers to simple types can use SimpleTypeMode, rather than having a
|
|
|
|
// dedicated pointer type record.
|
|
|
|
if (PointeeTI.isSimple() &&
|
|
|
|
PointeeTI.getSimpleMode() == SimpleTypeMode::Direct &&
|
|
|
|
Ty->getTag() == dwarf::DW_TAG_pointer_type) {
|
|
|
|
SimpleTypeMode Mode = Ty->getSizeInBits() == 64
|
|
|
|
? SimpleTypeMode::NearPointer64
|
|
|
|
: SimpleTypeMode::NearPointer32;
|
|
|
|
return TypeIndex(PointeeTI.getSimpleKind(), Mode);
|
|
|
|
}
|
|
|
|
|
|
|
|
PointerKind PK =
|
|
|
|
Ty->getSizeInBits() == 64 ? PointerKind::Near64 : PointerKind::Near32;
|
|
|
|
PointerMode PM = PointerMode::Pointer;
|
|
|
|
switch (Ty->getTag()) {
|
|
|
|
default: llvm_unreachable("not a pointer tag type");
|
|
|
|
case dwarf::DW_TAG_pointer_type:
|
|
|
|
PM = PointerMode::Pointer;
|
|
|
|
break;
|
|
|
|
case dwarf::DW_TAG_reference_type:
|
|
|
|
PM = PointerMode::LValueReference;
|
|
|
|
break;
|
|
|
|
case dwarf::DW_TAG_rvalue_reference_type:
|
|
|
|
PM = PointerMode::RValueReference;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
// FIXME: MSVC folds qualifiers into PointerOptions in the context of a method
|
|
|
|
// 'this' pointer, but not normal contexts. Figure out what we're supposed to
|
|
|
|
// do.
|
|
|
|
PointerOptions PO = PointerOptions::None;
|
|
|
|
PointerRecord PR(PointeeTI, PK, PM, PO, Ty->getSizeInBits() / 8);
|
|
|
|
return TypeTable.writePointer(PR);
|
|
|
|
}
|
|
|
|
|
|
|
|
TypeIndex CodeViewDebug::lowerTypeMemberPointer(const DIDerivedType *Ty) {
|
|
|
|
assert(Ty->getTag() == dwarf::DW_TAG_ptr_to_member_type);
|
|
|
|
TypeIndex ClassTI = getTypeIndex(Ty->getClassType());
|
|
|
|
TypeIndex PointeeTI = getTypeIndex(Ty->getBaseType());
|
|
|
|
PointerKind PK = Asm->MAI->getPointerSize() == 8 ? PointerKind::Near64
|
|
|
|
: PointerKind::Near32;
|
|
|
|
PointerMode PM = isa<DISubroutineType>(Ty->getBaseType())
|
|
|
|
? PointerMode::PointerToMemberFunction
|
|
|
|
: PointerMode::PointerToDataMember;
|
|
|
|
PointerOptions PO = PointerOptions::None; // FIXME
|
|
|
|
// FIXME: Thread this ABI info through metadata.
|
|
|
|
PointerToMemberRepresentation PMR = PointerToMemberRepresentation::Unknown;
|
|
|
|
MemberPointerInfo MPI(ClassTI, PMR);
|
|
|
|
PointerRecord PR(PointeeTI, PK, PM, PO, Ty->getSizeInBits() / 8, MPI);
|
|
|
|
return TypeTable.writePointer(PR);
|
|
|
|
}
|
|
|
|
|
2016-06-09 04:34:29 +08:00
|
|
|
/// Given a DWARF calling convention, get the CodeView equivalent. If we don't
|
|
|
|
/// have a translation, use the NearC convention.
|
|
|
|
static CallingConvention dwarfCCToCodeView(unsigned DwarfCC) {
|
|
|
|
switch (DwarfCC) {
|
|
|
|
case dwarf::DW_CC_normal: return CallingConvention::NearC;
|
|
|
|
case dwarf::DW_CC_BORLAND_msfastcall: return CallingConvention::NearFast;
|
|
|
|
case dwarf::DW_CC_BORLAND_thiscall: return CallingConvention::ThisCall;
|
|
|
|
case dwarf::DW_CC_BORLAND_stdcall: return CallingConvention::NearStdCall;
|
|
|
|
case dwarf::DW_CC_BORLAND_pascal: return CallingConvention::NearPascal;
|
|
|
|
case dwarf::DW_CC_LLVM_vectorcall: return CallingConvention::NearVector;
|
|
|
|
}
|
|
|
|
return CallingConvention::NearC;
|
|
|
|
}
|
|
|
|
|
2016-06-02 01:05:51 +08:00
|
|
|
TypeIndex CodeViewDebug::lowerTypeModifier(const DIDerivedType *Ty) {
|
|
|
|
ModifierOptions Mods = ModifierOptions::None;
|
|
|
|
bool IsModifier = true;
|
|
|
|
const DIType *BaseTy = Ty;
|
2016-06-03 01:40:51 +08:00
|
|
|
while (IsModifier && BaseTy) {
|
2016-06-02 01:05:51 +08:00
|
|
|
// FIXME: Need to add DWARF tag for __unaligned.
|
|
|
|
switch (BaseTy->getTag()) {
|
|
|
|
case dwarf::DW_TAG_const_type:
|
|
|
|
Mods |= ModifierOptions::Const;
|
|
|
|
break;
|
|
|
|
case dwarf::DW_TAG_volatile_type:
|
|
|
|
Mods |= ModifierOptions::Volatile;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
IsModifier = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (IsModifier)
|
|
|
|
BaseTy = cast<DIDerivedType>(BaseTy)->getBaseType().resolve();
|
|
|
|
}
|
|
|
|
TypeIndex ModifiedTI = getTypeIndex(BaseTy);
|
|
|
|
ModifierRecord MR(ModifiedTI, Mods);
|
|
|
|
return TypeTable.writeModifier(MR);
|
|
|
|
}
|
|
|
|
|
2016-06-03 01:13:53 +08:00
|
|
|
TypeIndex CodeViewDebug::lowerTypeFunction(const DISubroutineType *Ty) {
|
|
|
|
SmallVector<TypeIndex, 8> ReturnAndArgTypeIndices;
|
|
|
|
for (DITypeRef ArgTypeRef : Ty->getTypeArray())
|
|
|
|
ReturnAndArgTypeIndices.push_back(getTypeIndex(ArgTypeRef));
|
|
|
|
|
|
|
|
TypeIndex ReturnTypeIndex = TypeIndex::Void();
|
|
|
|
ArrayRef<TypeIndex> ArgTypeIndices = None;
|
|
|
|
if (!ReturnAndArgTypeIndices.empty()) {
|
|
|
|
auto ReturnAndArgTypesRef = makeArrayRef(ReturnAndArgTypeIndices);
|
|
|
|
ReturnTypeIndex = ReturnAndArgTypesRef.front();
|
|
|
|
ArgTypeIndices = ReturnAndArgTypesRef.drop_front();
|
|
|
|
}
|
|
|
|
|
|
|
|
ArgListRecord ArgListRec(TypeRecordKind::ArgList, ArgTypeIndices);
|
|
|
|
TypeIndex ArgListIndex = TypeTable.writeArgList(ArgListRec);
|
|
|
|
|
2016-06-09 04:34:29 +08:00
|
|
|
CallingConvention CC = dwarfCCToCodeView(Ty->getCC());
|
|
|
|
|
2016-06-03 01:13:53 +08:00
|
|
|
// TODO: Some functions are member functions, we should use a more appropriate
|
|
|
|
// record for those.
|
2016-06-09 04:34:29 +08:00
|
|
|
ProcedureRecord Procedure(ReturnTypeIndex, CC, FunctionOptions::None,
|
|
|
|
ArgTypeIndices.size(), ArgListIndex);
|
2016-06-03 01:13:53 +08:00
|
|
|
return TypeTable.writeProcedure(Procedure);
|
|
|
|
}
|
|
|
|
|
2016-06-03 23:58:20 +08:00
|
|
|
static MemberAccess translateAccessFlags(unsigned RecordTag,
|
|
|
|
const DIType *Member) {
|
|
|
|
switch (Member->getFlags() & DINode::FlagAccessibility) {
|
|
|
|
case DINode::FlagPrivate: return MemberAccess::Private;
|
|
|
|
case DINode::FlagPublic: return MemberAccess::Public;
|
|
|
|
case DINode::FlagProtected: return MemberAccess::Protected;
|
|
|
|
case 0:
|
|
|
|
// If there was no explicit access control, provide the default for the tag.
|
|
|
|
return RecordTag == dwarf::DW_TAG_class_type ? MemberAccess::Private
|
|
|
|
: MemberAccess::Public;
|
|
|
|
}
|
|
|
|
llvm_unreachable("access flags are exclusive");
|
|
|
|
}
|
|
|
|
|
|
|
|
static TypeRecordKind getRecordKind(const DICompositeType *Ty) {
|
|
|
|
switch (Ty->getTag()) {
|
|
|
|
case dwarf::DW_TAG_class_type: return TypeRecordKind::Class;
|
|
|
|
case dwarf::DW_TAG_structure_type: return TypeRecordKind::Struct;
|
|
|
|
}
|
|
|
|
llvm_unreachable("unexpected tag");
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Return the HasUniqueName option if it should be present in ClassOptions, or
|
|
|
|
/// None otherwise.
|
|
|
|
static ClassOptions getRecordUniqueNameOption(const DICompositeType *Ty) {
|
|
|
|
// MSVC always sets this flag now, even for local types. Clang doesn't always
|
|
|
|
// appear to give every type a linkage name, which may be problematic for us.
|
|
|
|
// FIXME: Investigate the consequences of not following them here.
|
|
|
|
return !Ty->getIdentifier().empty() ? ClassOptions::HasUniqueName
|
|
|
|
: ClassOptions::None;
|
|
|
|
}
|
|
|
|
|
2016-06-17 05:32:16 +08:00
|
|
|
TypeIndex CodeViewDebug::lowerTypeEnum(const DICompositeType *Ty) {
|
|
|
|
ClassOptions CO = ClassOptions::None | getRecordUniqueNameOption(Ty);
|
|
|
|
TypeIndex FTI;
|
2016-06-18 00:13:21 +08:00
|
|
|
unsigned EnumeratorCount = 0;
|
2016-06-17 05:32:16 +08:00
|
|
|
|
2016-06-18 00:13:21 +08:00
|
|
|
if (Ty->isForwardDecl()) {
|
2016-06-17 05:32:16 +08:00
|
|
|
CO |= ClassOptions::ForwardReference;
|
2016-06-18 00:13:21 +08:00
|
|
|
} else {
|
|
|
|
FieldListRecordBuilder Fields;
|
|
|
|
for (const DINode *Element : Ty->getElements()) {
|
|
|
|
// We assume that the frontend provides all members in source declaration
|
|
|
|
// order, which is what MSVC does.
|
|
|
|
if (auto *Enumerator = dyn_cast_or_null<DIEnumerator>(Element)) {
|
|
|
|
Fields.writeEnumerator(EnumeratorRecord(
|
|
|
|
MemberAccess::Public, APSInt::getUnsigned(Enumerator->getValue()),
|
|
|
|
Enumerator->getName()));
|
|
|
|
EnumeratorCount++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
FTI = TypeTable.writeFieldList(Fields);
|
|
|
|
}
|
2016-06-17 05:32:16 +08:00
|
|
|
|
2016-06-18 00:13:21 +08:00
|
|
|
return TypeTable.writeEnum(EnumRecord(EnumeratorCount, CO, FTI, Ty->getName(),
|
2016-06-17 05:32:16 +08:00
|
|
|
Ty->getIdentifier(),
|
|
|
|
getTypeIndex(Ty->getBaseType())));
|
|
|
|
}
|
|
|
|
|
2016-06-03 23:58:20 +08:00
|
|
|
TypeIndex CodeViewDebug::lowerTypeClass(const DICompositeType *Ty) {
|
|
|
|
// First, construct the forward decl. Don't look into Ty to compute the
|
|
|
|
// forward decl options, since it might not be available in all TUs.
|
|
|
|
TypeRecordKind Kind = getRecordKind(Ty);
|
|
|
|
ClassOptions CO =
|
|
|
|
ClassOptions::ForwardReference | getRecordUniqueNameOption(Ty);
|
|
|
|
TypeIndex FwdDeclTI = TypeTable.writeClass(ClassRecord(
|
|
|
|
Kind, 0, CO, HfaKind::None, WindowsRTClassKind::None, TypeIndex(),
|
|
|
|
TypeIndex(), TypeIndex(), 0, Ty->getName(), Ty->getIdentifier()));
|
|
|
|
return FwdDeclTI;
|
|
|
|
}
|
|
|
|
|
|
|
|
TypeIndex CodeViewDebug::lowerCompleteTypeClass(const DICompositeType *Ty) {
|
|
|
|
// Construct the field list and complete type record.
|
|
|
|
TypeRecordKind Kind = getRecordKind(Ty);
|
|
|
|
// FIXME: Other ClassOptions, like ContainsNestedClass and NestedClass.
|
|
|
|
ClassOptions CO = ClassOptions::None | getRecordUniqueNameOption(Ty);
|
|
|
|
TypeIndex FTI;
|
|
|
|
unsigned FieldCount;
|
|
|
|
std::tie(FTI, FieldCount) = lowerRecordFieldList(Ty);
|
|
|
|
|
|
|
|
uint64_t SizeInBytes = Ty->getSizeInBits() / 8;
|
|
|
|
return TypeTable.writeClass(ClassRecord(Kind, FieldCount, CO, HfaKind::None,
|
|
|
|
WindowsRTClassKind::None, FTI,
|
|
|
|
TypeIndex(), TypeIndex(), SizeInBytes,
|
|
|
|
Ty->getName(), Ty->getIdentifier()));
|
|
|
|
// FIXME: Make an LF_UDT_SRC_LINE record.
|
|
|
|
}
|
|
|
|
|
|
|
|
TypeIndex CodeViewDebug::lowerTypeUnion(const DICompositeType *Ty) {
|
|
|
|
ClassOptions CO =
|
|
|
|
ClassOptions::ForwardReference | getRecordUniqueNameOption(Ty);
|
|
|
|
TypeIndex FwdDeclTI =
|
|
|
|
TypeTable.writeUnion(UnionRecord(0, CO, HfaKind::None, TypeIndex(), 0,
|
|
|
|
Ty->getName(), Ty->getIdentifier()));
|
|
|
|
return FwdDeclTI;
|
|
|
|
}
|
|
|
|
|
|
|
|
TypeIndex CodeViewDebug::lowerCompleteTypeUnion(const DICompositeType *Ty) {
|
|
|
|
ClassOptions CO = ClassOptions::None | getRecordUniqueNameOption(Ty);
|
|
|
|
TypeIndex FTI;
|
|
|
|
unsigned FieldCount;
|
|
|
|
std::tie(FTI, FieldCount) = lowerRecordFieldList(Ty);
|
|
|
|
uint64_t SizeInBytes = Ty->getSizeInBits() / 8;
|
|
|
|
return TypeTable.writeUnion(UnionRecord(FieldCount, CO, HfaKind::None, FTI,
|
|
|
|
SizeInBytes, Ty->getName(),
|
|
|
|
Ty->getIdentifier()));
|
|
|
|
// FIXME: Make an LF_UDT_SRC_LINE record.
|
|
|
|
}
|
|
|
|
|
|
|
|
std::pair<TypeIndex, unsigned>
|
|
|
|
CodeViewDebug::lowerRecordFieldList(const DICompositeType *Ty) {
|
|
|
|
// Manually count members. MSVC appears to count everything that generates a
|
|
|
|
// field list record. Each individual overload in a method overload group
|
|
|
|
// contributes to this count, even though the overload group is a single field
|
|
|
|
// list record.
|
|
|
|
unsigned MemberCount = 0;
|
|
|
|
FieldListRecordBuilder Fields;
|
|
|
|
for (const DINode *Element : Ty->getElements()) {
|
|
|
|
// We assume that the frontend provides all members in source declaration
|
|
|
|
// order, which is what MSVC does.
|
|
|
|
if (!Element)
|
|
|
|
continue;
|
|
|
|
if (auto *SP = dyn_cast<DISubprogram>(Element)) {
|
|
|
|
// C++ method.
|
|
|
|
// FIXME: Overloaded methods are grouped together, so we'll need two
|
|
|
|
// passes to group them.
|
|
|
|
(void)SP;
|
|
|
|
} else if (auto *Member = dyn_cast<DIDerivedType>(Element)) {
|
|
|
|
if (Member->getTag() == dwarf::DW_TAG_member) {
|
|
|
|
if (Member->isStaticMember()) {
|
|
|
|
// Static data member.
|
|
|
|
Fields.writeStaticDataMember(StaticDataMemberRecord(
|
|
|
|
translateAccessFlags(Ty->getTag(), Member),
|
|
|
|
getTypeIndex(Member->getBaseType()), Member->getName()));
|
|
|
|
MemberCount++;
|
|
|
|
} else {
|
|
|
|
// Data member.
|
|
|
|
// FIXME: Make a BitFieldRecord for bitfields.
|
|
|
|
Fields.writeDataMember(DataMemberRecord(
|
|
|
|
translateAccessFlags(Ty->getTag(), Member),
|
|
|
|
getTypeIndex(Member->getBaseType()),
|
|
|
|
Member->getOffsetInBits() / 8, Member->getName()));
|
|
|
|
MemberCount++;
|
|
|
|
}
|
|
|
|
} else if (Member->getTag() == dwarf::DW_TAG_friend) {
|
|
|
|
// Ignore friend members. It appears that MSVC emitted info about
|
|
|
|
// friends in the past, but modern versions do not.
|
|
|
|
}
|
|
|
|
// FIXME: Get clang to emit nested types here and do something with
|
|
|
|
// them.
|
|
|
|
}
|
|
|
|
// Skip other unrecognized kinds of elements.
|
|
|
|
}
|
|
|
|
return {TypeTable.writeFieldList(Fields), MemberCount};
|
|
|
|
}
|
|
|
|
|
2016-06-02 01:05:51 +08:00
|
|
|
TypeIndex CodeViewDebug::getTypeIndex(DITypeRef TypeRef) {
|
|
|
|
const DIType *Ty = TypeRef.resolve();
|
|
|
|
|
|
|
|
// The null DIType is the void type. Don't try to hash it.
|
|
|
|
if (!Ty)
|
|
|
|
return TypeIndex::Void();
|
|
|
|
|
2016-06-03 23:58:20 +08:00
|
|
|
// Check if we've already translated this type. Don't try to do a
|
|
|
|
// get-or-create style insertion that caches the hash lookup across the
|
|
|
|
// lowerType call. It will update the TypeIndices map.
|
2016-06-02 01:05:51 +08:00
|
|
|
auto I = TypeIndices.find(Ty);
|
|
|
|
if (I != TypeIndices.end())
|
|
|
|
return I->second;
|
|
|
|
|
|
|
|
TypeIndex TI = lowerType(Ty);
|
|
|
|
|
2016-06-03 23:58:20 +08:00
|
|
|
recordTypeIndexForDINode(Ty, TI);
|
|
|
|
return TI;
|
|
|
|
}
|
|
|
|
|
|
|
|
TypeIndex CodeViewDebug::getCompleteTypeIndex(DITypeRef TypeRef) {
|
|
|
|
const DIType *Ty = TypeRef.resolve();
|
|
|
|
|
|
|
|
// The null DIType is the void type. Don't try to hash it.
|
|
|
|
if (!Ty)
|
|
|
|
return TypeIndex::Void();
|
|
|
|
|
|
|
|
// If this is a non-record type, the complete type index is the same as the
|
|
|
|
// normal type index. Just call getTypeIndex.
|
|
|
|
switch (Ty->getTag()) {
|
|
|
|
case dwarf::DW_TAG_class_type:
|
|
|
|
case dwarf::DW_TAG_structure_type:
|
|
|
|
case dwarf::DW_TAG_union_type:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return getTypeIndex(Ty);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check if we've already translated the complete record type. Lowering a
|
|
|
|
// complete type should never trigger lowering another complete type, so we
|
|
|
|
// can reuse the hash table lookup result.
|
|
|
|
const auto *CTy = cast<DICompositeType>(Ty);
|
|
|
|
auto InsertResult = CompleteTypeIndices.insert({CTy, TypeIndex()});
|
|
|
|
if (!InsertResult.second)
|
|
|
|
return InsertResult.first->second;
|
|
|
|
|
|
|
|
// Make sure the forward declaration is emitted first. It's unclear if this
|
|
|
|
// is necessary, but MSVC does it, and we should follow suit until we can show
|
|
|
|
// otherwise.
|
|
|
|
TypeIndex FwdDeclTI = getTypeIndex(CTy);
|
|
|
|
|
|
|
|
// Just use the forward decl if we don't have complete type info. This might
|
|
|
|
// happen if the frontend is using modules and expects the complete definition
|
|
|
|
// to be emitted elsewhere.
|
|
|
|
if (CTy->isForwardDecl())
|
|
|
|
return FwdDeclTI;
|
|
|
|
|
|
|
|
TypeIndex TI;
|
|
|
|
switch (CTy->getTag()) {
|
|
|
|
case dwarf::DW_TAG_class_type:
|
|
|
|
case dwarf::DW_TAG_structure_type:
|
|
|
|
TI = lowerCompleteTypeClass(CTy);
|
|
|
|
break;
|
|
|
|
case dwarf::DW_TAG_union_type:
|
|
|
|
TI = lowerCompleteTypeUnion(CTy);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
llvm_unreachable("not a record");
|
|
|
|
}
|
|
|
|
|
|
|
|
InsertResult.first->second = TI;
|
2016-06-02 01:05:51 +08:00
|
|
|
return TI;
|
|
|
|
}
|
|
|
|
|
2016-02-11 04:55:49 +08:00
|
|
|
void CodeViewDebug::emitLocalVariable(const LocalVariable &Var) {
|
|
|
|
// LocalSym record, see SymbolRecord.h for more info.
|
|
|
|
MCSymbol *LocalBegin = MMI->getContext().createTempSymbol(),
|
|
|
|
*LocalEnd = MMI->getContext().createTempSymbol();
|
|
|
|
OS.AddComment("Record length");
|
|
|
|
OS.emitAbsoluteSymbolDiff(LocalEnd, LocalBegin, 2);
|
|
|
|
OS.EmitLabel(LocalBegin);
|
|
|
|
|
|
|
|
OS.AddComment("Record kind: S_LOCAL");
|
2016-05-18 07:50:21 +08:00
|
|
|
OS.EmitIntValue(unsigned(SymbolKind::S_LOCAL), 2);
|
2016-02-11 04:55:49 +08:00
|
|
|
|
2016-05-18 07:50:21 +08:00
|
|
|
LocalSymFlags Flags = LocalSymFlags::None;
|
2016-02-11 04:55:49 +08:00
|
|
|
if (Var.DIVar->isParameter())
|
2016-05-18 07:50:21 +08:00
|
|
|
Flags |= LocalSymFlags::IsParameter;
|
2016-02-13 05:48:30 +08:00
|
|
|
if (Var.DefRanges.empty())
|
2016-05-18 07:50:21 +08:00
|
|
|
Flags |= LocalSymFlags::IsOptimizedOut;
|
2016-02-11 04:55:49 +08:00
|
|
|
|
|
|
|
OS.AddComment("TypeIndex");
|
2016-06-03 23:58:20 +08:00
|
|
|
TypeIndex TI = getCompleteTypeIndex(Var.DIVar->getType());
|
2016-06-02 01:05:51 +08:00
|
|
|
OS.EmitIntValue(TI.getIndex(), 4);
|
2016-02-11 04:55:49 +08:00
|
|
|
OS.AddComment("Flags");
|
2016-05-18 07:50:21 +08:00
|
|
|
OS.EmitIntValue(static_cast<uint16_t>(Flags), 2);
|
2016-03-13 18:53:30 +08:00
|
|
|
// Truncate the name so we won't overflow the record length field.
|
2016-03-14 13:15:09 +08:00
|
|
|
emitNullTerminatedSymbolName(OS, Var.DIVar->getName());
|
2016-02-11 04:55:49 +08:00
|
|
|
OS.EmitLabel(LocalEnd);
|
|
|
|
|
2016-02-13 05:48:30 +08:00
|
|
|
// Calculate the on disk prefix of the appropriate def range record. The
|
|
|
|
// records and on disk formats are described in SymbolRecords.h. BytePrefix
|
|
|
|
// should be big enough to hold all forms without memory allocation.
|
|
|
|
SmallString<20> BytePrefix;
|
|
|
|
for (const LocalVarDefRange &DefRange : Var.DefRanges) {
|
|
|
|
BytePrefix.clear();
|
|
|
|
// FIXME: Handle bitpieces.
|
|
|
|
if (DefRange.StructOffset != 0)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (DefRange.InMemory) {
|
2016-05-24 02:49:06 +08:00
|
|
|
DefRangeRegisterRelSym Sym(DefRange.CVRegister, 0, DefRange.DataOffset, 0,
|
|
|
|
0, 0, ArrayRef<LocalVariableAddrGap>());
|
2016-02-13 05:48:30 +08:00
|
|
|
ulittle16_t SymKind = ulittle16_t(S_DEFRANGE_REGISTER_REL);
|
|
|
|
BytePrefix +=
|
|
|
|
StringRef(reinterpret_cast<const char *>(&SymKind), sizeof(SymKind));
|
2016-05-24 02:49:06 +08:00
|
|
|
BytePrefix +=
|
|
|
|
StringRef(reinterpret_cast<const char *>(&Sym.Header),
|
|
|
|
sizeof(Sym.Header) - sizeof(LocalVariableAddrRange));
|
2016-02-13 05:48:30 +08:00
|
|
|
} else {
|
|
|
|
assert(DefRange.DataOffset == 0 && "unexpected offset into register");
|
2016-05-24 02:49:06 +08:00
|
|
|
// Unclear what matters here.
|
|
|
|
DefRangeRegisterSym Sym(DefRange.CVRegister, 0, 0, 0, 0,
|
|
|
|
ArrayRef<LocalVariableAddrGap>());
|
2016-02-13 05:48:30 +08:00
|
|
|
ulittle16_t SymKind = ulittle16_t(S_DEFRANGE_REGISTER);
|
|
|
|
BytePrefix +=
|
|
|
|
StringRef(reinterpret_cast<const char *>(&SymKind), sizeof(SymKind));
|
2016-05-24 02:49:06 +08:00
|
|
|
BytePrefix +=
|
|
|
|
StringRef(reinterpret_cast<const char *>(&Sym.Header),
|
|
|
|
sizeof(Sym.Header) - sizeof(LocalVariableAddrRange));
|
2016-02-13 05:48:30 +08:00
|
|
|
}
|
|
|
|
OS.EmitCVDefRangeDirective(DefRange.Ranges, BytePrefix);
|
|
|
|
}
|
2016-02-11 04:55:49 +08:00
|
|
|
}
|
|
|
|
|
2016-01-15 03:25:04 +08:00
|
|
|
void CodeViewDebug::endFunction(const MachineFunction *MF) {
|
2014-01-30 09:39:17 +08:00
|
|
|
if (!Asm || !CurFn) // We haven't created any debug info for this function.
|
|
|
|
return;
|
|
|
|
|
2014-03-26 19:24:36 +08:00
|
|
|
const Function *GV = MF->getFunction();
|
2014-06-20 18:26:56 +08:00
|
|
|
assert(FnDebugInfo.count(GV));
|
2014-03-26 19:24:36 +08:00
|
|
|
assert(CurFn == &FnDebugInfo[GV]);
|
|
|
|
|
2016-03-11 10:14:16 +08:00
|
|
|
collectVariableInfo(GV->getSubprogram());
|
2016-02-13 05:48:30 +08:00
|
|
|
|
|
|
|
DebugHandlerBase::endFunction(MF);
|
|
|
|
|
2016-01-29 08:49:42 +08:00
|
|
|
// Don't emit anything if we don't have any line tables.
|
|
|
|
if (!CurFn->HaveLineInfo) {
|
2014-03-26 19:24:36 +08:00
|
|
|
FnDebugInfo.erase(GV);
|
2016-02-11 04:55:49 +08:00
|
|
|
CurFn = nullptr;
|
|
|
|
return;
|
2014-03-26 17:50:36 +08:00
|
|
|
}
|
2016-02-11 04:55:49 +08:00
|
|
|
|
|
|
|
CurFn->End = Asm->getFunctionEnd();
|
|
|
|
|
2014-04-24 14:44:33 +08:00
|
|
|
CurFn = nullptr;
|
2014-01-30 09:39:17 +08:00
|
|
|
}
|
|
|
|
|
2016-01-15 03:25:04 +08:00
|
|
|
void CodeViewDebug::beginInstruction(const MachineInstr *MI) {
|
2016-02-11 04:55:49 +08:00
|
|
|
DebugHandlerBase::beginInstruction(MI);
|
|
|
|
|
2014-01-30 09:39:17 +08:00
|
|
|
// Ignore DBG_VALUE locations and function prologue.
|
|
|
|
if (!Asm || MI->isDebugValue() || MI->getFlag(MachineInstr::FrameSetup))
|
|
|
|
return;
|
|
|
|
DebugLoc DL = MI->getDebugLoc();
|
2015-03-31 03:14:47 +08:00
|
|
|
if (DL == PrevInstLoc || !DL)
|
2014-01-30 09:39:17 +08:00
|
|
|
return;
|
|
|
|
maybeRecordLocation(DL, Asm->MF);
|
|
|
|
}
|
2016-06-07 08:02:03 +08:00
|
|
|
|
|
|
|
MCSymbol *CodeViewDebug::beginCVSubsection(ModuleSubstreamKind Kind) {
|
|
|
|
MCSymbol *BeginLabel = MMI->getContext().createTempSymbol(),
|
|
|
|
*EndLabel = MMI->getContext().createTempSymbol();
|
|
|
|
OS.EmitIntValue(unsigned(Kind), 4);
|
|
|
|
OS.AddComment("Subsection size");
|
|
|
|
OS.emitAbsoluteSymbolDiff(EndLabel, BeginLabel, 4);
|
|
|
|
OS.EmitLabel(BeginLabel);
|
|
|
|
return EndLabel;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CodeViewDebug::endCVSubsection(MCSymbol *EndLabel) {
|
|
|
|
OS.EmitLabel(EndLabel);
|
|
|
|
// Every subsection must be aligned to a 4-byte boundary.
|
|
|
|
OS.EmitValueToAlignment(4);
|
|
|
|
}
|
|
|
|
|
2016-06-16 02:00:01 +08:00
|
|
|
void CodeViewDebug::emitDebugInfoForUDTs(
|
|
|
|
ArrayRef<std::pair<std::string, TypeIndex>> UDTs) {
|
|
|
|
for (const std::pair<std::string, codeview::TypeIndex> &UDT : UDTs) {
|
|
|
|
MCSymbol *UDTRecordBegin = MMI->getContext().createTempSymbol(),
|
|
|
|
*UDTRecordEnd = MMI->getContext().createTempSymbol();
|
|
|
|
OS.AddComment("Record length");
|
|
|
|
OS.emitAbsoluteSymbolDiff(UDTRecordEnd, UDTRecordBegin, 2);
|
|
|
|
OS.EmitLabel(UDTRecordBegin);
|
|
|
|
|
|
|
|
OS.AddComment("Record kind: S_UDT");
|
|
|
|
OS.EmitIntValue(unsigned(SymbolKind::S_UDT), 2);
|
|
|
|
|
|
|
|
OS.AddComment("Type");
|
|
|
|
OS.EmitIntValue(UDT.second.getIndex(), 4);
|
|
|
|
|
|
|
|
emitNullTerminatedSymbolName(OS, UDT.first);
|
|
|
|
OS.EmitLabel(UDTRecordEnd);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-07 08:02:03 +08:00
|
|
|
void CodeViewDebug::emitDebugInfoForGlobals() {
|
|
|
|
NamedMDNode *CUs = MMI->getModule()->getNamedMetadata("llvm.dbg.cu");
|
|
|
|
for (const MDNode *Node : CUs->operands()) {
|
|
|
|
const auto *CU = cast<DICompileUnit>(Node);
|
|
|
|
|
|
|
|
// First, emit all globals that are not in a comdat in a single symbol
|
|
|
|
// substream. MSVC doesn't like it if the substream is empty, so only open
|
|
|
|
// it if we have at least one global to emit.
|
|
|
|
switchToDebugSectionForSymbol(nullptr);
|
|
|
|
MCSymbol *EndLabel = nullptr;
|
|
|
|
for (const DIGlobalVariable *G : CU->getGlobalVariables()) {
|
2016-06-09 08:29:00 +08:00
|
|
|
if (const auto *GV = dyn_cast_or_null<GlobalVariable>(G->getVariable())) {
|
2016-06-15 08:19:52 +08:00
|
|
|
if (!GV->hasComdat() && !GV->isDeclarationForLinker()) {
|
2016-06-07 08:02:03 +08:00
|
|
|
if (!EndLabel) {
|
|
|
|
OS.AddComment("Symbol subsection for globals");
|
|
|
|
EndLabel = beginCVSubsection(ModuleSubstreamKind::Symbols);
|
|
|
|
}
|
|
|
|
emitDebugInfoForGlobal(G, Asm->getSymbol(GV));
|
|
|
|
}
|
2016-06-09 08:29:00 +08:00
|
|
|
}
|
2016-06-07 08:02:03 +08:00
|
|
|
}
|
|
|
|
if (EndLabel)
|
|
|
|
endCVSubsection(EndLabel);
|
|
|
|
|
|
|
|
// Second, emit each global that is in a comdat into its own .debug$S
|
|
|
|
// section along with its own symbol substream.
|
|
|
|
for (const DIGlobalVariable *G : CU->getGlobalVariables()) {
|
2016-06-09 08:29:00 +08:00
|
|
|
if (const auto *GV = dyn_cast_or_null<GlobalVariable>(G->getVariable())) {
|
2016-06-07 08:02:03 +08:00
|
|
|
if (GV->hasComdat()) {
|
|
|
|
MCSymbol *GVSym = Asm->getSymbol(GV);
|
|
|
|
OS.AddComment("Symbol subsection for " +
|
|
|
|
Twine(GlobalValue::getRealLinkageName(GV->getName())));
|
|
|
|
switchToDebugSectionForSymbol(GVSym);
|
|
|
|
EndLabel = beginCVSubsection(ModuleSubstreamKind::Symbols);
|
|
|
|
emitDebugInfoForGlobal(G, GVSym);
|
|
|
|
endCVSubsection(EndLabel);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CodeViewDebug::emitDebugInfoForGlobal(const DIGlobalVariable *DIGV,
|
|
|
|
MCSymbol *GVSym) {
|
|
|
|
// DataSym record, see SymbolRecord.h for more info.
|
|
|
|
// FIXME: Thread local data, etc
|
|
|
|
MCSymbol *DataBegin = MMI->getContext().createTempSymbol(),
|
|
|
|
*DataEnd = MMI->getContext().createTempSymbol();
|
|
|
|
OS.AddComment("Record length");
|
|
|
|
OS.emitAbsoluteSymbolDiff(DataEnd, DataBegin, 2);
|
|
|
|
OS.EmitLabel(DataBegin);
|
|
|
|
OS.AddComment("Record kind: S_GDATA32");
|
|
|
|
OS.EmitIntValue(unsigned(SymbolKind::S_GDATA32), 2);
|
|
|
|
OS.AddComment("Type");
|
|
|
|
OS.EmitIntValue(getCompleteTypeIndex(DIGV->getType()).getIndex(), 4);
|
|
|
|
OS.AddComment("DataOffset");
|
|
|
|
OS.EmitCOFFSecRel32(GVSym);
|
|
|
|
OS.AddComment("Segment");
|
|
|
|
OS.EmitCOFFSectionIndex(GVSym);
|
|
|
|
OS.AddComment("Name");
|
|
|
|
emitNullTerminatedSymbolName(OS, DIGV->getName());
|
|
|
|
OS.EmitLabel(DataEnd);
|
|
|
|
}
|