X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mono%2Fmetadata%2Fprofiler.h;h=cced986680eed40eb26d3c2e3f2bf1ed574be8f9;hb=1c1a8550f3e585bb3e8174cb5d5733fe3263fc56;hp=42e2f1f27dd50f0ce0f9e4d56a518729235b9736;hpb=4614473ae50c8b1217389335330d369befd766e0;p=mono.git diff --git a/mono/metadata/profiler.h b/mono/metadata/profiler.h index 42e2f1f27dd..cced986680e 100644 --- a/mono/metadata/profiler.h +++ b/mono/metadata/profiler.h @@ -1,3 +1,7 @@ +/** + * \file + */ + #ifndef __MONO_PROFILER_H__ #define __MONO_PROFILER_H__ @@ -30,7 +34,9 @@ typedef enum { MONO_PROFILE_MONITOR_EVENTS = 1 << 17, MONO_PROFILE_IOMAP_EVENTS = 1 << 18, /* this should likely be removed, too */ MONO_PROFILE_GC_MOVES = 1 << 19, - MONO_PROFILE_GC_ROOTS = 1 << 20 + MONO_PROFILE_GC_ROOTS = 1 << 20, + MONO_PROFILE_CONTEXT_EVENTS = 1 << 21, + MONO_PROFILE_GC_FINALIZATION = 1 << 22 } MonoProfileFlags; typedef enum { @@ -38,6 +44,7 @@ typedef enum { MONO_PROFILE_FAILED } MonoProfileResult; +// Keep somewhat in sync with libgc/include/gc.h:enum GC_EventType typedef enum { MONO_GC_EVENT_START, MONO_GC_EVENT_MARK_START, @@ -45,10 +52,26 @@ typedef enum { MONO_GC_EVENT_RECLAIM_START, MONO_GC_EVENT_RECLAIM_END, MONO_GC_EVENT_END, + /* + * This is the actual arrival order of the following events: + * + * MONO_GC_EVENT_PRE_STOP_WORLD + * MONO_GC_EVENT_PRE_STOP_WORLD_LOCKED + * MONO_GC_EVENT_POST_STOP_WORLD + * MONO_GC_EVENT_PRE_START_WORLD + * MONO_GC_EVENT_POST_START_WORLD_UNLOCKED + * MONO_GC_EVENT_POST_START_WORLD + * + * The LOCKED and UNLOCKED events guarantee that, by the time they arrive, + * the GC and suspend locks will both have been acquired and released, + * respectively. + */ MONO_GC_EVENT_PRE_STOP_WORLD, MONO_GC_EVENT_POST_STOP_WORLD, MONO_GC_EVENT_PRE_START_WORLD, - MONO_GC_EVENT_POST_START_WORLD + MONO_GC_EVENT_POST_START_WORLD, + MONO_GC_EVENT_PRE_STOP_WORLD_LOCKED, + MONO_GC_EVENT_POST_START_WORLD_UNLOCKED } MonoGCEvent; /* coverage info */ @@ -118,6 +141,7 @@ typedef enum { typedef void (*MonoProfileFunc) (MonoProfiler *prof); typedef void (*MonoProfileAppDomainFunc) (MonoProfiler *prof, MonoDomain *domain); +typedef void (*MonoProfileContextFunc) (MonoProfiler *prof, MonoAppContext *context); typedef void (*MonoProfileMethodFunc) (MonoProfiler *prof, MonoMethod *method); typedef void (*MonoProfileClassFunc) (MonoProfiler *prof, MonoClass *klass); typedef void (*MonoProfileModuleFunc) (MonoProfiler *prof, MonoImage *module); @@ -128,6 +152,7 @@ typedef void (*MonoProfileExceptionFunc) (MonoProfiler *prof, MonoObject *object typedef void (*MonoProfileExceptionClauseFunc) (MonoProfiler *prof, MonoMethod *method, int clause_type, int clause_num); typedef void (*MonoProfileAppDomainResult)(MonoProfiler *prof, MonoDomain *domain, int result); +typedef void (*MonoProfileAppDomainFriendlyNameFunc) (MonoProfiler *prof, MonoDomain *domain, const char *name); typedef void (*MonoProfileMethodResult) (MonoProfiler *prof, MonoMethod *method, int result); typedef void (*MonoProfileJitResult) (MonoProfiler *prof, MonoMethod *method, MonoJitInfo* jinfo, int result); typedef void (*MonoProfileClassResult) (MonoProfiler *prof, MonoClass *klass, int result); @@ -147,6 +172,9 @@ typedef void (*MonoProfileGCResizeFunc) (MonoProfiler *prof, int64_t new_size) typedef void (*MonoProfileGCHandleFunc) (MonoProfiler *prof, int op, int type, uintptr_t handle, MonoObject *obj); typedef void (*MonoProfileGCRootFunc) (MonoProfiler *prof, int num_roots, void **objects, int *root_types, uintptr_t *extra_info); +typedef void (*MonoProfileGCFinalizeFunc) (MonoProfiler *prof); +typedef void (*MonoProfileGCFinalizeObjectFunc) (MonoProfiler *prof, MonoObject *obj); + typedef void (*MonoProfileIomapFunc) (MonoProfiler *prof, const char *report, const char *pathname, const char *new_pathname); typedef mono_bool (*MonoProfileCoverageFilterFunc) (MonoProfiler *prof, MonoMethod *method); @@ -167,6 +195,8 @@ MONO_API MonoProfileFlags mono_profiler_get_events (void); MONO_API void mono_profiler_install_appdomain (MonoProfileAppDomainFunc start_load, MonoProfileAppDomainResult end_load, MonoProfileAppDomainFunc start_unload, MonoProfileAppDomainFunc end_unload); +MONO_API void mono_profiler_install_appdomain_name (MonoProfileAppDomainFriendlyNameFunc domain_name_cb); +MONO_API void mono_profiler_install_context (MonoProfileContextFunc load, MonoProfileContextFunc unload); MONO_API void mono_profiler_install_assembly (MonoProfileAssemblyFunc start_load, MonoProfileAssemblyResult end_load, MonoProfileAssemblyFunc start_unload, MonoProfileAssemblyFunc end_unload); MONO_API void mono_profiler_install_module (MonoProfileModuleFunc start_load, MonoProfileModuleResult end_load, @@ -192,6 +222,7 @@ MONO_API void mono_profiler_coverage_get (MonoProfiler *prof, MonoMethod *metho MONO_API void mono_profiler_install_gc (MonoProfileGCFunc callback, MonoProfileGCResizeFunc heap_resize_callback); MONO_API void mono_profiler_install_gc_moves (MonoProfileGCMoveFunc callback); MONO_API void mono_profiler_install_gc_roots (MonoProfileGCHandleFunc handle_callback, MonoProfileGCRootFunc roots_callback); +MONO_API void mono_profiler_install_gc_finalize (MonoProfileGCFinalizeFunc begin, MonoProfileGCFinalizeObjectFunc begin_obj, MonoProfileGCFinalizeObjectFunc end_obj, MonoProfileGCFinalizeFunc end); MONO_API void mono_profiler_install_runtime_initialized (MonoProfileFunc runtime_initialized_callback); MONO_API void mono_profiler_install_code_chunk_new (MonoProfilerCodeChunkNew callback); @@ -209,7 +240,7 @@ typedef enum { MONO_PROFILER_STAT_MODE_REAL = 1, } MonoProfileSamplingMode; -MONO_API void mono_profiler_set_statistical_mode (MonoProfileSamplingMode mode, int64_t sampling_frequency_is_us); +MONO_API void mono_profiler_set_statistical_mode (MonoProfileSamplingMode mode, int64_t sampling_frequency_hz); MONO_END_DECLS