1. 0740441 pass "-fasm-verbose" into createAsmStreamer. by Chris Lattner · 16 years ago
  2. be343b3 move some files out of the llvm-mc tool into the MCParser library so by Chris Lattner · 16 years ago
  3. c6ef277 create a new MCParser library and move some stuff into it. by Chris Lattner · 16 years ago
  4. fd0b028 Moved handling of inclusion from the AsmLexer to by Sean Callanan · 16 years ago
  5. bf2013e Changed the AsmParser to handle error messages itself by Sean Callanan · 16 years ago
  6. 1658202 give createAsmStreamer an 'isLittleEndian' argument. by Chris Lattner · 16 years ago
  7. a3dcfb1 rename HexDisassembler -> Disassembler, it works on any input by Chris Lattner · 16 years ago
  8. ba847da Test harness for the LLVM disassembler. When invoked by Sean Callanan · 16 years ago
  9. f4e748b Line this up as well. by Nick Lewycky · 16 years ago
  10. ed1f168 Fix whitespace. by Nick Lewycky · 16 years ago
  11. e895c61 Add an intel syntax MCInstPrinter implementation. You can now by Chris Lattner · 16 years ago
  12. 90edac0 Change MCAsmStreamer to take an MCInstPrinter instead of a by Chris Lattner · 16 years ago
  13. 9c65645 Added the ParseInstruction() hook for target specific assembler directives so by Kevin Enderby · 16 years ago
  14. 9823ca9 Added the AsmToken::Hash enum constant to MCAsmLexer.h in preparation of by Kevin Enderby · 16 years ago
  15. 7b4608d Removed the non-target independent AsmToken::Register enum constant by Kevin Enderby · 16 years ago
  16. a9eb359 TAI -> MAI by Chris Lattner · 16 years ago
  17. 4fac749 llvm-mc/Mach-O: Add MCCodeEmitter support, for encoding instructions. by Daniel Dunbar · 16 years ago
  18. f2f6b0c llvm-mc: Only show instruction encodings with --show-encoding. by Daniel Dunbar · 16 years ago
  19. 04baf90 llvm-mc: Tweak MCCodeEmitter skeleton. by Daniel Dunbar · 16 years ago
  20. 4a0abd8 Sketch TargetRegistry support for MCCodeEmitter abstract interface. by Daniel Dunbar · 16 years ago
  21. 7c0a334 llvm-mc/Mach-O: Unique sections properly, so we don't get duplicate text by Daniel Dunbar · 16 years ago
  22. baa2639 Make LLVM command-line tools overwrite their output files without -f. by Dan Gohman · 16 years ago
  23. 17e9edc Change raw_fd_ostream to take flags as an optional bitmask by Chris Lattner · 16 years ago
  24. af76e59 Rename TargetAsmInfo (and its subclasses) to MCAsmInfo. by Chris Lattner · 16 years ago
  25. fb4a6b3 llvm-mc: Start MCAssembler and MCMachOStreamer. by Daniel Dunbar · 16 years ago
  26. 12a8a44 Fix a commento. by Daniel Dunbar · 16 years ago
  27. f3ce009 give MCAsmStreamer a TargetAsmInfo. by Chris Lattner · 16 years ago
  28. c22e0b2 Update llvm-mc / MCAsmStreamer to print the instruction using the actual target by Daniel Dunbar · 16 years ago
  29. bfc0f34 llvm-mc: Honor -o option (and add -f). by Daniel Dunbar · 16 years ago
  30. f9bdedd split MachO section handling stuff out to its out .h/.cpp file. by Chris Lattner · 16 years ago
  31. ff4bc46 Make the big switch: Change MCSectionMachO to represent a section *semantically* by Chris Lattner · 16 years ago
  32. 93b6db3 sink the 'name' and 'isdirective' state out of MCSection into its derived classes. by Chris Lattner · 16 years ago
  33. 0aac301 switch this to create coff sections for now, it doesn't really matter for by Chris Lattner · 16 years ago
  34. 4bd03ab Remove now unused arguments from TargetRegistry::lookupTarget. by Daniel Dunbar · 16 years ago
  35. 1ef9be2 Make SectionKind::get() private. by Chris Lattner · 16 years ago
  36. 5d65542 update for API change. by Chris Lattner · 16 years ago
  37. 4a7bc1e All MCSections are now required to have a SectionKind. by Chris Lattner · 16 years ago
  38. 56594f9 fix a bunch of failing tests now that MCContext::GetSection doesn't create sections. by Chris Lattner · 16 years ago
  39. 16cdcb3 Move X86 instruction parsing into X86/AsmParser. by Daniel Dunbar · 16 years ago
  40. a2edbab Provide generic MCAsmParser when constructing target specific parsers. by Daniel Dunbar · 16 years ago
  41. a3c924f Switch AsmLexer::Lex to returning a reference to the current token. by Daniel Dunbar · 16 years ago
  42. 419aded Drop some AsmLexer methods in favor of their AsmToken equivalents. by Daniel Dunbar · 16 years ago
  43. 3f87233 llvm-mc: Sink token enum into AsmToken. by Daniel Dunbar · 16 years ago
  44. 8977d08 Factor commonality in triple match routines into helper template for registering by Daniel Dunbar · 16 years ago
  45. a5881e3 Add TargetRegistry::lookupTarget. by Daniel Dunbar · 16 years ago
  46. a3af370 Add MCAsmParser interface. by Daniel Dunbar · 16 years ago
  47. 867aadf llvm-mc: Default -triple to LLVM_HOSTTRIPLE. by Daniel Dunbar · 16 years ago
  48. b4b53e5 llvm-mc: Add -triple, and start fetching the target asm printer. by Daniel Dunbar · 16 years ago
  49. 165e834 llvm-mc: Fill in the rest of tokens for 'as-lex' mode. by Daniel Dunbar · 16 years ago
  50. 87380cb add some of the new tokens, others are still missing. by Chris Lattner · 16 years ago
  51. 3fb7683 Normalize SourceMgr messages. by Daniel Dunbar · 16 years ago
  52. a0d1426 Basic .s parsing for .asci[iz], .fill, .space, {.byte, .short, ... } by Daniel Dunbar · 16 years ago
  53. c69485e add trivial support for passing label definitions through the MCStreamer. by Chris Lattner · 16 years ago
  54. cbc23f7 create an MCStreamer and provide it to AsmParser. by Chris Lattner · 16 years ago
  55. 74ec1a3 Implement full support for parsing primary expressions. We can now parse by Chris Lattner · 16 years ago
  56. 14ee48a rename SourceMgr::PrintError to PrintMessage. by Chris Lattner · 16 years ago
  57. 27aa7d2 stub out parser for asm files. Change invariant on lexer to always by Chris Lattner · 16 years ago
  58. 10a907d add string literals. by Chris Lattner · 16 years ago
  59. 4651bca implement enough of a lexer to get through Olden/health/Output/health.llc.s by Chris Lattner · 16 years ago
  60. a59e877 some baby steps. by Chris Lattner · 16 years ago
  61. b23677e start wiring up support for asm parsing. by Chris Lattner · 16 years ago
  62. bb4688a fix file header by Chris Lattner · 16 years ago
  63. f9f065e Add a skeleton driver for new machine code level fun. llvm-mc is meant by Chris Lattner · 16 years ago