-
Notifications
You must be signed in to change notification settings - Fork 357
Expand file tree
/
Copy pathcore-asm-ppc64.h
More file actions
146 lines (121 loc) · 3.74 KB
/
core-asm-ppc64.h
File metadata and controls
146 lines (121 loc) · 3.74 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
/*
* Copyright (C) 2024-2026 Colin Ian King.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
#ifndef CORE_ASM_PPC64_H
#define CORE_ASM_PPC64_H
#include "core-arch.h"
#include "core-attribute.h"
#if defined(__APPLE__)
#define REGISTER_PREFIX "r"
#else
#define REGISTER_PREFIX ""
#endif
#define REGISTER(r) REGISTER_PREFIX #r
#if defined(STRESS_ARCH_PPC64)
#if defined(HAVE_ASM_PPC64_DARN)
static inline uint64_t ALWAYS_INLINE stress_asm_ppc64_darn(void)
{
uint64_t val;
/* Unconditioned raw deliver a raw number */
__asm__ __volatile__("darn %0, 0\n" : "=r"(val) :);
return val;
}
#endif
#if defined(HAVE_ASM_PPC64_DCBST)
static inline void ALWAYS_INLINE stress_asm_ppc64_dcbst(void *addr)
{
__asm__ __volatile__("dcbst %y0" : : "Z"(*(uint8_t *)addr) : "memory");
}
#endif
#if defined(HAVE_ASM_PPC64_DCBT)
static inline void ALWAYS_INLINE stress_asm_ppc64_dcbt(void *addr)
{
__asm__ __volatile__("dcbt 0,%0" : : "r"(addr));
}
#endif
#if defined(HAVE_ASM_PPC64_DCBTST)
static inline void ALWAYS_INLINE stress_asm_ppc64_dcbtst(void *addr)
{
__asm__ __volatile__("dcbtst 0,%0" : : "r"(addr));
}
#endif
#if defined(HAVE_ASM_PPC64_ICBI)
static inline void ALWAYS_INLINE stress_asm_ppc64_icbi(void *addr)
{
__asm__ __volatile__("icbi %y0" : : "Z"(*(uint8_t *)addr) : "memory");
}
#endif
#if defined(HAVE_ASM_PPC64_MSYNC)
static inline void ALWAYS_INLINE stress_asm_ppc64_msync(void)
{
__asm__ __volatile__ ("msync" : : : "memory");
}
#endif
static inline void ALWAYS_INLINE stress_asm_ppc64_yield(void)
{
__asm__ __volatile__("or " REGISTER(27) "," REGISTER(27) "," REGISTER(27) ";\n");
}
static inline void ALWAYS_INLINE stress_asm_ppc64_mdoio(void)
{
__asm__ __volatile__("or " REGISTER(29) "," REGISTER(29) "," REGISTER(29) ";\n");
}
static inline void ALWAYS_INLINE stress_asm_ppc64_mdoom(void)
{
__asm__ __volatile__("or " REGISTER(30) "," REGISTER(30) "," REGISTER(30) ";\n");
}
#elif defined(STRESS_ARCH_PPC)
#if defined(HAVE_ASM_PPC_DCBST)
static inline void ALWAYS_INLINE stress_asm_ppc_dcbst(void *addr)
{
__asm__ __volatile__("dcbst %y0" : : "Z"(*(uint8_t *)addr) : "memory");
}
#endif
#if defined(HAVE_ASM_PPC_DCBT)
static inline void ALWAYS_INLINE stress_asm_ppc_dcbt(void *addr)
{
__asm__ __volatile__("dcbt 0,%0" : : "r"(addr));
}
#endif
#if defined(HAVE_ASM_PPC_DCBTST)
static inline void ALWAYS_INLINE stress_asm_ppc_dcbtst(void *addr)
{
__asm__ __volatile__("dcbtst 0,%0" : : "r"(addr));
}
#endif
#if defined(HAVE_ASM_PPC_ICBI)
static inline void ALWAYS_INLINE stress_asm_ppc_icbi(void *addr)
{
__asm__ __volatile__("icbi %y0" : : "Z"(*(uint8_t *)addr) : "memory");
}
#endif
static inline void ALWAYS_INLINE stress_asm_ppc_yield(void)
{
__asm__ __volatile__("or " REGISTER(27) "," REGISTER(27) "," REGISTER(27) ";\n");
}
static inline void ALWAYS_INLINE stress_asm_ppc_mdoio(void)
{
__asm__ __volatile__("or " REGISTER(29) "," REGISTER(29) "," REGISTER(29) ";\n");
}
static inline void ALWAYS_INLINE stress_asm_ppc_mdoom(void)
{
__asm__ __volatile__("or " REGISTER(30) "," REGISTER(30) "," REGISTER(30) ";\n");
}
/* #if defined(STRESS_ARCH_PPC64) */
#endif
/* #ifndef CORE_ASM_PPC64_H */
#endif