1. cecf56b elimiante Statistic static ctors by Chris Lattner · 19 years ago
  2. 832171c Removing even more <iostream> includes. by Bill Wendling · 19 years ago
  3. e815619 Changed llvm_ostream et all to OStream. llvm_cerr, llvm_cout, llvm_null, are by Bill Wendling · 19 years ago
  4. ac0b6ae Detemplatize the Statistic class. The only type it is instantiated with by Chris Lattner · 19 years ago
  5. 97af751 Unbreak VC++ build. by Jeff Cohen · 19 years ago
  6. 480f093 Removed #include <iostream> and replaced streams with llvm streams. by Bill Wendling · 19 years ago
  7. 3da59db For PR950: by Reid Spencer · 19 years ago
  8. b71fd78 Simplify IntrinsicLowering and clarify that it is only for use by the by Chris Lattner · 19 years ago
  9. d6c3422 Remove redundant <cmath>. by Jim Laskey · 19 years ago
  10. 3822ff5 For PR950: by Reid Spencer · 19 years ago
  11. 45430ac Remove a function prototype that is no longer needed (REM patch missed it) by Reid Spencer · 19 years ago
  12. 0a783f7 For PR950: Replace the REM instruction with UREM, SREM and FREM. by Reid Spencer · 19 years ago
  13. fa8a51e Remove unnecessary sign conversions made possible by last patch. by Reid Spencer · 19 years ago
  14. fe85526 Fix a bug in the interpreter where divides of unmatched signed operands by Reid Spencer · 19 years ago
  15. 1628cec For PR950: by Reid Spencer · 19 years ago
  16. b83eb64 For PR950: by Reid Spencer · 19 years ago
  17. fe85403 initial changes to support JIT'ing from multiple module providers, implicitly by Chris Lattner · 19 years ago
  18. 426b782 Simplify TargetData ctor call by Chris Lattner · 19 years ago
  19. 276f4b5 Simplify interpreter construction. by Chris Lattner · 19 years ago
  20. 26e6e10 Fix -pedantic warnings by Chris Lattner · 19 years ago
  21. 19b7e0e For PR786: by Reid Spencer · 19 years ago
  22. 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 · 19 years ago
  23. 2f51914 Get JIT/Interpreter working on Windows again. by Jeff Cohen · 19 years ago
  24. 726c1ef remove the intrinsiclowering hook by Chris Lattner · 19 years ago
  25. 2fe4bb0 Eliminate the dependency of ExecutionEngine on the JIT/Interpreter libraries. by Chris Lattner · 19 years ago
  26. 8c9191c The interpreter assumes that the caller of runFunction() must be lli, and by Jeff Cohen · 20 years ago
  27. 00b16889 Eliminate all remaining tabs and trailing spaces. by Jeff Cohen · 20 years ago
  28. 558bc88 core changes for varargs by Andrew Lenharth · 20 years ago
  29. 3c94497 Convert tabs to spaces by Misha Brukman · 20 years ago
  30. d1c881a * Remove trailing whitespace * Convert tabs to spaces by Misha Brukman · 20 years ago
  31. e4d5c44 This mega patch converts us from using Function::a{iterator|begin|end} to by Chris Lattner · 20 years ago
  32. 4e7dd8f If the interpreter tries to execute an external function, kill it. Of course by Chris Lattner · 21 years ago
  33. 638559a Improve compatiblity with HPUX on Itanium, patch by Duraid Madina by Chris Lattner · 21 years ago
  34. 9dacd12 Silence warnings by Chris Lattner · 21 years ago
  35. d564496 Silence VS warnings by Chris Lattner · 21 years ago
  36. df5a37e Use System/DynamicLibrary instead of Support/DynamicLinker by Reid Spencer · 21 years ago
  37. 895eddf Implement ExecutionEngine::freeMachineCodeForFunction() by Misha Brukman · 21 years ago
  38. 685f86a Fix library name. by Reid Spencer · 21 years ago
  39. abec8f9 Changes to support rand48 tests by Reid Spencer · 21 years ago
  40. cac731e We won't use automake by Reid Spencer · 21 years ago
  41. 86d341b Initial automake generated Makefile template by Reid Spencer · 21 years ago
  42. ec7c1ab Add support for unreachable by Chris Lattner · 21 years ago
  43. d96cb6e Update to reflect changes in Makefile rules. by Reid Spencer · 21 years ago
  44. 9f41a5f Initial version of automake Makefile.am file. by Reid Spencer · 21 years ago
  45. 2da5c3d Convert code to compile with vc7.1. by Reid Spencer · 21 years ago
  46. 551ccae Changes For Bug 352 by Reid Spencer · 21 years ago
  47. ed6c073 Fixes for PR341 by Chris Lattner · 21 years ago
  48. 0a8e8e1 Fixes for PR341 by Chris Lattner · 21 years ago
  49. 954da37 Add #include <iostream> since Value.h does not #include it any more. by Reid Spencer · 21 years ago
  50. 3048373 Move the IntrinsicLowering header into the CodeGen directory, as per PR346 by Chris Lattner · 21 years ago
  51. f70c22b Rename Type::PrimitiveID to TypeId and ::getPrimitiveID() to ::getTypeID() by Chris Lattner · 21 years ago
  52. 59108d3 Add int ferror(FILE *) by Brian Gaeke · 21 years ago
  53. 63e8dfa These #includes are long dead by Chris Lattner · 21 years ago
  54. 0098bdf Get rid of a wart: useless getFILE function is now a cast macro. by Reid Spencer · 21 years ago
  55. 3c66c35 Generalize the strlen size_t hack, for the benefit of the other external by Brian Gaeke · 21 years ago
  56. b440dea Go back to the interpreter main loop after performing intrinsic lowering, by Brian Gaeke · 21 years ago
  57. 759d34f Add support for the select instruction by Chris Lattner · 21 years ago
  58. 702a8a0 Adjust to new interface by Chris Lattner · 21 years ago
  59. c6b0fb3 Adjust to new gep_type_iterator prototypes. by Chris Lattner · 21 years ago
  60. 317201d Rename the intrinsic enum values for llvm.va_* from Intrinsic::va_* to by Chris Lattner · 21 years ago
  61. b1dfc70 remove obsolete comment by Chris Lattner · 21 years ago
  62. 9d20b71 Represent va_list in interpreter as a (ec-stack-depth . var-arg-index) by Brian Gaeke · 21 years ago
  63. e625890 Fix off-by-one in Interpreter::getFirstVarArg(), which was punishing by Brian Gaeke · 22 years ago
  64. d8400d8 The Interpreter was failing the AtExit UnitTest. This fixes it. by Brian Gaeke · 22 years ago
  65. d5d8996 Start using the new and improve interface to FunctionType arguments by Chris Lattner · 22 years ago
  66. aeb2a1d rename the "exceptional" destination of an invoke instruction to the 'unwind' dest by Chris Lattner · 22 years ago
  67. 34562ba Don't pass anything to the IntrinsicLowering class that is not_intrinsic, by Brian Gaeke · 22 years ago
  68. f70e0c2 Clean up a lot of the code I added yesterday by exposing the IntrinsicLowering by Chris Lattner · 22 years ago
  69. 7301178 Pass around IntrinsicLowering instances as appropriate. by Chris Lattner · 22 years ago
  70. 2cab55d No longer run atExit functions from run() rename run to runFunction by Chris Lattner · 22 years ago
  71. f7a743d Finegrainify namespacification by Chris Lattner · 22 years ago
  72. 6c9d582 Dynamically get the right-sized member of a GenericValue to hold a size_t, and by Brian Gaeke · 22 years ago
  73. 2798cd0 Since we are using a gep_type_iterator, we apparently must get the type by Brian Gaeke · 22 years ago
  74. dfa5849 Fix typo in comment. Add prototype for getConstantExprValue(). by Brian Gaeke · 22 years ago
  75. 63438cc Add support for --debug-only=interpreter, to print out instrs before by Brian Gaeke · 22 years ago
  76. e63fc8b implement method by Chris Lattner · 22 years ago
  77. 4af6de8 Do not depend on structure elements being of type UByteTy by Chris Lattner · 22 years ago
  78. 8da1748 Change LLI's internal representation of va_list to a pointer to the next by Brian Gaeke · 22 years ago
  79. d0fde30 Put all LLVM code into the llvm namespace, as per bug 109. by Brian Gaeke · 22 years ago
  80. c1a2be1 Implement vaarg instruction. This is not quite perfect: 2003-08-11-VaListArg by Brian Gaeke · 22 years ago
  81. dbde1ae popStackAndReturnValueToCaller() must advance instruction pointer to normal by Brian Gaeke · 22 years ago
  82. 9bf06b1 Add stub version of unwind support by Brian Gaeke · 22 years ago
  83. fea483d visitCallInst --> visitCallSite. by Brian Gaeke · 22 years ago
  84. ae2495a Make the operation of visitCallInst() only depend on the CallSite. by Brian Gaeke · 22 years ago
  85. 2cb474c Use CallSites for call sites, instead of CallInsts. A revolutionary concept. by Brian Gaeke · 22 years ago
  86. af955ba Refactor the return-from-function code into popStackAndReturnValueToCaller(). by Brian Gaeke · 22 years ago
  87. 502dda0 Be friendly to gcc 3.4... good compiler. Nice compiler. by Chris Lattner · 22 years ago
  88. b56a6bc Abort when the user program calls abort, instead of printing a funny message and calling exit(1). by Brian Gaeke · 22 years ago
  89. 2fa8212 Use regular old malloc to emulate malloc/alloca instructions. by Brian Gaeke · 22 years ago
  90. 3636f4e Remove a comment which no longer applies. by Brian Gaeke · 22 years ago
  91. b8afbe6 Unbreak the build by Chris Lattner · 22 years ago
  92. f143d3c ExecutionEngine::create no longer takes a TraceMode argument. by Brian Gaeke · 22 years ago
  93. a824f42 ExecutionEngine::create no longer takes a TraceMode argument. by Brian Gaeke · 22 years ago
  94. 02438ca The ExecutionAnnotations (SlotNumber, InstNumber, and FunctionInfo) are history. by Brian Gaeke · 22 years ago
  95. 03e43dc Reduce the number of #includes. by Brian Gaeke · 22 years ago
  96. 856ba76 Added LLVM copyright header. by John Criswell · 22 years ago
  97. e488e93 Added LLVM copyright notice to Makefiles. by John Criswell · 22 years ago
  98. b576c94 Added LLVM project notice to the top of every C++ source file. by John Criswell · 22 years ago
  99. 4c66549 Interpret the new varargs intrinsics correctly by Chris Lattner · 22 years ago
  100. b8d15b2 Order #includes as per the style guide. by Misha Brukman · 22 years ago