Refactor generic Asm directive parsing.
authorEli Bendersky <eliben@google.com>
Tue, 15 Jan 2013 22:59:42 +0000 (22:59 +0000)
committerEli Bendersky <eliben@google.com>
Tue, 15 Jan 2013 22:59:42 +0000 (22:59 +0000)
commit6ee130893072977aa70e8ae6470e88171e782e46
treee0b37f13739e9a5db6dcf8533fc18cbf10a47880
parent34461e554ac359cee140434a01facefd25f720f1
Refactor generic Asm directive parsing.

After discussing the refactoring with Jim and Daniel, the following changes were
made:

* All generic directive parsing is now done by AsmParser itself. The previous
  division between it and GenericAsmParser did not have clear boundaries and
  just produced unnatural code of GenericAsmParser juggling the internals of
  AsmParser through an interface.
  The division of responsibilities is now clear: target-specific directives,
  other extensions (used by platform-specific parseres), and generic directives.
* Priority for directive parsing was reshuffled to ask extensions first and
  check the generic directives later.

No change in functionality.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@172568 91177308-0d34-0410-b5e6-96231b3b80d8
lib/MC/MCParser/AsmParser.cpp