Go to the documentation of this file.
10 #ifndef _ASM_IA64_SN_MSPEC_H
11 #define _ASM_IA64_SN_MSPEC_H
13 #define FETCHOP_VAR_SIZE 64
15 #define FETCHOP_LOAD 0
16 #define FETCHOP_INCREMENT 8
17 #define FETCHOP_DECREMENT 16
18 #define FETCHOP_CLEAR 24
20 #define FETCHOP_STORE 0
21 #define FETCHOP_AND 24
24 #define FETCHOP_CLEAR_CACHE 56
26 #define FETCHOP_LOAD_OP(addr, op) ( \
27 *(volatile long *)((char*) (addr) + (op)))
29 #define FETCHOP_STORE_OP(addr, op, x) ( \
30 *(volatile long *)((char*) (addr) + (op)) = (long) (x))