[amd64] Remove the callee saved registers from MonoLMF, save/restore them normally...
[mono-project.git] / mono / metadata / string-icalls.h
bloba0b831a1e2006411eecc26190d60ca4df45c4f27
1 #ifndef _MONO_CLI_STRING_ICALLS_H_
2 #define _MONO_CLI_STRING_ICALLS_H_
4 /*
5 * string-icalls.h: String internal calls for the corlib
7 * Author:
8 * Patrik Torstensson (patrik.torstensson@labs2.com)
10 * (C) 2001 Ximian, Inc.
13 #include <glib.h>
14 #include <mono/metadata/class.h>
15 #include <mono/metadata/object.h>
16 #include "mono/utils/mono-compiler.h"
18 void
19 ves_icall_System_String_ctor_RedirectToCreateString (void) MONO_INTERNAL;
21 MonoString *
22 ves_icall_System_String_InternalAllocateStr (gint32 length) MONO_INTERNAL;
24 MonoString *
25 ves_icall_System_String_InternalIntern (MonoString *str) MONO_INTERNAL;
27 MonoString *
28 ves_icall_System_String_InternalIsInterned (MonoString *str) MONO_INTERNAL;
30 int
31 ves_icall_System_String_GetLOSLimit (void) MONO_INTERNAL;
33 #endif /* _MONO_CLI_STRING_ICALLS_H_ */