X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fcommon%2Ffirm_common.c;h=66069a3e1423f65ddc26a6afd8789c2b5513d2b2;hb=51eff1cc020af2ed56d9ea226fe20faf801cac5b;hp=01c61561c3a6983e0aca78e5aea162f6566c34a3;hpb=6b038b1fcdc8e09a7034891940fe6df49c06bde1;p=libfirm diff --git a/ir/common/firm_common.c b/ir/common/firm_common.c index 01c61561c..66069a3e1 100644 --- a/ir/common/firm_common.c +++ b/ir/common/firm_common.c @@ -3,14 +3,12 @@ * File name: ir/common/firm_common.c * Purpose: * Author: Martin Trapp, Christian Schaefer - * Modified by: Goetz Lindenmaier + * Modified by: Goetz Lindenmaier, Michael Beck * Created: * CVS-ID: $Id$ - * Copyright: (c) 1998-2003 Universität Karlsruhe + * Copyright: (c) 1998-2006 Universität Karlsruhe * Licence: This file protected by GPL - GNU GENERAL PUBLIC LICENSE. */ - - #ifdef HAVE_CONFIG_H # include "config.h" #endif @@ -27,13 +25,11 @@ #define POINTER_READ(p, size) (p) /* returns the kind of the thing */ -firm_kind -get_kind (const void *firm_thing) { +firm_kind get_kind(const void *firm_thing) { return POINTER_READ(firm_thing, sizeof(firm_kind)) ? *(firm_kind *)firm_thing : k_BAD; -} - +} /* get_kind */ -const char* print_firm_kind(void *firm_thing) { +const char *print_firm_kind(void *firm_thing) { if (! firm_thing) return "(NULL)"; @@ -48,23 +44,22 @@ const char* print_firm_kind(void *firm_thing) { case k_ir_loop : return "k_ir_loop"; case k_ir_compound_graph_path : return "k_ir_compound_graph_path"; case k_ir_extblk : return "k_ir_extblk"; + case k_ir_prog : return "k_ir_prog"; default: return ""; } -} +} /* print_firm_kind */ /* * identify a firm thing */ void firm_identify_thing(void *X) { - firm_kind *p = X; - - if (! p) { + if (! X) { printf("(NULL)\n"); return; } - switch (*p) { + switch (get_kind(X)) { case k_BAD: printf("BAD: (%p)\n", X); break; @@ -98,7 +93,10 @@ void firm_identify_thing(void *X) case k_ir_extblk: printf("extended block: (%p)\n", X); break; + case k_ir_prog: + printf("irp: (%p)\n", X); + break; default: printf("Cannot identify thing at (%p).\n", X); } -} +} /* firm_identify_thing */