OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DIEAbbrevData
(Results
1 - 3
of
3
) sorted by null
/external/llvm/lib/CodeGen/AsmPrinter/
DIE.h
29
///
DIEAbbrevData
- Dwarf abbreviation data, describes the one attribute of a
31
class
DIEAbbrevData
{
40
DIEAbbrevData
(unsigned A, unsigned F) : Attribute(A), Form(F) {}
69
SmallVector<
DIEAbbrevData
, 8> Data;
78
const SmallVector<
DIEAbbrevData
, 8> &getData() const { return Data; }
86
Data.push_back(
DIEAbbrevData
(Attribute, Form));
92
Data.insert(Data.begin(),
DIEAbbrevData
(Attribute, Form));
DIE.cpp
29
//
DIEAbbrevData
Implementation
34
void
DIEAbbrevData
::Profile(FoldingSetNodeID &ID) const {
67
const
DIEAbbrevData
&AttrData = Data[i];
145
const SmallVector<
DIEAbbrevData
, 8> &Data = Abbrev.getData();
326
const SmallVector<
DIEAbbrevData
, 8> &AbbrevData = Abbrev.getData();
345
const SmallVector<
DIEAbbrevData
, 8> &AbbrevData = Abbrev.getData();
DwarfDebug.cpp
[
all
...]
Completed in 5377 milliseconds