Skip to content

[NativeAOT-LLVM] Implement generic IDynamicInterfaceCastable #2693

Open
@SingleAccretion

Description

@SingleAccretion

See dotnet/runtime#108235, which uses the thunk pool and will not work for us.

Rough idea:

  1. Produce fat function pointers in interface resolve.
  2. Teach interface call lowering fat function pointer dispatch.
  3. Limit the impact of this on code quality by:
    • Recording all the IDIC-implementing interfaces during scanning.
    • Only using the fat function pointer aware lowering for calls to interfaces that the IDIC implementations implement. So if for example we have [IDICImpl] IImplOne : ISomething, [IDICImpl] IImplTwo : ISomething during scanning, the final set of affected methods would be those on ISomething and IImplOne with IImplTwo, since the latter "implement themselves".

Metadata

Metadata

Assignees

No one assigned

    Labels

    area-NativeAOT-LLVMLLVM generation for Native AOT compilation (including Web Assembly)

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions