X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fana%2Fphiclass.c;h=f90046f1c14186c1d7ffa0b1c316359b11373ac0;hb=ac0462d2c9bacc6c0c59ce6dd3769b0ace5dc975;hp=8dc95f9cd163ef7fbf19251a84722d3e041a5fa1;hpb=8e28f7419e677754aa731f647da8c3ed3eeb43ea;p=libfirm diff --git a/ir/ana/phiclass.c b/ir/ana/phiclass.c index 8dc95f9cd..f90046f1c 100644 --- a/ir/ana/phiclass.c +++ b/ir/ana/phiclass.c @@ -1,4 +1,25 @@ +/* + * 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. + */ + /** + * @file + * @brief Implementation of phiclass analysis * @author Daniel Grund, Christian Wuerdig * @cvsid $Id$ * @date 09.08.2005 @@ -21,7 +42,7 @@ #include "irnodeset.h" struct _phi_classes_t { - phase_t ph; /* The phase object holding the irn data */ + ir_phase ph; /* The phase object holding the irn data */ pset *all_phi_classes; /* A set containing all Phi classes */ ir_graph *irg; /* The irg this is all about */ unsigned pure_phi_classes; /* Build pure Phi classes */ @@ -32,19 +53,20 @@ typedef struct _irn_phi_class_t { ir_node ***phi_cls; /* the array of node pointers representing the class */ } irn_phi_class_t; -static INLINE ir_node ***_get_phi_class(phase_t *ph, ir_node *irn) { +static INLINE ir_node ***_get_phi_class(ir_phase *ph, ir_node *irn) { irn_phi_class_t *ipc = phase_get_or_set_irn_data(ph, irn); return ipc->phi_cls; } -static INLINE void _set_phi_class(phase_t *ph, ir_node *irn, ir_node ***cls) { +static INLINE void _set_phi_class(ir_phase *ph, ir_node *irn, ir_node ***cls) { irn_phi_class_t *ipc = phase_get_or_set_irn_data(ph, irn); ipc->phi_cls = cls; } /* initialize data structure for given irn in given phase */ -static void *irn_phi_class_init(phase_t *ph, ir_node *irn, void *data) { +static void *irn_phi_class_init(ir_phase *ph, ir_node *irn, void *data) { irn_phi_class_t *ipc = data ? data : phase_alloc(ph, sizeof(ipc[0])); + (void) irn; memset(ipc, 0, sizeof(ipc[0])); return ipc; } @@ -198,7 +220,7 @@ phi_classes_t *phi_class_new_from_irg(ir_graph *irg, int pure_phi_classes) { phi_classes_t *res = xmalloc(sizeof(*res)); FIRM_DBG_REGISTER(res->dbg, "ir.ana.phiclass"); - phase_init(&res->ph, "phi_classes", irg, PHASE_DEFAULT_GROWTH, irn_phi_class_init); + phase_init(&res->ph, "phi_classes", irg, PHASE_DEFAULT_GROWTH, irn_phi_class_init, NULL); res->irg = irg; res->all_phi_classes = pset_new_ptr(5); @@ -217,7 +239,7 @@ phi_classes_t *phi_class_new_from_set(ir_graph *irg, ir_nodeset_t *all_phis, int phi_classes_t *res = xmalloc(sizeof(*res)); FIRM_DBG_REGISTER(res->dbg, "ir.ana.phiclass"); - phase_init(&res->ph, "phi_classes", irg, PHASE_DEFAULT_GROWTH, irn_phi_class_init); + phase_init(&res->ph, "phi_classes", irg, PHASE_DEFAULT_GROWTH, irn_phi_class_init, NULL); res->irg = irg; res->all_phi_classes = pset_new_ptr(5);