forked from ColinIanKing/stress-ng
-
Notifications
You must be signed in to change notification settings - Fork 0
/
core-asm-ppc64.h
93 lines (78 loc) · 2.23 KB
/
core-asm-ppc64.h
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
/*
* Copyright (C) 2023 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 "stress-ng.h"
#include "core-arch.h"
#if defined(STRESS_ARCH_PPC64)
#if defined(HAVE_ASM_PPC64_DARN)
static inline uint64_t 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 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 stress_asm_ppc64_dcbt(void *addr)
{
__asm__ __volatile__("dcbt 0,%0" : : "r"(addr));
}
#endif
#if defined(HAVE_ASM_PPC64_DCBTST)
static inline void stress_asm_ppc64_dcbtst(void *addr)
{
__asm__ __volatile__("dcbtst 0,%0" : : "r"(addr));
}
#endif
#if defined(HAVE_ASM_PPC64_ICBI)
static inline void 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 stress_asm_ppc64_msync(void)
{
__asm__ __volatile__ ("msync" : : : "memory");
}
#endif
static inline void stress_asm_ppc64_yield(void)
{
__asm__ __volatile__("or 27,27,27;\n");
}
static inline void stress_asm_ppc64_mdoio(void)
{
__asm__ __volatile__("or 29,29,29;\n");
}
static inline void stress_asm_ppc64_mdoom(void)
{
__asm__ __volatile__("or 30,30,30;\n");
}
/* #if defined(STRESS_ARCH_PPC64) */
#endif
/* #ifndef CORE_ASM_PPC64_H */
#endif