added doxygen comments
authorMatthias Braun <matze@braunis.de>
Wed, 2 May 2007 13:26:44 +0000 (13:26 +0000)
committerMatthias Braun <matze@braunis.de>
Wed, 2 May 2007 13:26:44 +0000 (13:26 +0000)
[r13590]

ir/opt/data_flow_scalar_replace.c
ir/opt/data_flow_scalar_replace.h
ir/opt/escape_ana.h
ir/opt/proc_cloning.h
ir/opt/reassoc.c

index a26c5eb..fa3e72b 100644 (file)
  * PURPOSE.
  */
 
-/*
- * Project:     libFIRM
- * File name:   ir/opt/data_flow_scalar_replace.c
- * Purpose:     scalar replacement of arrays and compounds
- * Author:      Beyhan Veliev
- * Modified by: Michael Beck
- * Created:
- * CVS-ID:      $Id$
- * Copyright:   (c) 1998-2005 Universität Karlsruhe
+/**
+ * @file
+ * @brief   scalar replacement of arrays and compounds
+ * @author  Beyhan Veliev, Michael Beck
+ * @version $Id$
  */
 #ifdef HAVE_CONFIG_H
 #include "config.h"
index c2835bb..bd2ef31 100644 (file)
  * PURPOSE.
  */
 
-/*
- * Project:     libFIRM
- * File name:   ir/opt/data_flow_scalar_replace.h
- * Purpose:     scalar replacement of compounds
- * Author:      Beyhan Veliev
- * Created:
- * CVS-ID:
- * Copyright:   (c) 1998-2005 Universität Karlsruhe
+/**
+ * @file
+ * @brief   scalar replacement of compounds
+ * @author  Beyhan Veliev
+ * @version $Id$
  */
-
-#ifndef _DATA_FLOW_SCALAR_REPLACE_H_
-#define _DATA_FLOW_SCALAR_REPLACE_H_
+#ifndef FIRM_OPT_DATA_FLOW_SCALAR_REPLACE_H
+#define FIRM_OPT_DATA_FLOW_SCALAR_REPLACE_H
 
 #include "irgraph.h"
 
-
 /**
  * Do the scalar replacement optimization.
  * Make a date flow analyze and split the
@@ -42,4 +37,4 @@
  */
 void data_flow_scalar_replacement_opt(ir_graph *irg);
 
-#endif /* _DATA_FLOW_SCALAR_REPLACE_H_*/
+#endif
index e398727..212b8d9 100644 (file)
  * PURPOSE.
  */
 
-/*
- * Project:     libFIRM
- * File name:   ir/opt/escape_ana.h
- * Purpose:     escape analysis and optimization
- * Author:      Michael Beck
- * Modified by:
- * Created:     03.11.2005
- * CVS-ID:      $Id$
- * Copyright:   (c) 1999-2005 Universität Karlsruhe
+/**
+ * @file
+ * @brief   escape analysis and optimization
+ * @author  Michael Beck
+ * @date    03.11.2005
+ * @version $Id$
  */
-#ifndef _IR_OPT_ESCAPE_ANA_H_
-#define _IR_OPT_ESCAPE_ANA_H_
+#ifndef FIRM_OPT_IR_OPT_ESCAPE_ANA_H
+#define FIRM_OPT_IR_OPT_ESCAPE_ANA_H
 
 #include "firm_types.h"
 
@@ -61,4 +58,4 @@ void escape_enalysis_irg(ir_graph *irg);
  */
 void escape_analysis(int run_scalar_replace);
 
-#endif /* _IR_OPT_ESCAPE_ANA_H_ */
+#endif
index fdd66df..2d6711a 100644 (file)
  * PURPOSE.
  */
 
-/*
- * Project:     libFIRM
- * File name:   ir/clone functions./proc_cloning.h
- * Purpose:     procedure cloning
- * Author:      Beyhan Veliev
- * Created:
- * CVS-ID:      $Id$
- * Copyright:   (c) 1998-2005 Universität Karlsruhe
+/**
+ * @file
+ * @brief   procedure cloning
+ * @author  Beyhan Veliev
+ * @version $Id$
  */
-#ifndef PROC_CLONING_H
-#define PROC_CLONING_H
+#ifndef FIRM_OPT_PROC_CLONING_H
+#define FIRM_OPT_PROC_CLONING_H
 
 #include "firm_types.h"
 
@@ -47,4 +44,4 @@
  */
 void proc_cloning(float threshold);
 
-#endif /* PROC_CLONING_H */
+#endif
index b95ac21..4e8db32 100644 (file)
  * PURPOSE.
  */
 
-/*
- * Project:     libFIRM
- * File name:   ir/opt/reassoc.c
- * Purpose:     Reassociation
- * Author:      Michael Beck
- * Created:
- * CVS-ID:      $Id$
- * Copyright:   (c) 1998-2007 Universität Karlsruhe
+/**
+ * @file
+ * @brief   Reassociation
+ * @author  Michael Beck
+ * @version $Id$
  */
 #ifdef HAVE_CONFIG_H
 #include "config.h"