X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=data%2Fmono.d;h=69f46525c7b0403d1ed6f835f99d7344242abe42;hb=HEAD;hp=e2f4153beffb7da57d8f33c743b8d80ddbe9e676;hpb=e2b2d181084848f3c5dde2788370db1b79893c69;p=mono.git diff --git a/data/mono.d b/data/mono.d index e2f4153beff..69f46525c7b 100644 --- a/data/mono.d +++ b/data/mono.d @@ -19,11 +19,18 @@ provider mono { probe gc__begin (int generation); probe gc__end (int generation); - probe gc__heap__alloc (uintptr_t addr, uintptr_t len); - probe gc__heap__free (uintptr_t addr, uintptr_t len); + probe gc__requested (int generation, uintptr_t requested_size, int wait_to_finish); - probe gc__locked (); - probe gc__unlocked (); + probe gc__concurrent__start__begin (int generation); + probe gc__concurrent__update__finish__begin (int generation, long long num_major_objects_marked); + + 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 (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); @@ -31,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); @@ -40,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