1 implementation of AddCompilationRoot
ILCompiler.Compiler (1)
Compiler\RootingServiceProvider.cs (1)
27public void AddCompilationRoot(MethodDesc method, string reason, Utf8String exportName, bool exportHidden = false)
5 references to AddCompilationRoot
ILCompiler.Compiler (5)
Compiler\IRootingServiceProvider.cs (1)
14void AddCompilationRoot(MethodDesc method, string reason) => AddCompilationRoot(method, reason, default);
Compiler\MainMethodRootProvider.cs (1)
44rootProvider.AddCompilationRoot(startupCodeMain, "Startup Code Main Method", new Utf8String(ManagedEntryPointMethodName));
Compiler\NativeLibraryInitializerRootProvider.cs (1)
35rootProvider.AddCompilationRoot(nativeLibStartupCode, "Startup Code Main Method", new Utf8String(ManagedEntryPointMethodName));
Compiler\UnmanagedEntryPointsRootProvider.cs (2)
71rootProvider.AddCompilationRoot((MethodDesc)ecmaMethod, "Native callable", unmanagedCallersOnlyExportName, Hidden); 76rootProvider.AddCompilationRoot((MethodDesc)ecmaMethod, "Runtime export", runtimeExportName, Hidden);