diff options
author | Edmar Wienskoski <edmar@freescale.com> | 2008-02-26 19:14:00 +0000 |
---|---|---|
committer | David Edelsohn <dje@gcc.gnu.org> | 2008-02-26 14:14:00 -0500 |
commit | a19b7d465087d3105de11c32ed67fcae81bedfe7 (patch) | |
tree | 7faaab03939d9980834bf88b2945722093bf357b /gcc | |
parent | fdf4f083c8f3dcdbdb012144cb987bd67b6a94ee (diff) | |
download | gcc-a19b7d465087d3105de11c32ed67fcae81bedfe7.zip gcc-a19b7d465087d3105de11c32ed67fcae81bedfe7.tar.gz gcc-a19b7d465087d3105de11c32ed67fcae81bedfe7.tar.bz2 |
rs6000.c (processor_costs): Update e300 cache line sizes.
2008-02-26 Edmar Wienskoski <edmar@freescale.com>
* config/rs6000/rs6000.c (processor_costs): Update e300 cache
line sizes.
* doc/invoke.texi: Add e300c2 and e300c3 to list of cpus.
From-SVN: r132683
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/config/rs6000/rs6000.c | 4 | ||||
-rw-r--r-- | gcc/doc/invoke.texi | 11 |
3 files changed, 14 insertions, 7 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 02f55c9..2a6f203 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2008-02-26 Edmar Wienskoski <edmar@freescale.com> + + * config/rs6000/rs6000.c (processor_costs): Update e300 cache + line sizes. + * doc/invoke.texi: Add e300c2 and e300c3 to list of cpus. + 2008-02-26 Jason Merrill <jason@redhat.com> PR c++/35315 diff --git a/gcc/config/rs6000/rs6000.c b/gcc/config/rs6000/rs6000.c index 9b9fefd..8ec976f 100644 --- a/gcc/config/rs6000/rs6000.c +++ b/gcc/config/rs6000/rs6000.c @@ -683,8 +683,8 @@ struct processor_costs ppce300c2c3_cost = { COSTS_N_INSNS (18), /* sdiv */ COSTS_N_INSNS (33), /* ddiv */ 32, - 32, /* l1 cache */ - 256, /* l2 cache */ + 16, /* l1 cache */ + 16, /* l2 cache */ 1, /* prefetch streams /*/ }; diff --git a/gcc/doc/invoke.texi b/gcc/doc/invoke.texi index 7e444c0..d30c0cf 100644 --- a/gcc/doc/invoke.texi +++ b/gcc/doc/invoke.texi @@ -12925,11 +12925,12 @@ Supported values for @var{cpu_type} are @samp{401}, @samp{403}, @samp{601}, @samp{602}, @samp{603}, @samp{603e}, @samp{604}, @samp{604e}, @samp{620}, @samp{630}, @samp{740}, @samp{7400}, @samp{7450}, @samp{750}, @samp{801}, @samp{821}, @samp{823}, -@samp{860}, @samp{970}, @samp{8540}, @samp{ec603e}, @samp{G3}, -@samp{G4}, @samp{G5}, @samp{power}, @samp{power2}, @samp{power3}, -@samp{power4}, @samp{power5}, @samp{power5+}, @samp{power6}, -@samp{power6x}, @samp{common}, @samp{powerpc}, @samp{powerpc64}, -@samp{rios}, @samp{rios1}, @samp{rios2}, @samp{rsc}, and @samp{rs64}. +@samp{860}, @samp{970}, @samp{8540}, @samp{e300c2}, @samp{e300c3}, +@samp{ec603e}, @samp{G3}, @samp{G4}, @samp{G5}, @samp{power}, +@samp{power2}, @samp{power3}, @samp{power4}, @samp{power5}, +@samp{power5+}, @samp{power6}, @samp{power6x}, @samp{common}, +@samp{powerpc}, @samp{powerpc64}, @samp{rios}, @samp{rios1}, +@samp{rios2}, @samp{rsc}, and @samp{rs64}. @option{-mcpu=common} selects a completely generic processor. Code generated under this option will run on any POWER or PowerPC processor. |