Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / data / mono.d
index 76721151289f4f091c13303179e90a6cc71d5a78..69f46525c7b0403d1ed6f835f99d7344242abe42 100644 (file)
@@ -19,25 +19,18 @@ provider mono {
        probe gc__begin (int generation);
        probe gc__end (int generation);
 
+       probe gc__requested (int generation, uintptr_t requested_size, int wait_to_finish);
+
        probe gc__concurrent__start__begin (int generation);
-       probe gc__concurrent__start__end (int generation);
-       probe gc__concurrent__update__finish__begin (int generation);
-       probe gc__concurrent__update__end (int generation);
-       probe gc__concurrent__finish__end (int generation);
+       probe gc__concurrent__update__finish__begin (int generation, long long num_major_objects_marked);
 
-       probe gc__sweep__begin (int generation);
-       probe gc__sweep__end (int generation);
+       probe gc__sweep__begin (int generation, int full_sweep);
+       probe gc__sweep__end (int generation, int full_sweep);
 
        probe gc__world__stop__begin ();
        probe gc__world__stop__end ();
-       probe gc__world__restart__begin ();
-       probe gc__world__restart__end ();
-
-       probe gc__heap__alloc (uintptr_t addr, uintptr_t len);
-       probe gc__heap__free (uintptr_t addr, uintptr_t len);
-
-       probe gc__locked ();
-       probe gc__unlocked ();
+       probe gc__world__restart__begin (int generation);
+       probe gc__world__restart__end (int generation);
 
        probe gc__nursery__tlab__alloc (uintptr_t addr, uintptr_t len);
        probe gc__nursery__obj__alloc (uintptr_t addr, uintptr_t size, char *ns_name, char *class_name);
@@ -45,7 +38,6 @@ provider mono {
        probe gc__major__obj__alloc__large (uintptr_t addr, uintptr_t size, char *ns_name, char *class_name);
        probe gc__major__obj__alloc__pinned (uintptr_t addr, uintptr_t size, char *ns_name, char *class_name);
        probe gc__major__obj__alloc__degraded (uintptr_t addr, uintptr_t size, char *ns_name, char *class_name);
-       probe gc__major__obj__alloc__mature (uintptr_t addr, uintptr_t size, char *ns_name, char *class_name);
 
        /* Can be nursery->nursery, nursery->major or major->major */
        probe gc__obj__moved (uintptr_t dest, uintptr_t src, int dest_gen, int src_gen, uintptr_t size, char *ns_name, char *class_name);
@@ -54,6 +46,14 @@ provider mono {
        probe gc__major__swept (uintptr_t addr, uintptr_t len);
 
        probe gc__obj__pinned (uintptr_t addr, uintptr_t size, char *ns_name, char *class_name, int generation);
+
+       probe gc__finalize__enqueue (uintptr_t addr, uintptr_t size, char *ns_name, char *class_name, int generation, int is_critical);
+       probe gc__finalize__invoke (uintptr_t addr, uintptr_t size, char *ns_name, char *class_name);
+
+       probe gc__weak__update (uintptr_t ref_addr, uintptr_t new_addr, uintptr_t size, char *ns_name, char *class_name, int track);
+
+       probe gc__global__remset__add (uintptr_t ref_addr, uintptr_t obj_addr, uintptr_t size, char *ns_name, char *class_name);
+       probe gc__obj__cemented (uintptr_t addr, uintptr_t size, char *ns_name, char *class_name);
 };
 
 #pragma D attributes Evolving/Evolving/Common provider mono provider