5 #ifndef __MONO_METADATA_VERIFY_H__
6 #define __MONO_METADATA_VERIFY_H__
8 #include <mono/metadata/metadata.h>
9 #include <mono/metadata/image.h>
10 #include <mono/metadata/loader.h>
11 #include <glib.h> /* GSList dep */
22 /* Status signaling code that is not verifiable.*/
23 MONO_VERIFY_NOT_VERIFIABLE
= 8,
25 /*OR it with other flags*/
27 /* Abort the verification if the code is not verifiable.
28 * The standard behavior is to abort if the code is not valid.
30 MONO_VERIFY_FAIL_FAST
= 16,
33 /* Perform less verification of the code. This flag should be used
34 * if one wants the verifier to be more compatible to the MS runtime.
35 * Mind that this is not to be more compatible with MS peverify, but
36 * with the runtime itself, that has a less strict verifier.
38 MONO_VERIFY_NON_STRICT
= 32,
40 /*Skip all visibility related checks*/
41 MONO_VERIFY_SKIP_VISIBILITY
= 64,
43 /*Skip all visibility related checks*/
44 MONO_VERIFY_REPORT_ALL_ERRORS
= 128
50 MonoVerifyStatus status
;
55 int8_t exception_type
; /*should be one of MONO_EXCEPTION_* */
56 } MonoVerifyInfoExtended
;
59 MONO_API GSList
* mono_method_verify (MonoMethod
*method
, int level
);
60 MONO_API
void mono_free_verify_list (GSList
*list
);
61 MONO_API
char* mono_verify_corlib (void);
65 #endif /* __MONO_METADATA_VERIFY_H__ */