Skip to content
  1. Feb 26, 2013
  2. Feb 25, 2013
  3. Feb 20, 2013
  4. Feb 16, 2013
  5. Feb 15, 2013
  6. Feb 14, 2013
  7. Feb 13, 2013
  8. Feb 12, 2013
  9. Jan 22, 2013
  10. Jan 18, 2013
  11. Jan 17, 2013
  12. Jan 16, 2013
  13. Jan 15, 2013
    • Eli Bendersky's avatar
      Refactor generic Asm directive parsing. · 17233946
      Eli Bendersky authored
      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.
      
      llvm-svn: 172568
      17233946
    • Eli Bendersky's avatar
      Now GenericAsmParser and AsmParser are no longer friends, GenericAsmParser can · e6f4c683
      Eli Bendersky authored
      simply use the getParser method from MCAsmParserExtension, working through the
      MCAsmParser interface. There's no longer a need to overload that method to
      cast it to the concrete AsmParser.
      
      llvm-svn: 172491
      e6f4c683
    • Eli Bendersky's avatar
      Properly encapsulate additional methods and data from AsmParser. · 38274128
      Eli Bendersky authored
      This finally allows AsmParser to no longer list GenericAsmParser as a friend.
      All member vars directly accessed by GenericAsmParser have been properly
      encapsulated and exposed through the MCAsmParser interface. This reduces the
      coupling between AsmParser and GenericAsmParser.
      
      llvm-svn: 172490
      38274128
  14. Jan 14, 2013
    • Eli Bendersky's avatar
      Move CheckForValidSection to the MCAsmParser interface. · 0a8fbdd0
      Eli Bendersky authored
      Now that it behaves itself in terms of streamer independence (r172450), this
      method can be moved to MCAsmParser to be available to all extensions,
      overriding, etc.
      
      -- -This line, and those below, will be ignored--
      
      M    lib/MC/MCParser/AsmParser.cpp
      M    include/llvm/MC/MCParser/MCAsmParser.h
      
      llvm-svn: 172451
      0a8fbdd0
    • Eli Bendersky's avatar
      Expose an InitToTextSection through MCStreamer. · cbb2514d
      Eli Bendersky authored
      The aim of this patch is to fix the following piece of code in the
      platform-independent AsmParser:
      
      void AsmParser::CheckForValidSection() {
        if (!ParsingInlineAsm && !getStreamer().getCurrentSection()) {
          TokError("expected section directive before assembly directive");
          Out.SwitchSection(Ctx.getMachOSection(
                              "__TEXT", "__text",
                              MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
                              0, SectionKind::getText()));
        }
      }
      
      This was added for the "-n" option of llvm-mc.
      
      The proposed fix adds another virtual method to MCStreamer, called
      InitToTextSection. Conceptually, it's similar to the existing
      InitSections which initializes all common sections and switches to
      text. The new method is implemented by each platform streamer in a way
      that it sees fit. So AsmParser can now do this:
      
      void AsmParser::CheckForValidSection() {
        if (!ParsingInlineAsm && !getStreamer().getCurrentSection()) {
          TokError("expected section directive before assembly directive");
          Out.InitToTextSection();
        }
      }
      
      Which is much more reasonable.
      
      llvm-svn: 172450
      cbb2514d
    • Eli Bendersky's avatar
      Move ParseMacroArgument to the MCAsmParser interfance. · a7b905ee
      Eli Bendersky authored
      Since it's used by extensions. One further step to fully decoupling
      GenericAsmParser from an intimate knowledge of the internals of AsmParser,
      pointing it to the MCASmParser interface instead (like all other parser
      extensions do).
      
      Since this change moves the MacroArgument type to the interface header, it's
      renamed to be a bit more descriptive in a general context.
      
      llvm-svn: 172449
      a7b905ee
    • Eli Bendersky's avatar
      Encapsulate the MacroEnabled flag in AsmParser behind accessor methods. · c2f6f920
      Eli Bendersky authored
      The methods are also exposed via the MCAsmParser interface, which allows more
      than one client to control them. Previously, GenericAsmParser was playing with
      a member var in AsmParser directly (by virtue of being its friend).
      
      llvm-svn: 172440
      c2f6f920
  15. Jan 12, 2013
    • Eli Bendersky's avatar
      Stop hiding the interface-exposed EatToEndOfStatement (see r172276). · 03872a3a
      Eli Bendersky authored
      llvm-svn: 172277
      03872a3a
    • Eli Bendersky's avatar
      Make ParseIdentifier a public method instead of private. · 0cf0cb92
      Eli Bendersky authored
      The MCAsmParser interface defines ParseIdentifier is public. There's no reason
      whatsoever for AsmParser (which implements the MCAsmParser interface) to hide
      this method.
      
      This is all part of a bigger scheme. Several asm parsing "extensions" use the
      main parser properly through the MCAsmParser interface. However,
      GenericAsmParser has much more exclusive access and uses implementation details
      from the concrete implementation - AsmParser, in which it is also declared as
      a friend. This makes for overly coupled code, and even makes it hard to split
      GenericAsmParser into a separate file. There's no reason why GenericAsmParser
      shouldn't be able to access AsmParser through an abstract interface, as long
      as it's actually registered as an extension.
      
      llvm-svn: 172276
      0cf0cb92
  16. Jan 11, 2013
Loading