1. 20dfc79 Add some more instruction support to optimizing compiler. by Dave Allison · 10 years ago
  2. ecb2f9b Enable the register allocator on x86_64. by Nicolas Geoffray · 10 years ago
  3. 49c105d Guard `Run` for platforms we're not compiling to, yet. by Nicolas Geoffray · 10 years ago
  4. 9cf3552 Add x86_64 support to the optimizing compiler. by Nicolas Geoffray · 10 years ago
  5. e27f31a Enable the register allocator on ARM. by Nicolas Geoffray · 10 years ago
  6. 86dbb9a Final CL to enable register allocation on x86. by Nicolas Geoffray · 10 years ago
  7. 31d76b4 Plug code generator into liveness analysis. by Nicolas Geoffray · 10 years ago
  8. 184d640 Add a type propagation phase after building SSA. by Nicolas Geoffray · 10 years ago
  9. 7c2e21d Merge "Fix some bugs in graph construction/simplification methods." by Nicolas Geoffray · 10 years ago
  10. ec7e472 Fix some bugs in graph construction/simplification methods. by Nicolas Geoffray · 10 years ago
  11. 576ca0c Reduce header files including header files. by Ian Rogers · 10 years ago
  12. 0eb3e75 Merge "Thumb2 assembler for JNI compiler and optimizing compiler" by Dave Allison · 10 years ago
  13. 65fcc2c Thumb2 assembler for JNI compiler and optimizing compiler by Dave Allison · 10 years ago
  14. 7c3560f Fix a bug in SSA construction. by Nicolas Geoffray · 10 years ago
  15. 26066f2 Don't use Dump for printing a bitset in liveness_test. by Nicolas Geoffray · 10 years ago
  16. 014d77a ART: BitVector not calculating number_of_bits correctly by Jean Christophe Beyler · 10 years ago
  17. a7062e0 Add a linear scan register allocator to the optimizing compiler. by Nicolas Geoffray · 10 years ago
  18. a5b8fde Rewrite BitVector index iterator. by Vladimir Marko · 10 years ago
  19. aa037b5 Add virtual destructor to please one of our compilers. by Nicolas Geoffray · 10 years ago
  20. 74d055c Merge "Forgot these files from last commit." by Nicolas Geoffray · 10 years ago
  21. 76716a6 Forgot these files from last commit. by Nicolas Geoffray · 10 years ago
  22. 4e3d23a Import Dart's parallel move resolver. by Nicolas Geoffray · 10 years ago
  23. 700a402 Now we have a proper C++ library, use std::unique_ptr. by Ian Rogers · 10 years ago
  24. 4f3f3fa Merge "Build live ranges in preparation for register allocation." by Nicolas Geoffray · 10 years ago
  25. ddb311f Build live ranges in preparation for register allocation. by Nicolas Geoffray · 10 years ago
  26. 8f1a4d4 Workaround for multi-line comment error when compiled with g++. by Nicolas Geoffray · 10 years ago
  27. 0d3f578 Linearize the graph before creating live ranges. by Nicolas Geoffray · 10 years ago
  28. f635e63 Add a compilation tracing mechanism to the new compiler. by Nicolas Geoffray · 10 years ago
  29. 622d9c3 Add loop recognition and CFG simplifications in new compiler. by Nicolas Geoffray · 10 years ago
  30. f23a719 Merge "Build live-in, live-out and kill sets for each block." by Nicolas Geoffray · 10 years ago
  31. 804d093 Build live-in, live-out and kill sets for each block. by Nicolas Geoffray · 10 years ago
  32. 72d3262 Give Compiler a back reference to the driver. by Ian Rogers · 10 years ago
  33. 6ab0d9f Merge "Make all registers available when allocating an output register." by Nicolas Geoffray · 10 years ago
  34. 29a2648 Move DecodedInstruction into MIR. by Ian Rogers · 10 years ago
  35. f529d77 Make all registers available when allocating an output register. by Nicolas Geoffray · 10 years ago
  36. b0fa5dc Force inlining on trivial accessors. by Ian Rogers · 10 years ago
  37. a7aca37 Setup policies for register allocation. by Nicolas Geoffray · 10 years ago
  38. c32e770 Add a Transform to SSA phase to the optimizing compiler. by Nicolas Geoffray · 10 years ago
  39. a747a39 Code cleanup in preparation for x64 backend. by Nicolas Geoffray · 10 years ago
  40. db928fc Simplify HInvokeStatic code generation. by Nicolas Geoffray · 10 years ago
  41. 01bc96d Long support in optimizing compiler. by Nicolas Geoffray · 10 years ago
  42. b55f835 Test control flow instruction with optimizing compiler. by Nicolas Geoffray · 10 years ago
  43. f583e59 Add support for taking parameters in optimizing compiler. by Nicolas Geoffray · 10 years ago
  44. 707c809 Use target-specific word instead of runtime word. by Nicolas Geoffray · 10 years ago
  45. 2e7038a Add support for new-instance and invoke-direct. by Nicolas Geoffray · 10 years ago
  46. a7b2826 Merge "Support passing arguments to invoke-static* instructions." by Nicolas Geoffray · 10 years ago
  47. 4a34a42 Support passing arguments to invoke-static* instructions. by Nicolas Geoffray · 10 years ago
  48. 6a58cb1 art: Handle x86_64 architecture equal to x86 by Dmitry Petrochenko · 10 years ago
  49. d8ee737 Add support for adding two integers in optimizing compiler. by Nicolas Geoffray · 10 years ago
  50. 8ccc3f5 Add support for invoke-static in optimizing compiler. by Nicolas Geoffray · 10 years ago
  51. 0d9c02e Merge "Run Java tests with the optimizing compiler." by Nicolas Geoffray · 10 years ago
  52. 92cf83e Run Java tests with the optimizing compiler. by Nicolas Geoffray · 10 years ago
  53. 43c8642 Fix lint error, and Makefile that could be confused with local files. by Nicolas Geoffray · 10 years ago
  54. 787c307 Plug new optimizing compiler in compilation pipeline. by Nicolas Geoffray · 10 years ago
  55. 39d57e2 Fix non-{arm, x86} builds. by Nicolas Geoffray · 11 years ago
  56. af7ec0e Merge "More code generation for the optimizing compiler." by Nicolas Geoffray · 11 years ago
  57. bab4ed7 More code generation for the optimizing compiler. by Nicolas Geoffray · 11 years ago
  58. b34f69a Add command line support for enabling the optimizing compiler. by Nicolas Geoffray · 11 years ago
  59. 788aaad Fix lint errors. by Nicolas Geoffray · 11 years ago
  60. 3ff386a Add register support to the optimizing compiler. by Nicolas Geoffray · 11 years ago
  61. d4dd255 Add codegen support to the optimizing compiler. by Nicolas Geoffray · 11 years ago
  62. 0e33643 Move arena_bit_vector.h/cc to compiler/utils. by Nicolas Geoffray · 11 years ago
  63. be9a92a Add conditional branches, and build dominator tree. by Nicolas Geoffray · 11 years ago
  64. 818f210 Re-apply: Initial check-in of an optimizing compiler. by Nicolas Geoffray · 11 years ago
  65. 1af0c0b Revert "Initial check-in of an optimizing compiler." by Nicolas Geoffray · 11 years ago
  66. 68a5fef Initial check-in of an optimizing compiler. by Nicolas Geoffray · 11 years ago