[sgen] We must do bridge processing with all sgen locks taken.
[mono.git] / mono / metadata / sgen-toggleref.c
index 10f263affe5e992b90b066a37a8c18886804d855..75932c300fc4770649201f03ec20b711c1ac6f84 100644 (file)
@@ -91,8 +91,10 @@ sgen_process_togglerefs (void)
 }
 
 void
-sgen_scan_togglerefs (CopyOrMarkObjectFunc copy_func, char *start, char *end, SgenGrayQueue *queue)
+sgen_scan_togglerefs (char *start, char *end, ScanCopyContext ctx)
 {
+       CopyOrMarkObjectFunc copy_func = ctx.copy_func;
+       SgenGrayQueue *queue = ctx.queue;
        int i;
 
        SGEN_LOG (4, "Scanning ToggleRefs %d", toggleref_array_size);
@@ -134,7 +136,7 @@ ensure_toggleref_capacity (int capacity)
                MonoGCToggleRef *tmp;
                int old_capacity = toggleref_array_capacity;
                while (toggleref_array_capacity < toggleref_array_size + capacity)
-                       toggleref_array_size *= 2;
+                       toggleref_array_capacity *= 2;
 
                tmp = sgen_alloc_internal_dynamic (
                        toggleref_array_capacity * sizeof (MonoGCToggleRef),
@@ -189,4 +191,26 @@ mono_gc_toggleref_register_callback (MonoToggleRefStatus (*proccess_toggleref) (
        toggleref_callback = proccess_toggleref;
 }
 
+static MonoToggleRefStatus
+test_toggleref_callback (MonoObject *obj)
+{
+       static MonoClassField *mono_toggleref_test_field;
+       int status = MONO_TOGGLE_REF_DROP;
+
+       if (!mono_toggleref_test_field) {
+               mono_toggleref_test_field = mono_class_get_field_from_name (mono_object_get_class (obj), "__test");
+               g_assert (mono_toggleref_test_field);
+       }
+
+       mono_field_get_value (obj, mono_toggleref_test_field, &status);
+       printf ("toggleref-cb obj %d\n", status);
+       return status;
+}
+
+void
+sgen_register_test_toggleref_callback (void)
+{
+       toggleref_callback = test_toggleref_callback;
+}
+
 #endif