headers/bsd: Add sys/queue.h.
[haiku.git] / src / kits / debugger / dwarf / BaseUnit.cpp
blob76c561061b53a749ffe5fc5f52e4ac3816e840f8
1 /*
2 * Copyright 2009, Ingo Weinhold, ingo_weinhold@gmx.de.
3 * Copyright 2013, Rene Gollent, rene@gollent.com.
4 * Distributed under the terms of the MIT License.
5 */
8 #include "BaseUnit.h"
10 #include <new>
12 #include "DebugInfoEntries.h"
15 BaseUnit::BaseUnit(off_t headerOffset, off_t contentOffset,
16 off_t totalSize, off_t abbreviationOffset, uint8 addressSize,
17 bool isDwarf64)
19 fHeaderOffset(headerOffset),
20 fContentOffset(contentOffset),
21 fTotalSize(totalSize),
22 fAbbreviationOffset(abbreviationOffset),
23 fAbbreviationTable(NULL),
24 fAddressSize(addressSize),
25 fIsDwarf64(isDwarf64)
30 BaseUnit::~BaseUnit()
35 void
36 BaseUnit::SetAbbreviationTable(AbbreviationTable* abbreviationTable)
38 fAbbreviationTable = abbreviationTable;
42 status_t
43 BaseUnit::AddDebugInfoEntry(DebugInfoEntry* entry, off_t offset)
45 if (!fEntries.Add(entry))
46 return B_NO_MEMORY;
47 if (!fEntryOffsets.Add(offset)) {
48 fEntries.Remove(fEntries.Count() - 1);
49 return B_NO_MEMORY;
52 return B_OK;
56 bool
57 BaseUnit::ContainsAbsoluteOffset(off_t offset) const
59 return fHeaderOffset <= offset && fHeaderOffset + fTotalSize > offset;
63 void
64 BaseUnit::SetSourceLanguage(const SourceLanguageInfo* language)
66 fSourceLanguage = language;
70 int
71 BaseUnit::CountEntries() const
73 return fEntries.Count();
77 void
78 BaseUnit::GetEntryAt(int index, DebugInfoEntry*& entry,
79 off_t& offset) const
81 entry = fEntries[index];
82 offset = fEntryOffsets[index];
86 DebugInfoEntry*
87 BaseUnit::EntryForOffset(off_t offset) const
89 if (fEntries.IsEmpty())
90 return NULL;
92 // binary search
93 int lower = 0;
94 int upper = fEntries.Count() - 1;
95 while (lower < upper) {
96 int mid = (lower + upper + 1) / 2;
97 if (fEntryOffsets[mid] > offset)
98 upper = mid - 1;
99 else
100 lower = mid;
103 return fEntryOffsets[lower] == offset ? fEntries[lower] : NULL;