Home
last modified time | relevance | path

Searched refs:Abbrev (Results 1 – 19 of 19) sorted by relevance

/external/clang/lib/Frontend/
DSerializedDiagnosticPrinter.cpp358 static void AddSourceLocationAbbrev(llvm::BitCodeAbbrev *Abbrev) { in AddSourceLocationAbbrev() argument
360 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 10)); // File ID. in AddSourceLocationAbbrev()
361 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // Line. in AddSourceLocationAbbrev()
362 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // Column. in AddSourceLocationAbbrev()
363 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // Offset; in AddSourceLocationAbbrev()
366 static void AddRangeLocationAbbrev(llvm::BitCodeAbbrev *Abbrev) { in AddRangeLocationAbbrev() argument
367 AddSourceLocationAbbrev(Abbrev); in AddRangeLocationAbbrev()
368 AddSourceLocationAbbrev(Abbrev); in AddRangeLocationAbbrev()
385 BitCodeAbbrev *Abbrev = new BitCodeAbbrev(); in EmitBlockInfoBlock() local
386 Abbrev->Add(BitCodeAbbrevOp(RECORD_VERSION)); in EmitBlockInfoBlock()
[all …]
/external/llvm/lib/CodeGen/AsmPrinter/
DDwarfFile.cpp28 void DwarfFile::assignAbbrevNumber(DIEAbbrev &Abbrev) { in assignAbbrevNumber() argument
30 DIEAbbrev *InSet = AbbreviationsSet.GetOrInsertNode(&Abbrev); in assignAbbrevNumber()
33 if (InSet == &Abbrev) { in assignAbbrevNumber()
35 Abbreviations.push_back(&Abbrev); in assignAbbrevNumber()
38 Abbrev.setNumber(Abbreviations.size()); in assignAbbrevNumber()
41 Abbrev.setNumber(InSet->getNumber()); in assignAbbrevNumber()
97 const DIEAbbrev &Abbrev = Die.getAbbrev(); in computeSizeAndOffset() local
106 const SmallVectorImpl<DIEAbbrevData> &AbbrevData = Abbrev.getData(); in computeSizeAndOffset()
118 assert(Abbrev.hasChildren() && "Children flag not set"); in computeSizeAndOffset()
137 for (const DIEAbbrev *Abbrev : Abbreviations) { in emitAbbrevs() local
[all …]
DDIE.h123 DIEAbbrev Abbrev; variable
143 : Offset(0), Size(0), Abbrev((dwarf::Tag)0, dwarf::DW_CHILDREN_no), in DIE()
148 : Offset(0), Size(0), Abbrev((dwarf::Tag)Tag, dwarf::DW_CHILDREN_no), in DIE()
152 DIEAbbrev &getAbbrev() { return Abbrev; } in getAbbrev()
153 const DIEAbbrev &getAbbrev() const { return Abbrev; } in getAbbrev()
154 unsigned getAbbrevNumber() const { return Abbrev.getNumber(); } in getAbbrevNumber()
155 dwarf::Tag getTag() const { return Abbrev.getTag(); } in getTag()
175 Abbrev.AddAttribute(Attribute, Form); in addValue()
183 Abbrev.setChildrenFlag(dwarf::DW_CHILDREN_yes); in addChild()
DDIE.cpp143 bool isBlock = Abbrev.getTag() == 0; in print()
153 << dwarf::TagString(Abbrev.getTag()) in print()
155 << dwarf::ChildrenString(Abbrev.hasChildren()) << "\n"; in print()
160 const SmallVectorImpl<DIEAbbrevData> &Data = Abbrev.getData(); in print()
440 const SmallVectorImpl<DIEAbbrevData> &AbbrevData = Abbrev.getData(); in ComputeSize()
461 const SmallVectorImpl<DIEAbbrevData> &AbbrevData = Abbrev.getData(); in EmitValue()
495 const SmallVectorImpl<DIEAbbrevData> &AbbrevData = Abbrev.getData(); in ComputeSize()
514 const SmallVectorImpl<DIEAbbrevData> &AbbrevData = Abbrev.getData(); in EmitValue()
DDwarfFile.h63 void assignAbbrevNumber(DIEAbbrev &Abbrev);
DDwarfDebug.cpp1685 const DIEAbbrev &Abbrev = Die.getAbbrev(); in emitDIE() local
1689 Asm->OutStreamer.AddComment("Abbrev [" + Twine(Abbrev.getNumber()) + in emitDIE()
1692 dwarf::TagString(Abbrev.getTag())); in emitDIE()
1693 Asm->EmitULEB128(Abbrev.getNumber()); in emitDIE()
1696 const SmallVectorImpl<DIEAbbrevData> &AbbrevData = Abbrev.getData(); in emitDIE()
1716 if (Abbrev.hasChildren()) { in emitDIE()
/external/clang/lib/Serialization/
DASTWriter.cpp1060 BitCodeAbbrev *Abbrev = new BitCodeAbbrev(); in WriteControlBlock() local
1061 Abbrev->Add(BitCodeAbbrevOp(MODULE_NAME)); in WriteControlBlock()
1062 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // Name in WriteControlBlock()
1063 unsigned AbbrevCode = Stream.EmitAbbrev(Abbrev); in WriteControlBlock()
1071 BitCodeAbbrev *Abbrev = new BitCodeAbbrev(); in WriteControlBlock() local
1072 Abbrev->Add(BitCodeAbbrevOp(MODULE_MAP_FILE)); in WriteControlBlock()
1073 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // Filename in WriteControlBlock()
1074 unsigned AbbrevCode = Stream.EmitAbbrev(Abbrev); in WriteControlBlock()
1264 BitCodeAbbrev *Abbrev = new BitCodeAbbrev(); in WriteControlBlock() local
1265 Abbrev->Add(BitCodeAbbrevOp(ORIGINAL_PCH_DIR)); in WriteControlBlock()
[all …]
DGlobalModuleIndex.cpp749 BitCodeAbbrev *Abbrev = new BitCodeAbbrev(); in writeIndex() local
750 Abbrev->Add(BitCodeAbbrevOp(IDENTIFIER_INDEX)); in writeIndex()
751 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); in writeIndex()
752 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); in writeIndex()
753 unsigned IDTableAbbrev = Stream.EmitAbbrev(Abbrev); in writeIndex()
/external/llvm/include/llvm/Bitcode/
DBitstreamWriter.h314 void EmitRecordWithAbbrevImpl(unsigned Abbrev, SmallVectorImpl<uintty> &Vals, in EmitRecordWithAbbrevImpl() argument
318 unsigned AbbrevNo = Abbrev-bitc::FIRST_APPLICATION_ABBREV; in EmitRecordWithAbbrevImpl()
322 EmitCode(Abbrev); in EmitRecordWithAbbrevImpl()
410 unsigned Abbrev = 0) {
411 if (!Abbrev) {
425 EmitRecordWithAbbrev(Abbrev, Vals);
432 void EmitRecordWithAbbrev(unsigned Abbrev, SmallVectorImpl<uintty> &Vals) { in EmitRecordWithAbbrev() argument
433 EmitRecordWithAbbrevImpl(Abbrev, Vals, StringRef()); in EmitRecordWithAbbrev()
442 void EmitRecordWithBlob(unsigned Abbrev, SmallVectorImpl<uintty> &Vals, in EmitRecordWithBlob() argument
444 EmitRecordWithAbbrevImpl(Abbrev, Vals, Blob); in EmitRecordWithBlob()
[all …]
/external/llvm/test/DebugInfo/SystemZ/
Dvariable-loc.s107 .long .L.debug_abbrev_begin # Offset Into Abbrev. Section
109 .byte 1 # Abbrev [1] 0xb:0x94 DW_TAG_compile_unit
116 .byte 2 # Abbrev [2] 0x26:0x7 DW_TAG_subprogram
122 .byte 3 # Abbrev [3] 0x2d:0xb DW_TAG_subprogram
129 .byte 4 # Abbrev [4] 0x38:0x7 DW_TAG_base_type
133 .byte 5 # Abbrev [5] 0x3f:0xb DW_TAG_subprogram
141 .byte 6 # Abbrev [6] 0x4a:0x7 DW_TAG_base_type
145 .byte 7 # Abbrev [7] 0x51:0x5 DW_TAG_array_type
147 .byte 8 # Abbrev [8] 0x56:0x48 DW_TAG_subprogram
154 .byte 9 # Abbrev [9] 0x6d:0x30 DW_TAG_lexical_block
[all …]
/external/llvm/test/DebugInfo/
Dinlined-vars.ll37 ; ARGUMENT: {{.*Abbrev.*DW_TAG_formal_parameter}}
38 ; ARGUMENT: {{.*Abbrev.*DW_TAG_formal_parameter}}
39 ; ARGUMENT-NOT: {{.*Abbrev.*DW_TAG_formal_parameter}}
44 ; VARIABLE: {{.*Abbrev.*DW_TAG_variable}}
45 ; VARIABLE: {{.*Abbrev.*DW_TAG_variable}}
46 ; VARIABLE-NOT: {{.*Abbrev.*DW_TAG_variable}}
/external/llvm/test/MC/ELF/
Dcompression.s51 .long .Lsection_abbrev # Offset Into Abbrev. Section
53 .byte 1 # Abbrev [1] DW_TAG_compile_unit
Ddiscriminator.s19 .long .L.debug_abbrev_begin # Offset Into Abbrev. Section
21 .byte 1 # Abbrev [1] 0xb:0x1b DW_TAG_compile_unit
/external/llvm/lib/DebugInfo/
DDWARFContext.cpp222 if (Abbrev) in getDebugAbbrev()
223 return Abbrev.get(); in getDebugAbbrev()
227 Abbrev.reset(new DWARFDebugAbbrev()); in getDebugAbbrev()
228 Abbrev->extract(abbrData); in getDebugAbbrev()
229 return Abbrev.get(); in getDebugAbbrev()
DDWARFUnit.cpp23 : Abbrev(DA), InfoSection(IS), RangeSection(RS), StringSection(SS), in DWARFUnit()
67 Abbrevs = Abbrev->getAbbreviationDeclarationSet(AbbrOffset); in extractImpl()
DDWARFUnit.h30 const DWARFDebugAbbrev *Abbrev; variable
DDWARFContext.h36 std::unique_ptr<DWARFDebugAbbrev> Abbrev; variable
/external/llvm/test/DebugInfo/X86/
Dfission-cu.ll25 ; CHECK: Abbrev table for offset: 0x00000000
34 ; CHECK: Abbrev table for offset: 0x00000000
/external/ppp/pppd/plugins/radius/etc/
Ddictionary.ascend185 VALUE Ascend-PRI-Number-Type Abbrev-Number 5