2010-02-03 Quentin Neill <quentin.neill@amd.com>
authorSebastian Pop <sebastian.pop@amd.com>
Wed, 3 Feb 2010 20:36:14 +0000 (20:36 +0000)
committerSebastian Pop <sebastian.pop@amd.com>
Wed, 3 Feb 2010 20:36:14 +0000 (20:36 +0000)
gas/
* config/tc-i386.c (cpu_arch): Change amdfam15 to bdver1.
(i386_align_code): Rename  PROCESSOR_AMDFAM15 to PROCESSOR_BDVER1.
* config/tc-i386.h (processor_type): Same.
* doc/c-i386.texi: Change amdfam15 to bdver1.

opcodes/
* i386-gen.c (cpu_flag_init): Rename CPU_AMDFAM15_FLAGS
to CPU_BDVER1_FLAGS
* i386-init.h: Regenerated.

testsuite/
* gas/i386/i386.exp: Rename amdfam15 test cases to bdver1.
* gas/i386/x86-64-nops-1-amdfam15.d: Renamed test case to
gas/i386/x86-64-nops-1-bdver1.d.
* gas/i386/nops-1-amdfam15.d: Renamed test case to
gas/i386/nops-1-bdver1.d.

gas/ChangeLog
gas/config/tc-i386.c
gas/config/tc-i386.h
gas/doc/c-i386.texi
gas/testsuite/ChangeLog
gas/testsuite/gas/i386/i386.exp
gas/testsuite/gas/i386/nops-1-bdver1.d [moved from gas/testsuite/gas/i386/nops-1-amdfam15.d with 99% similarity]
gas/testsuite/gas/i386/x86-64-nops-1-bdver1.d [moved from gas/testsuite/gas/i386/x86-64-nops-1-amdfam15.d with 99% similarity]
opcodes/ChangeLog
opcodes/i386-gen.c
opcodes/i386-init.h

index 358f470..c76e53e 100644 (file)
@@ -1,3 +1,10 @@
+2010-02-03  Quentin Neill  <quentin.neill@amd.com>
+
+       * config/tc-i386.c (cpu_arch): Change amdfam15 to bdver1.
+       (i386_align_code): Rename  PROCESSOR_AMDFAM15 to PROCESSOR_BDVER1.
+       * config/tc-i386.h (processor_type): Same.
+       * doc/c-i386.texi: Change amdfam15 to bdver1.
+
 2010-01-29  Nick Clifton  <nickc@redhat.com>
 
        PR 11136
index 4a71209..f091aa2 100644 (file)
@@ -603,8 +603,8 @@ static const arch_entry cpu_arch[] =
     CPU_K8_FLAGS, 0 },
   { STRING_COMMA_LEN ("amdfam10"), PROCESSOR_AMDFAM10,
     CPU_AMDFAM10_FLAGS, 0 },
-  { STRING_COMMA_LEN ("amdfam15"), PROCESSOR_AMDFAM15,
-    CPU_AMDFAM15_FLAGS, 0 },
+  { STRING_COMMA_LEN ("bdver1"), PROCESSOR_BDVER1,
+    CPU_BDVER1_FLAGS, 0 },
   { STRING_COMMA_LEN (".8087"), PROCESSOR_UNKNOWN,
     CPU_8087_FLAGS, 0 },
   { STRING_COMMA_LEN (".287"), PROCESSOR_UNKNOWN,
@@ -966,7 +966,7 @@ i386_align_code (fragS *fragP, int count)
      PROCESSOR_CORE, PROCESSOR_CORE2, PROCESSOR_COREI7, and
      PROCESSOR_GENERIC64, alt_long_patt will be used.
      3. For PROCESSOR_ATHLON, PROCESSOR_K6, PROCESSOR_K8 and
-     PROCESSOR_AMDFAM10, and PROCESSOR_AMDFAM15, alt_short_patt
+     PROCESSOR_AMDFAM10, and PROCESSOR_BDVER1, alt_short_patt
      will be used.
 
      When -mtune= isn't used, alt_long_patt will be used if
@@ -1020,7 +1020,7 @@ i386_align_code (fragS *fragP, int count)
            case PROCESSOR_ATHLON:
            case PROCESSOR_K8:
            case PROCESSOR_AMDFAM10:
-           case PROCESSOR_AMDFAM15:
+           case PROCESSOR_BDVER1:
              patt = alt_short_patt;
              break;
            case PROCESSOR_I386:
@@ -1048,7 +1048,7 @@ i386_align_code (fragS *fragP, int count)
            case PROCESSOR_ATHLON:
            case PROCESSOR_K8:
            case PROCESSOR_AMDFAM10:
-           case PROCESSOR_AMDFAM15:
+           case PROCESSOR_BDVER1:
            case PROCESSOR_GENERIC32:
              /* We use cpu_arch_isa_flags to check if we CAN optimize
                 for Cpu686.  */
index 5e12272..f2f02cc 100644 (file)
@@ -221,7 +221,7 @@ enum processor_type
   PROCESSOR_GENERIC32,
   PROCESSOR_GENERIC64,
   PROCESSOR_AMDFAM10,
-  PROCESSOR_AMDFAM15
+  PROCESSOR_BDVER1
 };
 
 extern enum processor_type cpu_arch_tune;
index e657ab3..1f414f6 100644 (file)
@@ -109,7 +109,7 @@ processor names are recognized:
 @code{opteron},
 @code{k8},
 @code{amdfam10},
-@code{amdfam15},
+@code{bdver1},
 @code{generic32} and
 @code{generic64}.
 
@@ -926,7 +926,7 @@ supported on the CPU specified.  The choices for @var{cpu_type} are:
 @item @samp{prescott} @tab @samp{nocona} @tab @samp{core} @tab @samp{core2}
 @item @samp{corei7} @tab @samp{l1om}
 @item @samp{k6} @tab @samp{k6_2} @tab @samp{athlon} @tab @samp{k8}
-@item @samp{amdfam10} @tab @samp{amdfam15}
+@item @samp{amdfam10} @tab @samp{bdver1}
 @item @samp{generic32} @tab @samp{generic64}
 @item @samp{.mmx} @tab @samp{.sse} @tab @samp{.sse2} @tab @samp{.sse3}
 @item @samp{.ssse3} @tab @samp{.sse4.1} @tab @samp{.sse4.2} @tab @samp{.sse4}
index b525810..080ca73 100644 (file)
@@ -1,3 +1,11 @@
+2010-02-03  Quentin Neill  <quentin.neill@amd.com>
+
+       * gas/i386/i386.exp: Rename amdfam15 test cases to bdver1.
+       * gas/i386/x86-64-nops-1-amdfam15.d: Renamed test case to
+       gas/i386/x86-64-nops-1-bdver1.d.
+       * gas/i386/nops-1-amdfam15.d: Renamed test case to
+       gas/i386/nops-1-bdver1.d.
+
 2010-01-29  Daniel Jacobowitz  <dan@codesourcery.com>
 
        * gas/arm/dis-data.d: Update test name.  Do not expect
index 994cf6e..dc0be49 100644 (file)
@@ -77,7 +77,7 @@ if [expr ([istarget "i*86-*-*"] ||  [istarget "x86_64-*-*"]) && [gas_32_check]]
     run_dump_test "nops-1-i686"
     run_dump_test "nops-1-k8"
     run_dump_test "nops-1-core2"
-    run_dump_test "nops-1-amdfam15"
+    run_dump_test "nops-1-bdver1"
     run_dump_test "nops-2"
     run_dump_test "nops-2-i386"
     run_dump_test "nops-2-core2"
@@ -279,7 +279,7 @@ if [expr ([istarget "i*86-*-*"] || [istarget "x86_64-*-*"]) && [gas_64_check]] t
     run_dump_test "x86-64-nops-1-nocona"
     run_dump_test "x86-64-nops-1-core2"
     run_dump_test "x86-64-nops-1-pentium"
-    run_dump_test "x86-64-nops-1-amdfam15"
+    run_dump_test "x86-64-nops-1-bdver1"
     run_dump_test "x86-64-nops-2"
     run_dump_test "x86-64-nops-3"
     run_dump_test "x86-64-nops-4"
similarity index 99%
rename from gas/testsuite/gas/i386/nops-1-amdfam15.d
rename to gas/testsuite/gas/i386/nops-1-bdver1.d
index c19774e..32c9cef 100644 (file)
@@ -1,7 +1,7 @@
-#as: -mtune=amdfam15
+#as: -mtune=bdver1
 #source: nops-1.s
 #objdump: -drw
-#name: i386 -mtune=amdfam15 nops 1
+#name: i386 -mtune=bdver1 nops 1
 
 .*: +file format .*
 
@@ -1,7 +1,7 @@
-#as: -mtune=amdfam15
+#as: -mtune=bdver1
 #source: nops-1.s
 #objdump: -drw
-#name: x86-64 -mtune=amdfam15 nops 1
+#name: x86-64 -mtune=bdver1 nops 1
 
 .*: +file format .*
 
index d20b776..5171493 100644 (file)
@@ -1,3 +1,9 @@
+2010-02-03  Quentin Neill  <quentin.neill@amd.com>
+
+       * i386-gen.c (cpu_flag_init): Rename CPU_AMDFAM15_FLAGS
+       to CPU_BDVER1_FLAGS
+       * i386-init.h: Regenerated.
+
 2010-02-03  Anthony Green  <green@moxielogic.com>
 
        * moxie-opc.c (moxie_form1_opc_info): Move "nop" from 0x00 to
index 0a99a2f..08ade93 100644 (file)
@@ -86,7 +86,7 @@ static initializer cpu_flag_init[] =
     "Cpu186|Cpu286|Cpu386|Cpu486|Cpu586|Cpu686|CpuSYSCALL|CpuRdtscp|Cpu387|Cpu687|CpuMMX|Cpu3dnow|Cpu3dnowA|CpuSSE|CpuSSE2|CpuLM" },
   { "CPU_AMDFAM10_FLAGS",
     "Cpu186|Cpu286|Cpu386|Cpu486|Cpu586|Cpu686|CpuSYSCALL|CpuRdtscp|Cpu387|Cpu687|CpuFISTTP|CpuMMX|Cpu3dnow|Cpu3dnowA|CpuSSE|CpuSSE2|CpuSSE3|CpuSSE4a|CpuABM|CpuLM" },
-  { "CPU_AMDFAM15_FLAGS",
+  { "CPU_BDVER1_FLAGS",
     "Cpu186|Cpu286|Cpu386|Cpu486|Cpu586|Cpu686|CpuSYSCALL|CpuRdtscp|Cpu387|Cpu687|CpuFISTTP|CpuMMX|Cpu3dnow|Cpu3dnowA|CpuSSE|CpuSSE2|CpuSSE3|CpuSSE4a|CpuABM|CpuLM|CpuFMA4|CpuXOP|CpuLWP" },
   { "CPU_8087_FLAGS",
     "Cpu8087" },
index cfe65b0..cc1ed4f 100644 (file)
       0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1,  \
       1, 0, 0, 0 } }
 
-#define CPU_AMDFAM15_FLAGS \
+#define CPU_BDVER1_FLAGS \
   { { 1, 1, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0,  \
       0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 1,  \
       1, 0, 0, 0 } }