1. 4ee451d Remove attribution from file headers, per discussion on llvmdev. by Chris Lattner · 17 years ago
  2. 1d4ce2a Fix .eh table linkage issues on Darwin. Some EH support by Dale Johannesen · 17 years ago
  3. ca0ed74 Eliminate the remaining uses of getTypeSize. This by Duncan Sands · 17 years ago
  4. f4c164c Fix crash before main on ppc/linux with static constructors. PR1771 by Nick Lewycky · 17 years ago
  5. 347d39f Revert 42908 for now. by Evan Cheng · 17 years ago
  6. 8ddde0a Change the names used for internal labels to use the current by Dan Gohman · 17 years ago
  7. cb406c2 Use empty() member functions when that's what's being tested for instead by Dan Gohman · 17 years ago
  8. 76a4023 Honor user-defined section specification of a global, ignores whether its initializer is null. by Evan Cheng · 17 years ago
  9. 0f0daea Do not override user specified section. by Devang Patel · 17 years ago
  10. 92dfe20 Remove isReg, isImm, and isMBB, and change all their users to use by Dan Gohman · 17 years ago
  11. b8275a3 Don't ignore the return value of AsmPrinter::doInitialization and by Dan Gohman · 17 years ago
  12. e2b9052 Fix debug info and globals filled with zeros. by Nick Lewycky · 17 years ago
  13. 4105a9f add support for printing offset of global by Chris Lattner · 17 years ago
  14. 6c2d260 Fix PR1351 and CodeGen/PowerPC/2007-04-24-InlineAsm-I-Modifier.ll by Chris Lattner · 17 years ago
  15. 032953d Putting more constants which do not contain relocations into .literal{4|8|16} by Evan Cheng · 17 years ago
  16. 98ded76 For Darwin, put constant data into .const, .const_data, .literal{4|8|16} by Evan Cheng · 17 years ago
  17. f54949d Emit low/high immediate loads properly for Linux/PPC. by Nick Lewycky · 17 years ago
  18. bda9b0e Add support for changes in DwarfWriter. by Jim Laskey · 17 years ago
  19. 9aa2895 Fix CodeGen/PowerPC/2007-01-31-InlineAsmAddrMode.ll by Chris Lattner · 18 years ago
  20. 5cbf985 For PR1136: Rename GlobalVariable::isExternal as isDeclaration to avoid by Reid Spencer · 18 years ago
  21. b267ca1 Darwin -static should codegen static ctors / dtors to .constructor / .destructor sections. by Evan Cheng · 18 years ago
  22. 44c3b9f Change the MachineDebugInfo to MachineModuleInfo to better reflect usage by Jim Laskey · 18 years ago
  23. 78192b6 Fix test/CFrontend/2007-01-24-InlineAsmCModifier.c on PPC by Chris Lattner · 18 years ago
  24. 70d4107 add support for hidden visibility to darwin/ppc and linux/ppc targets by Chris Lattner · 18 years ago
  25. bf11182 Changes from Nick Lewycky with a simplified PPCTargetAsmInfo. by Jim Laskey · 18 years ago
  26. 2aa14aa Oops. by Jim Laskey · 18 years ago
  27. 40ee69f Original patch was overly complicated. by Jim Laskey · 18 years ago
  28. b608a4d Changes to target powerpc for non-Darwin assemblers. by Jim Laskey · 18 years ago
  29. 95b2c7d eliminate static ctors for Statistic objects. by Chris Lattner · 18 years ago
  30. 15404d0 move ExtWeakSymbols to AsmPrinter by Rafael Espindola · 18 years ago
  31. c35010d Honor cpu directive, take two. by Jim Laskey · 18 years ago
  32. 9a7dfa3 Rollback changes to take a different tack. by Jim Laskey · 18 years ago
  33. 55a7ec3 Honor the command line specification for machine type. by Jim Laskey · 18 years ago
  34. f5da133 What should be the last unnecessary <iostream>s in the library. by Bill Wendling · 18 years ago
  35. ac0b6ae Detemplatize the Statistic class. The only type it is instantiated with by Chris Lattner · 18 years ago
  36. 8752ce6 Add weak reference directive. by Evan Cheng · 18 years ago
  37. 9382e29 Copy and paste error. An initialized global cannot be a weak reference. by Evan Cheng · 18 years ago
  38. 45e507c ExternalWeak case in wrong location. by Jim Laskey · 18 years ago
  39. 81cf60f A initialized global variable cannot be extern weak. However, if a global value's initializer is itself a external weak symbol, emit the weak reference. by Evan Cheng · 18 years ago
  40. 1c45a66 Darwin PPC external weak linkage support. by Evan Cheng · 18 years ago
  41. 2ada085 Prime text sections to improve branch locality in large object files. by Jim Laskey · 18 years ago
  42. 566c1b1 Pretty print 'rldicr r2, r2, 2, 61' as 'sldi r2, r2, 2'. by Chris Lattner · 18 years ago
  43. df4ed63 start using PPC predicates more consistently. by Chris Lattner · 18 years ago
  44. 1b0a2d8 fix a regression that I introduced. stdu should scale the offset by 4 by Chris Lattner · 18 years ago
  45. af53a87 Go through all kinds of trouble to mark 'blr' as having a predicate operand by Chris Lattner · 18 years ago
  46. 3ed469c For PR786: by Reid Spencer · 18 years ago
  47. ab4022f 1. Clean up code due to changes in SwitchTo*Section(2) by Anton Korobeynikov · 18 years ago
  48. 31b6dda Doh. Must check if GV is constant first before putting it in .cstring. by Evan Cheng · 18 years ago
  49. 80aa9a1 Place cstrings in .cstring section. by Evan Cheng · 18 years ago
  50. f9c197e Move getPreferredAlignmentLog from AsmPrinter to TargetData by Devang Patel · 18 years ago
  51. 1da31ee Pass the MachineFunction into EmitJumpTableInfo. by Chris Lattner · 18 years ago
  52. 9b7ce7d Move getSectionForFunction to AsmPrinter, change it to return a string. by Chris Lattner · 18 years ago
  53. b56dcc4 implement DarwinTargetAsmInfo::getSectionForFunction, use it when outputting by Chris Lattner · 18 years ago
  54. fea13d3 emit jump table before debug info by Chris Lattner · 18 years ago
  55. 37dfa02 Always emit the jump table after the function so it's part of the same 'atom' by Chris Lattner · 18 years ago
  56. 4da1c82 The DarwinAsmPrinter need not check for isDarwin. createPPCAsmPrinterPass by Chris Lattner · 18 years ago
  57. dadceed Wrap some darwin'isms with isDarwin checks. by Chris Lattner · 18 years ago
  58. a0f3d17 Make target asm info a property of the target machine. by Jim Laskey · 18 years ago
  59. 563321a Separate target specific asm properties from the asm printers. by Jim Laskey · 18 years ago
  60. a4f0b3a s|llvm/Support/Visibility.h|llvm/Support/Compiler.h| by Chris Lattner · 18 years ago
  61. b9ca926 Encode pc-relative conditional branch offset as pc+(num of bytes / 4). The by Evan Cheng · 18 years ago
  62. 52a51e38 Emit .set directives for jump table entries when possible, which reduces by Nate Begeman · 18 years ago
  63. 2f1ae88 Support jump tables when in PIC relocation model by Nate Begeman · 18 years ago
  64. 35d86fe Rename RelocModel::PIC to PIC_, to avoid conflicts with -DPIC. by Chris Lattner · 18 years ago
  65. ba4733d Remove what little AIX support we have. It has never been tested and isn't by Chris Lattner · 18 years ago
  66. 45c04fc Print negative immediates as negative values instead of large constants by Chris Lattner · 18 years ago
  67. 9525528 Use hidden visibility to make symbols in an anonymous namespace get by Chris Lattner · 18 years ago
  68. 2a41a98 shrink libllvmgcc.dylib another 25K by Chris Lattner · 18 years ago
  69. 9f029a6 Print stubs for external globals right. by Chris Lattner · 18 years ago
  70. e4172be Add a pattern for i64 sra. Print 8-byte units with a space between the .quad by Chris Lattner · 18 years ago
  71. 7e097e4 Print darwin stub stuff correctly in 64-bit mode. With this, treeadd works in by Chris Lattner · 18 years ago
  72. 89d67fa Add and sort "sections" in debug lines. This always stepping through by Jim Laskey · 18 years ago
  73. b410dc9 Rename OR4 -> OR. Move some PPC64-specific stuff to the 64-bit file by Chris Lattner · 18 years ago
  74. f8a01a9 1. Support standard dwarf format (was bootstrapping in Apple format.) by Jim Laskey · 18 years ago
  75. 014f98c Place dwarf headers at earliest possible point. Well behaved when skipping by Jim Laskey · 18 years ago
  76. f1d2337 Remove some dead code, identified by coverity. by Chris Lattner · 18 years ago
  77. b57b516 remove dead variable. by Chris Lattner · 18 years ago
  78. 219f1b5 Indent .data/.text in the .s file by Chris Lattner · 18 years ago
  79. 4632d7a Split SwitchSection into SwitchTo{Text|Data}Section methods. by Chris Lattner · 18 years ago
  80. 35c3913 Print a grouping around inline asm blocks so that we can tell when we are by Chris Lattner · 18 years ago
  81. 2d90ac7 Rename MO_VirtualRegister -> MO_Register. Clean up immediate handling. by Chris Lattner · 18 years ago
  82. 63b3d71 There shalt be only one "immediate" operand type! by Chris Lattner · 18 years ago
  83. ea50fab Remove a bunch more SparcV9 specific stuff by Chris Lattner · 18 years ago
  84. 10f3597 Remove some more unused stuff from MachineInstr that was leftover from V9. by Chris Lattner · 18 years ago
  85. a69571c Refactor TargetMachine, pushing handling of TargetData into the target-specific subclasses. This has one caller-visible change: getTargetData() now returns a pointer instead of a reference. by Owen Anderson · 18 years ago
  86. 6e0f386 Hooray, everyone now uses the same printBasicBlockLabel implementation by Nate Begeman · 18 years ago
  87. cdf38c4 Extend printBasicBlockLabel a bit so that it can be used to print all by Nate Begeman · 18 years ago
  88. 37efe67 JumpTable support! What this represents is working asm and jit support for by Nate Begeman · 18 years ago
  89. 6b92b8e Make sure that debug labels are defined within the same section and after the by Jim Laskey · 18 years ago
  90. 9c61dcf Codegen things like: by Chris Lattner · 18 years ago
  91. 99db044 Change interface to DwarfWriter. by Jim Laskey · 18 years ago
  92. e5ba580 Add support for "ri" addressing modes where the immediate is a 14-bit field by Chris Lattner · 18 years ago
  93. 13feb58 Print absolute memory references like this: by Chris Lattner · 18 years ago
  94. c4c6257 Added getTargetLowering() to TargetMachine. Refactored targets to support this. by Evan Cheng · 18 years ago
  95. 7809811 Use "llvm.metadata" section for debug globals. Filter out these globals in the by Jim Laskey · 18 years ago
  96. 2c003e2 Add memory printing support for PPC. Input memory operands now work with by Chris Lattner · 18 years ago
  97. e3f0157 Implement the PPC inline asm "L" modifier. This allows us to compile: by Chris Lattner · 18 years ago
  98. 4c1aa86 - Added option -relocation-model to set relocation model. Valid values include static, pic, by Evan Cheng · 18 years ago
  99. 0420f2a Coordinate activities with llvm-gcc4 and dwarf. by Jim Laskey · 18 years ago
  100. d2ee218 Moved PICEnabled to include/llvm/Target/TargetOptions.h by Evan Cheng · 18 years ago