1. ae541aa Add more const qualifiers for LLVM IR pointers in CodeGen. by Dan Gohman · 15 years ago
  2. 1bd7335 Use twines to simplify calls to report_fatal_error. For code size and readability. by Benjamin Kramer · 15 years ago
  3. 75361b6 rename llvm::llvm_report_error -> llvm::report_fatal_error by Chris Lattner · 15 years ago
  4. b87c305 give Mangler access to TargetData. by Chris Lattner · 15 years ago
  5. 5ef31a0 make the mangler take an MCContext instead of an MAI. No functionality change. by Chris Lattner · 15 years ago
  6. c18409a change MCContext to always have an MCAsmInfo. by Chris Lattner · 15 years ago
  7. 2e438c3 remove dead #include, stupid symlinks. by Chris Lattner · 16 years ago
  8. 3813d8a Remove a bunch of stuff around the edges of the ELF writer. by Chris Lattner · 16 years ago
  9. 74670b2 remove a dead call. by Chris Lattner · 16 years ago
  10. c0dba72 now that mangler is in libtarget, it can use MCAsmInfo instead of clients by Chris Lattner · 16 years ago
  11. 45111d1 move the mangler into libtarget from vmcore. by Chris Lattner · 16 years ago
  12. 0b3735e remove a couple of actively incorrect uses of getMangledName. by Chris Lattner · 16 years ago
  13. 6e120a1 by David Greene · 16 years ago
  14. cf0fe8d strength reduce a ton of type equality tests to check the typeid (Through by Chris Lattner · 16 years ago
  15. 0bb8386 Fix ELF Writter related memory leaks by Bruno Cardoso Lopes · 16 years ago
  16. 33adcfb rename TAI -> MAI, being careful not to make MAILJMP instructions :) by Chris Lattner · 16 years ago
  17. af76e59 Rename TargetAsmInfo (and its subclasses) to MCAsmInfo. by Chris Lattner · 16 years ago
  18. b22d8df Convert DOUT to DEBUG(errs()...). by Bill Wendling · 16 years ago
  19. abd7514 *try* to use a better name to describe how common symbols are marked on the elf object file. by Bruno Cardoso Lopes · 16 years ago
  20. 1d0be15 Push LLVMContexts through the IntegerType APIs. by Owen Anderson · 16 years ago
  21. d163e8b Remove hack used to strip unwanted chars from section name by Bruno Cardoso Lopes · 16 years ago
  22. b808588 Change MCSectionELF to represent a section semantically instead of by Bruno Cardoso Lopes · 16 years ago
  23. 64a6b39 Move ConstantExpr handling to ResolveConstantExpr method and also by Bruno Cardoso Lopes · 16 years ago
  24. 93b6db3 sink the 'name' and 'isdirective' state out of MCSection into its derived classes. by Chris Lattner · 16 years ago
  25. 3e0094d ELF improvements: by Bruno Cardoso Lopes · 16 years ago
  26. 52d0851 - Remove custom handling of jumptables by the elf writter (this was by Bruno Cardoso Lopes · 16 years ago
  27. 9ba8c68 remove the dead ELFTargetAsmInfo.h/cpp file. TargetAsmInfo by Chris Lattner · 16 years ago
  28. 2798119 (re)introduce new simpler apis for creation sectionkinds. by Chris Lattner · 16 years ago
  29. 83d77fa Remove "JumpTableDataSection" from TAI, instead, have AsmPrinter by Chris Lattner · 16 years ago
  30. 968ff11 Change SectionKind to be a property that is true of a *section*, it by Chris Lattner · 16 years ago
  31. a87dea4 switch off of 'Section' onto MCSection. We're not properly using by Chris Lattner · 16 years ago
  32. f26e03b refactor section construction in TLOF to be through an explicit by Chris Lattner · 16 years ago
  33. e53a600 pass the mangler down into the various SectionForGlobal methods. by Chris Lattner · 16 years ago
  34. 50bc204 Handle null and file symbol on doInitialization by Bruno Cardoso Lopes · 16 years ago
  35. f014412 Rip all of the global variable lowering logic out of TargetAsmInfo. Since by Chris Lattner · 16 years ago
  36. df0b650 add module identifier to the elf object file by Bruno Cardoso Lopes · 16 years ago
  37. 746e3bb Handle external symbols for ELF and add some static methods to ELFSym by Bruno Cardoso Lopes · 16 years ago
  38. 5fe575f Eliminate SectionFlags, just embed a SectionKind into Section by Chris Lattner · 16 years ago
  39. 4c50922 make SectionKind know whether a symbol is weak or not in addition by Chris Lattner · 16 years ago
  40. 2ceb60a rename Mergable -> Mergeable and Writable -> Writeable by Chris Lattner · 16 years ago
  41. 94809c3 two files I missed in the last commit. by Chris Lattner · 16 years ago
  42. 5c2f789 simplify getSectionForMergableConstant to take a SectionKind. by Chris Lattner · 16 years ago
  43. b4fc419 this is (unfortunately) several changes mixed together: by Chris Lattner · 16 years ago
  44. 298414e remove the SelectSectionForMachineConst hook, replacing it with by Chris Lattner · 16 years ago
  45. 68491c1 Support adding relocations for data sections, handling the cases where by Bruno Cardoso Lopes · 16 years ago
  46. 0a38dc5 For PC relative relocations where symbols are defined in the same section they by Bruno Cardoso Lopes · 16 years ago
  47. e2b0ecd Use R_X86_64_32S to handle Jump Table Index relocation entries. Hide TAI usage inside getSection* functions by Bruno Cardoso Lopes · 16 years ago
  48. 171375f Add support to properly reference private symbols on relocation entries. by Bruno Cardoso Lopes · 16 years ago
  49. b674dbe revert one of the loops to use indicies over iterators because there are vector insertions inside the loop by Bruno Cardoso Lopes · 16 years ago
  50. 115934e Fix coding style issues pointed by Bill. by Bruno Cardoso Lopes · 16 years ago
  51. 4b70fab use std::vector instead of std::list for both Section and Symbol lists because by Bruno Cardoso Lopes · 16 years ago
  52. b8158ac Reapply my previous asmprinter changes now with more testing and two by Chris Lattner · 16 years ago
  53. c23197a llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable. by Torok Edwin · 16 years ago
  54. 1f316e3 Revert r7561{9,8,7,6}, which depend on r75610. by Daniel Dunbar · 16 years ago
  55. 063af39 Rename getValueName -> getMangledName by Chris Lattner · 16 years ago
  56. d291066 Cleanup the global emission and refactor some code by Bruno Cardoso Lopes · 16 years ago
  57. c25e758 assert(0) -> LLVM_UNREACHABLE. by Torok Edwin · 16 years ago
  58. 6933d3e Changed ELFCodeEmitter to inherit from ObjectCodeEmitter by Bruno Cardoso Lopes · 16 years ago
  59. ac57e6e Add the Object Code Emitter class. Original patch by Aaron Gray, I did some by Bruno Cardoso Lopes · 16 years ago
  60. 0b1308f Factor some code out and support for Jump Table relocations by Bruno Cardoso Lopes · 16 years ago
  61. 45f5d64 shrinking down #includes by Bruno Cardoso Lopes · 16 years ago
  62. a5e0abd Support Constant Pool Sections Add section symbols to the symbol table by Bruno Cardoso Lopes · 16 years ago
  63. e39493e Use a default alignment for data and bss sections. by Bruno Cardoso Lopes · 16 years ago
  64. c236a34 Use different functions to emit the string and symbol tables. by Bruno Cardoso Lopes · 16 years ago
  65. 0d3193e Add more methods to gather target specific elf stuff by Bruno Cardoso Lopes · 16 years ago
  66. ae9163f Introduce new BinaryObject (blob) class, ELF Writer modified to use it. BinaryObject.h by Aaron Gray by Bruno Cardoso Lopes · 16 years ago
  67. c997d45 Support for ELF Visibility by Bruno Cardoso Lopes · 16 years ago
  68. 06bfa33 Delete comment and fix typo by Bruno Cardoso Lopes · 16 years ago
  69. a029a27 Simple ELF32/64 binary files can now be emitted for x86 and x86_64 without by Bruno Cardoso Lopes · 16 years ago
  70. f5b0c5a Remove elf specific info from ELFWriter.h to Elf.h. Code cleanup and more comments added by Bruno Cardoso Lopes · 16 years ago
  71. 4cb3143 Move ELFCodeEmiter stuff to new files by Bruno Cardoso Lopes · 16 years ago
  72. 777d230 Rename PaddedSize to AllocSize, in the hope that this by Duncan Sands · 16 years ago
  73. 667d4b8 Introduce new linkage types linkonce_odr, weak_odr, common_odr by Duncan Sands · 16 years ago
  74. d6b7a24 Add support to the JIT for true non-lazy operation. When a call to a function by Nate Begeman · 16 years ago
  75. bb46f52 Add the private linkage. by Rafael Espindola · 17 years ago
  76. ceb4d1a Rename getABITypeSize to getTypePaddedSize, as suggested by Chris. by Duncan Sands · 17 years ago
  77. 02b73ab elf writer really wants the size of the global, not the size by Chris Lattner · 17 years ago
  78. 64f0300 The llvm::ELFWriter::EmitGlobal() method is calling the by Bill Wendling · 17 years ago
  79. 5788d1a Fix MachineCodeEmitter to use uintptr_t instead of intptr_t. This avoids some overflow issues. Patch by Thomas Jablin. by Evan Cheng · 17 years ago
  80. ce4a70b Rename startFunctionStub to startGVStub since it's also used for GV non-lazy ptr. by Evan Cheng · 17 years ago
  81. ae73dc1 Tidy up several unbeseeming casts from pointer to intptr_t. by Dan Gohman · 17 years ago
  82. cb37188 Use raw_ostream throughout the AsmPrinter. by Owen Anderson · 17 years ago
  83. aafce77 Add CommonLinkage; currently tentative definitions by Dale Johannesen · 17 years ago
  84. 87c3d41 Fix a bug in the ELF writer that caused it to produce malformed by Dan Gohman · 17 years ago
  85. 51cc3c1 Correlate stubs with functions in JIT: when emitting a stub, the JIT tells the memory manager which function by Nicolas Geoffray · 17 years ago
  86. bfae831 Use PassManagerBase instead of FunctionPassManager for functions by Dan Gohman · 17 years ago
  87. afe6c2b Enable exception handling int JIT by Nicolas Geoffray · 17 years ago
  88. d102593 Use getPreferredAlignmentLog or getPreferredAlignment by Duncan Sands · 18 years ago
  89. 4ee451d Remove attribution from file headers, per discussion on llvmdev. by Chris Lattner · 18 years ago
  90. ded2b0d Add explicit keywords, and fix a minor typo that they uncovered. by Dan Gohman · 18 years ago
  91. ca0ed74 Eliminate the remaining uses of getTypeSize. This by Duncan Sands · 18 years ago
  92. 1997473 Drop 'const' by Devang Patel · 18 years ago
  93. 3e15bf3 Use 'static const char' instead of 'static const int'. by Devang Patel · 18 years ago
  94. 794fd75 Do not use typeinfo to identify pass in pass manager. by Devang Patel · 18 years ago
  95. d2b7cec Generalize TargetData strings, to support more interesting forms of data. by Chris Lattner · 18 years ago
  96. 8f84f1f Add function to create a file writer. by Bill Wendling · 19 years ago
  97. 5d73a2a Use TargetELFWriterInfo class. by Bill Wendling · 19 years ago
  98. 58092e3 Teach TargetData to handle 'preferred' alignment for each target, and use by Chris Lattner · 19 years ago
  99. c904a5b Have the OutputBuffer take the is64Bit and isLittleEndian booleans. by Bill Wendling · 19 years ago
  100. 203d3e4 Changed to use the OutputBuffer instead of the methods in MachO and ELF writers. by Bill Wendling · 19 years ago