1. 9fb823b Move all of the header files which are involved in modelling the LLVM IR by Chandler Carruth · 13 years ago
  2. ed0881b Use the new script to sort the includes of every file under lib. by Chandler Carruth · 13 years ago
  3. e42af36 Use TARGET2 relocation for TType references on ARM. by Anton Korobeynikov · 13 years ago
  4. cdfe20b Move TargetData to DataLayout. by Micah Villmow · 13 years ago
  5. de9e92e Typo. by Eric Christopher · 13 years ago
  6. 1fcf5bc Prune some includes by Craig Topper · 14 years ago
  7. 8213c8a Remove some dead code and tidy things up now that vectors use ConstantDataVector by Chris Lattner · 14 years ago
  8. 139822f C++, CBE, and TLOF support for ConstantDataSequential by Chris Lattner · 14 years ago
  9. f3e8502 Add 'llvm_unreachable' to passify GCC's understanding of the constraints by Chandler Carruth · 14 years ago
  10. edbb58c5 Remove unnecessary default cases in switches that cover all enum values. by David Blaikie · 14 years ago
  11. 50f02cb Move global variables in TargetMachine into new TargetOptions class. As an API by Nick Lewycky · 14 years ago
  12. bbf3b0d Goodbye TargetAsmInfo. This eliminate last bit of CodeGen and Target in llvm-mc. by Evan Cheng · 14 years ago
  13. 7679299 Add MCObjectFileInfo and sink the MCSections initialization code from by Evan Cheng · 14 years ago
  14. 229907c land David Blaikie's patch to de-constify Type, with a few tweaks. by Chris Lattner · 14 years ago
  15. 2d7faa5 Fix up TargetLoweringObjectFile ctors to properly initialize fields. by Evan Cheng · 14 years ago
  16. 9af2fa9 Use the presence of the __compact_unwind section to indicate that a target by Bill Wendling · 14 years ago
  17. f942585 Add a flag that indicates whether a target supports compact unwind info or not. by Bill Wendling · 14 years ago
  18. d346304 Add a __LD,__compact_unwind section. by Bill Wendling · 14 years ago
  19. 6002068 Fix a FIXME by making GlobalVariable::getInitializer() return a by Jay Foad · 14 years ago
  20. a48b137 Remove a flag that would set the ".eh" symbol as .globl. MachO was the only one by Bill Wendling · 14 years ago
  21. 750cb61 GCC uses a different encoding of pointers in the FDE when using by Rafael Espindola · 14 years ago
  22. ce83fc3 Remove unnecessary argument. by Rafael Espindola · 14 years ago
  23. 0870434 Rename getPersonalityPICSymbol to getCFIPersonalitySymbol, document it, and by Rafael Espindola · 14 years ago
  24. e473aaf Remove unused arguments. by Rafael Espindola · 15 years ago
  25. 47f86e6 MSVC needs the return 0 to compile. by Francois Pichet · 15 years ago
  26. a83b177 Put each personality function in a section. This fixes the gnu ld warning: by Rafael Espindola · 15 years ago
  27. a01cdb0 Add 129518 back with a fix for when we are producing eh just because of debug info. by Rafael Espindola · 15 years ago
  28. b5e3e9d Revert r129518, "Change ELF systems to use CFI for producing the EH tables. This reduces the" by NAKAMURA Takumi · 15 years ago
  29. aa2a7cd Change ELF systems to use CFI for producing the EH tables. This reduces the by Rafael Espindola · 15 years ago
  30. 4b7b7fb Delay the creation of eh_frame so that the user can change the defaults. by Rafael Espindola · 15 years ago
  31. ea4e983 minor change to rafael's recent patches: if something is by Chris Lattner · 15 years ago
  32. cba4c33 Only put unnamed_addr constants in mergeable sections. Fixes PR8297. by Rafael Espindola · 15 years ago
  33. 9f06f91 the latest assembler that runs on powerpc 10.4 machines doesn't by Chris Lattner · 15 years ago
  34. f1d8304 Eliminate unnecessary uses of getZExtValue(). by Dan Gohman · 15 years ago
  35. 2104b8d rename llvm::llvm_report_error -> llvm::report_fatal_error by Chris Lattner · 16 years ago
  36. aed00fa fix GetOrCreateTemporarySymbol to require a name, clients by Chris Lattner · 16 years ago
  37. be3242b finally give Mangler a getSymbol method, which returns an MCSymbol by Chris Lattner · 16 years ago
  38. 47bef1a make TargetLoweringObjectFile::getExprForDwarfReference by Chris Lattner · 16 years ago
  39. 03627cb fix a fixme in TargetLoweringObjectFile::getExprForDwarfReference by Chris Lattner · 16 years ago
  40. 2562356 rename getSymbolForDwarf* to getExprForDwarf* since it returns by Chris Lattner · 16 years ago
  41. 71c30c1 move three lowering hooks from MAI to TLOF and make one of them by Chris Lattner · 16 years ago
  42. ac2361a set the temporary bit on MCSymbols correctly. by Chris Lattner · 16 years ago
  43. 85e5081 Make error statement more personal. by Bill Wendling · 16 years ago
  44. ab663a0 Move TLOF implementations to libCodegen to resolve layering violation. by Anton Korobeynikov · 16 years ago
  45. 397aecb Add suffix for stubs, so we won't have name clashes with private symbols. by Anton Korobeynikov · 16 years ago
  46. ae4ccc1 Preliminary patch to improve dwarf EH generation - Hooks to return Personality / FDE / LSDA / TType encoding depending on target / options (e.g. code model / relocation model) - MCIzation of Dwarf EH printer to use encoding information - Stub generation for ELF target (needed for indirect references) - Some other small changes here and there by Anton Korobeynikov · 16 years ago
  47. 94b993e Simplify some uses of str(n)cmp with StringRef. by Benjamin Kramer · 16 years ago
  48. cd2915e stop using the .lcomm pseudoop on darwin, instead, directly use the by Chris Lattner · 16 years ago
  49. b253421 make TLOF subclassify BSS based on linkage type into private, external by Chris Lattner · 16 years ago
  50. a986aa3 fix a significant difference between llvm and gcc on ELF systems: by Chris Lattner · 16 years ago
  51. 5b585f8 introduce a section kind for common linkage. Use this to slightly by Chris Lattner · 16 years ago
  52. 1d37188 Cleanup handling of .zerofill on darwin: by Chris Lattner · 16 years ago
  53. 83e872e Get MCSymbol out of the mangling business, and move all the logic by Chris Lattner · 16 years ago
  54. f62e3ee move the mangler into libtarget from vmcore. by Chris Lattner · 16 years ago
  55. a44d8f8 fix build failure. by Chris Lattner · 16 years ago
  56. 32c9512 remove a couple of actively incorrect uses of getMangledName. by Chris Lattner · 16 years ago
  57. ccbeed2 fix ELF section mangling stuff for weak symbols to not use by Chris Lattner · 16 years ago
  58. 643b817 Use the GV version of getNameWithPrefix in TargetLoweringObjectFileCOFF:: by Chris Lattner · 16 years ago
  59. b0dc959 add a fixme, ELF MCSection isn't quite right and weak unnamed globals are broken by Chris Lattner · 16 years ago
  60. f0a401f eliminate some uses of Mangler::makeNameProper. by Chris Lattner · 16 years ago
  61. 209aeca change Mangler::makeNameProper to return its result in a SmallVector by Chris Lattner · 16 years ago
  62. 36ef435 We need to put any kind of data with a relocation into a by Eric Christopher · 16 years ago
  63. 31c74db Reverting the EH table patches. by Bill Wendling · 16 years ago
  64. 4b384b0 The "ReadOnlyWithRel" enum seems to apply more to what Darwin does with the EH by Bill Wendling · 16 years ago
  65. 07e6e2c Attempt #2: by Bill Wendling · 16 years ago
  66. d82510e add some missing #includes by Chris Lattner · 16 years ago
  67. ad36e8a Pass StringRef by value. by Daniel Dunbar · 16 years ago
  68. 692a3ea --- Reverse-merging r82282 into '.': by Bill Wendling · 16 years ago
  69. f878d70 Still one more thing wrong here... by Bill Wendling · 16 years ago
  70. 0f89960 Here's fun! It turns out that these filter functions can be internal. If they're by Bill Wendling · 16 years ago
  71. 85689b2 Revert r82274. It's causing failures in the CINT2006 benchmarks. by Bill Wendling · 16 years ago
  72. 43f2cd7 It's inefficient to have place the exception tables (which contain the LSDA) by Bill Wendling · 16 years ago
  73. a6ebba2 pass machinemoduleinfo down into getSymbolForDwarfGlobalReference, by Chris Lattner · 16 years ago
  74. b866602 Big change #1 for personality function references: by Chris Lattner · 16 years ago
  75. bfd22dd Provide proper section flags for various BSS flavours by Anton Korobeynikov · 16 years ago
  76. 1df5886 Whitespace cleanup by Anton Korobeynikov · 16 years ago
  77. b039caa Simplify. by Daniel Dunbar · 16 years ago
  78. 03ded46 fix COFF targets (mingw/cygwin) to provide ehframe and LSDA sections by Chris Lattner · 16 years ago
  79. e4d2e84 Text sections should have 'exec' flag set. This seems to unbreak libstdc++ on linux. by Anton Korobeynikov · 16 years ago
  80. bd3c033 Clear the uniquing table when initializing TLOF to avoid a crash when the TLOF is reinitialized with a different MCContext. by Benjamin Kramer · 16 years ago
  81. 94a2c1a Update getSectionForConstant() to to allow mergable sections to be nulled out by Richard Osborne · 16 years ago
  82. 447b9b4 the .eh_frame sections we generate need to be writable (which by Chris Lattner · 16 years ago
  83. ddb991c If ELF subtargets don't want to support 4/8/16-byte mergable sections, allow by Chris Lattner · 16 years ago
  84. 3e9dbe5 Make these matching rules more strict so that they don't by Dan Gohman · 16 years ago
  85. 62e6a8b Remove HasCrazyBSS and add a flag in TAI to indicate that '.section' by Bruno Cardoso Lopes · 16 years ago
  86. 607cd3b Change MCSectionELF to represent a section semantically instead of by Bruno Cardoso Lopes · 16 years ago
  87. 04b4700 sink uniquing of sections out of MCContext into the ELF and PECOFF TLOF implementations. by Chris Lattner · 16 years ago
  88. b691316 add some comments: MCContext owns the MCSections, but it bump pointer allocates by Chris Lattner · 16 years ago
  89. c0741eb reject invalid code like: by Chris Lattner · 16 years ago
  90. 2d5bdc2 implement support for uniquing MachO sections. by Chris Lattner · 16 years ago
  91. c4c3c66 reduce #includage by Chris Lattner · 16 years ago
  92. 7c50c9b Tidy #includes. by Dan Gohman · 16 years ago
  93. 6c20391 split MachO section handling stuff out to its out .h/.cpp file. by Chris Lattner · 16 years ago
  94. cb307a27 Make the big switch: Change MCSectionMachO to represent a section *semantically* by Chris Lattner · 16 years ago
  95. 1cb9396 1. Make MCSection an abstract class. by Chris Lattner · 16 years ago
  96. 245fdfb make target-specific TLOF impls (except PIC16) create target-specific by Chris Lattner · 16 years ago
  97. c9ea8fd eliminate TargetLoweringObjectFileSparc in favor of a TAI hook. by Chris Lattner · 16 years ago
  98. ce7d140 now that getOrCreateSection is all object-file specific, by Chris Lattner · 16 years ago
  99. 302041d sink getOrCreateSection down into all the object file implementations, by Chris Lattner · 16 years ago
  100. 1ff9013 Fix several fixmes and clean up code by sinking *all* section by Chris Lattner · 16 years ago