Merge pull request #1635 from alexrp/core-clr-properties
[mono.git] / mono / metadata / icall-def.h
1 /*
2  * This file contains the default set of the mono internal calls.
3  * Each type that has internal call methods must be declared here
4  * with the ICALL_TYPE macro as follows:
5  *
6  *      ICALL_TYPE(typeid, typename, first_icall_id)
7  *
8  * typeid must be a C symbol name unique to the type, don't worry about namespace
9  *      pollution, since it will be automatically prefixed to avoid it.
10  * typename is a C string containing the full name of the type
11  * first_icall_id s the symbol ID of the first internal call of the declared
12  *      type (see below)
13  *
14  * The list of internal calls of the methods of a type must follow the
15  * type declaration. Each internal call is defined by the following macro:
16  *
17  *      ICALL(icallid, methodname, cfuncptr)
18  *
19  * icallid must be a C symbol, unique for each icall defined in this file and
20  * tipically equal to the typeid + '_' + a sequential number.
21  * methodname is a C string defining the method name and the optional signature
22  * (the signature is required only when several internal calls in the type
23  * have the same name)
24  * cfuncptr is the C function that implements the internal call. Note that this
25  * file is included at the end of metadata/icall.c, so the C function must be
26  * visible to the compiler there.
27  *
28  * *** Adding a new internal call ***
29  * Remember that ICALL_TYPE declarations must be kept sorted wrt each other
30  * ICALL_TYPE declaration. The same happens for ICALL declarations, but only
31  * limited to the icall list of each type. The sorting is based on the type or
32  * method name.
33  * When adding a new icall, make sure it is inserted correctly in the list and
34  * that it defines a unique ID. ID are currently numbered and ordered, but if
35  * you need to insert a method in the middle, don't bother renaming all the symbols.
36  * Remember to change also the first_icall_id argument in the ICALL_TYPE 
37  * declaration if you add a new icall at the beginning of a type's icall list.
38  */
39 ICALL_TYPE(UNORM, "Mono.Globalization.Unicode.Normalization", UNORM_1)
40 ICALL(UNORM_1, "load_normalization_resource", load_normalization_resource)
41
42 #ifndef DISABLE_COM
43 ICALL_TYPE(COMPROX, "Mono.Interop.ComInteropProxy", COMPROX_1)
44 ICALL(COMPROX_1, "AddProxy", ves_icall_Mono_Interop_ComInteropProxy_AddProxy)
45 ICALL(COMPROX_2, "FindProxy", ves_icall_Mono_Interop_ComInteropProxy_FindProxy)
46 #endif
47
48 ICALL_TYPE(RUNTIME, "Mono.Runtime", RUNTIME_1)
49 ICALL(RUNTIME_1, "GetDisplayName", ves_icall_Mono_Runtime_GetDisplayName)
50 ICALL(RUNTIME_12, "GetNativeStackTrace", ves_icall_Mono_Runtime_GetNativeStackTrace)
51 ICALL(RUNTIME_13, "SetGCAllowSynchronousMajor", ves_icall_Mono_Runtime_SetGCAllowSynchronousMajor)
52
53 #ifndef PLATFORM_RO_FS
54 ICALL_TYPE(KPAIR, "Mono.Security.Cryptography.KeyPairPersistence", KPAIR_1)
55 ICALL(KPAIR_1, "_CanSecure", ves_icall_Mono_Security_Cryptography_KeyPairPersistence_CanSecure)
56 ICALL(KPAIR_2, "_IsMachineProtected", ves_icall_Mono_Security_Cryptography_KeyPairPersistence_IsMachineProtected)
57 ICALL(KPAIR_3, "_IsUserProtected", ves_icall_Mono_Security_Cryptography_KeyPairPersistence_IsUserProtected)
58 ICALL(KPAIR_4, "_ProtectMachine", ves_icall_Mono_Security_Cryptography_KeyPairPersistence_ProtectMachine)
59 ICALL(KPAIR_5, "_ProtectUser", ves_icall_Mono_Security_Cryptography_KeyPairPersistence_ProtectUser)
60 #endif /* !PLATFORM_RO_FS */
61
62 ICALL_TYPE(APPDOM, "System.AppDomain", APPDOM_1)
63 ICALL(APPDOM_1, "ExecuteAssembly", ves_icall_System_AppDomain_ExecuteAssembly)
64 ICALL(APPDOM_2, "GetAssemblies", ves_icall_System_AppDomain_GetAssemblies)
65 ICALL(APPDOM_3, "GetData", ves_icall_System_AppDomain_GetData)
66 ICALL(APPDOM_4, "InternalGetContext", ves_icall_System_AppDomain_InternalGetContext)
67 ICALL(APPDOM_5, "InternalGetDefaultContext", ves_icall_System_AppDomain_InternalGetDefaultContext)
68 ICALL(APPDOM_6, "InternalGetProcessGuid", ves_icall_System_AppDomain_InternalGetProcessGuid)
69 ICALL(APPDOM_7, "InternalIsFinalizingForUnload", ves_icall_System_AppDomain_InternalIsFinalizingForUnload)
70 ICALL(APPDOM_8, "InternalPopDomainRef", ves_icall_System_AppDomain_InternalPopDomainRef)
71 ICALL(APPDOM_9, "InternalPushDomainRef", ves_icall_System_AppDomain_InternalPushDomainRef)
72 ICALL(APPDOM_10, "InternalPushDomainRefByID", ves_icall_System_AppDomain_InternalPushDomainRefByID)
73 ICALL(APPDOM_11, "InternalSetContext", ves_icall_System_AppDomain_InternalSetContext)
74 ICALL(APPDOM_12, "InternalSetDomain", ves_icall_System_AppDomain_InternalSetDomain)
75 ICALL(APPDOM_13, "InternalSetDomainByID", ves_icall_System_AppDomain_InternalSetDomainByID)
76 ICALL(APPDOM_14, "InternalUnload", ves_icall_System_AppDomain_InternalUnload)
77 ICALL(APPDOM_15, "LoadAssembly", ves_icall_System_AppDomain_LoadAssembly)
78 ICALL(APPDOM_16, "LoadAssemblyRaw", ves_icall_System_AppDomain_LoadAssemblyRaw)
79 ICALL(APPDOM_17, "SetData", ves_icall_System_AppDomain_SetData)
80 ICALL(APPDOM_18, "createDomain", ves_icall_System_AppDomain_createDomain)
81 ICALL(APPDOM_19, "getCurDomain", ves_icall_System_AppDomain_getCurDomain)
82 ICALL(APPDOM_20, "getFriendlyName", ves_icall_System_AppDomain_getFriendlyName)
83 ICALL(APPDOM_21, "getRootDomain", ves_icall_System_AppDomain_getRootDomain)
84 ICALL(APPDOM_22, "getSetup", ves_icall_System_AppDomain_getSetup)
85
86 ICALL_TYPE(ARGI, "System.ArgIterator", ARGI_1)
87 ICALL(ARGI_1, "IntGetNextArg()",                  mono_ArgIterator_IntGetNextArg)
88 ICALL(ARGI_2, "IntGetNextArg(intptr)", mono_ArgIterator_IntGetNextArgT)
89 ICALL(ARGI_3, "IntGetNextArgType",                mono_ArgIterator_IntGetNextArgType)
90 ICALL(ARGI_4, "Setup",                            mono_ArgIterator_Setup)
91
92 ICALL_TYPE(ARRAY, "System.Array", ARRAY_1)
93 ICALL(ARRAY_1, "ClearInternal",    ves_icall_System_Array_ClearInternal)
94 ICALL(ARRAY_2, "Clone",            mono_array_clone)
95 ICALL(ARRAY_3, "CreateInstanceImpl",   ves_icall_System_Array_CreateInstanceImpl)
96 ICALL(ARRAY_14, "CreateInstanceImpl64",   ves_icall_System_Array_CreateInstanceImpl64)
97 ICALL(ARRAY_4, "FastCopy",         ves_icall_System_Array_FastCopy)
98 ICALL(ARRAY_5, "GetGenericValueImpl", ves_icall_System_Array_GetGenericValueImpl)
99 ICALL(ARRAY_6, "GetLength",        ves_icall_System_Array_GetLength)
100 ICALL(ARRAY_15, "GetLongLength",        ves_icall_System_Array_GetLongLength)
101 ICALL(ARRAY_7, "GetLowerBound",    ves_icall_System_Array_GetLowerBound)
102 ICALL(ARRAY_8, "GetRank",          ves_icall_System_Array_GetRank)
103 ICALL(ARRAY_9, "GetValue",         ves_icall_System_Array_GetValue)
104 ICALL(ARRAY_10, "GetValueImpl",     ves_icall_System_Array_GetValueImpl)
105 ICALL(ARRAY_11, "SetGenericValueImpl", ves_icall_System_Array_SetGenericValueImpl)
106 ICALL(ARRAY_12, "SetValue",         ves_icall_System_Array_SetValue)
107 ICALL(ARRAY_13, "SetValueImpl",     ves_icall_System_Array_SetValueImpl)
108
109 ICALL_TYPE(BUFFER, "System.Buffer", BUFFER_1)
110 ICALL(BUFFER_1, "BlockCopyInternal", ves_icall_System_Buffer_BlockCopyInternal)
111 ICALL(BUFFER_2, "ByteLengthInternal", ves_icall_System_Buffer_ByteLengthInternal)
112 ICALL(BUFFER_3, "GetByteInternal", ves_icall_System_Buffer_GetByteInternal)
113 ICALL(BUFFER_4, "SetByteInternal", ves_icall_System_Buffer_SetByteInternal)
114
115 ICALL_TYPE (COMPO_W, "System.ComponentModel.Win32Exception", COMPO_W_1)
116 ICALL (COMPO_W_1, "W32ErrorMessage", ves_icall_System_ComponentModel_Win32Exception_W32ErrorMessage)
117
118 ICALL_TYPE(DEFAULTC, "System.Configuration.DefaultConfig", DEFAULTC_1)
119 ICALL(DEFAULTC_1, "get_bundled_machine_config", get_bundled_machine_config)
120 ICALL(DEFAULTC_2, "get_machine_config_path", ves_icall_System_Configuration_DefaultConfig_get_machine_config_path)
121
122 /* Note that the below icall shares the same function as DefaultConfig uses */
123 ICALL_TYPE(INTCFGHOST, "System.Configuration.InternalConfigurationHost", INTCFGHOST_1)
124 ICALL(INTCFGHOST_1, "get_bundled_app_config", get_bundled_app_config)
125 ICALL(INTCFGHOST_2, "get_bundled_machine_config", get_bundled_machine_config)
126
127 ICALL_TYPE(CONSOLE, "System.ConsoleDriver", CONSOLE_1)
128 ICALL(CONSOLE_1, "InternalKeyAvailable", ves_icall_System_ConsoleDriver_InternalKeyAvailable )
129 ICALL(CONSOLE_2, "Isatty", ves_icall_System_ConsoleDriver_Isatty )
130 ICALL(CONSOLE_3, "SetBreak", ves_icall_System_ConsoleDriver_SetBreak )
131 ICALL(CONSOLE_4, "SetEcho", ves_icall_System_ConsoleDriver_SetEcho )
132 ICALL(CONSOLE_5, "TtySetup", ves_icall_System_ConsoleDriver_TtySetup )
133
134 ICALL_TYPE(TZONE, "System.CurrentSystemTimeZone", TZONE_1)
135 ICALL(TZONE_1, "GetTimeZoneData", ves_icall_System_CurrentSystemTimeZone_GetTimeZoneData)
136
137 ICALL_TYPE(DTIME, "System.DateTime", DTIME_1)
138 ICALL(DTIME_1, "GetSystemTimeAsFileTime", mono_100ns_datetime)
139
140 #ifndef DISABLE_DECIMAL
141 ICALL_TYPE(DECIMAL, "System.Decimal", DECIMAL_1)
142 ICALL(DECIMAL_1, ".ctor(double)", mono_decimal_init_double)
143 ICALL(DECIMAL_2, ".ctor(single)", mono_decimal_init_single)
144 ICALL(DECIMAL_3, "FCallAddSub(System.Decimal&,System.Decimal&,byte)", mono_decimal_addsub)
145 ICALL(DECIMAL_4, "FCallCompare", mono_decimal_compare)
146 ICALL(DECIMAL_5, "FCallDivide", mono_decimal_divide)
147 ICALL(DECIMAL_6, "FCallFloor", mono_decimal_floor)
148 ICALL(DECIMAL_7, "FCallMultiply", mono_decimal_multiply)
149 ICALL(DECIMAL_8, "FCallRound", mono_decimal_round)
150 ICALL(DECIMAL_9, "FCallToInt32", mono_decimal_to_int32)
151 ICALL(DECIMAL_10, "FCallTruncate", mono_decimal_truncate)
152 ICALL(DECIMAL_11, "GetHashCode", mono_decimal_get_hash_code)
153 ICALL(DECIMAL_12, "ToDouble", mono_decimal_to_double)
154 ICALL(DECIMAL_13, "ToSingle", mono_decimal_to_float)
155 #endif
156
157 ICALL_TYPE(DELEGATE, "System.Delegate", DELEGATE_1)
158 ICALL(DELEGATE_1, "CreateDelegate_internal", ves_icall_System_Delegate_CreateDelegate_internal)
159 ICALL(DELEGATE_2, "SetMulticastInvoke", ves_icall_System_Delegate_SetMulticastInvoke)
160
161 ICALL_TYPE(DEBUGR, "System.Diagnostics.Debugger", DEBUGR_1)
162 ICALL(DEBUGR_1, "IsAttached_internal", ves_icall_System_Diagnostics_Debugger_IsAttached_internal)
163 ICALL(DEBUGR_2, "IsLogging", ves_icall_System_Diagnostics_Debugger_IsLogging)
164 ICALL(DEBUGR_3, "Log", ves_icall_System_Diagnostics_Debugger_Log)
165
166 ICALL_TYPE(TRACEL, "System.Diagnostics.DefaultTraceListener", TRACEL_1)
167 ICALL(TRACEL_1, "WriteWindowsDebugString", ves_icall_System_Diagnostics_DefaultTraceListener_WriteWindowsDebugString)
168
169 ICALL_TYPE(FILEV, "System.Diagnostics.FileVersionInfo", FILEV_1)
170 ICALL(FILEV_1, "GetVersionInfo_internal(string)", ves_icall_System_Diagnostics_FileVersionInfo_GetVersionInfo_internal)
171
172 #ifndef DISABLE_PROCESS_HANDLING
173 ICALL_TYPE(PERFCTR, "System.Diagnostics.PerformanceCounter", PERFCTR_1)
174 ICALL(PERFCTR_1, "FreeData", mono_perfcounter_free_data)
175 ICALL(PERFCTR_2, "GetImpl", mono_perfcounter_get_impl)
176 ICALL(PERFCTR_3, "GetSample", mono_perfcounter_get_sample)
177 ICALL(PERFCTR_4, "UpdateValue", mono_perfcounter_update_value)
178
179 ICALL_TYPE(PERFCTRCAT, "System.Diagnostics.PerformanceCounterCategory", PERFCTRCAT_1)
180 ICALL(PERFCTRCAT_1, "CategoryDelete", mono_perfcounter_category_del)
181 ICALL(PERFCTRCAT_2, "CategoryHelpInternal",   mono_perfcounter_category_help)
182 ICALL(PERFCTRCAT_3, "CounterCategoryExists", mono_perfcounter_category_exists)
183 ICALL(PERFCTRCAT_4, "Create",         mono_perfcounter_create)
184 ICALL(PERFCTRCAT_5, "GetCategoryNames", mono_perfcounter_category_names)
185 ICALL(PERFCTRCAT_6, "GetCounterNames", mono_perfcounter_counter_names)
186 ICALL(PERFCTRCAT_7, "GetInstanceNames", mono_perfcounter_instance_names)
187 ICALL(PERFCTRCAT_8, "InstanceExistsInternal", mono_perfcounter_instance_exists)
188
189 ICALL_TYPE(PROCESS, "System.Diagnostics.Process", PROCESS_1)
190 ICALL(PROCESS_1, "CreateProcess_internal(System.Diagnostics.ProcessStartInfo,intptr,intptr,intptr,System.Diagnostics.Process/ProcInfo&)", ves_icall_System_Diagnostics_Process_CreateProcess_internal)
191 ICALL(PROCESS_2, "ExitCode_internal(intptr)", ves_icall_System_Diagnostics_Process_ExitCode_internal)
192 ICALL(PROCESS_3, "ExitTime_internal(intptr)", ves_icall_System_Diagnostics_Process_ExitTime_internal)
193 ICALL(PROCESS_4, "GetModules_internal(intptr)", ves_icall_System_Diagnostics_Process_GetModules_internal)
194 ICALL(PROCESS_5, "GetPid_internal()", ves_icall_System_Diagnostics_Process_GetPid_internal)
195 ICALL(PROCESS_5B, "GetPriorityClass(intptr,int&)", ves_icall_System_Diagnostics_Process_GetPriorityClass)
196 ICALL(PROCESS_5H, "GetProcessData", ves_icall_System_Diagnostics_Process_GetProcessData)
197 ICALL(PROCESS_6, "GetProcess_internal(int)", ves_icall_System_Diagnostics_Process_GetProcess_internal)
198 ICALL(PROCESS_7, "GetProcesses_internal()", ves_icall_System_Diagnostics_Process_GetProcesses_internal)
199 ICALL(PROCESS_8, "GetWorkingSet_internal(intptr,int&,int&)", ves_icall_System_Diagnostics_Process_GetWorkingSet_internal)
200 ICALL(PROCESS_9, "Kill_internal", ves_icall_System_Diagnostics_Process_Kill_internal)
201 ICALL(PROCESS_10, "ProcessName_internal(intptr)", ves_icall_System_Diagnostics_Process_ProcessName_internal)
202 ICALL(PROCESS_11, "Process_free_internal(intptr)", ves_icall_System_Diagnostics_Process_Process_free_internal)
203 ICALL(PROCESS_11B, "SetPriorityClass(intptr,int,int&)", ves_icall_System_Diagnostics_Process_SetPriorityClass)
204 ICALL(PROCESS_12, "SetWorkingSet_internal(intptr,int,int,bool)", ves_icall_System_Diagnostics_Process_SetWorkingSet_internal)
205 ICALL(PROCESS_13, "ShellExecuteEx_internal(System.Diagnostics.ProcessStartInfo,System.Diagnostics.Process/ProcInfo&)", ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal)
206 ICALL(PROCESS_14, "StartTime_internal(intptr)", ves_icall_System_Diagnostics_Process_StartTime_internal)
207 ICALL(PROCESS_14M, "Times", ves_icall_System_Diagnostics_Process_Times)
208 ICALL(PROCESS_15, "WaitForExit_internal(intptr,int)", ves_icall_System_Diagnostics_Process_WaitForExit_internal)
209 ICALL(PROCESS_16, "WaitForInputIdle_internal(intptr,int)", ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal)
210
211 ICALL_TYPE (PROCESSHANDLE, "System.Diagnostics.Process/ProcessWaitHandle", PROCESSHANDLE_1)
212 ICALL (PROCESSHANDLE_1, "ProcessHandle_close(intptr)", ves_icall_System_Diagnostics_Process_ProcessHandle_close)
213 ICALL (PROCESSHANDLE_2, "ProcessHandle_duplicate(intptr)", ves_icall_System_Diagnostics_Process_ProcessHandle_duplicate)
214 #endif /* !DISABLE_PROCESS_HANDLING */
215
216 ICALL_TYPE(SFRAME, "System.Diagnostics.StackFrame", SFRAME_1)
217 ICALL(SFRAME_1, "GetILOffsetFromFile", ves_icall_System_StackFrame_GetILOffsetFromFile)
218
219 ICALL_TYPE(STOPWATCH, "System.Diagnostics.Stopwatch", STOPWATCH_1)
220 ICALL(STOPWATCH_1, "GetTimestamp", mono_100ns_ticks)
221
222 ICALL_TYPE(DOUBLE, "System.Double", DOUBLE_1)
223 ICALL(DOUBLE_1, "ParseImpl",    mono_double_ParseImpl)
224
225 ICALL_TYPE(ENUM, "System.Enum", ENUM_1)
226 ICALL(ENUM_1, "GetEnumValuesAndNames", ves_icall_System_Enum_GetEnumValuesAndNames)
227 ICALL(ENUM_2, "InternalBoxEnum", ves_icall_System_Enum_ToObject)
228 ICALL(ENUM_3, "InternalCompareTo", ves_icall_System_Enum_compare_value_to)
229 ICALL(ENUM_4, "InternalGetUnderlyingType", ves_icall_System_Enum_get_underlying_type)
230 ICALL(ENUM_5, "InternalHasFlag", ves_icall_System_Enum_InternalHasFlag)
231 ICALL(ENUM_6, "get_hashcode", ves_icall_System_Enum_get_hashcode)
232 ICALL(ENUM_7, "get_value", ves_icall_System_Enum_get_value)
233
234 ICALL_TYPE(ENV, "System.Environment", ENV_1)
235 ICALL(ENV_1, "Exit", ves_icall_System_Environment_Exit)
236 ICALL(ENV_2, "GetCommandLineArgs", mono_runtime_get_main_args)
237 ICALL(ENV_3, "GetEnvironmentVariableNames", ves_icall_System_Environment_GetEnvironmentVariableNames)
238 ICALL(ENV_4, "GetLogicalDrivesInternal", ves_icall_System_Environment_GetLogicalDrives )
239 ICALL(ENV_5, "GetMachineConfigPath", ves_icall_System_Configuration_DefaultConfig_get_machine_config_path)
240 ICALL(ENV_51, "GetNewLine", ves_icall_System_Environment_get_NewLine)
241 ICALL(ENV_6, "GetOSVersionString", ves_icall_System_Environment_GetOSVersionString)
242 ICALL(ENV_6a, "GetPageSize", mono_pagesize)
243 ICALL(ENV_7, "GetWindowsFolderPath", ves_icall_System_Environment_GetWindowsFolderPath)
244 ICALL(ENV_8, "InternalSetEnvironmentVariable", ves_icall_System_Environment_InternalSetEnvironmentVariable)
245 ICALL(ENV_9, "get_ExitCode", mono_environment_exitcode_get)
246 ICALL(ENV_10, "get_HasShutdownStarted", ves_icall_System_Environment_get_HasShutdownStarted)
247 ICALL(ENV_11, "get_MachineName", ves_icall_System_Environment_get_MachineName)
248 ICALL(ENV_13, "get_Platform", ves_icall_System_Environment_get_Platform)
249 ICALL(ENV_14, "get_ProcessorCount", mono_cpu_count)
250 ICALL(ENV_15, "get_TickCount", mono_msec_ticks)
251 ICALL(ENV_16, "get_UserName", ves_icall_System_Environment_get_UserName)
252 ICALL(ENV_16m, "internalBroadcastSettingChange", ves_icall_System_Environment_BroadcastSettingChange)
253 ICALL(ENV_17, "internalGetEnvironmentVariable", ves_icall_System_Environment_GetEnvironmentVariable)
254 ICALL(ENV_18, "internalGetGacPath", ves_icall_System_Environment_GetGacPath)
255 ICALL(ENV_19, "internalGetHome", ves_icall_System_Environment_InternalGetHome)
256 ICALL(ENV_20, "set_ExitCode", mono_environment_exitcode_set)
257
258 ICALL_TYPE(GC, "System.GC", GC_0)
259 ICALL(GC_0, "CollectionCount", mono_gc_collection_count)
260 ICALL(GC_0a, "GetGeneration", mono_gc_get_generation)
261 ICALL(GC_1, "GetTotalMemory", ves_icall_System_GC_GetTotalMemory)
262 ICALL(GC_2, "InternalCollect", ves_icall_System_GC_InternalCollect)
263 ICALL(GC_3, "KeepAlive", ves_icall_System_GC_KeepAlive)
264 ICALL(GC_4, "ReRegisterForFinalize", ves_icall_System_GC_ReRegisterForFinalize)
265 ICALL(GC_4a, "RecordPressure", mono_gc_add_memory_pressure)
266 ICALL(GC_5, "SuppressFinalize", ves_icall_System_GC_SuppressFinalize)
267 ICALL(GC_6, "WaitForPendingFinalizers", ves_icall_System_GC_WaitForPendingFinalizers)
268 ICALL(GC_7, "get_MaxGeneration", mono_gc_max_generation)
269 ICALL(GC_9, "get_ephemeron_tombstone", ves_icall_System_GC_get_ephemeron_tombstone)
270 ICALL(GC_8, "register_ephemeron_array", ves_icall_System_GC_register_ephemeron_array)
271
272 ICALL_TYPE(CALDATA, "System.Globalization.CalendarData", CALDATA_1)
273 ICALL(CALDATA_1, "fill_calendar_data", ves_icall_System_Globalization_CalendarData_fill_calendar_data)
274
275 ICALL_TYPE(COMPINF, "System.Globalization.CompareInfo", COMPINF_1)
276 ICALL(COMPINF_1, "assign_sortkey(object,string,System.Globalization.CompareOptions)", ves_icall_System_Globalization_CompareInfo_assign_sortkey)
277 ICALL(COMPINF_2, "construct_compareinfo(string)", ves_icall_System_Globalization_CompareInfo_construct_compareinfo)
278 ICALL(COMPINF_3, "free_internal_collator()", ves_icall_System_Globalization_CompareInfo_free_internal_collator)
279 ICALL(COMPINF_4, "internal_compare(string,int,int,string,int,int,System.Globalization.CompareOptions)", ves_icall_System_Globalization_CompareInfo_internal_compare)
280 ICALL(COMPINF_5, "internal_index(string,int,int,char,System.Globalization.CompareOptions,bool)", ves_icall_System_Globalization_CompareInfo_internal_index_char)
281 ICALL(COMPINF_6, "internal_index(string,int,int,string,System.Globalization.CompareOptions,bool)", ves_icall_System_Globalization_CompareInfo_internal_index)
282
283 ICALL_TYPE(CULDATA, "System.Globalization.CultureData", CULDATA_1)
284 ICALL(CULDATA_1, "fill_culture_data", ves_icall_System_Globalization_CultureData_fill_culture_data)
285
286 ICALL_TYPE(CULINF, "System.Globalization.CultureInfo", CULINF_5)
287 ICALL(CULINF_5, "construct_internal_locale_from_lcid", ves_icall_System_Globalization_CultureInfo_construct_internal_locale_from_lcid)
288 ICALL(CULINF_6, "construct_internal_locale_from_name", ves_icall_System_Globalization_CultureInfo_construct_internal_locale_from_name)
289 ICALL(CULINF_8, "construct_number_format", ves_icall_System_Globalization_CultureInfo_construct_number_format)
290 ICALL(CULINF_7, "get_current_locale_name", ves_icall_System_Globalization_CultureInfo_get_current_locale_name)
291 ICALL(CULINF_9, "internal_get_cultures", ves_icall_System_Globalization_CultureInfo_internal_get_cultures)
292 //ICALL(CULINF_10, "internal_is_lcid_neutral", ves_icall_System_Globalization_CultureInfo_internal_is_lcid_neutral)
293
294 ICALL_TYPE(REGINF, "System.Globalization.RegionInfo", REGINF_1)
295 ICALL(REGINF_1, "construct_internal_region_from_lcid", ves_icall_System_Globalization_RegionInfo_construct_internal_region_from_lcid)
296 ICALL(REGINF_2, "construct_internal_region_from_name", ves_icall_System_Globalization_RegionInfo_construct_internal_region_from_name)
297
298 ICALL_TYPE(TXTINF, "System.Globalization.TextInfo", TXTINF_1)
299 ICALL(TXTINF_1, "GetDataTablePointersLite", ves_icall_System_Globalization_TextInfo_GetDataTablePointersLite)
300
301 #ifndef PLATFORM_NO_DRIVEINFO
302 ICALL_TYPE(IODRIVEINFO, "System.IO.DriveInfo", IODRIVEINFO_1)
303 ICALL(IODRIVEINFO_1, "GetDiskFreeSpaceInternal", ves_icall_System_IO_DriveInfo_GetDiskFreeSpace)
304 ICALL(IODRIVEINFO_2, "GetDriveFormat", ves_icall_System_IO_DriveInfo_GetDriveFormat)
305 ICALL(IODRIVEINFO_3, "GetDriveTypeInternal", ves_icall_System_IO_DriveInfo_GetDriveType)
306 #endif
307
308 ICALL_TYPE(FAMW, "System.IO.FAMWatcher", FAMW_1)
309 ICALL(FAMW_1, "InternalFAMNextEvent", ves_icall_System_IO_FAMW_InternalFAMNextEvent)
310
311 ICALL_TYPE(FILEW, "System.IO.FileSystemWatcher", FILEW_4)
312 ICALL(FILEW_4, "InternalSupportsFSW", ves_icall_System_IO_FSW_SupportsFSW)
313
314 ICALL_TYPE(INOW, "System.IO.InotifyWatcher", INOW_1)
315 ICALL(INOW_1, "AddWatch", ves_icall_System_IO_InotifyWatcher_AddWatch)
316 ICALL(INOW_2, "GetInotifyInstance", ves_icall_System_IO_InotifyWatcher_GetInotifyInstance)
317 ICALL(INOW_3, "RemoveWatch", ves_icall_System_IO_InotifyWatcher_RemoveWatch)
318
319 ICALL_TYPE(MMAPIMPL, "System.IO.MemoryMappedFiles.MemoryMapImpl", MMAPIMPL_1)
320 ICALL(MMAPIMPL_1, "CloseMapping", mono_mmap_close)
321 ICALL(MMAPIMPL_2, "ConfigureHandleInheritability", mono_mmap_configure_inheritability)
322 ICALL(MMAPIMPL_3, "Flush", mono_mmap_flush)
323 ICALL(MMAPIMPL_4, "MapInternal", mono_mmap_map)
324 ICALL(MMAPIMPL_5, "OpenFileInternal", mono_mmap_open_file)
325 ICALL(MMAPIMPL_6, "OpenHandleInternal", mono_mmap_open_handle)
326 ICALL(MMAPIMPL_7, "Unmap", mono_mmap_unmap)
327
328 ICALL_TYPE(MONOIO, "System.IO.MonoIO", MONOIO_1)
329 ICALL(MONOIO_1, "Close(intptr,System.IO.MonoIOError&)", ves_icall_System_IO_MonoIO_Close)
330 #ifndef PLATFORM_RO_FS
331 ICALL(MONOIO_2, "CopyFile(string,string,bool,System.IO.MonoIOError&)", ves_icall_System_IO_MonoIO_CopyFile)
332 ICALL(MONOIO_3, "CreateDirectory(string,System.IO.MonoIOError&)", ves_icall_System_IO_MonoIO_CreateDirectory)
333 ICALL(MONOIO_4, "CreatePipe(intptr&,intptr&)", ves_icall_System_IO_MonoIO_CreatePipe)
334 ICALL(MONOIO_5, "DeleteFile(string,System.IO.MonoIOError&)", ves_icall_System_IO_MonoIO_DeleteFile)
335 #endif /* !PLATFORM_RO_FS */
336 ICALL(MONOIO_34, "DuplicateHandle", ves_icall_System_IO_MonoIO_DuplicateHandle)
337 ICALL(MONOIO_37, "FindClose", ves_icall_System_IO_MonoIO_FindClose)
338 ICALL(MONOIO_35, "FindFirst", ves_icall_System_IO_MonoIO_FindFirst)
339 ICALL(MONOIO_36, "FindNext", ves_icall_System_IO_MonoIO_FindNext)
340 ICALL(MONOIO_6, "Flush(intptr,System.IO.MonoIOError&)", ves_icall_System_IO_MonoIO_Flush)
341 ICALL(MONOIO_7, "GetCurrentDirectory(System.IO.MonoIOError&)", ves_icall_System_IO_MonoIO_GetCurrentDirectory)
342 ICALL(MONOIO_8, "GetFileAttributes(string,System.IO.MonoIOError&)", ves_icall_System_IO_MonoIO_GetFileAttributes)
343 ICALL(MONOIO_9, "GetFileStat(string,System.IO.MonoIOStat&,System.IO.MonoIOError&)", ves_icall_System_IO_MonoIO_GetFileStat)
344 ICALL(MONOIO_10, "GetFileSystemEntries", ves_icall_System_IO_MonoIO_GetFileSystemEntries)
345 ICALL(MONOIO_11, "GetFileType(intptr,System.IO.MonoIOError&)", ves_icall_System_IO_MonoIO_GetFileType)
346 ICALL(MONOIO_12, "GetLength(intptr,System.IO.MonoIOError&)", ves_icall_System_IO_MonoIO_GetLength)
347 #ifndef PLATFORM_RO_FS
348 ICALL(MONOIO_13, "GetTempPath(string&)", ves_icall_System_IO_MonoIO_GetTempPath)
349 ICALL(MONOIO_14, "Lock(intptr,long,long,System.IO.MonoIOError&)", ves_icall_System_IO_MonoIO_Lock)
350 ICALL(MONOIO_15, "MoveFile(string,string,System.IO.MonoIOError&)", ves_icall_System_IO_MonoIO_MoveFile)
351 #endif /* !PLATFORM_RO_FS */
352 ICALL(MONOIO_16, "Open(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,System.IO.FileOptions,System.IO.MonoIOError&)", ves_icall_System_IO_MonoIO_Open)
353 ICALL(MONOIO_17, "Read(intptr,byte[],int,int,System.IO.MonoIOError&)", ves_icall_System_IO_MonoIO_Read)
354 #ifndef PLATFORM_RO_FS
355 ICALL(MONOIO_18, "RemoveDirectory(string,System.IO.MonoIOError&)", ves_icall_System_IO_MonoIO_RemoveDirectory)
356 ICALL(MONOIO_18M, "ReplaceFile(string,string,string,bool,System.IO.MonoIOError&)", ves_icall_System_IO_MonoIO_ReplaceFile)
357 #endif /* !PLATFORM_RO_FS */
358 ICALL(MONOIO_19, "Seek(intptr,long,System.IO.SeekOrigin,System.IO.MonoIOError&)", ves_icall_System_IO_MonoIO_Seek)
359 ICALL(MONOIO_20, "SetCurrentDirectory(string,System.IO.MonoIOError&)", ves_icall_System_IO_MonoIO_SetCurrentDirectory)
360 ICALL(MONOIO_21, "SetFileAttributes(string,System.IO.FileAttributes,System.IO.MonoIOError&)", ves_icall_System_IO_MonoIO_SetFileAttributes)
361 ICALL(MONOIO_22, "SetFileTime(intptr,long,long,long,System.IO.MonoIOError&)", ves_icall_System_IO_MonoIO_SetFileTime)
362 ICALL(MONOIO_23, "SetLength(intptr,long,System.IO.MonoIOError&)", ves_icall_System_IO_MonoIO_SetLength)
363 #ifndef PLATFORM_RO_FS
364 ICALL(MONOIO_24, "Unlock(intptr,long,long,System.IO.MonoIOError&)", ves_icall_System_IO_MonoIO_Unlock)
365 #endif
366 ICALL(MONOIO_25, "Write(intptr,byte[],int,int,System.IO.MonoIOError&)", ves_icall_System_IO_MonoIO_Write)
367 ICALL(MONOIO_26, "get_AltDirectorySeparatorChar", ves_icall_System_IO_MonoIO_get_AltDirectorySeparatorChar)
368 ICALL(MONOIO_27, "get_ConsoleError", ves_icall_System_IO_MonoIO_get_ConsoleError)
369 ICALL(MONOIO_28, "get_ConsoleInput", ves_icall_System_IO_MonoIO_get_ConsoleInput)
370 ICALL(MONOIO_29, "get_ConsoleOutput", ves_icall_System_IO_MonoIO_get_ConsoleOutput)
371 ICALL(MONOIO_30, "get_DirectorySeparatorChar", ves_icall_System_IO_MonoIO_get_DirectorySeparatorChar)
372 ICALL(MONOIO_31, "get_InvalidPathChars", ves_icall_System_IO_MonoIO_get_InvalidPathChars)
373 ICALL(MONOIO_32, "get_PathSeparator", ves_icall_System_IO_MonoIO_get_PathSeparator)
374 ICALL(MONOIO_33, "get_VolumeSeparatorChar", ves_icall_System_IO_MonoIO_get_VolumeSeparatorChar)
375
376 ICALL_TYPE(IOPATH, "System.IO.Path", IOPATH_1)
377 ICALL(IOPATH_1, "get_temp_path", ves_icall_System_IO_get_temp_path)
378
379 ICALL_TYPE(MATH, "System.Math", MATH_1)
380 ICALL(MATH_1, "Acos", ves_icall_System_Math_Acos)
381 ICALL(MATH_2, "Asin", ves_icall_System_Math_Asin)
382 ICALL(MATH_3, "Atan", ves_icall_System_Math_Atan)
383 ICALL(MATH_4, "Atan2", ves_icall_System_Math_Atan2)
384 ICALL(MATH_5, "Cos", ves_icall_System_Math_Cos)
385 ICALL(MATH_6, "Cosh", ves_icall_System_Math_Cosh)
386 ICALL(MATH_7, "Exp", ves_icall_System_Math_Exp)
387 ICALL(MATH_8, "Floor", ves_icall_System_Math_Floor)
388 ICALL(MATH_9, "Log", ves_icall_System_Math_Log)
389 ICALL(MATH_10, "Log10", ves_icall_System_Math_Log10)
390 ICALL(MATH_11, "Pow", ves_icall_System_Math_Pow)
391 ICALL(MATH_12, "Round", ves_icall_System_Math_Round)
392 ICALL(MATH_13, "Round2", ves_icall_System_Math_Round2)
393 ICALL(MATH_14, "Sin", ves_icall_System_Math_Sin)
394 ICALL(MATH_15, "Sinh", ves_icall_System_Math_Sinh)
395 ICALL(MATH_16, "Sqrt", ves_icall_System_Math_Sqrt)
396 ICALL(MATH_17, "Tan", ves_icall_System_Math_Tan)
397 ICALL(MATH_18, "Tanh", ves_icall_System_Math_Tanh)
398
399 ICALL_TYPE(MCATTR, "System.MonoCustomAttrs", MCATTR_1)
400 ICALL(MCATTR_1, "GetCustomAttributesDataInternal", mono_reflection_get_custom_attrs_data)
401 ICALL(MCATTR_2, "GetCustomAttributesInternal", custom_attrs_get_by_type)
402 ICALL(MCATTR_3, "IsDefinedInternal", custom_attrs_defined_internal)
403
404 ICALL_TYPE(MTYPE, "System.MonoType", MTYPE_1)
405 ICALL(MTYPE_1, "GetCorrespondingInflatedConstructor", ves_icall_MonoType_GetCorrespondingInflatedMethod)
406 ICALL(MTYPE_2, "GetCorrespondingInflatedMethod", ves_icall_MonoType_GetCorrespondingInflatedMethod)
407 ICALL(MTYPE_3, "type_from_obj", mono_type_type_from_obj)
408
409 #ifndef DISABLE_SOCKETS
410 ICALL_TYPE(NDNS, "System.Net.Dns", NDNS_1)
411 ICALL(NDNS_1, "GetHostByAddr_internal(string,string&,string[]&,string[]&)", ves_icall_System_Net_Dns_GetHostByAddr_internal)
412 ICALL(NDNS_2, "GetHostByName_internal(string,string&,string[]&,string[]&)", ves_icall_System_Net_Dns_GetHostByName_internal)
413 ICALL(NDNS_3, "GetHostName_internal(string&)", ves_icall_System_Net_Dns_GetHostName_internal)
414
415 #if defined(PLATFORM_MACOSX) || defined(PLATFORM_BSD)
416 ICALL_TYPE(MAC_IFACE_PROPS, "System.Net.NetworkInformation.MacOsIPInterfaceProperties", MAC_IFACE_PROPS_1)
417 ICALL(MAC_IFACE_PROPS_1, "ParseRouteInfo_internal", ves_icall_System_Net_NetworkInformation_MacOsIPInterfaceProperties_ParseRouteInfo_internal)
418 #endif
419
420 ICALL_TYPE(SOCK, "System.Net.Sockets.Socket", SOCK_1)
421 ICALL(SOCK_1, "Accept_internal(intptr,int&,bool)", ves_icall_System_Net_Sockets_Socket_Accept_internal)
422 ICALL(SOCK_2, "Available_internal(intptr,int&)", ves_icall_System_Net_Sockets_Socket_Available_internal)
423 ICALL(SOCK_3, "Bind_internal(intptr,System.Net.SocketAddress,int&)", ves_icall_System_Net_Sockets_Socket_Bind_internal)
424 ICALL(SOCK_4, "Blocking_internal(intptr,bool,int&)", ves_icall_System_Net_Sockets_Socket_Blocking_internal)
425 ICALL(SOCK_5, "Close_internal(intptr,int&)", ves_icall_System_Net_Sockets_Socket_Close_internal)
426 ICALL(SOCK_6, "Connect_internal(intptr,System.Net.SocketAddress,int&)", ves_icall_System_Net_Sockets_Socket_Connect_internal)
427 ICALL (SOCK_6a, "Disconnect_internal(intptr,bool,int&)", ves_icall_System_Net_Sockets_Socket_Disconnect_internal)
428 ICALL(SOCK_7, "GetSocketOption_arr_internal(intptr,System.Net.Sockets.SocketOptionLevel,System.Net.Sockets.SocketOptionName,byte[]&,int&)", ves_icall_System_Net_Sockets_Socket_GetSocketOption_arr_internal)
429 ICALL(SOCK_8, "GetSocketOption_obj_internal(intptr,System.Net.Sockets.SocketOptionLevel,System.Net.Sockets.SocketOptionName,object&,int&)", ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal)
430 ICALL(SOCK_9, "Listen_internal(intptr,int,int&)", ves_icall_System_Net_Sockets_Socket_Listen_internal)
431 ICALL(SOCK_10, "LocalEndPoint_internal(intptr,int,int&)", ves_icall_System_Net_Sockets_Socket_LocalEndPoint_internal)
432 ICALL(SOCK_11, "Poll_internal", ves_icall_System_Net_Sockets_Socket_Poll_internal)
433 ICALL(SOCK_11a, "Receive_internal(intptr,System.Net.Sockets.Socket/WSABUF[],System.Net.Sockets.SocketFlags,int&)", ves_icall_System_Net_Sockets_Socket_Receive_array_internal)
434 ICALL(SOCK_12, "Receive_internal(intptr,byte[],int,int,System.Net.Sockets.SocketFlags,int&)", ves_icall_System_Net_Sockets_Socket_Receive_internal)
435 ICALL(SOCK_13, "RecvFrom_internal(intptr,byte[],int,int,System.Net.Sockets.SocketFlags,System.Net.SocketAddress&,int&)", ves_icall_System_Net_Sockets_Socket_RecvFrom_internal)
436 ICALL(SOCK_14, "RemoteEndPoint_internal(intptr,int,int&)", ves_icall_System_Net_Sockets_Socket_RemoteEndPoint_internal)
437 ICALL(SOCK_15, "Select_internal(System.Net.Sockets.Socket[]&,int,int&)", ves_icall_System_Net_Sockets_Socket_Select_internal)
438 ICALL(SOCK_15a, "SendFile(intptr,string,byte[],byte[],System.Net.Sockets.TransmitFileOptions)", ves_icall_System_Net_Sockets_Socket_SendFile)
439 ICALL(SOCK_16, "SendTo_internal(intptr,byte[],int,int,System.Net.Sockets.SocketFlags,System.Net.SocketAddress,int&)", ves_icall_System_Net_Sockets_Socket_SendTo_internal)
440 ICALL(SOCK_16a, "Send_internal(intptr,System.Net.Sockets.Socket/WSABUF[],System.Net.Sockets.SocketFlags,int&)", ves_icall_System_Net_Sockets_Socket_Send_array_internal)
441 ICALL(SOCK_17, "Send_internal(intptr,byte[],int,int,System.Net.Sockets.SocketFlags,int&)", ves_icall_System_Net_Sockets_Socket_Send_internal)
442 ICALL(SOCK_18, "SetSocketOption_internal(intptr,System.Net.Sockets.SocketOptionLevel,System.Net.Sockets.SocketOptionName,object,byte[],int,int&)", ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal)
443 ICALL(SOCK_19, "Shutdown_internal(intptr,System.Net.Sockets.SocketShutdown,int&)", ves_icall_System_Net_Sockets_Socket_Shutdown_internal)
444 ICALL(SOCK_20, "Socket_internal(System.Net.Sockets.AddressFamily,System.Net.Sockets.SocketType,System.Net.Sockets.ProtocolType,int&)", ves_icall_System_Net_Sockets_Socket_Socket_internal)
445 ICALL(SOCK_21, "WSAIoctl(intptr,int,byte[],byte[],int&)", ves_icall_System_Net_Sockets_Socket_WSAIoctl)
446 ICALL(SOCK_21a, "cancel_blocking_socket_operation", icall_cancel_blocking_socket_operation)
447 ICALL(SOCK_22, "socket_pool_queue", icall_append_io_job)
448
449 ICALL_TYPE(SOCKEX, "System.Net.Sockets.SocketException", SOCKEX_1)
450 ICALL(SOCKEX_1, "WSAGetLastError_internal", ves_icall_System_Net_Sockets_SocketException_WSAGetLastError_internal)
451 #endif /* !DISABLE_SOCKETS */
452
453 ICALL_TYPE(NUMBER, "System.Number", NUMBER_1)
454 ICALL(NUMBER_1, "NumberBufferToDecimal", mono_decimal_from_number)
455 ICALL_TYPE(NUMBER_FORMATTER, "System.NumberFormatter", NUMBER_FORMATTER_1)
456 ICALL(NUMBER_FORMATTER_1, "GetFormatterTables", ves_icall_System_NumberFormatter_GetFormatterTables)
457
458 ICALL_TYPE(OBJ, "System.Object", OBJ_1)
459 ICALL(OBJ_1, "GetType", ves_icall_System_Object_GetType)
460 ICALL(OBJ_2, "InternalGetHashCode", mono_object_hash)
461 ICALL(OBJ_3, "MemberwiseClone", ves_icall_System_Object_MemberwiseClone)
462
463 ICALL_TYPE(ASSEM, "System.Reflection.Assembly", ASSEM_1)
464 ICALL(ASSEM_1, "FillName", ves_icall_System_Reflection_Assembly_FillName)
465 ICALL(ASSEM_2, "GetCallingAssembly", ves_icall_System_Reflection_Assembly_GetCallingAssembly)
466 ICALL(ASSEM_3, "GetEntryAssembly", ves_icall_System_Reflection_Assembly_GetEntryAssembly)
467 ICALL(ASSEM_4, "GetExecutingAssembly", ves_icall_System_Reflection_Assembly_GetExecutingAssembly)
468 ICALL(ASSEM_5, "GetFilesInternal", ves_icall_System_Reflection_Assembly_GetFilesInternal)
469 ICALL(ASSEM_6, "GetManifestModuleInternal", ves_icall_System_Reflection_Assembly_GetManifestModuleInternal)
470 ICALL(ASSEM_7, "GetManifestResourceInfoInternal", ves_icall_System_Reflection_Assembly_GetManifestResourceInfoInternal)
471 ICALL(ASSEM_8, "GetManifestResourceInternal", ves_icall_System_Reflection_Assembly_GetManifestResourceInternal)
472 ICALL(ASSEM_9, "GetManifestResourceNames", ves_icall_System_Reflection_Assembly_GetManifestResourceNames)
473 ICALL(ASSEM_10, "GetModulesInternal", ves_icall_System_Reflection_Assembly_GetModulesInternal)
474 //ICALL(ASSEM_11, "GetNamespaces", ves_icall_System_Reflection_Assembly_GetNamespaces)
475 ICALL(ASSEM_12, "GetReferencedAssemblies", ves_icall_System_Reflection_Assembly_GetReferencedAssemblies)
476 ICALL(ASSEM_13, "GetTypes", ves_icall_System_Reflection_Assembly_GetTypes)
477 ICALL(ASSEM_14, "InternalGetAssemblyName", ves_icall_System_Reflection_Assembly_InternalGetAssemblyName)
478 ICALL(ASSEM_15, "InternalGetType", ves_icall_System_Reflection_Assembly_InternalGetType)
479 ICALL(ASSEM_16, "InternalImageRuntimeVersion", ves_icall_System_Reflection_Assembly_InternalImageRuntimeVersion)
480 ICALL(ASSEM_17, "LoadFrom", ves_icall_System_Reflection_Assembly_LoadFrom)
481 ICALL(ASSEM_18, "LoadPermissions", ves_icall_System_Reflection_Assembly_LoadPermissions)
482
483         /* normal icalls again */
484 ICALL(ASSEM_20, "get_EntryPoint", ves_icall_System_Reflection_Assembly_get_EntryPoint)
485 ICALL(ASSEM_21, "get_ReflectionOnly", ves_icall_System_Reflection_Assembly_get_ReflectionOnly)
486 ICALL(ASSEM_22, "get_code_base", ves_icall_System_Reflection_Assembly_get_code_base)
487 ICALL(ASSEM_23, "get_fullname", ves_icall_System_Reflection_Assembly_get_fullName)
488 ICALL(ASSEM_24, "get_global_assembly_cache", ves_icall_System_Reflection_Assembly_get_global_assembly_cache)
489 ICALL(ASSEM_25, "get_location", ves_icall_System_Reflection_Assembly_get_location)
490 ICALL(ASSEM_26, "load_with_partial_name", ves_icall_System_Reflection_Assembly_load_with_partial_name)
491
492 ICALL_TYPE(ASSEMN, "System.Reflection.AssemblyName", ASSEMN_1)
493 ICALL(ASSEMN_1, "ParseName", ves_icall_System_Reflection_AssemblyName_ParseName)
494 ICALL(ASSEMN_2, "get_public_token", mono_digest_get_public_token)
495
496 ICALL_TYPE(CATTR_DATA, "System.Reflection.CustomAttributeData", CATTR_DATA_1)
497 ICALL(CATTR_DATA_1, "ResolveArgumentsInternal", mono_reflection_resolve_custom_attribute_data)
498
499 ICALL_TYPE(ASSEMB, "System.Reflection.Emit.AssemblyBuilder", ASSEMB_1)
500 ICALL(ASSEMB_1, "InternalAddModule", mono_image_load_module_dynamic)
501 ICALL(ASSEMB_2, "basic_init", mono_image_basic_init)
502
503 ICALL_TYPE(CATTRB, "System.Reflection.Emit.CustomAttributeBuilder", CATTRB_1)
504 ICALL(CATTRB_1, "GetBlob", mono_reflection_get_custom_attrs_blob)
505
506 #ifndef DISABLE_REFLECTION_EMIT
507 ICALL_TYPE(DERIVEDTYPE, "System.Reflection.Emit.DerivedType", DERIVEDTYPE_1)
508 ICALL(DERIVEDTYPE_1, "create_unmanaged_type", mono_reflection_create_unmanaged_type)
509 #endif
510
511 ICALL_TYPE(DYNM, "System.Reflection.Emit.DynamicMethod", DYNM_1)
512 ICALL(DYNM_1, "create_dynamic_method", mono_reflection_create_dynamic_method)
513
514 ICALL_TYPE(ENUMB, "System.Reflection.Emit.EnumBuilder", ENUMB_1)
515 ICALL(ENUMB_1, "setup_enum_type", ves_icall_EnumBuilder_setup_enum_type)
516
517 ICALL_TYPE(GPARB, "System.Reflection.Emit.GenericTypeParameterBuilder", GPARB_1)
518 ICALL(GPARB_1, "initialize", mono_reflection_initialize_generic_parameter)
519
520 ICALL_TYPE(METHODB, "System.Reflection.Emit.MethodBuilder", METHODB_1)
521 ICALL(METHODB_1, "MakeGenericMethod", mono_reflection_bind_generic_method_parameters)
522
523 ICALL_TYPE(MODULEB, "System.Reflection.Emit.ModuleBuilder", MODULEB_8)
524 ICALL(MODULEB_8, "RegisterToken", ves_icall_ModuleBuilder_RegisterToken)
525 ICALL(MODULEB_1, "WriteToFile", ves_icall_ModuleBuilder_WriteToFile)
526 ICALL(MODULEB_2, "basic_init", mono_image_module_basic_init)
527 ICALL(MODULEB_3, "build_metadata", ves_icall_ModuleBuilder_build_metadata)
528 ICALL(MODULEB_4, "create_modified_type", ves_icall_ModuleBuilder_create_modified_type)
529 ICALL(MODULEB_5, "getMethodToken", ves_icall_ModuleBuilder_getMethodToken)
530 ICALL(MODULEB_6, "getToken", ves_icall_ModuleBuilder_getToken)
531 ICALL(MODULEB_7, "getUSIndex", mono_image_insert_string)
532 ICALL(MODULEB_9, "set_wrappers_type", mono_image_set_wrappers_type)
533
534 ICALL_TYPE(SIGH, "System.Reflection.Emit.SignatureHelper", SIGH_1)
535 ICALL(SIGH_1, "get_signature_field", mono_reflection_sighelper_get_signature_field)
536 ICALL(SIGH_2, "get_signature_local", mono_reflection_sighelper_get_signature_local)
537
538 ICALL_TYPE(TYPEB, "System.Reflection.Emit.TypeBuilder", TYPEB_1)
539 ICALL(TYPEB_1, "create_generic_class", mono_reflection_create_generic_class)
540 ICALL(TYPEB_2, "create_internal_class", mono_reflection_create_internal_class)
541 ICALL(TYPEB_3, "create_runtime_class", mono_reflection_create_runtime_class)
542 ICALL(TYPEB_4, "get_IsGenericParameter", ves_icall_TypeBuilder_get_IsGenericParameter)
543 ICALL(TYPEB_5, "get_event_info", mono_reflection_event_builder_get_event_info)
544 ICALL(TYPEB_6, "setup_generic_class", mono_reflection_setup_generic_class)
545 ICALL(TYPEB_7, "setup_internal_class", mono_reflection_setup_internal_class)
546
547 ICALL_TYPE(FIELDI, "System.Reflection.FieldInfo", FILEDI_1)
548 ICALL(FILEDI_1, "GetTypeModifiers", ves_icall_System_Reflection_FieldInfo_GetTypeModifiers)
549 ICALL(FILEDI_2, "get_marshal_info", ves_icall_System_Reflection_FieldInfo_get_marshal_info)
550 ICALL(FILEDI_3, "internal_from_handle_type", ves_icall_System_Reflection_FieldInfo_internal_from_handle_type)
551
552 ICALL_TYPE(MEMBERI, "System.Reflection.MemberInfo", MEMBERI_1)
553 ICALL(MEMBERI_1, "get_MetadataToken", mono_reflection_get_token)
554
555 ICALL_TYPE(MBASE, "System.Reflection.MethodBase", MBASE_1)
556 ICALL(MBASE_1, "GetCurrentMethod", ves_icall_GetCurrentMethod)
557 ICALL(MBASE_2, "GetMethodBodyInternal", ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal)
558 ICALL(MBASE_3, "GetMethodFromHandleInternal", ves_icall_System_Reflection_MethodBase_GetMethodFromHandleInternal)
559 ICALL(MBASE_4, "GetMethodFromHandleInternalType", ves_icall_System_Reflection_MethodBase_GetMethodFromHandleInternalType)
560
561 ICALL_TYPE(MODULE, "System.Reflection.Module", MODULE_1)
562 ICALL(MODULE_1, "Close", ves_icall_System_Reflection_Module_Close)
563 ICALL(MODULE_2, "GetGlobalType", ves_icall_System_Reflection_Module_GetGlobalType)
564 ICALL(MODULE_3, "GetGuidInternal", ves_icall_System_Reflection_Module_GetGuidInternal)
565 ICALL(MODULE_14, "GetHINSTANCE", ves_icall_System_Reflection_Module_GetHINSTANCE)
566 ICALL(MODULE_4, "GetMDStreamVersion", ves_icall_System_Reflection_Module_GetMDStreamVersion)
567 ICALL(MODULE_5, "GetPEKind", ves_icall_System_Reflection_Module_GetPEKind)
568 ICALL(MODULE_6, "InternalGetTypes", ves_icall_System_Reflection_Module_InternalGetTypes)
569 ICALL(MODULE_7, "ResolveFieldToken", ves_icall_System_Reflection_Module_ResolveFieldToken)
570 ICALL(MODULE_8, "ResolveMemberToken", ves_icall_System_Reflection_Module_ResolveMemberToken)
571 ICALL(MODULE_9, "ResolveMethodToken", ves_icall_System_Reflection_Module_ResolveMethodToken)
572 ICALL(MODULE_10, "ResolveSignature", ves_icall_System_Reflection_Module_ResolveSignature)
573 ICALL(MODULE_11, "ResolveStringToken", ves_icall_System_Reflection_Module_ResolveStringToken)
574 ICALL(MODULE_12, "ResolveTypeToken", ves_icall_System_Reflection_Module_ResolveTypeToken)
575 ICALL(MODULE_13, "get_MetadataToken", mono_reflection_get_token)
576
577 ICALL_TYPE(MCMETH, "System.Reflection.MonoCMethod", MCMETH_1)
578 ICALL(MCMETH_1, "GetGenericMethodDefinition_impl", ves_icall_MonoMethod_GetGenericMethodDefinition)
579 ICALL(MCMETH_2, "InternalInvoke", ves_icall_InternalInvoke)
580
581 ICALL_TYPE(MEVIN, "System.Reflection.MonoEventInfo", MEVIN_1)
582 ICALL(MEVIN_1, "get_event_info", ves_icall_get_event_info)
583
584 ICALL_TYPE(MFIELD, "System.Reflection.MonoField", MFIELD_1)
585 ICALL(MFIELD_1, "GetFieldOffset", ves_icall_MonoField_GetFieldOffset)
586 ICALL(MFIELD_2, "GetParentType", ves_icall_MonoField_GetParentType)
587 ICALL(MFIELD_5, "GetRawConstantValue", ves_icall_MonoField_GetRawConstantValue)
588 ICALL(MFIELD_3, "GetValueInternal", ves_icall_MonoField_GetValueInternal)
589 ICALL(MFIELD_6, "ResolveType", ves_icall_MonoField_ResolveType)
590 ICALL(MFIELD_4, "SetValueInternal", ves_icall_MonoField_SetValueInternal)
591 ICALL(MFIELD_7, "get_core_clr_security_level", ves_icall_MonoField_get_core_clr_security_level)
592
593 ICALL_TYPE(MGENCM, "System.Reflection.MonoGenericCMethod", MGENCM_1)
594 ICALL(MGENCM_1, "get_ReflectedType", ves_icall_MonoGenericMethod_get_ReflectedType)
595
596 ICALL_TYPE(MGENCL, "System.Reflection.MonoGenericClass", MGENCL_5)
597 ICALL(MGENCL_5, "initialize", mono_reflection_generic_class_initialize)
598 ICALL(MGENCL_6, "register_with_runtime", mono_reflection_register_with_runtime)
599
600 /* note this is the same as above: unify */
601 ICALL_TYPE(MGENM, "System.Reflection.MonoGenericMethod", MGENM_1)
602 ICALL(MGENM_1, "get_ReflectedType", ves_icall_MonoGenericMethod_get_ReflectedType)
603
604 ICALL_TYPE(MMETH, "System.Reflection.MonoMethod", MMETH_1)
605 ICALL(MMETH_1, "GetDllImportAttribute", ves_icall_MonoMethod_GetDllImportAttribute)
606 ICALL(MMETH_2, "GetGenericArguments", ves_icall_MonoMethod_GetGenericArguments)
607 ICALL(MMETH_3, "GetGenericMethodDefinition_impl", ves_icall_MonoMethod_GetGenericMethodDefinition)
608 ICALL(MMETH_4, "InternalInvoke", ves_icall_InternalInvoke)
609 ICALL(MMETH_5, "MakeGenericMethod_impl", mono_reflection_bind_generic_method_parameters)
610 ICALL(MMETH_6, "get_IsGenericMethod", ves_icall_MonoMethod_get_IsGenericMethod)
611 ICALL(MMETH_7, "get_IsGenericMethodDefinition", ves_icall_MonoMethod_get_IsGenericMethodDefinition)
612 ICALL(MMETH_8, "get_base_method", ves_icall_MonoMethod_get_base_method)
613 ICALL(MMETH_10, "get_core_clr_security_level", ves_icall_MonoMethod_get_core_clr_security_level)
614 ICALL(MMETH_9, "get_name", ves_icall_MonoMethod_get_name)
615
616 ICALL_TYPE(MMETHI, "System.Reflection.MonoMethodInfo", MMETHI_4)
617 ICALL(MMETHI_4, "get_method_attributes", vell_icall_get_method_attributes)
618 ICALL(MMETHI_1, "get_method_info", ves_icall_get_method_info)
619 ICALL(MMETHI_2, "get_parameter_info", ves_icall_get_parameter_info)
620 ICALL(MMETHI_3, "get_retval_marshal", ves_icall_System_MonoMethodInfo_get_retval_marshal)
621
622 ICALL_TYPE(MPROPI, "System.Reflection.MonoPropertyInfo", MPROPI_1)
623 ICALL(MPROPI_1, "GetTypeModifiers", property_info_get_type_modifiers)
624 ICALL(MPROPI_3, "get_default_value", property_info_get_default_value)
625 ICALL(MPROPI_2, "get_property_info", ves_icall_get_property_info)
626
627 ICALL_TYPE(PARAMI, "System.Reflection.ParameterInfo", PARAMI_1)
628 ICALL(PARAMI_1, "GetMetadataToken", mono_reflection_get_token)
629 ICALL(PARAMI_2, "GetTypeModifiers", param_info_get_type_modifiers)
630
631 ICALL_TYPE(RTFIELD, "System.Reflection.RtFieldInfo", RTFIELD_1)
632 ICALL(RTFIELD_1, "UnsafeGetValue", ves_icall_MonoField_GetValueInternal)
633
634 ICALL_TYPE(RUNH, "System.Runtime.CompilerServices.RuntimeHelpers", RUNH_1)
635 ICALL(RUNH_1, "GetObjectValue", ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_GetObjectValue)
636          /* REMOVEME: no longer needed, just so we dont break things when not needed */
637 ICALL(RUNH_2, "GetOffsetToStringData", ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_GetOffsetToStringData)
638 ICALL(RUNH_3, "InitializeArray", ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_InitializeArray)
639 ICALL(RUNH_4, "RunClassConstructor", ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor)
640 ICALL(RUNH_5, "RunModuleConstructor", ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunModuleConstructor)
641 ICALL(RUNH_5h, "SufficientExecutionStack", ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_SufficientExecutionStack)
642 ICALL(RUNH_6, "get_OffsetToStringData", ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_GetOffsetToStringData)
643
644 ICALL_TYPE(GCH, "System.Runtime.InteropServices.GCHandle", GCH_1)
645 ICALL(GCH_1, "CheckCurrentDomain", GCHandle_CheckCurrentDomain)
646 ICALL(GCH_2, "FreeHandle", ves_icall_System_GCHandle_FreeHandle)
647 ICALL(GCH_3, "GetAddrOfPinnedObject", ves_icall_System_GCHandle_GetAddrOfPinnedObject)
648 ICALL(GCH_4, "GetTarget", ves_icall_System_GCHandle_GetTarget)
649 ICALL(GCH_5, "GetTargetHandle", ves_icall_System_GCHandle_GetTargetHandle)
650
651 #ifndef DISABLE_COM
652 ICALL_TYPE(MARSHAL, "System.Runtime.InteropServices.Marshal", MARSHAL_1)
653 ICALL(MARSHAL_1, "AddRefInternal", ves_icall_System_Runtime_InteropServices_Marshal_AddRefInternal)
654 #else
655 ICALL_TYPE(MARSHAL, "System.Runtime.InteropServices.Marshal", MARSHAL_2)
656 #endif
657 ICALL(MARSHAL_2, "AllocCoTaskMem", ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem)
658 ICALL(MARSHAL_3, "AllocHGlobal", ves_icall_System_Runtime_InteropServices_Marshal_AllocHGlobal)
659 ICALL(MARSHAL_4, "DestroyStructure", ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure)
660 ICALL(MARSHAL_5, "FreeBSTR", ves_icall_System_Runtime_InteropServices_Marshal_FreeBSTR)
661 ICALL(MARSHAL_6, "FreeCoTaskMem", ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem)
662 ICALL(MARSHAL_7, "FreeHGlobal", ves_icall_System_Runtime_InteropServices_Marshal_FreeHGlobal)
663 #ifndef DISABLE_COM
664 ICALL(MARSHAL_44, "GetCCW", ves_icall_System_Runtime_InteropServices_Marshal_GetCCW)
665 ICALL(MARSHAL_8, "GetComSlotForMethodInfoInternal", ves_icall_System_Runtime_InteropServices_Marshal_GetComSlotForMethodInfoInternal)
666 #endif
667 ICALL(MARSHAL_9, "GetDelegateForFunctionPointerInternal", ves_icall_System_Runtime_InteropServices_Marshal_GetDelegateForFunctionPointerInternal)
668 ICALL(MARSHAL_10, "GetFunctionPointerForDelegateInternal", mono_delegate_to_ftnptr)
669 #ifndef DISABLE_COM
670 ICALL(MARSHAL_45, "GetIDispatchForObjectInternal", ves_icall_System_Runtime_InteropServices_Marshal_GetIDispatchForObjectInternal)
671 ICALL(MARSHAL_46, "GetIUnknownForObjectInternal", ves_icall_System_Runtime_InteropServices_Marshal_GetIUnknownForObjectInternal)
672 #endif
673 ICALL(MARSHAL_11, "GetLastWin32Error", ves_icall_System_Runtime_InteropServices_Marshal_GetLastWin32Error)
674 #ifndef DISABLE_COM
675 ICALL(MARSHAL_47, "GetObjectForCCW", ves_icall_System_Runtime_InteropServices_Marshal_GetObjectForCCW)
676 ICALL(MARSHAL_48, "IsComObject", ves_icall_System_Runtime_InteropServices_Marshal_IsComObject)
677 #endif
678 ICALL(MARSHAL_12, "OffsetOf", ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf)
679 ICALL(MARSHAL_13, "Prelink", ves_icall_System_Runtime_InteropServices_Marshal_Prelink)
680 ICALL(MARSHAL_14, "PrelinkAll", ves_icall_System_Runtime_InteropServices_Marshal_PrelinkAll)
681 ICALL(MARSHAL_15, "PtrToStringAnsi(intptr)", ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi)
682 ICALL(MARSHAL_16, "PtrToStringAnsi(intptr,int)", ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len)
683 #ifndef DISABLE_COM
684 ICALL(MARSHAL_17, "PtrToStringBSTR", ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringBSTR)
685 #endif
686 ICALL(MARSHAL_18, "PtrToStringUni(intptr)", ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni)
687 ICALL(MARSHAL_19, "PtrToStringUni(intptr,int)", ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni_len)
688 ICALL(MARSHAL_20, "PtrToStructure(intptr,System.Type)", ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type)
689 ICALL(MARSHAL_21, "PtrToStructure(intptr,object)", ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure)
690 #ifndef DISABLE_COM
691 ICALL(MARSHAL_22, "QueryInterfaceInternal", ves_icall_System_Runtime_InteropServices_Marshal_QueryInterfaceInternal)
692 #endif
693 ICALL(MARSHAL_43, "ReAllocCoTaskMem", ves_icall_System_Runtime_InteropServices_Marshal_ReAllocCoTaskMem)
694 ICALL(MARSHAL_23, "ReAllocHGlobal", ves_icall_System_Runtime_InteropServices_Marshal_ReAllocHGlobal)
695 #ifndef DISABLE_COM
696 ICALL(MARSHAL_49, "ReleaseComObjectInternal", ves_icall_System_Runtime_InteropServices_Marshal_ReleaseComObjectInternal)
697 ICALL(MARSHAL_29, "ReleaseInternal", ves_icall_System_Runtime_InteropServices_Marshal_ReleaseInternal)
698 #endif
699 ICALL(MARSHAL_30, "SizeOf", ves_icall_System_Runtime_InteropServices_Marshal_SizeOf)
700 ICALL(MARSHAL_31, "StringToBSTR", ves_icall_System_Runtime_InteropServices_Marshal_StringToBSTR)
701 ICALL(MARSHAL_32, "StringToHGlobalAnsi", ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi)
702 ICALL(MARSHAL_33, "StringToHGlobalUni", ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni)
703 ICALL(MARSHAL_34, "StructureToPtr", ves_icall_System_Runtime_InteropServices_Marshal_StructureToPtr)
704 ICALL(MARSHAL_35, "UnsafeAddrOfPinnedArrayElement", ves_icall_System_Runtime_InteropServices_Marshal_UnsafeAddrOfPinnedArrayElement)
705 ICALL(MARSHAL_41, "copy_from_unmanaged", ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged)
706 ICALL(MARSHAL_42, "copy_to_unmanaged", ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged)
707
708 ICALL_TYPE(ACTS, "System.Runtime.Remoting.Activation.ActivationServices", ACTS_1)
709 ICALL(ACTS_1, "AllocateUninitializedClassInstance", ves_icall_System_Runtime_Activation_ActivationServices_AllocateUninitializedClassInstance)
710 ICALL(ACTS_2, "EnableProxyActivation", ves_icall_System_Runtime_Activation_ActivationServices_EnableProxyActivation)
711
712 ICALL_TYPE(MONOMM, "System.Runtime.Remoting.Messaging.MonoMethodMessage", MONOMM_1)
713 ICALL(MONOMM_1, "InitMessage", ves_icall_MonoMethodMessage_InitMessage)
714
715 #ifndef DISABLE_REMOTING
716 ICALL_TYPE(REALP, "System.Runtime.Remoting.Proxies.RealProxy", REALP_1)
717 ICALL(REALP_1, "InternalGetProxyType", ves_icall_Remoting_RealProxy_InternalGetProxyType)
718 ICALL(REALP_2, "InternalGetTransparentProxy", ves_icall_Remoting_RealProxy_GetTransparentProxy)
719
720 ICALL_TYPE(REMSER, "System.Runtime.Remoting.RemotingServices", REMSER_0)
721 ICALL(REMSER_0, "GetVirtualMethod", ves_icall_Remoting_RemotingServices_GetVirtualMethod)
722 ICALL(REMSER_1, "InternalExecute", ves_icall_InternalExecute)
723 ICALL(REMSER_2, "IsTransparentProxy", ves_icall_IsTransparentProxy)
724 #endif
725
726 ICALL_TYPE(RFH, "System.RuntimeFieldHandle", RFH_1)
727 ICALL(RFH_1, "SetValueInternal", ves_icall_MonoField_SetValueInternal)
728
729 ICALL_TYPE(MHAN, "System.RuntimeMethodHandle", MHAN_1)
730 ICALL(MHAN_1, "GetFunctionPointer", ves_icall_RuntimeMethod_GetFunctionPointer)
731
732 ICALL_TYPE(RT, "System.RuntimeType", RT_1)
733 ICALL(RT_1, "CreateInstanceInternal", ves_icall_System_Activator_CreateInstanceInternal)
734 ICALL(RT_2, "GetConstructors_internal", ves_icall_Type_GetConstructors_internal)
735 ICALL(RT_3, "GetEvents_internal", ves_icall_Type_GetEvents_internal)
736 ICALL(RT_5, "GetFields_internal", ves_icall_Type_GetFields_internal)
737 ICALL(RT_6, "GetGenericArguments", ves_icall_MonoType_GetGenericArguments)
738 ICALL(RT_7, "GetGenericParameterAttributes", ves_icall_Type_GetGenericParameterAttributes)
739 ICALL(RT_8, "GetGenericParameterConstraints_impl", ves_icall_Type_GetGenericParameterConstraints)
740 ICALL(RT_9, "GetGenericParameterPosition", ves_icall_Type_GetGenericParameterPosition)
741 ICALL(RT_10, "GetInterfaceMapData", ves_icall_Type_GetInterfaceMapData)
742 ICALL(RT_11, "GetInterfaces", ves_icall_Type_GetInterfaces)
743 ICALL(RT_12, "GetMethodsByName", ves_icall_Type_GetMethodsByName)
744 ICALL(RT_13, "GetNestedTypes_internal", ves_icall_Type_GetNestedTypes)
745 ICALL(RT_14, "GetPacking", ves_icall_Type_GetPacking)
746 ICALL(RT_15, "GetPropertiesByName", ves_icall_Type_GetPropertiesByName)
747 ICALL(RT_16, "GetTypeCodeImplInternal", ves_icall_type_GetTypeCodeInternal)
748 ICALL(RT_17, "MakeGenericType", ves_icall_Type_MakeGenericType)
749 ICALL(RT_18, "MakePointerType", ves_icall_Type_MakePointerType)
750 ICALL(RT_19, "getFullName", ves_icall_System_MonoType_getFullName)
751 ICALL(RT_21, "get_DeclaringMethod", ves_icall_MonoType_get_DeclaringMethod)
752 ICALL(RT_22, "get_DeclaringType", ves_icall_MonoType_get_DeclaringType)
753 ICALL(RT_23, "get_Name", ves_icall_MonoType_get_Name)
754 ICALL(RT_24, "get_Namespace", ves_icall_MonoType_get_Namespace)
755 ICALL(RT_25, "get_core_clr_security_level", vell_icall_MonoType_get_core_clr_security_level)
756 ICALL(RT_26, "make_array_type", ves_icall_Type_make_array_type)
757 ICALL(RT_27, "make_byref_type", ves_icall_Type_make_byref_type)
758
759 ICALL_TYPE(RTH, "System.RuntimeTypeHandle", RTH_1)
760 ICALL(RTH_1, "GetArrayRank", ves_icall_MonoType_GetArrayRank)
761 ICALL(RTH_2, "GetAssembly", ves_icall_MonoType_get_Assembly)
762 ICALL(RTH_3, "GetAttributes", ves_icall_get_attributes)
763 ICALL(RTH_4, "GetBaseType", ves_icall_get_type_parent)
764 ICALL(RTH_5, "GetElementType", ves_icall_MonoType_GetElementType)
765 ICALL(RTH_6, "GetGenericTypeDefinition_impl", ves_icall_Type_GetGenericTypeDefinition_impl)
766 ICALL(RTH_7, "GetMetadataToken", mono_reflection_get_token)
767 ICALL(RTH_8, "GetModule", ves_icall_MonoType_get_Module)
768 ICALL(RTH_9, "HasInstantiation", ves_icall_Type_get_IsGenericType)
769 ICALL(RTH_10, "IsArray", ves_icall_Type_IsArrayImpl)
770 ICALL(RTH_11, "IsByRef", ves_icall_type_isbyref)
771 ICALL(RTH_12, "IsComObject", ves_icall_type_iscomobject)
772 ICALL(RTH_13, "IsGenericTypeDefinition", ves_icall_Type_get_IsGenericTypeDefinition)
773 ICALL(RTH_14, "IsGenericVariable", ves_icall_MonoType_get_IsGenericParameter)
774 ICALL(RTH_15, "IsInstanceOfType", ves_icall_type_IsInstanceOfType)
775 ICALL(RTH_16, "IsPointer", ves_icall_type_ispointer)
776 ICALL(RTH_17, "IsPrimitive", ves_icall_type_isprimitive)
777 ICALL(RTH_18, "type_is_assignable_from", ves_icall_type_is_assignable_from)
778
779 ICALL_TYPE(RNG, "System.Security.Cryptography.RNGCryptoServiceProvider", RNG_1)
780 ICALL(RNG_1, "RngClose", ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_RngClose)
781 ICALL(RNG_2, "RngGetBytes", ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_RngGetBytes)
782 ICALL(RNG_3, "RngInitialize", ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_RngInitialize)
783 ICALL(RNG_4, "RngOpen", ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_RngOpen)
784
785 #ifndef DISABLE_POLICY_EVIDENCE
786 ICALL_TYPE(EVID, "System.Security.Policy.Evidence", EVID_1)
787 ICALL(EVID_1, "IsAuthenticodePresent", ves_icall_System_Security_Policy_Evidence_IsAuthenticodePresent)
788
789 ICALL_TYPE(WINID, "System.Security.Principal.WindowsIdentity", WINID_1)
790 ICALL(WINID_1, "GetCurrentToken", ves_icall_System_Security_Principal_WindowsIdentity_GetCurrentToken)
791 ICALL(WINID_2, "GetTokenName", ves_icall_System_Security_Principal_WindowsIdentity_GetTokenName)
792 ICALL(WINID_3, "GetUserToken", ves_icall_System_Security_Principal_WindowsIdentity_GetUserToken)
793 ICALL(WINID_4, "_GetRoles", ves_icall_System_Security_Principal_WindowsIdentity_GetRoles)
794
795 ICALL_TYPE(WINIMP, "System.Security.Principal.WindowsImpersonationContext", WINIMP_1)
796 ICALL(WINIMP_1, "CloseToken", ves_icall_System_Security_Principal_WindowsImpersonationContext_CloseToken)
797 ICALL(WINIMP_2, "DuplicateToken", ves_icall_System_Security_Principal_WindowsImpersonationContext_DuplicateToken)
798 ICALL(WINIMP_3, "RevertToSelf", ves_icall_System_Security_Principal_WindowsImpersonationContext_RevertToSelf)
799 ICALL(WINIMP_4, "SetCurrentToken", ves_icall_System_Security_Principal_WindowsImpersonationContext_SetCurrentToken)
800
801 ICALL_TYPE(WINPRIN, "System.Security.Principal.WindowsPrincipal", WINPRIN_1)
802 ICALL(WINPRIN_1, "IsMemberOfGroupId", ves_icall_System_Security_Principal_WindowsPrincipal_IsMemberOfGroupId)
803 ICALL(WINPRIN_2, "IsMemberOfGroupName", ves_icall_System_Security_Principal_WindowsPrincipal_IsMemberOfGroupName)
804
805 ICALL_TYPE(SECSTRING, "System.Security.SecureString", SECSTRING_1)
806 ICALL(SECSTRING_1, "DecryptInternal", ves_icall_System_Security_SecureString_DecryptInternal)
807 ICALL(SECSTRING_2, "EncryptInternal", ves_icall_System_Security_SecureString_EncryptInternal)
808 #endif /* !DISABLE_POLICY_EVIDENCE */
809
810 ICALL_TYPE(SECMAN, "System.Security.SecurityManager", SECMAN_1)
811 ICALL(SECMAN_1, "GetLinkDemandSecurity", ves_icall_System_Security_SecurityManager_GetLinkDemandSecurity)
812 ICALL(SECMAN_2, "get_CheckExecutionRights", ves_icall_System_Security_SecurityManager_get_CheckExecutionRights)
813 ICALL(SECMAN_3, "get_RequiresElevatedPermissions", mono_security_core_clr_require_elevated_permissions)
814 ICALL(SECMAN_4, "get_SecurityEnabled", ves_icall_System_Security_SecurityManager_get_SecurityEnabled)
815 ICALL(SECMAN_5, "set_CheckExecutionRights", ves_icall_System_Security_SecurityManager_set_CheckExecutionRights)
816 ICALL(SECMAN_6, "set_SecurityEnabled", ves_icall_System_Security_SecurityManager_set_SecurityEnabled)
817
818 ICALL_TYPE(STRING, "System.String", STRING_1)
819 ICALL(STRING_1, ".ctor(char*)", ves_icall_System_String_ctor_RedirectToCreateString)
820 ICALL(STRING_2, ".ctor(char*,int,int)", ves_icall_System_String_ctor_RedirectToCreateString)
821 ICALL(STRING_3, ".ctor(char,int)", ves_icall_System_String_ctor_RedirectToCreateString)
822 ICALL(STRING_4, ".ctor(char[])", ves_icall_System_String_ctor_RedirectToCreateString)
823 ICALL(STRING_5, ".ctor(char[],int,int)", ves_icall_System_String_ctor_RedirectToCreateString)
824 ICALL(STRING_6, ".ctor(sbyte*)", ves_icall_System_String_ctor_RedirectToCreateString)
825 ICALL(STRING_7, ".ctor(sbyte*,int,int)", ves_icall_System_String_ctor_RedirectToCreateString)
826 ICALL(STRING_8, ".ctor(sbyte*,int,int,System.Text.Encoding)", ves_icall_System_String_ctor_RedirectToCreateString)
827 ICALL(STRING_8a, "GetLOSLimit", ves_icall_System_String_GetLOSLimit)
828 ICALL(STRING_9, "InternalAllocateStr", ves_icall_System_String_InternalAllocateStr)
829 ICALL(STRING_10, "InternalIntern", ves_icall_System_String_InternalIntern)
830 ICALL(STRING_11, "InternalIsInterned", ves_icall_System_String_InternalIsInterned)
831 ICALL(STRING_12, "InternalSetLength", ves_icall_System_String_InternalSetLength)
832
833 ICALL_TYPE(TENC, "System.Text.EncodingHelper", TENC_1)
834 ICALL(TENC_1, "InternalCodePage", ves_icall_System_Text_EncodingHelper_InternalCodePage)
835
836 ICALL_TYPE(ILOCK, "System.Threading.Interlocked", ILOCK_1)
837 ICALL(ILOCK_1, "Add(int&,int)", ves_icall_System_Threading_Interlocked_Add_Int)
838 ICALL(ILOCK_2, "Add(long&,long)", ves_icall_System_Threading_Interlocked_Add_Long)
839 ICALL(ILOCK_3, "CompareExchange(T&,T,T)", ves_icall_System_Threading_Interlocked_CompareExchange_T)
840 ICALL(ILOCK_4, "CompareExchange(double&,double,double)", ves_icall_System_Threading_Interlocked_CompareExchange_Double)
841 ICALL(ILOCK_5, "CompareExchange(int&,int,int)", ves_icall_System_Threading_Interlocked_CompareExchange_Int)
842 ICALL(ILOCK_6, "CompareExchange(int&,int,int,bool&)", ves_icall_System_Threading_Interlocked_CompareExchange_Int_Success)
843 ICALL(ILOCK_7, "CompareExchange(intptr&,intptr,intptr)", ves_icall_System_Threading_Interlocked_CompareExchange_IntPtr)
844 ICALL(ILOCK_8, "CompareExchange(long&,long,long)", ves_icall_System_Threading_Interlocked_CompareExchange_Long)
845 ICALL(ILOCK_9, "CompareExchange(object&,object,object)", ves_icall_System_Threading_Interlocked_CompareExchange_Object)
846 ICALL(ILOCK_10, "CompareExchange(single&,single,single)", ves_icall_System_Threading_Interlocked_CompareExchange_Single)
847 ICALL(ILOCK_11, "Decrement(int&)", ves_icall_System_Threading_Interlocked_Decrement_Int)
848 ICALL(ILOCK_12, "Decrement(long&)", ves_icall_System_Threading_Interlocked_Decrement_Long)
849 ICALL(ILOCK_13, "Exchange(T&,T)", ves_icall_System_Threading_Interlocked_Exchange_T)
850 ICALL(ILOCK_14, "Exchange(double&,double)", ves_icall_System_Threading_Interlocked_Exchange_Double)
851 ICALL(ILOCK_15, "Exchange(int&,int)", ves_icall_System_Threading_Interlocked_Exchange_Int)
852 ICALL(ILOCK_16, "Exchange(intptr&,intptr)", ves_icall_System_Threading_Interlocked_Exchange_IntPtr)
853 ICALL(ILOCK_17, "Exchange(long&,long)", ves_icall_System_Threading_Interlocked_Exchange_Long)
854 ICALL(ILOCK_18, "Exchange(object&,object)", ves_icall_System_Threading_Interlocked_Exchange_Object)
855 ICALL(ILOCK_19, "Exchange(single&,single)", ves_icall_System_Threading_Interlocked_Exchange_Single)
856 ICALL(ILOCK_20, "Increment(int&)", ves_icall_System_Threading_Interlocked_Increment_Int)
857 ICALL(ILOCK_21, "Increment(long&)", ves_icall_System_Threading_Interlocked_Increment_Long)
858 ICALL(ILOCK_22, "Read(long&)", ves_icall_System_Threading_Interlocked_Read_Long)
859
860 ICALL_TYPE(ITHREAD, "System.Threading.InternalThread", ITHREAD_1)
861 ICALL(ITHREAD_1, "Thread_free_internal", ves_icall_System_Threading_InternalThread_Thread_free_internal)
862
863 ICALL_TYPE(MTHREADP, "System.Threading.Microsoft.ThreadPool", MTHREADP_1)
864 ICALL(MTHREADP_1, "BindIOCompletionCallbackNative", ves_icall_System_Threading_Microsoft_ThreadPool_BindIOCompletionCallbackNative)
865 ICALL(MTHREADP_2, "GetAvailableThreadsNative", ves_icall_System_Threading_Microsoft_ThreadPool_GetAvailableThreadsNative)
866 ICALL(MTHREADP_3, "GetMaxThreadsNative", ves_icall_System_Threading_Microsoft_ThreadPool_GetMaxThreadsNative)
867 ICALL(MTHREADP_4, "GetMinThreadsNative", ves_icall_System_Threading_Microsoft_ThreadPool_GetMinThreadsNative)
868 ICALL(MTHREADP_5, "InitializeVMTp", ves_icall_System_Threading_Microsoft_ThreadPool_InitializeVMTp)
869 ICALL(MTHREADP_6, "IsThreadPoolHosted", ves_icall_System_Threading_Microsoft_ThreadPool_IsThreadPoolHosted)
870 ICALL(MTHREADP_7, "NotifyWorkItemComplete", ves_icall_System_Threading_Microsoft_ThreadPool_NotifyWorkItemComplete)
871 ICALL(MTHREADP_8, "NotifyWorkItemProgressNative", ves_icall_System_Threading_Microsoft_ThreadPool_NotifyWorkItemProgressNative)
872 ICALL(MTHREADP_9, "PostQueuedCompletionStatus", ves_icall_System_Threading_Microsoft_ThreadPool_PostQueuedCompletionStatus)
873 ICALL(MTHREADP_10, "RegisterWaitForSingleObjectNative", ves_icall_System_Threading_Microsoft_ThreadPool_RegisterWaitForSingleObjectNative)
874 ICALL(MTHREADP_11, "ReportThreadStatus", ves_icall_System_Threading_Microsoft_ThreadPool_ReportThreadStatus)
875 ICALL(MTHREADP_12, "RequestWorkerThread", ves_icall_System_Threading_Microsoft_ThreadPool_RequestWorkerThread)
876 ICALL(MTHREADP_13, "SetMaxThreadsNative", ves_icall_System_Threading_Microsoft_ThreadPool_SetMaxThreadsNative)
877 ICALL(MTHREADP_14, "SetMinThreadsNative", ves_icall_System_Threading_Microsoft_ThreadPool_SetMinThreadsNative)
878
879 ICALL_TYPE(MONIT, "System.Threading.Monitor", MONIT_8)
880 ICALL(MONIT_8, "Enter", mono_monitor_enter)
881 ICALL(MONIT_1, "Exit", mono_monitor_exit)
882 ICALL(MONIT_2, "Monitor_pulse", ves_icall_System_Threading_Monitor_Monitor_pulse)
883 ICALL(MONIT_3, "Monitor_pulse_all", ves_icall_System_Threading_Monitor_Monitor_pulse_all)
884 ICALL(MONIT_4, "Monitor_test_owner", ves_icall_System_Threading_Monitor_Monitor_test_owner)
885 ICALL(MONIT_5, "Monitor_test_synchronised", ves_icall_System_Threading_Monitor_Monitor_test_synchronised)
886 ICALL(MONIT_6, "Monitor_try_enter", ves_icall_System_Threading_Monitor_Monitor_try_enter)
887 ICALL(MONIT_7, "Monitor_wait", ves_icall_System_Threading_Monitor_Monitor_wait)
888 ICALL(MONIT_9, "try_enter_with_atomic_var", ves_icall_System_Threading_Monitor_Monitor_try_enter_with_atomic_var)
889
890 ICALL_TYPE(MRWI, "System.Threading.MonoRuntimeWorkItem", MRWI_1)
891 ICALL(MRWI_1, "ExecuteWorkItem", ves_icall_System_Threading_MonoRuntimeWorkItem_ExecuteWorkItem)
892
893 ICALL_TYPE(MUTEX, "System.Threading.Mutex", MUTEX_1)
894 ICALL(MUTEX_1, "CreateMutex_internal(bool,string,bool&)", ves_icall_System_Threading_Mutex_CreateMutex_internal)
895 ICALL(MUTEX_2, "OpenMutex_internal(string,System.Security.AccessControl.MutexRights,System.IO.MonoIOError&)", ves_icall_System_Threading_Mutex_OpenMutex_internal)
896 ICALL(MUTEX_3, "ReleaseMutex_internal(intptr)", ves_icall_System_Threading_Mutex_ReleaseMutex_internal)
897
898 ICALL_TYPE(NATIVEC, "System.Threading.NativeEventCalls", NATIVEC_1)
899 ICALL(NATIVEC_1, "CloseEvent_internal", ves_icall_System_Threading_Events_CloseEvent_internal)
900 ICALL(NATIVEC_2, "CreateEvent_internal(bool,bool,string,bool&)", ves_icall_System_Threading_Events_CreateEvent_internal)
901 ICALL(NATIVEC_3, "OpenEvent_internal(string,System.Security.AccessControl.EventWaitHandleRights,System.IO.MonoIOError&)", ves_icall_System_Threading_Events_OpenEvent_internal)
902 ICALL(NATIVEC_4, "ResetEvent_internal",  ves_icall_System_Threading_Events_ResetEvent_internal)
903 ICALL(NATIVEC_5, "SetEvent_internal",    ves_icall_System_Threading_Events_SetEvent_internal)
904
905 ICALL_TYPE(SEMA, "System.Threading.Semaphore", SEMA_1)
906 ICALL(SEMA_1, "CreateSemaphore_internal(int,int,string,bool&)", ves_icall_System_Threading_Semaphore_CreateSemaphore_internal)
907 ICALL(SEMA_2, "OpenSemaphore_internal(string,System.Security.AccessControl.SemaphoreRights,System.IO.MonoIOError&)", ves_icall_System_Threading_Semaphore_OpenSemaphore_internal)
908 ICALL(SEMA_3, "ReleaseSemaphore_internal(intptr,int,bool&)", ves_icall_System_Threading_Semaphore_ReleaseSemaphore_internal)
909
910 ICALL_TYPE(THREAD, "System.Threading.Thread", THREAD_1)
911 ICALL(THREAD_1, "Abort_internal(System.Threading.InternalThread,object)", ves_icall_System_Threading_Thread_Abort)
912 ICALL(THREAD_1aa, "AllocTlsData", mono_thread_alloc_tls)
913 ICALL(THREAD_1a, "ByteArrayToCurrentDomain(byte[])", ves_icall_System_Threading_Thread_ByteArrayToCurrentDomain)
914 ICALL(THREAD_1b, "ByteArrayToRootDomain(byte[])", ves_icall_System_Threading_Thread_ByteArrayToRootDomain)
915 ICALL(THREAD_2, "ClrState(System.Threading.InternalThread,System.Threading.ThreadState)", ves_icall_System_Threading_Thread_ClrState)
916 ICALL(THREAD_2a, "ConstructInternalThread", ves_icall_System_Threading_Thread_ConstructInternalThread)
917 ICALL(THREAD_3, "CurrentInternalThread_internal", mono_thread_internal_current)
918 ICALL(THREAD_3a, "DestroyTlsData", mono_thread_destroy_tls)
919 ICALL(THREAD_4, "FreeLocalSlotValues", mono_thread_free_local_slot_values)
920 ICALL(THREAD_55, "GetAbortExceptionState", ves_icall_System_Threading_Thread_GetAbortExceptionState)
921 ICALL(THREAD_7, "GetDomainID", ves_icall_System_Threading_Thread_GetDomainID)
922 ICALL(THREAD_8, "GetName_internal(System.Threading.InternalThread)", ves_icall_System_Threading_Thread_GetName_internal)
923 ICALL(THREAD_57, "GetPriority(System.Threading.InternalThread)", ves_icall_System_Threading_Thread_GetPriority)
924 ICALL(THREAD_11, "GetState(System.Threading.InternalThread)", ves_icall_System_Threading_Thread_GetState)
925 ICALL(THREAD_53, "Interrupt_internal(System.Threading.InternalThread)", ves_icall_System_Threading_Thread_Interrupt_internal)
926 ICALL(THREAD_12, "Join_internal(System.Threading.InternalThread,int,intptr)", ves_icall_System_Threading_Thread_Join_internal)
927 ICALL(THREAD_13, "MemoryBarrier", ves_icall_System_Threading_Thread_MemoryBarrier)
928 ICALL(THREAD_14, "ResetAbort_internal()", ves_icall_System_Threading_Thread_ResetAbort)
929 ICALL(THREAD_15, "Resume_internal()", ves_icall_System_Threading_Thread_Resume)
930 ICALL(THREAD_18, "SetName_internal(System.Threading.InternalThread,string)", ves_icall_System_Threading_Thread_SetName_internal)
931 ICALL(THREAD_58, "SetPriority(System.Threading.InternalThread,int)", ves_icall_System_Threading_Thread_SetPriority)
932 ICALL(THREAD_21, "SetState(System.Threading.InternalThread,System.Threading.ThreadState)", ves_icall_System_Threading_Thread_SetState)
933 ICALL(THREAD_22, "Sleep_internal", ves_icall_System_Threading_Thread_Sleep_internal)
934 ICALL(THREAD_54, "SpinWait_nop", ves_icall_System_Threading_Thread_SpinWait_nop)
935 ICALL(THREAD_23, "Suspend_internal(System.Threading.InternalThread)", ves_icall_System_Threading_Thread_Suspend)
936 ICALL(THREAD_56, "SystemMaxStackStize", mono_threads_get_max_stack_size)
937 ICALL(THREAD_25, "Thread_internal", ves_icall_System_Threading_Thread_Thread_internal)
938 ICALL(THREAD_26, "VolatileRead(byte&)", ves_icall_System_Threading_Thread_VolatileRead1)
939 ICALL(THREAD_27, "VolatileRead(double&)", ves_icall_System_Threading_Thread_VolatileReadDouble)
940 ICALL(THREAD_28, "VolatileRead(int&)", ves_icall_System_Threading_Thread_VolatileRead4)
941 ICALL(THREAD_29, "VolatileRead(int16&)", ves_icall_System_Threading_Thread_VolatileRead2)
942 ICALL(THREAD_30, "VolatileRead(intptr&)", ves_icall_System_Threading_Thread_VolatileReadIntPtr)
943 ICALL(THREAD_31, "VolatileRead(long&)", ves_icall_System_Threading_Thread_VolatileRead8)
944 ICALL(THREAD_32, "VolatileRead(object&)", ves_icall_System_Threading_Thread_VolatileReadObject)
945 ICALL(THREAD_33, "VolatileRead(sbyte&)", ves_icall_System_Threading_Thread_VolatileRead1)
946 ICALL(THREAD_34, "VolatileRead(single&)", ves_icall_System_Threading_Thread_VolatileReadFloat)
947 ICALL(THREAD_35, "VolatileRead(uint&)", ves_icall_System_Threading_Thread_VolatileRead4)
948 ICALL(THREAD_36, "VolatileRead(uint16&)", ves_icall_System_Threading_Thread_VolatileRead2)
949 ICALL(THREAD_37, "VolatileRead(uintptr&)", ves_icall_System_Threading_Thread_VolatileReadIntPtr)
950 ICALL(THREAD_38, "VolatileRead(ulong&)", ves_icall_System_Threading_Thread_VolatileRead8)
951 ICALL(THREAD_39, "VolatileWrite(byte&,byte)", ves_icall_System_Threading_Thread_VolatileWrite1)
952 ICALL(THREAD_40, "VolatileWrite(double&,double)", ves_icall_System_Threading_Thread_VolatileWriteDouble)
953 ICALL(THREAD_41, "VolatileWrite(int&,int)", ves_icall_System_Threading_Thread_VolatileWrite4)
954 ICALL(THREAD_42, "VolatileWrite(int16&,int16)", ves_icall_System_Threading_Thread_VolatileWrite2)
955 ICALL(THREAD_43, "VolatileWrite(intptr&,intptr)", ves_icall_System_Threading_Thread_VolatileWriteIntPtr)
956 ICALL(THREAD_44, "VolatileWrite(long&,long)", ves_icall_System_Threading_Thread_VolatileWrite8)
957 ICALL(THREAD_45, "VolatileWrite(object&,object)", ves_icall_System_Threading_Thread_VolatileWriteObject)
958 ICALL(THREAD_46, "VolatileWrite(sbyte&,sbyte)", ves_icall_System_Threading_Thread_VolatileWrite1)
959 ICALL(THREAD_47, "VolatileWrite(single&,single)", ves_icall_System_Threading_Thread_VolatileWriteFloat)
960 ICALL(THREAD_48, "VolatileWrite(uint&,uint)", ves_icall_System_Threading_Thread_VolatileWrite4)
961 ICALL(THREAD_49, "VolatileWrite(uint16&,uint16)", ves_icall_System_Threading_Thread_VolatileWrite2)
962 ICALL(THREAD_50, "VolatileWrite(uintptr&,uintptr)", ves_icall_System_Threading_Thread_VolatileWriteIntPtr)
963 ICALL(THREAD_51, "VolatileWrite(ulong&,ulong)", ves_icall_System_Threading_Thread_VolatileWrite8)
964 ICALL(THREAD_9, "Yield", ves_icall_System_Threading_Thread_Yield)
965 ICALL(THREAD_52, "current_lcid()", ves_icall_System_Threading_Thread_current_lcid)
966
967 ICALL_TYPE(THREADP, "System.Threading.ThreadPool", THREADP_1)
968 ICALL(THREADP_1, "GetAvailableThreads_internal", ves_icall_System_Threading_ThreadPool_GetAvailableThreads)
969 ICALL(THREADP_2, "GetMaxThreads_internal", ves_icall_System_Threading_ThreadPool_GetMaxThreads)
970 ICALL(THREADP_3, "GetMinThreads_internal", ves_icall_System_Threading_ThreadPool_GetMinThreads)
971 ICALL(THREADP_35, "SetMaxThreads_internal", ves_icall_System_Threading_ThreadPool_SetMaxThreads)
972 ICALL(THREADP_4, "SetMinThreads_internal", ves_icall_System_Threading_ThreadPool_SetMinThreads)
973 ICALL(THREADP_5, "pool_queue", icall_append_job)
974
975 ICALL_TYPE(TTIMER, "System.Threading.Timer", TTIMER_1)
976 ICALL(TTIMER_1, "GetTimeMonotonic", mono_100ns_ticks)
977
978 ICALL_TYPE(VOLATILE, "System.Threading.Volatile", VOLATILE_28)
979 ICALL(VOLATILE_28, "Read(T&)", ves_icall_System_Threading_Volatile_Read_T)
980 ICALL(VOLATILE_1, "Read(bool&)", ves_icall_System_Threading_Volatile_Read1)
981 ICALL(VOLATILE_2, "Read(byte&)", ves_icall_System_Threading_Volatile_Read1)
982 ICALL(VOLATILE_3, "Read(double&)", ves_icall_System_Threading_Volatile_ReadDouble)
983 ICALL(VOLATILE_4, "Read(int&)", ves_icall_System_Threading_Volatile_Read4)
984 ICALL(VOLATILE_5, "Read(int16&)", ves_icall_System_Threading_Volatile_Read2)
985 ICALL(VOLATILE_6, "Read(intptr&)", ves_icall_System_Threading_Volatile_ReadIntPtr)
986 ICALL(VOLATILE_7, "Read(long&)", ves_icall_System_Threading_Volatile_Read8)
987 ICALL(VOLATILE_8, "Read(sbyte&)", ves_icall_System_Threading_Volatile_Read1)
988 ICALL(VOLATILE_9, "Read(single&)", ves_icall_System_Threading_Volatile_ReadFloat)
989 ICALL(VOLATILE_10, "Read(uint&)", ves_icall_System_Threading_Volatile_Read4)
990 ICALL(VOLATILE_11, "Read(uint16&)", ves_icall_System_Threading_Volatile_Read2)
991 ICALL(VOLATILE_12, "Read(uintptr&)", ves_icall_System_Threading_Volatile_ReadIntPtr)
992 ICALL(VOLATILE_13, "Read(ulong&)", ves_icall_System_Threading_Volatile_Read8)
993 ICALL(VOLATILE_27, "Write(T&,T)", ves_icall_System_Threading_Volatile_Write_T)
994 ICALL(VOLATILE_14, "Write(bool&,bool)", ves_icall_System_Threading_Volatile_Write1)
995 ICALL(VOLATILE_15, "Write(byte&,byte)", ves_icall_System_Threading_Volatile_Write1)
996 ICALL(VOLATILE_16, "Write(double&,double)", ves_icall_System_Threading_Volatile_WriteDouble)
997 ICALL(VOLATILE_17, "Write(int&,int)", ves_icall_System_Threading_Volatile_Write4)
998 ICALL(VOLATILE_18, "Write(int16&,int16)", ves_icall_System_Threading_Volatile_Write2)
999 ICALL(VOLATILE_19, "Write(intptr&,intptr)", ves_icall_System_Threading_Volatile_WriteIntPtr)
1000 ICALL(VOLATILE_20, "Write(long&,long)", ves_icall_System_Threading_Volatile_Write8)
1001 ICALL(VOLATILE_21, "Write(sbyte&,sbyte)", ves_icall_System_Threading_Volatile_Write1)
1002 ICALL(VOLATILE_22, "Write(single&,single)", ves_icall_System_Threading_Volatile_WriteFloat)
1003 ICALL(VOLATILE_23, "Write(uint&,uint)", ves_icall_System_Threading_Volatile_Write4)
1004 ICALL(VOLATILE_24, "Write(uint16&,uint16)", ves_icall_System_Threading_Volatile_Write2)
1005 ICALL(VOLATILE_25, "Write(uintptr&,uintptr)", ves_icall_System_Threading_Volatile_WriteIntPtr)
1006 ICALL(VOLATILE_26, "Write(ulong&,ulong)", ves_icall_System_Threading_Volatile_Write8)
1007
1008 ICALL_TYPE(WAITH, "System.Threading.WaitHandle", WAITH_1)
1009 ICALL(WAITH_1, "SignalAndWait_Internal", ves_icall_System_Threading_WaitHandle_SignalAndWait_Internal)
1010 ICALL(WAITH_2, "WaitAll_internal", ves_icall_System_Threading_WaitHandle_WaitAll_internal)
1011 ICALL(WAITH_3, "WaitAny_internal", ves_icall_System_Threading_WaitHandle_WaitAny_internal)
1012 ICALL(WAITH_4, "WaitOne_internal", ves_icall_System_Threading_WaitHandle_WaitOne_internal)
1013
1014 ICALL_TYPE(TYPE, "System.Type", TYPE_1)
1015 ICALL(TYPE_1, "internal_from_handle", ves_icall_type_from_handle)
1016 ICALL(TYPE_2, "internal_from_name", ves_icall_type_from_name)
1017
1018 ICALL_TYPE(TYPEDR, "System.TypedReference", TYPEDR_1)
1019 ICALL(TYPEDR_1, "ToObject",     mono_TypedReference_ToObject)
1020 ICALL(TYPEDR_2, "ToObjectInternal",     mono_TypedReference_ToObjectInternal)
1021
1022 ICALL_TYPE(VALUET, "System.ValueType", VALUET_1)
1023 ICALL(VALUET_1, "InternalEquals", ves_icall_System_ValueType_Equals)
1024 ICALL(VALUET_2, "InternalGetHashCode", ves_icall_System_ValueType_InternalGetHashCode)
1025
1026 ICALL_TYPE(WEBIC, "System.Web.Util.ICalls", WEBIC_1)
1027 ICALL(WEBIC_1, "GetMachineConfigPath", ves_icall_System_Configuration_DefaultConfig_get_machine_config_path)
1028 ICALL(WEBIC_2, "GetMachineInstallDirectory", ves_icall_System_Web_Util_ICalls_get_machine_install_dir)
1029 ICALL(WEBIC_3, "GetUnmanagedResourcesPtr", ves_icall_get_resources_ptr)
1030
1031 #ifndef DISABLE_COM
1032 ICALL_TYPE(COMOBJ, "System.__ComObject", COMOBJ_1)
1033 ICALL(COMOBJ_1, "CreateRCW", ves_icall_System_ComObject_CreateRCW)
1034 ICALL(COMOBJ_2, "GetInterfaceInternal", ves_icall_System_ComObject_GetInterfaceInternal)
1035 ICALL(COMOBJ_3, "ReleaseInterfaces", ves_icall_System_ComObject_ReleaseInterfaces)
1036 #endif