2005-06-05 Peter Bartok <pbartok@novell.com>
[mono.git] / mcs / class / corlib / System.Runtime.CompilerServices / RuntimeHelpers.cs
1 // System.Runtime.CompilerServices.RuntimeHelpers
2 //
3 // Sean MacIsaac (macisaac@ximian.com)
4 // Paolo Molaro (lupus@ximian.com)
5 //
6 // (C) Ximian, Inc. 2001
7
8 //
9 // Copyright (C) 2004 Novell, Inc (http://www.novell.com)
10 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 // 
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 // 
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 //
30
31 #if NET_2_0
32 using System.Runtime.ConstrainedExecution;
33 #endif
34
35 namespace System.Runtime.CompilerServices
36 {
37         [Serializable]
38         public sealed class RuntimeHelpers
39         {
40                 private RuntimeHelpers () {}
41
42                 [MethodImplAttribute(MethodImplOptions.InternalCall)]
43                 static extern void InitializeArray (Array array, IntPtr fldHandle);
44
45                 public static void InitializeArray (Array array, RuntimeFieldHandle fldHandle)
46                 {
47                         InitializeArray (array, fldHandle.Value);
48                 }
49
50                 public static extern int OffsetToStringData {
51                         [MethodImpl (MethodImplOptions.InternalCall)]
52                         get;
53                 }
54
55 #if NET_1_1
56                 public static int GetHashCode (object o) {
57                         return Object.InternalGetHashCode (o);
58                 }
59
60                 public static new bool Equals (object o1, object o2) {
61                         // LAMESPEC: According to MSDN, this is equivalent to 
62                         // Object::Equals (). But the MS version of Object::Equals()
63                         // includes the functionality of ValueType::Equals(), while
64                         // our version does not.
65                         if (o1 == o2)
66                                 return true;
67                         if ((o1 == null) || (o2 == null))
68                                 return false;
69                         if (o1 is ValueType)
70                                 return ValueType.DefaultEquals (o1, o2);
71                         else
72                                 return Object.Equals (o1, o2);
73                 }
74 #endif
75
76                 [MethodImplAttribute(MethodImplOptions.InternalCall)]
77                 public static extern object GetObjectValue (object obj);
78
79                 [MethodImplAttribute(MethodImplOptions.InternalCall)]
80                 static extern void RunClassConstructor (IntPtr type);
81
82                 public static void RunClassConstructor (RuntimeTypeHandle type)
83                 {
84                         RunClassConstructor (type.Value);
85                 }
86
87 #if NET_2_0
88                 [MonoTODO]
89                 [ReliabilityContract (Consistency.WillNotCorruptState, Cer.MayFail)]
90                 public static void PrepareConstrainedRegions () {
91                         throw new NotImplementedException ();
92                 }
93
94                 [MonoTODO]
95                 public static void PrepareDelegate (Delegate d) {
96                         if (d == null)
97                                 throw new ArgumentNullException ("d");
98                         throw new NotImplementedException ();
99                 }
100
101                 [MonoTODO]
102                 public static void PrepareMethod (RuntimeMethodHandle method) {
103                         throw new NotImplementedException ();
104                 }
105
106                 [MonoTODO]
107                 public static void PrepareMethod (RuntimeMethodHandle method, RuntimeTypeHandle[] instantiation) {
108                         throw new NotImplementedException ();
109                 }
110 #endif
111         }
112 }