Skip to content
  1. Oct 25, 2010
  2. Sep 27, 2010
  3. Sep 24, 2010
  4. Aug 24, 2010
  5. Jul 12, 2010
  6. May 21, 2010
  7. May 18, 2010
  8. May 06, 2010
  9. Apr 14, 2010
  10. Mar 13, 2010
  11. Jan 22, 2010
  12. Jan 21, 2010
  13. Jan 20, 2010
  14. Jan 14, 2010
    • Chris Lattner's avatar
      Split the TargetAsmParser "ParseInstruction" interface in half: · f29c0b68
      Chris Lattner authored
      the new ParseInstruction method just parses and returns a list of
      target operands.  A new MatchInstruction interface is used to
      turn the operand list into an MCInst.
      
      This requires new/deleting all the operands, but it also gives 
      targets the ability to use polymorphic operands if they want to. 
      
      llvm-svn: 93469
      f29c0b68
  15. Sep 27, 2009
  16. Sep 16, 2009
  17. Sep 05, 2009
  18. Sep 04, 2009
  19. Sep 03, 2009
    • Kevin Enderby's avatar
      Removed the non-target independent AsmToken::Register enum constant · 7d91218c
      Kevin Enderby authored
      from MCAsmLexer.h in preparation of supporting other targets.  Changed the
      X86AsmParser code to reflect this by removing AsmLexer::LexPercent and looking
      for AsmToken::Percent when parsing in places that used AsmToken::Register.
      Then changed X86ATTAsmParser::ParseRegister to parse out registers as an
      AsmToken::Percent followed by an AsmToken::Identifier.
      
      llvm-svn: 80929
      7d91218c
  20. Aug 14, 2009
  21. Aug 10, 2009
    • Chris Lattner's avatar
      Make the big switch: Change MCSectionMachO to represent a section *semantically* · cb307a27
      Chris Lattner authored
      instead of syntactically as a string.  This means that it keeps track of the 
      segment, section, flags, etc directly and asmprints them in the right format.
      This also includes parsing and validation support for llvm-mc and 
      "attribute(section)", so we should now start getting errors about invalid 
      section attributes from the compiler instead of the assembler on darwin.
      
      Still todo: 
      1) Uniquing of darwin mcsections
      2) Move all the Darwin stuff out to MCSectionMachO.[cpp|h]
      3) there are a few FIXMEs, for example what is the syntax to get the
         S_GB_ZEROFILL segment type?
      
      llvm-svn: 78547
      cb307a27
  22. Jul 28, 2009
  23. Jul 23, 2009
    • Daniel Dunbar's avatar
      Convert StringMap to using StringRef for its APIs. · 5bf72e20
      Daniel Dunbar authored
       - Yay for '-'s and simplifications!
      
       - I kept StringMap::GetOrCreateValue for compatibility purposes, this can
         eventually go away. Likewise the StringMapEntry Create functions still follow
         the old style.
      
       - NIFC.
      
      llvm-svn: 76888
      5bf72e20
  24. Jul 16, 2009
  25. Jun 30, 2009
    • Daniel Dunbar's avatar
      Normalize SourceMgr messages. · c9dc78ae
      Daniel Dunbar authored
       - Don't print "Parsing" in front of every message.
      
       - Take additional "type" argument which is prepended to the message (with ": ")
         if given.
      
       - Update clients to print errors (warnings) as:
      <filename>:<line number>: error(warning): ...
      
      llvm-svn: 74489
      c9dc78ae
  26. Jun 29, 2009
  27. Jun 25, 2009
Loading