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

FunctionPointerType.cs « Common « TypeSystem « src « Common « src - github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 523b105d0fa9c6ff68a90bea579851322de8e069 (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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
// 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 System.Text;

namespace Internal.TypeSystem
{
    /// <summary>
    /// Represents an unmanaged pointer to a method with a signature compatible with the signature of the pointer.
    /// </summary>
    public sealed partial class FunctionPointerType : TypeDesc
    {
        private MethodSignature _signature;
        private int _hashCode;

        internal FunctionPointerType(MethodSignature signature)
        {
            _signature = signature;
        }

        /// <summary>
        /// Gets the signature of the method this pointer points to.
        /// </summary>
        public MethodSignature Signature
        {
            get
            {
                return _signature;
            }
        }

        public override TypeSystemContext Context
        {
            get
            {
                return _signature.ReturnType.Context;
            }
        }

        public override int GetHashCode()
        {
            if (_hashCode == 0)
                _hashCode = _signature.GetHashCode();
            return _hashCode;
        }

        public override TypeDesc InstantiateSignature(Instantiation typeInstantiation, Instantiation methodInstantiation)
        {
            MethodSignatureBuilder sigBuilder = new MethodSignatureBuilder(_signature);
            sigBuilder.ReturnType = _signature.ReturnType.InstantiateSignature(typeInstantiation, methodInstantiation);
            for (int i = 0; i < _signature.Length; i++)
                sigBuilder[i] = _signature[i].InstantiateSignature(typeInstantiation, methodInstantiation);

            MethodSignature instantiatedSignature = sigBuilder.ToSignature();
            if (instantiatedSignature != _signature)
                return Context.GetFunctionPointerType(instantiatedSignature);

            return this;
        }

        protected override TypeFlags ComputeTypeFlags(TypeFlags mask)
        {
            TypeFlags flags = TypeFlags.FunctionPointer;

            flags |= TypeFlags.HasGenericVarianceComputed;

            flags |= TypeFlags.HasFinalizerComputed;

            flags |= TypeFlags.AttributeCacheComputed;

            return flags;
        }
    }
}