From 41c7a004112f3c431146fa41ff8f3869678ca40b Mon Sep 17 00:00:00 2001 From: =?utf8?q?G=C3=B6tz=20Lindenmaier?= Date: Thu, 21 Oct 2004 07:23:34 +0000 Subject: [PATCH] comments [r4172] --- ir/ana/rta.c | 24 +++++++----------------- ir/ana/rta.h | 33 +++++++++++++++++++++++++++++++++ 2 files changed, 40 insertions(+), 17 deletions(-) diff --git a/ir/ana/rta.c b/ir/ana/rta.c index eefa6ce82..1f30553cd 100644 --- a/ir/ana/rta.c +++ b/ir/ana/rta.c @@ -12,19 +12,6 @@ * Licence: This file is protected by GPL - GNU GENERAL PUBLIC LICENSE. */ -/** - * Intraprozedurale Analyse zur Abschätzung der Aufrufrelation. Es wird - * die Menge der instantiierten Klassen bestimmt, und daraus eine Abschätzung - * der aufgerufenen Methoden. - * - * Voraussetzung ist, dass das Programm keine Methodenzeiger handhaben kann. - * In diesem Fall koennten Methoden verloren gehen. Oder wir muessen nach - * allen "freien" Methoden suchen (siehe cgana). - * - * @@@ Die Analyse sollte wissen, von welchen Klassen Instanzen ausserhalb - * der Uebersetzungseinheit alloziert werden koennen. Diese muessen in - * die initiale Menge allozierter Klassen aufgenommern werden. - */ #ifdef HAVE_CONFIG_H # include @@ -194,10 +181,10 @@ static void rta_act (ir_node *node, void *env) /* it's an external allocated thing. */ } } else if (get_SymConst_kind(ptr) == symconst_addr_name) { - /* If this SymConst refers to a method the method is external_visible - and therefore must be considered live anyways. */ - if (get_SymConst_name(ptr) != new_id_from_str("iro_Catch")) - assert (ent && "couldn't determine entity of call to symConst"); + /* Entities of kind addr_name may not be allocated in this compilation unit. + If so, the frontend built faulty Firm. So just ignore. */ + /* if (get_SymConst_name(ptr) != new_id_from_str("iro_Catch")) + assert (ent && "couldn't determine entity of call to SymConst of kind addr_name."); */ } else { /* other symconst. */ assert(0 && "This SymConst can not be an address for a method call."); @@ -533,6 +520,9 @@ void rta_report (void) /* * $Log$ + * Revision 1.27 2004/10/21 07:23:34 goetz + * comments + * * Revision 1.26 2004/10/20 14:59:27 liekweg * Removed ecg * diff --git a/ir/ana/rta.h b/ir/ana/rta.h index 6ab29e81f..60e024c32 100644 --- a/ir/ana/rta.h +++ b/ir/ana/rta.h @@ -1,5 +1,35 @@ /* -*- c -*- */ +/* + * Project: libFIRM + * File name: ir/ana/rta.h + * Purpose: Interprocedural analysis to improve the call graph estimate. + * Author: Florian + * Modified by: + * Created: 09.06.2002 + * CVS-ID: $$ + * Copyright: (c) 1999-2004 Universität Karlsruhe + * Licence: This file is protected by GPL - GNU GENERAL PUBLIC LICENSE. + */ + +/** + * Intraprozedurale Analyse zur Abschätzung der Aufrufrelation. Es wird + * die Menge der instantiierten Klassen bestimmt, und daraus eine Abschätzung + * der aufgerufenen Methoden. + * + * Voraussetzung ist, dass das Programm keine Methodenzeiger handhaben kann. + * In diesem Fall koennten Methoden verloren gehen. Oder wir muessen nach + * allen "freien" Methoden suchen (siehe cgana). + * + * @@@ Die Analyse sollte wissen, von welchen Klassen Instanzen ausserhalb + * der Uebersetzungseinheit alloziert werden koennen. Diese muessen in + * die initiale Menge allozierter Klassen aufgenommern werden. + * + * Nach: David F. Bacon and Peter F. Sweeney, + * Fast static analysis of C++ virtual function calls + * OOPSLA 1996 + */ + #ifndef _RTA_H_ #define _RTA_H_ @@ -35,6 +65,9 @@ void rta_report (void); /* * $Log$ + * Revision 1.13 2004/10/21 07:23:34 goetz + * comments + * * Revision 1.12 2004/10/20 14:59:27 liekweg * Removed ecg * -- 2.20.1