blob: f15dff841aec0e87e5b420aed82daa7d7cdf336e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
/*
* Copyright (C) 2022, Synopsys, Inc. (www.synopsys.com)
*
* Licensed under the LGPL v2.1 or later, see the file COPYING.LIB in this tarball.
*/
#ifndef _ARC_ASM_H
#define _ARC_ASM_H
#if defined (__ARC64_ARCH32__)
.macro PUSHR reg
push \reg
.endm
.macro PUSHR_S reg
push \reg
.endm
.macro POPR reg
pop \reg
.endm
.macro POPR_S reg
pop \reg
.endm
#elif defined (__ARC64_ARCH64__)
# error ARCv3 64-bit is not supported by uClibc-ng
#else /* ARCHS || ARC700 */
.macro PUSHR reg
push \reg
.endm
.macro PUSHR_S reg
push_s \reg
.endm
.macro POPR reg
pop \reg
.endm
.macro POPR_S reg
pop_s \reg
.endm
#endif
#endif /* _ARC_ASM_H */
|