| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- #include <mono/metadata/profiler.h>
- /*
- * Bare bones profiler. Compile with:
- *
- * linux : gcc -shared -o mono-profiler-sample.so sample.c `pkg-config --cflags --libs mono`
- * mac : gcc sample.c -o mono-profiler-sample.dylib -Dmono_free=free -lz `pkg-config --cflags mono-2` -undefined suppress -flat_namespace
- *
- * Install the binary where the dynamic loader can find it. eg /usr/lib etc
- * Then run mono with:
- * mono --profile=sample your_application.exe
- *
- * Note if you name a profiler with more than 8 characters (eg sample6789) appears to not work
- */
- struct _MonoProfiler {
- int ncalls;
- };
- /* called at the end of the program */
- static void
- sample_shutdown (MonoProfiler *prof)
- {
- g_print ("total number of calls: %d\n", prof->ncalls);
- }
- static void
- sample_method_enter (MonoProfiler *prof, MonoMethod *method)
- {
- prof->ncalls++;
- }
- static void
- sample_method_leave (MonoProfiler *prof, MonoMethod *method)
- {
- }
- /* the entry point */
- void
- mono_profiler_startup (const char *desc)
- {
- MonoProfiler *prof;
- prof = g_new0 (MonoProfiler, 1);
- mono_profiler_install (prof, sample_shutdown);
-
- mono_profiler_install_enter_leave (sample_method_enter, sample_method_leave);
- mono_profiler_set_events (MONO_PROFILE_ENTER_LEAVE);
- }
|