Searched refs:DWARFCompileUnit (Results 1 - 14 of 14) sorted by relevance

/external/llvm/lib/DebugInfo/DWARF/
H A DDWARFCompileUnit.cpp1 //===-- DWARFCompileUnit.cpp ----------------------------------------------===//
10 #include "llvm/DebugInfo/DWARF/DWARFCompileUnit.h"
16 void DWARFCompileUnit::dump(raw_ostream &OS) {
32 DWARFCompileUnit::~DWARFCompileUnit() {
H A DDWARFContext.cpp442 DWARFCompileUnit *DWARFContext::getCompileUnitForOffset(uint32_t Offset) {
447 DWARFCompileUnit *DWARFContext::getCompileUnitForAddress(uint64_t Address) {
454 static bool getFunctionNameForAddress(DWARFCompileUnit *CU, uint64_t Address,
479 DWARFCompileUnit *CU = getCompileUnitForAddress(Address);
495 DWARFCompileUnit *CU = getCompileUnitForAddress(Address);
538 DWARFCompileUnit *CU = getCompileUnitForAddress(Address);
/external/swiftshader/third_party/LLVM/lib/DebugInfo/
H A DDWARFFormValue.h17 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);
68 const DWARFCompileUnit *cu) const;
70 uint32_t *offset_ptr, const DWARFCompileUnit *cu);
H A DDWARFDebugInfoEntry.h19 class DWARFCompileUnit;
40 void dump(raw_ostream &OS, const DWARFCompileUnit *cu,
42 void dumpAttribute(raw_ostream &OS, const DWARFCompileUnit *cu,
46 bool extractFast(const DWARFCompileUnit *cu, const uint8_t *fixed_form_sizes,
51 bool extract(const DWARFCompileUnit *cu, uint32_t *offset_ptr);
109 uint32_t getAttributeValue(const DWARFCompileUnit *cu,
113 const char* getAttributeValueAsString(const DWARFCompileUnit* cu,
117 uint64_t getAttributeValueAsUnsigned(const DWARFCompileUnit *cu,
121 uint64_t getAttributeValueAsReference(const DWARFCompileUnit *cu,
125 int64_t getAttributeValueAsSigned(const DWARFCompileUnit* c
[all...]
H A DDWARFContext.cpp35 DWARFCompileUnit *cu = getCompileUnitAtIndex(i);
82 DWARFContext::getLineTableForCompileUnit(DWARFCompileUnit *cu) {
107 CUs.push_back(DWARFCompileUnit(*this));
119 bool operator()(const DWARFCompileUnit &LHS,
120 const DWARFCompileUnit &RHS) const {
123 bool operator()(const DWARFCompileUnit &LHS, uint32_t RHS) const {
126 bool operator()(uint32_t LHS, const DWARFCompileUnit &RHS) const {
132 DWARFCompileUnit *DWARFContext::getCompileUnitForOffset(uint32_t offset) {
136 DWARFCompileUnit *i = std::lower_bound(CUs.begin(), CUs.end(), offset,
147 DWARFCompileUnit *c
[all...]
H A DDWARFCompileUnit.cpp1 //===-- DWARFCompileUnit.cpp ----------------------------------------------===//
10 #include "DWARFCompileUnit.h"
19 DataExtractor DWARFCompileUnit::getDebugInfoExtractor() const {
24 bool DWARFCompileUnit::extract(DataExtractor debug_info, uint32_t *offset_ptr) {
55 DWARFCompileUnit::extract(uint32_t offset, DataExtractor debug_info_data,
78 void DWARFCompileUnit::clear() {
88 void DWARFCompileUnit::dump(raw_ostream &OS) {
100 void DWARFCompileUnit::setDIERelations() {
135 size_t DWARFCompileUnit::extractDIEsIfNeeded(bool cu_die_only) {
203 void DWARFCompileUnit
[all...]
H A DDWARFContext.h13 #include "DWARFCompileUnit.h"
29 SmallVector<DWARFCompileUnit, 1> CUs;
50 DWARFCompileUnit *getCompileUnitAtIndex(unsigned index) {
57 DWARFCompileUnit *getCompileUnitForOffset(uint32_t offset);
67 getLineTableForCompileUnit(DWARFCompileUnit *cu);
H A DDWARFDebugInfoEntry.cpp11 #include "DWARFCompileUnit.h"
22 const DWARFCompileUnit *cu,
68 const DWARFCompileUnit *cu,
96 bool DWARFDebugInfoEntryMinimal::extractFast(const DWARFCompileUnit *cu,
211 DWARFDebugInfoEntryMinimal::extract(const DWARFCompileUnit *cu,
230 const_cast<DWARFCompileUnit*>(cu)->setBaseAddress(0);
243 const_cast<DWARFCompileUnit*>(cu)
342 DWARFDebugInfoEntryMinimal::getAttributeValue(const DWARFCompileUnit *cu,
378 const DWARFCompileUnit* cu,
392 const DWARFCompileUnit* c
[all...]
H A DDWARFCompileUnit.h1 //===-- DWARFCompileUnit.h --------------------------------------*- C++ -*-===//
22 class DWARFCompileUnit { class in namespace:llvm
34 DWARFCompileUnit(DWARFContext &context) : Context(context) { function in class:llvm::DWARFCompileUnit
H A DDWARFFormValue.cpp11 #include "DWARFCompileUnit.h"
83 const DWARFCompileUnit *cu) {
169 const DWARFCompileUnit *cu) const {
175 uint32_t *offset_ptr, const DWARFCompileUnit *cu) {
260 DWARFFormValue::dump(raw_ostream &OS, const DWARFCompileUnit *cu) const {
365 uint64_t DWARFFormValue::getReference(const DWARFCompileUnit *cu) const {
383 DWARFFormValue::resolveCompileUnitReferences(const DWARFCompileUnit *cu) {
H A DDWARFDebugAranges.cpp11 #include "DWARFCompileUnit.h"
91 DWARFCompileUnit *cu = ctx->getCompileUnitAtIndex(cu_idx);
/external/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFCompileUnit.h1 //===-- DWARFCompileUnit.h --------------------------------------*- C++ -*-===//
17 class DWARFCompileUnit : public DWARFUnit { class in namespace:llvm
19 DWARFCompileUnit(DWARFContext &Context, const DWARFSection &Section, function in class:llvm::DWARFCompileUnit
29 ~DWARFCompileUnit() override;
H A DDWARFContext.h16 #include "llvm/DebugInfo/DWARF/DWARFCompileUnit.h"
41 DWARFUnitSection<DWARFCompileUnit> CUs;
53 DWARFUnitSection<DWARFCompileUnit> DWOCUs;
87 typedef DWARFUnitSection<DWARFCompileUnit>::iterator_range cu_iterator_range;
140 DWARFCompileUnit *getCompileUnitAtIndex(unsigned index) {
146 DWARFCompileUnit *getDWOCompileUnitAtIndex(unsigned index) {
230 DWARFCompileUnit *getCompileUnitForOffset(uint32_t Offset);
234 DWARFCompileUnit *getCompileUnitForAddress(uint64_t Address);
H A DDWARFDebugInfoEntry.h22 class DWARFCompileUnit;

Completed in 695 milliseconds