1. 5fecde5 Partially-support nested type aliases: use the underlying type instead. by Devin Jeanpierre · 2 years, 7 months ago
  2. fe6aaea Implement inline namespaces. by Devin Jeanpierre · 2 years, 7 months ago
  3. 3f13397 Use mangled type names in `cc_struct_upcast_impl`'s `cast_fn_name`. by Lukasz Anforowicz · 2 years, 7 months ago
  4. 42ab93b Avoid dangling item ids for skipped template specializations. by Lukasz Anforowicz · 2 years, 7 months ago
  5. 8dd5179 Support thunks operating on incomplete/forwarded decls. by Lukasz Anforowicz · 2 years, 7 months ago
  6. 54b75d7 Update record.size when the original size in C++ isn't aligned (while alignment is given) by Kinuko Yasuda · 2 years, 8 months ago
  7. ccb6767 Generate bindings for abstract classes. by Devin Jeanpierre · 2 years, 8 months ago
  8. 8dd8464 Import typedef'ed anonymous C unions/structs by Kinuko Yasuda · 2 years, 8 months ago
  9. 6ff59f1 Make sure structs/unions that have non-unpin fields don't implement Copy by Kinuko Yasuda · 2 years, 8 months ago
  10. 6bb8180 Use non-elided lifetimes when a synthesized RvalueReference is captured. by Devin Jeanpierre · 2 years, 8 months ago
  11. 4e94a08 Use id-less lifetimes exclusively within src_code_gen.rs, so that we can make up new lifetime names (not just the elided lifetime name). by Devin Jeanpierre · 2 years, 8 months ago
  12. 7ed8c6f Allow for elided lifetimes in an `RsTypeKind`, so that you can create new reference types / lifetimes that didn't come from C++. by Devin Jeanpierre · 2 years, 8 months ago
  13. 7a4d4c0 Represent friend functions in IR. by Michael VanBemmel · 2 years, 8 months ago
  14. 6f80403 Delete obsolete TODO. by Devin Jeanpierre · 2 years, 8 months ago
  15. 07b3390 Use `T*` instead of `T&` as type of thunk parameters. by Lukasz Anforowicz · 2 years, 9 months ago
  16. 3a0cc5a Make `salsa_utils::SalsaResult` (now `arc_anyhow::Result`) the common result type. by Devin Jeanpierre · 2 years, 9 months ago
  17. d4742ff Avoid `struct SomeClass` in `..._rs_api_impl.cc`. by Lukasz Anforowicz · 2 years, 9 months ago
  18. 409f6f6 Convert `RsTypeKind` creation into a Salsa query. by Devin Jeanpierre · 2 years, 9 months ago
  19. b2b6cf8 Convert RsTypeKind to a cheaply-clonable type with `Rc` inside. by Devin Jeanpierre · 2 years, 9 months ago
  20. e9850a7 Use `Rc<IR>` instead of `&IR` at the top-level entry point. by Devin Jeanpierre · 2 years, 9 months ago
  21. 8cd8ae7 Use `Rc` for items in the `IR`, and `RsTypeKind`. by Devin Jeanpierre · 2 years, 9 months ago
  22. e12d717 Add a `rs_name` field to `IncompleteRecord` by Rosica Dejanovska · 2 years, 9 months ago
  23. bdfb4d9 Centralize logic for "look up the record that defines this member function". by Devin Jeanpierre · 2 years, 10 months ago
  24. ff7df4a Remove `SpecialMemberFunc::access` field. by Lukasz Anforowicz · 2 years, 10 months ago
  25. 14732b2 Support for template specializations used outside of type aliases. by Lukasz Anforowicz · 2 years, 10 months ago
  26. 93aeafb Implement reopened namespaces by Rosica Dejanovska · 2 years, 10 months ago
  27. 1583cd9 Add test for converting lifetime names to tokens. by Devin Jeanpierre · 2 years, 10 months ago
  28. a68fdbc Implement `ToTokens` for `LifetimeName`, so that formatting doesn't require an extra step. by Devin Jeanpierre · 2 years, 10 months ago
  29. 190b90a Support unions in `#[recursively_pinned]`, albeit without supporting pin-projection. by Devin Jeanpierre · 2 years, 10 months ago
  30. 4546573 Do not derive Copy and Clone for unions that have variants that are not by Marcel Hlopko · 2 years, 10 months ago
  31. 82c02d3 Represent bitfields as private padding in Rust structs. by Michael Forster · 2 years, 10 months ago
  32. a2be2a2 Allow direct field initialization of structs if, and only if, the it is an aggregate. by Devin Jeanpierre · 2 years, 11 months ago
  33. fea0db9 Fields of unsupported type can be represented as opaque blobs of bytes. by Lukasz Anforowicz · 2 years, 11 months ago
  34. 5765bb8 Fix offset of fields represented as opaque blobs of bytes. by Lukasz Anforowicz · 2 years, 11 months ago
  35. b1ff2e5 Type aliases bound to fully-instantiated template by Lukasz Anforowicz · 2 years, 11 months ago
  36. 7a00491 Support unnamed fields. by Michael Forster · 2 years, 11 months ago
  37. 36aefad Add missing `owning_target` field to the `Namespace` struct by Rosica Dejanovska · 2 years, 11 months ago
  38. 6efd17f Add a `canonical_id` to `namespace` IR by Rosica Dejanovska · 2 years, 11 months ago
  39. 1221c2a Compute the space occupied by bases, vptr, etc. based on offset of first field. by Devin Jeanpierre · 2 years, 11 months ago
  40. e91d299 Add enclosing_namespace_id field to Items by Rosica Dejanovska · 2 years, 11 months ago
  41. edabf00 Move `TESTING_TARGET` and `make_ir_from_items` into `ir_testing.rs`. by Lukasz Anforowicz · 3 years ago
  42. c0543eb Implement bindings for forward declared types (incomplete types) outside of namespaces. by Devin Jeanpierre · 3 years ago
  43. dd9a903 Implement basic support for namespaces by Rosica Dejanovska · 3 years ago
  44. b2bd59e Make items that stem from decl context have a list of children item ids and generate code recursively by Rosica Dejanovska · 3 years ago
  45. af682a0 Rename rs_bindings_from_cc::Lifetime to LifetimeName by Marcel Hlopko · 3 years ago
  46. d2cd142 Add support for C++ unions to the bindings generator by Teddy Katz · 3 years ago
  47. d2b7a8f Move lifetime lookup failures to RsTypeKind-construction-time. by Devin Jeanpierre · 3 years ago
  48. 084ebbd Per discussion on panics... make bazel label parsing failure a panic. by Devin Jeanpierre · 3 years ago
  49. 9886fb4 Precompute the entire mapping of lifetime-id to lifetime string. by Devin Jeanpierre · 3 years ago
  50. 10accf1 Add an item id to generated function items and update Item.id() to cover all Items by Rosica Dejanovska · 3 years ago
  51. 6c3de12 Project import generated by Copybara. by Googler · 3 years ago
  52. d638cf5 Rename DeclId to ItemId and make all our items have an item id. by Rosica Dejanovska · 3 years ago
  53. 4404725 Tracking error context for failed `IR::find_decl`. by Lukasz Anforowicz · 3 years ago
  54. 0b6a6ac Forcing thunk generation for functions with exotic calling conventions. by Lukasz Anforowicz · 3 years ago
  55. 4c3a2cc Split IR's `Record::indentifier` into `rs_name` and `cc_name`. by Lukasz Anforowicz · 3 years, 1 month ago
  56. c503af4 Support doc comments for type aliases. by Lukasz Anforowicz · 3 years, 1 month ago
  57. 76fa42b Add support for C++ enums to the Rust bindings generator by Teddy Katz · 3 years, 1 month ago
  58. dd9ae0f Clean up Clippy warnings. by Lukasz Anforowicz · 3 years, 1 month ago
  59. 9c663ca Fix generating bindings for functions named `operator1`. by Lukasz Anforowicz · 3 years, 2 months ago
  60. 5b3f530 Replace `#![rustfmt::skip]` with `@generated` comment. by Lukasz Anforowicz · 3 years, 2 months ago
  61. b69bcae Add layout support for C++20 `[[no_unique_address]]`, without making the variables usable. by Devin Jeanpierre · 3 years, 2 months ago
  62. 5677702 Base class conversion / upcasting support in the IR. by Devin Jeanpierre · 3 years, 2 months ago
  63. c80e624 Add base class subobjects to the Rust struct. by Devin Jeanpierre · 3 years, 2 months ago
  64. 71716b7 Stop generating `From::from` for `explicit` conversion constructors. by Lukasz Anforowicz · 3 years, 2 months ago
  65. a94ab70 No `impl Clone` when param of copy ctor has no lifetime annotations. by Lukasz Anforowicz · 3 years, 3 months ago
  66. 231a3bb Support for basic instance methods. by Lukasz Anforowicz · 3 years, 3 months ago
  67. 6a0a525 Generate code for `TypeAlias` items. by Googler · 3 years, 3 months ago
  68. 098c458 Add a new item type `TypeAlias` to the IR. by Googler · 3 years, 3 months ago
  69. e05154d Rename `Label` to `BlazeLabel`. by Googler · 3 years, 3 months ago
  70. 95f29a1 Add a `source_loc` field to `Func`. by Googler · 3 years, 3 months ago
  71. 73326af Translate C++ constructors with a single T argument into `impl From<T>`. by Lukasz Anforowicz · 3 years, 3 months ago
  72. b7e361d Add context to help debug errors when running consume_absl test. by Googler · 3 years, 3 months ago
  73. e6e1665 Major change: additional requirements for rust-reference-safety/Unpin, which now includes "tail padding is safe to write to". by Devin Jeanpierre · 3 years, 3 months ago
  74. e643ec9 Generate thunk impls for explicitly-defaulted default constructors. by Lukasz Anforowicz · 3 years, 3 months ago
  75. aab8ad2 Fix C++ thunks for calling static methods. by Lukasz Anforowicz · 3 years, 3 months ago
  76. afdc502 Migrate some unit tests from ir.rs to ir_from_cc_test using assert_ir_matches by Marcel Hlopko · 3 years, 4 months ago
  77. 016cab0 Add assert_ir_matches macro for IR tests /o\ by Marcel Hlopko · 3 years, 4 months ago
  78. 4ad012b Elide "-> ()" in the generated function definitions. by Lukasz Anforowicz · 3 years, 4 months ago
  79. 7b62e95 Rename NontrivialSelf to NontrivialUserDefined. by Devin Jeanpierre · 3 years, 4 months ago
  80. 64e4edb Add lifetimes to IR. by Googler · 3 years, 4 months ago
  81. e556109 Remove Func::record_decl_id by Marcel Hlopko · 3 years, 4 months ago
  82. a0f3866 Do not generate bindings for records from other targets by Marcel Hlopko · 3 years, 4 months ago
  83. 7e9a1de Implement[] by Devin Jeanpierre · 3 years, 4 months ago
  84. 7eb0404 Implement `TryFrom`/`TryInto` and a `find_decl` function. by Devin Jeanpierre · 3 years, 4 months ago
  85. 264b9ad Rename Record::decl_id to id, Func::decl_id to record_decl_id. by Marcel Hlopko · 3 years, 4 months ago
  86. 36ced2d Do not generate bindings for functions from other targets by Marcel Hlopko · 3 years, 4 months ago
  87. 4c660dd Do not emit UnsupportedItems for declarations from other targets by Marcel Hlopko · 3 years, 4 months ago
  88. ff7fc23 Rename `type_params` to `type_args` in RsType and CcType. by Googler · 3 years, 4 months ago
  89. c0956cf Read type identifier from the item in src_code_gen by Marcel Hlopko · 3 years, 4 months ago
  90. 3b9bf9e Introduce a IR wrapper with additional state and methods. by Marcel Hlopko · 3 years, 4 months ago
  91. 80441c1 Add current target to the IR, add owning target to items by Marcel Hlopko · 3 years, 5 months ago
  92. 9c150da Add DeclId to items by Marcel Hlopko · 3 years, 5 months ago
  93. ccfefc8 Use .into() for helpers, as discussed in unknown commit by Devin Jeanpierre · 3 years, 5 months ago
  94. be2f33b Categorize two types of nontrivial special member functions: those which are nontrivial due **only** to member variables, and the rest. by Devin Jeanpierre · 3 years, 5 months ago
  95. c6877bb Include member function information in the IR. by Devin Jeanpierre · 3 years, 6 months ago
  96. f2ec871 Initial support for non-identifier names (currently: constructors, destructors), but without much special support in codegen. by Devin Jeanpierre · 3 years, 6 months ago
  97. f1dce42 Copy free top-level comments from headers to Rust bindings. by Michael Forster · 3 years, 6 months ago
  98. 6a184ad Add source location information to diagnostics. by Michael Forster · 3 years, 6 months ago
  99. 523dbd4 Add a simple diagnostics type to the IR and use it to report type conversion by Michael Forster · 3 years, 6 months ago
  100. 409d941 Retain doc comments on functions. by Michael Forster · 3 years, 6 months ago