1. d9ea85a remove some uses of llvm/Support/Streams.h by Chris Lattner · 16 years ago
  2. 79c5d3f remove the std::ostream version of module and type printing. by Chris Lattner · 16 years ago
  3. bdff548 eliminate the "Value" printing methods that print to a std::ostream. by Chris Lattner · 16 years ago
  4. 1d0be15 Push LLVMContexts through the IntegerType APIs. by Owen Anderson · 16 years ago
  5. a9ad041 This void is implicit in C++. by Dan Gohman · 16 years ago
  6. 482cccd MSVC warning fixes; patch by Stein Roger! by Daniel Dunbar · 16 years ago
  7. d5fe92e llvm_report_error already prints "LLVM ERROR:". So stop reporting errors like "LLVM ERROR: llvm: error:" or "LLVM ERROR: ERROR:". by Benjamin Kramer · 16 years ago
  8. f6ccee5 Switch to getNameStr(). by Daniel Dunbar · 16 years ago
  9. 8f60302 Simplify some uses of Value::getName() by Daniel Dunbar · 16 years ago
  10. 4b1511b Add EngineBuilder to ExecutionEngine in favor of the five optional argument EE::create(). by Reid Kleckner · 16 years ago
  11. c23197a llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable. by Torok Edwin · 16 years ago
  12. c25e758 assert(0) -> LLVM_UNREACHABLE. by Torok Edwin · 16 years ago
  13. 7d696d8 Convert more assert(0)+abort() -> LLVM_UNREACHABLE, by Torok Edwin · 16 years ago
  14. 354b5ac remove dead function. by Chris Lattner · 16 years ago
  15. 489393d Add an option to allocate JITed global data separately from code. By by Jeffrey Yasskin · 16 years ago
  16. a9d1f2c Have scoped mutexes take referenes instead of pointers. by Owen Anderson · 16 years ago
  17. fdca74c Get rid of unnecessary global variables. by Owen Anderson · 16 years ago
  18. e46161f Fix the Ocaml bindings for the ExecutionEngine: with the change to build by Bob Wilson · 16 years ago
  19. 7e9e36a Eliminate object-relinking support from CMake. Fixes PR 4429 and by Douglas Gregor · 16 years ago
  20. c226570 Add locking around the external function lookup table for the interpreter. by Owen Anderson · 16 years ago
  21. ae3a0be Split the Add, Sub, and Mul instruction opcodes into separate by Dan Gohman · 16 years ago
  22. 777d230 Rename PaddedSize to AllocSize, in the hope that this by Duncan Sands · 16 years ago
  23. 98a366d Instead of passing in an unsigned value for the optimization level, use an enum, by Bill Wendling · 16 years ago
  24. 5e5cb79 The second part of the change from -fast to -O#. This changes the JIT to accept by Bill Wendling · 16 years ago
  25. 93f70fc Link against libffi if available, fall back to "no external calls from by Nick Lewycky · 16 years ago
  26. de551f9 Use CHAR_BIT instead of hard-coding 8 in several places where it by Dan Gohman · 16 years ago
  27. f9c5c5c Reapply patch from r62553, with a fix to avoid looking for an ffi.h that isn't by Nick Lewycky · 17 years ago
  28. 32aaee6 Revert r62553 and r62616 due to issues with portability. by Tanya Lattner · 17 years ago
  29. 9c70819 Fix typo. Patch by Alexei Svitkine. by Duncan Sands · 17 years ago
  30. f514e2d Make the Interpreter use libffi if it's available. Patch from Alexei Svitkine! by Nick Lewycky · 17 years ago
  31. 9029cb8 don't assert and die on out of range (undefined) shifts. This fixes PR3334. by Chris Lattner · 17 years ago
  32. ceb4d1a Rename getABITypeSize to getTypePaddedSize, as suggested by Chris. by Duncan Sands · 17 years ago
  33. 9b8f542 Removed trailing whitespace from Makefiles. by Misha Brukman · 17 years ago
  34. d68a076 Tidy up #includes, deleting a bunch of unnecessary #includes. by Dan Gohman · 17 years ago
  35. 4520dd2 Add <cstdio> include where needed by gcc-4.4. Patch by Samuel Tardieu. by Duncan Sands · 17 years ago
  36. 0598866 Large mechanical patch. by Devang Patel · 17 years ago
  37. eaf42ab s/ParameterAttributes/Attributes/g by Devang Patel · 17 years ago
  38. 3d01fc7 Initial support for the CMake build system. by Oscar Fuentes · 17 years ago
  39. 502f20b Add new parameter Fast to createJIT to enable the fast codegen path. by Evan Cheng · 17 years ago
  40. 1eac4e0 Use strcpy instead of sprintf here. This avoids a GCC 4.3 format-string by Dan Gohman · 17 years ago
  41. 663ceeb Add a new hidden option to the interpreter to cause it to print by Chris Lattner · 17 years ago
  42. 844731a Clean up the use of static and anonymous namespaces. This turned up by Dan Gohman · 17 years ago
  43. aee7f21 fix warnings with assertions disabled. by Chris Lattner · 17 years ago
  44. 4c71dfe Update gcc 4.3 warnings fix patch with recent head changes by Anton Korobeynikov · 17 years ago
  45. ae9f3a3 Unbreak build with gcc 4.3: provide missed includes and silence most annoying warnings. by Anton Korobeynikov · 17 years ago
  46. 8647bcd Added memmove to interpreter external functions list. Patch by Daniel Dunbar. by Evan Cheng · 17 years ago
  47. 3035959 Use empty() instead of comparing size() with zero. by Dan Gohman · 18 years ago
  48. 4ee451d Remove attribution from file headers, per discussion on llvmdev. by Chris Lattner · 18 years ago
  49. fc643c5 remove attribution from lib Makefiles. by Chris Lattner · 18 years ago
  50. ded2b0d Add explicit keywords, and fix a minor typo that they uncovered. by Dan Gohman · 18 years ago
  51. 621dead Add a guard to cxxabi header as other platform may not support it. by Zhou Sheng · 18 years ago
  52. 6a7951c Fixed PR1629. by Zhou Sheng · 18 years ago
  53. 22ad1d7 It looks like this has been broken for some time - get it to compile. by Duncan Sands · 18 years ago
  54. 9f2f142 simplify creation of the interpreter, make ExecutionEngine ctor protected, by Chris Lattner · 18 years ago
  55. afa3b6d Add some convenience methods for querying attributes, and use them. by Duncan Sands · 18 years ago
  56. 514ab34 Executive summary: getTypeSize -> getTypeStoreSize / getABITypeSize. by Duncan Sands · 18 years ago
  57. 724441e Fix an assertion abort on sparc. malloc(0) is allowed to return NULL. by Gabor Greif · 18 years ago
  58. 27725bf #ifdef out unsafe tracing code, which fixes PR1689 by Chris Lattner · 18 years ago
  59. 9132a2b rename APInt::toString -> toStringUnsigned for symmetry with toStringSigned() by Chris Lattner · 18 years ago
  60. 42346f5 Add a comment: don't expect from external function resolver in interpreter by Anton Korobeynikov · 18 years ago
  61. f452207 More explicit keywords. by Dan Gohman · 18 years ago
  62. 936baaa VStudio compiler errors and placing Function*->ExFunc map under ManagedStatic control. by Chuck Rose III · 18 years ago
  63. e770787 For PR1486: by Reid Spencer · 18 years ago
  64. cc442ca On Linux platforms and at optimization levels -O1 and above, llvm-gcc can by Reid Spencer · 18 years ago
  65. 09d8c92 Print integer values as both decimal and hexadecimal for convenience by Reid Spencer · 18 years ago
  66. 52811bd Avoid a "loss of precision" error in gcc 4.1.3. by Reid Spencer · 18 years ago
  67. 951418b Implement printing of instruction result values when debug info is turned by Reid Spencer · 18 years ago
  68. e4b4394 Bitcast all the bits of a floating point value, not just one. The zero by Reid Spencer · 18 years ago
  69. 6bc6333 1. Don't swap byte order in scanf. It isn't necessary and leads to by Reid Spencer · 18 years ago
  70. b3b0727 We only need one putchar which gives it a shot at getting matched by its users. by Reid Spencer · 18 years ago
  71. b8e237b eliminate use of Instruction::getPrev(). Patch by Gabor Greif in 2005. by Chris Lattner · 18 years ago
  72. 4ccf462 Implement @sext and @zext parameter attribute handling properly instead of by Reid Spencer · 18 years ago
  73. 97e0c22 For PR1293: by Reid Spencer · 18 years ago
  74. 47992ea Don't use std::hex. by Bill Wendling · 18 years ago
  75. 3bae2e9 Don't use a cast. It causes an error on some platforms. by Bill Wendling · 18 years ago
  76. 5763105 Fix some thinko's in the last patch. PtrSize has to be in bits and we by Reid Spencer · 18 years ago
  77. 7553c34 Fix a bug in IntToPtr. Truncating to 64-bits only works if the integer by Reid Spencer · 18 years ago
  78. f953633 Radically simplify execution. This patch gets rid of all the special by Reid Spencer · 18 years ago
  79. bfcd599 Adjust and simplify external function processing now that GenericValue has by Reid Spencer · 18 years ago
  80. d08050b APInt's are no longer allocated on the heap because they are direct by Reid Spencer · 18 years ago
  81. deca08d Remove the insufficient code in Interpreter::create that computed the by Reid Spencer · 18 years ago
  82. b90fc7e Remove unnecessary #include. by Reid Spencer · 18 years ago
  83. d4c0e62 Deal with error handling better. by Reid Spencer · 18 years ago
  84. e092936 Complete the APIntification of the interpreter. All asserts for > 64 bits by Reid Spencer · 18 years ago
  85. e1aa066 Implement APInt support for the binary operators. by Reid Spencer · 18 years ago
  86. dea7ef1 1. Have the ExecutionContext keep track of the APInt's allocated and by Reid Spencer · 18 years ago
  87. 64f150f From Dan Gohman: by Chris Lattner · 19 years ago
  88. b1919e2 Privatize StructLayout::MemberOffsets, adding an accessor by Chris Lattner · 19 years ago
  89. 23cbb1c For PR1188: Compute BitMask correctly. by Reid Spencer · 19 years ago
  90. 832254e Changes to support making the shift instructions be true BinaryOperators. by Reid Spencer · 19 years ago
  91. 5cbf985 For PR1136: Rename GlobalVariable::isExternal as isDeclaration to avoid by Reid Spencer · 19 years ago
  92. 73a27c8 Remove tabs. by Reid Spencer · 19 years ago
  93. 519e239 Implement use of new IntrinsicLowering interface. by Reid Spencer · 19 years ago
  94. 26f2385 For PR761: by Reid Spencer · 19 years ago
  95. 24d6da5 For PR970: by Reid Spencer · 19 years ago
  96. a42c7fd Implement the signed icmp instructions properly. To do this we introduce by Reid Spencer · 19 years ago
  97. c00a430 Implement bit-accurate sext instruction. by Reid Spencer · 19 years ago
  98. 65367b2 Use the new maskToBitWidth function to ensure that the results of by Reid Spencer · 19 years ago
  99. 90935f6 Add an inline helper function that masks a GenericValue to a specified by Reid Spencer · 19 years ago
  100. 547dcf2 Make shl instruction mask its result to the correct bitsize. This is by Reid Spencer · 19 years ago