1 /* Copyright (C) 2011-2016 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Chris Metcalf <cmetcalf@tilera.com>, 2011.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library. If not, see
17 <http://www.gnu.org/licenses/>. */
19 #include <sysdeps/generic/sysdep.h>
20 #include <bits/wordsize.h>
23 #if defined __ASSEMBLER__ || defined REQUEST_ASSEMBLER_MACROS
27 /* Make use of .size directive. */
28 #define ASM_SIZE_DIRECTIVE(name) .size name,.-name;
30 /* Define an entry point visible from C. */
32 .globl C_SYMBOL_NAME(name); \
33 .type C_SYMBOL_NAME(name),@function; \
42 ASM_SIZE_DIRECTIVE(name)
44 /* Since C identifiers are not normally prefixed with an underscore
45 on this system, the asm identifier `syscall_error' intrudes on the
46 C name space. Make sure we use an innocuous name. */
47 #define syscall_error __syscall_error
48 #define mcount __mcount
50 /* If compiled for profiling, call `mcount' at the start of each function.
51 The mcount code requires the caller PC in r10. The `mcount' function
52 sets lr back to the value r10 had on entry when it returns. */
54 #define CALL_MCOUNT { move r10, lr; jal mcount }
56 #define CALL_MCOUNT /* Do nothing. */
59 /* Local label name for asm code. */
60 #define L(name) .L##name
62 /* Specify the size in bytes of a machine register. */
69 /* Support a limited form of shared assembly between tilepro and tilegx.
70 The presumption is that LD/ST are used for manipulating registers.
71 Since opcode parsing is case-insensitive, we don't need to provide
72 definitions for these on tilegx. */
88 /* Provide "pointer-oriented" instruction variants. These differ not
89 just for tilepro vs tilegx, but also for tilegx -m64 vs -m32. */
90 #if defined __tilegx__ && __WORDSIZE == 32
92 #define ADDI_PTR addxi
93 #define ADDLI_PTR addxli
96 #define SHL_PTR_ADD shl2add
100 #define ADDLI_PTR addli
104 #define SHL_PTR_ADD shl3add
106 #define SHL_PTR_ADD s2a
110 #endif /* __ASSEMBLER__ */