diff options
author | Eric Christopher <echristo@gmail.com> | 2013-03-29 20:23:06 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2013-03-29 20:23:06 +0000 |
commit | 9c8414f84a2ecd1f86913a0476d6696955690c14 (patch) | |
tree | 5e67470f30d2cf95630f2d04d807030b2ab56eff /llvm/lib/CodeGen/AsmPrinter/DIE.cpp | |
parent | 6be35037b55d3be27f10432ced473584ba574ca9 (diff) | |
download | bcm5719-llvm-9c8414f84a2ecd1f86913a0476d6696955690c14.tar.gz bcm5719-llvm-9c8414f84a2ecd1f86913a0476d6696955690c14.zip |
Use 12 as the magic number for our abbreviation data and our
die values. A lot of DIEs have 10 attributes in C++ code (example
clang), none had more than 12. Seems like a good default.
llvm-svn: 178366
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/DIE.cpp')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DIE.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DIE.cpp b/llvm/lib/CodeGen/AsmPrinter/DIE.cpp index bbb04325819..0c5848d2966 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DIE.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/DIE.cpp @@ -144,7 +144,7 @@ void DIE::print(raw_ostream &O, unsigned IncIndent) { O << "Size: " << Size << "\n"; } - const SmallVector<DIEAbbrevData, 8> &Data = Abbrev.getData(); + const SmallVector<DIEAbbrevData, 12> &Data = Abbrev.getData(); IndentCount += 2; for (unsigned i = 0, N = Data.size(); i < N; ++i) { @@ -324,7 +324,7 @@ void DIEEntry::print(raw_ostream &O) { /// unsigned DIEBlock::ComputeSize(AsmPrinter *AP) { if (!Size) { - const SmallVector<DIEAbbrevData, 8> &AbbrevData = Abbrev.getData(); + const SmallVector<DIEAbbrevData, 12> &AbbrevData = Abbrev.getData(); for (unsigned i = 0, N = Values.size(); i < N; ++i) Size += Values[i]->SizeOf(AP, AbbrevData[i].getForm()); } @@ -343,7 +343,7 @@ void DIEBlock::EmitValue(AsmPrinter *Asm, unsigned Form) const { case dwarf::DW_FORM_block: Asm->EmitULEB128(Size); break; } - const SmallVector<DIEAbbrevData, 8> &AbbrevData = Abbrev.getData(); + const SmallVector<DIEAbbrevData, 12> &AbbrevData = Abbrev.getData(); for (unsigned i = 0, N = Values.size(); i < N; ++i) Values[i]->EmitValue(Asm, AbbrevData[i].getForm()); } |