summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.h
diff options
context:
space:
mode:
authorReid Kleckner <rnk@google.com>2016-01-29 00:49:42 +0000
committerReid Kleckner <rnk@google.com>2016-01-29 00:49:42 +0000
commit2214ed8937a05b9457b167a84d6732a448fad27f (patch)
tree8418d7840e286b16568c7f6c3301757fbd92771e /llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.h
parent0407108020ed12d8c34582d847d2c37cd68d1d0b (diff)
downloadbcm5719-llvm-2214ed8937a05b9457b167a84d6732a448fad27f.tar.gz
bcm5719-llvm-2214ed8937a05b9457b167a84d6732a448fad27f.zip
Reland "[CodeView] Use assembler directives for line tables"
This reverts commit r259126 and relands r259117. This time with updated library dependencies. llvm-svn: 259130
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.h')
-rw-r--r--llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.h70
1 files changed, 18 insertions, 52 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.h b/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.h
index 4294b4fd694..77b5ed39c1f 100644
--- a/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.h
+++ b/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.h
@@ -37,72 +37,38 @@ class LLVM_LIBRARY_VISIBILITY CodeViewDebug : public AsmPrinterHandler {
// to the end of the function.
struct FunctionInfo {
DebugLoc LastLoc;
- SmallVector<MCSymbol *, 10> Instrs;
- MCSymbol *End;
- FunctionInfo() : End(nullptr) {}
+ MCSymbol *End = nullptr;
+ unsigned FuncId = 0;
+ unsigned LastFileId;
+ bool HaveLineInfo = false;
};
FunctionInfo *CurFn;
- typedef DenseMap<const Function *, FunctionInfo> FnDebugInfoTy;
- FnDebugInfoTy FnDebugInfo;
- // Store the functions we've visited in a vector so we can maintain a stable
- // order while emitting subsections.
- SmallVector<const Function *, 10> VisitedFunctions;
-
- DenseMap<MCSymbol *, DebugLoc> LabelsAndLocs;
-
- // FileNameRegistry - Manages filenames observed while generating debug info
- // by filtering out duplicates and bookkeeping the offsets in the string
- // table to be generated.
- struct FileNameRegistryTy {
- SmallVector<StringRef, 10> Filenames;
- struct PerFileInfo {
- size_t FilenameID, StartOffset;
- };
- StringMap<PerFileInfo> Infos;
-
- // The offset in the string table where we'll write the next unique
- // filename.
- size_t LastOffset;
-
- FileNameRegistryTy() {
- clear();
- }
-
- // Add Filename to the registry, if it was not observed before.
- size_t add(StringRef Filename) {
- size_t OldSize = Infos.size();
- bool Inserted;
- StringMap<PerFileInfo>::iterator It;
- std::tie(It, Inserted) = Infos.insert(
- std::make_pair(Filename, PerFileInfo{OldSize, LastOffset}));
- if (Inserted) {
- LastOffset += Filename.size() + 1;
- Filenames.push_back(Filename);
- }
- return It->second.FilenameID;
- }
-
- void clear() {
- LastOffset = 1;
- Infos.clear();
- Filenames.clear();
- }
- } FileNameRegistry;
+ unsigned NextFuncId = 0;
+
+ /// Remember some debug info about each function. Keep it in a stable order to
+ /// emit at the end of the TU.
+ MapVector<const Function *, FunctionInfo> FnDebugInfo;
+
+ /// Map from DIFile to .cv_file id.
+ DenseMap<const DIFile *, unsigned> FileIdMap;
typedef std::map<const DIFile *, std::string> FileToFilepathMapTy;
FileToFilepathMapTy FileToFilepathMap;
StringRef getFullFilepath(const DIFile *S);
+ unsigned maybeRecordFile(const DIFile *F);
+
void maybeRecordLocation(DebugLoc DL, const MachineFunction *MF);
void clear() {
assert(CurFn == nullptr);
- FileNameRegistry.clear();
- LabelsAndLocs.clear();
+ FileIdMap.clear();
+ FnDebugInfo.clear();
+ FileToFilepathMap.clear();
}
- void emitDebugInfoForFunction(const Function *GV);
+ void emitDebugInfoForFunction(const Function *GV, FunctionInfo &FI);
public:
CodeViewDebug(AsmPrinter *Asm);
OpenPOWER on IntegriCloud