1. 7c0e022 Added copyright header to all C++ source files. by John Criswell · 21 years ago
  2. 17b53a8 Make replaceMachineCodeForFunction() return void. by Brian Gaeke · 21 years ago
  3. 682ce72 Make replaceMachineCodeForFunction return void. by Brian Gaeke · 21 years ago
  4. f6cd38d Apparently the dependencies are wrong for this file, so it didn't rebuild it by Chris Lattner · 21 years ago
  5. bacc773 Reorder for minor efficiency gain by Chris Lattner · 21 years ago
  6. 43a5ff8 Emit x86 instructions for: A = B op C, where A and B are 16-bit registers, by Chris Lattner · 21 years ago
  7. e738656 Hrm, a relic from the past. How cute :) by Chris Lattner · 21 years ago
  8. 6ac1d71 Further cleanups and simplifications by Chris Lattner · 21 years ago
  9. 6c09db2 Eliminate code for pointer size and endianness emulation. by Chris Lattner · 21 years ago
  10. 44ffd5a The Grammar Police was here. by Misha Brukman · 21 years ago
  11. c01d123 * Rename X86::IMULr16 -> X86::IMULrr16 by Chris Lattner · 21 years ago
  12. a626e02 Eliminate unused class by Chris Lattner · 21 years ago
  13. 3b237fc Change the Opcode enum for PHI nodes from "Instruction::PHINode" to "Instruction::PHI" to be more consistent with the other instructions. by Chris Lattner · 21 years ago
  14. b2acc51 * Multiplications by 2^X are turned into shifts. This factors code out of the by Chris Lattner · 21 years ago
  15. f634a10 Add some new instructions. Wheee by Chris Lattner · 21 years ago
  16. b169841 .string adds an implicit zero at the end. This is not what we wanted. by Chris Lattner · 21 years ago
  17. 0b1fe84 Add debugtype, make output marginally more nice by Chris Lattner · 21 years ago
  18. 7b2ccff Fix PR #47 by Chris Lattner · 21 years ago
  19. a81fc68 Fix bug: Jello/2003-10-18-PHINode-ConstantExpr-CondCode-Failure.llx by Chris Lattner · 21 years ago
  20. 1f0f162 Without this option, the -run-llc mode does not work with shared objects at by Chris Lattner · 21 years ago
  21. b91d971 Fix warning by Chris Lattner · 21 years ago
  22. 22482a1 add support for new linkage types by Chris Lattner · 21 years ago
  23. 3c4a34e Fix PR#50 by Chris Lattner · 21 years ago
  24. 4d45bd0 Add support for the new varargs intrinsics and instructions by Chris Lattner · 21 years ago
  25. cda965e ADd support for the new varargs instructions by Chris Lattner · 21 years ago
  26. 7381506 Add support for the new varargs intrinsics by Chris Lattner · 21 years ago
  27. 8ad3946 Update the sparc backend to at least compile correctly with the new varargs stuff even if it's not all implemented yet. by Chris Lattner · 21 years ago
  28. 4c66549 Interpret the new varargs intrinsics correctly by Chris Lattner · 21 years ago
  29. eff112c Updated to emit the final 1.0 bytecode format. This supports weak linkage, by Chris Lattner · 21 years ago
  30. cb7e2e2 * New revised variable argument handling support by Chris Lattner · 21 years ago
  31. 99e7ab7 New revised variable argument handling support by Chris Lattner · 21 years ago
  32. c51aeaf Chris says it's better to assert that TheModule is valid than silently return 0. by Misha Brukman · 21 years ago
  33. e5f6859 You can't just blat the address into memory, you have to blat its displacement. by Brian Gaeke · 21 years ago
  34. 0570157 Don't release the Module, as that invalidates the Module* within the by Misha Brukman · 21 years ago
  35. 9b8c291 Implement replaceMachineCodeForFunction() for x86. by Brian Gaeke · 21 years ago
  36. 4ca7e53 Refactor jump insertion code from CompilationCallback() into insertJumpAtAddr(). by Brian Gaeke · 21 years ago
  37. 9a7871b Add prototype for replaceMachineCodeForFunction(). by Brian Gaeke · 21 years ago
  38. 7f3df41 Return the Module that we just materialized. by Misha Brukman · 21 years ago
  39. 55c0f02 Tidy up doxygen comment for getPointerToFunction(). by Brian Gaeke · 21 years ago
  40. cd64ddf Refactor running the JIT passes on a single function into the new method, by Brian Gaeke · 21 years ago
  41. 578b68c Remove extra blank line. by Brian Gaeke · 21 years ago
  42. 9493101 Do not crash on empty structures by Chris Lattner · 21 years ago
  43. 888d3bc Tighten up handling of checks for shift instructions by Chris Lattner · 21 years ago
  44. 6059638 Eliminate some extraneous code in SlotCalculator::insertVal(). by Alkis Evlogimenos · 21 years ago
  45. 45f0b6d Fix typo in comment. by Brian Gaeke · 21 years ago
  46. 6020ddd Fix a typo in a comment, and zap a blank line. by Brian Gaeke · 21 years ago
  47. 9fcdadb Add separator between different types of readers. by Misha Brukman · 21 years ago
  48. 0f4f7d9 JIT.cpp: by Misha Brukman · 21 years ago
  49. 1968416 * Reorder includes as per the style guide by Misha Brukman · 21 years ago
  50. 394f2eb Minor cleanups by Chris Lattner · 21 years ago
  51. 72ac148d Add support for 'weak' linkage. by Chris Lattner · 21 years ago
  52. 6b25242 Add support for 'weak' linkage. by Chris Lattner · 21 years ago
  53. c3cc71a by Chris Lattner · 21 years ago
  54. 7659064 This code does not require random access use_lists by Chris Lattner · 21 years ago
  55. 28b2265 Eliminate using declaration by Chris Lattner · 21 years ago
  56. 60fa583 #include vector which we will need here soon by Chris Lattner · 21 years ago
  57. 53e557d Fix up error message. by Brian Gaeke · 21 years ago
  58. fd05924 Decrease usage of use_size() by Chris Lattner · 21 years ago
  59. fb42dd8 Cleanup by Chris Lattner · 21 years ago
  60. eeed983 Generalize abstract interpreter interface to allow linking in an arbitrary number of shared objects by Chris Lattner · 21 years ago
  61. b8d15b2 Order #includes as per the style guide. by Misha Brukman · 21 years ago
  62. 69c856a Enabling incremental bytecode loading in the JIT: by Misha Brukman · 21 years ago
  63. 005e5e9 Enabling incremental bytecode loading in the JIT: by Misha Brukman · 21 years ago
  64. 7b2b40f Enabling incremental bytecode loading in the JIT: by Misha Brukman · 21 years ago
  65. 7915a1e Substantial cleanups: by Chris Lattner · 21 years ago
  66. 1798e4a Actually return an error if something bad happens, don't just exit. by Chris Lattner · 21 years ago
  67. c2b81f6 Output a contorted sequence of instructions to make sure that we don't access by Chris Lattner · 21 years ago
  68. d5b7c47 Disable the leaf function optimization, which is apparently not legal on by Chris Lattner · 21 years ago
  69. f775f95 Do not move variable sized allocations to the top of the caller, which might by Chris Lattner · 21 years ago
  70. 3875657 Do not allow fallthroughs in switch statements. This fixes PR37, by Chris Lattner · 21 years ago
  71. 4296088 Remove WordsEmitted statistic; there's already a non-backend-specific by Brian Gaeke · 21 years ago
  72. da17eb6 LLI no longer has -abort-on-exception by Chris Lattner · 21 years ago
  73. 4946a8c Use the autoconf macro John wrote by Chris Lattner · 21 years ago
  74. 8b716f6 Whoops, we inserted into the wrong set. What's up with the dead set anyway? by Chris Lattner · 21 years ago
  75. 46e033d Use external df iterators to avoid revisiting blocks in functions with by Chris Lattner · 21 years ago
  76. 50b5d71 Make use of "external" depth-first iterators to avoid revisiting nodes by Chris Lattner · 21 years ago
  77. cb18d18 Stop using "reverse depth first" order by Chris Lattner · 21 years ago
  78. 7dc3a2e Minor cleanups by Chris Lattner · 21 years ago
  79. 5af4197 Speed up TypesEqual by specializing it for all of the derived types, avoiding by Chris Lattner · 21 years ago
  80. f0d9273 Avoid calling getTypeSlot more by Chris Lattner · 21 years ago
  81. 1825009 Avoid creating lots of pointless opaque types, with short lifetimes by Chris Lattner · 21 years ago
  82. 236f646 This is a header file, hear me roar by Chris Lattner · 21 years ago
  83. 3e58d9b * Remove extraneous #includes by Chris Lattner · 21 years ago
  84. 4a650af Wrap code at 80 columns by Chris Lattner · 21 years ago
  85. d9113c7 This is a header file, thus it needs a -*-C++-*- by Chris Lattner · 21 years ago
  86. cf3056d Regularize header file comments by Chris Lattner · 21 years ago
  87. 21fb3af Regularize header file comment, eliminate using's by Chris Lattner · 21 years ago
  88. 6d3906b Minor cleanups by Chris Lattner · 21 years ago
  89. bb2d4de Checkin an improvement contributed by Bill: by Chris Lattner · 21 years ago
  90. 2ab6a73 Add support to the loop canonicalization pass to make it transform loops to by Chris Lattner · 21 years ago
  91. 2ef1236 Make getNumBackEdges more efficient by Chris Lattner · 21 years ago
  92. 98bf436 Rename loop preheaders pass to loop simplify by Chris Lattner · 21 years ago
  93. 67a9801 File is renamed to LoopSimplify.cpp by Chris Lattner · 21 years ago
  94. ee2c50c First step in renaming the preheaders pass to loopsimplify by Chris Lattner · 21 years ago
  95. bebd86d The preheader insertion pass only depends on the CFG. Mark it as such, which by Chris Lattner · 21 years ago
  96. 5b62cdc Rename method by Chris Lattner · 21 years ago
  97. 5ef6ffd * Spell "necessary" correctly by Chris Lattner · 21 years ago
  98. 9860e77 * Be TBAA safe by Chris Lattner · 21 years ago
  99. 364f86d Make mmap's fd for anonymous memory acquisition default to -1, except on by Brian Gaeke · 21 years ago
  100. 82a036f Don't include "Config/stdlib.h". by Brian Gaeke · 21 years ago