1. 7a56fc2 MC/AsmParser: Add a basic ELFAsmParser extension. by Daniel Dunbar · 15 years ago
  2. 4c7c08b MC/AsmParser: Inline AsmParser::CreateSymbol into callers. by Daniel Dunbar · 15 years ago
  3. b6c3a60 MC/AsmParser: Move .tbss and .zerofill parsing to Darwin specific parser. by Daniel Dunbar · 15 years ago
  4. 492b7a2 MC/AsmParser: Move .desc parsing to Darwin specific parser. by Daniel Dunbar · 15 years ago
  5. 38a4e2a MC/AsmParser: Move .lsym parsing to Darwin specific parser. by Daniel Dunbar · 15 years ago
  6. 9ac66b0 MC/AsmParser: Move some misc. Darwin directive handling to DarwinAsmParser. by Daniel Dunbar · 15 years ago
  7. e474970 MC/AsmParser: Add a DarwinAsmParser extension. by Daniel Dunbar · 15 years ago
  8. 8f34bea MC/AsmParser: Switch a bunch of directive parsing to use accessors. by Daniel Dunbar · 15 years ago
  9. 81ea00f MCAsmParser: Pull some directive handling out into a helper class, and change by Daniel Dunbar · 15 years ago
  10. eceec05 MC/AsmParser: Switch some directive parsing to use accessor methods. by Daniel Dunbar · 15 years ago
  11. 5313198 MC: Add MCAsmParserExtension, a base class for all the target/object specific by Daniel Dunbar · 15 years ago
  12. dc4c7da MC: Move AsmParser::TokError to MCAsmParser(). by Daniel Dunbar · 15 years ago
  13. 3472766 Convert some tab stops into spaces. by Duncan Sands · 15 years ago
  14. f59cac5 Added the darwin .weak_def_can_be_hidden directive. by Kevin Enderby · 15 years ago
  15. b570968 MC: Fix some stray hunks I didn't intend to commit. by Daniel Dunbar · 15 years ago
  16. 9186fa6 MC: Pass the target instance to the AsmParser constructor. by Daniel Dunbar · 15 years ago
  17. 839348a MC: Fix an error message. by Daniel Dunbar · 15 years ago
  18. 44886ac Remove unused calls to Lexer.getLoc and the pointless variable HasFillExpr. by Duncan Sands · 15 years ago
  19. f187ac5 Added the darwin .secure_log_unique and .secure_log_reset directives. by Kevin Enderby · 15 years ago
  20. 414c0c4 llvm-mc: Use EmitIntValue where possible, which makes the API calls from the AsmParser and CodeGen line up better. by Daniel Dunbar · 15 years ago
  21. 01777ff llvm-mc: Use AddBlankLine in asm parser. This makes transliteration match the input much more closely, and also makes the API calls from the AsmParser and CodeGen line up better. by Daniel Dunbar · 15 years ago
  22. 924c5e5 Add support for parsing the ELF .type assembler directive. by Matt Fleming · 15 years ago
  23. a7f1354 fix rdar://7986634 - match instruction opcodes case insensitively. by Chris Lattner · 15 years ago
  24. 4d01cbe Make EmitTBSSSymbol take a section argument so that we can find it later. by Eric Christopher · 15 years ago
  25. ebe7fcd Added support in MC for Directional Local Labels. by Kevin Enderby · 15 years ago
  26. c6177a4 More data/parsing support for tls directives. Add a few more testcases by Eric Christopher · 15 years ago
  27. 648ac51 MC/Mach-O/x86: Optimal nop sequences should only be used for the .text sections, not all sections in the text segment. by Daniel Dunbar · 15 years ago
  28. 525a3a6 llvm-mc: Support reassignment of variables in one special case, when the by Daniel Dunbar · 15 years ago
  29. d04d98d Assume that we'll handle mangling the symbols earlier and just put the by Eric Christopher · 15 years ago
  30. 482eba0 Add AsmParser support for darwin tbss directive. by Eric Christopher · 15 years ago
  31. c260a3e Fix a couple of typos. by Eric Christopher · 15 years ago
  32. 7bb7c55 fix rdar://7965971 and a fixme: use ParseIdentifier in by Chris Lattner · 15 years ago
  33. c304718 MC: Reject attempts to define a variable symbol. by Daniel Dunbar · 15 years ago
  34. 08a408a MC: Rename MCSymbol::{g,s}etValue -> MCSymbol::{g,s}etVariableValue. by Daniel Dunbar · 15 years ago
  35. 31e8e1d llvm-mc: Fix case were we would skip a line in the .s file after an instruction by Daniel Dunbar · 15 years ago
  36. 7834fac refactor .if handling code a bit. by Chris Lattner · 15 years ago
  37. d305035 implement mc asmparser support for '.', which gets the by Chris Lattner · 15 years ago
  38. f0559e4 move macho section uniquing from MCParser and TLOF to MCContext where by Chris Lattner · 15 years ago
  39. 79180e2 Give AsmParser an option to control whether it finalizes the stream. New demo: by Chris Lattner · 15 years ago
  40. 9b97a73 Rip out the 'is temporary' nonsense from the MCContext interface to by Chris Lattner · 15 years ago
  41. 4e815f8 MC: Allow modifiers in MCSymbolRefExpr, and eliminate X86MCTargetExpr. by Daniel Dunbar · 15 years ago
  42. 5e6a7a2 llvm-mc: Support -n, useful for comparing -integrated-as output since the by Daniel Dunbar · 15 years ago
  43. 0965200 Remove unneeded includes. by Daniel Dunbar · 15 years ago
  44. 00685bb eliminate MCContext::CreateSymbol and CreateTemporarySymbol. by Chris Lattner · 15 years ago
  45. f60e9bb pass in more section kinds, enough to get the .align 0x90 by Chris Lattner · 15 years ago
  46. d74acb0 This is a patch to the assembler frontend to detect when aligning a text by Kevin Enderby · 15 years ago
  47. e9a60eb MC/AsmParser: Attempt to constant fold expressions up-front. This ensures we avoid fixups for obvious cases like '-(16)'. by Daniel Dunbar · 16 years ago
  48. d32e803 wirte up .file and .file to the mc asmparser. by Chris Lattner · 16 years ago
  49. 75f265f fix a parsing problem on instructions like: by Chris Lattner · 16 years ago
  50. a5ad93a move the various directive enums out of the MCStreamer class by Chris Lattner · 16 years ago
  51. be343b3 move some files out of the llvm-mc tool into the MCParser library so by Chris Lattner · 16 years ago[Renamed (99%) from tools/llvm-mc/AsmParser.cpp]
  52. c6ef277 create a new MCParser library and move some stuff into it. by Chris Lattner · 16 years ago
  53. fd0b028 Moved handling of inclusion from the AsmLexer to by Sean Callanan · 16 years ago
  54. bf2013e Changed the AsmParser to handle error messages itself by Sean Callanan · 16 years ago
  55. 10d33a4 Promoted the reference to the SourceMgr from AsmLexer by Sean Callanan · 16 years ago
  56. 79036e4 Modified MCAsmLexer to return error information upward by Sean Callanan · 16 years ago
  57. 18b8323 Promoted the getTok() method to MCAsmParser so that by Sean Callanan · 16 years ago
  58. 79ed1a8 Added a Lex function to the AsmParser, to allow handling by Sean Callanan · 16 years ago
  59. aaec205 Generalize mcasmstreamer data emission APIs to take an address space by Chris Lattner · 16 years ago
  60. ddf6bdd add a "MCStreamer::EmitFill" method, and move the default implementation by Chris Lattner · 16 years ago
  61. 258281d fix parsing .comm directives on systems which do not represent alignments by Chris Lattner · 16 years ago
  62. 54482b4 fix a bug in range information for $42, eliminate an by Chris Lattner · 16 years ago
  63. b4307b3 extend MCAsmParser::ParseExpression and ParseParenExpression by Chris Lattner · 16 years ago
  64. 9d3c755 add virtual methods to get the start/end of a MCParsedAsmOperand, by Chris Lattner · 16 years ago
  65. 9898671 Split the TargetAsmParser "ParseInstruction" interface in half: by Chris Lattner · 16 years ago
  66. f007e85 prune #includes in TargetAsmParser.h by Chris Lattner · 16 years ago
  67. 9bc0af8 Mark some debug variables as 'unused' to quiet compiler and analyzer. by Bill Wendling · 16 years ago
  68. e00b011 MC: Remove unneeded context argument to MCExpr::Evaluate*. by Daniel Dunbar · 16 years ago
  69. 75773ff MC: Tweak variable assignment diagnostics, and make reassignment of non-absolute by Daniel Dunbar · 16 years ago
  70. fffff91 MC: When parsing a variable reference, substitute absolute variables immediately by Daniel Dunbar · 16 years ago
  71. ebb89b4 add a new DirectiveMap stringmap, which allows more efficient dispatching by Chris Lattner · 16 years ago
  72. 3b13d36 use an accessor to simplify code. by Chris Lattner · 16 years ago
  73. 9c65645 Added the ParseInstruction() hook for target specific assembler directives so by Kevin Enderby · 16 years ago
  74. 12fd767 Fix an integer truncation noticed by MSVC. by Benjamin Kramer · 16 years ago
  75. 821e333 llvm-mc: Pass values to MCStreamer as MCExprs, not MCValues. by Daniel Dunbar · 16 years ago
  76. e2ace50 llvm-mc: Simplify EmitAssignment ('.set' is identical to '='). by Daniel Dunbar · 16 years ago
  77. 883f920 llvm-mc: Remove MCAsmParser::Parse[Paren]RelocatableExpression. by Daniel Dunbar · 16 years ago
  78. c18274b llvm-mc: Add MCAsmParser::Parse[Paren]Expression forms which return an MCExpr. by Daniel Dunbar · 16 years ago
  79. 6ce004d llvm-mc: Add MCAsmParser::getContext. by Daniel Dunbar · 16 years ago
  80. 9643ac5 llvm-mc: Switch MCExpr construction to using static member functions, and taking the MCContext (which now owns all MCExprs). by Daniel Dunbar · 16 years ago
  81. 28c251b llvm-mc: Move AsmExpr into MC lib (as MCExpr). by Daniel Dunbar · 16 years ago
  82. 7092c7e llvm-mc: MCStreamer cleanups. - Remove EmitLocalSymbol, this is unsupported for now. by Daniel Dunbar · 16 years ago
  83. e6cdbf2 llvm-mc: Emit .lcomm as .zerofill. by Daniel Dunbar · 16 years ago
  84. 2e15292 llvm-mc: Unique zero fill sections. by Daniel Dunbar · 16 years ago
  85. bdee6df Revert r80305, I forgot a dependent change. by Daniel Dunbar · 16 years ago
  86. 58b5068 llvm-mc: Unique sections in .zerofill. by Daniel Dunbar · 16 years ago
  87. 7c0a334 llvm-mc/Mach-O: Unique sections properly, so we don't get duplicate text by Daniel Dunbar · 16 years ago
  88. 959fd88 llvm-mc/Mach-O: Don't put assembler temporary labels in the symbol table. by Daniel Dunbar · 16 years ago
  89. b58a804 llvm-mc: Make non-sensical max bytes to .align an error. by Daniel Dunbar · 16 years ago
  90. 8906ff1 llvm-mc: Clean up some handling of symbol/section association to be more correct by Daniel Dunbar · 16 years ago
  91. 2330df6 llvm-mc: Improve handling of implicit alignment for magic section directives by Daniel Dunbar · 16 years ago
  92. 0afb9f5 llvm-mc: In a .fill directive, still honor .align even if invalid maximum bytes by Daniel Dunbar · 16 years ago
  93. bc38ca7 llvm-mc: Accept .fill size of 8. by Daniel Dunbar · 16 years ago
  94. b3f3c03 llvm-mc: Various section parsing fixes. by Daniel Dunbar · 16 years ago
  95. 1ab7594 llvm-mc: Support escaped characters in string literals (for .ascii and .asciz) by Daniel Dunbar · 16 years ago
  96. 1e840b2 llvm-mc: Accept .word as a synonym for .short by Daniel Dunbar · 16 years ago
  97. d0c14d6 llvm-mc: Sketch parsing for .file, .line, and .loc. No streamer hooks for these by Daniel Dunbar · 16 years ago
  98. ace6312 llvm-mc: Fix darwin .section parsing. It was skipping the section name and a ',' by Daniel Dunbar · 16 years ago
  99. f9bdedd split MachO section handling stuff out to its out .h/.cpp file. by Chris Lattner · 16 years ago
  100. e15c2d7 add a fixme by Chris Lattner · 16 years ago