X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Ftr%2Ftypewalk.h;h=6b9262ac079a1174ae13390d837a84e5679684c9;hb=f3157bda5e3b46233ea4ec9abd8499a8e7bb83ff;hp=e9e1ebf801d8c45bb8beac2b411e7198d937aeeb;hpb=677f67f9b487e35b983148f48b933d54ee383db6;p=libfirm diff --git a/ir/tr/typewalk.h b/ir/tr/typewalk.h index e9e1ebf80..6b9262ac0 100644 --- a/ir/tr/typewalk.h +++ b/ir/tr/typewalk.h @@ -1,13 +1,13 @@ /* Copyright (C) 1998 - 2000 by Universitaet Karlsruhe -** All rights reserved. -** -** Author: Goetz Lindenmaier -** -** traverse the type information. The walker walks the whole ir graph -** to find the distinct type trees in the type graph forest. -** - execute the pre function before recursion -** - execute the post function after recursion +* All rights reserved. +* +* Author: Goetz Lindenmaier +* +* traverse the type information. The walker walks the whole ir graph +* to find the distinct type trees in the type graph forest. +* - execute the pre function before recursion +* - execute the post function after recursion */ /* $Id$ */ @@ -22,8 +22,9 @@ typedef void (type_walk_func)(type_or_ent *, void *); +typedef void (class_walk_func)(type *, void *); -/** Walks over all type information reachable from global roots. +/** Touches every type and entity in unspecified order. If new types/entities are created during the traversal these will be visited, too. **/ @@ -37,7 +38,7 @@ void type_walk_irg(ir_graph *irg, type_walk_func *post, void *env); -/** Walks over all type information reachable from global roots. +/** Touches every class in specified order: - first the super class - second the class itself @@ -49,7 +50,7 @@ void type_walk_super2sub(type_walk_func *pre, type_walk_func *post, void *env); -/** Walks over all type information reachable from global roots. +/** Touches every class in specified order: - first the super class - second the class itself @@ -66,8 +67,8 @@ void type_walk_super(type_walk_func *pre, Does not visit global type, frame types. */ /* @@@ ?? something is wrong with this. */ -void class_walk_super2sub(type_walk_func *pre, - type_walk_func *post, +void class_walk_super2sub(class_walk_func *pre, + class_walk_func *post, void *env);