blob: ea6d2cd20c1347a4539d87e8efd951c28fb8269a [file] [log] [blame]
cerion85665ca2005-06-20 15:51:07 +00001
2/*--------------------------------------------------------------------*/
njn9a0cba42007-04-15 22:15:57 +00003/*--- PPC32-specific definitions. cg-ppc32.c ---*/
cerion85665ca2005-06-20 15:51:07 +00004/*--------------------------------------------------------------------*/
5
6/*
7 This file is part of Cachegrind, a Valgrind tool for cache
8 profiling programs.
9
sewardj9eecbbb2010-05-03 21:37:12 +000010 Copyright (C) 2005-2010 Nicholas Nethercote
njnbd774032005-08-04 19:26:54 +000011 njn@valgrind.org
cerion85665ca2005-06-20 15:51:07 +000012
13 This program is free software; you can redistribute it and/or
14 modify it under the terms of the GNU General Public License as
15 published by the Free Software Foundation; either version 2 of the
16 License, or (at your option) any later version.
17
18 This program is distributed in the hope that it will be useful, but
19 WITHOUT ANY WARRANTY; without even the implied warranty of
20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
21 General Public License for more details.
22
23 You should have received a copy of the GNU General Public License
24 along with this program; if not, write to the Free Software
25 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
26 02111-1307, USA.
27
28 The GNU General Public License is contained in the file COPYING.
29*/
30
njn8b68b642009-06-24 00:37:09 +000031#if defined(VGA_ppc32)
32
cerion85665ca2005-06-20 15:51:07 +000033#include "pub_tool_basics.h"
34#include "pub_tool_libcbase.h"
35#include "pub_tool_libcassert.h"
36#include "pub_tool_libcprint.h"
37
38#include "cg_arch.h"
39
njn2d853a12010-10-06 22:46:31 +000040void VG_(configure_caches)(cache_t* I1c, cache_t* D1c, cache_t* LLc,
njnaf839f52005-06-23 03:27:57 +000041 Bool all_caches_clo_defined)
cerion85665ca2005-06-20 15:51:07 +000042{
sewardj97ad9ab2005-07-08 09:45:43 +000043 // Set caches to default.
44 *I1c = (cache_t) { 65536, 2, 64 };
45 *D1c = (cache_t) { 65536, 2, 64 };
njn2d853a12010-10-06 22:46:31 +000046 *LLc = (cache_t) { 262144, 8, 64 };
cerion85665ca2005-06-20 15:51:07 +000047
njn55c6e552005-11-17 19:32:59 +000048 // Warn if config not completely specified from cmd line. Note that
49 // this message is slightly different from the one we give on x86/AMD64
50 // when auto-detection fails; this lets us filter out this one (which is
51 // not important) in the regression test suite without filtering the
52 // x86/AMD64 one (which we want to see if it ever occurs in the
53 // regression test suite).
njn42c83552005-12-05 20:45:59 +000054 //
55 // If you change this message, please update
56 // cachegrind/tests/filter_stderr!
57 //
njn59cd1072005-11-12 21:57:09 +000058 if (!all_caches_clo_defined) {
sewardjb2c985b2009-07-15 14:51:17 +000059 VG_(dmsg)("Warning: Cannot auto-detect cache config on PPC32, using one "
sewardj62622f42010-10-12 10:14:43 +000060 "or more defaults\n");
sewardj97ad9ab2005-07-08 09:45:43 +000061 }
cerion85665ca2005-06-20 15:51:07 +000062}
63
njn8b68b642009-06-24 00:37:09 +000064#endif // defined(VGA_ppc32)
65
cerion85665ca2005-06-20 15:51:07 +000066/*--------------------------------------------------------------------*/
67/*--- end ---*/
68/*--------------------------------------------------------------------*/