1. c6965ec Fix handling of (in)variance in GenerateConstraintsForAssignment. by Luca Versari · 2 years, 7 months ago
  2. e06f94b Add debug-dot visualization for LifetimeConstraints. by Luca Versari · 2 years, 7 months ago
  3. 187176a Generate constraint for function calls. by Luca Versari · 2 years, 7 months ago
  4. d430c3f Improve points-to-map debug printing. by Luca Versari · 2 years, 7 months ago
  5. cd257d3 Extend constraint generation to return values. by Luca Versari · 2 years, 7 months ago
  6. 91a56ff Implement application of constraints to FunctionLifetimes. by Luca Versari · 2 years, 7 months ago
  7. 1f9fc2e Generate constraints caused by initialization and assignment. by Luca Versari · 2 years, 8 months ago
  8. 8122285 Add LifetimeConstraints to the lattice. by Luca Versari · 2 years, 8 months ago
  9. e5f66ad Add link in lifetime_analysis's README to the docs. by Luca Versari · 2 years, 8 months ago
  10. 57ddcf9 Migrate Clang tools to a std-compatible interface of llvm::Optional by Dmitri Gribenko · 2 years, 8 months ago
  11. 57e0bfa Make Object non-copyable as well as non-moveable. by Martin Brænne · 2 years, 9 months ago
  12. 617c92b Remove value semantics from Object. by Martin Brænne · 2 years, 9 months ago
  13. 1b98ac6 Make ObjectRepository use pointers instead of Object values throughout. by Martin Brænne · 2 years, 9 months ago
  14. b5c794b Make VisitLifetimes use pointers by Martin Brænne · 2 years, 9 months ago
  15. a5098e1 Make PointsToMap use pointers instead of Object values. by Martin Brænne · 2 years, 9 months ago
  16. 2a1b27a Make TransferInitializer and CloneObject use pointers. by Martin Brænne · 2 years, 9 months ago
  17. 4d8cdfd Make ObjectSet store pointers instead of Object values by Martin Brænne · 2 years, 9 months ago
  18. af59468 ObjectRepository: Add overloads that take pointers. by Martin Brænne · 2 years, 9 months ago
  19. 565b8eb FindLifetimeSubstitutions and TransferDefaultConstructor now take a pointer by Martin Brænne · 2 years, 9 months ago
  20. d892fe5 Make points_to_map_test use pointer versions of methods. by Martin Brænne · 2 years, 9 months ago
  21. 65bae0a Make object_set_test use pointer versions of member functions. by Martin Brænne · 2 years, 9 months ago
  22. 06b9642 Make value of object_cache_ be a pointer. by Martin Brænne · 2 years, 9 months ago
  23. 0581855 Make FunctionArgument::arg_object a pointer by Martin Brænne · 2 years, 9 months ago
  24. 2c003b6 Make methods on LifetimeVisitor return objects by Martin Brænne · 2 years, 9 months ago
  25. 493d4d4 Make CreateObjects take a pointer by Martin Brænne · 2 years, 9 months ago
  26. d7c0d0b Make various ObjectRepository methods return pointers. by Martin Brænne · 2 years, 9 months ago
  27. 46b5f07 Make GetDeclObject() return a pointer. by Martin Brænne · 2 years, 9 months ago
  28. b891677 ObjectSet and PointsToMap: Add overloads that accept pointers. by Martin Brænne · 2 years, 9 months ago
  29. e9a4a47 Make value of ObjectRepository::MapType a pointer. by Martin Brænne · 2 years, 9 months ago
  30. ecd58c3 Make value of initialized_objects_ a pointer. by Martin Brænne · 2 years, 9 months ago
  31. e08ac88 Make GetBaseClassObject() return a pointer. by Martin Brænne · 2 years, 9 months ago
  32. 46f1a57 Make GetFieldObject() return a pointer. by Martin Brænne · 2 years, 9 months ago
  33. a7ca838 Make value of BaseObjects a pointer. by Martin Brænne · 2 years, 9 months ago
  34. b6764af Make value of FieldObjects a pointer. by Martin Brænne · 2 years, 9 months ago
  35. 3b587cf Make value of static_objects_ a pointer. by Martin Brænne · 2 years, 9 months ago
  36. 982a115 Make values of call_expr_args_objects_ and call_expr_this_pointers_ pointers. by Martin Brænne · 2 years, 9 months ago
  37. d8e3214 Make value type of initial_parameter_object_ a pointer. by Martin Brænne · 2 years, 9 months ago
  38. 8f8e4fe Make value of temporary_objects_ a pointer. by Martin Brænne · 2 years, 9 months ago
  39. 04fb3a4 Turn this_object_ and return_object_ into pointers. by Martin Brænne · 2 years, 9 months ago
  40. 4a1231d Introduce the ObjectRepository::CreateObject...() object allocation functions. by Martin Brænne · 2 years, 9 months ago
  41. 5740582 Move most private members of `ObjectRepository` to the bottom. by Martin Brænne · 2 years, 9 months ago
  42. ba9a344 Rename `lifetime_points_to_set` to `lifetime_object_set` part 2. by Martin Brænne · 2 years, 9 months ago
  43. 239a221 Finish support for defaulted default constructors. by Martin Brænne · 2 years, 9 months ago
  44. 5d1a524 [NFC] Make `TransferLifetimesForCall()` available outside lifetime_analysis.cc. by Martin Brænne · 2 years, 9 months ago
  45. 7438ce1 Refactor `AnalyzeSingleFunctionBody()`. by Martin Brænne · 2 years, 9 months ago
  46. b9a5e0f Error out if a pointer of static lifetime points at an object of local lifetime. by Martin Brænne · 2 years, 9 months ago
  47. d714440 Rename lifetime_points_to_set to lifetime_to_object_set. by Martin Brænne · 2 years, 9 months ago
  48. d4560ce Fix forwarding of static lifetimes in function calls. by Martin Brænne · 2 years, 9 months ago
  49. 5c6549f Add test demonstrating failure to forward static lifetimes through function call by Martin Brænne · 2 years, 9 months ago
  50. fb8153d Extend class comment for `ObjectRepository`. by Martin Brænne · 2 years, 9 months ago
  51. d7f2009 Add documentation for `ObjectRepository::const_iterator`. by Martin Brænne · 2 years, 9 months ago
  52. e7266f8 Rename lifetime_value_types_ to object_value_types_. by Martin Brænne · 2 years, 9 months ago
  53. 1c097f2 Add `CreateThisLifetimes()` to `FunctionLifetimeFactory` interface. by Martin Brænne · 2 years, 9 months ago
  54. 712b7f4 Thread `TypeLoc` through `FunctionLifetimes` and `ValueLifetimes`. by Martin Brænne · 2 years, 9 months ago
  55. 03d9330 Add `const Expr *` parameter to LifetimeFactory. by Martin Brænne · 2 years, 9 months ago
  56. bcdfe32 Remove unused parameters from LifetimeFactory. by Martin Brænne · 2 years, 9 months ago
  57. ea74ebb Only overwrite destination points-to-set if we have a single object on the LHS. by Martin Brænne · 2 years, 10 months ago
  58. 99fddff Open-source lifetime inference/verification code. by Luca Versari · 2 years, 10 months ago