Welcome to mirror list, hosted at ThFree Co, Russian Federation.

IRootingServiceProvider.cs « Compiler « src « ILCompiler.Compiler « src - github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1a462e9fcd28cfa8b2efd9607f4acec0397faae9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

using Internal.TypeSystem;

namespace ILCompiler
{
    /// <summary>
    /// Provides a means to root types / methods at the compiler driver layer
    /// </summary>
    public interface IRootingServiceProvider
    {
        void AddCompilationRoot(MethodDesc method, string reason, string exportName = null);
        void AddCompilationRoot(TypeDesc type, string reason);
        void RootThreadStaticBaseForType(TypeDesc type, string reason);
        void RootGCStaticBaseForType(TypeDesc type, string reason);
        void RootNonGCStaticBaseForType(TypeDesc type, string reason);
        void RootVirtualMethodForReflection(MethodDesc method, string reason);
        void RootModuleMetadata(ModuleDesc module, string reason);
        void RootReadOnlyDataBlob(byte[] data, int alignment, string reason, string exportName);
    }
}