HomeSort by relevance Sort by last modified time
    Searched refs:DWARFCompileUnit (Results 1 - 9 of 9) sorted by null

  /external/llvm/lib/DebugInfo/
DWARFDebugInfoEntry.h 20 class DWARFCompileUnit;
42 void dump(raw_ostream &OS, const DWARFCompileUnit *cu,
44 void dumpAttribute(raw_ostream &OS, const DWARFCompileUnit *cu,
48 bool extractFast(const DWARFCompileUnit *cu, const uint8_t *fixed_form_sizes,
53 bool extract(const DWARFCompileUnit *cu, uint32_t *offset_ptr);
118 uint32_t getAttributeValue(const DWARFCompileUnit *cu,
122 const char* getAttributeValueAsString(const DWARFCompileUnit* cu,
126 uint64_t getAttributeValueAsUnsigned(const DWARFCompileUnit *cu,
130 uint64_t getAttributeValueAsReference(const DWARFCompileUnit *cu,
134 int64_t getAttributeValueAsSigned(const DWARFCompileUnit* cu
    [all...]
DWARFFormValue.h 17 class DWARFCompileUnit;
51 void dump(raw_ostream &OS, const DWARFCompileUnit* cu) const;
53 const DWARFCompileUnit *cu);
58 uint64_t getReference(const DWARFCompileUnit* cu) const;
63 bool resolveCompileUnitReferences(const DWARFCompileUnit* cu);
70 const DWARFCompileUnit *) const;
72 const DWARFCompileUnit *cu) const;
74 uint32_t *offset_ptr, const DWARFCompileUnit *cu);
DWARFCompileUnit.cpp 1 //===-- DWARFCompileUnit.cpp ----------------------------------------------===//
10 #include "DWARFCompileUnit.h"
19 DataExtractor DWARFCompileUnit::getDebugInfoExtractor() const {
23 bool DWARFCompileUnit::extract(DataExtractor debug_info, uint32_t *offset_ptr) {
53 DWARFCompileUnit::extract(uint32_t offset, DataExtractor debug_info_data,
76 bool DWARFCompileUnit::extractRangeList(uint32_t RangeListOffset,
84 void DWARFCompileUnit::clear() {
94 void DWARFCompileUnit::dump(raw_ostream &OS) {
108 const char *DWARFCompileUnit::getCompilationDir() {
115 void DWARFCompileUnit::setDIERelations()
    [all...]
DWARFContext.h 13 #include "DWARFCompileUnit.h"
29 SmallVector<DWARFCompileUnit, 1> CUs;
35 SmallVector<DWARFCompileUnit, 1> DWOCUs;
67 DWARFCompileUnit *getCompileUnitAtIndex(unsigned index) {
74 DWARFCompileUnit *getDWOCompileUnitAtIndex(unsigned index) {
94 getLineTableForCompileUnit(DWARFCompileUnit *cu);
130 DWARFCompileUnit *getCompileUnitForOffset(uint32_t Offset);
134 DWARFCompileUnit *getCompileUnitForAddress(uint64_t Address);
DWARFDebugInfoEntry.cpp 11 #include "DWARFCompileUnit.h"
23 const DWARFCompileUnit *cu,
69 const DWARFCompileUnit *cu,
97 bool DWARFDebugInfoEntryMinimal::extractFast(const DWARFCompileUnit *cu,
228 DWARFDebugInfoEntryMinimal::extract(const DWARFCompileUnit *cu,
247 const_cast<DWARFCompileUnit*>(cu)->setBaseAddress(0);
260 const_cast<DWARFCompileUnit*>(cu)
383 DWARFDebugInfoEntryMinimal::getAttributeValue(const DWARFCompileUnit *cu,
419 const DWARFCompileUnit* cu,
433 const DWARFCompileUnit* cu
    [all...]
DWARFContext.cpp 52 DWARFCompileUnit *cu = getCompileUnitAtIndex(i);
199 DWARFContext::getLineTableForCompileUnit(DWARFCompileUnit *cu) {
224 CUs.push_back(DWARFCompileUnit(getDebugAbbrev(), getInfoSection(),
244 DWOCUs.push_back(DWARFCompileUnit(getDebugAbbrevDWO(), getInfoDWOSection(),
263 bool operator()(const DWARFCompileUnit &LHS,
264 const DWARFCompileUnit &RHS) const {
267 bool operator()(const DWARFCompileUnit &LHS, uint32_t RHS) const {
270 bool operator()(uint32_t LHS, const DWARFCompileUnit &RHS) const {
276 DWARFCompileUnit *DWARFContext::getCompileUnitForOffset(uint32_t Offset) {
280 DWARFCompileUnit *CU = std::lower_bound(CUs.begin(), CUs.end(), Offset
    [all...]
DWARFFormValue.cpp 11 #include "DWARFCompileUnit.h"
92 const DWARFCompileUnit *cu) {
210 const DWARFCompileUnit *cu) const {
216 uint32_t *offset_ptr, const DWARFCompileUnit *cu) {
315 DWARFFormValue::dump(raw_ostream &OS, const DWARFCompileUnit *cu) const {
464 const DWARFCompileUnit *cu) const {
471 uint64_t DWARFFormValue::getReference(const DWARFCompileUnit *cu) const {
489 DWARFFormValue::resolveCompileUnitReferences(const DWARFCompileUnit *cu) {
DWARFCompileUnit.h 1 //===-- DWARFCompileUnit.h --------------------------------------*- C++ -*-===//
25 class DWARFCompileUnit {
46 DWARFCompileUnit(const DWARFDebugAbbrev *DA, StringRef IS, StringRef AS,
DWARFDebugAranges.cpp 11 #include "DWARFCompileUnit.h"
95 if (DWARFCompileUnit *cu = ctx->getCompileUnitAtIndex(cu_idx)) {

Completed in 269 milliseconds