X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Ftr%2Fmangle.c;h=5adb6661acc3f9830da687dd77ddf28d9f8ae3f6;hb=79e991959fc8aee13e1b1d92220bde34a22afd92;hp=bbdf74e110854235312cfb44f5d3df126b148c8d;hpb=fb648cf14f79e1baffd2b4c4b705f69383e9b613;p=libfirm diff --git a/ir/tr/mangle.c b/ir/tr/mangle.c index bbdf74e11..5adb6661a 100644 --- a/ir/tr/mangle.c +++ b/ir/tr/mangle.c @@ -1,21 +1,23 @@ -/* Copyright (C) 1998 - 2000 by Universitaet Karlsruhe -** All rights reserved. -** -** Authors: Martin Trapp, Christian Schaefer -** -*/ +/* + * Project: libFIRM + * File name: ir/tr/mangle.c + * Purpose: Methods to manipulate names. + * Author: Martin Trapp, Christian Schaefer + * Modified by: Goetz Lindenmaier + * Created: + * CVS-ID: $Id$ + * Copyright: (c) 1998-2003 Universität Karlsruhe + * Licence: This file protected by GPL - GNU GENERAL PUBLIC LICENSE. + */ + -/* $Id$ */ #ifdef HAVE_CONFIG_H # include #endif # include "mangle.h" -# include # include "obst.h" -# include -# include "misc.h" /* Make types visible to allow most efficient access */ # include "entity_t.h" @@ -24,6 +26,13 @@ static struct obstack mangle_obst; +static INLINE ident * +mangle_type (type *tp) +{ + assert (tp->kind == k_type); + return tp->name; +} + ident * mangle_entity (entity *ent) { @@ -33,31 +42,16 @@ mangle_entity (entity *ent) ident *res; type_id = mangle_type ((type *) ent->owner); - xoprintf (&mangle_obst, "%I_%I", type_id, ent->name); + obstack_grow(&mangle_obst, get_id_str(type_id), get_id_strlen(type_id)); + obstack_1grow(&mangle_obst,'_'); + obstack_grow(&mangle_obst,get_id_str(ent->name),get_id_strlen(ent->name)); len = obstack_object_size (&mangle_obst); cp = obstack_finish (&mangle_obst); - res = id_from_str (cp, len); + res = id_from_str(cp, len); obstack_free (&mangle_obst, cp); return res; } -ident * -mangle_type (type *type) -{ - char *cp; - int len; - ident *res; - - assert (type->kind == k_type); - /* assert (type->type_op->code == tpo_class); */ - - xoprintf (&mangle_obst, "%I", type->name); - len = obstack_object_size (&mangle_obst); - cp = obstack_finish (&mangle_obst); - res = id_from_str (cp, len); - obstack_free (&mangle_obst, cp); - return res; -} /* Returns a new ident that represents firstscnd. */ ident *mangle (ident *first, ident* scnd) { @@ -65,7 +59,8 @@ ident *mangle (ident *first, ident* scnd) { int len; ident *res; - xoprintf (&mangle_obst, "%I%I", first, scnd); + obstack_grow(&mangle_obst, get_id_str(first), get_id_strlen(first)); + obstack_grow(&mangle_obst, get_id_str(scnd), get_id_strlen(scnd)); len = obstack_object_size (&mangle_obst); cp = obstack_finish (&mangle_obst); res = id_from_str (cp, len); @@ -79,7 +74,9 @@ ident *mangle_u (ident *first, ident* scnd) { int len; ident *res; - xoprintf (&mangle_obst, "%I_%I", first, scnd); + obstack_grow(&mangle_obst, get_id_str(first), get_id_strlen(first)); + obstack_1grow(&mangle_obst,'_'); + obstack_grow(&mangle_obst,get_id_str(scnd),get_id_strlen(scnd)); len = obstack_object_size (&mangle_obst); cp = obstack_finish (&mangle_obst); res = id_from_str (cp, len); @@ -91,5 +88,5 @@ ident *mangle_u (ident *first, ident* scnd) { void init_mangle (void) { - obstack_init (&mangle_obst); + obstack_init(&mangle_obst); }