blob: bffad8af7513d324fdddda80e55d3a583bb7b132 [file] [log] [blame]
Zachary Turner21473f72015-02-08 00:29:29 +00001//===- PDBSymbolData.cpp - PDB data (e.g. variable) accessors ---*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
Zachary Turnerbae16b32015-02-08 20:58:09 +000010#include <utility>
Zachary Turnera5549172015-02-10 22:43:25 +000011#include "llvm/DebugInfo/PDB/PDBExtras.h"
Zachary Turner21473f72015-02-08 00:29:29 +000012#include "llvm/DebugInfo/PDB/PDBSymbolData.h"
13
Zachary Turnera5549172015-02-10 22:43:25 +000014#include "llvm/Support/Format.h"
15
Zachary Turner21473f72015-02-08 00:29:29 +000016using namespace llvm;
17
Zachary Turner98571ed2015-02-08 22:53:53 +000018PDBSymbolData::PDBSymbolData(const IPDBSession &PDBSession,
Zachary Turnerbae16b32015-02-08 20:58:09 +000019 std::unique_ptr<IPDBRawSymbol> DataSymbol)
20 : PDBSymbol(PDBSession, std::move(DataSymbol)) {}
Zachary Turner21473f72015-02-08 00:29:29 +000021
Zachary Turnera5549172015-02-10 22:43:25 +000022void PDBSymbolData::dump(raw_ostream &OS, int Indent,
23 PDB_DumpLevel Level) const {
24 OS.indent(Indent);
25 if (Level == PDB_DumpLevel::Compact) {
26 PDB_LocType Loc = getLocationType();
27 OS << Loc << " data [";
Zachary Turnerc074de02015-02-12 21:09:24 +000028 int Length;
Zachary Turnera5549172015-02-10 22:43:25 +000029 switch (Loc) {
30 case PDB_LocType::Static:
31 OS << format_hex(getRelativeVirtualAddress(), 10);
Zachary Turnerc074de02015-02-12 21:09:24 +000032 Length = getLength();
Zachary Turnera5549172015-02-10 22:43:25 +000033 break;
34 case PDB_LocType::TLS:
35 OS << getAddressSection() << ":" << format_hex(getAddressOffset(), 10);
36 break;
37 case PDB_LocType::RegRel:
38 OS << getRegisterId() << " + " << getOffset() << "]";
39 break;
40 case PDB_LocType::ThisRel:
41 OS << "this + " << getOffset() << "]";
42 break;
43 case PDB_LocType::Enregistered:
44 OS << getRegisterId() << "]";
45 break;
46 case PDB_LocType::BitField: {
47 uint32_t Offset = getOffset();
48 uint32_t BitPos = getBitPosition();
49 uint32_t Length = getLength();
50 uint32_t StartBits = 8 - BitPos;
51 uint32_t MiddleBytes = (Length - StartBits) / 8;
52 uint32_t EndBits = Length - StartBits - MiddleBytes * 8;
53 OS << format_hex(Offset, 10) << ":" << BitPos;
54 OS << " - " << format_hex(Offset + MiddleBytes, 10) << ":" << EndBits;
55 break;
56 }
57 case PDB_LocType::Slot:
58 OS << getSlot();
59 case PDB_LocType::IlRel:
60 case PDB_LocType::MetaData:
61 case PDB_LocType::Constant:
62 default:
63 OS << "???";
64 }
65 OS << "] ";
66 }
67 OS << getName() << "\n";
68}