[profiler] Don't emit thread and gc events if they are not enabled.
[mono.git] / mono / profiler / log.c
1 /*
2  * mono-profiler-log.c: mono log profiler
3  *
4  * Authors:
5  *   Paolo Molaro (lupus@ximian.com)
6  *   Alex Rønne Petersen (alexrp@xamarin.com)
7  *
8  * Copyright 2010 Novell, Inc (http://www.novell.com)
9  * Copyright 2011 Xamarin Inc (http://www.xamarin.com)
10  * Licensed under the MIT license. See LICENSE file in the project root for full license information.
11  */
12
13 #include <config.h>
14 #include <mono/metadata/assembly.h>
15 #include <mono/metadata/debug-helpers.h>
16 #include "../metadata/metadata-internals.h"
17 #include <mono/metadata/mono-config.h>
18 #include <mono/metadata/mono-gc.h>
19 #include <mono/metadata/mono-perfcounters.h>
20 #include <mono/utils/atomic.h>
21 #include <mono/utils/hazard-pointer.h>
22 #include <mono/utils/lock-free-alloc.h>
23 #include <mono/utils/lock-free-queue.h>
24 #include <mono/utils/mono-conc-hashtable.h>
25 #include <mono/utils/mono-counters.h>
26 #include <mono/utils/mono-linked-list-set.h>
27 #include <mono/utils/mono-membar.h>
28 #include <mono/utils/mono-mmap.h>
29 #include <mono/utils/mono-os-mutex.h>
30 #include <mono/utils/mono-os-semaphore.h>
31 #include <mono/utils/mono-threads.h>
32 #include <mono/utils/mono-threads-api.h>
33 #include "log.h"
34
35 #ifdef HAVE_DLFCN_H
36 #include <dlfcn.h>
37 #endif
38 #include <fcntl.h>
39 #ifdef HAVE_LINK_H
40 #include <link.h>
41 #endif
42 #ifdef HAVE_UNISTD_H
43 #include <unistd.h>
44 #endif
45 #if defined(__APPLE__)
46 #include <mach/mach_time.h>
47 #endif
48 #include <netinet/in.h>
49 #ifdef HAVE_SYS_MMAN_H
50 #include <sys/mman.h>
51 #endif
52 #include <sys/socket.h>
53 #if defined (HAVE_SYS_ZLIB)
54 #include <zlib.h>
55 #endif
56
57 #define BUFFER_SIZE (4096 * 16)
58
59 /* Worst-case size in bytes of a 64-bit value encoded with LEB128. */
60 #define LEB128_SIZE 10
61
62 /* Size of a value encoded as a single byte. */
63 #undef BYTE_SIZE // mach/i386/vm_param.h on OS X defines this to 8, but it isn't used for anything.
64 #define BYTE_SIZE 1
65
66 /* Size in bytes of the event prefix (ID + time). */
67 #define EVENT_SIZE (BYTE_SIZE + LEB128_SIZE)
68
69 static volatile gint32 runtime_inited;
70 static volatile gint32 in_shutdown;
71
72 static ProfilerConfig config;
73 static int nocalls = 0;
74 static int notraces = 0;
75 static int use_zip = 0;
76 static int do_report = 0;
77 static int do_heap_shot = 0;
78 static int max_call_depth = 0;
79 static int command_port = 0;
80 static int heapshot_requested = 0;
81 static int do_mono_sample = 0;
82 static int do_debug = 0;
83 static int do_coverage = 0;
84 static gboolean no_counters = FALSE;
85 static gboolean only_coverage = FALSE;
86 static gboolean debug_coverage = FALSE;
87 static int max_allocated_sample_hits;
88
89 #define ENABLED(EVT) (config.effective_mask & (EVT))
90
91 // Statistics for internal profiler data structures.
92 static gint32 sample_allocations_ctr,
93               buffer_allocations_ctr;
94
95 // Statistics for profiler events.
96 static gint32 sync_points_ctr,
97               heap_objects_ctr,
98               heap_starts_ctr,
99               heap_ends_ctr,
100               heap_roots_ctr,
101               gc_events_ctr,
102               gc_resizes_ctr,
103               gc_allocs_ctr,
104               gc_moves_ctr,
105               gc_handle_creations_ctr,
106               gc_handle_deletions_ctr,
107               finalize_begins_ctr,
108               finalize_ends_ctr,
109               finalize_object_begins_ctr,
110               finalize_object_ends_ctr,
111               image_loads_ctr,
112               image_unloads_ctr,
113               assembly_loads_ctr,
114               assembly_unloads_ctr,
115               class_loads_ctr,
116               class_unloads_ctr,
117               method_entries_ctr,
118               method_exits_ctr,
119               method_exception_exits_ctr,
120               method_jits_ctr,
121               code_buffers_ctr,
122               exception_throws_ctr,
123               exception_clauses_ctr,
124               monitor_contentions_ctr,
125               monitor_acquisitions_ctr,
126               monitor_failures_ctr,
127               thread_starts_ctr,
128               thread_ends_ctr,
129               thread_names_ctr,
130               domain_loads_ctr,
131               domain_unloads_ctr,
132               domain_names_ctr,
133               context_loads_ctr,
134               context_unloads_ctr,
135               sample_ubins_ctr,
136               sample_usyms_ctr,
137               sample_hits_ctr,
138               counter_descriptors_ctr,
139               counter_samples_ctr,
140               perfcounter_descriptors_ctr,
141               perfcounter_samples_ctr,
142               coverage_methods_ctr,
143               coverage_statements_ctr,
144               coverage_classes_ctr,
145               coverage_assemblies_ctr;
146
147 static MonoLinkedListSet profiler_thread_list;
148
149 /*
150  * file format:
151  * [header] [buffer]*
152  *
153  * The file is composed by a header followed by 0 or more buffers.
154  * Each buffer contains events that happened on a thread: for a given thread
155  * buffers that appear later in the file are guaranteed to contain events
156  * that happened later in time. Buffers from separate threads could be interleaved,
157  * though.
158  * Buffers are not required to be aligned.
159  *
160  * header format:
161  * [id: 4 bytes] constant value: LOG_HEADER_ID
162  * [major: 1 byte] [minor: 1 byte] major and minor version of the log profiler
163  * [format: 1 byte] version of the data format for the rest of the file
164  * [ptrsize: 1 byte] size in bytes of a pointer in the profiled program
165  * [startup time: 8 bytes] time in milliseconds since the unix epoch when the program started
166  * [timer overhead: 4 bytes] approximate overhead in nanoseconds of the timer
167  * [flags: 4 bytes] file format flags, should be 0 for now
168  * [pid: 4 bytes] pid of the profiled process
169  * [port: 2 bytes] tcp port for server if != 0
170  * [args size: 4 bytes] size of args
171  * [args: string] arguments passed to the profiler
172  * [arch size: 4 bytes] size of arch
173  * [arch: string] architecture the profiler is running on
174  * [os size: 4 bytes] size of os
175  * [os: string] operating system the profiler is running on
176  *
177  * The multiple byte integers are in little-endian format.
178  *
179  * buffer format:
180  * [buffer header] [event]*
181  * Buffers have a fixed-size header followed by 0 or more bytes of event data.
182  * Timing information and other values in the event data are usually stored
183  * as uleb128 or sleb128 integers. To save space, as noted for each item below,
184  * some data is represented as a difference between the actual value and
185  * either the last value of the same type (like for timing information) or
186  * as the difference from a value stored in a buffer header.
187  *
188  * For timing information the data is stored as uleb128, since timing
189  * increases in a monotonic way in each thread: the value is the number of
190  * nanoseconds to add to the last seen timing data in a buffer. The first value
191  * in a buffer will be calculated from the time_base field in the buffer head.
192  *
193  * Object or heap sizes are stored as uleb128.
194  * Pointer differences are stored as sleb128, instead.
195  *
196  * If an unexpected value is found, the rest of the buffer should be ignored,
197  * as generally the later values need the former to be interpreted correctly.
198  *
199  * buffer header format:
200  * [bufid: 4 bytes] constant value: BUF_ID
201  * [len: 4 bytes] size of the data following the buffer header
202  * [time_base: 8 bytes] time base in nanoseconds since an unspecified epoch
203  * [ptr_base: 8 bytes] base value for pointers
204  * [obj_base: 8 bytes] base value for object addresses
205  * [thread id: 8 bytes] system-specific thread ID (pthread_t for example)
206  * [method_base: 8 bytes] base value for MonoMethod pointers
207  *
208  * event format:
209  * [extended info: upper 4 bits] [type: lower 4 bits]
210  * [time diff: uleb128] nanoseconds since last timing
211  * [data]*
212  * The data that follows depends on type and the extended info.
213  * Type is one of the enum values in mono-profiler-log.h: TYPE_ALLOC, TYPE_GC,
214  * TYPE_METADATA, TYPE_METHOD, TYPE_EXCEPTION, TYPE_MONITOR, TYPE_HEAP.
215  * The extended info bits are interpreted based on type, see
216  * each individual event description below.
217  * strings are represented as a 0-terminated utf8 sequence.
218  *
219  * backtrace format:
220  * [num: uleb128] number of frames following
221  * [frame: sleb128]* mum MonoMethod* as a pointer difference from the last such
222  * pointer or the buffer method_base
223  *
224  * type alloc format:
225  * type: TYPE_ALLOC
226  * exinfo: flags: TYPE_ALLOC_BT
227  * [ptr: sleb128] class as a byte difference from ptr_base
228  * [obj: sleb128] object address as a byte difference from obj_base
229  * [size: uleb128] size of the object in the heap
230  * If the TYPE_ALLOC_BT flag is set, a backtrace follows.
231  *
232  * type GC format:
233  * type: TYPE_GC
234  * exinfo: one of TYPE_GC_EVENT, TYPE_GC_RESIZE, TYPE_GC_MOVE, TYPE_GC_HANDLE_CREATED[_BT],
235  * TYPE_GC_HANDLE_DESTROYED[_BT], TYPE_GC_FINALIZE_START, TYPE_GC_FINALIZE_END,
236  * TYPE_GC_FINALIZE_OBJECT_START, TYPE_GC_FINALIZE_OBJECT_END
237  * if exinfo == TYPE_GC_RESIZE
238  *      [heap_size: uleb128] new heap size
239  * if exinfo == TYPE_GC_EVENT
240  *      [event type: byte] GC event (MONO_GC_EVENT_* from profiler.h)
241  *      [generation: byte] GC generation event refers to
242  * if exinfo == TYPE_GC_MOVE
243  *      [num_objects: uleb128] number of object moves that follow
244  *      [objaddr: sleb128]+ num_objects object pointer differences from obj_base
245  *      num is always an even number: the even items are the old
246  *      addresses, the odd numbers are the respective new object addresses
247  * if exinfo == TYPE_GC_HANDLE_CREATED[_BT]
248  *      [handle_type: uleb128] GC handle type (System.Runtime.InteropServices.GCHandleType)
249  *      upper bits reserved as flags
250  *      [handle: uleb128] GC handle value
251  *      [objaddr: sleb128] object pointer differences from obj_base
252  *      If exinfo == TYPE_GC_HANDLE_CREATED_BT, a backtrace follows.
253  * if exinfo == TYPE_GC_HANDLE_DESTROYED[_BT]
254  *      [handle_type: uleb128] GC handle type (System.Runtime.InteropServices.GCHandleType)
255  *      upper bits reserved as flags
256  *      [handle: uleb128] GC handle value
257  *      If exinfo == TYPE_GC_HANDLE_DESTROYED_BT, a backtrace follows.
258  * if exinfo == TYPE_GC_FINALIZE_OBJECT_{START,END}
259  *      [object: sleb128] the object as a difference from obj_base
260  *
261  * type metadata format:
262  * type: TYPE_METADATA
263  * exinfo: one of: TYPE_END_LOAD, TYPE_END_UNLOAD (optional for TYPE_THREAD and TYPE_DOMAIN)
264  * [mtype: byte] metadata type, one of: TYPE_CLASS, TYPE_IMAGE, TYPE_ASSEMBLY, TYPE_DOMAIN,
265  * TYPE_THREAD, TYPE_CONTEXT
266  * [pointer: sleb128] pointer of the metadata type depending on mtype
267  * if mtype == TYPE_CLASS
268  *      [image: sleb128] MonoImage* as a pointer difference from ptr_base
269  *      [name: string] full class name
270  * if mtype == TYPE_IMAGE
271  *      [name: string] image file name
272  * if mtype == TYPE_ASSEMBLY
273  *      [name: string] assembly name
274  * if mtype == TYPE_DOMAIN && exinfo == 0
275  *      [name: string] domain friendly name
276  * if mtype == TYPE_CONTEXT
277  *      [domain: sleb128] domain id as pointer
278  * if mtype == TYPE_THREAD && exinfo == 0
279  *      [name: string] thread name
280  *
281  * type method format:
282  * type: TYPE_METHOD
283  * exinfo: one of: TYPE_LEAVE, TYPE_ENTER, TYPE_EXC_LEAVE, TYPE_JIT
284  * [method: sleb128] MonoMethod* as a pointer difference from the last such
285  * pointer or the buffer method_base
286  * if exinfo == TYPE_JIT
287  *      [code address: sleb128] pointer to the native code as a diff from ptr_base
288  *      [code size: uleb128] size of the generated code
289  *      [name: string] full method name
290  *
291  * type exception format:
292  * type: TYPE_EXCEPTION
293  * exinfo: TYPE_THROW_BT flag or one of: TYPE_CLAUSE
294  * if exinfo == TYPE_CLAUSE
295  *      [clause type: byte] MonoExceptionEnum enum value
296  *      [clause index: uleb128] index of the current clause
297  *      [method: sleb128] MonoMethod* as a pointer difference from the last such
298  *      pointer or the buffer method_base
299  * else
300  *      [object: sleb128] the exception object as a difference from obj_base
301  *      if exinfo has TYPE_THROW_BT set, a backtrace follows.
302  *
303  * type runtime format:
304  * type: TYPE_RUNTIME
305  * exinfo: one of: TYPE_JITHELPER
306  * if exinfo == TYPE_JITHELPER
307  *      [type: byte] MonoProfilerCodeBufferType enum value
308  *      [buffer address: sleb128] pointer to the native code as a diff from ptr_base
309  *      [buffer size: uleb128] size of the generated code
310  *      if type == MONO_PROFILER_CODE_BUFFER_SPECIFIC_TRAMPOLINE
311  *              [name: string] buffer description name
312  *
313  * type monitor format:
314  * type: TYPE_MONITOR
315  * exinfo: TYPE_MONITOR_BT flag and one of: MONO_PROFILER_MONITOR_(CONTENTION|FAIL|DONE)
316  * [object: sleb128] the lock object as a difference from obj_base
317  * if exinfo.low3bits == MONO_PROFILER_MONITOR_CONTENTION
318  *      If the TYPE_MONITOR_BT flag is set, a backtrace follows.
319  *
320  * type heap format
321  * type: TYPE_HEAP
322  * exinfo: one of TYPE_HEAP_START, TYPE_HEAP_END, TYPE_HEAP_OBJECT, TYPE_HEAP_ROOT
323  * if exinfo == TYPE_HEAP_OBJECT
324  *      [object: sleb128] the object as a difference from obj_base
325  *      [class: sleb128] the object MonoClass* as a difference from ptr_base
326  *      [size: uleb128] size of the object on the heap
327  *      [num_refs: uleb128] number of object references
328  *      each referenced objref is preceded by a uleb128 encoded offset: the
329  *      first offset is from the object address and each next offset is relative
330  *      to the previous one
331  *      [objrefs: sleb128]+ object referenced as a difference from obj_base
332  *      The same object can appear multiple times, but only the first time
333  *      with size != 0: in the other cases this data will only be used to
334  *      provide additional referenced objects.
335  * if exinfo == TYPE_HEAP_ROOT
336  *      [num_roots: uleb128] number of root references
337  *      [num_gc: uleb128] number of major gcs
338  *      [object: sleb128] the object as a difference from obj_base
339  *      [root_type: byte] the root_type: MonoProfileGCRootType (profiler.h)
340  *      [extra_info: uleb128] the extra_info value
341  *      object, root_type and extra_info are repeated num_roots times
342  *
343  * type sample format
344  * type: TYPE_SAMPLE
345  * exinfo: one of TYPE_SAMPLE_HIT, TYPE_SAMPLE_USYM, TYPE_SAMPLE_UBIN, TYPE_SAMPLE_COUNTERS_DESC, TYPE_SAMPLE_COUNTERS
346  * if exinfo == TYPE_SAMPLE_HIT
347  *      [thread: sleb128] thread id as difference from ptr_base
348  *      [count: uleb128] number of following instruction addresses
349  *      [ip: sleb128]* instruction pointer as difference from ptr_base
350  *      [mbt_count: uleb128] number of managed backtrace frames
351  *      [method: sleb128]* MonoMethod* as a pointer difference from the last such
352  *      pointer or the buffer method_base (the first such method can be also indentified by ip, but this is not neccessarily true)
353  * if exinfo == TYPE_SAMPLE_USYM
354  *      [address: sleb128] symbol address as a difference from ptr_base
355  *      [size: uleb128] symbol size (may be 0 if unknown)
356  *      [name: string] symbol name
357  * if exinfo == TYPE_SAMPLE_UBIN
358  *      [address: sleb128] address where binary has been loaded
359  *      [offset: uleb128] file offset of mapping (the same file can be mapped multiple times)
360  *      [size: uleb128] memory size
361  *      [name: string] binary name
362  * if exinfo == TYPE_SAMPLE_COUNTERS_DESC
363  *      [len: uleb128] number of counters
364  *      for i = 0 to len
365  *              [section: uleb128] section of counter
366  *              if section == MONO_COUNTER_PERFCOUNTERS:
367  *                      [section_name: string] section name of counter
368  *              [name: string] name of counter
369  *              [type: byte] type of counter
370  *              [unit: byte] unit of counter
371  *              [variance: byte] variance of counter
372  *              [index: uleb128] unique index of counter
373  * if exinfo == TYPE_SAMPLE_COUNTERS
374  *      while true:
375  *              [index: uleb128] unique index of counter
376  *              if index == 0:
377  *                      break
378  *              [type: byte] type of counter value
379  *              if type == string:
380  *                      if value == null:
381  *                              [0: uleb128] 0 -> value is null
382  *                      else:
383  *                              [1: uleb128] 1 -> value is not null
384  *                              [value: string] counter value
385  *              else:
386  *                      [value: uleb128/sleb128/double] counter value, can be sleb128, uleb128 or double (determined by using type)
387  *
388  * type coverage format
389  * type: TYPE_COVERAGE
390  * exinfo: one of TYPE_COVERAGE_METHOD, TYPE_COVERAGE_STATEMENT, TYPE_COVERAGE_ASSEMBLY, TYPE_COVERAGE_CLASS
391  * if exinfo == TYPE_COVERAGE_METHOD
392  *  [assembly: string] name of assembly
393  *  [class: string] name of the class
394  *  [name: string] name of the method
395  *  [signature: string] the signature of the method
396  *  [filename: string] the file path of the file that contains this method
397  *  [token: uleb128] the method token
398  *  [method_id: uleb128] an ID for this data to associate with the buffers of TYPE_COVERAGE_STATEMENTS
399  *  [len: uleb128] the number of TYPE_COVERAGE_BUFFERS associated with this method
400  * if exinfo == TYPE_COVERAGE_STATEMENTS
401  *  [method_id: uleb128] an the TYPE_COVERAGE_METHOD buffer to associate this with
402  *  [offset: uleb128] the il offset relative to the previous offset
403  *  [counter: uleb128] the counter for this instruction
404  *  [line: uleb128] the line of filename containing this instruction
405  *  [column: uleb128] the column containing this instruction
406  * if exinfo == TYPE_COVERAGE_ASSEMBLY
407  *  [name: string] assembly name
408  *  [guid: string] assembly GUID
409  *  [filename: string] assembly filename
410  *  [number_of_methods: uleb128] the number of methods in this assembly
411  *  [fully_covered: uleb128] the number of fully covered methods
412  *  [partially_covered: uleb128] the number of partially covered methods
413  *    currently partially_covered will always be 0, and fully_covered is the
414  *    number of methods that are fully and partially covered.
415  * if exinfo == TYPE_COVERAGE_CLASS
416  *  [name: string] assembly name
417  *  [class: string] class name
418  *  [number_of_methods: uleb128] the number of methods in this class
419  *  [fully_covered: uleb128] the number of fully covered methods
420  *  [partially_covered: uleb128] the number of partially covered methods
421  *    currently partially_covered will always be 0, and fully_covered is the
422  *    number of methods that are fully and partially covered.
423  *
424  * type meta format:
425  * type: TYPE_META
426  * exinfo: one of: TYPE_SYNC_POINT
427  * if exinfo == TYPE_SYNC_POINT
428  *      [type: byte] MonoProfilerSyncPointType enum value
429  */
430
431 // Pending data to be written to the log, for a single thread.
432 // Threads periodically flush their own LogBuffers by calling safe_send
433 typedef struct _LogBuffer LogBuffer;
434 struct _LogBuffer {
435         // Next (older) LogBuffer in processing queue
436         LogBuffer *next;
437
438         uint64_t time_base;
439         uint64_t last_time;
440         uintptr_t ptr_base;
441         uintptr_t method_base;
442         uintptr_t last_method;
443         uintptr_t obj_base;
444         uintptr_t thread_id;
445
446         // Bytes allocated for this LogBuffer
447         int size;
448
449         // Start of currently unused space in buffer
450         unsigned char* cursor;
451
452         // Pointer to start-of-structure-plus-size (for convenience)
453         unsigned char* buf_end;
454
455         // Start of data in buffer. Contents follow "buffer format" described above.
456         unsigned char buf [1];
457 };
458
459 typedef struct {
460         MonoLinkedListSetNode node;
461
462         // Convenience pointer to the profiler structure.
463         MonoProfiler *profiler;
464
465         // Was this thread added to the LLS?
466         gboolean attached;
467
468         // The current log buffer for this thread.
469         LogBuffer *buffer;
470
471         // Methods referenced by events in `buffer`, see `MethodInfo`.
472         GPtrArray *methods;
473
474         // Current call depth for enter/leave events.
475         int call_depth;
476
477         // Indicates whether this thread is currently writing to its `buffer`.
478         gboolean busy;
479
480         // Has this thread written a thread end event to `buffer`?
481         gboolean ended;
482 } MonoProfilerThread;
483
484 static uintptr_t
485 thread_id (void)
486 {
487         return (uintptr_t) mono_native_thread_id_get ();
488 }
489
490 static uintptr_t
491 process_id (void)
492 {
493 #ifdef HOST_WIN32
494         return (uintptr_t) GetCurrentProcessId ();
495 #else
496         return (uintptr_t) getpid ();
497 #endif
498 }
499
500 #ifdef __APPLE__
501 static mach_timebase_info_data_t timebase_info;
502 #elif defined (HOST_WIN32)
503 static LARGE_INTEGER pcounter_freq;
504 #endif
505
506 #define TICKS_PER_SEC 1000000000LL
507
508 static uint64_t
509 current_time (void)
510 {
511 #ifdef __APPLE__
512         uint64_t time = mach_absolute_time ();
513
514         time *= timebase_info.numer;
515         time /= timebase_info.denom;
516
517         return time;
518 #elif defined (HOST_WIN32)
519         LARGE_INTEGER value;
520
521         QueryPerformanceCounter (&value);
522
523         return value.QuadPart * TICKS_PER_SEC / pcounter_freq.QuadPart;
524 #elif defined (CLOCK_MONOTONIC)
525         struct timespec tspec;
526
527         clock_gettime (CLOCK_MONOTONIC, &tspec);
528
529         return ((uint64_t) tspec.tv_sec * TICKS_PER_SEC + tspec.tv_nsec);
530 #else
531         struct timeval tv;
532
533         gettimeofday (&tv, NULL);
534
535         return ((uint64_t) tv.tv_sec * TICKS_PER_SEC + tv.tv_usec * 1000);
536 #endif
537 }
538
539 static int timer_overhead;
540
541 static void
542 init_time (void)
543 {
544 #ifdef __APPLE__
545         mach_timebase_info (&timebase_info);
546 #elif defined (HOST_WIN32)
547         QueryPerformanceFrequency (&pcounter_freq);
548 #endif
549
550         uint64_t time_start = current_time ();
551
552         for (int i = 0; i < 256; ++i)
553                 current_time ();
554
555         uint64_t time_end = current_time ();
556
557         timer_overhead = (time_end - time_start) / 256;
558 }
559
560 /*
561  * These macros should be used when writing an event to a log buffer. They take
562  * care of a bunch of stuff that can be repetitive and error-prone, such as
563  * acquiring/releasing the buffer lock, incrementing the event counter,
564  * expanding the log buffer, processing requests, etc. They also create a scope
565  * so that it's harder to leak the LogBuffer pointer, which can be problematic
566  * as the pointer is unstable when the buffer lock isn't acquired.
567  */
568
569 #define ENTER_LOG(COUNTER, BUFFER, SIZE) \
570         do { \
571                 MonoProfilerThread *thread__ = PROF_TLS_GET (); \
572                 if (thread__->attached) \
573                         buffer_lock (); \
574                 g_assert (!thread__->busy && "Why are we trying to write a new event while already writing one?"); \
575                 thread__->busy = TRUE; \
576                 InterlockedIncrement ((COUNTER)); \
577                 LogBuffer *BUFFER = ensure_logbuf_unsafe (thread__, (SIZE))
578
579 #define EXIT_LOG_EXPLICIT(SEND, REQUESTS) \
580                 thread__->busy = FALSE; \
581                 if ((SEND)) \
582                         send_log_unsafe (TRUE); \
583                 if (thread__->attached) \
584                         buffer_unlock (); \
585                 if ((REQUESTS)) \
586                         process_requests (); \
587         } while (0)
588
589 // Pass these to EXIT_LOG_EXPLICIT () for easier reading.
590 #define DO_SEND TRUE
591 #define NO_SEND FALSE
592 #define DO_REQUESTS TRUE
593 #define NO_REQUESTS FALSE
594
595 #define EXIT_LOG EXIT_LOG_EXPLICIT (DO_SEND, DO_REQUESTS)
596
597 static volatile gint32 buffer_rwlock_count;
598 static volatile gpointer buffer_rwlock_exclusive;
599
600 // Can be used recursively.
601 static void
602 buffer_lock (void)
603 {
604         /*
605          * If the thread holding the exclusive lock tries to modify the
606          * reader count, just make it a no-op. This way, we also avoid
607          * invoking the GC safe point macros below, which could break if
608          * done from a thread that is currently the initiator of STW.
609          *
610          * In other words, we rely on the fact that the GC thread takes
611          * the exclusive lock in the gc_event () callback when the world
612          * is about to stop.
613          */
614         if (InterlockedReadPointer (&buffer_rwlock_exclusive) != (gpointer) thread_id ()) {
615                 MONO_ENTER_GC_SAFE;
616
617                 while (InterlockedReadPointer (&buffer_rwlock_exclusive))
618                         mono_thread_info_yield ();
619
620                 InterlockedIncrement (&buffer_rwlock_count);
621
622                 MONO_EXIT_GC_SAFE;
623         }
624
625         mono_memory_barrier ();
626 }
627
628 static void
629 buffer_unlock (void)
630 {
631         mono_memory_barrier ();
632
633         // See the comment in buffer_lock ().
634         if (InterlockedReadPointer (&buffer_rwlock_exclusive) == (gpointer) thread_id ())
635                 return;
636
637         g_assert (InterlockedRead (&buffer_rwlock_count) && "Why are we trying to decrement a zero reader count?");
638
639         InterlockedDecrement (&buffer_rwlock_count);
640 }
641
642 // Cannot be used recursively.
643 static void
644 buffer_lock_excl (void)
645 {
646         gpointer tid = (gpointer) thread_id ();
647
648         g_assert (InterlockedReadPointer (&buffer_rwlock_exclusive) != tid && "Why are we taking the exclusive lock twice?");
649
650         MONO_ENTER_GC_SAFE;
651
652         while (InterlockedCompareExchangePointer (&buffer_rwlock_exclusive, tid, 0))
653                 mono_thread_info_yield ();
654
655         while (InterlockedRead (&buffer_rwlock_count))
656                 mono_thread_info_yield ();
657
658         MONO_EXIT_GC_SAFE;
659
660         mono_memory_barrier ();
661 }
662
663 static void
664 buffer_unlock_excl (void)
665 {
666         mono_memory_barrier ();
667
668         g_assert (InterlockedReadPointer (&buffer_rwlock_exclusive) && "Why is the exclusive lock not held?");
669         g_assert (InterlockedReadPointer (&buffer_rwlock_exclusive) == (gpointer) thread_id () && "Why does another thread hold the exclusive lock?");
670         g_assert (!InterlockedRead (&buffer_rwlock_count) && "Why are there readers when the exclusive lock is held?");
671
672         InterlockedWritePointer (&buffer_rwlock_exclusive, NULL);
673 }
674
675 typedef struct _BinaryObject BinaryObject;
676 struct _BinaryObject {
677         BinaryObject *next;
678         void *addr;
679         char *name;
680 };
681
682 struct _MonoProfiler {
683         FILE* file;
684 #if defined (HAVE_SYS_ZLIB)
685         gzFile gzfile;
686 #endif
687         char *args;
688         uint64_t startup_time;
689         int pipe_output;
690         int command_port;
691         int server_socket;
692         int pipes [2];
693         MonoNativeThreadId helper_thread;
694         MonoNativeThreadId writer_thread;
695         MonoNativeThreadId dumper_thread;
696         volatile gint32 run_writer_thread;
697         MonoLockFreeAllocSizeClass writer_entry_size_class;
698         MonoLockFreeAllocator writer_entry_allocator;
699         MonoLockFreeQueue writer_queue;
700         MonoSemType writer_queue_sem;
701         MonoConcurrentHashTable *method_table;
702         mono_mutex_t method_table_mutex;
703         volatile gint32 run_dumper_thread;
704         MonoLockFreeQueue dumper_queue;
705         MonoSemType dumper_queue_sem;
706         MonoLockFreeAllocSizeClass sample_size_class;
707         MonoLockFreeAllocator sample_allocator;
708         MonoLockFreeQueue sample_reuse_queue;
709         BinaryObject *binary_objects;
710         GPtrArray *coverage_filters;
711 };
712
713 typedef struct {
714         MonoLockFreeQueueNode node;
715         GPtrArray *methods;
716         LogBuffer *buffer;
717 } WriterQueueEntry;
718
719 #define WRITER_ENTRY_BLOCK_SIZE (mono_pagesize ())
720
721 typedef struct {
722         MonoMethod *method;
723         MonoJitInfo *ji;
724         uint64_t time;
725 } MethodInfo;
726
727 #ifdef HOST_WIN32
728
729 #define PROF_TLS_SET(VAL) (TlsSetValue (profiler_tls, (VAL)))
730 #define PROF_TLS_GET() ((MonoProfilerThread *) TlsGetValue (profiler_tls))
731 #define PROF_TLS_INIT() (profiler_tls = TlsAlloc ())
732 #define PROF_TLS_FREE() (TlsFree (profiler_tls))
733
734 static DWORD profiler_tls;
735
736 #elif HAVE_KW_THREAD
737
738 #define PROF_TLS_SET(VAL) (profiler_tls = (VAL))
739 #define PROF_TLS_GET() (profiler_tls)
740 #define PROF_TLS_INIT()
741 #define PROF_TLS_FREE()
742
743 static __thread MonoProfilerThread *profiler_tls;
744
745 #else
746
747 #define PROF_TLS_SET(VAL) (pthread_setspecific (profiler_tls, (VAL)))
748 #define PROF_TLS_GET() ((MonoProfilerThread *) pthread_getspecific (profiler_tls))
749 #define PROF_TLS_INIT() (pthread_key_create (&profiler_tls, NULL))
750 #define PROF_TLS_FREE() (pthread_key_delete (profiler_tls))
751
752 static pthread_key_t profiler_tls;
753
754 #endif
755
756 static char*
757 pstrdup (const char *s)
758 {
759         int len = strlen (s) + 1;
760         char *p = (char *) g_malloc (len);
761         memcpy (p, s, len);
762         return p;
763 }
764
765 static void *
766 alloc_buffer (int size)
767 {
768         return mono_valloc (NULL, size, MONO_MMAP_READ | MONO_MMAP_WRITE | MONO_MMAP_ANON | MONO_MMAP_PRIVATE, MONO_MEM_ACCOUNT_PROFILER);
769 }
770
771 static void
772 free_buffer (void *buf, int size)
773 {
774         mono_vfree (buf, size, MONO_MEM_ACCOUNT_PROFILER);
775 }
776
777 static LogBuffer*
778 create_buffer (uintptr_t tid)
779 {
780         LogBuffer* buf = (LogBuffer *) alloc_buffer (BUFFER_SIZE);
781
782         InterlockedIncrement (&buffer_allocations_ctr);
783
784         buf->size = BUFFER_SIZE;
785         buf->time_base = current_time ();
786         buf->last_time = buf->time_base;
787         buf->buf_end = (unsigned char *) buf + buf->size;
788         buf->cursor = buf->buf;
789         buf->thread_id = tid;
790
791         return buf;
792 }
793
794 /*
795  * Must be called with the reader lock held if thread is the current thread, or
796  * the exclusive lock if thread is a different thread. However, if thread is
797  * the current thread, and init_thread () was called with add_to_lls = FALSE,
798  * then no locking is necessary.
799  */
800 static void
801 init_buffer_state (MonoProfilerThread *thread)
802 {
803         thread->buffer = create_buffer (thread->node.key);
804         thread->methods = NULL;
805 }
806
807 static void
808 clear_hazard_pointers (MonoThreadHazardPointers *hp)
809 {
810         mono_hazard_pointer_clear (hp, 0);
811         mono_hazard_pointer_clear (hp, 1);
812         mono_hazard_pointer_clear (hp, 2);
813 }
814
815 static MonoProfilerThread *
816 init_thread (MonoProfiler *prof, gboolean add_to_lls)
817 {
818         MonoProfilerThread *thread = PROF_TLS_GET ();
819
820         /*
821          * Sometimes we may try to initialize a thread twice. One example is the
822          * main thread: We initialize it when setting up the profiler, but we will
823          * also get a thread_start () callback for it. Another example is when
824          * attaching new threads to the runtime: We may get a gc_alloc () callback
825          * for that thread's thread object (where we initialize it), soon followed
826          * by a thread_start () callback.
827          *
828          * These cases are harmless anyhow. Just return if we've already done the
829          * initialization work.
830          */
831         if (thread)
832                 return thread;
833
834         thread = g_malloc (sizeof (MonoProfilerThread));
835         thread->node.key = thread_id ();
836         thread->profiler = prof;
837         thread->attached = add_to_lls;
838         thread->call_depth = 0;
839         thread->busy = 0;
840         thread->ended = FALSE;
841
842         init_buffer_state (thread);
843
844         /*
845          * Some internal profiler threads don't need to be cleaned up
846          * by the main thread on shutdown.
847          */
848         if (add_to_lls) {
849                 MonoThreadHazardPointers *hp = mono_hazard_pointer_get ();
850                 g_assert (mono_lls_insert (&profiler_thread_list, hp, &thread->node) && "Why can't we insert the thread in the LLS?");
851                 clear_hazard_pointers (hp);
852         }
853
854         PROF_TLS_SET (thread);
855
856         return thread;
857 }
858
859 // Only valid if init_thread () was called with add_to_lls = FALSE.
860 static void
861 deinit_thread (MonoProfilerThread *thread)
862 {
863         g_assert (!thread->attached && "Why are we manually freeing an attached thread?");
864
865         g_free (thread);
866         PROF_TLS_SET (NULL);
867 }
868
869 // Only valid if init_thread () was called with add_to_lls = FALSE.
870 static LogBuffer *
871 ensure_logbuf_unsafe (MonoProfilerThread *thread, int bytes)
872 {
873         LogBuffer *old = thread->buffer;
874
875         if (old && old->cursor + bytes + 100 < old->buf_end)
876                 return old;
877
878         LogBuffer *new_ = create_buffer (thread->node.key);
879         new_->next = old;
880         thread->buffer = new_;
881
882         return new_;
883 }
884
885 static void
886 encode_uleb128 (uint64_t value, uint8_t *buf, uint8_t **endbuf)
887 {
888         uint8_t *p = buf;
889
890         do {
891                 uint8_t b = value & 0x7f;
892                 value >>= 7;
893
894                 if (value != 0) /* more bytes to come */
895                         b |= 0x80;
896
897                 *p ++ = b;
898         } while (value);
899
900         *endbuf = p;
901 }
902
903 static void
904 encode_sleb128 (intptr_t value, uint8_t *buf, uint8_t **endbuf)
905 {
906         int more = 1;
907         int negative = (value < 0);
908         unsigned int size = sizeof (intptr_t) * 8;
909         uint8_t byte;
910         uint8_t *p = buf;
911
912         while (more) {
913                 byte = value & 0x7f;
914                 value >>= 7;
915
916                 /* the following is unnecessary if the
917                  * implementation of >>= uses an arithmetic rather
918                  * than logical shift for a signed left operand
919                  */
920                 if (negative)
921                         /* sign extend */
922                         value |= - ((intptr_t) 1 <<(size - 7));
923
924                 /* sign bit of byte is second high order bit (0x40) */
925                 if ((value == 0 && !(byte & 0x40)) ||
926                     (value == -1 && (byte & 0x40)))
927                         more = 0;
928                 else
929                         byte |= 0x80;
930
931                 *p ++= byte;
932         }
933
934         *endbuf = p;
935 }
936
937 static void
938 emit_byte (LogBuffer *logbuffer, int value)
939 {
940         logbuffer->cursor [0] = value;
941         logbuffer->cursor++;
942
943         g_assert (logbuffer->cursor <= logbuffer->buf_end && "Why are we writing past the buffer end?");
944 }
945
946 static void
947 emit_value (LogBuffer *logbuffer, int value)
948 {
949         encode_uleb128 (value, logbuffer->cursor, &logbuffer->cursor);
950
951         g_assert (logbuffer->cursor <= logbuffer->buf_end && "Why are we writing past the buffer end?");
952 }
953
954 static void
955 emit_time (LogBuffer *logbuffer, uint64_t value)
956 {
957         uint64_t tdiff = value - logbuffer->last_time;
958         encode_uleb128 (tdiff, logbuffer->cursor, &logbuffer->cursor);
959         logbuffer->last_time = value;
960
961         g_assert (logbuffer->cursor <= logbuffer->buf_end && "Why are we writing past the buffer end?");
962 }
963
964 static void
965 emit_event_time (LogBuffer *logbuffer, int event, uint64_t time)
966 {
967         emit_byte (logbuffer, event);
968         emit_time (logbuffer, time);
969 }
970
971 static void
972 emit_event (LogBuffer *logbuffer, int event)
973 {
974         emit_event_time (logbuffer, event, current_time ());
975 }
976
977 static void
978 emit_svalue (LogBuffer *logbuffer, int64_t value)
979 {
980         encode_sleb128 (value, logbuffer->cursor, &logbuffer->cursor);
981
982         g_assert (logbuffer->cursor <= logbuffer->buf_end && "Why are we writing past the buffer end?");
983 }
984
985 static void
986 emit_uvalue (LogBuffer *logbuffer, uint64_t value)
987 {
988         encode_uleb128 (value, logbuffer->cursor, &logbuffer->cursor);
989
990         g_assert (logbuffer->cursor <= logbuffer->buf_end && "Why are we writing past the buffer end?");
991 }
992
993 static void
994 emit_ptr (LogBuffer *logbuffer, void *ptr)
995 {
996         if (!logbuffer->ptr_base)
997                 logbuffer->ptr_base = (uintptr_t) ptr;
998
999         emit_svalue (logbuffer, (intptr_t) ptr - logbuffer->ptr_base);
1000
1001         g_assert (logbuffer->cursor <= logbuffer->buf_end && "Why are we writing past the buffer end?");
1002 }
1003
1004 static void
1005 emit_method_inner (LogBuffer *logbuffer, void *method)
1006 {
1007         if (!logbuffer->method_base) {
1008                 logbuffer->method_base = (intptr_t) method;
1009                 logbuffer->last_method = (intptr_t) method;
1010         }
1011
1012         encode_sleb128 ((intptr_t) ((char *) method - (char *) logbuffer->last_method), logbuffer->cursor, &logbuffer->cursor);
1013         logbuffer->last_method = (intptr_t) method;
1014
1015         g_assert (logbuffer->cursor <= logbuffer->buf_end && "Why are we writing past the buffer end?");
1016 }
1017
1018 static void
1019 register_method_local (MonoMethod *method, MonoJitInfo *ji)
1020 {
1021         MonoProfilerThread *thread = PROF_TLS_GET ();
1022
1023         if (!mono_conc_hashtable_lookup (thread->profiler->method_table, method)) {
1024                 MethodInfo *info = (MethodInfo *) g_malloc (sizeof (MethodInfo));
1025
1026                 info->method = method;
1027                 info->ji = ji;
1028                 info->time = current_time ();
1029
1030                 GPtrArray *arr = thread->methods ? thread->methods : (thread->methods = g_ptr_array_new ());
1031                 g_ptr_array_add (arr, info);
1032         }
1033 }
1034
1035 static void
1036 emit_method (LogBuffer *logbuffer, MonoMethod *method)
1037 {
1038         register_method_local (method, NULL);
1039         emit_method_inner (logbuffer, method);
1040 }
1041
1042 static void
1043 emit_obj (LogBuffer *logbuffer, void *ptr)
1044 {
1045         if (!logbuffer->obj_base)
1046                 logbuffer->obj_base = (uintptr_t) ptr >> 3;
1047
1048         emit_svalue (logbuffer, ((uintptr_t) ptr >> 3) - logbuffer->obj_base);
1049
1050         g_assert (logbuffer->cursor <= logbuffer->buf_end && "Why are we writing past the buffer end?");
1051 }
1052
1053 static void
1054 emit_string (LogBuffer *logbuffer, const char *str, size_t size)
1055 {
1056         size_t i = 0;
1057         if (str) {
1058                 for (; i < size; i++) {
1059                         if (str[i] == '\0')
1060                                 break;
1061                         emit_byte (logbuffer, str [i]);
1062                 }
1063         }
1064         emit_byte (logbuffer, '\0');
1065 }
1066
1067 static void
1068 emit_double (LogBuffer *logbuffer, double value)
1069 {
1070         int i;
1071         unsigned char buffer[8];
1072         memcpy (buffer, &value, 8);
1073 #if G_BYTE_ORDER == G_BIG_ENDIAN
1074         for (i = 7; i >= 0; i--)
1075 #else
1076         for (i = 0; i < 8; i++)
1077 #endif
1078                 emit_byte (logbuffer, buffer[i]);
1079 }
1080
1081 static char*
1082 write_int16 (char *buf, int32_t value)
1083 {
1084         int i;
1085         for (i = 0; i < 2; ++i) {
1086                 buf [i] = value;
1087                 value >>= 8;
1088         }
1089         return buf + 2;
1090 }
1091
1092 static char*
1093 write_int32 (char *buf, int32_t value)
1094 {
1095         int i;
1096         for (i = 0; i < 4; ++i) {
1097                 buf [i] = value;
1098                 value >>= 8;
1099         }
1100         return buf + 4;
1101 }
1102
1103 static char*
1104 write_int64 (char *buf, int64_t value)
1105 {
1106         int i;
1107         for (i = 0; i < 8; ++i) {
1108                 buf [i] = value;
1109                 value >>= 8;
1110         }
1111         return buf + 8;
1112 }
1113
1114 static char *
1115 write_header_string (char *p, const char *str)
1116 {
1117         size_t len = strlen (str) + 1;
1118
1119         p = write_int32 (p, len);
1120         strcpy (p, str);
1121
1122         return p + len;
1123 }
1124
1125 static void
1126 dump_header (MonoProfiler *profiler)
1127 {
1128         const char *args = profiler->args;
1129         const char *arch = mono_config_get_cpu ();
1130         const char *os = mono_config_get_os ();
1131
1132         char *hbuf = g_malloc (
1133                 sizeof (gint32) /* header id */ +
1134                 sizeof (gint8) /* major version */ +
1135                 sizeof (gint8) /* minor version */ +
1136                 sizeof (gint8) /* data version */ +
1137                 sizeof (gint8) /* word size */ +
1138                 sizeof (gint64) /* startup time */ +
1139                 sizeof (gint32) /* timer overhead */ +
1140                 sizeof (gint32) /* flags */ +
1141                 sizeof (gint32) /* process id */ +
1142                 sizeof (gint16) /* command port */ +
1143                 sizeof (gint32) + strlen (args) + 1 /* arguments */ +
1144                 sizeof (gint32) + strlen (arch) + 1 /* architecture */ +
1145                 sizeof (gint32) + strlen (os) + 1 /* operating system */
1146         );
1147         char *p = hbuf;
1148
1149         p = write_int32 (p, LOG_HEADER_ID);
1150         *p++ = LOG_VERSION_MAJOR;
1151         *p++ = LOG_VERSION_MINOR;
1152         *p++ = LOG_DATA_VERSION;
1153         *p++ = sizeof (void *);
1154         p = write_int64 (p, ((uint64_t) time (NULL)) * 1000);
1155         p = write_int32 (p, timer_overhead);
1156         p = write_int32 (p, 0); /* flags */
1157         p = write_int32 (p, process_id ());
1158         p = write_int16 (p, profiler->command_port);
1159         p = write_header_string (p, args);
1160         p = write_header_string (p, arch);
1161         p = write_header_string (p, os);
1162
1163 #if defined (HAVE_SYS_ZLIB)
1164         if (profiler->gzfile) {
1165                 gzwrite (profiler->gzfile, hbuf, p - hbuf);
1166         } else
1167 #endif
1168         {
1169                 fwrite (hbuf, p - hbuf, 1, profiler->file);
1170                 fflush (profiler->file);
1171         }
1172
1173         g_free (hbuf);
1174 }
1175
1176 /*
1177  * Must be called with the reader lock held if thread is the current thread, or
1178  * the exclusive lock if thread is a different thread. However, if thread is
1179  * the current thread, and init_thread () was called with add_to_lls = FALSE,
1180  * then no locking is necessary.
1181  */
1182 static void
1183 send_buffer (MonoProfilerThread *thread)
1184 {
1185         WriterQueueEntry *entry = mono_lock_free_alloc (&thread->profiler->writer_entry_allocator);
1186         entry->methods = thread->methods;
1187         entry->buffer = thread->buffer;
1188
1189         mono_lock_free_queue_node_init (&entry->node, FALSE);
1190
1191         mono_lock_free_queue_enqueue (&thread->profiler->writer_queue, &entry->node);
1192         mono_os_sem_post (&thread->profiler->writer_queue_sem);
1193 }
1194
1195 static void
1196 free_thread (gpointer p)
1197 {
1198         MonoProfilerThread *thread = p;
1199
1200         if (!thread->ended) {
1201                 /*
1202                  * The thread is being cleaned up by the main thread during
1203                  * shutdown. This typically happens for internal runtime
1204                  * threads. We need to synthesize a thread end event.
1205                  */
1206
1207                 InterlockedIncrement (&thread_ends_ctr);
1208
1209                 if (ENABLED (PROFLOG_THREAD_EVENTS)) {
1210                         LogBuffer *buf = ensure_logbuf_unsafe (thread,
1211                                 EVENT_SIZE /* event */ +
1212                                 BYTE_SIZE /* type */ +
1213                                 LEB128_SIZE /* tid */
1214                         );
1215
1216                         emit_event (buf, TYPE_END_UNLOAD | TYPE_METADATA);
1217                         emit_byte (buf, TYPE_THREAD);
1218                         emit_ptr (buf, (void *) thread->node.key);
1219                 }
1220         }
1221
1222         send_buffer (thread);
1223
1224         g_free (thread);
1225 }
1226
1227 static void
1228 remove_thread (MonoProfilerThread *thread)
1229 {
1230         MonoThreadHazardPointers *hp = mono_hazard_pointer_get ();
1231
1232         if (mono_lls_remove (&profiler_thread_list, hp, &thread->node))
1233                 mono_thread_hazardous_try_free (thread, free_thread);
1234
1235         clear_hazard_pointers (hp);
1236 }
1237
1238 static void
1239 dump_buffer (MonoProfiler *profiler, LogBuffer *buf)
1240 {
1241         char hbuf [128];
1242         char *p = hbuf;
1243
1244         if (buf->next)
1245                 dump_buffer (profiler, buf->next);
1246
1247         if (buf->cursor - buf->buf) {
1248                 p = write_int32 (p, BUF_ID);
1249                 p = write_int32 (p, buf->cursor - buf->buf);
1250                 p = write_int64 (p, buf->time_base);
1251                 p = write_int64 (p, buf->ptr_base);
1252                 p = write_int64 (p, buf->obj_base);
1253                 p = write_int64 (p, buf->thread_id);
1254                 p = write_int64 (p, buf->method_base);
1255
1256 #if defined (HAVE_SYS_ZLIB)
1257                 if (profiler->gzfile) {
1258                         gzwrite (profiler->gzfile, hbuf, p - hbuf);
1259                         gzwrite (profiler->gzfile, buf->buf, buf->cursor - buf->buf);
1260                 } else
1261 #endif
1262                 {
1263                         fwrite (hbuf, p - hbuf, 1, profiler->file);
1264                         fwrite (buf->buf, buf->cursor - buf->buf, 1, profiler->file);
1265                         fflush (profiler->file);
1266                 }
1267         }
1268
1269         free_buffer (buf, buf->size);
1270 }
1271
1272 static void
1273 dump_buffer_threadless (MonoProfiler *profiler, LogBuffer *buf)
1274 {
1275         for (LogBuffer *iter = buf; iter; iter = iter->next)
1276                 iter->thread_id = 0;
1277
1278         dump_buffer (profiler, buf);
1279 }
1280
1281 static void
1282 process_requests (void)
1283 {
1284         if (heapshot_requested)
1285                 mono_gc_collect (mono_gc_max_generation ());
1286 }
1287
1288 // Only valid if init_thread () was called with add_to_lls = FALSE.
1289 static void
1290 send_log_unsafe (gboolean if_needed)
1291 {
1292         MonoProfilerThread *thread = PROF_TLS_GET ();
1293
1294         if (!if_needed || (if_needed && thread->buffer->next)) {
1295                 if (!thread->attached)
1296                         for (LogBuffer *iter = thread->buffer; iter; iter = iter->next)
1297                                 iter->thread_id = 0;
1298
1299                 send_buffer (thread);
1300                 init_buffer_state (thread);
1301         }
1302 }
1303
1304 // Assumes that the exclusive lock is held.
1305 static void
1306 sync_point_flush (void)
1307 {
1308         g_assert (InterlockedReadPointer (&buffer_rwlock_exclusive) == (gpointer) thread_id () && "Why don't we hold the exclusive lock?");
1309
1310         MONO_LLS_FOREACH_SAFE (&profiler_thread_list, MonoProfilerThread, thread) {
1311                 g_assert (thread->attached && "Why is a thread in the LLS not attached?");
1312
1313                 send_buffer (thread);
1314                 init_buffer_state (thread);
1315         } MONO_LLS_FOREACH_SAFE_END
1316 }
1317
1318 // Assumes that the exclusive lock is held.
1319 static void
1320 sync_point_mark (MonoProfilerSyncPointType type)
1321 {
1322         g_assert (InterlockedReadPointer (&buffer_rwlock_exclusive) == (gpointer) thread_id () && "Why don't we hold the exclusive lock?");
1323
1324         ENTER_LOG (&sync_points_ctr, logbuffer,
1325                 EVENT_SIZE /* event */ +
1326                 LEB128_SIZE /* type */
1327         );
1328
1329         emit_event (logbuffer, TYPE_META | TYPE_SYNC_POINT);
1330         emit_byte (logbuffer, type);
1331
1332         EXIT_LOG_EXPLICIT (NO_SEND, NO_REQUESTS);
1333
1334         send_log_unsafe (FALSE);
1335 }
1336
1337 // Assumes that the exclusive lock is held.
1338 static void
1339 sync_point (MonoProfilerSyncPointType type)
1340 {
1341         sync_point_flush ();
1342         sync_point_mark (type);
1343 }
1344
1345 static int
1346 gc_reference (MonoObject *obj, MonoClass *klass, uintptr_t size, uintptr_t num, MonoObject **refs, uintptr_t *offsets, void *data)
1347 {
1348         /* account for object alignment in the heap */
1349         size += 7;
1350         size &= ~7;
1351
1352         ENTER_LOG (&heap_objects_ctr, logbuffer,
1353                 EVENT_SIZE /* event */ +
1354                 LEB128_SIZE /* obj */ +
1355                 LEB128_SIZE /* klass */ +
1356                 LEB128_SIZE /* size */ +
1357                 LEB128_SIZE /* num */ +
1358                 num * (
1359                         LEB128_SIZE /* offset */ +
1360                         LEB128_SIZE /* ref */
1361                 )
1362         );
1363
1364         emit_event (logbuffer, TYPE_HEAP_OBJECT | TYPE_HEAP);
1365         emit_obj (logbuffer, obj);
1366         emit_ptr (logbuffer, klass);
1367         emit_value (logbuffer, size);
1368         emit_value (logbuffer, num);
1369
1370         uintptr_t last_offset = 0;
1371
1372         for (int i = 0; i < num; ++i) {
1373                 emit_value (logbuffer, offsets [i] - last_offset);
1374                 last_offset = offsets [i];
1375                 emit_obj (logbuffer, refs [i]);
1376         }
1377
1378         EXIT_LOG_EXPLICIT (DO_SEND, NO_REQUESTS);
1379
1380         return 0;
1381 }
1382
1383 static unsigned int hs_mode_ms = 0;
1384 static unsigned int hs_mode_gc = 0;
1385 static unsigned int hs_mode_ondemand = 0;
1386 static unsigned int gc_count = 0;
1387 static uint64_t last_hs_time = 0;
1388 static gboolean do_heap_walk = FALSE;
1389
1390 static void
1391 heap_walk (MonoProfiler *profiler)
1392 {
1393         ENTER_LOG (&heap_starts_ctr, logbuffer,
1394                 EVENT_SIZE /* event */
1395         );
1396
1397         emit_event (logbuffer, TYPE_HEAP_START | TYPE_HEAP);
1398
1399         EXIT_LOG_EXPLICIT (DO_SEND, NO_REQUESTS);
1400
1401         mono_gc_walk_heap (0, gc_reference, NULL);
1402
1403         ENTER_LOG (&heap_ends_ctr, logbuffer,
1404                 EVENT_SIZE /* event */
1405         );
1406
1407         emit_event (logbuffer, TYPE_HEAP_END | TYPE_HEAP);
1408
1409         EXIT_LOG_EXPLICIT (DO_SEND, NO_REQUESTS);
1410 }
1411
1412 static void
1413 gc_roots (MonoProfiler *prof, int num, void **objects, int *root_types, uintptr_t *extra_info)
1414 {
1415         ENTER_LOG (&heap_roots_ctr, logbuffer,
1416                 EVENT_SIZE /* event */ +
1417                 LEB128_SIZE /* num */ +
1418                 LEB128_SIZE /* collections */ +
1419                 num * (
1420                         LEB128_SIZE /* object */ +
1421                         LEB128_SIZE /* root type */ +
1422                         LEB128_SIZE /* extra info */
1423                 )
1424         );
1425
1426         emit_event (logbuffer, TYPE_HEAP_ROOT | TYPE_HEAP);
1427         emit_value (logbuffer, num);
1428         emit_value (logbuffer, mono_gc_collection_count (mono_gc_max_generation ()));
1429
1430         for (int i = 0; i < num; ++i) {
1431                 emit_obj (logbuffer, objects [i]);
1432                 emit_byte (logbuffer, root_types [i]);
1433                 emit_value (logbuffer, extra_info [i]);
1434         }
1435
1436         EXIT_LOG_EXPLICIT (DO_SEND, NO_REQUESTS);
1437 }
1438
1439 static void
1440 gc_event (MonoProfiler *profiler, MonoGCEvent ev, int generation)
1441 {
1442         ENTER_LOG (&gc_events_ctr, logbuffer,
1443                 EVENT_SIZE /* event */ +
1444                 BYTE_SIZE /* gc event */ +
1445                 BYTE_SIZE /* generation */
1446         );
1447
1448         if (ENABLED (PROFLOG_GC_EVENTS)) {
1449                 emit_event (logbuffer, TYPE_GC_EVENT | TYPE_GC);
1450                 emit_byte (logbuffer, ev);
1451                 emit_byte (logbuffer, generation);
1452         }
1453
1454         EXIT_LOG_EXPLICIT (NO_SEND, NO_REQUESTS);
1455
1456         switch (ev) {
1457         case MONO_GC_EVENT_START:
1458                 if (generation == mono_gc_max_generation ())
1459                         gc_count++;
1460
1461                 uint64_t now = current_time ();
1462
1463                 if (hs_mode_ms && (now - last_hs_time) / 1000 * 1000 >= hs_mode_ms)
1464                         do_heap_walk = TRUE;
1465                 else if (hs_mode_gc && !(gc_count % hs_mode_gc))
1466                         do_heap_walk = TRUE;
1467                 else if (hs_mode_ondemand)
1468                         do_heap_walk = heapshot_requested;
1469                 else if (!hs_mode_ms && !hs_mode_gc && generation == mono_gc_max_generation ())
1470                         do_heap_walk = TRUE;
1471                 break;
1472         case MONO_GC_EVENT_PRE_STOP_WORLD_LOCKED:
1473                 /*
1474                  * Ensure that no thread can be in the middle of writing to
1475                  * a buffer when the world stops...
1476                  */
1477                 buffer_lock_excl ();
1478                 break;
1479         case MONO_GC_EVENT_POST_STOP_WORLD:
1480                 /*
1481                  * ... So that we now have a consistent view of all buffers.
1482                  * This allows us to flush them. We need to do this because
1483                  * they may contain object allocation events that need to be
1484                  * committed to the log file before any object move events
1485                  * that will be produced during this GC.
1486                  */
1487                 sync_point (SYNC_POINT_WORLD_STOP);
1488                 break;
1489         case MONO_GC_EVENT_PRE_START_WORLD:
1490                 if (do_heap_shot && do_heap_walk) {
1491                         heap_walk (profiler);
1492
1493                         do_heap_walk = FALSE;
1494                         heapshot_requested = 0;
1495                         last_hs_time = current_time ();
1496                 }
1497                 break;
1498         case MONO_GC_EVENT_POST_START_WORLD_UNLOCKED:
1499                 /*
1500                  * Similarly, we must now make sure that any object moves
1501                  * written to the GC thread's buffer are flushed. Otherwise,
1502                  * object allocation events for certain addresses could come
1503                  * after the move events that made those addresses available.
1504                  */
1505                 sync_point_mark (SYNC_POINT_WORLD_START);
1506
1507                 /*
1508                  * Finally, it is safe to allow other threads to write to
1509                  * their buffers again.
1510                  */
1511                 buffer_unlock_excl ();
1512                 break;
1513         default:
1514                 break;
1515         }
1516 }
1517
1518 static void
1519 gc_resize (MonoProfiler *profiler, int64_t new_size)
1520 {
1521         ENTER_LOG (&gc_resizes_ctr, logbuffer,
1522                 EVENT_SIZE /* event */ +
1523                 LEB128_SIZE /* new size */
1524         );
1525
1526         emit_event (logbuffer, TYPE_GC_RESIZE | TYPE_GC);
1527         emit_value (logbuffer, new_size);
1528
1529         EXIT_LOG_EXPLICIT (DO_SEND, NO_REQUESTS);
1530 }
1531
1532 typedef struct {
1533         int count;
1534         MonoMethod* methods [MAX_FRAMES];
1535         int32_t il_offsets [MAX_FRAMES];
1536         int32_t native_offsets [MAX_FRAMES];
1537 } FrameData;
1538
1539 static int num_frames = MAX_FRAMES;
1540
1541 static mono_bool
1542 walk_stack (MonoMethod *method, int32_t native_offset, int32_t il_offset, mono_bool managed, void* data)
1543 {
1544         FrameData *frame = (FrameData *)data;
1545         if (method && frame->count < num_frames) {
1546                 frame->il_offsets [frame->count] = il_offset;
1547                 frame->native_offsets [frame->count] = native_offset;
1548                 frame->methods [frame->count++] = method;
1549                 //printf ("In %d %s at %d (native: %d)\n", frame->count, mono_method_get_name (method), il_offset, native_offset);
1550         }
1551         return frame->count == num_frames;
1552 }
1553
1554 /*
1555  * a note about stack walks: they can cause more profiler events to fire,
1556  * so we need to make sure they don't happen after we started emitting an
1557  * event, hence the collect_bt/emit_bt split.
1558  */
1559 static void
1560 collect_bt (FrameData *data)
1561 {
1562         data->count = 0;
1563         mono_stack_walk_no_il (walk_stack, data);
1564 }
1565
1566 static void
1567 emit_bt (MonoProfiler *prof, LogBuffer *logbuffer, FrameData *data)
1568 {
1569         /* FIXME: this is actually tons of data and we should
1570          * just output it the first time and use an id the next
1571          */
1572         if (data->count > num_frames)
1573                 printf ("bad num frames: %d\n", data->count);
1574         emit_value (logbuffer, data->count);
1575         //if (*p != data.count) {
1576         //      printf ("bad num frames enc at %d: %d -> %d\n", count, data.count, *p); printf ("frames end: %p->%p\n", p, logbuffer->cursor); exit(0);}
1577         while (data->count) {
1578                 emit_method (logbuffer, data->methods [--data->count]);
1579         }
1580 }
1581
1582 static void
1583 gc_alloc (MonoProfiler *prof, MonoObject *obj, MonoClass *klass)
1584 {
1585         init_thread (prof, TRUE);
1586
1587         int do_bt = (nocalls && InterlockedRead (&runtime_inited) && !notraces) ? TYPE_ALLOC_BT : 0;
1588         FrameData data;
1589         uintptr_t len = mono_object_get_size (obj);
1590         /* account for object alignment in the heap */
1591         len += 7;
1592         len &= ~7;
1593
1594         if (do_bt)
1595                 collect_bt (&data);
1596
1597         ENTER_LOG (&gc_allocs_ctr, logbuffer,
1598                 EVENT_SIZE /* event */ +
1599                 LEB128_SIZE /* klass */ +
1600                 LEB128_SIZE /* obj */ +
1601                 LEB128_SIZE /* size */ +
1602                 (do_bt ? (
1603                         LEB128_SIZE /* count */ +
1604                         data.count * (
1605                                 LEB128_SIZE /* method */
1606                         )
1607                 ) : 0)
1608         );
1609
1610         emit_event (logbuffer, do_bt | TYPE_ALLOC);
1611         emit_ptr (logbuffer, klass);
1612         emit_obj (logbuffer, obj);
1613         emit_value (logbuffer, len);
1614
1615         if (do_bt)
1616                 emit_bt (prof, logbuffer, &data);
1617
1618         EXIT_LOG;
1619 }
1620
1621 static void
1622 gc_moves (MonoProfiler *prof, void **objects, int num)
1623 {
1624         ENTER_LOG (&gc_moves_ctr, logbuffer,
1625                 EVENT_SIZE /* event */ +
1626                 LEB128_SIZE /* num */ +
1627                 num * (
1628                         LEB128_SIZE /* object */
1629                 )
1630         );
1631
1632         emit_event (logbuffer, TYPE_GC_MOVE | TYPE_GC);
1633         emit_value (logbuffer, num);
1634
1635         for (int i = 0; i < num; ++i)
1636                 emit_obj (logbuffer, objects [i]);
1637
1638         EXIT_LOG_EXPLICIT (DO_SEND, NO_REQUESTS);
1639 }
1640
1641 static void
1642 gc_handle (MonoProfiler *prof, int op, int type, uintptr_t handle, MonoObject *obj)
1643 {
1644         int do_bt = nocalls && InterlockedRead (&runtime_inited) && !notraces;
1645         FrameData data;
1646
1647         if (do_bt)
1648                 collect_bt (&data);
1649
1650         gint32 *ctr = op == MONO_PROFILER_GC_HANDLE_CREATED ? &gc_handle_creations_ctr : &gc_handle_deletions_ctr;
1651
1652         ENTER_LOG (ctr, logbuffer,
1653                 EVENT_SIZE /* event */ +
1654                 LEB128_SIZE /* type */ +
1655                 LEB128_SIZE /* handle */ +
1656                 (op == MONO_PROFILER_GC_HANDLE_CREATED ? (
1657                         LEB128_SIZE /* obj */
1658                 ) : 0) +
1659                 (do_bt ? (
1660                         LEB128_SIZE /* count */ +
1661                         data.count * (
1662                                 LEB128_SIZE /* method */
1663                         )
1664                 ) : 0)
1665         );
1666
1667         if (op == MONO_PROFILER_GC_HANDLE_CREATED)
1668                 emit_event (logbuffer, (do_bt ? TYPE_GC_HANDLE_CREATED_BT : TYPE_GC_HANDLE_CREATED) | TYPE_GC);
1669         else if (op == MONO_PROFILER_GC_HANDLE_DESTROYED)
1670                 emit_event (logbuffer, (do_bt ? TYPE_GC_HANDLE_DESTROYED_BT : TYPE_GC_HANDLE_DESTROYED) | TYPE_GC);
1671         else
1672                 g_assert_not_reached ();
1673
1674         emit_value (logbuffer, type);
1675         emit_value (logbuffer, handle);
1676
1677         if (op == MONO_PROFILER_GC_HANDLE_CREATED)
1678                 emit_obj (logbuffer, obj);
1679
1680         if (do_bt)
1681                 emit_bt (prof, logbuffer, &data);
1682
1683         EXIT_LOG;
1684 }
1685
1686 static void
1687 finalize_begin (MonoProfiler *prof)
1688 {
1689         ENTER_LOG (&finalize_begins_ctr, buf,
1690                 EVENT_SIZE /* event */
1691         );
1692
1693         emit_event (buf, TYPE_GC_FINALIZE_START | TYPE_GC);
1694
1695         EXIT_LOG;
1696 }
1697
1698 static void
1699 finalize_end (MonoProfiler *prof)
1700 {
1701         ENTER_LOG (&finalize_ends_ctr, buf,
1702                 EVENT_SIZE /* event */
1703         );
1704
1705         emit_event (buf, TYPE_GC_FINALIZE_END | TYPE_GC);
1706
1707         EXIT_LOG;
1708 }
1709
1710 static void
1711 finalize_object_begin (MonoProfiler *prof, MonoObject *obj)
1712 {
1713         ENTER_LOG (&finalize_object_begins_ctr, buf,
1714                 EVENT_SIZE /* event */ +
1715                 LEB128_SIZE /* obj */
1716         );
1717
1718         emit_event (buf, TYPE_GC_FINALIZE_OBJECT_START | TYPE_GC);
1719         emit_obj (buf, obj);
1720
1721         EXIT_LOG;
1722 }
1723
1724 static void
1725 finalize_object_end (MonoProfiler *prof, MonoObject *obj)
1726 {
1727         ENTER_LOG (&finalize_object_ends_ctr, buf,
1728                 EVENT_SIZE /* event */ +
1729                 LEB128_SIZE /* obj */
1730         );
1731
1732         emit_event (buf, TYPE_GC_FINALIZE_OBJECT_END | TYPE_GC);
1733         emit_obj (buf, obj);
1734
1735         EXIT_LOG;
1736 }
1737
1738 static char*
1739 push_nesting (char *p, MonoClass *klass)
1740 {
1741         MonoClass *nesting;
1742         const char *name;
1743         const char *nspace;
1744         nesting = mono_class_get_nesting_type (klass);
1745         if (nesting) {
1746                 p = push_nesting (p, nesting);
1747                 *p++ = '/';
1748                 *p = 0;
1749         }
1750         name = mono_class_get_name (klass);
1751         nspace = mono_class_get_namespace (klass);
1752         if (*nspace) {
1753                 strcpy (p, nspace);
1754                 p += strlen (nspace);
1755                 *p++ = '.';
1756                 *p = 0;
1757         }
1758         strcpy (p, name);
1759         p += strlen (name);
1760         return p;
1761 }
1762
1763 static char*
1764 type_name (MonoClass *klass)
1765 {
1766         char buf [1024];
1767         char *p;
1768         push_nesting (buf, klass);
1769         p = (char *) g_malloc (strlen (buf) + 1);
1770         strcpy (p, buf);
1771         return p;
1772 }
1773
1774 static void
1775 image_loaded (MonoProfiler *prof, MonoImage *image, int result)
1776 {
1777         if (result != MONO_PROFILE_OK)
1778                 return;
1779
1780         const char *name = mono_image_get_filename (image);
1781         int nlen = strlen (name) + 1;
1782
1783         ENTER_LOG (&image_loads_ctr, logbuffer,
1784                 EVENT_SIZE /* event */ +
1785                 BYTE_SIZE /* type */ +
1786                 LEB128_SIZE /* image */ +
1787                 nlen /* name */
1788         );
1789
1790         emit_event (logbuffer, TYPE_END_LOAD | TYPE_METADATA);
1791         emit_byte (logbuffer, TYPE_IMAGE);
1792         emit_ptr (logbuffer, image);
1793         memcpy (logbuffer->cursor, name, nlen);
1794         logbuffer->cursor += nlen;
1795
1796         EXIT_LOG;
1797 }
1798
1799 static void
1800 image_unloaded (MonoProfiler *prof, MonoImage *image)
1801 {
1802         const char *name = mono_image_get_filename (image);
1803         int nlen = strlen (name) + 1;
1804
1805         ENTER_LOG (&image_unloads_ctr, logbuffer,
1806                 EVENT_SIZE /* event */ +
1807                 BYTE_SIZE /* type */ +
1808                 LEB128_SIZE /* image */ +
1809                 nlen /* name */
1810         );
1811
1812         emit_event (logbuffer, TYPE_END_UNLOAD | TYPE_METADATA);
1813         emit_byte (logbuffer, TYPE_IMAGE);
1814         emit_ptr (logbuffer, image);
1815         memcpy (logbuffer->cursor, name, nlen);
1816         logbuffer->cursor += nlen;
1817
1818         EXIT_LOG;
1819 }
1820
1821 static void
1822 assembly_loaded (MonoProfiler *prof, MonoAssembly *assembly, int result)
1823 {
1824         if (result != MONO_PROFILE_OK)
1825                 return;
1826
1827         char *name = mono_stringify_assembly_name (mono_assembly_get_name (assembly));
1828         int nlen = strlen (name) + 1;
1829
1830         ENTER_LOG (&assembly_loads_ctr, logbuffer,
1831                 EVENT_SIZE /* event */ +
1832                 BYTE_SIZE /* type */ +
1833                 LEB128_SIZE /* assembly */ +
1834                 nlen /* name */
1835         );
1836
1837         emit_event (logbuffer, TYPE_END_LOAD | TYPE_METADATA);
1838         emit_byte (logbuffer, TYPE_ASSEMBLY);
1839         emit_ptr (logbuffer, assembly);
1840         memcpy (logbuffer->cursor, name, nlen);
1841         logbuffer->cursor += nlen;
1842
1843         EXIT_LOG;
1844
1845         mono_free (name);
1846 }
1847
1848 static void
1849 assembly_unloaded (MonoProfiler *prof, MonoAssembly *assembly)
1850 {
1851         char *name = mono_stringify_assembly_name (mono_assembly_get_name (assembly));
1852         int nlen = strlen (name) + 1;
1853
1854         ENTER_LOG (&assembly_unloads_ctr, logbuffer,
1855                 EVENT_SIZE /* event */ +
1856                 BYTE_SIZE /* type */ +
1857                 LEB128_SIZE /* assembly */ +
1858                 nlen /* name */
1859         );
1860
1861         emit_event (logbuffer, TYPE_END_UNLOAD | TYPE_METADATA);
1862         emit_byte (logbuffer, TYPE_ASSEMBLY);
1863         emit_ptr (logbuffer, assembly);
1864         memcpy (logbuffer->cursor, name, nlen);
1865         logbuffer->cursor += nlen;
1866
1867         EXIT_LOG;
1868
1869         mono_free (name);
1870 }
1871
1872 static void
1873 class_loaded (MonoProfiler *prof, MonoClass *klass, int result)
1874 {
1875         if (result != MONO_PROFILE_OK)
1876                 return;
1877
1878         char *name;
1879
1880         if (InterlockedRead (&runtime_inited))
1881                 name = mono_type_get_name (mono_class_get_type (klass));
1882         else
1883                 name = type_name (klass);
1884
1885         int nlen = strlen (name) + 1;
1886         MonoImage *image = mono_class_get_image (klass);
1887
1888         ENTER_LOG (&class_loads_ctr, logbuffer,
1889                 EVENT_SIZE /* event */ +
1890                 BYTE_SIZE /* type */ +
1891                 LEB128_SIZE /* klass */ +
1892                 LEB128_SIZE /* image */ +
1893                 nlen /* name */
1894         );
1895
1896         emit_event (logbuffer, TYPE_END_LOAD | TYPE_METADATA);
1897         emit_byte (logbuffer, TYPE_CLASS);
1898         emit_ptr (logbuffer, klass);
1899         emit_ptr (logbuffer, image);
1900         memcpy (logbuffer->cursor, name, nlen);
1901         logbuffer->cursor += nlen;
1902
1903         EXIT_LOG;
1904
1905         if (runtime_inited)
1906                 mono_free (name);
1907         else
1908                 g_free (name);
1909 }
1910
1911 static void
1912 class_unloaded (MonoProfiler *prof, MonoClass *klass)
1913 {
1914         char *name;
1915
1916         if (InterlockedRead (&runtime_inited))
1917                 name = mono_type_get_name (mono_class_get_type (klass));
1918         else
1919                 name = type_name (klass);
1920
1921         int nlen = strlen (name) + 1;
1922         MonoImage *image = mono_class_get_image (klass);
1923
1924         ENTER_LOG (&class_unloads_ctr, logbuffer,
1925                 EVENT_SIZE /* event */ +
1926                 BYTE_SIZE /* type */ +
1927                 LEB128_SIZE /* klass */ +
1928                 LEB128_SIZE /* image */ +
1929                 nlen /* name */
1930         );
1931
1932         emit_event (logbuffer, TYPE_END_UNLOAD | TYPE_METADATA);
1933         emit_byte (logbuffer, TYPE_CLASS);
1934         emit_ptr (logbuffer, klass);
1935         emit_ptr (logbuffer, image);
1936         memcpy (logbuffer->cursor, name, nlen);
1937         logbuffer->cursor += nlen;
1938
1939         EXIT_LOG;
1940
1941         if (runtime_inited)
1942                 mono_free (name);
1943         else
1944                 g_free (name);
1945 }
1946
1947 static void process_method_enter_coverage (MonoProfiler *prof, MonoMethod *method);
1948
1949 static void
1950 method_enter (MonoProfiler *prof, MonoMethod *method)
1951 {
1952         process_method_enter_coverage (prof, method);
1953
1954         if (!only_coverage && PROF_TLS_GET ()->call_depth++ <= max_call_depth) {
1955                 ENTER_LOG (&method_entries_ctr, logbuffer,
1956                         EVENT_SIZE /* event */ +
1957                         LEB128_SIZE /* method */
1958                 );
1959
1960                 emit_event (logbuffer, TYPE_ENTER | TYPE_METHOD);
1961                 emit_method (logbuffer, method);
1962
1963                 EXIT_LOG;
1964         }
1965 }
1966
1967 static void
1968 method_leave (MonoProfiler *prof, MonoMethod *method)
1969 {
1970         if (!only_coverage && --PROF_TLS_GET ()->call_depth <= max_call_depth) {
1971                 ENTER_LOG (&method_exits_ctr, logbuffer,
1972                         EVENT_SIZE /* event */ +
1973                         LEB128_SIZE /* method */
1974                 );
1975
1976                 emit_event (logbuffer, TYPE_LEAVE | TYPE_METHOD);
1977                 emit_method (logbuffer, method);
1978
1979                 EXIT_LOG;
1980         }
1981 }
1982
1983 static void
1984 method_exc_leave (MonoProfiler *prof, MonoMethod *method)
1985 {
1986         if (!only_coverage && !nocalls && --PROF_TLS_GET ()->call_depth <= max_call_depth) {
1987                 ENTER_LOG (&method_exception_exits_ctr, logbuffer,
1988                         EVENT_SIZE /* event */ +
1989                         LEB128_SIZE /* method */
1990                 );
1991
1992                 emit_event (logbuffer, TYPE_EXC_LEAVE | TYPE_METHOD);
1993                 emit_method (logbuffer, method);
1994
1995                 EXIT_LOG;
1996         }
1997 }
1998
1999 static void
2000 method_jitted (MonoProfiler *prof, MonoMethod *method, MonoJitInfo *ji, int result)
2001 {
2002         if (result != MONO_PROFILE_OK)
2003                 return;
2004
2005         register_method_local (method, ji);
2006
2007         process_requests ();
2008 }
2009
2010 static void
2011 code_buffer_new (MonoProfiler *prof, void *buffer, int size, MonoProfilerCodeBufferType type, void *data)
2012 {
2013         char *name;
2014         int nlen;
2015
2016         if (type == MONO_PROFILER_CODE_BUFFER_SPECIFIC_TRAMPOLINE) {
2017                 name = (char *) data;
2018                 nlen = strlen (name) + 1;
2019         } else {
2020                 name = NULL;
2021                 nlen = 0;
2022         }
2023
2024         ENTER_LOG (&code_buffers_ctr, logbuffer,
2025                 EVENT_SIZE /* event */ +
2026                 BYTE_SIZE /* type */ +
2027                 LEB128_SIZE /* buffer */ +
2028                 LEB128_SIZE /* size */ +
2029                 (name ? (
2030                         nlen /* name */
2031                 ) : 0)
2032         );
2033
2034         emit_event (logbuffer, TYPE_JITHELPER | TYPE_RUNTIME);
2035         emit_byte (logbuffer, type);
2036         emit_ptr (logbuffer, buffer);
2037         emit_value (logbuffer, size);
2038
2039         if (name) {
2040                 memcpy (logbuffer->cursor, name, nlen);
2041                 logbuffer->cursor += nlen;
2042         }
2043
2044         EXIT_LOG;
2045 }
2046
2047 static void
2048 throw_exc (MonoProfiler *prof, MonoObject *object)
2049 {
2050         int do_bt = (nocalls && InterlockedRead (&runtime_inited) && !notraces) ? TYPE_THROW_BT : 0;
2051         FrameData data;
2052
2053         if (do_bt)
2054                 collect_bt (&data);
2055
2056         ENTER_LOG (&exception_throws_ctr, logbuffer,
2057                 EVENT_SIZE /* event */ +
2058                 LEB128_SIZE /* object */ +
2059                 (do_bt ? (
2060                         LEB128_SIZE /* count */ +
2061                         data.count * (
2062                                 LEB128_SIZE /* method */
2063                         )
2064                 ) : 0)
2065         );
2066
2067         emit_event (logbuffer, do_bt | TYPE_EXCEPTION);
2068         emit_obj (logbuffer, object);
2069
2070         if (do_bt)
2071                 emit_bt (prof, logbuffer, &data);
2072
2073         EXIT_LOG;
2074 }
2075
2076 static void
2077 clause_exc (MonoProfiler *prof, MonoMethod *method, int clause_type, int clause_num)
2078 {
2079         ENTER_LOG (&exception_clauses_ctr, logbuffer,
2080                 EVENT_SIZE /* event */ +
2081                 BYTE_SIZE /* clause type */ +
2082                 LEB128_SIZE /* clause num */ +
2083                 LEB128_SIZE /* method */
2084         );
2085
2086         emit_event (logbuffer, TYPE_EXCEPTION | TYPE_CLAUSE);
2087         emit_byte (logbuffer, clause_type);
2088         emit_value (logbuffer, clause_num);
2089         emit_method (logbuffer, method);
2090
2091         EXIT_LOG;
2092 }
2093
2094 static void
2095 monitor_event (MonoProfiler *profiler, MonoObject *object, MonoProfilerMonitorEvent event)
2096 {
2097         int do_bt = (nocalls && InterlockedRead (&runtime_inited) && !notraces && event == MONO_PROFILER_MONITOR_CONTENTION) ? TYPE_MONITOR_BT : 0;
2098         FrameData data;
2099
2100         if (do_bt)
2101                 collect_bt (&data);
2102
2103         gint32 *ctr;
2104
2105         switch (event) {
2106         case MONO_PROFILER_MONITOR_CONTENTION:
2107                 ctr = &monitor_contentions_ctr;
2108                 break;
2109         case MONO_PROFILER_MONITOR_DONE:
2110                 ctr = &monitor_acquisitions_ctr;
2111                 break;
2112         case MONO_PROFILER_MONITOR_FAIL:
2113                 ctr = &monitor_failures_ctr;
2114                 break;
2115         default:
2116                 g_assert_not_reached ();
2117                 break;
2118         }
2119
2120         ENTER_LOG (ctr, logbuffer,
2121                 EVENT_SIZE /* event */ +
2122                 LEB128_SIZE /* object */ +
2123                 (do_bt ? (
2124                         LEB128_SIZE /* count */ +
2125                         data.count * (
2126                                 LEB128_SIZE /* method */
2127                         )
2128                 ) : 0)
2129         );
2130
2131         emit_event (logbuffer, (event << 4) | do_bt | TYPE_MONITOR);
2132         emit_obj (logbuffer, object);
2133
2134         if (do_bt)
2135                 emit_bt (profiler, logbuffer, &data);
2136
2137         EXIT_LOG;
2138 }
2139
2140 static void
2141 thread_start (MonoProfiler *prof, uintptr_t tid)
2142 {
2143         init_thread (prof, TRUE);
2144
2145         if (ENABLED (PROFLOG_THREAD_EVENTS)) {
2146                 ENTER_LOG (&thread_starts_ctr, logbuffer,
2147                         EVENT_SIZE /* event */ +
2148                         BYTE_SIZE /* type */ +
2149                         LEB128_SIZE /* tid */
2150                 );
2151
2152                 emit_event (logbuffer, TYPE_END_LOAD | TYPE_METADATA);
2153                 emit_byte (logbuffer, TYPE_THREAD);
2154                 emit_ptr (logbuffer, (void*) tid);
2155
2156                 EXIT_LOG;
2157         }
2158 }
2159
2160 static void
2161 thread_end (MonoProfiler *prof, uintptr_t tid)
2162 {
2163         if (ENABLED (PROFLOG_THREAD_EVENTS)) {
2164                 ENTER_LOG (&thread_ends_ctr, logbuffer,
2165                         EVENT_SIZE /* event */ +
2166                         BYTE_SIZE /* type */ +
2167                         LEB128_SIZE /* tid */
2168                 );
2169
2170                 emit_event (logbuffer, TYPE_END_UNLOAD | TYPE_METADATA);
2171                 emit_byte (logbuffer, TYPE_THREAD);
2172                 emit_ptr (logbuffer, (void*) tid);
2173
2174                 EXIT_LOG_EXPLICIT (NO_SEND, NO_REQUESTS);
2175         }
2176
2177         MonoProfilerThread *thread = PROF_TLS_GET ();
2178
2179         thread->ended = TRUE;
2180         remove_thread (thread);
2181
2182         PROF_TLS_SET (NULL);
2183 }
2184
2185 static void
2186 thread_name (MonoProfiler *prof, uintptr_t tid, const char *name)
2187 {
2188         int len = strlen (name) + 1;
2189
2190         if (ENABLED (PROFLOG_THREAD_EVENTS)) {
2191                 ENTER_LOG (&thread_names_ctr, logbuffer,
2192                         EVENT_SIZE /* event */ +
2193                         BYTE_SIZE /* type */ +
2194                         LEB128_SIZE /* tid */ +
2195                         len /* name */
2196                 );
2197
2198                 emit_event (logbuffer, TYPE_METADATA);
2199                 emit_byte (logbuffer, TYPE_THREAD);
2200                 emit_ptr (logbuffer, (void*)tid);
2201                 memcpy (logbuffer->cursor, name, len);
2202                 logbuffer->cursor += len;
2203
2204                 EXIT_LOG;
2205         }
2206 }
2207
2208 static void
2209 domain_loaded (MonoProfiler *prof, MonoDomain *domain, int result)
2210 {
2211         if (result != MONO_PROFILE_OK)
2212                 return;
2213
2214         ENTER_LOG (&domain_loads_ctr, logbuffer,
2215                 EVENT_SIZE /* event */ +
2216                 BYTE_SIZE /* type */ +
2217                 LEB128_SIZE /* domain id */
2218         );
2219
2220         emit_event (logbuffer, TYPE_END_LOAD | TYPE_METADATA);
2221         emit_byte (logbuffer, TYPE_DOMAIN);
2222         emit_ptr (logbuffer, (void*)(uintptr_t) mono_domain_get_id (domain));
2223
2224         EXIT_LOG;
2225 }
2226
2227 static void
2228 domain_unloaded (MonoProfiler *prof, MonoDomain *domain)
2229 {
2230         ENTER_LOG (&domain_unloads_ctr, logbuffer,
2231                 EVENT_SIZE /* event */ +
2232                 BYTE_SIZE /* type */ +
2233                 LEB128_SIZE /* domain id */
2234         );
2235
2236         emit_event (logbuffer, TYPE_END_UNLOAD | TYPE_METADATA);
2237         emit_byte (logbuffer, TYPE_DOMAIN);
2238         emit_ptr (logbuffer, (void*)(uintptr_t) mono_domain_get_id (domain));
2239
2240         EXIT_LOG;
2241 }
2242
2243 static void
2244 domain_name (MonoProfiler *prof, MonoDomain *domain, const char *name)
2245 {
2246         int nlen = strlen (name) + 1;
2247
2248         ENTER_LOG (&domain_names_ctr, logbuffer,
2249                 EVENT_SIZE /* event */ +
2250                 BYTE_SIZE /* type */ +
2251                 LEB128_SIZE /* domain id */ +
2252                 nlen /* name */
2253         );
2254
2255         emit_event (logbuffer, TYPE_METADATA);
2256         emit_byte (logbuffer, TYPE_DOMAIN);
2257         emit_ptr (logbuffer, (void*)(uintptr_t) mono_domain_get_id (domain));
2258         memcpy (logbuffer->cursor, name, nlen);
2259         logbuffer->cursor += nlen;
2260
2261         EXIT_LOG;
2262 }
2263
2264 static void
2265 context_loaded (MonoProfiler *prof, MonoAppContext *context)
2266 {
2267         ENTER_LOG (&context_loads_ctr, logbuffer,
2268                 EVENT_SIZE /* event */ +
2269                 BYTE_SIZE /* type */ +
2270                 LEB128_SIZE /* context id */ +
2271                 LEB128_SIZE /* domain id */
2272         );
2273
2274         emit_event (logbuffer, TYPE_END_LOAD | TYPE_METADATA);
2275         emit_byte (logbuffer, TYPE_CONTEXT);
2276         emit_ptr (logbuffer, (void*)(uintptr_t) mono_context_get_id (context));
2277         emit_ptr (logbuffer, (void*)(uintptr_t) mono_context_get_domain_id (context));
2278
2279         EXIT_LOG;
2280 }
2281
2282 static void
2283 context_unloaded (MonoProfiler *prof, MonoAppContext *context)
2284 {
2285         ENTER_LOG (&context_unloads_ctr, logbuffer,
2286                 EVENT_SIZE /* event */ +
2287                 BYTE_SIZE /* type */ +
2288                 LEB128_SIZE /* context id */ +
2289                 LEB128_SIZE /* domain id */
2290         );
2291
2292         emit_event (logbuffer, TYPE_END_UNLOAD | TYPE_METADATA);
2293         emit_byte (logbuffer, TYPE_CONTEXT);
2294         emit_ptr (logbuffer, (void*)(uintptr_t) mono_context_get_id (context));
2295         emit_ptr (logbuffer, (void*)(uintptr_t) mono_context_get_domain_id (context));
2296
2297         EXIT_LOG;
2298 }
2299
2300 typedef struct {
2301         MonoMethod *method;
2302         MonoDomain *domain;
2303         void *base_address;
2304         int offset;
2305 } AsyncFrameInfo;
2306
2307 typedef struct {
2308         MonoLockFreeQueueNode node;
2309         MonoProfiler *prof;
2310         uint64_t time;
2311         uintptr_t tid;
2312         void *ip;
2313         int count;
2314         AsyncFrameInfo frames [MONO_ZERO_LEN_ARRAY];
2315 } SampleHit;
2316
2317 static mono_bool
2318 async_walk_stack (MonoMethod *method, MonoDomain *domain, void *base_address, int offset, void *data)
2319 {
2320         SampleHit *sample = (SampleHit *) data;
2321
2322         if (sample->count < num_frames) {
2323                 int i = sample->count;
2324
2325                 sample->frames [i].method = method;
2326                 sample->frames [i].domain = domain;
2327                 sample->frames [i].base_address = base_address;
2328                 sample->frames [i].offset = offset;
2329
2330                 sample->count++;
2331         }
2332
2333         return sample->count == num_frames;
2334 }
2335
2336 #define SAMPLE_SLOT_SIZE(FRAMES) (sizeof (SampleHit) + sizeof (AsyncFrameInfo) * (FRAMES - MONO_ZERO_LEN_ARRAY))
2337 #define SAMPLE_BLOCK_SIZE (mono_pagesize ())
2338
2339 static void
2340 enqueue_sample_hit (gpointer p)
2341 {
2342         SampleHit *sample = p;
2343
2344         mono_lock_free_queue_node_unpoison (&sample->node);
2345         mono_lock_free_queue_enqueue (&sample->prof->dumper_queue, &sample->node);
2346         mono_os_sem_post (&sample->prof->dumper_queue_sem);
2347 }
2348
2349 static void
2350 mono_sample_hit (MonoProfiler *profiler, unsigned char *ip, void *context)
2351 {
2352         /*
2353          * Please note: We rely on the runtime loading the profiler with
2354          * MONO_DL_EAGER (RTLD_NOW) so that references to runtime functions within
2355          * this function (and its siblings) are resolved when the profiler is
2356          * loaded. Otherwise, we would potentially invoke the dynamic linker when
2357          * invoking runtime functions, which is not async-signal-safe.
2358          */
2359
2360         if (InterlockedRead (&in_shutdown))
2361                 return;
2362
2363         SampleHit *sample = (SampleHit *) mono_lock_free_queue_dequeue (&profiler->sample_reuse_queue);
2364
2365         if (!sample) {
2366                 /*
2367                  * If we're out of reusable sample events and we're not allowed to
2368                  * allocate more, we have no choice but to drop the event.
2369                  */
2370                 if (InterlockedRead (&sample_allocations_ctr) >= max_allocated_sample_hits)
2371                         return;
2372
2373                 sample = mono_lock_free_alloc (&profiler->sample_allocator);
2374                 sample->prof = profiler;
2375                 mono_lock_free_queue_node_init (&sample->node, TRUE);
2376
2377                 InterlockedIncrement (&sample_allocations_ctr);
2378         }
2379
2380         sample->count = 0;
2381         mono_stack_walk_async_safe (&async_walk_stack, context, sample);
2382
2383         sample->time = current_time ();
2384         sample->tid = thread_id ();
2385         sample->ip = ip;
2386
2387         mono_thread_hazardous_try_free (sample, enqueue_sample_hit);
2388 }
2389
2390 static uintptr_t *code_pages = 0;
2391 static int num_code_pages = 0;
2392 static int size_code_pages = 0;
2393 #define CPAGE_SHIFT (9)
2394 #define CPAGE_SIZE (1 << CPAGE_SHIFT)
2395 #define CPAGE_MASK (~(CPAGE_SIZE - 1))
2396 #define CPAGE_ADDR(p) ((p) & CPAGE_MASK)
2397
2398 static uintptr_t
2399 add_code_page (uintptr_t *hash, uintptr_t hsize, uintptr_t page)
2400 {
2401         uintptr_t i;
2402         uintptr_t start_pos;
2403         start_pos = (page >> CPAGE_SHIFT) % hsize;
2404         i = start_pos;
2405         do {
2406                 if (hash [i] && CPAGE_ADDR (hash [i]) == CPAGE_ADDR (page)) {
2407                         return 0;
2408                 } else if (!hash [i]) {
2409                         hash [i] = page;
2410                         return 1;
2411                 }
2412                 /* wrap around */
2413                 if (++i == hsize)
2414                         i = 0;
2415         } while (i != start_pos);
2416         /* should not happen */
2417         printf ("failed code page store\n");
2418         return 0;
2419 }
2420
2421 static void
2422 add_code_pointer (uintptr_t ip)
2423 {
2424         uintptr_t i;
2425         if (num_code_pages * 2 >= size_code_pages) {
2426                 uintptr_t *n;
2427                 uintptr_t old_size = size_code_pages;
2428                 size_code_pages *= 2;
2429                 if (size_code_pages == 0)
2430                         size_code_pages = 16;
2431                 n = (uintptr_t *) g_calloc (sizeof (uintptr_t) * size_code_pages, 1);
2432                 for (i = 0; i < old_size; ++i) {
2433                         if (code_pages [i])
2434                                 add_code_page (n, size_code_pages, code_pages [i]);
2435                 }
2436                 if (code_pages)
2437                         g_free (code_pages);
2438                 code_pages = n;
2439         }
2440         num_code_pages += add_code_page (code_pages, size_code_pages, ip & CPAGE_MASK);
2441 }
2442
2443 /* ELF code crashes on some systems. */
2444 //#if defined(HAVE_DL_ITERATE_PHDR) && defined(ELFMAG0)
2445 #if 0
2446 static void
2447 dump_ubin (MonoProfiler *prof, const char *filename, uintptr_t load_addr, uint64_t offset, uintptr_t size)
2448 {
2449         int len = strlen (filename) + 1;
2450
2451         ENTER_LOG (&sample_ubins_ctr, logbuffer,
2452                 EVENT_SIZE /* event */ +
2453                 LEB128_SIZE /* load address */ +
2454                 LEB128_SIZE /* offset */ +
2455                 LEB128_SIZE /* size */ +
2456                 nlen /* file name */
2457         );
2458
2459         emit_event (logbuffer, TYPE_SAMPLE | TYPE_SAMPLE_UBIN);
2460         emit_svalue (logbuffer, load_addr);
2461         emit_uvalue (logbuffer, offset);
2462         emit_uvalue (logbuffer, size);
2463         memcpy (logbuffer->cursor, filename, len);
2464         logbuffer->cursor += len;
2465
2466         EXIT_LOG_EXPLICIT (DO_SEND, NO_REQUESTS);
2467 }
2468 #endif
2469
2470 static void
2471 dump_usym (MonoProfiler *prof, const char *name, uintptr_t value, uintptr_t size)
2472 {
2473         int len = strlen (name) + 1;
2474
2475         ENTER_LOG (&sample_usyms_ctr, logbuffer,
2476                 EVENT_SIZE /* event */ +
2477                 LEB128_SIZE /* value */ +
2478                 LEB128_SIZE /* size */ +
2479                 len /* name */
2480         );
2481
2482         emit_event (logbuffer, TYPE_SAMPLE | TYPE_SAMPLE_USYM);
2483         emit_ptr (logbuffer, (void*)value);
2484         emit_value (logbuffer, size);
2485         memcpy (logbuffer->cursor, name, len);
2486         logbuffer->cursor += len;
2487
2488         EXIT_LOG_EXPLICIT (DO_SEND, NO_REQUESTS);
2489 }
2490
2491 /* ELF code crashes on some systems. */
2492 //#if defined(ELFMAG0)
2493 #if 0
2494
2495 #if SIZEOF_VOID_P == 4
2496 #define ELF_WSIZE 32
2497 #else
2498 #define ELF_WSIZE 64
2499 #endif
2500 #ifndef ElfW
2501 #define ElfW(type)      _ElfW (Elf, ELF_WSIZE, type)
2502 #define _ElfW(e,w,t)    _ElfW_1 (e, w, _##t)
2503 #define _ElfW_1(e,w,t)  e##w##t
2504 #endif
2505
2506 static void
2507 dump_elf_symbols (MonoProfiler *prof, ElfW(Sym) *symbols, int num_symbols, const char *strtab, void *load_addr)
2508 {
2509         int i;
2510         for (i = 0; i < num_symbols; ++i) {
2511                 const char* sym;
2512                 sym =  strtab + symbols [i].st_name;
2513                 if (!symbols [i].st_name || !symbols [i].st_size || (symbols [i].st_info & 0xf) != STT_FUNC)
2514                         continue;
2515                 //printf ("symbol %s at %d\n", sym, symbols [i].st_value);
2516                 dump_usym (sym, (uintptr_t)load_addr + symbols [i].st_value, symbols [i].st_size);
2517         }
2518 }
2519
2520 static int
2521 read_elf_symbols (MonoProfiler *prof, const char *filename, void *load_addr)
2522 {
2523         int fd, i;
2524         void *data;
2525         struct stat statb;
2526         uint64_t file_size;
2527         ElfW(Ehdr) *header;
2528         ElfW(Shdr) *sheader;
2529         ElfW(Shdr) *shstrtabh;
2530         ElfW(Shdr) *symtabh = NULL;
2531         ElfW(Shdr) *strtabh = NULL;
2532         ElfW(Sym) *symbols = NULL;
2533         const char *strtab;
2534         int num_symbols;
2535
2536         fd = open (filename, O_RDONLY);
2537         if (fd < 0)
2538                 return 0;
2539         if (fstat (fd, &statb) != 0) {
2540                 close (fd);
2541                 return 0;
2542         }
2543         file_size = statb.st_size;
2544         data = mmap (NULL, file_size, PROT_READ, MAP_PRIVATE, fd, 0);
2545         close (fd);
2546         if (data == MAP_FAILED)
2547                 return 0;
2548         header = data;
2549         if (header->e_ident [EI_MAG0] != ELFMAG0 ||
2550                         header->e_ident [EI_MAG1] != ELFMAG1 ||
2551                         header->e_ident [EI_MAG2] != ELFMAG2 ||
2552                         header->e_ident [EI_MAG3] != ELFMAG3 ) {
2553                 munmap (data, file_size);
2554                 return 0;
2555         }
2556         sheader = (void*)((char*)data + header->e_shoff);
2557         shstrtabh = (void*)((char*)sheader + (header->e_shentsize * header->e_shstrndx));
2558         strtab = (const char*)data + shstrtabh->sh_offset;
2559         for (i = 0; i < header->e_shnum; ++i) {
2560                 //printf ("section header: %d\n", sheader->sh_type);
2561                 if (sheader->sh_type == SHT_SYMTAB) {
2562                         symtabh = sheader;
2563                         strtabh = (void*)((char*)data + header->e_shoff + sheader->sh_link * header->e_shentsize);
2564                         /*printf ("symtab section header: %d, .strstr: %d\n", i, sheader->sh_link);*/
2565                         break;
2566                 }
2567                 sheader = (void*)((char*)sheader + header->e_shentsize);
2568         }
2569         if (!symtabh || !strtabh) {
2570                 munmap (data, file_size);
2571                 return 0;
2572         }
2573         strtab = (const char*)data + strtabh->sh_offset;
2574         num_symbols = symtabh->sh_size / symtabh->sh_entsize;
2575         symbols = (void*)((char*)data + symtabh->sh_offset);
2576         dump_elf_symbols (symbols, num_symbols, strtab, load_addr);
2577         munmap (data, file_size);
2578         return 1;
2579 }
2580 #endif
2581
2582 /* ELF code crashes on some systems. */
2583 //#if defined(HAVE_DL_ITERATE_PHDR) && defined(ELFMAG0)
2584 #if 0
2585 static int
2586 elf_dl_callback (struct dl_phdr_info *info, size_t size, void *data)
2587 {
2588         MonoProfiler *prof = data;
2589         char buf [256];
2590         const char *filename;
2591         BinaryObject *obj;
2592         char *a = (void*)info->dlpi_addr;
2593         int i, num_sym;
2594         ElfW(Dyn) *dyn = NULL;
2595         ElfW(Sym) *symtab = NULL;
2596         ElfW(Word) *hash_table = NULL;
2597         ElfW(Ehdr) *header = NULL;
2598         const char* strtab = NULL;
2599         for (obj = prof->binary_objects; obj; obj = obj->next) {
2600                 if (obj->addr == a)
2601                         return 0;
2602         }
2603         filename = info->dlpi_name;
2604         if (!filename)
2605                 return 0;
2606         if (!info->dlpi_addr && !filename [0]) {
2607                 int l = readlink ("/proc/self/exe", buf, sizeof (buf) - 1);
2608                 if (l > 0) {
2609                         buf [l] = 0;
2610                         filename = buf;
2611                 }
2612         }
2613         obj = g_calloc (sizeof (BinaryObject), 1);
2614         obj->addr = (void*)info->dlpi_addr;
2615         obj->name = pstrdup (filename);
2616         obj->next = prof->binary_objects;
2617         prof->binary_objects = obj;
2618         //printf ("loaded file: %s at %p, segments: %d\n", filename, (void*)info->dlpi_addr, info->dlpi_phnum);
2619         a = NULL;
2620         for (i = 0; i < info->dlpi_phnum; ++i) {
2621                 //printf ("segment type %d file offset: %d, size: %d\n", info->dlpi_phdr[i].p_type, info->dlpi_phdr[i].p_offset, info->dlpi_phdr[i].p_memsz);
2622                 if (info->dlpi_phdr[i].p_type == PT_LOAD && !header) {
2623                         header = (ElfW(Ehdr)*)(info->dlpi_addr + info->dlpi_phdr[i].p_vaddr);
2624                         if (header->e_ident [EI_MAG0] != ELFMAG0 ||
2625                                         header->e_ident [EI_MAG1] != ELFMAG1 ||
2626                                         header->e_ident [EI_MAG2] != ELFMAG2 ||
2627                                         header->e_ident [EI_MAG3] != ELFMAG3 ) {
2628                                 header = NULL;
2629                         }
2630                         dump_ubin (prof, filename, info->dlpi_addr + info->dlpi_phdr[i].p_vaddr, info->dlpi_phdr[i].p_offset, info->dlpi_phdr[i].p_memsz);
2631                 } else if (info->dlpi_phdr[i].p_type == PT_DYNAMIC) {
2632                         dyn = (ElfW(Dyn) *)(info->dlpi_addr + info->dlpi_phdr[i].p_vaddr);
2633                 }
2634         }
2635         if (read_elf_symbols (prof, filename, (void*)info->dlpi_addr))
2636                 return 0;
2637         if (!info->dlpi_name || !info->dlpi_name[0])
2638                 return 0;
2639         if (!dyn)
2640                 return 0;
2641         for (i = 0; dyn [i].d_tag != DT_NULL; ++i) {
2642                 if (dyn [i].d_tag == DT_SYMTAB) {
2643                         if (symtab && do_debug)
2644                                 printf ("multiple symtabs: %d\n", i);
2645                         symtab = (ElfW(Sym) *)(a + dyn [i].d_un.d_ptr);
2646                 } else if (dyn [i].d_tag == DT_HASH) {
2647                         hash_table = (ElfW(Word) *)(a + dyn [i].d_un.d_ptr);
2648                 } else if (dyn [i].d_tag == DT_STRTAB) {
2649                         strtab = (const char*)(a + dyn [i].d_un.d_ptr);
2650                 }
2651         }
2652         if (!hash_table)
2653                 return 0;
2654         num_sym = hash_table [1];
2655         dump_elf_symbols (prof, symtab, num_sym, strtab, (void*)info->dlpi_addr);
2656         return 0;
2657 }
2658
2659 static int
2660 load_binaries (MonoProfiler *prof)
2661 {
2662         dl_iterate_phdr (elf_dl_callback, prof);
2663         return 1;
2664 }
2665 #else
2666 static int
2667 load_binaries (MonoProfiler *prof)
2668 {
2669         return 0;
2670 }
2671 #endif
2672
2673 static const char*
2674 symbol_for (uintptr_t code)
2675 {
2676 #ifdef HAVE_DLADDR
2677         void *ip = (void*)code;
2678         Dl_info di;
2679         if (dladdr (ip, &di)) {
2680                 if (di.dli_sname)
2681                         return di.dli_sname;
2682         } else {
2683         /*      char **names;
2684                 names = backtrace_symbols (&ip, 1);
2685                 if (names) {
2686                         const char* p = names [0];
2687                         g_free (names);
2688                         return p;
2689                 }
2690                 */
2691         }
2692 #endif
2693         return NULL;
2694 }
2695
2696 static void
2697 dump_unmanaged_coderefs (MonoProfiler *prof)
2698 {
2699         int i;
2700         const char* last_symbol;
2701         uintptr_t addr, page_end;
2702
2703         if (load_binaries (prof))
2704                 return;
2705         for (i = 0; i < size_code_pages; ++i) {
2706                 const char* sym;
2707                 if (!code_pages [i] || code_pages [i] & 1)
2708                         continue;
2709                 last_symbol = NULL;
2710                 addr = CPAGE_ADDR (code_pages [i]);
2711                 page_end = addr + CPAGE_SIZE;
2712                 code_pages [i] |= 1;
2713                 /* we dump the symbols for the whole page */
2714                 for (; addr < page_end; addr += 16) {
2715                         sym = symbol_for (addr);
2716                         if (sym && sym == last_symbol)
2717                                 continue;
2718                         last_symbol = sym;
2719                         if (!sym)
2720                                 continue;
2721                         dump_usym (prof, sym, addr, 0); /* let's not guess the size */
2722                         //printf ("found symbol at %p: %s\n", (void*)addr, sym);
2723                 }
2724         }
2725 }
2726
2727 typedef struct MonoCounterAgent {
2728         MonoCounter *counter;
2729         // MonoCounterAgent specific data :
2730         void *value;
2731         size_t value_size;
2732         short index;
2733         short emitted;
2734         struct MonoCounterAgent *next;
2735 } MonoCounterAgent;
2736
2737 static MonoCounterAgent* counters;
2738 static int counters_index = 1;
2739 static mono_mutex_t counters_mutex;
2740
2741 static void
2742 counters_add_agent (MonoCounter *counter)
2743 {
2744         if (InterlockedRead (&in_shutdown))
2745                 return;
2746
2747         MonoCounterAgent *agent, *item;
2748
2749         mono_os_mutex_lock (&counters_mutex);
2750
2751         for (agent = counters; agent; agent = agent->next) {
2752                 if (agent->counter == counter) {
2753                         agent->value_size = 0;
2754                         if (agent->value) {
2755                                 g_free (agent->value);
2756                                 agent->value = NULL;
2757                         }
2758                         goto done;
2759                 }
2760         }
2761
2762         agent = (MonoCounterAgent *) g_malloc (sizeof (MonoCounterAgent));
2763         agent->counter = counter;
2764         agent->value = NULL;
2765         agent->value_size = 0;
2766         agent->index = counters_index++;
2767         agent->emitted = 0;
2768         agent->next = NULL;
2769
2770         if (!counters) {
2771                 counters = agent;
2772         } else {
2773                 item = counters;
2774                 while (item->next)
2775                         item = item->next;
2776                 item->next = agent;
2777         }
2778
2779 done:
2780         mono_os_mutex_unlock (&counters_mutex);
2781 }
2782
2783 static mono_bool
2784 counters_init_foreach_callback (MonoCounter *counter, gpointer data)
2785 {
2786         counters_add_agent (counter);
2787         return TRUE;
2788 }
2789
2790 static void
2791 counters_init (MonoProfiler *profiler)
2792 {
2793         mono_os_mutex_init (&counters_mutex);
2794
2795         mono_counters_on_register (&counters_add_agent);
2796         mono_counters_foreach (counters_init_foreach_callback, NULL);
2797 }
2798
2799 static void
2800 counters_emit (MonoProfiler *profiler)
2801 {
2802         MonoCounterAgent *agent;
2803         int len = 0;
2804         int size =
2805                 EVENT_SIZE /* event */ +
2806                 LEB128_SIZE /* len */
2807         ;
2808
2809         mono_os_mutex_lock (&counters_mutex);
2810
2811         for (agent = counters; agent; agent = agent->next) {
2812                 if (agent->emitted)
2813                         continue;
2814
2815                 size +=
2816                         LEB128_SIZE /* section */ +
2817                         strlen (mono_counter_get_name (agent->counter)) + 1 /* name */ +
2818                         BYTE_SIZE /* type */ +
2819                         BYTE_SIZE /* unit */ +
2820                         BYTE_SIZE /* variance */ +
2821                         LEB128_SIZE /* index */
2822                 ;
2823
2824                 len++;
2825         }
2826
2827         if (!len)
2828                 goto done;
2829
2830         ENTER_LOG (&counter_descriptors_ctr, logbuffer, size);
2831
2832         emit_event (logbuffer, TYPE_SAMPLE_COUNTERS_DESC | TYPE_SAMPLE);
2833         emit_value (logbuffer, len);
2834
2835         for (agent = counters; agent; agent = agent->next) {
2836                 const char *name;
2837
2838                 if (agent->emitted)
2839                         continue;
2840
2841                 name = mono_counter_get_name (agent->counter);
2842                 emit_value (logbuffer, mono_counter_get_section (agent->counter));
2843                 emit_string (logbuffer, name, strlen (name) + 1);
2844                 emit_byte (logbuffer, mono_counter_get_type (agent->counter));
2845                 emit_byte (logbuffer, mono_counter_get_unit (agent->counter));
2846                 emit_byte (logbuffer, mono_counter_get_variance (agent->counter));
2847                 emit_value (logbuffer, agent->index);
2848
2849                 agent->emitted = 1;
2850         }
2851
2852         EXIT_LOG_EXPLICIT (DO_SEND, NO_REQUESTS);
2853
2854 done:
2855         mono_os_mutex_unlock (&counters_mutex);
2856 }
2857
2858 static void
2859 counters_sample (MonoProfiler *profiler, uint64_t timestamp)
2860 {
2861         MonoCounterAgent *agent;
2862         MonoCounter *counter;
2863         int type;
2864         int buffer_size;
2865         void *buffer;
2866         int size;
2867
2868         counters_emit (profiler);
2869
2870         buffer_size = 8;
2871         buffer = g_calloc (1, buffer_size);
2872
2873         mono_os_mutex_lock (&counters_mutex);
2874
2875         size =
2876                 EVENT_SIZE /* event */
2877         ;
2878
2879         for (agent = counters; agent; agent = agent->next) {
2880                 size +=
2881                         LEB128_SIZE /* index */ +
2882                         BYTE_SIZE /* type */ +
2883                         mono_counter_get_size (agent->counter) /* value */
2884                 ;
2885         }
2886
2887         size +=
2888                 LEB128_SIZE /* stop marker */
2889         ;
2890
2891         ENTER_LOG (&counter_samples_ctr, logbuffer, size);
2892
2893         emit_event_time (logbuffer, TYPE_SAMPLE_COUNTERS | TYPE_SAMPLE, timestamp);
2894
2895         for (agent = counters; agent; agent = agent->next) {
2896                 size_t size;
2897
2898                 counter = agent->counter;
2899
2900                 size = mono_counter_get_size (counter);
2901
2902                 if (size > buffer_size) {
2903                         buffer_size = size;
2904                         buffer = g_realloc (buffer, buffer_size);
2905                 }
2906
2907                 memset (buffer, 0, buffer_size);
2908
2909                 g_assert (mono_counters_sample (counter, buffer, size));
2910
2911                 type = mono_counter_get_type (counter);
2912
2913                 if (!agent->value) {
2914                         agent->value = g_calloc (1, size);
2915                         agent->value_size = size;
2916                 } else {
2917                         if (type == MONO_COUNTER_STRING) {
2918                                 if (strcmp (agent->value, buffer) == 0)
2919                                         continue;
2920                         } else {
2921                                 if (agent->value_size == size && memcmp (agent->value, buffer, size) == 0)
2922                                         continue;
2923                         }
2924                 }
2925
2926                 emit_uvalue (logbuffer, agent->index);
2927                 emit_byte (logbuffer, type);
2928                 switch (type) {
2929                 case MONO_COUNTER_INT:
2930 #if SIZEOF_VOID_P == 4
2931                 case MONO_COUNTER_WORD:
2932 #endif
2933                         emit_svalue (logbuffer, *(int*)buffer - *(int*)agent->value);
2934                         break;
2935                 case MONO_COUNTER_UINT:
2936                         emit_uvalue (logbuffer, *(guint*)buffer - *(guint*)agent->value);
2937                         break;
2938                 case MONO_COUNTER_TIME_INTERVAL:
2939                 case MONO_COUNTER_LONG:
2940 #if SIZEOF_VOID_P == 8
2941                 case MONO_COUNTER_WORD:
2942 #endif
2943                         emit_svalue (logbuffer, *(gint64*)buffer - *(gint64*)agent->value);
2944                         break;
2945                 case MONO_COUNTER_ULONG:
2946                         emit_uvalue (logbuffer, *(guint64*)buffer - *(guint64*)agent->value);
2947                         break;
2948                 case MONO_COUNTER_DOUBLE:
2949                         emit_double (logbuffer, *(double*)buffer);
2950                         break;
2951                 case MONO_COUNTER_STRING:
2952                         if (size == 0) {
2953                                 emit_byte (logbuffer, 0);
2954                         } else {
2955                                 emit_byte (logbuffer, 1);
2956                                 emit_string (logbuffer, (char*)buffer, size);
2957                         }
2958                         break;
2959                 default:
2960                         g_assert_not_reached ();
2961                 }
2962
2963                 if (type == MONO_COUNTER_STRING && size > agent->value_size) {
2964                         agent->value = g_realloc (agent->value, size);
2965                         agent->value_size = size;
2966                 }
2967
2968                 if (size > 0)
2969                         memcpy (agent->value, buffer, size);
2970         }
2971         g_free (buffer);
2972
2973         emit_value (logbuffer, 0);
2974
2975         EXIT_LOG_EXPLICIT (DO_SEND, NO_REQUESTS);
2976
2977         mono_os_mutex_unlock (&counters_mutex);
2978 }
2979
2980 typedef struct _PerfCounterAgent PerfCounterAgent;
2981 struct _PerfCounterAgent {
2982         PerfCounterAgent *next;
2983         int index;
2984         char *category_name;
2985         char *name;
2986         int type;
2987         gint64 value;
2988         guint8 emitted;
2989         guint8 updated;
2990         guint8 deleted;
2991 };
2992
2993 static PerfCounterAgent *perfcounters = NULL;
2994
2995 static void
2996 perfcounters_emit (MonoProfiler *profiler)
2997 {
2998         PerfCounterAgent *pcagent;
2999         int len = 0;
3000         int size =
3001                 EVENT_SIZE /* event */ +
3002                 LEB128_SIZE /* len */
3003         ;
3004
3005         for (pcagent = perfcounters; pcagent; pcagent = pcagent->next) {
3006                 if (pcagent->emitted)
3007                         continue;
3008
3009                 size +=
3010                         LEB128_SIZE /* section */ +
3011                         strlen (pcagent->category_name) + 1 /* category name */ +
3012                         strlen (pcagent->name) + 1 /* name */ +
3013                         BYTE_SIZE /* type */ +
3014                         BYTE_SIZE /* unit */ +
3015                         BYTE_SIZE /* variance */ +
3016                         LEB128_SIZE /* index */
3017                 ;
3018
3019                 len++;
3020         }
3021
3022         if (!len)
3023                 return;
3024
3025         ENTER_LOG (&perfcounter_descriptors_ctr, logbuffer, size);
3026
3027         emit_event (logbuffer, TYPE_SAMPLE_COUNTERS_DESC | TYPE_SAMPLE);
3028         emit_value (logbuffer, len);
3029
3030         for (pcagent = perfcounters; pcagent; pcagent = pcagent->next) {
3031                 if (pcagent->emitted)
3032                         continue;
3033
3034                 emit_value (logbuffer, MONO_COUNTER_PERFCOUNTERS);
3035                 emit_string (logbuffer, pcagent->category_name, strlen (pcagent->category_name) + 1);
3036                 emit_string (logbuffer, pcagent->name, strlen (pcagent->name) + 1);
3037                 emit_byte (logbuffer, MONO_COUNTER_LONG);
3038                 emit_byte (logbuffer, MONO_COUNTER_RAW);
3039                 emit_byte (logbuffer, MONO_COUNTER_VARIABLE);
3040                 emit_value (logbuffer, pcagent->index);
3041
3042                 pcagent->emitted = 1;
3043         }
3044
3045         EXIT_LOG_EXPLICIT (DO_SEND, NO_REQUESTS);
3046 }
3047
3048 static gboolean
3049 perfcounters_foreach (char *category_name, char *name, unsigned char type, gint64 value, gpointer user_data)
3050 {
3051         PerfCounterAgent *pcagent;
3052
3053         for (pcagent = perfcounters; pcagent; pcagent = pcagent->next) {
3054                 if (strcmp (pcagent->category_name, category_name) != 0 || strcmp (pcagent->name, name) != 0)
3055                         continue;
3056                 if (pcagent->value == value)
3057                         return TRUE;
3058
3059                 pcagent->value = value;
3060                 pcagent->updated = 1;
3061                 pcagent->deleted = 0;
3062                 return TRUE;
3063         }
3064
3065         pcagent = g_new0 (PerfCounterAgent, 1);
3066         pcagent->next = perfcounters;
3067         pcagent->index = counters_index++;
3068         pcagent->category_name = g_strdup (category_name);
3069         pcagent->name = g_strdup (name);
3070         pcagent->type = (int) type;
3071         pcagent->value = value;
3072         pcagent->emitted = 0;
3073         pcagent->updated = 1;
3074         pcagent->deleted = 0;
3075
3076         perfcounters = pcagent;
3077
3078         return TRUE;
3079 }
3080
3081 static void
3082 perfcounters_sample (MonoProfiler *profiler, uint64_t timestamp)
3083 {
3084         PerfCounterAgent *pcagent;
3085         int len = 0;
3086         int size;
3087
3088         mono_os_mutex_lock (&counters_mutex);
3089
3090         /* mark all perfcounters as deleted, foreach will unmark them as necessary */
3091         for (pcagent = perfcounters; pcagent; pcagent = pcagent->next)
3092                 pcagent->deleted = 1;
3093
3094         mono_perfcounter_foreach (perfcounters_foreach, perfcounters);
3095
3096         perfcounters_emit (profiler);
3097
3098         size =
3099                 EVENT_SIZE /* event */
3100         ;
3101
3102         for (pcagent = perfcounters; pcagent; pcagent = pcagent->next) {
3103                 if (pcagent->deleted || !pcagent->updated)
3104                         continue;
3105
3106                 size +=
3107                         LEB128_SIZE /* index */ +
3108                         BYTE_SIZE /* type */ +
3109                         LEB128_SIZE /* value */
3110                 ;
3111
3112                 len++;
3113         }
3114
3115         if (!len)
3116                 goto done;
3117
3118         size +=
3119                 LEB128_SIZE /* stop marker */
3120         ;
3121
3122         ENTER_LOG (&perfcounter_samples_ctr, logbuffer, size);
3123
3124         emit_event_time (logbuffer, TYPE_SAMPLE_COUNTERS | TYPE_SAMPLE, timestamp);
3125
3126         for (pcagent = perfcounters; pcagent; pcagent = pcagent->next) {
3127                 if (pcagent->deleted || !pcagent->updated)
3128                         continue;
3129                 emit_uvalue (logbuffer, pcagent->index);
3130                 emit_byte (logbuffer, MONO_COUNTER_LONG);
3131                 emit_svalue (logbuffer, pcagent->value);
3132
3133                 pcagent->updated = 0;
3134         }
3135
3136         emit_value (logbuffer, 0);
3137
3138         EXIT_LOG_EXPLICIT (DO_SEND, NO_REQUESTS);
3139
3140 done:
3141         mono_os_mutex_unlock (&counters_mutex);
3142 }
3143
3144 static void
3145 counters_and_perfcounters_sample (MonoProfiler *prof)
3146 {
3147         uint64_t now = current_time ();
3148
3149         counters_sample (prof, now);
3150         perfcounters_sample (prof, now);
3151 }
3152
3153 #define COVERAGE_DEBUG(x) if (debug_coverage) {x}
3154 static mono_mutex_t coverage_mutex;
3155 static MonoConcurrentHashTable *coverage_methods = NULL;
3156 static MonoConcurrentHashTable *coverage_assemblies = NULL;
3157 static MonoConcurrentHashTable *coverage_classes = NULL;
3158
3159 static MonoConcurrentHashTable *filtered_classes = NULL;
3160 static MonoConcurrentHashTable *entered_methods = NULL;
3161 static MonoConcurrentHashTable *image_to_methods = NULL;
3162 static MonoConcurrentHashTable *suppressed_assemblies = NULL;
3163 static gboolean coverage_initialized = FALSE;
3164
3165 static GPtrArray *coverage_data = NULL;
3166 static int previous_offset = 0;
3167
3168 typedef struct {
3169         MonoLockFreeQueueNode node;
3170         MonoMethod *method;
3171 } MethodNode;
3172
3173 typedef struct {
3174         int offset;
3175         int counter;
3176         char *filename;
3177         int line;
3178         int column;
3179 } CoverageEntry;
3180
3181 static void
3182 free_coverage_entry (gpointer data, gpointer userdata)
3183 {
3184         CoverageEntry *entry = (CoverageEntry *)data;
3185         g_free (entry->filename);
3186         g_free (entry);
3187 }
3188
3189 static void
3190 obtain_coverage_for_method (MonoProfiler *prof, const MonoProfileCoverageEntry *entry)
3191 {
3192         int offset = entry->iloffset - previous_offset;
3193         CoverageEntry *e = g_new (CoverageEntry, 1);
3194
3195         previous_offset = entry->iloffset;
3196
3197         e->offset = offset;
3198         e->counter = entry->counter;
3199         e->filename = g_strdup(entry->filename ? entry->filename : "");
3200         e->line = entry->line;
3201         e->column = entry->col;
3202
3203         g_ptr_array_add (coverage_data, e);
3204 }
3205
3206 static char *
3207 parse_generic_type_names(char *name)
3208 {
3209         char *new_name, *ret;
3210         int within_generic_declaration = 0, generic_members = 1;
3211
3212         if (name == NULL || *name == '\0')
3213                 return g_strdup ("");
3214
3215         if (!(ret = new_name = (char *) g_calloc (strlen (name) * 4 + 1, sizeof (char))))
3216                 return NULL;
3217
3218         do {
3219                 switch (*name) {
3220                         case '<':
3221                                 within_generic_declaration = 1;
3222                                 break;
3223
3224                         case '>':
3225                                 within_generic_declaration = 0;
3226
3227                                 if (*(name - 1) != '<') {
3228                                         *new_name++ = '`';
3229                                         *new_name++ = '0' + generic_members;
3230                                 } else {
3231                                         memcpy (new_name, "&lt;&gt;", 8);
3232                                         new_name += 8;
3233                                 }
3234
3235                                 generic_members = 0;
3236                                 break;
3237
3238                         case ',':
3239                                 generic_members++;
3240                                 break;
3241
3242                         default:
3243                                 if (!within_generic_declaration)
3244                                         *new_name++ = *name;
3245
3246                                 break;
3247                 }
3248         } while (*name++);
3249
3250         return ret;
3251 }
3252
3253 static int method_id;
3254 static void
3255 build_method_buffer (gpointer key, gpointer value, gpointer userdata)
3256 {
3257         MonoMethod *method = (MonoMethod *)value;
3258         MonoProfiler *prof = (MonoProfiler *)userdata;
3259         MonoClass *klass;
3260         MonoImage *image;
3261         char *class_name;
3262         const char *image_name, *method_name, *sig, *first_filename;
3263         guint i;
3264
3265         previous_offset = 0;
3266         coverage_data = g_ptr_array_new ();
3267
3268         mono_profiler_coverage_get (prof, method, obtain_coverage_for_method);
3269
3270         klass = mono_method_get_class (method);
3271         image = mono_class_get_image (klass);
3272         image_name = mono_image_get_name (image);
3273
3274         sig = mono_signature_get_desc (mono_method_signature (method), TRUE);
3275         class_name = parse_generic_type_names (mono_type_get_name (mono_class_get_type (klass)));
3276         method_name = mono_method_get_name (method);
3277
3278         if (coverage_data->len != 0) {
3279                 CoverageEntry *entry = (CoverageEntry *)coverage_data->pdata[0];
3280                 first_filename = entry->filename ? entry->filename : "";
3281         } else
3282                 first_filename = "";
3283
3284         image_name = image_name ? image_name : "";
3285         sig = sig ? sig : "";
3286         method_name = method_name ? method_name : "";
3287
3288         ENTER_LOG (&coverage_methods_ctr, logbuffer,
3289                 EVENT_SIZE /* event */ +
3290                 strlen (image_name) + 1 /* image name */ +
3291                 strlen (class_name) + 1 /* class name */ +
3292                 strlen (method_name) + 1 /* method name */ +
3293                 strlen (sig) + 1 /* signature */ +
3294                 strlen (first_filename) + 1 /* first file name */ +
3295                 LEB128_SIZE /* token */ +
3296                 LEB128_SIZE /* method id */ +
3297                 LEB128_SIZE /* entries */
3298         );
3299
3300         emit_event (logbuffer, TYPE_COVERAGE_METHOD | TYPE_COVERAGE);
3301         emit_string (logbuffer, image_name, strlen (image_name) + 1);
3302         emit_string (logbuffer, class_name, strlen (class_name) + 1);
3303         emit_string (logbuffer, method_name, strlen (method_name) + 1);
3304         emit_string (logbuffer, sig, strlen (sig) + 1);
3305         emit_string (logbuffer, first_filename, strlen (first_filename) + 1);
3306
3307         emit_uvalue (logbuffer, mono_method_get_token (method));
3308         emit_uvalue (logbuffer, method_id);
3309         emit_value (logbuffer, coverage_data->len);
3310
3311         EXIT_LOG_EXPLICIT (DO_SEND, NO_REQUESTS);
3312
3313         for (i = 0; i < coverage_data->len; i++) {
3314                 CoverageEntry *entry = (CoverageEntry *)coverage_data->pdata[i];
3315
3316                 ENTER_LOG (&coverage_statements_ctr, logbuffer,
3317                         EVENT_SIZE /* event */ +
3318                         LEB128_SIZE /* method id */ +
3319                         LEB128_SIZE /* offset */ +
3320                         LEB128_SIZE /* counter */ +
3321                         LEB128_SIZE /* line */ +
3322                         LEB128_SIZE /* column */
3323                 );
3324
3325                 emit_event (logbuffer, TYPE_COVERAGE_STATEMENT | TYPE_COVERAGE);
3326                 emit_uvalue (logbuffer, method_id);
3327                 emit_uvalue (logbuffer, entry->offset);
3328                 emit_uvalue (logbuffer, entry->counter);
3329                 emit_uvalue (logbuffer, entry->line);
3330                 emit_uvalue (logbuffer, entry->column);
3331
3332                 EXIT_LOG_EXPLICIT (DO_SEND, NO_REQUESTS);
3333         }
3334
3335         method_id++;
3336
3337         g_free (class_name);
3338
3339         g_ptr_array_foreach (coverage_data, free_coverage_entry, NULL);
3340         g_ptr_array_free (coverage_data, TRUE);
3341         coverage_data = NULL;
3342 }
3343
3344 /* This empties the queue */
3345 static guint
3346 count_queue (MonoLockFreeQueue *queue)
3347 {
3348         MonoLockFreeQueueNode *node;
3349         guint count = 0;
3350
3351         while ((node = mono_lock_free_queue_dequeue (queue))) {
3352                 count++;
3353                 mono_thread_hazardous_try_free (node, g_free);
3354         }
3355
3356         return count;
3357 }
3358
3359 static void
3360 build_class_buffer (gpointer key, gpointer value, gpointer userdata)
3361 {
3362         MonoClass *klass = (MonoClass *)key;
3363         MonoLockFreeQueue *class_methods = (MonoLockFreeQueue *)value;
3364         MonoImage *image;
3365         char *class_name;
3366         const char *assembly_name;
3367         int number_of_methods, partially_covered;
3368         guint fully_covered;
3369
3370         image = mono_class_get_image (klass);
3371         assembly_name = mono_image_get_name (image);
3372         class_name = mono_type_get_name (mono_class_get_type (klass));
3373
3374         assembly_name = assembly_name ? assembly_name : "";
3375         number_of_methods = mono_class_num_methods (klass);
3376         fully_covered = count_queue (class_methods);
3377         /* We don't handle partial covered yet */
3378         partially_covered = 0;
3379
3380         ENTER_LOG (&coverage_classes_ctr, logbuffer,
3381                 EVENT_SIZE /* event */ +
3382                 strlen (assembly_name) + 1 /* assembly name */ +
3383                 strlen (class_name) + 1 /* class name */ +
3384                 LEB128_SIZE /* no. methods */ +
3385                 LEB128_SIZE /* fully covered */ +
3386                 LEB128_SIZE /* partially covered */
3387         );
3388
3389         emit_event (logbuffer, TYPE_COVERAGE_CLASS | TYPE_COVERAGE);
3390         emit_string (logbuffer, assembly_name, strlen (assembly_name) + 1);
3391         emit_string (logbuffer, class_name, strlen (class_name) + 1);
3392         emit_uvalue (logbuffer, number_of_methods);
3393         emit_uvalue (logbuffer, fully_covered);
3394         emit_uvalue (logbuffer, partially_covered);
3395
3396         EXIT_LOG_EXPLICIT (DO_SEND, NO_REQUESTS);
3397
3398         g_free (class_name);
3399 }
3400
3401 static void
3402 get_coverage_for_image (MonoImage *image, int *number_of_methods, guint *fully_covered, int *partially_covered)
3403 {
3404         MonoLockFreeQueue *image_methods = (MonoLockFreeQueue *)mono_conc_hashtable_lookup (image_to_methods, image);
3405
3406         *number_of_methods = mono_image_get_table_rows (image, MONO_TABLE_METHOD);
3407         if (image_methods)
3408                 *fully_covered = count_queue (image_methods);
3409         else
3410                 *fully_covered = 0;
3411
3412         // FIXME: We don't handle partially covered yet.
3413         *partially_covered = 0;
3414 }
3415
3416 static void
3417 build_assembly_buffer (gpointer key, gpointer value, gpointer userdata)
3418 {
3419         MonoAssembly *assembly = (MonoAssembly *)value;
3420         MonoImage *image = mono_assembly_get_image (assembly);
3421         const char *name, *guid, *filename;
3422         int number_of_methods = 0, partially_covered = 0;
3423         guint fully_covered = 0;
3424
3425         name = mono_image_get_name (image);
3426         guid = mono_image_get_guid (image);
3427         filename = mono_image_get_filename (image);
3428
3429         name = name ? name : "";
3430         guid = guid ? guid : "";
3431         filename = filename ? filename : "";
3432
3433         get_coverage_for_image (image, &number_of_methods, &fully_covered, &partially_covered);
3434
3435         ENTER_LOG (&coverage_assemblies_ctr, logbuffer,
3436                 EVENT_SIZE /* event */ +
3437                 strlen (name) + 1 /* name */ +
3438                 strlen (guid) + 1 /* guid */ +
3439                 strlen (filename) + 1 /* file name */ +
3440                 LEB128_SIZE /* no. methods */ +
3441                 LEB128_SIZE /* fully covered */ +
3442                 LEB128_SIZE /* partially covered */
3443         );
3444
3445         emit_event (logbuffer, TYPE_COVERAGE_ASSEMBLY | TYPE_COVERAGE);
3446         emit_string (logbuffer, name, strlen (name) + 1);
3447         emit_string (logbuffer, guid, strlen (guid) + 1);
3448         emit_string (logbuffer, filename, strlen (filename) + 1);
3449         emit_uvalue (logbuffer, number_of_methods);
3450         emit_uvalue (logbuffer, fully_covered);
3451         emit_uvalue (logbuffer, partially_covered);
3452
3453         EXIT_LOG_EXPLICIT (DO_SEND, NO_REQUESTS);
3454 }
3455
3456 static void
3457 dump_coverage (MonoProfiler *prof)
3458 {
3459         if (!coverage_initialized)
3460                 return;
3461
3462         COVERAGE_DEBUG(fprintf (stderr, "Coverage: Started dump\n");)
3463         method_id = 0;
3464
3465         mono_os_mutex_lock (&coverage_mutex);
3466         mono_conc_hashtable_foreach (coverage_assemblies, build_assembly_buffer, NULL);
3467         mono_conc_hashtable_foreach (coverage_classes, build_class_buffer, NULL);
3468         mono_conc_hashtable_foreach (coverage_methods, build_method_buffer, prof);
3469         mono_os_mutex_unlock (&coverage_mutex);
3470
3471         COVERAGE_DEBUG(fprintf (stderr, "Coverage: Finished dump\n");)
3472 }
3473
3474 static void
3475 process_method_enter_coverage (MonoProfiler *prof, MonoMethod *method)
3476 {
3477         MonoClass *klass;
3478         MonoImage *image;
3479
3480         if (!coverage_initialized)
3481                 return;
3482
3483         klass = mono_method_get_class (method);
3484         image = mono_class_get_image (klass);
3485
3486         if (mono_conc_hashtable_lookup (suppressed_assemblies, (gpointer) mono_image_get_name (image)))
3487                 return;
3488
3489         mono_os_mutex_lock (&coverage_mutex);
3490         mono_conc_hashtable_insert (entered_methods, method, method);
3491         mono_os_mutex_unlock (&coverage_mutex);
3492 }
3493
3494 static MonoLockFreeQueueNode *
3495 create_method_node (MonoMethod *method)
3496 {
3497         MethodNode *node = (MethodNode *) g_malloc (sizeof (MethodNode));
3498         mono_lock_free_queue_node_init ((MonoLockFreeQueueNode *) node, FALSE);
3499         node->method = method;
3500
3501         return (MonoLockFreeQueueNode *) node;
3502 }
3503
3504 static gboolean
3505 coverage_filter (MonoProfiler *prof, MonoMethod *method)
3506 {
3507         MonoError error;
3508         MonoClass *klass;
3509         MonoImage *image;
3510         MonoAssembly *assembly;
3511         MonoMethodHeader *header;
3512         guint32 iflags, flags, code_size;
3513         char *fqn, *classname;
3514         gboolean has_positive, found;
3515         MonoLockFreeQueue *image_methods, *class_methods;
3516         MonoLockFreeQueueNode *node;
3517
3518         g_assert (coverage_initialized && "Why are we being asked for coverage filter info when we're not doing coverage?");
3519
3520         COVERAGE_DEBUG(fprintf (stderr, "Coverage filter for %s\n", mono_method_get_name (method));)
3521
3522         flags = mono_method_get_flags (method, &iflags);
3523         if ((iflags & 0x1000 /*METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL*/) ||
3524             (flags & 0x2000 /*METHOD_ATTRIBUTE_PINVOKE_IMPL*/)) {
3525                 COVERAGE_DEBUG(fprintf (stderr, "   Internal call or pinvoke - ignoring\n");)
3526                 return FALSE;
3527         }
3528
3529         // Don't need to do anything else if we're already tracking this method
3530         if (mono_conc_hashtable_lookup (coverage_methods, method)) {
3531                 COVERAGE_DEBUG(fprintf (stderr, "   Already tracking\n");)
3532                 return TRUE;
3533         }
3534
3535         klass = mono_method_get_class (method);
3536         image = mono_class_get_image (klass);
3537
3538         // Don't handle coverage for the core assemblies
3539         if (mono_conc_hashtable_lookup (suppressed_assemblies, (gpointer) mono_image_get_name (image)) != NULL)
3540                 return FALSE;
3541
3542         if (prof->coverage_filters) {
3543                 /* Check already filtered classes first */
3544                 if (mono_conc_hashtable_lookup (filtered_classes, klass)) {
3545                         COVERAGE_DEBUG(fprintf (stderr, "   Already filtered\n");)
3546                         return FALSE;
3547                 }
3548
3549                 classname = mono_type_get_name (mono_class_get_type (klass));
3550
3551                 fqn = g_strdup_printf ("[%s]%s", mono_image_get_name (image), classname);
3552
3553                 COVERAGE_DEBUG(fprintf (stderr, "   Looking for %s in filter\n", fqn);)
3554                 // Check positive filters first
3555                 has_positive = FALSE;
3556                 found = FALSE;
3557                 for (guint i = 0; i < prof->coverage_filters->len; ++i) {
3558                         char *filter = (char *)g_ptr_array_index (prof->coverage_filters, i);
3559
3560                         if (filter [0] == '+') {
3561                                 filter = &filter [1];
3562
3563                                 COVERAGE_DEBUG(fprintf (stderr, "   Checking against +%s ...", filter);)
3564
3565                                 if (strstr (fqn, filter) != NULL) {
3566                                         COVERAGE_DEBUG(fprintf (stderr, "matched\n");)
3567                                         found = TRUE;
3568                                 } else
3569                                         COVERAGE_DEBUG(fprintf (stderr, "no match\n");)
3570
3571                                 has_positive = TRUE;
3572                         }
3573                 }
3574
3575                 if (has_positive && !found) {
3576                         COVERAGE_DEBUG(fprintf (stderr, "   Positive match was not found\n");)
3577
3578                         mono_os_mutex_lock (&coverage_mutex);
3579                         mono_conc_hashtable_insert (filtered_classes, klass, klass);
3580                         mono_os_mutex_unlock (&coverage_mutex);
3581                         g_free (fqn);
3582                         g_free (classname);
3583
3584                         return FALSE;
3585                 }
3586
3587                 for (guint i = 0; i < prof->coverage_filters->len; ++i) {
3588                         // FIXME: Is substring search sufficient?
3589                         char *filter = (char *)g_ptr_array_index (prof->coverage_filters, i);
3590                         if (filter [0] == '+')
3591                                 continue;
3592
3593                         // Skip '-'
3594                         filter = &filter [1];
3595                         COVERAGE_DEBUG(fprintf (stderr, "   Checking against -%s ...", filter);)
3596
3597                         if (strstr (fqn, filter) != NULL) {
3598                                 COVERAGE_DEBUG(fprintf (stderr, "matched\n");)
3599
3600                                 mono_os_mutex_lock (&coverage_mutex);
3601                                 mono_conc_hashtable_insert (filtered_classes, klass, klass);
3602                                 mono_os_mutex_unlock (&coverage_mutex);
3603                                 g_free (fqn);
3604                                 g_free (classname);
3605
3606                                 return FALSE;
3607                         } else
3608                                 COVERAGE_DEBUG(fprintf (stderr, "no match\n");)
3609
3610                 }
3611
3612                 g_free (fqn);
3613                 g_free (classname);
3614         }
3615
3616         COVERAGE_DEBUG(fprintf (stderr, "   Handling coverage for %s\n", mono_method_get_name (method));)
3617         header = mono_method_get_header_checked (method, &error);
3618         mono_error_cleanup (&error);
3619
3620         mono_method_header_get_code (header, &code_size, NULL);
3621
3622         assembly = mono_image_get_assembly (image);
3623
3624         // Need to keep the assemblies around for as long as they are kept in the hashtable
3625         // Nunit, for example, has a habit of unloading them before the coverage statistics are
3626         // generated causing a crash. See https://bugzilla.xamarin.com/show_bug.cgi?id=39325
3627         mono_assembly_addref (assembly);
3628
3629         mono_os_mutex_lock (&coverage_mutex);
3630         mono_conc_hashtable_insert (coverage_methods, method, method);
3631         mono_conc_hashtable_insert (coverage_assemblies, assembly, assembly);
3632         mono_os_mutex_unlock (&coverage_mutex);
3633
3634         image_methods = (MonoLockFreeQueue *)mono_conc_hashtable_lookup (image_to_methods, image);
3635
3636         if (image_methods == NULL) {
3637                 image_methods = (MonoLockFreeQueue *) g_malloc (sizeof (MonoLockFreeQueue));
3638                 mono_lock_free_queue_init (image_methods);
3639                 mono_os_mutex_lock (&coverage_mutex);
3640                 mono_conc_hashtable_insert (image_to_methods, image, image_methods);
3641                 mono_os_mutex_unlock (&coverage_mutex);
3642         }
3643
3644         node = create_method_node (method);
3645         mono_lock_free_queue_enqueue (image_methods, node);
3646
3647         class_methods = (MonoLockFreeQueue *)mono_conc_hashtable_lookup (coverage_classes, klass);
3648
3649         if (class_methods == NULL) {
3650                 class_methods = (MonoLockFreeQueue *) g_malloc (sizeof (MonoLockFreeQueue));
3651                 mono_lock_free_queue_init (class_methods);
3652                 mono_os_mutex_lock (&coverage_mutex);
3653                 mono_conc_hashtable_insert (coverage_classes, klass, class_methods);
3654                 mono_os_mutex_unlock (&coverage_mutex);
3655         }
3656
3657         node = create_method_node (method);
3658         mono_lock_free_queue_enqueue (class_methods, node);
3659
3660         return TRUE;
3661 }
3662
3663 #define LINE_BUFFER_SIZE 4096
3664 /* Max file limit of 128KB */
3665 #define MAX_FILE_SIZE 128 * 1024
3666 static char *
3667 get_file_content (FILE *stream)
3668 {
3669         char *buffer;
3670         ssize_t bytes_read;
3671         long filesize;
3672         int res, offset = 0;
3673
3674         res = fseek (stream, 0, SEEK_END);
3675         if (res < 0)
3676           return NULL;
3677
3678         filesize = ftell (stream);
3679         if (filesize < 0)
3680           return NULL;
3681
3682         res = fseek (stream, 0, SEEK_SET);
3683         if (res < 0)
3684           return NULL;
3685
3686         if (filesize > MAX_FILE_SIZE)
3687           return NULL;
3688
3689         buffer = (char *) g_malloc ((filesize + 1) * sizeof (char));
3690         while ((bytes_read = fread (buffer + offset, 1, LINE_BUFFER_SIZE, stream)) > 0)
3691                 offset += bytes_read;
3692
3693         /* NULL terminate our buffer */
3694         buffer[filesize] = '\0';
3695         return buffer;
3696 }
3697
3698 static char *
3699 get_next_line (char *contents, char **next_start)
3700 {
3701         char *p = contents;
3702
3703         if (p == NULL || *p == '\0') {
3704                 *next_start = NULL;
3705                 return NULL;
3706         }
3707
3708         while (*p != '\n' && *p != '\0')
3709                 p++;
3710
3711         if (*p == '\n') {
3712                 *p = '\0';
3713                 *next_start = p + 1;
3714         } else
3715                 *next_start = NULL;
3716
3717         return contents;
3718 }
3719
3720 static void
3721 init_suppressed_assemblies (void)
3722 {
3723         char *content;
3724         char *line;
3725         FILE *sa_file;
3726
3727         suppressed_assemblies = mono_conc_hashtable_new (g_str_hash, g_str_equal);
3728         sa_file = fopen (SUPPRESSION_DIR "/mono-profiler-log.suppression", "r");
3729         if (sa_file == NULL)
3730                 return;
3731
3732         /* Don't need to free @content as it is referred to by the lines stored in @suppressed_assemblies */
3733         content = get_file_content (sa_file);
3734         if (content == NULL) {
3735                 g_error ("mono-profiler-log.suppression is greater than 128kb - aborting\n");
3736         }
3737
3738         while ((line = get_next_line (content, &content))) {
3739                 line = g_strchomp (g_strchug (line));
3740                 /* No locking needed as we're doing initialization */
3741                 mono_conc_hashtable_insert (suppressed_assemblies, line, line);
3742         }
3743
3744         fclose (sa_file);
3745 }
3746
3747 static void
3748 parse_cov_filter_file (GPtrArray *filters, const char *file)
3749 {
3750         FILE *filter_file;
3751         char *line, *content;
3752
3753         filter_file = fopen (file, "r");
3754         if (filter_file == NULL) {
3755                 fprintf (stderr, "Unable to open %s\n", file);
3756                 return;
3757         }
3758
3759         /* Don't need to free content as it is referred to by the lines stored in @filters */
3760         content = get_file_content (filter_file);
3761         if (content == NULL)
3762                 fprintf (stderr, "WARNING: %s is greater than 128kb - ignoring\n", file);
3763
3764         while ((line = get_next_line (content, &content)))
3765                 g_ptr_array_add (filters, g_strchug (g_strchomp (line)));
3766
3767         fclose (filter_file);
3768 }
3769
3770 static void
3771 coverage_init (MonoProfiler *prof)
3772 {
3773         g_assert (!coverage_initialized && "Why are we initializing coverage twice?");
3774
3775         COVERAGE_DEBUG(fprintf (stderr, "Coverage initialized\n");)
3776
3777         mono_os_mutex_init (&coverage_mutex);
3778         coverage_methods = mono_conc_hashtable_new (NULL, NULL);
3779         coverage_assemblies = mono_conc_hashtable_new (NULL, NULL);
3780         coverage_classes = mono_conc_hashtable_new (NULL, NULL);
3781         filtered_classes = mono_conc_hashtable_new (NULL, NULL);
3782         entered_methods = mono_conc_hashtable_new (NULL, NULL);
3783         image_to_methods = mono_conc_hashtable_new (NULL, NULL);
3784         init_suppressed_assemblies ();
3785
3786         coverage_initialized = TRUE;
3787 }
3788
3789 static void
3790 unref_coverage_assemblies (gpointer key, gpointer value, gpointer userdata)
3791 {
3792         MonoAssembly *assembly = (MonoAssembly *)value;
3793         mono_assembly_close (assembly);
3794 }
3795
3796 static void
3797 free_sample_hit (gpointer p)
3798 {
3799         mono_lock_free_free (p, SAMPLE_BLOCK_SIZE);
3800 }
3801
3802 static void
3803 cleanup_reusable_samples (MonoProfiler *prof)
3804 {
3805         SampleHit *sample;
3806
3807         while ((sample = (SampleHit *) mono_lock_free_queue_dequeue (&prof->sample_reuse_queue)))
3808                 mono_thread_hazardous_try_free (sample, free_sample_hit);
3809 }
3810
3811 static void
3812 log_shutdown (MonoProfiler *prof)
3813 {
3814         InterlockedWrite (&in_shutdown, 1);
3815
3816         if (!no_counters)
3817                 counters_and_perfcounters_sample (prof);
3818
3819         dump_coverage (prof);
3820
3821         char c = 1;
3822
3823         if (write (prof->pipes [1], &c, 1) != 1) {
3824                 fprintf (stderr, "Could not write to pipe: %s\n", strerror (errno));
3825                 exit (1);
3826         }
3827
3828         mono_native_thread_join (prof->helper_thread);
3829
3830         mono_os_mutex_destroy (&counters_mutex);
3831
3832         MonoCounterAgent *mc_next;
3833
3834         for (MonoCounterAgent *cur = counters; cur; cur = mc_next) {
3835                 mc_next = cur->next;
3836                 g_free (cur);
3837         }
3838
3839         PerfCounterAgent *pc_next;
3840
3841         for (PerfCounterAgent *cur = perfcounters; cur; cur = pc_next) {
3842                 pc_next = cur->next;
3843                 g_free (cur);
3844         }
3845
3846         /*
3847          * Ensure that we empty the LLS completely, even if some nodes are
3848          * not immediately removed upon calling mono_lls_remove (), by
3849          * iterating until the head is NULL.
3850          */
3851         while (profiler_thread_list.head) {
3852                 MONO_LLS_FOREACH_SAFE (&profiler_thread_list, MonoProfilerThread, thread) {
3853                         g_assert (thread->attached && "Why is a thread in the LLS not attached?");
3854
3855                         remove_thread (thread);
3856                 } MONO_LLS_FOREACH_SAFE_END
3857         }
3858
3859         /*
3860          * Ensure that all threads have been freed, so that we don't miss any
3861          * buffers when we shut down the writer thread below.
3862          */
3863         mono_thread_hazardous_try_free_all ();
3864
3865         InterlockedWrite (&prof->run_dumper_thread, 0);
3866         mono_os_sem_post (&prof->dumper_queue_sem);
3867         mono_native_thread_join (prof->dumper_thread);
3868         mono_os_sem_destroy (&prof->dumper_queue_sem);
3869
3870         InterlockedWrite (&prof->run_writer_thread, 0);
3871         mono_os_sem_post (&prof->writer_queue_sem);
3872         mono_native_thread_join (prof->writer_thread);
3873         mono_os_sem_destroy (&prof->writer_queue_sem);
3874
3875         /*
3876          * Free all writer queue entries, and ensure that all sample hits will be
3877          * added to the sample reuse queue.
3878          */
3879         mono_thread_hazardous_try_free_all ();
3880
3881         cleanup_reusable_samples (prof);
3882
3883         /*
3884          * Finally, make sure that all sample hits are freed. This should cover all
3885          * hazardous data from the profiler. We can now be sure that the runtime
3886          * won't later invoke free functions in the profiler library after it has
3887          * been unloaded.
3888          */
3889         mono_thread_hazardous_try_free_all ();
3890
3891         g_assert (!InterlockedRead (&buffer_rwlock_count) && "Why is the reader count still non-zero?");
3892         g_assert (!InterlockedReadPointer (&buffer_rwlock_exclusive) && "Why does someone still hold the exclusive lock?");
3893
3894 #if defined (HAVE_SYS_ZLIB)
3895         if (prof->gzfile)
3896                 gzclose (prof->gzfile);
3897 #endif
3898         if (prof->pipe_output)
3899                 pclose (prof->file);
3900         else
3901                 fclose (prof->file);
3902
3903         mono_conc_hashtable_destroy (prof->method_table);
3904         mono_os_mutex_destroy (&prof->method_table_mutex);
3905
3906         if (coverage_initialized) {
3907                 mono_os_mutex_lock (&coverage_mutex);
3908                 mono_conc_hashtable_foreach (coverage_assemblies, unref_coverage_assemblies, prof);
3909                 mono_os_mutex_unlock (&coverage_mutex);
3910
3911                 mono_conc_hashtable_destroy (coverage_methods);
3912                 mono_conc_hashtable_destroy (coverage_assemblies);
3913                 mono_conc_hashtable_destroy (coverage_classes);
3914                 mono_conc_hashtable_destroy (filtered_classes);
3915
3916                 mono_conc_hashtable_destroy (entered_methods);
3917                 mono_conc_hashtable_destroy (image_to_methods);
3918                 mono_conc_hashtable_destroy (suppressed_assemblies);
3919                 mono_os_mutex_destroy (&coverage_mutex);
3920         }
3921
3922         PROF_TLS_FREE ();
3923
3924         g_free (prof->args);
3925         g_free (prof);
3926 }
3927
3928 static char*
3929 new_filename (const char* filename)
3930 {
3931         time_t t = time (NULL);
3932         int pid = process_id ();
3933         char pid_buf [16];
3934         char time_buf [16];
3935         char *res, *d;
3936         const char *p;
3937         int count_dates = 0;
3938         int count_pids = 0;
3939         int s_date, s_pid;
3940         struct tm *ts;
3941         for (p = filename; *p; p++) {
3942                 if (*p != '%')
3943                         continue;
3944                 p++;
3945                 if (*p == 't')
3946                         count_dates++;
3947                 else if (*p == 'p')
3948                         count_pids++;
3949                 else if (*p == 0)
3950                         break;
3951         }
3952         if (!count_dates && !count_pids)
3953                 return pstrdup (filename);
3954         snprintf (pid_buf, sizeof (pid_buf), "%d", pid);
3955         ts = gmtime (&t);
3956         snprintf (time_buf, sizeof (time_buf), "%d%02d%02d%02d%02d%02d",
3957                 1900 + ts->tm_year, 1 + ts->tm_mon, ts->tm_mday, ts->tm_hour, ts->tm_min, ts->tm_sec);
3958         s_date = strlen (time_buf);
3959         s_pid = strlen (pid_buf);
3960         d = res = (char *) g_malloc (strlen (filename) + s_date * count_dates + s_pid * count_pids);
3961         for (p = filename; *p; p++) {
3962                 if (*p != '%') {
3963                         *d++ = *p;
3964                         continue;
3965                 }
3966                 p++;
3967                 if (*p == 't') {
3968                         strcpy (d, time_buf);
3969                         d += s_date;
3970                         continue;
3971                 } else if (*p == 'p') {
3972                         strcpy (d, pid_buf);
3973                         d += s_pid;
3974                         continue;
3975                 } else if (*p == '%') {
3976                         *d++ = '%';
3977                         continue;
3978                 } else if (*p == 0)
3979                         break;
3980                 *d++ = '%';
3981                 *d++ = *p;
3982         }
3983         *d = 0;
3984         return res;
3985 }
3986
3987 static void
3988 add_to_fd_set (fd_set *set, int fd, int *max_fd)
3989 {
3990         /*
3991          * This should only trigger for the basic FDs (server socket, pipes) at
3992          * startup if for some mysterious reason they're too large. In this case,
3993          * the profiler really can't function, and we're better off printing an
3994          * error and exiting.
3995          */
3996         if (fd >= FD_SETSIZE) {
3997                 fprintf (stderr, "File descriptor is out of bounds for fd_set: %d\n", fd);
3998                 exit (1);
3999         }
4000
4001         FD_SET (fd, set);
4002
4003         if (*max_fd < fd)
4004                 *max_fd = fd;
4005 }
4006
4007 static void *
4008 helper_thread (void *arg)
4009 {
4010         MonoProfiler *prof = (MonoProfiler *) arg;
4011
4012         mono_threads_attach_tools_thread ();
4013         mono_native_thread_set_name (mono_native_thread_id_get (), "Profiler helper");
4014
4015         MonoProfilerThread *thread = init_thread (prof, FALSE);
4016
4017         GArray *command_sockets = g_array_new (FALSE, FALSE, sizeof (int));
4018
4019         while (1) {
4020                 fd_set rfds;
4021                 int max_fd = -1;
4022
4023                 FD_ZERO (&rfds);
4024
4025                 add_to_fd_set (&rfds, prof->server_socket, &max_fd);
4026                 add_to_fd_set (&rfds, prof->pipes [0], &max_fd);
4027
4028                 for (gint i = 0; i < command_sockets->len; i++)
4029                         add_to_fd_set (&rfds, g_array_index (command_sockets, int, i), &max_fd);
4030
4031                 struct timeval tv = { .tv_sec = 1, .tv_usec = 0 };
4032
4033                 // Sleep for 1sec or until a file descriptor has data.
4034                 if (select (max_fd + 1, &rfds, NULL, NULL, &tv) == -1) {
4035                         if (errno == EINTR)
4036                                 continue;
4037
4038                         fprintf (stderr, "Error in mono-profiler-log server: %s", strerror (errno));
4039                         exit (1);
4040                 }
4041
4042                 if (!no_counters)
4043                         counters_and_perfcounters_sample (prof);
4044
4045                 buffer_lock_excl ();
4046
4047                 sync_point (SYNC_POINT_PERIODIC);
4048
4049                 buffer_unlock_excl ();
4050
4051                 // Are we shutting down?
4052                 if (FD_ISSET (prof->pipes [0], &rfds)) {
4053                         char c;
4054                         read (prof->pipes [0], &c, 1);
4055                         break;
4056                 }
4057
4058                 for (gint i = 0; i < command_sockets->len; i++) {
4059                         int fd = g_array_index (command_sockets, int, i);
4060
4061                         if (!FD_ISSET (fd, &rfds))
4062                                 continue;
4063
4064                         char buf [64];
4065                         int len = read (fd, buf, sizeof (buf) - 1);
4066
4067                         if (len == -1)
4068                                 continue;
4069
4070                         if (!len) {
4071                                 // The other end disconnected.
4072                                 g_array_remove_index (command_sockets, i);
4073                                 close (fd);
4074
4075                                 continue;
4076                         }
4077
4078                         buf [len] = 0;
4079
4080                         if (!strcmp (buf, "heapshot\n") && hs_mode_ondemand) {
4081                                 // Rely on the finalization callbacks invoking process_requests ().
4082                                 heapshot_requested = 1;
4083                                 mono_gc_finalize_notify ();
4084                         }
4085                 }
4086
4087                 if (FD_ISSET (prof->server_socket, &rfds)) {
4088                         int fd = accept (prof->server_socket, NULL, NULL);
4089
4090                         if (fd != -1) {
4091                                 if (fd >= FD_SETSIZE)
4092                                         close (fd);
4093                                 else
4094                                         g_array_append_val (command_sockets, fd);
4095                         }
4096                 }
4097         }
4098
4099         for (gint i = 0; i < command_sockets->len; i++)
4100                 close (g_array_index (command_sockets, int, i));
4101
4102         g_array_free (command_sockets, TRUE);
4103
4104         send_log_unsafe (FALSE);
4105         deinit_thread (thread);
4106
4107         mono_thread_info_detach ();
4108
4109         return NULL;
4110 }
4111
4112 static void
4113 start_helper_thread (MonoProfiler* prof)
4114 {
4115         if (pipe (prof->pipes) == -1) {
4116                 fprintf (stderr, "Cannot create pipe: %s\n", strerror (errno));
4117                 exit (1);
4118         }
4119
4120         prof->server_socket = socket (PF_INET, SOCK_STREAM, 0);
4121
4122         if (prof->server_socket == -1) {
4123                 fprintf (stderr, "Cannot create server socket: %s\n", strerror (errno));
4124                 exit (1);
4125         }
4126
4127         struct sockaddr_in server_address;
4128
4129         memset (&server_address, 0, sizeof (server_address));
4130         server_address.sin_family = AF_INET;
4131         server_address.sin_addr.s_addr = INADDR_ANY;
4132         server_address.sin_port = htons (prof->command_port);
4133
4134         if (bind (prof->server_socket, (struct sockaddr *) &server_address, sizeof (server_address)) == -1) {
4135                 fprintf (stderr, "Cannot bind server socket on port %d: %s\n", prof->command_port, strerror (errno));
4136                 close (prof->server_socket);
4137                 exit (1);
4138         }
4139
4140         if (listen (prof->server_socket, 1) == -1) {
4141                 fprintf (stderr, "Cannot listen on server socket: %s\n", strerror (errno));
4142                 close (prof->server_socket);
4143                 exit (1);
4144         }
4145
4146         socklen_t slen = sizeof (server_address);
4147
4148         if (getsockname (prof->server_socket, (struct sockaddr *) &server_address, &slen)) {
4149                 fprintf (stderr, "Could not get assigned port: %s\n", strerror (errno));
4150                 close (prof->server_socket);
4151                 exit (1);
4152         }
4153
4154         prof->command_port = ntohs (server_address.sin_port);
4155
4156         if (!mono_native_thread_create (&prof->helper_thread, helper_thread, prof)) {
4157                 fprintf (stderr, "Could not start helper thread\n");
4158                 close (prof->server_socket);
4159                 exit (1);
4160         }
4161 }
4162
4163 static void
4164 free_writer_entry (gpointer p)
4165 {
4166         mono_lock_free_free (p, WRITER_ENTRY_BLOCK_SIZE);
4167 }
4168
4169 static gboolean
4170 handle_writer_queue_entry (MonoProfiler *prof)
4171 {
4172         WriterQueueEntry *entry;
4173
4174         if ((entry = (WriterQueueEntry *) mono_lock_free_queue_dequeue (&prof->writer_queue))) {
4175                 if (!entry->methods)
4176                         goto no_methods;
4177
4178                 gboolean wrote_methods = FALSE;
4179
4180                 /*
4181                  * Encode the method events in a temporary log buffer that we
4182                  * flush to disk before the main buffer, ensuring that all
4183                  * methods have metadata emitted before they're referenced.
4184                  *
4185                  * We use a 'proper' thread-local buffer for this as opposed
4186                  * to allocating and freeing a buffer by hand because the call
4187                  * to mono_method_full_name () below may trigger class load
4188                  * events when it retrieves the signature of the method. So a
4189                  * thread-local buffer needs to exist when such events occur.
4190                  */
4191                 for (guint i = 0; i < entry->methods->len; i++) {
4192                         MethodInfo *info = (MethodInfo *) g_ptr_array_index (entry->methods, i);
4193
4194                         if (mono_conc_hashtable_lookup (prof->method_table, info->method))
4195                                 goto free_info; // This method already has metadata emitted.
4196
4197                         /*
4198                          * Other threads use this hash table to get a general
4199                          * idea of whether a method has already been emitted to
4200                          * the stream. Due to the way we add to this table, it
4201                          * can easily happen that multiple threads queue up the
4202                          * same methods, but that's OK since eventually all
4203                          * methods will be in this table and the thread-local
4204                          * method lists will just be empty for the rest of the
4205                          * app's lifetime.
4206                          */
4207                         mono_os_mutex_lock (&prof->method_table_mutex);
4208                         mono_conc_hashtable_insert (prof->method_table, info->method, info->method);
4209                         mono_os_mutex_unlock (&prof->method_table_mutex);
4210
4211                         char *name = mono_method_full_name (info->method, 1);
4212                         int nlen = strlen (name) + 1;
4213                         void *cstart = info->ji ? mono_jit_info_get_code_start (info->ji) : NULL;
4214                         int csize = info->ji ? mono_jit_info_get_code_size (info->ji) : 0;
4215
4216                         ENTER_LOG (&method_jits_ctr, logbuffer,
4217                                 EVENT_SIZE /* event */ +
4218                                 LEB128_SIZE /* method */ +
4219                                 LEB128_SIZE /* start */ +
4220                                 LEB128_SIZE /* size */ +
4221                                 nlen /* name */
4222                         );
4223
4224                         emit_event_time (logbuffer, TYPE_JIT | TYPE_METHOD, info->time);
4225                         emit_method_inner (logbuffer, info->method);
4226                         emit_ptr (logbuffer, cstart);
4227                         emit_value (logbuffer, csize);
4228
4229                         memcpy (logbuffer->cursor, name, nlen);
4230                         logbuffer->cursor += nlen;
4231
4232                         EXIT_LOG_EXPLICIT (NO_SEND, NO_REQUESTS);
4233
4234                         mono_free (name);
4235
4236                         wrote_methods = TRUE;
4237
4238                 free_info:
4239                         g_free (info);
4240                 }
4241
4242                 g_ptr_array_free (entry->methods, TRUE);
4243
4244                 if (wrote_methods) {
4245                         dump_buffer_threadless (prof, PROF_TLS_GET ()->buffer);
4246                         init_buffer_state (PROF_TLS_GET ());
4247                 }
4248
4249         no_methods:
4250                 dump_buffer (prof, entry->buffer);
4251
4252                 mono_thread_hazardous_try_free (entry, free_writer_entry);
4253
4254                 return TRUE;
4255         }
4256
4257         return FALSE;
4258 }
4259
4260 static void *
4261 writer_thread (void *arg)
4262 {
4263         MonoProfiler *prof = (MonoProfiler *)arg;
4264
4265         mono_threads_attach_tools_thread ();
4266         mono_native_thread_set_name (mono_native_thread_id_get (), "Profiler writer");
4267
4268         dump_header (prof);
4269
4270         MonoProfilerThread *thread = init_thread (prof, FALSE);
4271
4272         while (InterlockedRead (&prof->run_writer_thread)) {
4273                 mono_os_sem_wait (&prof->writer_queue_sem, MONO_SEM_FLAGS_NONE);
4274                 handle_writer_queue_entry (prof);
4275         }
4276
4277         /* Drain any remaining entries on shutdown. */
4278         while (handle_writer_queue_entry (prof));
4279
4280         free_buffer (thread->buffer, thread->buffer->size);
4281         deinit_thread (thread);
4282
4283         mono_thread_info_detach ();
4284
4285         return NULL;
4286 }
4287
4288 static void
4289 start_writer_thread (MonoProfiler* prof)
4290 {
4291         InterlockedWrite (&prof->run_writer_thread, 1);
4292
4293         if (!mono_native_thread_create (&prof->writer_thread, writer_thread, prof)) {
4294                 fprintf (stderr, "Could not start writer thread\n");
4295                 exit (1);
4296         }
4297 }
4298
4299 static void
4300 reuse_sample_hit (gpointer p)
4301 {
4302         SampleHit *sample = p;
4303
4304         mono_lock_free_queue_node_unpoison (&sample->node);
4305         mono_lock_free_queue_enqueue (&sample->prof->sample_reuse_queue, &sample->node);
4306 }
4307
4308 static gboolean
4309 handle_dumper_queue_entry (MonoProfiler *prof)
4310 {
4311         SampleHit *sample;
4312
4313         if ((sample = (SampleHit *) mono_lock_free_queue_dequeue (&prof->dumper_queue))) {
4314                 for (int i = 0; i < sample->count; ++i) {
4315                         MonoMethod *method = sample->frames [i].method;
4316                         MonoDomain *domain = sample->frames [i].domain;
4317                         void *address = sample->frames [i].base_address;
4318
4319                         if (!method) {
4320                                 g_assert (domain && "What happened to the domain pointer?");
4321                                 g_assert (address && "What happened to the instruction pointer?");
4322
4323                                 MonoJitInfo *ji = mono_jit_info_table_find (domain, (char *) address);
4324
4325                                 if (ji)
4326                                         sample->frames [i].method = mono_jit_info_get_method (ji);
4327                         }
4328                 }
4329
4330                 ENTER_LOG (&sample_hits_ctr, logbuffer,
4331                         EVENT_SIZE /* event */ +
4332                         BYTE_SIZE /* type */ +
4333                         LEB128_SIZE /* tid */ +
4334                         LEB128_SIZE /* count */ +
4335                         1 * (
4336                                 LEB128_SIZE /* ip */
4337                         ) +
4338                         LEB128_SIZE /* managed count */ +
4339                         sample->count * (
4340                                 LEB128_SIZE /* method */
4341                         )
4342                 );
4343
4344                 emit_event_time (logbuffer, TYPE_SAMPLE | TYPE_SAMPLE_HIT, sample->time);
4345                 emit_byte (logbuffer, SAMPLE_CYCLES);
4346                 emit_ptr (logbuffer, (void *) sample->tid);
4347                 emit_value (logbuffer, 1);
4348
4349                 // TODO: Actual native unwinding.
4350                 for (int i = 0; i < 1; ++i) {
4351                         emit_ptr (logbuffer, sample->ip);
4352                         add_code_pointer ((uintptr_t) sample->ip);
4353                 }
4354
4355                 /* new in data version 6 */
4356                 emit_uvalue (logbuffer, sample->count);
4357
4358                 for (int i = 0; i < sample->count; ++i)
4359                         emit_method (logbuffer, sample->frames [i].method);
4360
4361                 EXIT_LOG_EXPLICIT (DO_SEND, NO_REQUESTS);
4362
4363                 mono_thread_hazardous_try_free (sample, reuse_sample_hit);
4364
4365                 dump_unmanaged_coderefs (prof);
4366         }
4367
4368         return FALSE;
4369 }
4370
4371 static void *
4372 dumper_thread (void *arg)
4373 {
4374         MonoProfiler *prof = (MonoProfiler *)arg;
4375
4376         mono_threads_attach_tools_thread ();
4377         mono_native_thread_set_name (mono_native_thread_id_get (), "Profiler dumper");
4378
4379         MonoProfilerThread *thread = init_thread (prof, FALSE);
4380
4381         while (InterlockedRead (&prof->run_dumper_thread)) {
4382                 mono_os_sem_wait (&prof->dumper_queue_sem, MONO_SEM_FLAGS_NONE);
4383                 handle_dumper_queue_entry (prof);
4384         }
4385
4386         /* Drain any remaining entries on shutdown. */
4387         while (handle_dumper_queue_entry (prof));
4388
4389         send_log_unsafe (FALSE);
4390         deinit_thread (thread);
4391
4392         mono_thread_info_detach ();
4393
4394         return NULL;
4395 }
4396
4397 static void
4398 start_dumper_thread (MonoProfiler* prof)
4399 {
4400         InterlockedWrite (&prof->run_dumper_thread, 1);
4401
4402         if (!mono_native_thread_create (&prof->dumper_thread, dumper_thread, prof)) {
4403                 fprintf (stderr, "Could not start dumper thread\n");
4404                 exit (1);
4405         }
4406 }
4407
4408 static void
4409 register_counter (const char *name, gint32 *counter)
4410 {
4411         mono_counters_register (name, MONO_COUNTER_UINT | MONO_COUNTER_PROFILER | MONO_COUNTER_MONOTONIC, counter);
4412 }
4413
4414 static void
4415 runtime_initialized (MonoProfiler *profiler)
4416 {
4417         InterlockedWrite (&runtime_inited, 1);
4418
4419         register_counter ("Sample events allocated", &sample_allocations_ctr);
4420         register_counter ("Log buffers allocated", &buffer_allocations_ctr);
4421
4422         register_counter ("Event: Sync points", &sync_points_ctr);
4423         register_counter ("Event: Heap objects", &heap_objects_ctr);
4424         register_counter ("Event: Heap starts", &heap_starts_ctr);
4425         register_counter ("Event: Heap ends", &heap_ends_ctr);
4426         register_counter ("Event: Heap roots", &heap_roots_ctr);
4427         register_counter ("Event: GC events", &gc_events_ctr);
4428         register_counter ("Event: GC resizes", &gc_resizes_ctr);
4429         register_counter ("Event: GC allocations", &gc_allocs_ctr);
4430         register_counter ("Event: GC moves", &gc_moves_ctr);
4431         register_counter ("Event: GC handle creations", &gc_handle_creations_ctr);
4432         register_counter ("Event: GC handle deletions", &gc_handle_deletions_ctr);
4433         register_counter ("Event: GC finalize starts", &finalize_begins_ctr);
4434         register_counter ("Event: GC finalize ends", &finalize_ends_ctr);
4435         register_counter ("Event: GC finalize object starts", &finalize_object_begins_ctr);
4436         register_counter ("Event: GC finalize object ends", &finalize_object_ends_ctr);
4437         register_counter ("Event: Image loads", &image_loads_ctr);
4438         register_counter ("Event: Image unloads", &image_unloads_ctr);
4439         register_counter ("Event: Assembly loads", &assembly_loads_ctr);
4440         register_counter ("Event: Assembly unloads", &assembly_unloads_ctr);
4441         register_counter ("Event: Class loads", &class_loads_ctr);
4442         register_counter ("Event: Class unloads", &class_unloads_ctr);
4443         register_counter ("Event: Method entries", &method_entries_ctr);
4444         register_counter ("Event: Method exits", &method_exits_ctr);
4445         register_counter ("Event: Method exception leaves", &method_exception_exits_ctr);
4446         register_counter ("Event: Method JITs", &method_jits_ctr);
4447         register_counter ("Event: Code buffers", &code_buffers_ctr);
4448         register_counter ("Event: Exception throws", &exception_throws_ctr);
4449         register_counter ("Event: Exception clauses", &exception_clauses_ctr);
4450         register_counter ("Event: Monitor contentions", &monitor_contentions_ctr);
4451         register_counter ("Event: Monitor acquisitions", &monitor_acquisitions_ctr);
4452         register_counter ("Event: Monitor failures", &monitor_failures_ctr);
4453         register_counter ("Event: Thread starts", &thread_starts_ctr);
4454         register_counter ("Event: Thread ends", &thread_ends_ctr);
4455         register_counter ("Event: Thread names", &thread_names_ctr);
4456         register_counter ("Event: Domain loads", &domain_loads_ctr);
4457         register_counter ("Event: Domain unloads", &domain_unloads_ctr);
4458         register_counter ("Event: Domain names", &domain_names_ctr);
4459         register_counter ("Event: Context loads", &context_loads_ctr);
4460         register_counter ("Event: Context unloads", &context_unloads_ctr);
4461         register_counter ("Event: Sample binaries", &sample_ubins_ctr);
4462         register_counter ("Event: Sample symbols", &sample_usyms_ctr);
4463         register_counter ("Event: Sample hits", &sample_hits_ctr);
4464         register_counter ("Event: Counter descriptors", &counter_descriptors_ctr);
4465         register_counter ("Event: Counter samples", &counter_samples_ctr);
4466         register_counter ("Event: Performance counter descriptors", &perfcounter_descriptors_ctr);
4467         register_counter ("Event: Performance counter samples", &perfcounter_samples_ctr);
4468         register_counter ("Event: Coverage methods", &coverage_methods_ctr);
4469         register_counter ("Event: Coverage statements", &coverage_statements_ctr);
4470         register_counter ("Event: Coverage classes", &coverage_classes_ctr);
4471         register_counter ("Event: Coverage assemblies", &coverage_assemblies_ctr);
4472
4473         counters_init (profiler);
4474
4475         /*
4476          * We must start the helper thread before the writer thread. This is
4477          * because the helper thread sets up the command port which is written to
4478          * the log header by the writer thread.
4479          */
4480         start_helper_thread (profiler);
4481         start_writer_thread (profiler);
4482         start_dumper_thread (profiler);
4483 }
4484
4485 static MonoProfiler*
4486 create_profiler (const char *args, const char *filename, GPtrArray *filters)
4487 {
4488         MonoProfiler *prof;
4489         char *nf;
4490         int force_delete = 0;
4491         prof = (MonoProfiler *) g_calloc (1, sizeof (MonoProfiler));
4492
4493         prof->args = pstrdup (args);
4494         prof->command_port = command_port;
4495         if (filename && *filename == '-') {
4496                 force_delete = 1;
4497                 filename++;
4498                 g_warning ("WARNING: the output:-FILENAME option is deprecated, the profiler now always overrides the output file\n");
4499         }
4500         if (!filename) {
4501                 if (do_report)
4502                         filename = "|mprof-report -";
4503                 else
4504                         filename = "output.mlpd";
4505                 nf = (char*)filename;
4506         } else {
4507                 nf = new_filename (filename);
4508                 if (do_report) {
4509                         int s = strlen (nf) + 32;
4510                         char *p = (char *) g_malloc (s);
4511                         snprintf (p, s, "|mprof-report '--out=%s' -", nf);
4512                         g_free (nf);
4513                         nf = p;
4514                 }
4515         }
4516         if (*nf == '|') {
4517                 prof->file = popen (nf + 1, "w");
4518                 prof->pipe_output = 1;
4519         } else if (*nf == '#') {
4520                 int fd = strtol (nf + 1, NULL, 10);
4521                 prof->file = fdopen (fd, "a");
4522         } else {
4523                 if (force_delete)
4524                         unlink (nf);
4525                 prof->file = fopen (nf, "wb");
4526         }
4527         if (!prof->file) {
4528                 fprintf (stderr, "Cannot create profiler output: %s\n", nf);
4529                 exit (1);
4530         }
4531
4532 #if defined (HAVE_SYS_ZLIB)
4533         if (use_zip)
4534                 prof->gzfile = gzdopen (fileno (prof->file), "wb");
4535 #endif
4536
4537         /*
4538          * If you hit this assert while increasing MAX_FRAMES, you need to increase
4539          * SAMPLE_BLOCK_SIZE as well.
4540          */
4541         g_assert (SAMPLE_SLOT_SIZE (MAX_FRAMES) * 2 < LOCK_FREE_ALLOC_SB_USABLE_SIZE (SAMPLE_BLOCK_SIZE));
4542
4543         // FIXME: We should free this stuff too.
4544         mono_lock_free_allocator_init_size_class (&prof->sample_size_class, SAMPLE_SLOT_SIZE (num_frames), SAMPLE_BLOCK_SIZE);
4545         mono_lock_free_allocator_init_allocator (&prof->sample_allocator, &prof->sample_size_class, MONO_MEM_ACCOUNT_PROFILER);
4546
4547         mono_lock_free_queue_init (&prof->sample_reuse_queue);
4548
4549         g_assert (sizeof (WriterQueueEntry) * 2 < LOCK_FREE_ALLOC_SB_USABLE_SIZE (WRITER_ENTRY_BLOCK_SIZE));
4550
4551         // FIXME: We should free this stuff too.
4552         mono_lock_free_allocator_init_size_class (&prof->writer_entry_size_class, sizeof (WriterQueueEntry), WRITER_ENTRY_BLOCK_SIZE);
4553         mono_lock_free_allocator_init_allocator (&prof->writer_entry_allocator, &prof->writer_entry_size_class, MONO_MEM_ACCOUNT_PROFILER);
4554
4555         mono_lock_free_queue_init (&prof->writer_queue);
4556         mono_os_sem_init (&prof->writer_queue_sem, 0);
4557
4558         mono_lock_free_queue_init (&prof->dumper_queue);
4559         mono_os_sem_init (&prof->dumper_queue_sem, 0);
4560
4561         mono_os_mutex_init (&prof->method_table_mutex);
4562         prof->method_table = mono_conc_hashtable_new (NULL, NULL);
4563
4564         if (do_coverage)
4565                 coverage_init (prof);
4566         prof->coverage_filters = filters;
4567
4568         prof->startup_time = current_time ();
4569         return prof;
4570 }
4571
4572 /*
4573  * declaration to silence the compiler: this is the entry point that
4574  * mono will load from the shared library and call.
4575  */
4576 extern void
4577 mono_profiler_startup (const char *desc);
4578
4579 extern void
4580 mono_profiler_startup_log (const char *desc);
4581
4582 /*
4583  * this is the entry point that will be used when the profiler
4584  * is embedded inside the main executable.
4585  */
4586 void
4587 mono_profiler_startup_log (const char *desc)
4588 {
4589         mono_profiler_startup (desc);
4590 }
4591
4592 void
4593 mono_profiler_startup (const char *desc)
4594 {
4595         GPtrArray *filters = NULL;
4596         MonoProfiler *prof;
4597
4598         proflog_parse_args (&config, desc [3] == ':' ? desc + 4 : "");
4599
4600         //XXX maybe later cleanup to use config directly
4601         nocalls = !(config.effective_mask & PROFLOG_CALL_EVENTS);
4602         no_counters = !(config.effective_mask & PROFLOG_COUNTER_EVENTS);
4603         do_report = config.do_report;
4604         do_debug = config.do_debug;
4605         do_heap_shot = (config.effective_mask & PROFLOG_HEAPSHOT_FEATURE);
4606         hs_mode_ondemand = config.hs_mode_ondemand;
4607         hs_mode_ms = config.hs_mode_ms;
4608         hs_mode_gc = config.hs_mode_gc;
4609         do_mono_sample = (config.effective_mask & PROFLOG_SAMPLING_FEATURE);
4610         use_zip = config.use_zip;
4611         command_port = config.command_port;
4612         num_frames = config.num_frames;
4613         notraces = config.notraces;
4614         max_allocated_sample_hits = config.max_allocated_sample_hits;
4615         max_call_depth = config.max_call_depth;
4616         do_coverage = (config.effective_mask & PROFLOG_CODE_COV_FEATURE);
4617         debug_coverage = config.debug_coverage;
4618         only_coverage = config.only_coverage;
4619
4620         if (config.cov_filter_files) {
4621                 filters = g_ptr_array_new ();
4622                 int i;
4623                 for (i = 0; i < config.cov_filter_files->len; ++i) {
4624                         const char *name = config.cov_filter_files->pdata [i];
4625                         parse_cov_filter_file (filters, name);
4626                 }
4627         }
4628
4629         init_time ();
4630
4631         PROF_TLS_INIT ();
4632
4633         prof = create_profiler (desc, config.output_filename, filters);
4634         if (!prof) {
4635                 PROF_TLS_FREE ();
4636                 return;
4637         }
4638
4639         mono_lls_init (&profiler_thread_list, NULL);
4640
4641         init_thread (prof, TRUE);
4642
4643         //This two events are required for the profiler to work
4644         int events = MONO_PROFILE_THREADS | MONO_PROFILE_GC;
4645
4646         //Required callbacks
4647         mono_profiler_install (prof, log_shutdown);
4648         mono_profiler_install_runtime_initialized (runtime_initialized);
4649
4650         mono_profiler_install_gc (gc_event, gc_resize);
4651         mono_profiler_install_thread (thread_start, thread_end);
4652
4653         //It's questionable whether we actually want this to be mandatory, maybe put it behind the actual event?
4654         mono_profiler_install_thread_name (thread_name);
4655
4656
4657         if (config.effective_mask & PROFLOG_DOMAIN_EVENTS) {
4658                 events |= MONO_PROFILE_APPDOMAIN_EVENTS;
4659                 mono_profiler_install_appdomain (NULL, domain_loaded, domain_unloaded, NULL);
4660                 mono_profiler_install_appdomain_name (domain_name);
4661         }
4662
4663         if (config.effective_mask & PROFLOG_ASSEMBLY_EVENTS) {
4664                 events |= MONO_PROFILE_ASSEMBLY_EVENTS;
4665                 mono_profiler_install_assembly (NULL, assembly_loaded, assembly_unloaded, NULL);
4666         }
4667
4668         if (config.effective_mask & PROFLOG_MODULE_EVENTS) {
4669                 events |= MONO_PROFILE_MODULE_EVENTS;
4670                 mono_profiler_install_module (NULL, image_loaded, image_unloaded, NULL);
4671         }
4672
4673         if (config.effective_mask & PROFLOG_CLASS_EVENTS) {
4674                 events |= MONO_PROFILE_CLASS_EVENTS;
4675                 mono_profiler_install_class (NULL, class_loaded, class_unloaded, NULL);
4676         }
4677
4678         if (config.effective_mask & PROFLOG_JIT_COMPILATION_EVENTS) {
4679                 events |= MONO_PROFILE_JIT_COMPILATION;
4680                 mono_profiler_install_jit_end (method_jitted);
4681                 mono_profiler_install_code_buffer_new (code_buffer_new);
4682         }
4683
4684         if (config.effective_mask & PROFLOG_EXCEPTION_EVENTS) {
4685                 events |= MONO_PROFILE_EXCEPTIONS;
4686                 mono_profiler_install_exception (throw_exc, method_exc_leave, clause_exc);
4687         }
4688
4689         if (config.effective_mask & PROFLOG_ALLOCATION_EVENTS) {
4690                 events |= MONO_PROFILE_ALLOCATIONS;
4691                 mono_profiler_install_allocation (gc_alloc);
4692         }
4693
4694         //PROFLOG_GC_EVENTS is mandatory
4695         //PROFLOG_THREAD_EVENTS is mandatory
4696
4697         if (config.effective_mask & PROFLOG_CALL_EVENTS) {
4698                 events |= MONO_PROFILE_ENTER_LEAVE;
4699                 mono_profiler_install_enter_leave (method_enter, method_leave);
4700         }
4701
4702         if (config.effective_mask & PROFLOG_INS_COVERAGE_EVENTS) {
4703                 events |= MONO_PROFILE_INS_COVERAGE;
4704                 mono_profiler_install_coverage_filter (coverage_filter);
4705         }
4706
4707         //XXX should we check for PROFLOG_SAMPLING_FEATURE instead??
4708         if (config.effective_mask & PROFLOG_SAMPLING_EVENTS) {
4709                 events |= MONO_PROFILE_STATISTICAL;
4710                 mono_profiler_set_statistical_mode (config.sampling_mode, config.sample_freq);
4711                 mono_profiler_install_statistical (mono_sample_hit);
4712         }
4713
4714         if (config.effective_mask & PROFLOG_MONITOR_EVENTS) {
4715                 events |= MONO_PROFILE_MONITOR_EVENTS;
4716                 mono_profiler_install_monitor (monitor_event);
4717         }
4718
4719         if (config.effective_mask & PROFLOG_GC_MOVES_EVENTS) {
4720                 events |= MONO_PROFILE_GC_MOVES;
4721                 mono_profiler_install_gc_moves (gc_moves);
4722         }
4723
4724         // TODO split those in two profiler events
4725         if (config.effective_mask & (PROFLOG_GC_ROOT_EVENTS | PROFLOG_GC_HANDLE_EVENTS)) {
4726                 events |= MONO_PROFILE_GC_ROOTS;
4727                 mono_profiler_install_gc_roots (
4728                         config.effective_mask & (PROFLOG_GC_HANDLE_EVENTS) ? gc_handle : NULL,
4729                         (config.effective_mask & PROFLOG_GC_ROOT_EVENTS) ? gc_roots : NULL);
4730         }
4731
4732         if (config.effective_mask & PROFLOG_CONTEXT_EVENTS) {
4733                 events |= MONO_PROFILE_CONTEXT_EVENTS;
4734                 mono_profiler_install_context (context_loaded, context_unloaded);
4735         }
4736
4737         if (config.effective_mask & PROFLOG_FINALIZATION_EVENTS) {
4738                 events |= MONO_PROFILE_GC_FINALIZATION;
4739                 mono_profiler_install_gc_finalize (finalize_begin, finalize_object_begin, finalize_object_end, finalize_end);   
4740         }
4741
4742         //PROFLOG_COUNTER_EVENTS is a pseudo event controled by the no_counters global var
4743         //PROFLOG_GC_HANDLE_EVENTS is handled together with PROFLOG_GC_ROOT_EVENTS
4744
4745         mono_profiler_set_events ((MonoProfileFlags)events);
4746 }