1. 705e07f remove various std::ostream version of printing methods from by Chris Lattner · 16 years ago
  2. 31b99dd Also shrink immediate branches; also more assembler workarounds. by Evan Cheng · 16 years ago
  3. a1efbbd Shrink ADR and LDR from constantpool late during constantpool island pass. by Evan Cheng · 16 years ago
  4. 48bd7e3 tPOP_RET now has predicate operands. by Evan Cheng · 16 years ago
  5. e0d7fe8 Remove another Darwin assembler workaround. by Evan Cheng · 16 years ago
  6. 4b322e5 Shrinkify Thumb2 load / store multiple instructions. by Evan Cheng · 16 years ago
  7. 764ab52 Whitespace cleanup. Remove trailing whitespace. by Jim Grosbach · 16 years ago
  8. 4a8ea21 Cosmetic changes. by Evan Cheng · 16 years ago
  9. b6879b2 Error out, rather than infinite looping, if constant island pass can't converge. by Evan Cheng · 16 years ago
  10. 53c67c0 tBfar is bl, which clobbers LR. by Evan Cheng · 16 years ago
  11. 25f7cfc Workaround a couple of Darwin assembler bugs. by Evan Cheng · 16 years ago
  12. d26b14c - Teach TBB / TBH offset limits are 510 and 131070 respectively since the offset by Evan Cheng · 16 years ago
  13. 8770f74 tbb / tbh instructions only branch forward, not backwards. by Evan Cheng · 16 years ago
  14. 5657c01 Optimize Thumb2 jumptable to use tbb / tbh when all the offsets fit in byte / halfword. by Evan Cheng · 16 years ago
  15. 66ac531 Change Thumb2 jumptable codegen to one that uses two level jumps: by Evan Cheng · 16 years ago
  16. 40efc25 Disable my constant island pass optimization (to make use soimm more effectively). It caused infinite looping on lencod. by Evan Cheng · 16 years ago
  17. 7894762 Make sure thumb2 jumptable entries are aligned. by Evan Cheng · 16 years ago
  18. d3d9d66 Fix up ARM constant island pass for Thumb2. by Evan Cheng · 16 years ago
  19. 5d8f1ca Fixing cp island pass. Step 1: Determine whether the constant pool offset can be by Evan Cheng · 16 years ago
  20. c23197a llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable. by Torok Edwin · 16 years ago
  21. c25e758 assert(0) -> LLVM_UNREACHABLE. by Torok Edwin · 16 years ago
  22. f1daf7d Use common code for both ARM and Thumb-2 instruction and register info. by David Goodwin · 16 years ago
  23. 58541fd 80 col violation. by Evan Cheng · 16 years ago
  24. 8b024a5 Add a new addressing mode for NEON load/store instructions. by Bob Wilson · 16 years ago
  25. c9a59b5 Improve Thumb-2 jump table support. by David Goodwin · 16 years ago
  26. 5e47a9a Add conditional and unconditional thumb-2 branch. Add thumb-2 jump table. by David Goodwin · 16 years ago
  27. 055b031 Implement Thumb2 ldr. by Evan Cheng · 16 years ago
  28. 39bf051 Fix up a few minor typos in comments. by Bob Wilson · 16 years ago
  29. 8494526 Fix 80-col violations and remove trailing whitespace. No functional changes. by Bob Wilson · 16 years ago
  30. 777d230 Rename PaddedSize to AllocSize, in the hope that this by Duncan Sands · 16 years ago
  31. b672840 Remove refs to non-DebugLoc versions of BuildMI from ARM. by Dale Johannesen · 17 years ago
  32. d1e7d9a Suppress a compile time warning. by Evan Cheng · 17 years ago
  33. ceb4d1a Rename getABITypeSize to getTypePaddedSize, as suggested by Chris. by Duncan Sands · 17 years ago
  34. f1bbb95 Use ARMFunctionInfo to track number of constpool entries and jumptables. by Evan Cheng · 17 years ago
  35. d735b80 Switch the MachineOperand accessors back to the short names like by Dan Gohman · 17 years ago
  36. 014278e Remove isImm(), isReg(), and friends, in favor of by Dan Gohman · 17 years ago
  37. ae73dc1 Tidy up several unbeseeming casts from pointer to intptr_t. by Dan Gohman · 17 years ago
  38. 8e5f2c6 Pool-allocation for MachineInstrs, MachineBasicBlocks, and by Dan Gohman · 17 years ago
  39. 52e724a Infrastructure for getting the machine code size of a function and an instruction. X86, PowerPC and ARM are implemented by Nicolas Geoffray · 17 years ago
  40. 5080f4d rename MachineInstr::setInstrDescriptor -> setDesc by Chris Lattner · 18 years ago
  41. 749c6f6 rename TargetInstrDescriptor -> TargetInstrDesc. by Chris Lattner · 18 years ago
  42. 6924430 Rename MachineInstr::getInstrDescriptor -> getDesc(), which reflects by Chris Lattner · 18 years ago
  43. 8aa797a Add new shorter predicates for testing machine operands for various types: by Chris Lattner · 18 years ago
  44. 9a1ceae Use MachineOperand::getImm instead of MachineOperand::getImmedValue. Likewise setImmedValue -> setImm by Chris Lattner · 18 years ago
  45. 4ee451d Remove attribution from file headers, per discussion on llvmdev. by Chris Lattner · 18 years ago
  46. ca0ed74 Eliminate the remaining uses of getTypeSize. This by Duncan Sands · 18 years ago
  47. 66a2a8f ARM: make branch folder remove unconditional branches by Dale Johannesen · 18 years ago
  48. 5d9c4b6 Fix hang compiling TimberWolf (allow for islands of size other than 4). by Dale Johannesen · 18 years ago
  49. 8202010 Didn't mean the last commit. Revert. by Evan Cheng · 18 years ago
  50. c608ff2 Update. by Evan Cheng · 18 years ago
  51. 0e1d379 Reflects the chanegs made to PredicateOperand. by Evan Cheng · 18 years ago
  52. 2706f97 Fix comment. by Evan Cheng · 18 years ago
  53. 44bec52 Add PredicateOperand to all ARM instructions that have the condition field. by Evan Cheng · 18 years ago
  54. 1997473 Drop 'const' by Devang Patel · 18 years ago
  55. 3e15bf3 Use 'static const char' instead of 'static const int'. by Devang Patel · 18 years ago
  56. 794fd75 Do not use typeinfo to identify pass in pass manager. by Devang Patel · 18 years ago
  57. 8593e41 Rewrite of Thumb constant islands handling (exact allowance for padding by Dale Johannesen · 18 years ago
  58. 185ea1e Doh. ARM::LEApcrel is a single instruction MI. by Evan Cheng · 18 years ago
  59. 768c9f7 Special handling of LEApcrel and tLEApcrel. by Evan Cheng · 18 years ago
  60. 56c42ef Make Thumb funcs containing islands 4-byte aligned. Fix bugs maintaining by Dale Johannesen · 18 years ago
  61. ed884f3 Remove unused constant pool entries. by Evan Cheng · 18 years ago
  62. d959aa4 fix off by 1 error in displacement computation by Dale Johannesen · 18 years ago
  63. f49407b - Track which callee-saved registers are spilled. - Some code clean up. by Evan Cheng · 18 years ago
  64. b71aa2b Changes requested in review of last pass. Also pulled isThumb into a by Dale Johannesen · 18 years ago
  65. f1b214d Add intelligence about where to break large blocks. by Dale Johannesen · 18 years ago
  66. ce74de4 cosmetic changes from review of last patch. obvious by Dale Johannesen · 18 years ago
  67. 598270a remove crediting of Evan Cheng and me. by Dale Johannesen · 18 years ago
  68. 99c49a4 Removed WaterListOffset, inserted BBOffsets. Remove TODO item about this by Dale Johannesen · 18 years ago
  69. 88e37ae rewrite of constant islands by Dale Johannesen · 18 years ago
  70. e03cff6 These vectors are frequently large. Use std::vector instead. by Evan Cheng · 19 years ago
  71. c99ef08 Add reference counting to constantpool entries. Delete the unused ones. by Evan Cheng · 19 years ago
  72. bd5d3db - Branch max. displacement calculation bug. - Add debugging info. by Evan Cheng · 19 years ago
  73. 05cc424 Use MBB.empty() instead of MBB.size() for speed. by Evan Cheng · 19 years ago
  74. 1dd6a60 Watch out for empty BB. by Evan Cheng · 19 years ago
  75. 556f33c Pasto. Lots of it. by Evan Cheng · 19 years ago
  76. b43216e - Off by one bugs in maximum displacement calculation / testing. by Evan Cheng · 19 years ago
  77. 2021abe Pessmistically assume the .align 2 before the first constpool entry adds by Evan Cheng · 19 years ago
  78. a2e3558 Handle an interesting corner case: the constpool_entry being reference is two by Evan Cheng · 19 years ago
  79. c0dbec7 When determining whether a pc relative branch / load displacement fits in the by Evan Cheng · 19 years ago
  80. a9b8b8d Some comments. by Evan Cheng · 19 years ago
  81. 934536d ConstPool island bug: watch out for cases where UserMI is the last MI of the BB. by Evan Cheng · 19 years ago
  82. 0c61584 - Added Thumb constpool island support. by Evan Cheng · 19 years ago
  83. d1b2c1e - In thumb mode, if size of MachineFunction is >= 2048, force LR to be by Evan Cheng · 19 years ago
  84. 29836c3 Factor GetInstSize() out of constpool island pass. by Evan Cheng · 19 years ago
  85. d85ac4d Thumb jumptable support. by Evan Cheng · 19 years ago
  86. 43aeab6 Conditional branch being fixed up is not the last MI in the BB, there is a by Evan Cheng · 19 years ago
  87. 1ee2925 Make LABEL a builtin opcode. by Jim Laskey · 19 years ago
  88. dd353b8 SplitBlockBeforeInstr() insert a unconditional branch to the next BB. This by Evan Cheng · 19 years ago
  89. 7755fac Need to scan the function for branches even if there aren't any constants. by Evan Cheng · 19 years ago
  90. a0bf794 Forgot to update this. by Evan Cheng · 19 years ago
  91. c285414 Add comment, fix typo, reduce memory usage, etc. by Evan Cheng · 19 years ago
  92. 743fa03 Doh. Skip JT branches. by Evan Cheng · 19 years ago
  93. af5cbcb Added (preliminary) branch shortening capability to constantpool island pass. by Evan Cheng · 19 years ago
  94. 012f2d9 Use PC relative ldr to load from a constantpool in Thumb mode. by Evan Cheng · 19 years ago
  95. a8e2989 ARM backend contribution from Apple. by Evan Cheng · 19 years ago