OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Abbrev
(Results
1 - 9
of
9
) sorted by null
/external/llvm/lib/DebugInfo/
DWARFCompileUnit.h
26
const DWARFDebugAbbrev *
Abbrev
;
49
Abbrev
(DA), InfoSection(IS), AbbrevSection(AS),
DWARFContext.h
31
OwningPtr<DWARFDebugAbbrev>
Abbrev
;
/external/clang/lib/Frontend/
SerializedDiagnosticPrinter.cpp
358
static void AddSourceLocationAbbrev(llvm::BitCodeAbbrev *
Abbrev
) {
360
Abbrev
->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 10)); // File ID.
361
Abbrev
->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // Line.
362
Abbrev
->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // Column.
363
Abbrev
->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // Offset;
366
static void AddRangeLocationAbbrev(llvm::BitCodeAbbrev *
Abbrev
) {
367
AddSourceLocationAbbrev(
Abbrev
);
368
AddSourceLocationAbbrev(
Abbrev
);
385
BitCodeAbbrev *
Abbrev
= new BitCodeAbbrev();
386
Abbrev
->Add(BitCodeAbbrevOp(RECORD_VERSION))
[
all
...]
/external/llvm/lib/CodeGen/AsmPrinter/
DIE.h
120
///
Abbrev
- Buffer for constructing abbreviation.
122
DIEAbbrev
Abbrev
;
140
: Offset(0), Size(0),
Abbrev
(Tag, dwarf::DW_CHILDREN_no), Parent(0) {}
144
DIEAbbrev &getAbbrev() { return
Abbrev
; }
145
unsigned getAbbrevNumber() const { return
Abbrev
.getNumber(); }
146
unsigned getTag() const { return
Abbrev
.getTag(); }
155
void setTag(unsigned Tag) {
Abbrev
.setTag(Tag); }
162
Abbrev
.AddAttribute(Attribute, Form);
173
Abbrev
.setChildrenFlag(dwarf::DW_CHILDREN_yes);
DwarfDebug.cpp
281
void DwarfUnits::assignAbbrevNumber(DIEAbbrev &
Abbrev
) {
283
DIEAbbrev *InSet = AbbreviationsSet->GetOrInsertNode(&
Abbrev
);
286
if (InSet == &
Abbrev
) {
288
Abbreviations->push_back(&
Abbrev
);
291
Abbrev
.setNumber(Abbreviations->size());
294
Abbrev
.setNumber(InSet->getNumber());
[
all
...]
/external/clang/lib/Serialization/
GlobalModuleIndex.cpp
715
BitCodeAbbrev *
Abbrev
= new BitCodeAbbrev();
716
Abbrev
->Add(BitCodeAbbrevOp(IDENTIFIER_INDEX));
717
Abbrev
->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32));
718
Abbrev
->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob));
719
unsigned IDTableAbbrev = Stream.EmitAbbrev(
Abbrev
);
ASTWriter.cpp
[
all
...]
/frameworks/compile/slang/BitWriter_3_2/
BitcodeWriter.cpp
43
// VALUE_SYMTAB_BLOCK
abbrev
id's.
49
// CONSTANTS_BLOCK
abbrev
id's.
55
// FUNCTION_BLOCK
abbrev
id's.
197
//
Abbrev
for TYPE_CODE_POINTER.
204
//
Abbrev
for TYPE_CODE_FUNCTION.
213
//
Abbrev
for TYPE_CODE_STRUCT_ANON.
222
//
Abbrev
for TYPE_CODE_STRUCT_NAME.
229
//
Abbrev
for TYPE_CODE_STRUCT_NAMED.
238
//
Abbrev
for TYPE_CODE_ARRAY.
449
// Emit
abbrev
for globals, now that we know # sections and max alignment
[
all
...]
/external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp
44
// VALUE_SYMTAB_BLOCK
abbrev
id's.
50
// CONSTANTS_BLOCK
abbrev
id's.
56
// FUNCTION_BLOCK
abbrev
id's.
324
//
Abbrev
for TYPE_CODE_POINTER.
331
//
Abbrev
for TYPE_CODE_FUNCTION.
340
//
Abbrev
for TYPE_CODE_STRUCT_ANON.
349
//
Abbrev
for TYPE_CODE_STRUCT_NAME.
356
//
Abbrev
for TYPE_CODE_STRUCT_NAMED.
365
//
Abbrev
for TYPE_CODE_ARRAY.
575
// Emit
abbrev
for globals, now that we know # sections and max alignment
[
all
...]
Completed in 260 milliseconds