KAME: C++ program for laboratory measurement
Main Page
Related Pages
Classes
Files
File List
kame
atomic_prv_mfence_x86.h
1
/***************************************************************************
2
Copyright (C) 2002-2015 Kentaro Kitagawa
3
kitagawa@phys.s.u-tokyo.ac.jp
4
5
This program is free software; you can redistribute it and/or
6
modify it under the terms of the GNU Library General Public
7
License as published by the Free Software Foundation; either
8
version 2 of the License, or (at your option) any later version.
9
10
You should have received a copy of the GNU Library General
11
Public License and a list of authors along with this program;
12
see the files COPYING and AUTHORS.
13
***************************************************************************/
14
#ifndef ATOMIC_PRV_MFENCE_X86_H_
15
#define ATOMIC_PRV_MFENCE_X86_H_
16
17
#ifdef _MSC_VER
18
#include <intrin.h>
19
#else
20
#include <emmintrin.h>
21
#include <xmmintrin.h>
22
#include <x86intrin.h>
23
#endif
24
25
//! memory barriers.
26
inline
void
readBarrier() noexcept {
27
_mm_lfence();
28
// asm volatile( "lfence" ::: "memory" );
29
// // asm volatile ("lock; addl $0,0(%%esp)" ::: "memory");
30
}
31
inline
void
writeBarrier() noexcept {
32
_mm_sfence();
33
// asm volatile( "sfence" ::: "memory" );
34
// // asm volatile ("lock; addl $0,0(%%esp)" ::: "memory");
35
}
36
inline
void
memoryBarrier() noexcept {
37
_mm_mfence();
38
// asm volatile( "mfence" ::: "memory" );
39
// // asm volatile ("lock; addl $0,0(%%esp)" ::: "memory");
40
}
41
42
inline
void
pause4spin() noexcept {
43
_mm_pause();
44
// asm volatile( "pause" ::: "memory" );
45
}
46
47
#endif
/*ATOMIC_PRV_MFENCE_X86_H_*/
Generated for
KAME4
by
1.8.3