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

NoMetadataBlockingPolicy.cs « Compiler « src « ILCompiler.Compiler « src - github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: af0c073b9afe44b306f8bc44c76f7762eb81a598 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
// 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;
using Internal.TypeSystem.Ecma;

namespace ILCompiler
{
    /// <summary>
    /// Represents a metadata blocking policy that doesn't block any metadata.
    /// </summary>
    public sealed class NoMetadataBlockingPolicy : MetadataBlockingPolicy
    {
        public override bool IsBlocked(MetadataType type) => !(type is EcmaType);

        public override bool IsBlocked(FieldDesc field) => !(field is EcmaField);

        private MetadataType _arrayOfTType;
        private MetadataType InitializeArrayOfTType(TypeSystemEntity contextEntity)
        {
            _arrayOfTType = contextEntity.Context.SystemModule.GetType("System", "Array`1");
            return _arrayOfTType;
        }
        private MetadataType GetArrayOfTType(TypeSystemEntity contextEntity)
        {
            if (_arrayOfTType != null)
            {
                return _arrayOfTType;
            }
            return InitializeArrayOfTType(contextEntity);
        }

        public override bool IsBlocked(MethodDesc method)
        {
            if (method is EcmaMethod ecmaMethod)
            {
                // Methods on Array`1<T> are implementation details that implement the generic interfaces on
                // arrays. They should not generate metadata or be reflection invokable.
                // We can get rid of this special casing if we make these methods stop being regular EcmaMethods
                // with Array<T> as their owning type
                if (ecmaMethod.OwningType == GetArrayOfTType(ecmaMethod))
                    return true;

                return false;
            }

            return true;
        }
    }
}