X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fopt%2Fgvn_pre.h;h=d404a9d41f7f0d8d658b689efd22e9665cf7d22f;hb=3958bfcd6866194c5dc191e0486b1886230afcba;hp=450622d9cc1aa1947f220fcc05c6099df150ed8d;hpb=863d31d7a5c8210432fef88b30fc3e8353131538;p=libfirm diff --git a/ir/opt/gvn_pre.h b/ir/opt/gvn_pre.h index 450622d9c..d404a9d41 100644 --- a/ir/opt/gvn_pre.h +++ b/ir/opt/gvn_pre.h @@ -1,15 +1,31 @@ /* - * Project: libFIRM - * File name: ir/opt/gvn_pre.h - * Purpose: Global Value Numbering Partial Redundancy Elimination - * Author: Michael Beck, Rubino Geiss - * Created: - * CVS-ID: $Id$ - * Copyright: (c) 1998-2006 Universität Karlsruhe - * Licence: This file protected by GPL - GNU GENERAL PUBLIC LICENSE. + * Copyright (C) 1995-2007 University of Karlsruhe. All right reserved. + * + * This file is part of libFirm. + * + * This file may be distributed and/or modified under the terms of the + * GNU General Public License version 2 as published by the Free Software + * Foundation and appearing in the file LICENSE.GPL included in the + * packaging of this file. + * + * Licensees holding valid libFirm Professional Edition licenses may use + * this file in accordance with the libFirm Commercial License. + * Agreement provided with the Software. + * + * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE + * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE. */ -#ifndef __FIRM_OPT_GVN_PRE_H__ -#define __FIRM_OPT_GVN_PRE_H__ + +/** + * @file + * @brief Global Value Numbering Partial Redundancy Elimination + * (VanDrunen Hosking 2004) + * @author Michael Beck, Rubino Geiss + * @version $Id$ + */ +#ifndef FIRM_OPT_GVN_PRE_H +#define FIRM_OPT_GVN_PRE_H #include "firm_types.h" @@ -19,7 +35,13 @@ * Can be used to replace place_code() completely. * * Based on VanDrunen and Hosking 2004. + * + * @param irg the graph + * + * @note + * Currently completely broken because the used sets do NOT + * preserve the topological sort of its elements. */ void do_gvn_pre(ir_graph *irg); -#endif /* __FIRM_OPT_GVN_PRE_H__ */ +#endif /* FIRM_OPT_GVN_PRE_H */