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