hc
2025-02-14 bbb9540dc49f70f6b703d1c8d1b85fa5f602d86e
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
/*
 * Copyright (c) 2012 The Chromium OS Authors.
 *
 * (C) Copyright 2008-2011
 * Graeme Russ, <graeme.russ@gmail.com>
 *
 * (C) Copyright 2002
 * Daniel Engström, Omicron Ceti AB, <daniel@omicron.se>
 *
 * Portions of this file are derived from the Linux kernel source
 *  Copyright (C) 1991, 1992  Linus Torvalds
 *
 * SPDX-License-Identifier:    GPL-2.0+
 */
 
#ifndef __X86_CONTROL_REGS_H
#define __X86_CONTROL_REGS_H
 
/*
 * The memory clobber prevents the GCC from reordering the read/write order
 * of CR0
*/
static inline unsigned long read_cr0(void)
{
   unsigned long val;
 
   asm volatile ("movl %%cr0, %0" : "=r" (val) : : "memory");
   return val;
}
 
static inline void write_cr0(unsigned long val)
{
   asm volatile ("movl %0, %%cr0" : : "r" (val) : "memory");
}
 
static inline unsigned long read_cr2(void)
{
   unsigned long val;
 
   asm volatile("mov %%cr2,%0\n\t" : "=r" (val) : : "memory");
   return val;
}
 
static inline unsigned long read_cr3(void)
{
   unsigned long val;
 
   asm volatile("mov %%cr3,%0\n\t" : "=r" (val) : : "memory");
   return val;
}
 
static inline unsigned long read_cr4(void)
{
   unsigned long val;
 
   asm volatile("mov %%cr4,%0\n\t" : "=r" (val) : : "memory");
   return val;
}
 
static inline unsigned long get_debugreg(int regno)
{
   unsigned long val = 0;  /* Damn you, gcc! */
 
   switch (regno) {
   case 0:
       asm("mov %%db0, %0" : "=r" (val));
       break;
   case 1:
       asm("mov %%db1, %0" : "=r" (val));
       break;
   case 2:
       asm("mov %%db2, %0" : "=r" (val));
       break;
   case 3:
       asm("mov %%db3, %0" : "=r" (val));
       break;
   case 6:
       asm("mov %%db6, %0" : "=r" (val));
       break;
   case 7:
       asm("mov %%db7, %0" : "=r" (val));
       break;
   default:
       val = 0;
   }
   return val;
}
 
#endif