diff options
| author | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2015-02-21 01:02:18 +0000 |
|---|---|---|
| committer | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2015-02-21 01:02:18 +0000 |
| commit | 70ab3d2af667a97523d2ab4f03b0d2f978693f47 (patch) | |
| tree | 919c0b0fac56a22397ceba0d966be3dd0aec310f /llvm/lib/AsmParser/LLToken.h | |
| parent | c32f3faae9c7128dec280b8274de31400df5e704 (diff) | |
| download | bcm5719-llvm-70ab3d2af667a97523d2ab4f03b0d2f978693f47.tar.gz bcm5719-llvm-70ab3d2af667a97523d2ab4f03b0d2f978693f47.zip | |
AsmParser/Writer: Handle symbolic constants in DI 'flags:'
Parse (and write) symbolic constants in debug info `flags:` fields.
This prevents a readability (and CHECK-ability) regression with the new
debug info hierarchy.
Old (well, current) assembly, with pretty-printing:
!{!"...\\0016387", ...} ; ... [public] [rvalue reference]
Flags field without this change:
!MDDerivedType(flags: 16387, ...)
Flags field with this change:
!MDDerivedType(flags: DIFlagPublic | DIFlagRValueReference, ...)
As discussed in the review thread, this isn't a final state. Most of
these flags correspond to `DW_AT_` symbolic constants, and we might
eventually want to support arbitrary attributes in some form. However,
as it stands now, some of the flags correspond to other concepts (like
`FlagStaticMember`); until things are refactored this is the simplest
way to move forward without regressing assembly.
llvm-svn: 230111
Diffstat (limited to 'llvm/lib/AsmParser/LLToken.h')
| -rw-r--r-- | llvm/lib/AsmParser/LLToken.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/lib/AsmParser/LLToken.h b/llvm/lib/AsmParser/LLToken.h index 57218dafbb9..a7aa17c37cc 100644 --- a/llvm/lib/AsmParser/LLToken.h +++ b/llvm/lib/AsmParser/LLToken.h @@ -29,6 +29,7 @@ namespace lltok { less, greater, // < > lparen, rparen, // ( ) exclaim, // ! + bar, // | kw_x, kw_true, kw_false, @@ -203,6 +204,7 @@ namespace lltok { DwarfVirtuality, // DW_VIRTUALITY_foo DwarfLang, // DW_LANG_foo DwarfOp, // DW_OP_foo + DIFlag, // DIFlagFoo // Type valued tokens (TyVal). Type, |

