| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276 |
- //
- // Author:
- // Jb Evain (jbevain@gmail.com)
- //
- // Copyright (c) 2008 - 2015 Jb Evain
- // Copyright (c) 2008 - 2011 Novell, Inc.
- //
- // Licensed under the MIT/X11 license.
- //
- using System;
- using System.Threading;
- using ILRuntime.Mono.Collections.Generic;
- namespace ILRuntime.Mono.Cecil {
- public sealed class FieldDefinition : FieldReference, IMemberDefinition, IConstantProvider, IMarshalInfoProvider {
- ushort attributes;
- Collection<CustomAttribute> custom_attributes;
- int offset = Mixin.NotResolvedMarker;
- internal int rva = Mixin.NotResolvedMarker;
- byte [] initial_value;
- object constant = Mixin.NotResolved;
- MarshalInfo marshal_info;
- void ResolveLayout ()
- {
- if (offset != Mixin.NotResolvedMarker)
- return;
- if (!HasImage) {
- offset = Mixin.NoDataMarker;
- return;
- }
- lock (Module.SyncRoot) {
- if (offset != Mixin.NotResolvedMarker)
- return;
- offset = Module.Read (this, (field, reader) => reader.ReadFieldLayout (field));
- }
- }
- public bool HasLayoutInfo {
- get {
- if (offset >= 0)
- return true;
- ResolveLayout ();
- return offset >= 0;
- }
- }
- public int Offset {
- get {
- if (offset >= 0)
- return offset;
- ResolveLayout ();
- return offset >= 0 ? offset : -1;
- }
- set { offset = value; }
- }
- internal FieldDefinitionProjection WindowsRuntimeProjection {
- get { return (FieldDefinitionProjection) projection; }
- set { projection = value; }
- }
- void ResolveRVA ()
- {
- if (rva != Mixin.NotResolvedMarker)
- return;
- if (!HasImage)
- return;
- lock (Module.SyncRoot) {
- if (rva != Mixin.NotResolvedMarker)
- return;
- rva = Module.Read (this, (field, reader) => reader.ReadFieldRVA (field));
- }
- }
- public int RVA {
- get {
- if (rva > 0)
- return rva;
- ResolveRVA ();
- return rva > 0 ? rva : 0;
- }
- }
- public byte [] InitialValue {
- get {
- if (initial_value != null)
- return initial_value;
- ResolveRVA ();
- if (initial_value == null)
- initial_value = Empty<byte>.Array;
- return initial_value;
- }
- set {
- initial_value = value;
- rva = 0;
- }
- }
- public FieldAttributes Attributes {
- get { return (FieldAttributes) attributes; }
- set {
- if (IsWindowsRuntimeProjection && (ushort) value != attributes)
- throw new InvalidOperationException ();
- attributes = (ushort) value;
- }
- }
- public bool HasConstant {
- get {
- this.ResolveConstant (ref constant, Module);
- return constant != Mixin.NoValue;
- }
- set { if (!value) constant = Mixin.NoValue; }
- }
- public object Constant {
- get { return HasConstant ? constant : null; }
- set { constant = value; }
- }
- public bool HasCustomAttributes {
- get {
- if (custom_attributes != null)
- return custom_attributes.Count > 0;
- return this.GetHasCustomAttributes (Module);
- }
- }
- public Collection<CustomAttribute> CustomAttributes {
- get { return custom_attributes ?? (this.GetCustomAttributes (ref custom_attributes, Module)); }
- }
- public bool HasMarshalInfo {
- get {
- if (marshal_info != null)
- return true;
- return this.GetHasMarshalInfo (Module);
- }
- }
- public MarshalInfo MarshalInfo {
- get { return marshal_info ?? (this.GetMarshalInfo (ref marshal_info, Module)); }
- set { marshal_info = value; }
- }
- #region FieldAttributes
- public bool IsCompilerControlled {
- get { return attributes.GetMaskedAttributes ((ushort) FieldAttributes.FieldAccessMask, (ushort) FieldAttributes.CompilerControlled); }
- set { attributes = attributes.SetMaskedAttributes ((ushort) FieldAttributes.FieldAccessMask, (ushort) FieldAttributes.CompilerControlled, value); }
- }
- public bool IsPrivate {
- get { return attributes.GetMaskedAttributes ((ushort) FieldAttributes.FieldAccessMask, (ushort) FieldAttributes.Private); }
- set { attributes = attributes.SetMaskedAttributes ((ushort) FieldAttributes.FieldAccessMask, (ushort) FieldAttributes.Private, value); }
- }
- public bool IsFamilyAndAssembly {
- get { return attributes.GetMaskedAttributes ((ushort) FieldAttributes.FieldAccessMask, (ushort) FieldAttributes.FamANDAssem); }
- set { attributes = attributes.SetMaskedAttributes ((ushort) FieldAttributes.FieldAccessMask, (ushort) FieldAttributes.FamANDAssem, value); }
- }
- public bool IsAssembly {
- get { return attributes.GetMaskedAttributes ((ushort) FieldAttributes.FieldAccessMask, (ushort) FieldAttributes.Assembly); }
- set { attributes = attributes.SetMaskedAttributes ((ushort) FieldAttributes.FieldAccessMask, (ushort) FieldAttributes.Assembly, value); }
- }
- public bool IsFamily {
- get { return attributes.GetMaskedAttributes ((ushort) FieldAttributes.FieldAccessMask, (ushort) FieldAttributes.Family); }
- set { attributes = attributes.SetMaskedAttributes ((ushort) FieldAttributes.FieldAccessMask, (ushort) FieldAttributes.Family, value); }
- }
- public bool IsFamilyOrAssembly {
- get { return attributes.GetMaskedAttributes ((ushort) FieldAttributes.FieldAccessMask, (ushort) FieldAttributes.FamORAssem); }
- set { attributes = attributes.SetMaskedAttributes ((ushort) FieldAttributes.FieldAccessMask, (ushort) FieldAttributes.FamORAssem, value); }
- }
- public bool IsPublic {
- get { return attributes.GetMaskedAttributes ((ushort) FieldAttributes.FieldAccessMask, (ushort) FieldAttributes.Public); }
- set { attributes = attributes.SetMaskedAttributes ((ushort) FieldAttributes.FieldAccessMask, (ushort) FieldAttributes.Public, value); }
- }
- public bool IsStatic {
- get { return attributes.GetAttributes ((ushort) FieldAttributes.Static); }
- set { attributes = attributes.SetAttributes ((ushort) FieldAttributes.Static, value); }
- }
- public bool IsInitOnly {
- get { return attributes.GetAttributes ((ushort) FieldAttributes.InitOnly); }
- set { attributes = attributes.SetAttributes ((ushort) FieldAttributes.InitOnly, value); }
- }
- public bool IsLiteral {
- get { return attributes.GetAttributes ((ushort) FieldAttributes.Literal); }
- set { attributes = attributes.SetAttributes ((ushort) FieldAttributes.Literal, value); }
- }
- public bool IsNotSerialized {
- get { return attributes.GetAttributes ((ushort) FieldAttributes.NotSerialized); }
- set { attributes = attributes.SetAttributes ((ushort) FieldAttributes.NotSerialized, value); }
- }
- public bool IsSpecialName {
- get { return attributes.GetAttributes ((ushort) FieldAttributes.SpecialName); }
- set { attributes = attributes.SetAttributes ((ushort) FieldAttributes.SpecialName, value); }
- }
- public bool IsPInvokeImpl {
- get { return attributes.GetAttributes ((ushort) FieldAttributes.PInvokeImpl); }
- set { attributes = attributes.SetAttributes ((ushort) FieldAttributes.PInvokeImpl, value); }
- }
- public bool IsRuntimeSpecialName {
- get { return attributes.GetAttributes ((ushort) FieldAttributes.RTSpecialName); }
- set { attributes = attributes.SetAttributes ((ushort) FieldAttributes.RTSpecialName, value); }
- }
- public bool HasDefault {
- get { return attributes.GetAttributes ((ushort) FieldAttributes.HasDefault); }
- set { attributes = attributes.SetAttributes ((ushort) FieldAttributes.HasDefault, value); }
- }
- #endregion
- public override bool IsDefinition {
- get { return true; }
- }
- public new TypeDefinition DeclaringType {
- get { return (TypeDefinition) base.DeclaringType; }
- set { base.DeclaringType = value; }
- }
- public FieldDefinition (string name, FieldAttributes attributes, TypeReference fieldType)
- : base (name, fieldType)
- {
- this.attributes = (ushort) attributes;
- }
- public override FieldDefinition Resolve ()
- {
- return this;
- }
- }
- static partial class Mixin {
- public const int NotResolvedMarker = -2;
- public const int NoDataMarker = -1;
- }
- }
|