trouts: move add_* functions to private API
[libfirm] / include / libfirm / firm.h
index 65bf8ce..8455c13 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 1995-2008 University of Karlsruhe.  All right reserved.
+ * Copyright (C) 1995-2010 University of Karlsruhe.  All right reserved.
  *
  * This file is part of libFirm.
  *
  * @file
  * @brief     Central firm header.
  * @author    Martin Trapp, Christian Schaefer, Goetz Lindenmaier
- * @version   $Id$
- * @brief
- *  Central FIRM header.
+ * @brief     Central FIRM header.
+ */
+
+/** @mainpage
  *
  *  FIRM is a full graph based intermediate representation in SSA Form
  *  with a novel concept to model side effects.  It allows fast, aggressive
  *
  *   Further this library supplies functionality to build and optimize FIRM graphs
  *   and further functionality needed in a compiler.  Finally there is more
- *   generic functionality to support implementations using firm.  (Code generation,
- *   further optimizations).
+ *   generic functionality to support implementations using firm.
+ *   (Code generation, further optimizations).
  */
 #ifndef FIRM_COMMON_FIRM_H
 #define FIRM_COMMON_FIRM_H
 
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-#include "absgraph.h"
 #include "analyze_irg_args.h"
 #include "be.h"
 #include "callgraph.h"
 #include "cdep.h"
 #include "cgana.h"
 #include "dbginfo.h"
-#include "dfs.h"
 #include "execfreq.h"
-#include "execution_frequency.h"
-#include "field_temperature.h"
 #include "firm_common.h"
 #include "firmstat.h"
 #include "firm_types.h"
-#include "height.h"
+#include "heights.h"
 #include "ident.h"
-#include "interval_analysis.h"
 #include "irarch.h"
-#include "ircgcons.h"
 #include "ircgopt.h"
 #include "irconsconfirm.h"
 #include "ircons.h"
 #include "irdom.h"
+#include "vrp.h"
 #include "irdump.h"
 #include "iredgekinds.h"
 #include "iredges.h"
@@ -97,36 +89,23 @@ extern "C" {
 #include "irgwalk.h"
 #include "irhooks.h"
 #include "irio.h"
-#include "irlivechk.h"
 #include "irloop.h"
 #include "irmemory.h"
 #include "irmode.h"
 #include "irnode.h"
 #include "irop.h"
-#include "iropt_dbg.h"
 #include "iropt.h"
 #include "iroptimize.h"
 #include "irouts.h"
 #include "irpass.h"
 #include "irprintf.h"
 #include "irprog.h"
-#include "irsimpletype.h"
 #include "irtypeinfo.h"
-#include "irvrfy.h"
+#include "irverify.h"
 #include "lowering.h"
-#include "old_fctnames.h"
-#include "phiclass.h"
-#include "pseudo_irg.h"
-#include "rta.h"
-#include "seqnumbers.h"
-#include "structure.h"
 #include "timing.h"
 #include "trouts.h"
 #include "tv.h"
 #include "typerep.h"
 
-#ifdef __cplusplus
-}
-#endif
-
 #endif