diff options
author | Vostokov Sergey <s.vostokov@samsung.com> | 2013-12-05 21:05:44 +0900 |
---|---|---|
committer | Carsten Haitzler (Rasterman) <raster@rasterman.com> | 2013-12-05 21:08:57 +0900 |
commit | 47822dc344fa82d01d76177e5b14b61be3547a29 (patch) | |
tree | 13c4b2f08e270fda02e2f646b94568551b6f99c9 | |
parent | 763ce862527104a81e7fd991bef19d35b65e364c (diff) |
evas - Clip mark performance improvement
stable release - cherry-pick me!
We propose a patch that reduces graph traversal work in
evas_object_child_map_across_mark(). It fixes a few particular
slowdowns around Tizen applications, including 0.6 seconds slowdown.
evas_object_child_map_across_mark() does not seem to need to
recursively call itself on the same object many times. Yet we have
noticed that in some scenarios it repeatedly traverses the same
subtrees of objects over and over again, whenever there is more than
one way of reaching these subtrees. In the production issue mentioned
above, certain elm_object_part_content_set() call results in millions
of recursive calls of evas_object_child_map_across_mark(), taking
~0.6sec total.
We propose to allocate a hash table during top-level call to store all
objects visited, and return from sub-calls instantly whenever we are
called over an object we already visited.
-rw-r--r-- | src/lib/evas/canvas/evas_clip.c | 33 |
1 files changed, 24 insertions, 9 deletions
diff --git a/src/lib/evas/canvas/evas_clip.c b/src/lib/evas/canvas/evas_clip.c index 76cddc030..a3f7480d0 100644 --- a/src/lib/evas/canvas/evas_clip.c +++ b/src/lib/evas/canvas/evas_clip.c @@ -73,9 +73,19 @@ evas_object_recalc_clippees(Evas_Object_Protected_Data *obj) #define MAP_ACROSS 1 static void -evas_object_child_map_across_mark(Evas_Object *eo_obj, Evas_Object_Protected_Data *obj, Evas_Object *map_obj, Eina_Bool force) +evas_object_child_map_across_mark(Evas_Object *eo_obj, Evas_Object_Protected_Data *obj, Evas_Object *map_obj, Eina_Bool force, Eina_Hash *visited) { #ifdef MAP_ACROSS + Eina_Bool clear_visited = EINA_FALSE; + + if (!visited) + { + visited = eina_hash_pointer_new(NULL); + clear_visited = EINA_TRUE; + } + if (eina_hash_find(visited, &eo_obj) == (void *)1) return; + else eina_hash_direct_add(visited, &eo_obj, (void *)1); + if ((obj->map->cur.map_parent != map_obj) || force) { EINA_COW_WRITE_BEGIN(evas_object_map_cow, obj->map, Evas_Object_Map_Data, map_write) @@ -98,7 +108,8 @@ evas_object_child_map_across_mark(Evas_Object *eo_obj, Evas_Object_Protected_Dat // if obj has its own map - skip it. already done if ((obj2->map->cur.map) && (obj2->map->cur.usemap)) continue; Evas_Object *eo_obj2 = obj2->object; - evas_object_child_map_across_mark(eo_obj2, obj2, map_obj, force); + evas_object_child_map_across_mark(eo_obj2, obj2, map_obj, + force, visited); } } else if (obj->clip.clipees) @@ -108,10 +119,12 @@ evas_object_child_map_across_mark(Evas_Object *eo_obj, Evas_Object_Protected_Dat EINA_LIST_FOREACH(obj->clip.clipees, l, obj2) { - evas_object_child_map_across_mark(obj2->object, obj2, map_obj, force); + evas_object_child_map_across_mark(obj2->object, obj2, + map_obj, force, visited); } } } + if (clear_visited) eina_hash_free(visited); #endif } @@ -121,7 +134,8 @@ evas_object_clip_across_check(Evas_Object *eo_obj, Evas_Object_Protected_Data *o #ifdef MAP_ACROSS if (!obj->cur->clipper) return; if (obj->cur->clipper->map->cur.map_parent != obj->map->cur.map_parent) - evas_object_child_map_across_mark(eo_obj, obj, obj->map->cur.map_parent, 1); + evas_object_child_map_across_mark(eo_obj, obj, obj->map->cur.map_parent, + 1, NULL); #endif } @@ -134,9 +148,10 @@ evas_object_clip_across_clippees_check(Evas_Object *eo_obj, Evas_Object_Protecte if (!obj->clip.clipees) return; // schloooooooooooow: -// evas_object_child_map_across_mark(eo_obj, obj->map->cur.map_parent, 1); +// evas_object_child_map_across_mark(eo_obj, obj->map->cur.map_parent, 1, NULL); // buggy: - evas_object_child_map_across_mark(eo_obj, obj, obj->map->cur.map_parent, 0); + evas_object_child_map_across_mark(eo_obj, obj, obj->map->cur.map_parent, 0, + NULL); if (obj->cur->cache.clip.dirty) { EINA_LIST_FOREACH(obj->clip.clipees, l, obj2) @@ -156,7 +171,7 @@ evas_object_mapped_clip_across_mark(Evas_Object *eo_obj, Evas_Object_Protected_D { #ifdef MAP_ACROSS if ((obj->map->cur.map) && (obj->map->cur.usemap)) - evas_object_child_map_across_mark(eo_obj, obj, eo_obj, 0); + evas_object_child_map_across_mark(eo_obj, obj, eo_obj, 0, NULL); else { if (obj->smart.parent) @@ -164,10 +179,10 @@ evas_object_mapped_clip_across_mark(Evas_Object *eo_obj, Evas_Object_Protected_D Evas_Object_Protected_Data *smart_parent_obj = eo_data_scope_get(obj->smart.parent, EVAS_OBJ_CLASS); evas_object_child_map_across_mark - (eo_obj, obj, smart_parent_obj->map->cur.map_parent, 0); + (eo_obj, obj, smart_parent_obj->map->cur.map_parent, 0, NULL); } else - evas_object_child_map_across_mark(eo_obj, obj, NULL, 0); + evas_object_child_map_across_mark(eo_obj, obj, NULL, 0, NULL); } #endif } |