1. a3a2dfd build: Add initial cut at LLVMBuild.txt files. by Daniel Dunbar · 13 years ago
  2. dba9a17 Replace tabs I added in this new line of code with spaces. by Kevin Enderby · 13 years ago
  3. 064e48a Fixed a bug in the code to create a dwarf file and directory table entires when by Kevin Enderby · 13 years ago
  4. 613b757 First part of support for generating dwarf for assembly source files with the by Kevin Enderby · 13 years ago
  5. 390c40d Teach our Dwarf emission to use the string pool. by Nick Lewycky · 13 years ago
  6. 684457d Trailing whitespace. by Jim Grosbach · 13 years ago
  7. 5a86c5b On an ELF system, ".debug_str" is mergeable and contains null terminated strings by Nick Lewycky · 13 years ago
  8. 3507d24 This is the first of several patches for Mips direct object generation. by Bruno Cardoso Lopes · 13 years ago
  9. 12ae527 Fix parsing of a line with only a # in it. by Rafael Espindola · 13 years ago
  10. 44d798d Add support for a new extension to the .file directive: by Nick Lewycky · 13 years ago
  11. 962bad7 Let printf do the formatting instead aligning strings ourselves. by Benjamin Kramer · 13 years ago
  12. 5efabcf Add AsmToken::getEndLoc and use it to add ranges to x86 asm register parsing. by Benjamin Kramer · 13 years ago
  13. 04a0426 PR11143: Save the old diagnostic handler and call it when munging diagnostics for #line directives. by Benjamin Kramer · 13 years ago
  14. 462b43c remove the dead 'ShowLine' argument from SMDiagnostic. by Chris Lattner · 13 years ago
  15. 3f2d5f6 Make SMDiagnostic a little more sane. Instead of passing around note/warning/error as a by Chris Lattner · 13 years ago
  16. d8b7aa2 Enhance llvm::SourceMgr to support diagnostic ranges, the same way clang does. Enhance by Chris Lattner · 13 years ago
  17. 5d6a673 Disable code/data region symbols on ELF targets, where different mapping symbols are used for ARM/Thumb mode code. This should only be re-enabled once we have a solution to properly distinguish these. by Owen Anderson · 13 years ago
  18. acbaecd Finish supporting cpp #file/line comments in assembler for error messages. So by Kevin Enderby · 13 years ago
  19. 18ad76b Hoist vector.size() computation out of the loop. No functionality change. by Nick Lewycky · 13 years ago
  20. 7aabcb1 Also create a shndx even if there are no symbols. This lets us test by Nick Lewycky · 13 years ago
  21. 042aadd MCAtom extending methods need to extend the range of the atom as well. by Owen Anderson · 13 years ago
  22. d2fdb4a Don't emit the symbol table entry for the .symtab_shndx section either. by Nick Lewycky · 13 years ago
  23. 4a8d43e Remove extraneous curlies. No functionality change. by Nick Lewycky · 13 years ago
  24. b3429d3 Don't emit a shstrtabindex in the reserved range. Spotted by inspection and by Nick Lewycky · 13 years ago
  25. aaae3f6 Clarify/fix typo. No functionality change. by Nick Lewycky · 13 years ago
  26. 2fec6c5 Teach the MC to output code/data region marker labels in MachO and ELF modes. These are used by disassemblers to provide better disassembly, particularly on targets like ARM Thumb that like to intermingle data in the TEXT segment. by Owen Anderson · 13 years ago
  27. 9e5887b Adding back support for printing operands symbolically to ARM's new disassembler by Kevin Enderby · 13 years ago
  28. 291512f Add definition of MipsELFObjectWriter. by Akira Hatanaka · 13 years ago
  29. dd16400 Sort CMakeLists.txt. by Benjamin Kramer · 13 years ago
  30. 7666c7e PR10989: Don't print .hidden on Windows. by Eli Friedman · 13 years ago
  31. db01cdd Add new files to CMake. by Owen Anderson · 13 years ago
  32. da7d6cc Update CMake build. by Benjamin Kramer · 13 years ago
  33. 124e182 Start stubbing out MCModule and MCAtom, which provide an API for accessing the rich disassembly of a complete object or executable. by Owen Anderson · 13 years ago
  34. 317eaf1 In the disassembler C API, be careful not to confuse the comment streamer that the disassembler outputs annotations on with the streamer that the InstPrinter will print them on. by Owen Anderson · 13 years ago
  35. a182be9 MCInstrAnalysis: Don't crash on instructions with no operands. by Benjamin Kramer · 13 years ago
  36. 98c5dda Don't attach annotations to MCInst's. Instead, have the disassembler return, and the printer accept, an annotation string which can be passed through if the client cares about annotations. by Owen Anderson · 13 years ago
  37. 8f29e69 The the MC disassembler C API to print in verbose mode. Perhaps there should be a parameter to request verbose mode? by Owen Anderson · 13 years ago
  38. ede042d Add support for stored annotations to MCInst, and provide facilities for MC-based InstPrinters to print them out. Enhance the ARM and X86 InstPrinter's to do so in verbose mode. by Owen Anderson · 13 years ago
  39. 10ec650 Assmebler symbol attribute directives don't work on temporary symbols. by Jim Grosbach · 13 years ago
  40. 70796ca Handle missing newline at EOF more gracefully in MC AsmLexer. by Jim Grosbach · 13 years ago
  41. 6148225 Move state var to private class member. by Jim Grosbach · 13 years ago
  42. f1c21a8 First step in supporting #line directives in assembler. This step parses the by Kevin Enderby · 13 years ago
  43. d1e002a Formatting and typo. by Eric Christopher · 13 years ago
  44. 5afc190 Fix a Darwin x86_64 special case of a jmp to a temporary symbol from an atom by Kevin Enderby · 13 years ago
  45. b950585 Refactor instprinter and mcdisassembler to take a SubtargetInfo. Add -mattr= handling to llvm-mc. Reviewed by Owen Anderson. by James Molloy · 13 years ago
  46. d8ab8e9 As a first step, emit both the compact unwind and CIE/FDEs for a function. by Bill Wendling · 13 years ago
  47. 147272b Darwin wants ctors/dtors to be ordered the other way round to linux. by Duncan Sands · 13 years ago
  48. 36a1601 Don't drop alignment info on local common symbols. by Benjamin Kramer · 13 years ago
  49. ee06443 Fix apparent build error caused by r138948 on certain versions of GCC with -Werror. Sorry for the inconvenience. by James Molloy · 13 years ago
  50. 833a003 Fix the build for us -Werror users. by Nick Lewycky · 13 years ago
  51. c047dca Fix up r137380 based on post-commit review by Jim Grosbach. by James Molloy · 13 years ago
  52. cda2a14 Fix C++0x narrowing errors when char is unsigned. by Jeffrey Yasskin · 13 years ago
  53. 8e5cf90 Fix grammar, noticed by Duncan. by Bill Wendling · 13 years ago
  54. 98ba358 Initialize CompactUnwindSection so that other targets won't use an uninitialized value. by Bill Wendling · 13 years ago
  55. 2df9f8d Initialize member variable. by Benjamin Kramer · 13 years ago
  56. 5fbe5e7 Some autoconf tests use module level inline asm to test compiler's handling of by Evan Cheng · 13 years ago
  57. 3e74d6f Move TargetRegistry and TargetSelect from Target to Support where they belong. by Evan Cheng · 13 years ago
  58. fbe1681 Fix AsmParser binary precedence for shift operators. by Jim Grosbach · 13 years ago
  59. 40827c4 Fixed a memory bug in the MCDisassembler where by Sean Callanan · 13 years ago
  60. 1b84cce Remove unused Target argument from AsmParser construction methods. by Jim Grosbach · 13 years ago
  61. 0d46ccf MachOWriter: Don't crash on fixups with arithmetic, emit a relocation instead. This matches what as does. by Benjamin Kramer · 13 years ago
  62. 739b557 Don't truncate MachO addresses. by Jim Grosbach · 13 years ago
  63. 08de97a Pacify virtual dtor warnings and cmake buildbots. by Benjamin Kramer · 13 years ago
  64. 41ab14b Add MCInstrAnalysis class. This allows the targets to specify own versions of MCInstrDescs functions. by Benjamin Kramer · 13 years ago
  65. 0ecd825 allow \r's in .s files. by Chris Lattner · 13 years ago
  66. 2a66cea Introduce adjustFixupOffset that adjusts the fixup offset of a relocation. by Roman Divacky · 13 years ago
  67. bbf9c4a Add an assert to check that the Addend fits the file format. by Rafael Espindola · 13 years ago
  68. e651983 Fix http://llvm.org/bugs/show_bug.cgi?id=10568 by Jason W Kim · 13 years ago
  69. 49cb9b8 Assume .cfi_startproc is the first thing in a function. If the function is by Rafael Espindola · 13 years ago
  70. c9c0cc1 Comment out the PPC relocation offset adjustment. It must be done differently. by Roman Divacky · 13 years ago
  71. 2c0d69f Sketch out PowerPC ELF writer. This is enough to get clang -integrated-as by Roman Divacky · 13 years ago
  72. 8733409 I mis-interpreted the MCDisassembler's intended dependencies. Now to fix by Chandler Carruth · 13 years ago
  73. c91d626 On mac, it seems the MC disassembler is actually using the targetinfo by Chandler Carruth · 13 years ago
  74. 7ad75f6 Fix the MCDisassembler dependencies. These were just absurdly wrong. by Chandler Carruth · 13 years ago
  75. ac03e73 Rewrite the CMake build to use explicit dependencies between libraries, by Chandler Carruth · 13 years ago
  76. bd27f5a Support .code32 and .code64 in X86 assembler. by Evan Cheng · 13 years ago
  77. bfe3686 Remove one last reference to Target in MC library. by Evan Cheng · 13 years ago
  78. 94b9550 Rename TargetAsmParser to MCTargetAsmParser and TargetAsmLexer to MCTargetAsmLexer; rename createAsmLexer to createMCAsmLexer and createAsmParser to createMCAsmParser. by Evan Cheng · 13 years ago
  79. c9a7c8d TargetAsmBackend has been renamed to MCAsmBackend. by Evan Cheng · 13 years ago
  80. 78c10ee Rename TargetAsmBackend to MCAsmBackend; rename createAsmBackend to createMCAsmBackend. by Evan Cheng · 13 years ago
  81. 8bcf949 Add a missing enumerator to this switch. Currently its in the by Chandler Carruth · 13 years ago
  82. 4b64e8a Separate MCInstPrinter registration from AsmPrinter registration. by Evan Cheng · 13 years ago
  83. 1b0fc9b Fix last bits of MC layer issues. llvm-mc doesn't need to initialize TargetMachine's anymore. by Evan Cheng · 13 years ago
  84. 8c3fee5 Refactor X86 target to separate MC code from Target code. by Evan Cheng · 13 years ago
  85. f2a35fb Move some ELF directives into ELF asm parser. by Jim Grosbach · 13 years ago
  86. cc866d5 Tidy up. 80 columns. by Jim Grosbach · 13 years ago
  87. a7cfc08 Move TargetAsmParser.h TargetAsmBackend.h and TargetAsmLexer.h to MC where they belong. by Evan Cheng · 13 years ago
  88. be74029 Sink ARM mc routines into MCTargetDesc. by Evan Cheng · 13 years ago
  89. e78085a Combine all MC initialization routines into one. e.g. InitializeX86MCAsmInfo, by Evan Cheng · 13 years ago
  90. 1424c3c Emit the __compact_unwind section first. If there are any frames which weren't by Bill Wendling · 13 years ago
  91. 36c62d3 X86 is the only target that uses coff format. This should fixes test failures running on Windows, Cygwin, or MingW hosts. by Evan Cheng · 13 years ago
  92. 203576a Goodbye TargetAsmInfo. This eliminate last bit of CodeGen and Target in llvm-mc. by Evan Cheng · 13 years ago
  93. 9d999f5 Initialize the EHFrameSection pointer to zero. by Benjamin Kramer · 13 years ago
  94. 34ad6db - Move CodeModel from a TargetMachine global option to MCCodeGenInfo. by Evan Cheng · 13 years ago
  95. 4c81648 Include MCRegisterInfo to eliminate a compilation warning. by Evan Cheng · 13 years ago
  96. 5945848 Fix the CMake build. by Francois Pichet · 13 years ago
  97. e76a33b Add MCObjectFileInfo and sink the MCSections initialization code from by Evan Cheng · 13 years ago
  98. 4396613 Introduce MCCodeGenInfo, which keeps information that can affect codegen by Evan Cheng · 13 years ago
  99. 6c2f7e2 Micro-opt: Only emit compact unwind if there is a compact unwind encoding to emit. by Bill Wendling · 13 years ago
  100. e52e3f2 Use the CompactUnwindEncoding from the Frame, if it's defined. by Bill Wendling · 13 years ago