1. 7e9a1de Implement[] by Devin Jeanpierre · 3 years, 4 months ago
  2. 264b9ad Rename Record::decl_id to id, Func::decl_id to record_decl_id. by Marcel Hlopko · 3 years, 4 months ago
  3. 36ced2d Do not generate bindings for functions from other targets by Marcel Hlopko · 3 years, 4 months ago
  4. 4c660dd Do not emit UnsupportedItems for declarations from other targets by Marcel Hlopko · 3 years, 4 months ago
  5. 61dce3b Add support for lvalue references. by Googler · 3 years, 4 months ago
  6. 870b38e Bug fix: Set `is_const` correctly for tag types. by Googler · 3 years, 4 months ago
  7. b6c0fe0 Use `auto` to avoid stating the name of the type twice. by Googler · 3 years, 4 months ago
  8. 3df7254 Extract a method for generating UnsupportedItem by Marcel Hlopko · 3 years, 4 months ago
  9. 80441c1 Add current target to the IR, add owning target to items by Marcel Hlopko · 3 years, 5 months ago
  10. 9c150da Add DeclId to items by Marcel Hlopko · 3 years, 5 months ago
  11. 7aa38a7 Refactor ir_from_cc to allow specifying custom headers by Marcel Hlopko · 3 years, 5 months ago
  12. 20f4ce4 Run iwyu & build_cleaner by Marcel Hlopko · 3 years, 5 months ago
  13. d3f959f Move a few self-contained AST conversion functions I need into a separate library. by Devin Jeanpierre · 3 years, 5 months ago
  14. 1ad7d55 Move the computation of each SpecialMemberFunc to a separate function. by Devin Jeanpierre · 3 years, 5 months ago
  15. 296c607 Generate implicit member functions so that they can have bindings generated. by Devin Jeanpierre · 3 years, 5 months ago
  16. fecf547 Fix crash on unsupported param type due to accidentally using the *StatusOr unconditionally. by Devin Jeanpierre · 3 years, 5 months ago
  17. 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
  18. e3434c3 Factor field handling out of AstVisitor::VisitRecordDecl(). by Googler · 3 years, 5 months ago
  19. 3ac7d0a Fix bad source range in hastily-added `UnsupportedItem` insertion. by Devin Jeanpierre · 3 years, 5 months ago
  20. c68cd5a Rename variable to use google3 naming convention. by Googler · 3 years, 5 months ago
  21. 21351fc Don't import nested structs. by Googler · 3 years, 5 months ago
  22. c8a8e73 Don't import items contained in namespaces. by Googler · 3 years, 5 months ago
  23. d4dde0e Add the implicit `this` parameter to non-static member functions. by Devin Jeanpierre · 3 years, 6 months ago
  24. c6877bb Include member function information in the IR. by Devin Jeanpierre · 3 years, 6 months ago
  25. bf0d560 Really bad support for struct types as types (in member variables, parameters, etc.) :) by Devin Jeanpierre · 3 years, 6 months ago
  26. 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
  27. f1dce42 Copy free top-level comments from headers to Rust bindings. by Michael Forster · 3 years, 6 months ago
  28. d3ef1e9 Store the ASTContext in the visitor to make it unnecessary to pass it around to by Michael Forster · 3 years, 6 months ago
  29. 6a184ad Add source location information to diagnostics. by Michael Forster · 3 years, 6 months ago
  30. 523dbd4 Add a simple diagnostics type to the IR and use it to report type conversion by Michael Forster · 3 years, 6 months ago
  31. 409d941 Retain doc comments on functions. by Michael Forster · 3 years, 6 months ago
  32. cc5941a Retain doc comments on record fields by Michael Forster · 3 years, 6 months ago
  33. 028800b Retain struct doc comments from C++ headers. by Michael Forster · 3 years, 6 months ago
  34. e78b2fb Add trivial destructor flags to the IR. by Devin Jeanpierre · 3 years, 6 months ago
  35. 0793127 Add trivial construction flags to the IR. by Devin Jeanpierre · 3 years, 6 months ago
  36. 7ef8073 Replace the two lists of `Func`s and `Record`s in the IR by a single list of by Michael Forster · 3 years, 6 months ago
  37. 9e7bad6 Fix the type mapping of `size_t` and `ptrdiff_t`, which I had mixed up. by Michael Forster · 3 years, 6 months ago
  38. c7976ec Add infrastructure for golden tests and a first test to demonstrate how it works. by Michael Forster · 3 years, 6 months ago
  39. b2cd021 Add `is_trivial_abi` bit to Record IR. by Devin Jeanpierre · 3 years, 6 months ago
  40. c06204a Handle more of the fundamental types. by Michael Forster · 3 years, 6 months ago
  41. 09c6f45 Split `Type` in half: separate `RsType` and `CcType`. by Devin Jeanpierre · 3 years, 6 months ago
  42. 51da81a Add more fundamental types. by Michael Forster · 3 years, 6 months ago
  43. d3e2b45 Add TODO to handle enums correctly. by Michael Forster · 3 years, 7 months ago
  44. 6986c07 Add size/alignment/offset to C++ IR and populate. by Googler · 3 years, 7 months ago
  45. 184f9ac Add const. by Devin Jeanpierre · 3 years, 7 months ago
  46. dc683af Return `StatusOr` with type payload for failed type conversions by Michael Forster · 3 years, 7 months ago
  47. 1de27b8 Handle basic integer types. by Michael Forster · 3 years, 7 months ago
  48. 2e85f34 C++ IR: Add access specifiers to fields and populate in AstVisitor. by Googler · 3 years, 7 months ago
  49. da14e02 Remove unnecessary explicit std::string constructor calls by Marcel Hlopko · 3 years, 7 months ago
  50. 0d5d0d4 Structify IR! by Devin Jeanpierre · 3 years, 7 months ago
  51. 5c87a72 Part #1 of adding mutable pointer types to Rust bindings. by Devin Jeanpierre · 3 years, 7 months ago
  52. 73e3355 Migrate TODOs to buganizer entries by Marcel Hlopko · 3 years, 7 months ago
  53. 6e95ad3 Structify Field. by Michael Forster · 3 years, 7 months ago
  54. b4b2874 Import simple structs by Marcel Hlopko · 3 years, 7 months ago
  55. 29a25f1 Structify Type. by Devin Jeanpierre · 3 years, 7 months ago
  56. 4d33b59 Structify Func. by Devin Jeanpierre · 3 years, 7 months ago
  57. 601f14f Change `FuncParam` to be a struct, per IRL conversations. by Devin Jeanpierre · 3 years, 7 months ago
  58. 06da6b9 Remove obsolete TODO by Marcel Hlopko · 3 years, 7 months ago
  59. a5f59ae Replace absl::Cord with std::string by Marcel Hlopko · 3 years, 7 months ago
  60. 3164eee Handle simple inline functions by Marcel Hlopko · 3 years, 7 months ago
  61. f1123c8 Add public_headers to the IR by Marcel Hlopko · 3 years, 8 months ago
  62. 7d73979 Create bindings for simple C++ functions by Marcel Hlopko · 3 years, 8 months ago
  63. e8f1c4e Add a walking skeleton for rs_bindings_from_cc generator by Marcel Hlopko · 3 years, 8 months ago