L4Re Operating System Framework
Interface and Usage Documentation
Loading...
Searching...
No Matches
utcb.h
Go to the documentation of this file.
1/*****************************************************************************/
7/*
8 * (c) 2008-2009 Adam Lackorzynski <adam@os.inf.tu-dresden.de>,
9 * Alexander Warg <warg@os.inf.tu-dresden.de>
10 * economic rights: Technische Universität Dresden (Germany)
11 *
12 * License: see LICENSE.spdx (in this directory or the directories above)
13 */
14/*****************************************************************************/
15#ifndef __L4_SYS__INCLUDE__ARCH_X86__UTCB_H__
16#define __L4_SYS__INCLUDE__ARCH_X86__UTCB_H__
17
18#include <l4/sys/types.h>
19
24
26#define L4_UTCB_EXCEPTION_REGS_SIZE 19
27
29#define L4_UTCB_GENERIC_DATA_SIZE 63
30
32#define L4_UTCB_GENERIC_BUFFERS_SIZE 58
33
35#define L4_UTCB_MSG_REGS_OFFSET 0
36
38#define L4_UTCB_BUF_REGS_OFFSET (64 * sizeof(l4_umword_t))
39
41#define L4_UTCB_THREAD_REGS_OFFSET (123 * sizeof(l4_umword_t))
42
44#define L4_UTCB_INHERIT_FPU (1UL << 24)
45
47#define L4_UTCB_OFFSET 512
48
53struct l4_exc_regs_t
54{
59
68
71
77};
78
79/*
80 * ==================================================================
81 * Implementations.
82 */
83
84L4_INLINE l4_utcb_t *l4_utcb_direct(void) L4_NOTHROW
85{
86 l4_utcb_t *utcb;
87 __asm__ ("mov %%fs:0, %0" : "=r" (utcb));
88 return utcb;
89}
90
92{
93 return u->ip;
94}
95
100
101L4_INLINE void l4_utcb_exc_sp_set(l4_exc_regs_t *u, l4_addr_t sp) L4_NOTHROW
102{
103 u->sp = sp;
104}
105
107{
108 return u->trapno;
109}
110
112{
113 return u->trapno == 14;
114}
115
117{
118 return (u->pfa & ~7UL) | (u->err & 2);
119}
120
125
126#endif /* ! __L4_SYS__INCLUDE__ARCH_X86__UTCB_H__ */
unsigned long l4_umword_t
Unsigned machine word.
Definition l4int.h:40
unsigned long l4_addr_t
Address type.
Definition l4int.h:34
struct l4_utcb_t l4_utcb_t
Opaque type for the UTCB.
Definition utcb.h:56
l4_addr_t l4_utcb_exc_pfa(l4_exc_regs_t const *u) L4_NOTHROW
Function to get the L4 style page fault address out of an exception.
Definition utcb.h:103
int l4_utcb_exc_is_ex_regs_exception(l4_exc_regs_t const *u) L4_NOTHROW
Check whether an exception IPC was triggered via l4_thread_ex_regs().
Definition utcb.h:108
int l4_utcb_exc_is_pf(l4_exc_regs_t const *u) L4_NOTHROW
Check whether an exception IPC is a page fault.
Definition utcb.h:98
l4_umword_t l4_utcb_exc_pc(l4_exc_regs_t const *u) L4_NOTHROW
Access function to get the program counter of the exception state.
Definition utcb.h:83
l4_umword_t l4_utcb_exc_typeval(l4_exc_regs_t const *u) L4_NOTHROW
Get the value out of an exception UTCB that describes the type of exception.
Definition utcb.h:93
void l4_utcb_exc_pc_set(l4_exc_regs_t *u, l4_addr_t pc) L4_NOTHROW
Set the program counter register in the exception state.
Definition utcb.h:88
#define L4_NOTHROW
Mark a function declaration and definition as never throwing an exception.
Definition compiler.h:161
#define L4_INLINE
L4 Inline function attribute.
Definition compiler.h:51
Common L4 ABI Data Types.
UTCB structure for exceptions.
Definition utcb.h:28
l4_umword_t trapno
trap number
Definition utcb.h:58
l4_umword_t sp
stack pointer
Definition utcb.h:33
l4_umword_t ss
stack segment register
Definition utcb.h:64
l4_umword_t pfa
page fault address
Definition utcb.h:29
l4_umword_t ip
instruction pointer
Definition utcb.h:36
l4_umword_t flags
rflags
Definition utcb.h:37
l4_umword_t dummy1
dummy
Definition utcb.h:61
l4_umword_t edx
edx register
Definition utcb.h:65
l4_umword_t err
error code
Definition utcb.h:30
l4_umword_t esi
esi register
Definition utcb.h:61
l4_umword_t ebp
ebp register
Definition utcb.h:62
l4_umword_t eax
eax register
Definition utcb.h:67
l4_umword_t ecx
ecx register
Definition utcb.h:66
l4_umword_t ebx
ebx register
Definition utcb.h:64
l4_umword_t edi
edi register
Definition utcb.h:60