[jit] Use MONO_INS_IS_PCONST_NULL () macro in more places.
[mono.git] / mono / utils / mono-error.h
1 #ifndef __MONO_ERROR_H__
2 #define __MONO_ERROR_H__
3
4 #include <mono/utils/mono-publib.h>
5
6 enum {
7         /*
8         The supplied strings were dup'd by means of calling mono_error_dup_strings.
9         */
10         MONO_ERROR_FREE_STRINGS = 0x0001,
11
12         /*
13         Something happened while processing the error and the resulting message is incomplete.
14         */
15         MONO_ERROR_INCOMPLETE = 0x0002
16 };
17
18 enum {
19         MONO_ERROR_NONE = 0,
20         MONO_ERROR_MISSING_METHOD = 1,
21         MONO_ERROR_MISSING_FIELD = 2,
22         MONO_ERROR_TYPE_LOAD = 3,
23         MONO_ERROR_FILE_NOT_FOUND = 4,
24         MONO_ERROR_BAD_IMAGE = 5,
25         MONO_ERROR_OUT_OF_MEMORY = 6,
26         MONO_ERROR_ARGUMENT = 7,
27         MONO_ERROR_ARGUMENT_NULL = 11,
28         MONO_ERROR_NOT_VERIFIABLE = 8,
29         MONO_ERROR_INVALID_PROGRAM = 12,
30
31         /*
32          * This is a generic error mechanism is you need to raise an arbitrary corlib exception.
33          * You must pass the exception name otherwise prepare_exception will fail with internal execution. 
34          */
35         MONO_ERROR_GENERIC = 9,
36         /* This one encapsulates a managed exception instance */
37         MONO_ERROR_EXCEPTION_INSTANCE = 10,
38
39         /* Not a valid error code - indicates that the error was cleaned up and reused */
40         MONO_ERROR_CLEANUP_CALLED_SENTINEL = 0xffff
41 };
42
43 /*Keep in sync with MonoErrorInternal*/
44 typedef struct _MonoError {
45         unsigned short error_code;
46     unsigned short hidden_0; /*DON'T TOUCH */
47
48         void *hidden_1 [12]; /*DON'T TOUCH */
49 } MonoError;
50
51 MONO_BEGIN_DECLS
52
53 MONO_API void
54 mono_error_init (MonoError *error);
55
56 MONO_API void
57 mono_error_init_flags (MonoError *error, unsigned short flags);
58
59 MONO_API void
60 mono_error_cleanup (MonoError *error);
61
62 MONO_API mono_bool
63 mono_error_ok (MonoError *error);
64
65 MONO_API unsigned short
66 mono_error_get_error_code (MonoError *error);
67
68 MONO_API const char*
69 mono_error_get_message (MonoError *error);
70
71 MONO_END_DECLS
72
73 #endif