1. 6b44809 - Keep track all def and uses of stack slot available in register. by Evan Cheng · 18 years ago
  2. 68cbcee testcase for PR1233 by Chris Lattner · 18 years ago
  3. c3dd314 Invalidate last use of a reused register if the use is a deleted noop copy. by Evan Cheng · 18 years ago
  4. 82932a5 argument lowering should copy from the vreg shadows of live-in arguments by Chris Lattner · 18 years ago
  5. 9b6f57c add a note by Chris Lattner · 18 years ago
  6. a505fb6 Fix a typo. by Owen Anderson · 18 years ago
  7. f09aef7 Use a better algorithm for rounding sqrt results. Change the FIXME about by Reid Spencer · 18 years ago
  8. c6a28fc Implement unionWith. by Nick Lewycky · 18 years ago
  9. 67ef241 switch the inliner from being recursive to being iterative. by Chris Lattner · 18 years ago
  10. 9b4aeb3 Fix an unequal bitwidth issue. by Reid Spencer · 18 years ago
  11. d2dceea grammaro by Chris Lattner · 18 years ago
  12. 0eca22a Make it 64-bit safe. by Evan Cheng · 18 years ago
  13. 9bf94a4 Add a FIXME by Reid Spencer · 18 years ago
  14. 4474d87 Fix a typo. by Reid Spencer · 18 years ago
  15. 36184ed Fix a problem where shifting by 64-bits leads to incorrect results on PPC by Reid Spencer · 18 years ago
  16. 9f8e50d eliminate unnecessary reset of SP in epilog on darwin by Dale Johannesen · 18 years ago
  17. 513d0f2 Reverse a premature commital. by Reid Spencer · 18 years ago
  18. cae5754 Prefer non-virtual calls to ConstantInt::isZero over virtual calls to by Reid Spencer · 18 years ago
  19. 34da0ac Add a non-virtual test for zero, isZero, and rename isUnitValue isOne. by Reid Spencer · 18 years ago
  20. b45a221 Add an abs() function to get the absolute value. by Reid Spencer · 18 years ago
  21. 295e40a Combine two lines that can be. by Reid Spencer · 18 years ago
  22. dbf6d37 Remove virtual keyword from method that doesn't need to be virtual. by Reid Spencer · 18 years ago
  23. 35fa439 Make it possible to create an SCEVUnknown from an APInt as well as an int. by Reid Spencer · 18 years ago
  24. a3507eb Although probably not necessary, guard against a potential assertion by by Reid Spencer · 18 years ago
  25. 4da0451 Use isUnitValue() instead of getZExtValue() == 1 which will prevent an by Reid Spencer · 18 years ago
  26. 37eeaa7 Add an isUnitValue method for comparison against 1. This just follows a by Reid Spencer · 18 years ago
  27. c100b96 Use GCC intrinsics when available, and use smarter fallbacks when not. by Owen Anderson · 18 years ago
  28. 97b4ee3 Clarify the use of getValue/getSExtValue/getZExtValue and add the new by Reid Spencer · 18 years ago
  29. a0e0129 Use APInt conversion to string so the result is correct regardless of the by Reid Spencer · 18 years ago
  30. 7029725 Make output for ConstantInt construction correct for any bitwidth. by Reid Spencer · 18 years ago
  31. 0d54b7d Use the APInt versions of the bit-wise conversions of float/double to int by Reid Spencer · 18 years ago
  32. 53ee4f9 Add doubleToBits and floatToBits methods. by Reid Spencer · 18 years ago
  33. bb9723b Use modern variable name. ConstantUnsignedInt is long since dead. No by Reid Spencer · 18 years ago
  34. 0102ca8 Emit eh filter info. by Jim Laskey · 18 years ago
  35. 59e8434 Collect eh filter info. by Jim Laskey · 18 years ago
  36. e2a6acd Use a simpler constructor for ConstantInt. by Reid Spencer · 18 years ago
  37. 0b4711b Lower eh filter intrinsic. by Jim Laskey · 18 years ago
  38. c3c1ca0 Add eh filter intrinsic. by Jim Laskey · 18 years ago
  39. ab2ed8e Add bitsToDouble and bitsToFloat methods for re-interpretation of bits as FP. by Reid Spencer · 18 years ago
  40. 1ede29c Wrap a long line. by Reid Spencer · 18 years ago
  41. 4d050d7 Avoid a potential assert out if the loop increment is > 64 bits. by Reid Spencer · 18 years ago
  42. 1079427 Regenerate. by Reid Spencer · 18 years ago
  43. 62aa905 The 64-bit constructor for ConstantInt changes from int64_t to uint64_t. by Reid Spencer · 18 years ago
  44. c7cd7a0 Construct ConstantInt with simpler constructor. by Reid Spencer · 18 years ago
  45. af1aacd Use a simpler constructor when constructing ConstantInt. Also, replace by Reid Spencer · 18 years ago
  46. ef2185b Use a simpler constructor when constructing ConstantInst. by Reid Spencer · 18 years ago
  47. 0050c73 Drop the ConstantInt(const Type&, const APInt&) constructor. It is by Reid Spencer · 18 years ago
  48. 4e1e87f Make the static table of results in sqrt const. by Reid Spencer · 18 years ago
  49. e479ef0 Fix last night's 445.gobmk breakage which was caused by comparison of by Reid Spencer · 18 years ago
  50. 68e2300 Add methods for bit width modification: sextOrTrunc, zextOrTrunc. by Reid Spencer · 18 years ago
  51. 9dd9abd Ensure that fastcall'ed function is correctly mangled & stack is by Anton Korobeynikov · 18 years ago
  52. 43c6e7c Implemented the frameaddress intrinsic for PPC. by Nicolas Geoffray · 18 years ago
  53. a81a5ab Delete register scavenger when done with it. by Evan Cheng · 18 years ago
  54. c1c2de0 Use a spilled free callee-saved register as scratch register. by Evan Cheng · 18 years ago
  55. 5196b36 Add a version of FindUnusedReg that restrict search to a specific set of registers. by Evan Cheng · 18 years ago
  56. f49407b - Track which callee-saved registers are spilled. - Some code clean up. by Evan Cheng · 18 years ago
  57. a6e8a95 Remove the "isSigned" parameters from ConstantRange. It turns out they by Reid Spencer · 18 years ago
  58. cda067b Switch from std::vector<bool> to BitVector. by Evan Cheng · 18 years ago
  59. e8019bb APIntify various computations in ScalarEvolution by Reid Spencer · 18 years ago
  60. b5ca2cd Use a real table in sqrt to shorten and quicken the code. by Reid Spencer · 18 years ago
  61. f1d6006 Get rid of verboten <iostream> include. by Bill Wendling · 18 years ago
  62. 2a934cb Use the GCC built-in for PopulationCount when it's available, and use a faster by Owen Anderson · 18 years ago
  63. af8fb19 Add a square root function. by Reid Spencer · 18 years ago
  64. 9e57414 Reduce #includage by taking a method out of line. by Reid Spencer · 18 years ago
  65. c0ba1bc A restore is promoted to copy (or deleted entirely), remove the kill from the last use of the targetted register. by Evan Cheng · 18 years ago
  66. 23322d1 Interface clean up. by Evan Cheng · 18 years ago
  67. 0bfd449 Add an IntegerType::getMask() method to get an APInt mask for the type. by Reid Spencer · 18 years ago
  68. a3756ee Interface clean up. by Evan Cheng · 18 years ago
  69. 28654b6 Clean up interface. by Evan Cheng · 18 years ago
  70. 8e92b4b Oops. by Evan Cheng · 18 years ago
  71. 88d1f58 Track all joined registers and eliminate unneeded kills after all joining are done. by Evan Cheng · 18 years ago
  72. 3193a2d MachineBasicBlock fields should not be public. by Evan Cheng · 18 years ago
  73. 6263cba For PR1205: Make GetConstantFactor compute its result using an APInt. by Reid Spencer · 18 years ago
  74. b71aa2b Changes requested in review of last pass. Also pulled isThumb into a by Dale Johannesen · 18 years ago
  75. ad78ef2 Doh. ARM::PC is obvious a reserved register. by Evan Cheng · 18 years ago
  76. c6aedf7 For PR1205: Adjust to changes in ConstantRange interface. by Reid Spencer · 18 years ago
  77. bb626a6 Move ConstantRange class to lib/Support from lib/Analysis and make its by Reid Spencer · 18 years ago
  78. 3da4384 Provide an ICmpInst::makeConstantRange to generate a ConstantRange value by Reid Spencer · 18 years ago
  79. 8782d48 Chain is on second operand. by Jim Laskey · 18 years ago
  80. 581b0d4 For PR1205: by Reid Spencer · 18 years ago
  81. f57fc81 Implement a convenience method to construct a ConstantInt directly from an by Reid Spencer · 18 years ago
  82. dc5c159 For PR1205: by Reid Spencer · 18 years ago
  83. f1b214d Add intelligence about where to break large blocks. by Dale Johannesen · 18 years ago
  84. eac6607 remove dead option by Chris Lattner · 18 years ago
  85. ba3f7c6 Eliminate enable-x86-fastcc by Chris Lattner · 18 years ago
  86. 3f09fc2 Handle mix of personalities. by Jim Laskey · 18 years ago
  87. 63f3e3f Provide a more meaningful name. by Jim Laskey · 18 years ago
  88. 64ce0ca MERGE_VALUES unnecessary. by Jim Laskey · 18 years ago
  89. 7e08570 fastcc -> fastcall by Chris Lattner · 18 years ago
  90. 7050080 bugfix: fastcall does not require the first two params to be marked 'inreg', by Chris Lattner · 18 years ago
  91. b5d8088 fastcc -> fastcall by Chris Lattner · 18 years ago
  92. 08553f9 fastcc -> fastcall by Chris Lattner · 18 years ago
  93. 663e711 For PR1205: by Reid Spencer · 18 years ago
  94. 9490077 Make the trunc/sext/zext methods return APInt& so that these operations by Reid Spencer · 18 years ago
  95. f225344 Make APInt a little more friendly to its users: by Reid Spencer · 18 years ago
  96. a0a6278 Fix a typo, thanks Bill! by Nate Begeman · 18 years ago
  97. fec910c More Mach-O writer improvements. by Nate Begeman · 18 years ago
  98. e32bbf6 use high-level functions in CCState by Chris Lattner · 18 years ago
  99. 66baf26 add methods for analysis of call results and return nodes. by Chris Lattner · 18 years ago
  100. 638402b make use of helper functions in CCState for analyzing formals and calls. by Chris Lattner · 18 years ago