initial checkin of Visual Studio 2005 project files
authorChristian Würdig <chriswue@ipd.info.uni-karlsruhe.de>
Tue, 16 May 2006 12:46:23 +0000 (12:46 +0000)
committerChristian Würdig <chriswue@ipd.info.uni-karlsruhe.de>
Tue, 16 May 2006 12:46:23 +0000 (12:46 +0000)
[r7735]

14 files changed:
vc2005/config.h [new file with mode: 0644]
vc2005/firm_config.h [new file with mode: 0644]
vc2005/header.list [new file with mode: 0644]
vc2005/ieee754.h [new file with mode: 0644]
vc2005/install.cmd [new file with mode: 0644]
vc2005/libfirm.dsp [new file with mode: 0644]
vc2005/libfirm.dsw [new file with mode: 0644]
vc2005/libfirm.ncb [new file with mode: 0644]
vc2005/libfirm.opt [new file with mode: 0644]
vc2005/libfirm.plg [new file with mode: 0644]
vc2005/libfirm.positions [new file with mode: 0644]
vc2005/libfirm.vcproj [new file with mode: 0644]
vc2005/math.c [new file with mode: 0644]
vc2005/stdbool.h [new file with mode: 0644]

diff --git a/vc2005/config.h b/vc2005/config.h
new file mode 100644 (file)
index 0000000..618cdd7
--- /dev/null
@@ -0,0 +1,138 @@
+/* config.h.  Generated by configure.  */
+/* config.h.in.  Generated from configure.in by autoheader.  */
+/*
+ * Project:     libFIRM
+ * File name:   acconfig.h
+ * Purpose:
+ * Author:      Till Riedel
+ * Modified by:
+ * Created:
+ * CVS-ID:      $Id$
+ * Copyright:   (c) 2002-2003 Universität Karlsruhe
+ * Licence:     This file protected by GPL -  GNU GENERAL PUBLIC LICENSE.
+ */
+
+/* Define to 1 if you have the <alloca.h> header file. */
+/* #undef HAVE_ALLOCA_H */
+
+/* Define to 1 if you have the <malloc.h> header file. */
+#define HAVE_MALLOC_H 1
+
+/* Define to 1 if you have the <inttypes.h> header file. */
+/* #undef HAVE_INTTYPES_H */
+
+/* Define to 1 if you have the <jni.h> header file. */
+/* #undef HAVE_JNI_H */
+
+/* Define to 1 if you have the <math.h> header file. */
+#define HAVE_MATH_H 1
+
+/* Define to 1 if you have the <memory.h> header file. */
+#define HAVE_MEMORY_H 1
+
+/* Define to 1 if you have the <obstack.h> header file. */
+#define HAVE_OBSTACK_H 1
+
+/* Define to 1 if you have the <stdint.h> header file. */
+#define HAVE_STDINT_H 1
+
+/* Define to 1 if you have the <stdlib.h> header file. */
+#define HAVE_STDLIB_H 1
+
+/* Define to 1 if you have the <strings.h> header file. */
+/* #undef HAVE_STRINGS_H */
+
+/* Define to 1 if you have the <string.h> header file. */
+#define HAVE_STRING_H 1
+
+/* Define to 1 if you have the <sys/stat.h> header file. */
+#define HAVE_SYS_STAT_H 1
+
+/* Define to 1 if you have the <sys/types.h> header file. */
+#define HAVE_SYS_TYPES_H 1
+
+/* Define to 1 if you have the <unistd.h> header file. */
+#define HAVE_UNISTD_H 1
+
+/* Define to 1 if you have the <io.h> header file. */
+#define HAVE_IO_H 1
+
+/* Define to the address where bug reports for this package should be sent. */
+#define PACKAGE_BUGREPORT ""
+
+/* Define to the full name of this package. */
+#define PACKAGE_NAME "libFIRM"
+
+/* Define to the full name and version of this package. */
+#define PACKAGE_STRING "libFIRM 0.3.0"
+
+/* Define to the one symbol short name of this package. */
+#define PACKAGE_TARNAME "libFIRM"
+
+/* Define to the version of this package. */
+#define PACKAGE_VERSION "0.3.0"
+
+/* Define to 1 if you have the ANSI C header files. */
+#define STDC_HEADERS 1
+
+/* ---------------snip, snip ---------------------- */
+
+/* define to enable debugging stuff. */
+#define DEBUG_libfirm 1
+
+/* define to 1 to use the libcore */
+#define WITH_LIBCORE 1
+
+/* define to 1 to use the ILP solver */
+#undef WITH_ILP
+
+/* define to 1 to have wchar_t support for identifiers */
+#define FIRM_ENABLE_WCHAR 1
+
+/* Define to disable assertion checking.  */
+/* #undef NDEBUG */
+
+/* Remove to disable inlining */
+#define USE_INLINING 1
+
+/* Define to 1 if long double works and has more range or precision than
+   double. */
+/* #undef HAVE_LONG_DOUBLE */
+
+/* Define to 1 if your processor stores words with the most significant byte
+   first (like Motorola and SPARC, unlike Intel and VAX). */
+/* #undef WORDS_BIGENDIAN */
+
+/* Define to 1 if Firm statistics are activated */
+#define FIRM_STATISTICS 1
+
+/* Define to 1 if Firm hooks are activated */
+#define FIRM_ENABLE_HOOKS 1
+
+/* Define to 1 if Firm inplace edges are activated */
+#define FIRM_EDGES_INPLACE 1
+
+/* Define the right volatile token */
+/* #undef volatile */
+
+/* Define the right const token */
+/* #undef const */
+
+#ifdef USE_INLINING
+#define INLINE __inline
+#else
+#define INLINE
+#endif
+
+/* disable warning "unreferenced inline function has been removed" */
+/* zu deutsch: "Nichtreferenzierte Inline-Funktion wurde entfernt" :) */
+#ifdef _MSC_VER
+#pragma warning( disable : 4514 )
+#endif /* _MSC_VER */
+
+/* map some non-POSIX names for Win32 */
+#define snprintf    _snprintf
+#define strcasecmp  stricmp
+
+typedef unsigned __int32 uint32_t;
+typedef __int64 int64_t;
diff --git a/vc2005/firm_config.h b/vc2005/firm_config.h
new file mode 100644 (file)
index 0000000..8731236
--- /dev/null
@@ -0,0 +1,76 @@
+#ifndef _FIRM_CONFIG_H
+#define _FIRM_CONFIG_H
+/* This file was automtically generated from libFirm's configure */
+
+/* Define to 1 if your processor stores words with the most significant byte
+   first (like Motorola and SPARC, unlike Intel and VAX). */
+/* #undef WORDS_BIGENDIAN */
+
+/* Define to 1 if long double works and has more range or precision than
+   double. */
+#undef HAVE_LONG_DOUBLE
+
+/* Define to 1 for heap analysis support */
+/* #undef DO_HEAPANALYSIS */
+
+/* Define the right volatile token */
+/* #undef volatile */
+
+/* Define the right inline token */
+/* #undef inline */
+
+/* Define the right const token */
+/* #undef const */
+
+/* define to 1 to enable debugging stuff. */
+#ifndef DEBUG_libfirm
+#define DEBUG_libfirm  1
+#endif
+
+/* define to 1 to have wchar_t support for identifiers */
+#ifndef FIRM_ENABLE_WCHAR
+#define FIRM_ENABLE_WCHAR 1
+#endif
+
+/* define to 1 to use the libcore */
+#ifndef WITH_LIBCORE
+#define WITH_LIBCORE 1
+#endif
+
+/* define to 1 to use the ILP solver */
+/* #undef WITH_ILP */
+
+/* Define to disable assertion checking.  */
+/* #undef NDEBUG */
+
+/* undef to disable inlining */
+#ifndef USE_INLINING
+#define USE_INLINING  1
+#endif
+
+/* Define to 1 if Firm statistics are activated */
+#ifndef FIRM_STATISTICS
+#define FIRM_STATISTICS  1
+#endif
+
+/* Define to 1 if Firm hooks are activated */
+#ifndef FIRM_ENABLE_HOOKS
+#define FIRM_ENABLE_HOOKS 1
+#endif
+
+/* Define to 1 if Firm inplace edges are activated */
+#ifndef FIRM_EDGES_INPLACE
+#define FIRM_EDGES_INPLACE 1
+#endif
+
+#ifdef USE_INLINING
+#ifndef INLINE
+#define INLINE  __inline
+#endif
+#else
+#ifndef INLINE
+#define INLINE
+#endif
+#endif
+
+#endif /* _FIRM_CONFIG_H */
diff --git a/vc2005/header.list b/vc2005/header.list
new file mode 100644 (file)
index 0000000..9e83faa
--- /dev/null
@@ -0,0 +1,129 @@
+#
+# The list of all files to be installed
+#
+# every line contains one file and an optional subdirectory
+
+ir\adt\pset.h          adt
+ir\adt\set.h           adt
+ir\adt\pmap.h          adt
+ir\adt\eset.h          adt
+ir\adt\hashptr.h               adt
+ir\adt\array.h         adt
+ir\adt\pdeq.h          adt
+ir\adt\iterator.h              adt
+ir\adt\align.h         adt
+ir\adt\fourcc.h                adt
+ir\adt\util.h          adt
+ir\adt\plist.h         adt
+ir\adt\xmalloc.h               adt
+
+ir\debug\dbginfo.h
+ir\debug\seqnumbers.h
+
+ir\common\firm_types.h
+ir\common\firm_common.h
+ir\common\firm.h
+ir\common\firmwalk.h
+ir\common\statistics.h
+ir\common\debug.h
+
+ir\ident\ident.h
+
+ir\ir\irprog.h
+ir\ir\irgraph.h
+ir\ir\irnode.h
+ir\ir\irmode.h
+ir\ir\irop.h
+ir\ir\ircons.h
+ir\ir\irflag.h
+ir\ir\irvrfy.h
+ir\ir\irgwalk.h
+ir\ir\irgmod.h
+ir\ir\iropt.h
+ir\ir\irdump.h
+ir\ir\irgopt.h
+ir\ir\ircgcons.h
+ir\ir\ircgopt.h
+ir\ir\irreflect.h
+ir\ir\irarch.h
+ir\ir\irprintf.h
+ir\ir\pseudo_irg.h
+ir\ir\irhooks.h
+ir\ir\iredges.h
+
+ir\ana\irouts.h
+ir\ana\trouts.h
+ir\ana\irdom.h
+ir\ana\cgana.h
+ir\ana\compute_loop_info.h
+ir\ana\irloop.h
+ir\ana\irtypeinfo.h
+ir\ana\irsimpletype.h
+ir\ana\callgraph.h
+ir\ana\rta.h
+ir\ana\interval_analysis.h
+ir\ana\field_temperature.h
+ir\ana\execution_frequency.h
+ir\ana\irextbb.h
+ir\ana\irconsconfirm.h
+ir\ana\analyze_irg_args.h
+
+ir\opt\cfopt.h
+ir\opt\gvn_pre.h
+ir\opt\tailrec.h
+ir\opt\ldstopt.h
+ir\opt\strength_red.h
+ir\opt\reassoc.h
+ir\opt\loop_unrolling.h
+ir\opt\funccall.h
+ir\opt\opt_polymorphy.h
+ir\opt\ifconv.h
+ir\opt\return.h
+ir\opt\tropt.h
+ir\opt\scalar_replace.h
+ir\opt\escape_ana.h
+ir\opt\proc_cloning.h
+ir\opt\opt_branches.h
+ir\opt\opt_confirms.h
+ir\opt\opt_frame.h
+
+ir\tr\entity.h
+ir\tr\mangle.h
+ir\tr\tpop.h
+ir\tr\type.h
+ir\tr\typewalk.h
+ir\tr\type_or_entity.h
+ir\tr\typegmod.h
+ir\tr\trvrfy.h
+ir\tr\type_identify.h
+ir\tr\tr_inheritance.h
+
+ir\tv\tv.h
+
+ir\stat\firmstat.h
+
+ir\ana2\ecg.h
+ir\ana2\irmemwalk.h
+ir\ana2\lset.h
+ir\ana2\typalise.h
+ir\ana2\pto.h
+ir\ana2\pto_comp.h
+ir\ana2\pto_ctx.h
+ir\ana2\pto_debug.h
+ir\ana2\pto_init.h
+ir\ana2\pto_name.h
+ir\ana2\pto_util.h
+ir\ana2\pto_mod.h
+ir\ana2\qset.h
+ir\ana2\gnu_ext.h
+
+ir\arch\modeconv.h
+ir\arch\archop.h
+
+ir\lower\lower_intrinsics.h
+ir\lower\lower_calls.h
+ir\lower\lower_dw.h
+
+ir\be\be.h
+
+win32\firm_config.h
diff --git a/vc2005/ieee754.h b/vc2005/ieee754.h
new file mode 100644 (file)
index 0000000..77f6590
--- /dev/null
@@ -0,0 +1,198 @@
+/* Copyright (C) 1992, 1995, 1996, 1999 Free Software Foundation, Inc.
+   This file is part of the GNU C Library.
+
+   The GNU C Library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Lesser General Public
+   License as published by the Free Software Foundation; either
+   version 2.1 of the License, or (at your option) any later version.
+
+   The GNU C Library is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+
+   You should have received a copy of the GNU Lesser General Public
+   License along with the GNU C Library; if not, write to the Free
+   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
+   02111-1307 USA.  */
+
+#ifndef __IEEE754_H
+#define __IEEE754_H 1
+
+#ifdef _MSC_VER
+#define LITTLE_ENDIAN 0x76543210
+#define BIG_ENDIAN    0x01234567
+#define __FLOAT_WORD_ORDER LITTLE_ENDIAN
+#endif
+
+union ieee754_float
+  {
+    float f;
+
+    /* This is the IEEE 754 single-precision format.  */
+    struct
+      {
+#ifdef WORDS_BIGENDIAN
+       unsigned int negative:1;
+       unsigned int exponent:8;
+       unsigned int mantissa:23;
+#else
+       unsigned int mantissa:23;
+       unsigned int exponent:8;
+       unsigned int negative:1;
+#endif                         /* Little endian.  */
+      } ieee;
+
+    /* This format makes it easier to see if a NaN is a signalling NaN.  */
+    struct
+      {
+#ifdef WORDS_BIGENDIAN
+       unsigned int negative:1;
+       unsigned int exponent:8;
+       unsigned int quiet_nan:1;
+       unsigned int mantissa:22;
+#else
+       unsigned int mantissa:22;
+       unsigned int quiet_nan:1;
+       unsigned int exponent:8;
+       unsigned int negative:1;
+#endif                         /* Little endian.  */
+      } ieee_nan;
+  };
+
+#define IEEE754_FLOAT_BIAS     0x7f /* Added to exponent.  */
+
+
+union ieee754_double
+  {
+    double d;
+
+    /* This is the IEEE 754 double-precision format.  */
+    struct
+      {
+#ifdef WORDS_BIGENDIAN
+       unsigned int negative:1;
+       unsigned int exponent:11;
+       /* Together these comprise the mantissa.  */
+       unsigned int mantissa0:20;
+       unsigned int mantissa1:32;
+#else
+# if   __FLOAT_WORD_ORDER == BIG_ENDIAN
+       unsigned int mantissa0:20;
+       unsigned int exponent:11;
+       unsigned int negative:1;
+       unsigned int mantissa1:32;
+# else
+       /* Together these comprise the mantissa.  */
+       unsigned int mantissa1:32;
+       unsigned int mantissa0:20;
+       unsigned int exponent:11;
+       unsigned int negative:1;
+# endif
+#endif                         /* Little endian.  */
+      } ieee;
+
+    /* This format makes it easier to see if a NaN is a signalling NaN.  */
+    struct
+      {
+#ifdef WORDS_BIGENDIAN
+       unsigned int negative:1;
+       unsigned int exponent:11;
+       unsigned int quiet_nan:1;
+       /* Together these comprise the mantissa.  */
+       unsigned int mantissa0:19;
+       unsigned int mantissa1:32;
+#else
+# if   __FLOAT_WORD_ORDER == BIG_ENDIAN
+       unsigned int mantissa0:19;
+       unsigned int quiet_nan:1;
+       unsigned int exponent:11;
+       unsigned int negative:1;
+       unsigned int mantissa1:32;
+# else
+       /* Together these comprise the mantissa.  */
+       unsigned int mantissa1:32;
+       unsigned int mantissa0:19;
+       unsigned int quiet_nan:1;
+       unsigned int exponent:11;
+       unsigned int negative:1;
+# endif
+#endif
+      } ieee_nan;
+  };
+
+#define IEEE754_DOUBLE_BIAS    0x3ff /* Added to exponent.  */
+
+
+union ieee854_long_double
+  {
+    long double d;
+
+    /* This is the IEEE 854 double-extended-precision format.  */
+    struct
+      {
+#ifdef WORDS_BIGENDIAN
+       unsigned int negative:1;
+       unsigned int exponent:15;
+       unsigned int empty:16;
+       unsigned int mantissa0:32;
+       unsigned int mantissa1:32;
+#else
+# if   __FLOAT_WORD_ORDER == BIG_ENDIAN
+       unsigned int exponent:15;
+       unsigned int negative:1;
+       unsigned int empty:16;
+       unsigned int mantissa0:32;
+       unsigned int mantissa1:32;
+# else
+       unsigned int mantissa1:32;
+       unsigned int mantissa0:32;
+       unsigned int exponent:15;
+       unsigned int negative:1;
+       unsigned int empty:16;
+# endif
+#endif
+      } ieee;
+
+    /* This is for NaNs in the IEEE 854 double-extended-precision format.  */
+    struct
+      {
+#ifdef WORDS_BIGENDIAN
+       unsigned int negative:1;
+       unsigned int exponent:15;
+       unsigned int empty:16;
+       unsigned int one:1;
+       unsigned int quiet_nan:1;
+       unsigned int mantissa0:30;
+       unsigned int mantissa1:32;
+#else
+# if   __FLOAT_WORD_ORDER == BIG_ENDIAN
+       unsigned int exponent:15;
+       unsigned int negative:1;
+       unsigned int empty:16;
+       unsigned int mantissa0:30;
+       unsigned int quiet_nan:1;
+       unsigned int one:1;
+       unsigned int mantissa1:32;
+# else
+       unsigned int mantissa1:32;
+       unsigned int mantissa0:30;
+       unsigned int quiet_nan:1;
+       unsigned int one:1;
+       unsigned int exponent:15;
+       unsigned int negative:1;
+       unsigned int empty:16;
+# endif
+#endif
+      } ieee_nan;
+  };
+
+#define IEEE854_LONG_DOUBLE_BIAS 0x3fff
+
+#ifdef _MSC_VER
+#undef LITTLE_ENDIAN
+#undef BIG_ENDIAN
+#undef __FLOAT_WORD_ORDER
+#endif
+
+#endif /* ieee754.h */
diff --git a/vc2005/install.cmd b/vc2005/install.cmd
new file mode 100644 (file)
index 0000000..cfcf9e9
--- /dev/null
@@ -0,0 +1,29 @@
+@echo off
+rem
+rem Simple Header install script for libfirm and friens, uses NT command shell
+rem syntax
+rem
+rem (C) 2005 Universitaet Karlsruhe
+rem
+rem Michael Beck   beck@ipd.info.uni-karlsruhe.de
+rem
+rem
+
+set SRC=%1
+set DST=%2
+
+if "%1" == "" goto usage
+if "%2" == "" goto usage
+
+echo Installing Header files to %DST% ...
+
+if not exist %DST% mkdir %DST%
+for /F "eol=# tokens=1,2" %%i in (header.list) do if not exist "%DST%\%%j" mkdir %DST%\%%j
+for /F "eol=# tokens=1,2" %%i in (header.list) do echo   %%i && copy /Y %SRC%\%%i %DST%\%%j >NUL
+echo done.
+
+goto end
+
+:usage
+echo Usage: %0 SRC-DIR DST-DIR
+:end
diff --git a/vc2005/libfirm.dsp b/vc2005/libfirm.dsp
new file mode 100644 (file)
index 0000000..590eaba
--- /dev/null
@@ -0,0 +1,2464 @@
+# Microsoft Developer Studio Project File - Name="libfirm" - Package Owner=<4>
+# Microsoft Developer Studio Generated Build File, Format Version 6.00
+# ** NICHT BEARBEITEN **
+
+# TARGTYPE "Win32 (x86) Static Library" 0x0104
+
+CFG=libfirm - Win32 Debug
+!MESSAGE Dies ist kein gültiges Makefile. Zum Erstellen dieses Projekts mit NMAKE
+!MESSAGE verwenden Sie den Befehl "Makefile exportieren" und führen Sie den Befehl
+!MESSAGE
+!MESSAGE NMAKE /f "libfirm.mak".
+!MESSAGE
+!MESSAGE Sie können beim Ausführen von NMAKE eine Konfiguration angeben
+!MESSAGE durch Definieren des Makros CFG in der Befehlszeile. Zum Beispiel:
+!MESSAGE
+!MESSAGE NMAKE /f "libfirm.mak" CFG="libfirm - Win32 Debug"
+!MESSAGE
+!MESSAGE Für die Konfiguration stehen zur Auswahl:
+!MESSAGE
+!MESSAGE "libfirm - Win32 Release" (basierend auf  "Win32 (x86) Static Library")
+!MESSAGE "libfirm - Win32 Debug" (basierend auf  "Win32 (x86) Static Library")
+!MESSAGE
+
+# Begin Project
+# PROP AllowPerConfigDependencies 0
+# PROP Scc_ProjName ""
+# PROP Scc_LocalPath ""
+CPP=cl.exe
+RSC=rc.exe
+
+!IF  "$(CFG)" == "libfirm - Win32 Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "Release"
+# PROP BASE Intermediate_Dir "Release"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "d:\work\libfirm\Release"
+# PROP Intermediate_Dir "d:\work\libfirm\Release"
+# PROP Target_Dir ""
+# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c
+# ADD CPP /nologo /W3 /GX /O2 /I "../../obstack" /I "../win32" /I "../ir/adt" /I "../ir/ana" /I "../ir/common" /I "../ir/debug" /I "../ir/ident" /I "../ir/ir" /I "../ir/opt" /I "../ir/st" /I "../ir/stat" /I "../ir/tr" /I "../ir/tv" /I "../ir/arch" /I "../ir/lower" /I "s:/local/ipd/include" /D "NDEBUG" /D "WIN32" /D "_MBCS" /D "_LIB" /D "HAVE_CONFIG_H" /FD /c
+# SUBTRACT CPP /YX
+# ADD BASE RSC /l 0x407 /d "NDEBUG"
+# ADD RSC /l 0x407 /d "NDEBUG"
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LIB32=link.exe -lib
+# ADD BASE LIB32 /nologo
+# ADD LIB32 /nologo /out:"S:\local\ipd\lib\libfirm.lib"
+# Begin Special Build Tool
+SOURCE="$(InputPath)"
+PostBuild_Desc=Header install
+PostBuild_Cmds=cmd /c install.cmd .. s:\local\ipd\include\libfirm
+# End Special Build Tool
+
+!ELSEIF  "$(CFG)" == "libfirm - Win32 Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "Debug"
+# PROP BASE Intermediate_Dir "Debug"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "c:\work\libfirm\Debug"
+# PROP Intermediate_Dir "c:\work\libfirm\Debug"
+# PROP Target_Dir ""
+# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c
+# ADD CPP /nologo /W3 /Gm /GX /ZI /Od /I "../../obstack" /I "../win32" /I "../ir/adt" /I "../ir/ana" /I "../ir/common" /I "../ir/debug" /I "../ir/ident" /I "../ir/ir" /I "../ir/opt" /I "../ir/st" /I "../ir/stat" /I "../ir/tr" /I "../ir/tv" /I "../ir/arch" /I "../ir/lower" /I "s:/local/ipd/include" /D "_DEBUG" /D "WIN32" /D "_MBCS" /D "_LIB" /D "HAVE_CONFIG_H" /FD /D /GZ /c
+# SUBTRACT CPP /YX
+# ADD BASE RSC /l 0x407 /d "_DEBUG"
+# ADD RSC /l 0x407 /d "_DEBUG"
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LIB32=link.exe -lib
+# ADD BASE LIB32 /nologo
+# ADD LIB32 /nologo /out:"S:\local\ipd\lib\libfirm_g.lib"
+# Begin Special Build Tool
+SOURCE="$(InputPath)"
+PostBuild_Desc=Header install
+PostBuild_Cmds=cmd /c install.cmd .. s:\local\ipd\include\libfirm
+# End Special Build Tool
+
+!ENDIF
+
+# Begin Target
+
+# Name "libfirm - Win32 Release"
+# Name "libfirm - Win32 Debug"
+# Begin Group "Win32-specific"
+
+# PROP Default_Filter "h;hpp;hxx;hm;inl"
+# Begin Source File
+
+SOURCE=.\config.h
+# End Source File
+# Begin Source File
+
+SOURCE=.\firm_config.h
+# End Source File
+# Begin Source File
+
+SOURCE=.\header.list
+# End Source File
+# Begin Source File
+
+SOURCE=.\ieee754.h
+# End Source File
+# Begin Source File
+
+SOURCE=.\install.cmd
+# End Source File
+# Begin Source File
+
+SOURCE=.\math.c
+# End Source File
+# End Group
+# Begin Group "FIRM"
+
+# PROP Default_Filter ""
+# Begin Group "adt"
+
+# PROP Default_Filter ""
+# Begin Source File
+
+SOURCE=..\ir\adt\align.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\adt\array.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\adt\array.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\adt\bipartite.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\adt\bipartite.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\adt\bitfiddle.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\adt\bitset.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\adt\bitset_std.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\adt\eset.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\adt\eset.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\adt\fourcc.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\adt\hashptr.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\adt\impl.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\adt\iterator.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\adt\iterator.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\adt\list.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\adt\Makefile.in
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\adt\misc.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\adt\obst.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\adt\pdeq.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\adt\pdeq.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\adt\plist.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\adt\plist.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\adt\pmap.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\adt\pmap.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\adt\pset.c
+# ADD CPP /D "PSET"
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\adt\pset.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\adt\set.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\adt\set.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\adt\xmalloc.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\adt\xmalloc.h
+# End Source File
+# End Group
+# Begin Group "ana"
+
+# PROP Default_Filter ""
+# Begin Source File
+
+SOURCE=..\ir\ana\analyze_irg_args.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ana\analyze_irg_args.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ana\callgraph.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ana\callgraph.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ana\cdep.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ana\cdep.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ana\cgana.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ana\cgana.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ana\compute_loop_info.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ana\compute_loop_info.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ana\execution_frequency.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ana\execution_frequency.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ana\field_temperature.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ana\field_temperature.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ana\height.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ana\height.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ana\interval_analysis.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ana\interval_analysis.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ana\irbackedge.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ana\irbackedge_t.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ana\ircfscc.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ana\irconsconfirm.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ana\irconsconfirm.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ana\irdom.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ana\irdom.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ana\irdom_t.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ana\irextbb.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ana\irextbb.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ana\irextbb_t.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ana\irloop.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ana\irloop_t.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ana\irouts.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ana\irouts.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ana\irscc.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ana\irsimpletype.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ana\irsimpletype.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ana\irtypeinfo.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ana\irtypeinfo.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ana\Makefile.in
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ana\phiclass.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ana\phiclass.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ana\phiclass_t.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ana\rta.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ana\rta.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ana\trouts.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ana\trouts.h
+# End Source File
+# End Group
+# Begin Group "ana2"
+
+# PROP Default_Filter ""
+# Begin Source File
+
+SOURCE=..\ir\ana2\ecg.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ana2\ecg.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ana2\gnu_ext.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ana2\irmemwalk.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ana2\irmemwalk.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ana2\lset.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ana2\lset.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ana2\Makefile.in
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ana2\pto.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ana2\pto.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ana2\pto_comp.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ana2\pto_comp.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ana2\pto_ctx.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ana2\pto_ctx.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ana2\pto_debug.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ana2\pto_debug.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ana2\pto_init.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ana2\pto_init.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ana2\pto_mod.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ana2\pto_mod.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ana2\pto_name.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ana2\pto_name.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ana2\pto_util.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ana2\pto_util.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ana2\qset.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ana2\qset.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ana2\timing.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ana2\timing.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ana2\typalise.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ana2\typalise.h
+# End Source File
+# End Group
+# Begin Group "arch"
+
+# PROP Default_Filter ""
+# Begin Source File
+
+SOURCE=..\ir\arch\archop.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\arch\archop.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\arch\modeconv.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\arch\modeconv.h
+# End Source File
+# End Group
+# Begin Group "be"
+
+# PROP Default_Filter ""
+# Begin Group "scripts"
+
+# PROP Default_Filter "pl"
+# Begin Source File
+
+SOURCE=..\ir\be\scripts\generate_emitter.pl
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\scripts\generate_new_opcodes.pl
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\scripts\generate_regalloc_if.pl
+# End Source File
+# End Group
+# Begin Group "ia32"
+
+# PROP Default_Filter ""
+# Begin Source File
+
+SOURCE=..\ir\be\ia32\bearch_ia32.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\ia32\bearch_ia32.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\ia32\bearch_ia32_t.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\ia32\gen_ia32_emitter.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\ia32\gen_ia32_emitter.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\ia32\gen_ia32_new_nodes.c.inl
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\ia32\gen_ia32_new_nodes.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\ia32\gen_ia32_regalloc_if.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\ia32\gen_ia32_regalloc_if.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\ia32\gen_ia32_regalloc_if_t.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\ia32\ia32_dbg_stat.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\ia32\ia32_emitter.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\ia32\ia32_emitter.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\ia32\ia32_gen_decls.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\ia32\ia32_gen_decls.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\ia32\ia32_intrinsics.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\ia32\ia32_map_regs.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\ia32\ia32_map_regs.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\ia32\ia32_new_nodes.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\ia32\ia32_new_nodes.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\ia32\ia32_nodes_attr.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\ia32\ia32_optimize.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\ia32\ia32_optimize.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\ia32\ia32_spec.pl
+
+!IF  "$(CFG)" == "libfirm - Win32 Release"
+
+USERDEP__IA32_="..\ir\be\scripts\generate_emitter.pl"  "..\ir\be\scripts\generate_new_opcodes.pl"      "..\ir\be\scripts\generate_regalloc_if.pl"
+# Begin Custom Build - Translate Spec: $(InputPath)
+InputPath=..\ir\be\ia32\ia32_spec.pl
+
+BuildCmds= \
+       ..\ir\be\scripts\generate_emitter.pl $(InputPath) ..\ir\be\ia32 \
+       ..\ir\be\scripts\generate_new_opcodes.pl $(InputPath) ..\ir\be\ia32 \
+       ..\ir\be\scripts\generate_regalloc_if.pl $(InputPath) ..\ir\be\ia32 \
+
+
+"..\ir\be\ia32\gen_ia32_emitter.c" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+   $(BuildCmds)
+
+"..\ir\be\ia32\gen_ia32_emitter.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+   $(BuildCmds)
+
+"..\ir\be\ia32\gen_ia32_new_nodes.c.inl" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+   $(BuildCmds)
+
+"..\ir\be\ia32\gen_ia32_new_nodes.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+   $(BuildCmds)
+
+"..\ir\be\ia32\gen_ia32_regalloc_if.c" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+   $(BuildCmds)
+
+"..\ir\be\ia32\gen_ia32_regalloc_if.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+   $(BuildCmds)
+
+"..\ir\be\ia32\gen_ia32_regalloc_if_t.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+   $(BuildCmds)
+# End Custom Build
+
+!ELSEIF  "$(CFG)" == "libfirm - Win32 Debug"
+
+USERDEP__IA32_="..\ir\be\scripts\generate_emitter.pl"  "..\ir\be\scripts\generate_new_opcodes.pl"      "..\ir\be\scripts\generate_regalloc_if.pl"
+# Begin Custom Build - Translate Spec: $(InputPath)
+InputPath=..\ir\be\ia32\ia32_spec.pl
+
+BuildCmds= \
+       ..\ir\be\scripts\generate_emitter.pl $(InputPath) ..\ir\be\ia32 \
+       ..\ir\be\scripts\generate_new_opcodes.pl $(InputPath) ..\ir\be\ia32 \
+       ..\ir\be\scripts\generate_regalloc_if.pl $(InputPath) ..\ir\be\ia32 \
+
+
+"..\ir\be\ia32\gen_ia32_emitter.c" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+   $(BuildCmds)
+
+"..\ir\be\ia32\gen_ia32_emitter.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+   $(BuildCmds)
+
+"..\ir\be\ia32\gen_ia32_new_nodes.c.inl" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+   $(BuildCmds)
+
+"..\ir\be\ia32\gen_ia32_new_nodes.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+   $(BuildCmds)
+
+"..\ir\be\ia32\gen_ia32_regalloc_if.c" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+   $(BuildCmds)
+
+"..\ir\be\ia32\gen_ia32_regalloc_if.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+   $(BuildCmds)
+
+"..\ir\be\ia32\gen_ia32_regalloc_if_t.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+   $(BuildCmds)
+# End Custom Build
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\ia32\ia32_transform.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\ia32\ia32_transform.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\ia32\ia32_x87.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\ia32\ia32_x87.h
+# End Source File
+# End Group
+# Begin Group "arm"
+
+# PROP Default_Filter ""
+# Begin Source File
+
+SOURCE=..\ir\be\arm\arm_emitter.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\arm\arm_emitter.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\arm\arm_gen_decls.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\arm\arm_gen_decls.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\arm\arm_map_regs.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\arm\arm_map_regs.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\arm\arm_new_nodes.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\arm\arm_new_nodes.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\arm\arm_nodes_attr.h
+# End Source File
+# Begin Source File
+
+SOURCE="..\ir\be\arm\arm_spec.pl"
+
+!IF  "$(CFG)" == "libfirm - Win32 Release"
+
+USERDEP__ARM_S="..\ir\be\scripts\generate_emitter.pl"  "..\ir\be\scripts\generate_new_opcodes.pl"      "..\ir\be\scripts\generate_regalloc_if.pl"
+# Begin Custom Build - Translate Spec: $(InputPath)
+InputPath="..\ir\be\arm\arm_spec.pl"
+
+BuildCmds= \
+       ..\ir\be\scripts\generate_emitter.pl $(InputPath) ..\ir\be\arm \
+       ..\ir\be\scripts\generate_new_opcodes.pl $(InputPath) ..\ir\be\arm \
+       ..\ir\be\scripts\generate_regalloc_if.pl $(InputPath) ..\ir\be\arm \
+
+
+"..\ir\be\arm\gen_arm_emitter.c" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+   $(BuildCmds)
+
+"..\ir\be\arm\gen_arm_emitter.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+   $(BuildCmds)
+
+"..\ir\be\arm\gen_arm_new_nodes.c.inl" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+   $(BuildCmds)
+
+"..\ir\be\arm\gen_arm_new_nodes.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+   $(BuildCmds)
+
+"..\ir\be\arm\gen_arm_regalloc_if.c" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+   $(BuildCmds)
+
+"..\ir\be\arm\gen_arm_regalloc_if.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+   $(BuildCmds)
+
+"..\ir\be\arm\gen_arm_regalloc_if_t.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+   $(BuildCmds)
+# End Custom Build
+
+!ELSEIF  "$(CFG)" == "libfirm - Win32 Debug"
+
+USERDEP__ARM_S="..\ir\be\scripts\generate_emitter.pl"  "..\ir\be\scripts\generate_new_opcodes.pl"      "..\ir\be\scripts\generate_regalloc_if.pl"
+# Begin Custom Build - Translate Spec: $(InputPath)
+InputPath="..\ir\be\arm\arm_spec.pl"
+
+BuildCmds= \
+       ..\ir\be\scripts\generate_emitter.pl $(InputPath) ..\ir\be\arm \
+       ..\ir\be\scripts\generate_new_opcodes.pl $(InputPath) ..\ir\be\arm \
+       ..\ir\be\scripts\generate_regalloc_if.pl $(InputPath) ..\ir\be\arm \
+
+
+"..\ir\be\arm\gen_arm_emitter.c" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+   $(BuildCmds)
+
+"..\ir\be\arm\gen_arm_emitter.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+   $(BuildCmds)
+
+"..\ir\be\arm\gen_arm_new_nodes.c.inl" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+   $(BuildCmds)
+
+"..\ir\be\arm\gen_arm_new_nodes.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+   $(BuildCmds)
+
+"..\ir\be\arm\gen_arm_regalloc_if.c" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+   $(BuildCmds)
+
+"..\ir\be\arm\gen_arm_regalloc_if.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+   $(BuildCmds)
+
+"..\ir\be\arm\gen_arm_regalloc_if_t.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+   $(BuildCmds)
+# End Custom Build
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\arm\arm_transform.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\arm\arm_transform.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\arm\bearch_arm.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\arm\bearch_arm.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\arm\bearch_arm_t.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\arm\gen_arm_emitter.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\arm\gen_arm_emitter.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\arm\gen_arm_new_nodes.c.inl
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\arm\gen_arm_new_nodes.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\arm\gen_arm_regalloc_if.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\arm\gen_arm_regalloc_if.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\arm\gen_arm_regalloc_if_t.h
+# End Source File
+# End Group
+# Begin Group "ppc32"
+
+# PROP Default_Filter ""
+# Begin Source File
+
+SOURCE=..\ir\be\ppc32\bearch_ppc32.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\ppc32\bearch_ppc32.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\ppc32\bearch_ppc32_t.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\ppc32\gen_ppc32_emitter.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\ppc32\gen_ppc32_emitter.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\ppc32\gen_ppc32_emitter.inl
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\ppc32\gen_ppc32_new_nodes.c.inl
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\ppc32\gen_ppc32_new_nodes.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\ppc32\gen_ppc32_regalloc_if.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\ppc32\gen_ppc32_regalloc_if.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\ppc32\gen_ppc32_regalloc_if_t.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\ppc32\ppc32_emitter.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\ppc32\ppc32_emitter.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\ppc32\ppc32_gen_decls.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\ppc32\ppc32_gen_decls.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\ppc32\ppc32_map_regs.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\ppc32\ppc32_map_regs.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\ppc32\ppc32_new_nodes.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\ppc32\ppc32_new_nodes.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\ppc32\ppc32_nodes_attr.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\ppc32\ppc32_spec.pl
+
+!IF  "$(CFG)" == "libfirm - Win32 Release"
+
+USERDEP__PPC32="..\ir\be\scripts\generate_emitter.pl"  "..\ir\be\scripts\generate_new_opcodes.pl"      "..\ir\be\scripts\generate_regalloc_if.pl"
+# Begin Custom Build - Translate Spec: $(InputPath)
+InputPath=..\ir\be\ppc32\ppc32_spec.pl
+
+BuildCmds= \
+       ..\ir\be\scripts\generate_emitter.pl $(InputPath) ..\ir\be\ppc32 \
+       ..\ir\be\scripts\generate_new_opcodes.pl $(InputPath) ..\ir\be\ppc32 \
+       ..\ir\be\scripts\generate_regalloc_if.pl $(InputPath) ..\ir\be\ppc32 \
+
+
+"..\ir\be\ppc32\gen_ppc32_emitter.c" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+   $(BuildCmds)
+
+"..\ir\be\ppc32\gen_ppc32_emitter.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+   $(BuildCmds)
+
+"..\ir\be\ppc32\gen_ppc32_new_nodes.c.inl" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+   $(BuildCmds)
+
+"..\ir\be\ppc32\gen_ppc32_new_nodes.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+   $(BuildCmds)
+
+"..\ir\be\ppc32\gen_ppc32_regalloc_if.c" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+   $(BuildCmds)
+
+"..\ir\be\ppc32\gen_ppc32_regalloc_if.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+   $(BuildCmds)
+
+"..\ir\be\ppc32\gen_ppc32_regalloc_if_t.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+   $(BuildCmds)
+# End Custom Build
+
+!ELSEIF  "$(CFG)" == "libfirm - Win32 Debug"
+
+USERDEP__PPC32="..\ir\be\scripts\generate_emitter.pl"  "..\ir\be\scripts\generate_new_opcodes.pl"      "..\ir\be\scripts\generate_regalloc_if.pl"
+# Begin Custom Build - Translate Spec: $(InputPath)
+InputPath=..\ir\be\ppc32\ppc32_spec.pl
+
+BuildCmds= \
+       ..\ir\be\scripts\generate_emitter.pl $(InputPath) ..\ir\be\ppc32 \
+       ..\ir\be\scripts\generate_new_opcodes.pl $(InputPath) ..\ir\be\ppc32 \
+       ..\ir\be\scripts\generate_regalloc_if.pl $(InputPath) ..\ir\be\ppc32 \
+
+
+"..\ir\be\ppc32\gen_ppc32_emitter.c" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+   $(BuildCmds)
+
+"..\ir\be\ppc32\gen_ppc32_emitter.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+   $(BuildCmds)
+
+"..\ir\be\ppc32\gen_ppc32_new_nodes.c.inl" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+   $(BuildCmds)
+
+"..\ir\be\ppc32\gen_ppc32_new_nodes.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+   $(BuildCmds)
+
+"..\ir\be\ppc32\gen_ppc32_regalloc_if.c" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+   $(BuildCmds)
+
+"..\ir\be\ppc32\gen_ppc32_regalloc_if.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+   $(BuildCmds)
+
+"..\ir\be\ppc32\gen_ppc32_regalloc_if_t.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+   $(BuildCmds)
+# End Custom Build
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\ppc32\ppc32_transform.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\ppc32\ppc32_transform.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\ppc32\ppc32_transform_conv.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\ppc32\ppc32_transform_conv.h
+# End Source File
+# End Group
+# Begin Group "mips"
+
+# PROP Default_Filter ""
+# Begin Source File
+
+SOURCE=..\ir\be\mips\bearch_mips.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\mips\bearch_mips.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\mips\bearch_mips_t.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\mips\gen_mips_emitter.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\mips\gen_mips_emitter.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\mips\gen_mips_new_nodes.c.inl
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\mips\gen_mips_new_nodes.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\mips\gen_mips_regalloc_if.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\mips\gen_mips_regalloc_if.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\mips\gen_mips_regalloc_if_t.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\mips\mips_emitter.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\mips\mips_emitter.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\mips\mips_gen_decls.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\mips\mips_gen_decls.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\mips\mips_map_regs.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\mips\mips_map_regs.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\mips\mips_new_nodes.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\mips\mips_new_nodes.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\mips\mips_nodes_attr.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\mips\mips_scheduler.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\mips\mips_scheduler.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\mips\mips_spec.pl
+
+!IF  "$(CFG)" == "libfirm - Win32 Release"
+
+USERDEP__MIPS_="..\ir\be\scripts\generate_emitter.pl"  "..\ir\be\scripts\generate_new_opcodes.pl"      "..\ir\be\scripts\generate_regalloc_if.pl"
+# Begin Custom Build - Translate Spec: $(InputPath)
+InputPath=..\ir\be\mips\mips_spec.pl
+
+BuildCmds= \
+       ..\ir\be\scripts\generate_emitter.pl $(InputPath) ..\ir\be\mips \
+       ..\ir\be\scripts\generate_new_opcodes.pl $(InputPath) ..\ir\be\mips \
+       ..\ir\be\scripts\generate_regalloc_if.pl $(InputPath) ..\ir\be\mips \
+
+
+"..\ir\be\mips\gen_mips_emitter.c" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+   $(BuildCmds)
+
+"..\ir\be\mips\gen_mips_emitter.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+   $(BuildCmds)
+
+"..\ir\be\mips\gen_mips_new_nodes.c.inl" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+   $(BuildCmds)
+
+"..\ir\be\mips\gen_mips_new_nodes.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+   $(BuildCmds)
+
+"..\ir\be\mips\gen_mips_regalloc_if.c" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+   $(BuildCmds)
+
+"..\ir\be\mips\gen_mips_regalloc_if.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+   $(BuildCmds)
+
+"..\ir\be\mips\gen_mips_regalloc_if_t.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+   $(BuildCmds)
+# End Custom Build
+
+!ELSEIF  "$(CFG)" == "libfirm - Win32 Debug"
+
+USERDEP__MIPS_="..\ir\be\scripts\generate_emitter.pl"  "..\ir\be\scripts\generate_new_opcodes.pl"      "..\ir\be\scripts\generate_regalloc_if.pl"
+# Begin Custom Build - Translate Spec: $(InputPath)
+InputPath=..\ir\be\mips\mips_spec.pl
+
+BuildCmds= \
+       ..\ir\be\scripts\generate_emitter.pl $(InputPath) ..\ir\be\mips \
+       ..\ir\be\scripts\generate_new_opcodes.pl $(InputPath) ..\ir\be\mips \
+       ..\ir\be\scripts\generate_regalloc_if.pl $(InputPath) ..\ir\be\mips \
+
+
+"..\ir\be\mips\gen_mips_emitter.c" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+   $(BuildCmds)
+
+"..\ir\be\mips\gen_mips_emitter.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+   $(BuildCmds)
+
+"..\ir\be\mips\gen_mips_new_nodes.c.inl" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+   $(BuildCmds)
+
+"..\ir\be\mips\gen_mips_new_nodes.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+   $(BuildCmds)
+
+"..\ir\be\mips\gen_mips_regalloc_if.c" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+   $(BuildCmds)
+
+"..\ir\be\mips\gen_mips_regalloc_if.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+   $(BuildCmds)
+
+"..\ir\be\mips\gen_mips_regalloc_if_t.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+   $(BuildCmds)
+# End Custom Build
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\mips\mips_transform.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\mips\mips_transform.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\mips\mips_util.h
+# End Source File
+# End Group
+# Begin Group "firmBE"
+
+# PROP Default_Filter ""
+# Begin Source File
+
+SOURCE=..\ir\be\firm\bearch_firm.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\firm\bearch_firm.h
+# End Source File
+# End Group
+# Begin Source File
+
+SOURCE=..\ir\be\be.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\be_t.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\beabi.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\beabi.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\beabi_t.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\bearch.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\bearch.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\bearch_t.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\bechordal.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\bechordal.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\bechordal_draw.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\bechordal_draw.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\bechordal_main.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\bechordal_t.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\bechordalspill.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\becopyheur.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\becopyheur2.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\becopyilp.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\becopyilp1.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\becopyilp2.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\becopyopt.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\becopyopt.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\becopyopt_t.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\becopystat.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\becopystat.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\beifg.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\beifg.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\beifg_impl.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\beifg_std.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\beifg_t.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\beinsn.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\beinsn_t.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\beirgmod.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\beirgmod.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\belistsched.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\belistsched.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\belive.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\belive.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\belive_t.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\belower.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\belower.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\bemain.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\benode.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\benode_t.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\benodesets.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\benodesets.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\benumb.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\benumb.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\benumb_t.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\bera.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\bera.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\beraextern.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\beraextern.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\besched.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\besched.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\besched_t.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\beschedmris.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\beschedmris.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\bespill.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\bespill.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\bespillbelady.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\bespillbelady.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\bespillilp.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\bespillilp.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\bessadestr.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\bessadestr.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\bestat.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\bestat.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\beuses.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\beuses.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\beuses_t.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\beutil.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\be\beutil.h
+# End Source File
+# End Group
+# Begin Group "common"
+
+# PROP Default_Filter ""
+# Begin Source File
+
+SOURCE=..\ir\common\debug.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\common\debug.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\common\error.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\common\error.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\common\firm.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\common\firm.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\common\firm_common.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\common\firm_common.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\common\firm_common_t.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\common\firm_types.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\common\firmwalk.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\common\firmwalk.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\common\irtools.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\common\irtools.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\common\Makefile.in
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\common\statistics.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\common\statistics.h
+# End Source File
+# End Group
+# Begin Group "debug"
+
+# PROP Default_Filter ""
+# Begin Source File
+
+SOURCE=..\ir\debug\dbginfo.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\debug\dbginfo.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\debug\dbginfo_t.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\debug\debugger.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\debug\debugger.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\debug\Makefile.in
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\debug\seqnumbers.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\debug\seqnumbers.h
+# End Source File
+# End Group
+# Begin Group "external"
+
+# PROP Default_Filter ""
+# Begin Source File
+
+SOURCE=..\ir\external\Makefile.in
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\external\read.c
+# PROP Exclude_From_Build 1
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\external\read.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\external\read_t.h
+# End Source File
+# End Group
+# Begin Group "ident"
+
+# PROP Default_Filter ""
+# Begin Source File
+
+SOURCE=..\ir\ident\ident.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ident\ident.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ident\ident_t.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ident\Makefile.in
+# End Source File
+# End Group
+# Begin Group "ir"
+
+# PROP Default_Filter ""
+# Begin Source File
+
+SOURCE=..\ir\ir\irarch.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ir\irarch.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ir\irargs.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ir\irargs_t.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ir\ircgcons.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ir\ircgcons.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ir\ircgopt.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ir\ircgopt.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ir\ircons.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ir\ircons.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ir\ircons_t.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ir\irdump.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ir\irdump.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ir\irdump_t.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ir\irdumptxt.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ir\iredges.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ir\iredges.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ir\iredges_t.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ir\irflag.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ir\irflag.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ir\irflag_t.def
+# PROP Exclude_From_Build 1
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ir\irflag_t.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ir\irgmod.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ir\irgmod.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ir\irgopt.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ir\irgopt.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ir\irgopt_t.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ir\irgraph.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ir\irgraph.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ir\irgraph_t.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ir\irgwalk.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ir\irgwalk.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ir\irgwalk_blk.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ir\irhooks.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ir\irhooks.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ir\irmode.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ir\irmode.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ir\irmode_t.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ir\irnode.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ir\irnode.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ir\irnode_t.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ir\irop.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ir\irop.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ir\irop_t.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ir\iropt.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ir\iropt.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ir\iropt_dbg.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ir\iropt_t.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ir\irphase.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ir\irphase.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ir\irphase_t.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ir\irprintf.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ir\irprintf.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ir\irprintf_t.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ir\irprog.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ir\irprog.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ir\irprog_t.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ir\irreflect.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ir\irreflect.def
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ir\irreflect.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ir\irreflect_t.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ir\irvrfy.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ir\irvrfy.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ir\irvrfy_t.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ir\Makefile.in
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ir\pseudo_irg.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\ir\pseudo_irg.h
+# End Source File
+# End Group
+# Begin Group "opt"
+
+# PROP Default_Filter ""
+# Begin Source File
+
+SOURCE=..\ir\opt\cfopt.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\opt\cfopt.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\opt\data_flow_scalar_replace.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\opt\data_flow_scalar_replace.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\opt\escape_ana.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\opt\escape_ana.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\opt\funccall.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\opt\funccall.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\opt\gvn_pre.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\opt\gvn_pre.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\opt\ifconv.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\opt\ifconv.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\opt\ldstopt.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\opt\ldstopt.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\opt\loop_unrolling.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\opt\loop_unrolling.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\opt\Makefile.in
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\opt\opt_branches.c
+
+!IF  "$(CFG)" == "libfirm - Win32 Release"
+
+!ELSEIF  "$(CFG)" == "libfirm - Win32 Debug"
+
+# PROP Exclude_From_Build 1
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\opt\opt_branches.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\opt\opt_confirms.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\opt\opt_confirms.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\opt\opt_frame.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\opt\opt_frame.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\opt\opt_polymorphy.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\opt\opt_polymorphy.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\opt\proc_cloning.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\opt\proc_cloning.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\opt\reassoc.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\opt\reassoc.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\opt\reassoc_t.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\opt\return.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\opt\return.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\opt\scalar_replace.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\opt\scalar_replace.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\opt\strength_red.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\opt\strength_red.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\opt\tailrec.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\opt\tailrec.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\opt\tropt.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\opt\tropt.h
+# End Source File
+# End Group
+# Begin Group "st"
+
+# PROP Default_Filter ""
+# Begin Source File
+
+SOURCE=..\ir\st\bs.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\st\exc.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\st\exc.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\st\Makefile.in
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\st\st.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\st\st.h
+# End Source File
+# End Group
+# Begin Group "stat"
+
+# PROP Default_Filter ""
+# Begin Source File
+
+SOURCE=..\ir\stat\const_stat.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\stat\counter.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\stat\dags.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\stat\dags.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\stat\distrib.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\stat\firmstat.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\stat\firmstat.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\stat\firmstat_t.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\stat\Makefile.in
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\stat\pattern.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\stat\pattern.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\stat\pattern_dmp.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\stat\pattern_dmp.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\stat\stat_dmp.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\stat\stat_dmp.h
+# End Source File
+# End Group
+# Begin Group "tr"
+
+# PROP Default_Filter ""
+# Begin Source File
+
+SOURCE=..\ir\tr\entity.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\tr\entity.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\tr\entity_t.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\tr\Makefile.in
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\tr\mangle.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\tr\mangle.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\tr\tpop.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\tr\tpop.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\tr\tpop_t.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\tr\tr_inheritance.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\tr\tr_inheritance.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\tr\trvrfy.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\tr\trvrfy.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\tr\type.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\tr\type.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\tr\type_identify.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\tr\type_identify.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\tr\type_identify_t.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\tr\type_or_entity.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\tr\type_t.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\tr\typegmod.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\tr\typegmod.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\tr\typewalk.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\tr\typewalk.h
+# End Source File
+# End Group
+# Begin Group "tv"
+
+# PROP Default_Filter ""
+# Begin Source File
+
+SOURCE=..\ir\tv\fltcalc.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\tv\fltcalc.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\tv\Makefile.in
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\tv\strcalc.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\tv\strcalc.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\tv\tv.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\tv\tv.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\tv\tv_t.h
+# End Source File
+# End Group
+# Begin Group "lower"
+
+# PROP Default_Filter ""
+# Begin Source File
+
+SOURCE=..\ir\lower\lower_calls.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\lower\lower_calls.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\lower\lower_dw.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\lower\lower_dw.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\lower\lower_intrinsics.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ir\lower\lower_intrinsics.h
+# End Source File
+# End Group
+# End Group
+# End Target
+# End Project
diff --git a/vc2005/libfirm.dsw b/vc2005/libfirm.dsw
new file mode 100644 (file)
index 0000000..8d6aba6
--- /dev/null
@@ -0,0 +1,40 @@
+Microsoft Developer Studio Workspace File, Format Version 6.00
+# WARNUNG: DIESE ARBEITSBEREICHSDATEI DARF NICHT BEARBEITET ODER GELÖSCHT WERDEN!
+
+###############################################################################
+
+Project: "libfirm"=".\libfirm.dsp" - Package Owner=<4>
+
+Package=<5>
+{{{
+}}}
+
+Package=<4>
+{{{
+}}}
+
+###############################################################################
+
+Project: "obstack"="..\..\obstack\obstack\win32\obstack.dsp" - Package Owner=<4>
+
+Package=<5>
+{{{
+}}}
+
+Package=<4>
+{{{
+}}}
+
+###############################################################################
+
+Global:
+
+Package=<5>
+{{{
+}}}
+
+Package=<3>
+{{{
+}}}
+
+###############################################################################
diff --git a/vc2005/libfirm.ncb b/vc2005/libfirm.ncb
new file mode 100644 (file)
index 0000000..10e7d98
Binary files /dev/null and b/vc2005/libfirm.ncb differ
diff --git a/vc2005/libfirm.opt b/vc2005/libfirm.opt
new file mode 100644 (file)
index 0000000..27d774b
Binary files /dev/null and b/vc2005/libfirm.opt differ
diff --git a/vc2005/libfirm.plg b/vc2005/libfirm.plg
new file mode 100644 (file)
index 0000000..f86e253
--- /dev/null
@@ -0,0 +1,26 @@
+<html>
+<body>
+<pre>
+<h1>Erstellungsprotokoll</h1>
+<h3>
+--------------------Konfiguration: libfirm - Win32 Debug--------------------
+</h3>
+<h3>Befehlszeilen</h3>
+Erstellen der temporären Datei  "C:\DOKUME~1\chriswue\LOKALE~1\Temp\RSP402.bat" mit Inhalten
+[
+@echo off
+..\ir\be\scripts\generate_emitter.pl ..\ir\be\ia32\ia32_spec.pl ..\ir\be\ia32
+..\ir\be\scripts\generate_new_opcodes.pl ..\ir\be\ia32\ia32_spec.pl ..\ir\be\ia32
+..\ir\be\scripts\generate_regalloc_if.pl ..\ir\be\ia32\ia32_spec.pl ..\ir\be\ia32
+]
+Erstellen der Befehlzeile "C:\DOKUME~1\chriswue\LOKALE~1\Temp\RSP402.bat"
+<h3>Ausgabefenster</h3>
+Translate Spec: ..\ir\be\ia32\ia32_spec.pl
+
+
+
+<h3>Ergebnisse</h3>
+gen_ia32_emitter.c - 0 Fehler, 0 Warnung(en)
+</pre>
+</body>
+</html>
diff --git a/vc2005/libfirm.positions b/vc2005/libfirm.positions
new file mode 100644 (file)
index 0000000..ba3178d
Binary files /dev/null and b/vc2005/libfirm.positions differ
diff --git a/vc2005/libfirm.vcproj b/vc2005/libfirm.vcproj
new file mode 100644 (file)
index 0000000..13d00a7
--- /dev/null
@@ -0,0 +1,5988 @@
+<?xml version="1.0" encoding="Windows-1252"?>
+<VisualStudioProject
+       ProjectType="Visual C++"
+       Version="8,00"
+       Name="libfirm"
+       ProjectGUID="{DC7052A2-E740-4629-9F56-DB118AAB725B}"
+       >
+       <Platforms>
+               <Platform
+                       Name="Win32"
+               />
+       </Platforms>
+       <ToolFiles>
+       </ToolFiles>
+       <Configurations>
+               <Configuration
+                       Name="Release|Win32"
+                       OutputDirectory="d:\work\libfirm\Release"
+                       IntermediateDirectory="d:\work\libfirm\Release"
+                       ConfigurationType="4"
+                       InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops"
+                       UseOfMFC="0"
+                       ATLMinimizesCRunTimeLibraryUsage="false"
+                       CharacterSet="2"
+                       >
+                       <Tool
+                               Name="VCPreBuildEventTool"
+                       />
+                       <Tool
+                               Name="VCCustomBuildTool"
+                       />
+                       <Tool
+                               Name="VCXMLDataGeneratorTool"
+                       />
+                       <Tool
+                               Name="VCWebServiceProxyGeneratorTool"
+                       />
+                       <Tool
+                               Name="VCMIDLTool"
+                       />
+                       <Tool
+                               Name="VCCLCompilerTool"
+                               Optimization="2"
+                               InlineFunctionExpansion="1"
+                               AdditionalIncludeDirectories="../../obstack,../win32,../ir/adt,../ir/ana,../ir/common,../ir/debug,../ir/ident,../ir/ir,../ir/opt,../ir/st,../ir/stat,../ir/tr,../ir/tv,../ir/arch,../ir/lower,s:/local/ipd/include"
+                               PreprocessorDefinitions="NDEBUG;WIN32;_LIB;HAVE_CONFIG_H"
+                               StringPooling="true"
+                               RuntimeLibrary="0"
+                               EnableFunctionLevelLinking="true"
+                               PrecompiledHeaderFile="d:\work\libfirm\Release/libfirm.pch"
+                               AssemblerListingLocation="d:\work\libfirm\Release/"
+                               ObjectFile="d:\work\libfirm\Release/"
+                               ProgramDataBaseFileName="d:\work\libfirm\Release/"
+                               WarningLevel="3"
+                               SuppressStartupBanner="true"
+                       />
+                       <Tool
+                               Name="VCManagedResourceCompilerTool"
+                       />
+                       <Tool
+                               Name="VCResourceCompilerTool"
+                               PreprocessorDefinitions="NDEBUG"
+                               Culture="1031"
+                       />
+                       <Tool
+                               Name="VCPreLinkEventTool"
+                       />
+                       <Tool
+                               Name="VCLibrarianTool"
+                               OutputFile="S:\local\ipd\lib\libfirm.lib"
+                               SuppressStartupBanner="true"
+                       />
+                       <Tool
+                               Name="VCALinkTool"
+                       />
+                       <Tool
+                               Name="VCXDCMakeTool"
+                       />
+                       <Tool
+                               Name="VCBscMakeTool"
+                               SuppressStartupBanner="true"
+                               OutputFile="d:\work\libfirm\Release/libfirm.bsc"
+                       />
+                       <Tool
+                               Name="VCFxCopTool"
+                       />
+                       <Tool
+                               Name="VCPostBuildEventTool"
+                               Description="Header install"
+                               CommandLine="cmd /c install.cmd .. s:\local\ipd\include\libfirm"
+                       />
+               </Configuration>
+               <Configuration
+                       Name="Debug|Win32"
+                       OutputDirectory="c:\work\libfirm\Debug"
+                       IntermediateDirectory="c:\work\libfirm\Debug"
+                       ConfigurationType="4"
+                       InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops"
+                       UseOfMFC="0"
+                       ATLMinimizesCRunTimeLibraryUsage="false"
+                       CharacterSet="2"
+                       >
+                       <Tool
+                               Name="VCPreBuildEventTool"
+                       />
+                       <Tool
+                               Name="VCCustomBuildTool"
+                       />
+                       <Tool
+                               Name="VCXMLDataGeneratorTool"
+                       />
+                       <Tool
+                               Name="VCWebServiceProxyGeneratorTool"
+                       />
+                       <Tool
+                               Name="VCMIDLTool"
+                       />
+                       <Tool
+                               Name="VCCLCompilerTool"
+                               Optimization="0"
+                               AdditionalIncludeDirectories="../../obstack,../win32,../ir/adt,../ir/ana,../ir/common,../ir/debug,../ir/ident,../ir/ir,../ir/opt,../ir/st,../ir/stat,../ir/tr,../ir/tv,../ir/arch,../ir/lower,s:/local/ipd/include"
+                               PreprocessorDefinitions="_DEBUG;WIN32;_LIB;HAVE_CONFIG_H"
+                               MinimalRebuild="true"
+                               BasicRuntimeChecks="3"
+                               RuntimeLibrary="1"
+                               PrecompiledHeaderFile="c:\work\libfirm\Debug/libfirm.pch"
+                               AssemblerListingLocation="c:\work\libfirm\Debug/"
+                               ObjectFile="c:\work\libfirm\Debug/"
+                               ProgramDataBaseFileName="c:\work\libfirm\Debug/"
+                               WarningLevel="3"
+                               SuppressStartupBanner="true"
+                               DebugInformationFormat="4"
+                       />
+                       <Tool
+                               Name="VCManagedResourceCompilerTool"
+                       />
+                       <Tool
+                               Name="VCResourceCompilerTool"
+                               PreprocessorDefinitions="_DEBUG"
+                               Culture="1031"
+                       />
+                       <Tool
+                               Name="VCPreLinkEventTool"
+                       />
+                       <Tool
+                               Name="VCLibrarianTool"
+                               OutputFile="S:\local\ipd\lib\libfirm_g.lib"
+                               SuppressStartupBanner="true"
+                       />
+                       <Tool
+                               Name="VCALinkTool"
+                       />
+                       <Tool
+                               Name="VCXDCMakeTool"
+                       />
+                       <Tool
+                               Name="VCBscMakeTool"
+                               SuppressStartupBanner="true"
+                               OutputFile="c:\work\libfirm\Debug/libfirm.bsc"
+                       />
+                       <Tool
+                               Name="VCFxCopTool"
+                       />
+                       <Tool
+                               Name="VCPostBuildEventTool"
+                               Description="Header install"
+                               CommandLine="cmd /c install.cmd .. s:\local\ipd\include\libfirm"
+                       />
+               </Configuration>
+       </Configurations>
+       <References>
+               <ProjectReference
+                       ReferencedProjectIdentifier="{B55BD0C0-484C-4F69-B33C-77DBA94D7B62}"
+                       RelativePathToProject="..\..\..\libcore\vc2005\libcore.vcproj"
+               />
+               <ProjectReference
+                       ReferencedProjectIdentifier="{72D63AD0-A584-4317-88BF-680B3C0FDB4D}"
+                       RelativePathToProject="..\..\..\obstack\vc2005\obstack.vcproj"
+               />
+               <ProjectReference
+                       ReferencedProjectIdentifier="{B5BEF349-DA77-4811-B414-D6745BEB252A}"
+                       RelativePathToProject="..\..\..\firmlower\vc2005\firmlower.vcproj"
+               />
+       </References>
+       <Files>
+               <Filter
+                       Name="Win32-specific"
+                       Filter="h;hpp;hxx;hm;inl"
+                       >
+                       <File
+                               RelativePath="config.h"
+                               >
+                       </File>
+                       <File
+                               RelativePath="firm_config.h"
+                               >
+                       </File>
+                       <File
+                               RelativePath="header.list"
+                               >
+                       </File>
+                       <File
+                               RelativePath="ieee754.h"
+                               >
+                       </File>
+                       <File
+                               RelativePath="install.cmd"
+                               >
+                       </File>
+                       <File
+                               RelativePath="math.c"
+                               >
+                               <FileConfiguration
+                                       Name="Release|Win32"
+                                       >
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""
+                                       />
+                               </FileConfiguration>
+                               <FileConfiguration
+                                       Name="Debug|Win32"
+                                       >
+                                       <Tool
+                                               Name="VCCLCompilerTool"
+                                               AdditionalIncludeDirectories=""
+                                               PreprocessorDefinitions=""
+                                       />
+                               </FileConfiguration>
+                       </File>
+               </Filter>
+               <Filter
+                       Name="FIRM"
+                       >
+                       <Filter
+                               Name="adt"
+                               >
+                               <File
+                                       RelativePath="..\ir\adt\align.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\adt\array.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\adt\array.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\adt\bipartite.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\adt\bipartite.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\adt\bitfiddle.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\adt\bitset.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\adt\bitset_std.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\adt\eset.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\adt\eset.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\adt\fourcc.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\adt\hashptr.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\adt\impl.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\adt\iterator.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\adt\iterator.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\adt\list.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\adt\Makefile.in"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\adt\misc.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\adt\obst.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\adt\pdeq.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\adt\pdeq.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\adt\plist.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\adt\plist.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\adt\pmap.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\adt\pmap.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\adt\pset.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions="PSET"
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions="PSET"
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\adt\pset.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\adt\set.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\adt\set.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\adt\xmalloc.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\adt\xmalloc.h"
+                                       >
+                               </File>
+                       </Filter>
+                       <Filter
+                               Name="ana"
+                               >
+                               <File
+                                       RelativePath="..\ir\ana\analyze_irg_args.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ana\analyze_irg_args.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ana\callgraph.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ana\callgraph.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ana\cdep.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ana\cdep.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ana\cgana.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ana\cgana.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ana\compute_loop_info.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ana\compute_loop_info.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ana\execution_frequency.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ana\execution_frequency.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ana\field_temperature.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ana\field_temperature.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ana\height.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ana\height.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ana\interval_analysis.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ana\interval_analysis.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ana\irbackedge.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ana\irbackedge_t.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ana\ircfscc.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ana\irconsconfirm.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ana\irconsconfirm.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ana\irdom.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ana\irdom.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ana\irdom_t.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ana\irextbb.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ana\irextbb.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ana\irextbb_t.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ana\irloop.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ana\irloop_t.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ana\irouts.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ana\irouts.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ana\irscc.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ana\irsimpletype.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ana\irsimpletype.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ana\irtypeinfo.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ana\irtypeinfo.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ana\Makefile.in"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ana\phiclass.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ana\phiclass.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ana\phiclass_t.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ana\rta.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ana\rta.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ana\trouts.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ana\trouts.h"
+                                       >
+                               </File>
+                       </Filter>
+                       <Filter
+                               Name="ana2"
+                               >
+                               <File
+                                       RelativePath="..\ir\ana2\ecg.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ana2\ecg.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ana2\gnu_ext.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ana2\irmemwalk.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ana2\irmemwalk.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ana2\lset.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ana2\lset.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ana2\Makefile.in"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ana2\pto.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ana2\pto.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ana2\pto_comp.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ana2\pto_comp.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ana2\pto_ctx.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ana2\pto_ctx.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ana2\pto_debug.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ana2\pto_debug.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ana2\pto_init.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ana2\pto_init.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ana2\pto_mod.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ana2\pto_mod.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ana2\pto_name.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ana2\pto_name.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ana2\pto_util.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ana2\pto_util.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ana2\qset.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ana2\qset.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ana2\timing.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ana2\timing.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ana2\typalise.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ana2\typalise.h"
+                                       >
+                               </File>
+                       </Filter>
+                       <Filter
+                               Name="arch"
+                               >
+                               <File
+                                       RelativePath="..\ir\arch\archop.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\arch\archop.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\arch\modeconv.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\arch\modeconv.h"
+                                       >
+                               </File>
+                       </Filter>
+                       <Filter
+                               Name="be"
+                               >
+                               <File
+                                       RelativePath="..\ir\be\be.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\be\be_t.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\be\beabi.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\be\beabi.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\be\beabi_t.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\be\bearch.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\be\bearch.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\be\bearch_t.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\be\bechordal.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\be\bechordal.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\be\bechordal_draw.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\be\bechordal_draw.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\be\bechordal_main.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\be\bechordal_t.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\be\bechordalspill.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\be\becopyheur.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\be\becopyheur2.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\be\becopyilp.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\be\becopyilp1.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\be\becopyilp2.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\be\becopyopt.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\be\becopyopt.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\be\becopyopt_t.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\be\becopystat.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\be\becopystat.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\be\beifg.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\be\beifg.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\be\beifg_impl.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\be\beifg_std.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\be\beifg_t.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\be\beinsn.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\be\beinsn_t.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\be\beirgmod.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\be\beirgmod.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\be\belistsched.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\be\belistsched.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\be\belive.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\be\belive.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\be\belive_t.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\be\belower.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\be\belower.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\be\bemain.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\be\benode.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\be\benode_t.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\be\benodesets.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\be\benodesets.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\be\benumb.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\be\benumb.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\be\benumb_t.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\be\bera.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\be\bera.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\be\beraextern.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\be\beraextern.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\be\besched.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\be\besched.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\be\besched_t.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\be\beschedmris.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\be\beschedmris.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\be\bespill.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\be\bespill.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\be\bespillbelady.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\be\bespillbelady.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\be\bespillilp.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\be\bespillilp.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\be\bessadestr.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\be\bessadestr.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\be\bestat.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\be\bestat.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\be\beuses.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\be\beuses.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\be\beuses_t.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\be\beutil.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\be\beutil.h"
+                                       >
+                               </File>
+                               <Filter
+                                       Name="scripts"
+                                       Filter="pl"
+                                       >
+                                       <File
+                                               RelativePath="..\ir\be\scripts\generate_emitter.pl"
+                                               >
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\scripts\generate_new_opcodes.pl"
+                                               >
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\scripts\generate_regalloc_if.pl"
+                                               >
+                                       </File>
+                               </Filter>
+                               <Filter
+                                       Name="ia32"
+                                       >
+                                       <File
+                                               RelativePath="..\ir\be\ia32\bearch_ia32.c"
+                                               >
+                                               <FileConfiguration
+                                                       Name="Release|Win32"
+                                                       >
+                                                       <Tool
+                                                               Name="VCCLCompilerTool"
+                                                               AdditionalIncludeDirectories=""
+                                                               PreprocessorDefinitions=""
+                                                       />
+                                               </FileConfiguration>
+                                               <FileConfiguration
+                                                       Name="Debug|Win32"
+                                                       >
+                                                       <Tool
+                                                               Name="VCCLCompilerTool"
+                                                               AdditionalIncludeDirectories=""
+                                                               PreprocessorDefinitions=""
+                                                       />
+                                               </FileConfiguration>
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\ia32\bearch_ia32.h"
+                                               >
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\ia32\bearch_ia32_t.h"
+                                               >
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\ia32\gen_ia32_emitter.c"
+                                               >
+                                               <FileConfiguration
+                                                       Name="Release|Win32"
+                                                       >
+                                                       <Tool
+                                                               Name="VCCLCompilerTool"
+                                                               AdditionalIncludeDirectories=""
+                                                               PreprocessorDefinitions=""
+                                                       />
+                                               </FileConfiguration>
+                                               <FileConfiguration
+                                                       Name="Debug|Win32"
+                                                       >
+                                                       <Tool
+                                                               Name="VCCLCompilerTool"
+                                                               AdditionalIncludeDirectories=""
+                                                               PreprocessorDefinitions=""
+                                                       />
+                                               </FileConfiguration>
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\ia32\gen_ia32_emitter.h"
+                                               >
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\ia32\gen_ia32_new_nodes.c.inl"
+                                               >
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\ia32\gen_ia32_new_nodes.h"
+                                               >
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\ia32\gen_ia32_regalloc_if.c"
+                                               >
+                                               <FileConfiguration
+                                                       Name="Release|Win32"
+                                                       >
+                                                       <Tool
+                                                               Name="VCCLCompilerTool"
+                                                               AdditionalIncludeDirectories=""
+                                                               PreprocessorDefinitions=""
+                                                       />
+                                               </FileConfiguration>
+                                               <FileConfiguration
+                                                       Name="Debug|Win32"
+                                                       >
+                                                       <Tool
+                                                               Name="VCCLCompilerTool"
+                                                               AdditionalIncludeDirectories=""
+                                                               PreprocessorDefinitions=""
+                                                       />
+                                               </FileConfiguration>
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\ia32\gen_ia32_regalloc_if.h"
+                                               >
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\ia32\gen_ia32_regalloc_if_t.h"
+                                               >
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\ia32\ia32_dbg_stat.h"
+                                               >
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\ia32\ia32_emitter.c"
+                                               >
+                                               <FileConfiguration
+                                                       Name="Release|Win32"
+                                                       >
+                                                       <Tool
+                                                               Name="VCCLCompilerTool"
+                                                               AdditionalIncludeDirectories=""
+                                                               PreprocessorDefinitions=""
+                                                       />
+                                               </FileConfiguration>
+                                               <FileConfiguration
+                                                       Name="Debug|Win32"
+                                                       >
+                                                       <Tool
+                                                               Name="VCCLCompilerTool"
+                                                               AdditionalIncludeDirectories=""
+                                                               PreprocessorDefinitions=""
+                                                       />
+                                               </FileConfiguration>
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\ia32\ia32_emitter.h"
+                                               >
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\ia32\ia32_gen_decls.c"
+                                               >
+                                               <FileConfiguration
+                                                       Name="Release|Win32"
+                                                       >
+                                                       <Tool
+                                                               Name="VCCLCompilerTool"
+                                                               AdditionalIncludeDirectories=""
+                                                               PreprocessorDefinitions=""
+                                                       />
+                                               </FileConfiguration>
+                                               <FileConfiguration
+                                                       Name="Debug|Win32"
+                                                       >
+                                                       <Tool
+                                                               Name="VCCLCompilerTool"
+                                                               AdditionalIncludeDirectories=""
+                                                               PreprocessorDefinitions=""
+                                                       />
+                                               </FileConfiguration>
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\ia32\ia32_gen_decls.h"
+                                               >
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\ia32\ia32_intrinsics.c"
+                                               >
+                                               <FileConfiguration
+                                                       Name="Release|Win32"
+                                                       >
+                                                       <Tool
+                                                               Name="VCCLCompilerTool"
+                                                               AdditionalIncludeDirectories=""
+                                                               PreprocessorDefinitions=""
+                                                       />
+                                               </FileConfiguration>
+                                               <FileConfiguration
+                                                       Name="Debug|Win32"
+                                                       >
+                                                       <Tool
+                                                               Name="VCCLCompilerTool"
+                                                               AdditionalIncludeDirectories=""
+                                                               PreprocessorDefinitions=""
+                                                       />
+                                               </FileConfiguration>
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\ia32\ia32_map_regs.c"
+                                               >
+                                               <FileConfiguration
+                                                       Name="Release|Win32"
+                                                       >
+                                                       <Tool
+                                                               Name="VCCLCompilerTool"
+                                                               AdditionalIncludeDirectories=""
+                                                               PreprocessorDefinitions=""
+                                                       />
+                                               </FileConfiguration>
+                                               <FileConfiguration
+                                                       Name="Debug|Win32"
+                                                       >
+                                                       <Tool
+                                                               Name="VCCLCompilerTool"
+                                                               AdditionalIncludeDirectories=""
+                                                               PreprocessorDefinitions=""
+                                                       />
+                                               </FileConfiguration>
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\ia32\ia32_map_regs.h"
+                                               >
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\ia32\ia32_new_nodes.c"
+                                               >
+                                               <FileConfiguration
+                                                       Name="Release|Win32"
+                                                       >
+                                                       <Tool
+                                                               Name="VCCLCompilerTool"
+                                                               AdditionalIncludeDirectories=""
+                                                               PreprocessorDefinitions=""
+                                                       />
+                                               </FileConfiguration>
+                                               <FileConfiguration
+                                                       Name="Debug|Win32"
+                                                       >
+                                                       <Tool
+                                                               Name="VCCLCompilerTool"
+                                                               AdditionalIncludeDirectories=""
+                                                               PreprocessorDefinitions=""
+                                                       />
+                                               </FileConfiguration>
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\ia32\ia32_new_nodes.h"
+                                               >
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\ia32\ia32_nodes_attr.h"
+                                               >
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\ia32\ia32_optimize.c"
+                                               >
+                                               <FileConfiguration
+                                                       Name="Release|Win32"
+                                                       >
+                                                       <Tool
+                                                               Name="VCCLCompilerTool"
+                                                               AdditionalIncludeDirectories=""
+                                                               PreprocessorDefinitions=""
+                                                       />
+                                               </FileConfiguration>
+                                               <FileConfiguration
+                                                       Name="Debug|Win32"
+                                                       >
+                                                       <Tool
+                                                               Name="VCCLCompilerTool"
+                                                               AdditionalIncludeDirectories=""
+                                                               PreprocessorDefinitions=""
+                                                       />
+                                               </FileConfiguration>
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\ia32\ia32_optimize.h"
+                                               >
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\ia32\ia32_spec.pl"
+                                               >
+                                               <FileConfiguration
+                                                       Name="Release|Win32"
+                                                       >
+                                                       <Tool
+                                                               Name="VCCustomBuildTool"
+                                                               Description="Translate Spec: $(InputPath)"
+                                                               CommandLine="..\ir\be\scripts\generate_emitter.pl $(InputPath) ..\ir\be\ia32&#x0D;&#x0A;..\ir\be\scripts\generate_new_opcodes.pl $(InputPath) ..\ir\be\ia32&#x0D;&#x0A;..\ir\be\scripts\generate_regalloc_if.pl $(InputPath) ..\ir\be\ia32&#x0D;&#x0A;"
+                                                               AdditionalDependencies="..\ir\be\scripts\generate_emitter.pl;..\ir\be\scripts\generate_new_opcodes.pl;..\ir\be\scripts\generate_regalloc_if.pl;"
+                                                               Outputs="..\ir\be\ia32\gen_ia32_emitter.c;..\ir\be\ia32\gen_ia32_emitter.h;..\ir\be\ia32\gen_ia32_new_nodes.c.inl;..\ir\be\ia32\gen_ia32_new_nodes.h;..\ir\be\ia32\gen_ia32_regalloc_if.c;..\ir\be\ia32\gen_ia32_regalloc_if.h;..\ir\be\ia32\gen_ia32_regalloc_if_t.h"
+                                                       />
+                                               </FileConfiguration>
+                                               <FileConfiguration
+                                                       Name="Debug|Win32"
+                                                       >
+                                                       <Tool
+                                                               Name="VCCustomBuildTool"
+                                                               Description="Translate Spec: $(InputPath)"
+                                                               CommandLine="..\ir\be\scripts\generate_emitter.pl $(InputPath) ..\ir\be\ia32&#x0D;&#x0A;..\ir\be\scripts\generate_new_opcodes.pl $(InputPath) ..\ir\be\ia32&#x0D;&#x0A;..\ir\be\scripts\generate_regalloc_if.pl $(InputPath) ..\ir\be\ia32&#x0D;&#x0A;"
+                                                               AdditionalDependencies="..\ir\be\scripts\generate_emitter.pl;..\ir\be\scripts\generate_new_opcodes.pl;..\ir\be\scripts\generate_regalloc_if.pl;"
+                                                               Outputs="..\ir\be\ia32\gen_ia32_emitter.c;..\ir\be\ia32\gen_ia32_emitter.h;..\ir\be\ia32\gen_ia32_new_nodes.c.inl;..\ir\be\ia32\gen_ia32_new_nodes.h;..\ir\be\ia32\gen_ia32_regalloc_if.c;..\ir\be\ia32\gen_ia32_regalloc_if.h;..\ir\be\ia32\gen_ia32_regalloc_if_t.h"
+                                                       />
+                                               </FileConfiguration>
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\ia32\ia32_transform.c"
+                                               >
+                                               <FileConfiguration
+                                                       Name="Release|Win32"
+                                                       >
+                                                       <Tool
+                                                               Name="VCCLCompilerTool"
+                                                               AdditionalIncludeDirectories=""
+                                                               PreprocessorDefinitions=""
+                                                       />
+                                               </FileConfiguration>
+                                               <FileConfiguration
+                                                       Name="Debug|Win32"
+                                                       >
+                                                       <Tool
+                                                               Name="VCCLCompilerTool"
+                                                               AdditionalIncludeDirectories=""
+                                                               PreprocessorDefinitions=""
+                                                       />
+                                               </FileConfiguration>
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\ia32\ia32_transform.h"
+                                               >
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\ia32\ia32_x87.c"
+                                               >
+                                               <FileConfiguration
+                                                       Name="Release|Win32"
+                                                       >
+                                                       <Tool
+                                                               Name="VCCLCompilerTool"
+                                                               AdditionalIncludeDirectories=""
+                                                               PreprocessorDefinitions=""
+                                                       />
+                                               </FileConfiguration>
+                                               <FileConfiguration
+                                                       Name="Debug|Win32"
+                                                       >
+                                                       <Tool
+                                                               Name="VCCLCompilerTool"
+                                                               AdditionalIncludeDirectories=""
+                                                               PreprocessorDefinitions=""
+                                                       />
+                                               </FileConfiguration>
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\ia32\ia32_x87.h"
+                                               >
+                                       </File>
+                               </Filter>
+                               <Filter
+                                       Name="arm"
+                                       >
+                                       <File
+                                               RelativePath="..\ir\be\arm\arm_emitter.c"
+                                               >
+                                               <FileConfiguration
+                                                       Name="Release|Win32"
+                                                       >
+                                                       <Tool
+                                                               Name="VCCLCompilerTool"
+                                                               AdditionalIncludeDirectories=""
+                                                               PreprocessorDefinitions=""
+                                                       />
+                                               </FileConfiguration>
+                                               <FileConfiguration
+                                                       Name="Debug|Win32"
+                                                       >
+                                                       <Tool
+                                                               Name="VCCLCompilerTool"
+                                                               AdditionalIncludeDirectories=""
+                                                               PreprocessorDefinitions=""
+                                                       />
+                                               </FileConfiguration>
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\arm\arm_emitter.h"
+                                               >
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\arm\arm_gen_decls.c"
+                                               >
+                                               <FileConfiguration
+                                                       Name="Release|Win32"
+                                                       >
+                                                       <Tool
+                                                               Name="VCCLCompilerTool"
+                                                               AdditionalIncludeDirectories=""
+                                                               PreprocessorDefinitions=""
+                                                       />
+                                               </FileConfiguration>
+                                               <FileConfiguration
+                                                       Name="Debug|Win32"
+                                                       >
+                                                       <Tool
+                                                               Name="VCCLCompilerTool"
+                                                               AdditionalIncludeDirectories=""
+                                                               PreprocessorDefinitions=""
+                                                       />
+                                               </FileConfiguration>
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\arm\arm_gen_decls.h"
+                                               >
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\arm\arm_map_regs.c"
+                                               >
+                                               <FileConfiguration
+                                                       Name="Release|Win32"
+                                                       >
+                                                       <Tool
+                                                               Name="VCCLCompilerTool"
+                                                               AdditionalIncludeDirectories=""
+                                                               PreprocessorDefinitions=""
+                                                       />
+                                               </FileConfiguration>
+                                               <FileConfiguration
+                                                       Name="Debug|Win32"
+                                                       >
+                                                       <Tool
+                                                               Name="VCCLCompilerTool"
+                                                               AdditionalIncludeDirectories=""
+                                                               PreprocessorDefinitions=""
+                                                       />
+                                               </FileConfiguration>
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\arm\arm_map_regs.h"
+                                               >
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\arm\arm_new_nodes.c"
+                                               >
+                                               <FileConfiguration
+                                                       Name="Release|Win32"
+                                                       >
+                                                       <Tool
+                                                               Name="VCCLCompilerTool"
+                                                               AdditionalIncludeDirectories=""
+                                                               PreprocessorDefinitions=""
+                                                       />
+                                               </FileConfiguration>
+                                               <FileConfiguration
+                                                       Name="Debug|Win32"
+                                                       >
+                                                       <Tool
+                                                               Name="VCCLCompilerTool"
+                                                               AdditionalIncludeDirectories=""
+                                                               PreprocessorDefinitions=""
+                                                       />
+                                               </FileConfiguration>
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\arm\arm_new_nodes.h"
+                                               >
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\arm\arm_nodes_attr.h"
+                                               >
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\arm\arm_spec.pl"
+                                               >
+                                               <FileConfiguration
+                                                       Name="Release|Win32"
+                                                       >
+                                                       <Tool
+                                                               Name="VCCustomBuildTool"
+                                                               Description="Translate Spec: $(InputPath)"
+                                                               CommandLine="..\ir\be\scripts\generate_emitter.pl $(InputPath) ..\ir\be\arm&#x0D;&#x0A;..\ir\be\scripts\generate_new_opcodes.pl $(InputPath) ..\ir\be\arm&#x0D;&#x0A;..\ir\be\scripts\generate_regalloc_if.pl $(InputPath) ..\ir\be\arm&#x0D;&#x0A;"
+                                                               AdditionalDependencies="..\ir\be\scripts\generate_emitter.pl;..\ir\be\scripts\generate_new_opcodes.pl;..\ir\be\scripts\generate_regalloc_if.pl;"
+                                                               Outputs="..\ir\be\arm\gen_arm_emitter.c;..\ir\be\arm\gen_arm_emitter.h;..\ir\be\arm\gen_arm_new_nodes.c.inl;..\ir\be\arm\gen_arm_new_nodes.h;..\ir\be\arm\gen_arm_regalloc_if.c;..\ir\be\arm\gen_arm_regalloc_if.h;..\ir\be\arm\gen_arm_regalloc_if_t.h"
+                                                       />
+                                               </FileConfiguration>
+                                               <FileConfiguration
+                                                       Name="Debug|Win32"
+                                                       >
+                                                       <Tool
+                                                               Name="VCCustomBuildTool"
+                                                               Description="Translate Spec: $(InputPath)"
+                                                               CommandLine="..\ir\be\scripts\generate_emitter.pl $(InputPath) ..\ir\be\arm&#x0D;&#x0A;..\ir\be\scripts\generate_new_opcodes.pl $(InputPath) ..\ir\be\arm&#x0D;&#x0A;..\ir\be\scripts\generate_regalloc_if.pl $(InputPath) ..\ir\be\arm&#x0D;&#x0A;"
+                                                               AdditionalDependencies="..\ir\be\scripts\generate_emitter.pl;..\ir\be\scripts\generate_new_opcodes.pl;..\ir\be\scripts\generate_regalloc_if.pl;"
+                                                               Outputs="..\ir\be\arm\gen_arm_emitter.c;..\ir\be\arm\gen_arm_emitter.h;..\ir\be\arm\gen_arm_new_nodes.c.inl;..\ir\be\arm\gen_arm_new_nodes.h;..\ir\be\arm\gen_arm_regalloc_if.c;..\ir\be\arm\gen_arm_regalloc_if.h;..\ir\be\arm\gen_arm_regalloc_if_t.h"
+                                                       />
+                                               </FileConfiguration>
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\arm\arm_transform.c"
+                                               >
+                                               <FileConfiguration
+                                                       Name="Release|Win32"
+                                                       >
+                                                       <Tool
+                                                               Name="VCCLCompilerTool"
+                                                               AdditionalIncludeDirectories=""
+                                                               PreprocessorDefinitions=""
+                                                       />
+                                               </FileConfiguration>
+                                               <FileConfiguration
+                                                       Name="Debug|Win32"
+                                                       >
+                                                       <Tool
+                                                               Name="VCCLCompilerTool"
+                                                               AdditionalIncludeDirectories=""
+                                                               PreprocessorDefinitions=""
+                                                       />
+                                               </FileConfiguration>
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\arm\arm_transform.h"
+                                               >
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\arm\bearch_arm.c"
+                                               >
+                                               <FileConfiguration
+                                                       Name="Release|Win32"
+                                                       >
+                                                       <Tool
+                                                               Name="VCCLCompilerTool"
+                                                               AdditionalIncludeDirectories=""
+                                                               PreprocessorDefinitions=""
+                                                       />
+                                               </FileConfiguration>
+                                               <FileConfiguration
+                                                       Name="Debug|Win32"
+                                                       >
+                                                       <Tool
+                                                               Name="VCCLCompilerTool"
+                                                               AdditionalIncludeDirectories=""
+                                                               PreprocessorDefinitions=""
+                                                       />
+                                               </FileConfiguration>
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\arm\bearch_arm.h"
+                                               >
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\arm\bearch_arm_t.h"
+                                               >
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\arm\gen_arm_emitter.c"
+                                               >
+                                               <FileConfiguration
+                                                       Name="Release|Win32"
+                                                       >
+                                                       <Tool
+                                                               Name="VCCLCompilerTool"
+                                                               AdditionalIncludeDirectories=""
+                                                               PreprocessorDefinitions=""
+                                                       />
+                                               </FileConfiguration>
+                                               <FileConfiguration
+                                                       Name="Debug|Win32"
+                                                       >
+                                                       <Tool
+                                                               Name="VCCLCompilerTool"
+                                                               AdditionalIncludeDirectories=""
+                                                               PreprocessorDefinitions=""
+                                                       />
+                                               </FileConfiguration>
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\arm\gen_arm_emitter.h"
+                                               >
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\arm\gen_arm_new_nodes.c.inl"
+                                               >
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\arm\gen_arm_new_nodes.h"
+                                               >
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\arm\gen_arm_regalloc_if.c"
+                                               >
+                                               <FileConfiguration
+                                                       Name="Release|Win32"
+                                                       >
+                                                       <Tool
+                                                               Name="VCCLCompilerTool"
+                                                               AdditionalIncludeDirectories=""
+                                                               PreprocessorDefinitions=""
+                                                       />
+                                               </FileConfiguration>
+                                               <FileConfiguration
+                                                       Name="Debug|Win32"
+                                                       >
+                                                       <Tool
+                                                               Name="VCCLCompilerTool"
+                                                               AdditionalIncludeDirectories=""
+                                                               PreprocessorDefinitions=""
+                                                       />
+                                               </FileConfiguration>
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\arm\gen_arm_regalloc_if.h"
+                                               >
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\arm\gen_arm_regalloc_if_t.h"
+                                               >
+                                       </File>
+                               </Filter>
+                               <Filter
+                                       Name="ppc32"
+                                       >
+                                       <File
+                                               RelativePath="..\ir\be\ppc32\bearch_ppc32.c"
+                                               >
+                                               <FileConfiguration
+                                                       Name="Release|Win32"
+                                                       >
+                                                       <Tool
+                                                               Name="VCCLCompilerTool"
+                                                               AdditionalIncludeDirectories=""
+                                                               PreprocessorDefinitions=""
+                                                       />
+                                               </FileConfiguration>
+                                               <FileConfiguration
+                                                       Name="Debug|Win32"
+                                                       >
+                                                       <Tool
+                                                               Name="VCCLCompilerTool"
+                                                               AdditionalIncludeDirectories=""
+                                                               PreprocessorDefinitions=""
+                                                       />
+                                               </FileConfiguration>
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\ppc32\bearch_ppc32.h"
+                                               >
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\ppc32\bearch_ppc32_t.h"
+                                               >
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\ppc32\gen_ppc32_emitter.c"
+                                               >
+                                               <FileConfiguration
+                                                       Name="Release|Win32"
+                                                       >
+                                                       <Tool
+                                                               Name="VCCLCompilerTool"
+                                                               AdditionalIncludeDirectories=""
+                                                               PreprocessorDefinitions=""
+                                                       />
+                                               </FileConfiguration>
+                                               <FileConfiguration
+                                                       Name="Debug|Win32"
+                                                       >
+                                                       <Tool
+                                                               Name="VCCLCompilerTool"
+                                                               AdditionalIncludeDirectories=""
+                                                               PreprocessorDefinitions=""
+                                                       />
+                                               </FileConfiguration>
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\ppc32\gen_ppc32_emitter.h"
+                                               >
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\ppc32\gen_ppc32_emitter.inl"
+                                               >
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\ppc32\gen_ppc32_new_nodes.c.inl"
+                                               >
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\ppc32\gen_ppc32_new_nodes.h"
+                                               >
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\ppc32\gen_ppc32_regalloc_if.c"
+                                               >
+                                               <FileConfiguration
+                                                       Name="Release|Win32"
+                                                       >
+                                                       <Tool
+                                                               Name="VCCLCompilerTool"
+                                                               AdditionalIncludeDirectories=""
+                                                               PreprocessorDefinitions=""
+                                                       />
+                                               </FileConfiguration>
+                                               <FileConfiguration
+                                                       Name="Debug|Win32"
+                                                       >
+                                                       <Tool
+                                                               Name="VCCLCompilerTool"
+                                                               AdditionalIncludeDirectories=""
+                                                               PreprocessorDefinitions=""
+                                                       />
+                                               </FileConfiguration>
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\ppc32\gen_ppc32_regalloc_if.h"
+                                               >
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\ppc32\gen_ppc32_regalloc_if_t.h"
+                                               >
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\ppc32\ppc32_emitter.c"
+                                               >
+                                               <FileConfiguration
+                                                       Name="Release|Win32"
+                                                       >
+                                                       <Tool
+                                                               Name="VCCLCompilerTool"
+                                                               AdditionalIncludeDirectories=""
+                                                               PreprocessorDefinitions=""
+                                                       />
+                                               </FileConfiguration>
+                                               <FileConfiguration
+                                                       Name="Debug|Win32"
+                                                       >
+                                                       <Tool
+                                                               Name="VCCLCompilerTool"
+                                                               AdditionalIncludeDirectories=""
+                                                               PreprocessorDefinitions=""
+                                                       />
+                                               </FileConfiguration>
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\ppc32\ppc32_emitter.h"
+                                               >
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\ppc32\ppc32_gen_decls.c"
+                                               >
+                                               <FileConfiguration
+                                                       Name="Release|Win32"
+                                                       >
+                                                       <Tool
+                                                               Name="VCCLCompilerTool"
+                                                               AdditionalIncludeDirectories=""
+                                                               PreprocessorDefinitions=""
+                                                       />
+                                               </FileConfiguration>
+                                               <FileConfiguration
+                                                       Name="Debug|Win32"
+                                                       >
+                                                       <Tool
+                                                               Name="VCCLCompilerTool"
+                                                               AdditionalIncludeDirectories=""
+                                                               PreprocessorDefinitions=""
+                                                       />
+                                               </FileConfiguration>
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\ppc32\ppc32_gen_decls.h"
+                                               >
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\ppc32\ppc32_map_regs.c"
+                                               >
+                                               <FileConfiguration
+                                                       Name="Release|Win32"
+                                                       >
+                                                       <Tool
+                                                               Name="VCCLCompilerTool"
+                                                               AdditionalIncludeDirectories=""
+                                                               PreprocessorDefinitions=""
+                                                       />
+                                               </FileConfiguration>
+                                               <FileConfiguration
+                                                       Name="Debug|Win32"
+                                                       >
+                                                       <Tool
+                                                               Name="VCCLCompilerTool"
+                                                               AdditionalIncludeDirectories=""
+                                                               PreprocessorDefinitions=""
+                                                       />
+                                               </FileConfiguration>
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\ppc32\ppc32_map_regs.h"
+                                               >
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\ppc32\ppc32_new_nodes.c"
+                                               >
+                                               <FileConfiguration
+                                                       Name="Release|Win32"
+                                                       >
+                                                       <Tool
+                                                               Name="VCCLCompilerTool"
+                                                               AdditionalIncludeDirectories=""
+                                                               PreprocessorDefinitions=""
+                                                       />
+                                               </FileConfiguration>
+                                               <FileConfiguration
+                                                       Name="Debug|Win32"
+                                                       >
+                                                       <Tool
+                                                               Name="VCCLCompilerTool"
+                                                               AdditionalIncludeDirectories=""
+                                                               PreprocessorDefinitions=""
+                                                       />
+                                               </FileConfiguration>
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\ppc32\ppc32_new_nodes.h"
+                                               >
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\ppc32\ppc32_nodes_attr.h"
+                                               >
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\ppc32\ppc32_spec.pl"
+                                               >
+                                               <FileConfiguration
+                                                       Name="Release|Win32"
+                                                       >
+                                                       <Tool
+                                                               Name="VCCustomBuildTool"
+                                                               Description="Translate Spec: $(InputPath)"
+                                                               CommandLine="..\ir\be\scripts\generate_emitter.pl $(InputPath) ..\ir\be\ppc32&#x0D;&#x0A;..\ir\be\scripts\generate_new_opcodes.pl $(InputPath) ..\ir\be\ppc32&#x0D;&#x0A;..\ir\be\scripts\generate_regalloc_if.pl $(InputPath) ..\ir\be\ppc32&#x0D;&#x0A;"
+                                                               AdditionalDependencies="..\ir\be\scripts\generate_emitter.pl;..\ir\be\scripts\generate_new_opcodes.pl;..\ir\be\scripts\generate_regalloc_if.pl;"
+                                                               Outputs="..\ir\be\ppc32\gen_ppc32_emitter.c;..\ir\be\ppc32\gen_ppc32_emitter.h;..\ir\be\ppc32\gen_ppc32_new_nodes.c.inl;..\ir\be\ppc32\gen_ppc32_new_nodes.h;..\ir\be\ppc32\gen_ppc32_regalloc_if.c;..\ir\be\ppc32\gen_ppc32_regalloc_if.h;..\ir\be\ppc32\gen_ppc32_regalloc_if_t.h"
+                                                       />
+                                               </FileConfiguration>
+                                               <FileConfiguration
+                                                       Name="Debug|Win32"
+                                                       >
+                                                       <Tool
+                                                               Name="VCCustomBuildTool"
+                                                               Description="Translate Spec: $(InputPath)"
+                                                               CommandLine="..\ir\be\scripts\generate_emitter.pl $(InputPath) ..\ir\be\ppc32&#x0D;&#x0A;..\ir\be\scripts\generate_new_opcodes.pl $(InputPath) ..\ir\be\ppc32&#x0D;&#x0A;..\ir\be\scripts\generate_regalloc_if.pl $(InputPath) ..\ir\be\ppc32&#x0D;&#x0A;"
+                                                               AdditionalDependencies="..\ir\be\scripts\generate_emitter.pl;..\ir\be\scripts\generate_new_opcodes.pl;..\ir\be\scripts\generate_regalloc_if.pl;"
+                                                               Outputs="..\ir\be\ppc32\gen_ppc32_emitter.c;..\ir\be\ppc32\gen_ppc32_emitter.h;..\ir\be\ppc32\gen_ppc32_new_nodes.c.inl;..\ir\be\ppc32\gen_ppc32_new_nodes.h;..\ir\be\ppc32\gen_ppc32_regalloc_if.c;..\ir\be\ppc32\gen_ppc32_regalloc_if.h;..\ir\be\ppc32\gen_ppc32_regalloc_if_t.h"
+                                                       />
+                                               </FileConfiguration>
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\ppc32\ppc32_transform.c"
+                                               >
+                                               <FileConfiguration
+                                                       Name="Release|Win32"
+                                                       >
+                                                       <Tool
+                                                               Name="VCCLCompilerTool"
+                                                               AdditionalIncludeDirectories=""
+                                                               PreprocessorDefinitions=""
+                                                       />
+                                               </FileConfiguration>
+                                               <FileConfiguration
+                                                       Name="Debug|Win32"
+                                                       >
+                                                       <Tool
+                                                               Name="VCCLCompilerTool"
+                                                               AdditionalIncludeDirectories=""
+                                                               PreprocessorDefinitions=""
+                                                       />
+                                               </FileConfiguration>
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\ppc32\ppc32_transform.h"
+                                               >
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\ppc32\ppc32_transform_conv.c"
+                                               >
+                                               <FileConfiguration
+                                                       Name="Release|Win32"
+                                                       >
+                                                       <Tool
+                                                               Name="VCCLCompilerTool"
+                                                               AdditionalIncludeDirectories=""
+                                                               PreprocessorDefinitions=""
+                                                       />
+                                               </FileConfiguration>
+                                               <FileConfiguration
+                                                       Name="Debug|Win32"
+                                                       >
+                                                       <Tool
+                                                               Name="VCCLCompilerTool"
+                                                               AdditionalIncludeDirectories=""
+                                                               PreprocessorDefinitions=""
+                                                       />
+                                               </FileConfiguration>
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\ppc32\ppc32_transform_conv.h"
+                                               >
+                                       </File>
+                               </Filter>
+                               <Filter
+                                       Name="mips"
+                                       >
+                                       <File
+                                               RelativePath="..\ir\be\mips\bearch_mips.c"
+                                               >
+                                               <FileConfiguration
+                                                       Name="Release|Win32"
+                                                       >
+                                                       <Tool
+                                                               Name="VCCLCompilerTool"
+                                                               AdditionalIncludeDirectories=""
+                                                               PreprocessorDefinitions=""
+                                                       />
+                                               </FileConfiguration>
+                                               <FileConfiguration
+                                                       Name="Debug|Win32"
+                                                       >
+                                                       <Tool
+                                                               Name="VCCLCompilerTool"
+                                                               AdditionalIncludeDirectories=""
+                                                               PreprocessorDefinitions=""
+                                                       />
+                                               </FileConfiguration>
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\mips\bearch_mips.h"
+                                               >
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\mips\bearch_mips_t.h"
+                                               >
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\mips\gen_mips_emitter.c"
+                                               >
+                                               <FileConfiguration
+                                                       Name="Release|Win32"
+                                                       >
+                                                       <Tool
+                                                               Name="VCCLCompilerTool"
+                                                               AdditionalIncludeDirectories=""
+                                                               PreprocessorDefinitions=""
+                                                       />
+                                               </FileConfiguration>
+                                               <FileConfiguration
+                                                       Name="Debug|Win32"
+                                                       >
+                                                       <Tool
+                                                               Name="VCCLCompilerTool"
+                                                               AdditionalIncludeDirectories=""
+                                                               PreprocessorDefinitions=""
+                                                       />
+                                               </FileConfiguration>
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\mips\gen_mips_emitter.h"
+                                               >
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\mips\gen_mips_new_nodes.c.inl"
+                                               >
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\mips\gen_mips_new_nodes.h"
+                                               >
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\mips\gen_mips_regalloc_if.c"
+                                               >
+                                               <FileConfiguration
+                                                       Name="Release|Win32"
+                                                       >
+                                                       <Tool
+                                                               Name="VCCLCompilerTool"
+                                                               AdditionalIncludeDirectories=""
+                                                               PreprocessorDefinitions=""
+                                                       />
+                                               </FileConfiguration>
+                                               <FileConfiguration
+                                                       Name="Debug|Win32"
+                                                       >
+                                                       <Tool
+                                                               Name="VCCLCompilerTool"
+                                                               AdditionalIncludeDirectories=""
+                                                               PreprocessorDefinitions=""
+                                                       />
+                                               </FileConfiguration>
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\mips\gen_mips_regalloc_if.h"
+                                               >
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\mips\gen_mips_regalloc_if_t.h"
+                                               >
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\mips\mips_emitter.c"
+                                               >
+                                               <FileConfiguration
+                                                       Name="Release|Win32"
+                                                       >
+                                                       <Tool
+                                                               Name="VCCLCompilerTool"
+                                                               AdditionalIncludeDirectories=""
+                                                               PreprocessorDefinitions=""
+                                                       />
+                                               </FileConfiguration>
+                                               <FileConfiguration
+                                                       Name="Debug|Win32"
+                                                       >
+                                                       <Tool
+                                                               Name="VCCLCompilerTool"
+                                                               AdditionalIncludeDirectories=""
+                                                               PreprocessorDefinitions=""
+                                                       />
+                                               </FileConfiguration>
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\mips\mips_emitter.h"
+                                               >
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\mips\mips_gen_decls.c"
+                                               >
+                                               <FileConfiguration
+                                                       Name="Release|Win32"
+                                                       >
+                                                       <Tool
+                                                               Name="VCCLCompilerTool"
+                                                               AdditionalIncludeDirectories=""
+                                                               PreprocessorDefinitions=""
+                                                       />
+                                               </FileConfiguration>
+                                               <FileConfiguration
+                                                       Name="Debug|Win32"
+                                                       >
+                                                       <Tool
+                                                               Name="VCCLCompilerTool"
+                                                               AdditionalIncludeDirectories=""
+                                                               PreprocessorDefinitions=""
+                                                       />
+                                               </FileConfiguration>
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\mips\mips_gen_decls.h"
+                                               >
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\mips\mips_map_regs.c"
+                                               >
+                                               <FileConfiguration
+                                                       Name="Release|Win32"
+                                                       >
+                                                       <Tool
+                                                               Name="VCCLCompilerTool"
+                                                               AdditionalIncludeDirectories=""
+                                                               PreprocessorDefinitions=""
+                                                       />
+                                               </FileConfiguration>
+                                               <FileConfiguration
+                                                       Name="Debug|Win32"
+                                                       >
+                                                       <Tool
+                                                               Name="VCCLCompilerTool"
+                                                               AdditionalIncludeDirectories=""
+                                                               PreprocessorDefinitions=""
+                                                       />
+                                               </FileConfiguration>
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\mips\mips_map_regs.h"
+                                               >
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\mips\mips_new_nodes.c"
+                                               >
+                                               <FileConfiguration
+                                                       Name="Release|Win32"
+                                                       >
+                                                       <Tool
+                                                               Name="VCCLCompilerTool"
+                                                               AdditionalIncludeDirectories=""
+                                                               PreprocessorDefinitions=""
+                                                       />
+                                               </FileConfiguration>
+                                               <FileConfiguration
+                                                       Name="Debug|Win32"
+                                                       >
+                                                       <Tool
+                                                               Name="VCCLCompilerTool"
+                                                               AdditionalIncludeDirectories=""
+                                                               PreprocessorDefinitions=""
+                                                       />
+                                               </FileConfiguration>
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\mips\mips_new_nodes.h"
+                                               >
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\mips\mips_nodes_attr.h"
+                                               >
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\mips\mips_scheduler.c"
+                                               >
+                                               <FileConfiguration
+                                                       Name="Release|Win32"
+                                                       >
+                                                       <Tool
+                                                               Name="VCCLCompilerTool"
+                                                               AdditionalIncludeDirectories=""
+                                                               PreprocessorDefinitions=""
+                                                       />
+                                               </FileConfiguration>
+                                               <FileConfiguration
+                                                       Name="Debug|Win32"
+                                                       >
+                                                       <Tool
+                                                               Name="VCCLCompilerTool"
+                                                               AdditionalIncludeDirectories=""
+                                                               PreprocessorDefinitions=""
+                                                       />
+                                               </FileConfiguration>
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\mips\mips_scheduler.h"
+                                               >
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\mips\mips_spec.pl"
+                                               >
+                                               <FileConfiguration
+                                                       Name="Release|Win32"
+                                                       >
+                                                       <Tool
+                                                               Name="VCCustomBuildTool"
+                                                               Description="Translate Spec: $(InputPath)"
+                                                               CommandLine="..\ir\be\scripts\generate_emitter.pl $(InputPath) ..\ir\be\mips&#x0D;&#x0A;..\ir\be\scripts\generate_new_opcodes.pl $(InputPath) ..\ir\be\mips&#x0D;&#x0A;..\ir\be\scripts\generate_regalloc_if.pl $(InputPath) ..\ir\be\mips&#x0D;&#x0A;"
+                                                               AdditionalDependencies="..\ir\be\scripts\generate_emitter.pl;..\ir\be\scripts\generate_new_opcodes.pl;..\ir\be\scripts\generate_regalloc_if.pl;"
+                                                               Outputs="..\ir\be\mips\gen_mips_emitter.c;..\ir\be\mips\gen_mips_emitter.h;..\ir\be\mips\gen_mips_new_nodes.c.inl;..\ir\be\mips\gen_mips_new_nodes.h;..\ir\be\mips\gen_mips_regalloc_if.c;..\ir\be\mips\gen_mips_regalloc_if.h;..\ir\be\mips\gen_mips_regalloc_if_t.h"
+                                                       />
+                                               </FileConfiguration>
+                                               <FileConfiguration
+                                                       Name="Debug|Win32"
+                                                       >
+                                                       <Tool
+                                                               Name="VCCustomBuildTool"
+                                                               Description="Translate Spec: $(InputPath)"
+                                                               CommandLine="..\ir\be\scripts\generate_emitter.pl $(InputPath) ..\ir\be\mips&#x0D;&#x0A;..\ir\be\scripts\generate_new_opcodes.pl $(InputPath) ..\ir\be\mips&#x0D;&#x0A;..\ir\be\scripts\generate_regalloc_if.pl $(InputPath) ..\ir\be\mips&#x0D;&#x0A;"
+                                                               AdditionalDependencies="..\ir\be\scripts\generate_emitter.pl;..\ir\be\scripts\generate_new_opcodes.pl;..\ir\be\scripts\generate_regalloc_if.pl;"
+                                                               Outputs="..\ir\be\mips\gen_mips_emitter.c;..\ir\be\mips\gen_mips_emitter.h;..\ir\be\mips\gen_mips_new_nodes.c.inl;..\ir\be\mips\gen_mips_new_nodes.h;..\ir\be\mips\gen_mips_regalloc_if.c;..\ir\be\mips\gen_mips_regalloc_if.h;..\ir\be\mips\gen_mips_regalloc_if_t.h"
+                                                       />
+                                               </FileConfiguration>
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\mips\mips_transform.c"
+                                               >
+                                               <FileConfiguration
+                                                       Name="Release|Win32"
+                                                       >
+                                                       <Tool
+                                                               Name="VCCLCompilerTool"
+                                                               AdditionalIncludeDirectories=""
+                                                               PreprocessorDefinitions=""
+                                                       />
+                                               </FileConfiguration>
+                                               <FileConfiguration
+                                                       Name="Debug|Win32"
+                                                       >
+                                                       <Tool
+                                                               Name="VCCLCompilerTool"
+                                                               AdditionalIncludeDirectories=""
+                                                               PreprocessorDefinitions=""
+                                                       />
+                                               </FileConfiguration>
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\mips\mips_transform.h"
+                                               >
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\mips\mips_util.h"
+                                               >
+                                       </File>
+                               </Filter>
+                               <Filter
+                                       Name="firmBE"
+                                       >
+                                       <File
+                                               RelativePath="..\ir\be\firm\bearch_firm.c"
+                                               >
+                                               <FileConfiguration
+                                                       Name="Release|Win32"
+                                                       >
+                                                       <Tool
+                                                               Name="VCCLCompilerTool"
+                                                               AdditionalIncludeDirectories=""
+                                                               PreprocessorDefinitions=""
+                                                       />
+                                               </FileConfiguration>
+                                               <FileConfiguration
+                                                       Name="Debug|Win32"
+                                                       >
+                                                       <Tool
+                                                               Name="VCCLCompilerTool"
+                                                               AdditionalIncludeDirectories=""
+                                                               PreprocessorDefinitions=""
+                                                       />
+                                               </FileConfiguration>
+                                       </File>
+                                       <File
+                                               RelativePath="..\ir\be\firm\bearch_firm.h"
+                                               >
+                                       </File>
+                               </Filter>
+                       </Filter>
+                       <Filter
+                               Name="common"
+                               >
+                               <File
+                                       RelativePath="..\ir\common\debug.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\common\debug.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\common\error.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\common\error.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\common\firm.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\common\firm.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\common\firm_common.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\common\firm_common.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\common\firm_common_t.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\common\firm_types.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\common\firmwalk.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\common\firmwalk.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\common\irtools.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\common\irtools.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\common\Makefile.in"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\common\statistics.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\common\statistics.h"
+                                       >
+                               </File>
+                       </Filter>
+                       <Filter
+                               Name="debug"
+                               >
+                               <File
+                                       RelativePath="..\ir\debug\dbginfo.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\debug\dbginfo.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\debug\dbginfo_t.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\debug\debugger.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\debug\debugger.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\debug\Makefile.in"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\debug\seqnumbers.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\debug\seqnumbers.h"
+                                       >
+                               </File>
+                       </Filter>
+                       <Filter
+                               Name="external"
+                               >
+                               <File
+                                       RelativePath="..\ir\external\Makefile.in"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\external\read.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               ExcludedFromBuild="true"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               ExcludedFromBuild="true"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\external\read.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\external\read_t.h"
+                                       >
+                               </File>
+                       </Filter>
+                       <Filter
+                               Name="ident"
+                               >
+                               <File
+                                       RelativePath="..\ir\ident\ident.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ident\ident.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ident\ident_t.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ident\Makefile.in"
+                                       >
+                               </File>
+                       </Filter>
+                       <Filter
+                               Name="ir"
+                               >
+                               <File
+                                       RelativePath="..\ir\ir\irarch.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ir\irarch.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ir\irargs.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ir\irargs_t.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ir\ircgcons.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ir\ircgcons.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ir\ircgopt.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ir\ircgopt.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ir\ircons.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ir\ircons.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ir\ircons_t.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ir\irdump.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ir\irdump.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ir\irdump_t.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ir\irdumptxt.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ir\iredges.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ir\iredges.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ir\iredges_t.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ir\irflag.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ir\irflag.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ir\irflag_t.def"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               ExcludedFromBuild="true"
+                                               >
+                                               <Tool
+                                                       Name="VCCustomBuildTool"
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               ExcludedFromBuild="true"
+                                               >
+                                               <Tool
+                                                       Name="VCCustomBuildTool"
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ir\irflag_t.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ir\irgmod.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ir\irgmod.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ir\irgopt.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ir\irgopt.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ir\irgopt_t.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ir\irgraph.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ir\irgraph.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ir\irgraph_t.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ir\irgwalk.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ir\irgwalk.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ir\irgwalk_blk.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ir\irhooks.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ir\irhooks.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ir\irmode.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ir\irmode.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ir\irmode_t.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ir\irnode.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ir\irnode.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ir\irnode_t.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ir\irop.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ir\irop.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ir\irop_t.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ir\iropt.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ir\iropt.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ir\iropt_dbg.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ir\iropt_t.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ir\irphase.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ir\irphase.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ir\irphase_t.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ir\irprintf.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ir\irprintf.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ir\irprintf_t.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ir\irprog.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ir\irprog.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ir\irprog_t.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ir\irreflect.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ir\irreflect.def"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ir\irreflect.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ir\irreflect_t.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ir\irvrfy.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ir\irvrfy.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ir\irvrfy_t.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ir\Makefile.in"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ir\pseudo_irg.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\ir\pseudo_irg.h"
+                                       >
+                               </File>
+                       </Filter>
+                       <Filter
+                               Name="opt"
+                               >
+                               <File
+                                       RelativePath="..\ir\opt\cfopt.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\opt\cfopt.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\opt\data_flow_scalar_replace.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\opt\data_flow_scalar_replace.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\opt\escape_ana.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\opt\escape_ana.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\opt\funccall.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\opt\funccall.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\opt\gvn_pre.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\opt\gvn_pre.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\opt\ifconv.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\opt\ifconv.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\opt\ldstopt.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\opt\ldstopt.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\opt\loop_unrolling.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\opt\loop_unrolling.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\opt\Makefile.in"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\opt\opt_branches.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               ExcludedFromBuild="true"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\opt\opt_branches.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\opt\opt_confirms.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\opt\opt_confirms.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\opt\opt_frame.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\opt\opt_frame.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\opt\opt_polymorphy.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\opt\opt_polymorphy.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\opt\proc_cloning.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\opt\proc_cloning.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\opt\reassoc.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\opt\reassoc.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\opt\reassoc_t.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\opt\return.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\opt\return.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\opt\scalar_replace.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\opt\scalar_replace.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\opt\strength_red.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\opt\strength_red.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\opt\tailrec.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\opt\tailrec.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\opt\tropt.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\opt\tropt.h"
+                                       >
+                               </File>
+                       </Filter>
+                       <Filter
+                               Name="st"
+                               >
+                               <File
+                                       RelativePath="..\ir\st\bs.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\st\exc.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\st\exc.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\st\Makefile.in"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\st\st.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\st\st.h"
+                                       >
+                               </File>
+                       </Filter>
+                       <Filter
+                               Name="stat"
+                               >
+                               <File
+                                       RelativePath="..\ir\stat\const_stat.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\stat\counter.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\stat\dags.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\stat\dags.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\stat\distrib.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\stat\firmstat.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\stat\firmstat.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\stat\firmstat_t.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\stat\Makefile.in"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\stat\pattern.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\stat\pattern.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\stat\pattern_dmp.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\stat\pattern_dmp.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\stat\stat_dmp.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\stat\stat_dmp.h"
+                                       >
+                               </File>
+                       </Filter>
+                       <Filter
+                               Name="tr"
+                               >
+                               <File
+                                       RelativePath="..\ir\tr\entity.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\tr\entity.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\tr\entity_t.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\tr\Makefile.in"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\tr\mangle.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\tr\mangle.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\tr\tpop.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\tr\tpop.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\tr\tpop_t.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\tr\tr_inheritance.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\tr\tr_inheritance.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\tr\trvrfy.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\tr\trvrfy.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\tr\type.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\tr\type.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\tr\type_identify.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\tr\type_identify.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\tr\type_identify_t.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\tr\type_or_entity.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\tr\type_t.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\tr\typegmod.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\tr\typegmod.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\tr\typewalk.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\tr\typewalk.h"
+                                       >
+                               </File>
+                       </Filter>
+                       <Filter
+                               Name="tv"
+                               >
+                               <File
+                                       RelativePath="..\ir\tv\fltcalc.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\tv\fltcalc.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\tv\Makefile.in"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\tv\strcalc.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\tv\strcalc.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\tv\tv.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\tv\tv.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\tv\tv_t.h"
+                                       >
+                               </File>
+                       </Filter>
+                       <Filter
+                               Name="lower"
+                               >
+                               <File
+                                       RelativePath="..\ir\lower\lower_calls.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\lower\lower_calls.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\lower\lower_dw.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\lower\lower_dw.h"
+                                       >
+                               </File>
+                               <File
+                                       RelativePath="..\ir\lower\lower_intrinsics.c"
+                                       >
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       AdditionalIncludeDirectories=""
+                                                       PreprocessorDefinitions=""
+                                               />
+                                       </FileConfiguration>
+                               </File>
+                               <File
+                                       RelativePath="..\ir\lower\lower_intrinsics.h"
+                                       >
+                               </File>
+                       </Filter>
+               </Filter>
+       </Files>
+       <Globals>
+       </Globals>
+</VisualStudioProject>
diff --git a/vc2005/math.c b/vc2005/math.c
new file mode 100644 (file)
index 0000000..9179f43
--- /dev/null
@@ -0,0 +1,77 @@
+#include "ieee754.h"
+#include "config.h"
+
+static int __isnan(double d)
+{
+  union ieee754_double f;
+
+  f.d = d;
+  if (f.ieee.exponent == 0x7FF &&
+    (f.ieee.mantissa0 != 0 ||
+     f.ieee.mantissa1 != 0))
+    return 1;
+
+  return 0;
+}
+
+static int __isnanl(long double d)
+{
+  union ieee854_long_double f;
+
+  f.d = d;
+  if (f.ieee_nan.exponent == 0x7FFF &&
+    (f.ieee_nan.quiet_nan ||
+    f.ieee_nan.mantissa1 ||
+    f.ieee_nan.mantissa0))
+    return 1;
+  return 0;
+}
+
+static int __isinf(double d)
+{
+  union ieee754_double f;
+
+  f.d = d;
+  if (f.ieee.exponent == 0x7FF &&
+    f.ieee.mantissa0 == 0 &&
+    f.ieee.mantissa1 == 0)
+    return 1;
+
+  return 0;
+}
+
+static int __isinfl(long double d)
+{
+  union ieee854_long_double f;
+
+  f.d = d;
+  if (f.ieee.exponent == 0x7FFF &&
+      f.ieee_nan.mantissa1 == 0x80000000 &&
+      f.ieee_nan.mantissa0 == 0)
+    return 1;
+
+  return 0;
+}
+
+#ifdef HAVE_LONG_DOUBLE
+int isnan(long double d)
+{
+  return __isnanl(d);
+}
+
+int isinf(long double d)
+{
+  return __isinfl(d);
+}
+
+#else
+int isnan(double d)
+{
+  return __isnan(d);
+}
+
+int isinf(double d)
+{
+  return __isinf(d);
+}
+#endif /* HAVE_LONG_DOUBLE */
diff --git a/vc2005/stdbool.h b/vc2005/stdbool.h
new file mode 100644 (file)
index 0000000..c009a54
--- /dev/null
@@ -0,0 +1,16 @@
+/*
+ * ISO C Standard:  7.16  Boolean type and values  <stdbool.h>
+ */
+
+#ifndef _STDBOOL_H
+#define _STDBOOL_H
+
+#ifndef __cplusplus
+
+#define bool   int
+#define true   1
+#define false  0
+
+#endif /* __cplusplus */
+
+#endif /* stdbool.h */