2013-10-01 Joern Rennecke <joern.rennecke@embecosm.com>
[official-gcc.git] / libgcc / config / arc / gmon / dcache_linesz.S
blob116a6f0b08677b4a237d266c222c00d2b35396ff
1 /* This file contains code to do profiling.
3    Copyright (C) 2007-2012 Free Software Foundation, Inc.
4    Contributor: Joern Rennecke <joern.rennecke@embecosm.com>
5                 on behalf of Synopsys Inc.
7 This file is part of GCC.
9 GCC is free software; you can redistribute it and/or modify it under
10 the terms of the GNU General Public License as published by the Free
11 Software Foundation; either version 3, or (at your option) any later
12 version.
14 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
15 WARRANTY; without even the implied warranty of MERCHANTABILITY or
16 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
17 for more details.
19 Under Section 7 of GPL version 3, you are granted additional
20 permissions described in the GCC Runtime Library Exception, version
21 3.1, as published by the Free Software Foundation.
23 You should have received a copy of the GNU General Public License and
24 a copy of the GCC Runtime Library Exception along with this program;
25 see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
26 <http://www.gnu.org/licenses/>.  */
28 #include "../asm.h"
29 #include "auxreg.h"
30 /*  This file contains code to do profiling.  */
31         .weak   __profile_timer_cycles
32         .global __profile_timer_cycles
33         .set    __profile_timer_cycles, 200
34         .text
35         ; For Arctangent-A5, if no data cache is present, a read of the
36         ; cache build register returns the ID register.  For ARC600 and
37         ; later, the version field will be zero.
38         .global __dcache_linesz
39         .balign 4
40 __dcache_linesz:
41         lr      r12,[D_CACHE_BUILD]
42         extb_s  r0,r12
43         breq_s  r0,0,.Lsz_nocache
44         brge    r0,0x20,.Lsz_havecache
45         lr      r0,[IDENTITY]
46         breq    r12,r0,.Lsz_nocache
47 .Lsz_havecache:
48         lsr_s   r12,r12,16
49         mov_s   r0,16
50         bmsk_s  r12,r12,3
51         asl_s   r0,r0,r12
52         j_s     [blink]
53 .Lsz_nocache:
54         mov_s   r0,1
55         j_s     [blink]