2011-07-31 18:43:46 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
// $Id$
|
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
2017-03-25 20:12:31 +00:00
|
|
|
// Copyright (c) 2011-2017 Stanislav Shwartsman
|
2011-07-31 18:43:46 +00:00
|
|
|
// Written by Stanislav Shwartsman [sshwarts at sourceforge net]
|
|
|
|
//
|
|
|
|
// This 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 of the License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This 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 this library; if not, write to the Free Software
|
|
|
|
// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA B 02110-1301 USA
|
|
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
bx_define_cpudb(bx_generic)
|
2013-04-17 19:46:11 +00:00
|
|
|
#if BX_CPU_LEVEL >= 5
|
2015-02-11 21:31:17 +00:00
|
|
|
bx_define_cpudb(pentium)
|
2011-08-16 19:04:36 +00:00
|
|
|
bx_define_cpudb(pentium_mmx)
|
2011-08-30 22:00:27 +00:00
|
|
|
bx_define_cpudb(amd_k6_2_chomper)
|
2013-04-17 19:46:11 +00:00
|
|
|
#if BX_CPU_LEVEL >= 6
|
2011-08-11 18:06:09 +00:00
|
|
|
bx_define_cpudb(p2_klamath)
|
2011-07-31 18:43:46 +00:00
|
|
|
bx_define_cpudb(p3_katmai)
|
|
|
|
bx_define_cpudb(p4_willamette)
|
2011-08-16 19:58:56 +00:00
|
|
|
bx_define_cpudb(core_duo_t2400_yonah)
|
2011-08-03 17:49:49 +00:00
|
|
|
bx_define_cpudb(atom_n270)
|
2011-09-25 17:36:20 +00:00
|
|
|
#if BX_SUPPORT_X86_64
|
2011-07-31 18:43:46 +00:00
|
|
|
bx_define_cpudb(p4_prescott_celeron_336)
|
|
|
|
bx_define_cpudb(athlon64_clawhammer)
|
2011-12-29 14:23:22 +00:00
|
|
|
bx_define_cpudb(athlon64_venice)
|
|
|
|
bx_define_cpudb(turion64_tyler)
|
2012-02-13 23:29:01 +00:00
|
|
|
bx_define_cpudb(phenom_8650_toliman)
|
2011-08-08 18:20:29 +00:00
|
|
|
bx_define_cpudb(core2_penryn_t9600)
|
2012-01-02 20:59:02 +00:00
|
|
|
bx_define_cpudb(corei5_lynnfield_750)
|
2011-10-07 19:32:44 +00:00
|
|
|
bx_define_cpudb(corei5_arrandale_m520)
|
2014-06-06 18:29:28 +00:00
|
|
|
bx_define_cpudb(corei7_sandy_bridge_2600k)
|
2011-07-31 18:43:46 +00:00
|
|
|
#if BX_SUPPORT_AVX
|
2013-01-07 19:33:04 +00:00
|
|
|
bx_define_cpudb(zambezi)
|
2014-03-15 18:30:13 +00:00
|
|
|
bx_define_cpudb(trinity_apu)
|
2017-03-13 19:44:14 +00:00
|
|
|
bx_define_cpudb(ryzen)
|
2012-05-07 12:31:22 +00:00
|
|
|
bx_define_cpudb(corei7_ivy_bridge_3770k)
|
2013-06-20 20:12:53 +00:00
|
|
|
bx_define_cpudb(corei7_haswell_4770)
|
2015-02-12 21:28:24 +00:00
|
|
|
bx_define_cpudb(broadwell_ult)
|
2017-08-09 20:36:17 +00:00
|
|
|
bx_define_cpudb(corei7_skylake_x)
|
|
|
|
#endif
|
2011-07-31 18:43:46 +00:00
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#endif
|