Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[mono] refactor metadata update code #85177

Merged
merged 17 commits into from
Apr 24, 2023

Commits on Mar 3, 2023

  1. Configuration menu
    Copy the full SHA
    6cdd45d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    82fa0f8 View commit details
    Browse the repository at this point in the history

Commits on Mar 6, 2023

  1. Allow GTDs to store MonoClassMetadataUpdateInfo

    allow generic type definitions to can contain added members
    lambdageek committed Mar 6, 2023
    Configuration menu
    Copy the full SHA
    ac77587 View commit details
    Browse the repository at this point in the history
  2. [loader] Use iterator in find_method_in_class

    Instead of using a for-loop, use an interator that will also pick up
    added methods from hot reload.
    
    There's an issue here compared to the old code: the old code could
    cope with MonoClass:methods containing null pointers.  But the
    iterator approach signals that iteration is finished by returning
    NULL.
    
    Need to check whether the old code is reachable on modern .NET
    lambdageek committed Mar 6, 2023
    Configuration menu
    Copy the full SHA
    0907ca4 View commit details
    Browse the repository at this point in the history

Commits on Mar 29, 2023

  1. Configuration menu
    Copy the full SHA
    d73e60e View commit details
    Browse the repository at this point in the history

Commits on Mar 30, 2023

  1. Configuration menu
    Copy the full SHA
    1bca734 View commit details
    Browse the repository at this point in the history

Commits on Apr 10, 2023

  1. revert comment change

    lambdageek committed Apr 10, 2023
    Configuration menu
    Copy the full SHA
    ada93e8 View commit details
    Browse the repository at this point in the history
  2. negate assert in hot_reload_find_method_by_name

    This function shouldn't expect to see generic instances
    lambdageek committed Apr 10, 2023
    Configuration menu
    Copy the full SHA
    ffb1990 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    787ab86 View commit details
    Browse the repository at this point in the history

Commits on Apr 18, 2023

  1. Configuration menu
    Copy the full SHA
    b1a7295 View commit details
    Browse the repository at this point in the history

Commits on Apr 21, 2023

  1. Configuration menu
    Copy the full SHA
    fa2ae92 View commit details
    Browse the repository at this point in the history
  2. Remove commented code

    fanyang-mono committed Apr 21, 2023
    Configuration menu
    Copy the full SHA
    8ef20ed View commit details
    Browse the repository at this point in the history
  3. Update

    fanyang-mono committed Apr 21, 2023
    Configuration menu
    Copy the full SHA
    2e4e8c6 View commit details
    Browse the repository at this point in the history
  4. Update src/mono/mono/component/hot_reload.c

    Co-authored-by: Aleksey Kliger (λgeek) <akliger@gmail.com>
    fanyang-mono and lambdageek authored Apr 21, 2023
    Configuration menu
    Copy the full SHA
    a71d732 View commit details
    Browse the repository at this point in the history
  5. Update src/mono/mono/component/hot_reload.c

    Co-authored-by: Aleksey Kliger (λgeek) <akliger@gmail.com>
    fanyang-mono and lambdageek authored Apr 21, 2023
    Configuration menu
    Copy the full SHA
    7188670 View commit details
    Browse the repository at this point in the history
  6. Update src/mono/sample/HelloWorld/Makefile

    Co-authored-by: Aleksey Kliger (λgeek) <akliger@gmail.com>
    fanyang-mono and lambdageek authored Apr 21, 2023
    Configuration menu
    Copy the full SHA
    c6258f0 View commit details
    Browse the repository at this point in the history
  7. Fix ios build failure

    fanyang-mono committed Apr 21, 2023
    Configuration menu
    Copy the full SHA
    8a661e9 View commit details
    Browse the repository at this point in the history