Chris@16: /* Chris@101: Copyright Rene Rivera 2008-2013 Chris@16: Distributed under the Boost Software License, Version 1.0. Chris@16: (See accompanying file LICENSE_1_0.txt or copy at Chris@16: http://www.boost.org/LICENSE_1_0.txt) Chris@16: */ Chris@16: Chris@16: #ifndef BOOST_PREDEF_ARCHITECTURE_MIPS_H Chris@16: #define BOOST_PREDEF_ARCHITECTURE_MIPS_H Chris@16: Chris@16: #include Chris@16: #include Chris@16: Chris@16: /*` Chris@16: [heading `BOOST_ARCH_MIPS`] Chris@16: Chris@16: [@http://en.wikipedia.org/wiki/MIPS_architecture MIPS] architecture. Chris@16: Chris@16: [table Chris@16: [[__predef_symbol__] [__predef_version__]] Chris@16: Chris@16: [[`__mips__`] [__predef_detection__]] Chris@16: [[`__mips`] [__predef_detection__]] Chris@16: [[`__MIPS__`] [__predef_detection__]] Chris@16: Chris@16: [[`__mips`] [V.0.0]] Chris@16: [[`_MIPS_ISA_MIPS1`] [1.0.0]] Chris@16: [[`_R3000`] [1.0.0]] Chris@16: [[`_MIPS_ISA_MIPS2`] [2.0.0]] Chris@16: [[`__MIPS_ISA2__`] [2.0.0]] Chris@16: [[`_R4000`] [2.0.0]] Chris@16: [[`_MIPS_ISA_MIPS3`] [3.0.0]] Chris@16: [[`__MIPS_ISA3__`] [3.0.0]] Chris@16: [[`_MIPS_ISA_MIPS4`] [4.0.0]] Chris@16: [[`__MIPS_ISA4__`] [4.0.0]] Chris@16: ] Chris@16: */ Chris@16: Chris@16: #define BOOST_ARCH_MIPS BOOST_VERSION_NUMBER_NOT_AVAILABLE Chris@16: Chris@16: #if defined(__mips__) || defined(__mips) || \ Chris@16: defined(__MIPS__) Chris@16: # undef BOOST_ARCH_MIPS Chris@16: # if !defined(BOOST_ARCH_MIPS) && (defined(__mips)) Chris@16: # define BOOST_ARCH_MIPS BOOST_VERSION_NUMBER(__mips,0,0) Chris@16: # endif Chris@16: # if !defined(BOOST_ARCH_MIPS) && (defined(_MIPS_ISA_MIPS1) || defined(_R3000)) Chris@16: # define BOOST_ARCH_MIPS BOOST_VERSION_NUMBER(1,0,0) Chris@16: # endif Chris@16: # if !defined(BOOST_ARCH_MIPS) && (defined(_MIPS_ISA_MIPS2) || defined(__MIPS_ISA2__) || defined(_R4000)) Chris@16: # define BOOST_ARCH_MIPS BOOST_VERSION_NUMBER(2,0,0) Chris@16: # endif Chris@16: # if !defined(BOOST_ARCH_MIPS) && (defined(_MIPS_ISA_MIPS3) || defined(__MIPS_ISA3__)) Chris@16: # define BOOST_ARCH_MIPS BOOST_VERSION_NUMBER(3,0,0) Chris@16: # endif Chris@16: # if !defined(BOOST_ARCH_MIPS) && (defined(_MIPS_ISA_MIPS4) || defined(__MIPS_ISA4__)) Chris@16: # define BOOST_ARCH_MIPS BOOST_VERSION_NUMBER(4,0,0) Chris@16: # endif Chris@16: # if !defined(BOOST_ARCH_MIPS) Chris@16: # define BOOST_ARCH_MIPS BOOST_VERSION_NUMBER_AVAILABLE Chris@16: # endif Chris@16: #endif Chris@16: Chris@16: #if BOOST_ARCH_MIPS Chris@16: # define BOOST_ARCH_MIPS_AVAILABLE Chris@16: #endif Chris@16: Chris@16: #define BOOST_ARCH_MIPS_NAME "MIPS" Chris@16: Chris@16: #include Chris@16: BOOST_PREDEF_DECLARE_TEST(BOOST_ARCH_MIPS,BOOST_ARCH_MIPS_NAME) Chris@16: Chris@16: Chris@16: #endif