Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
T
tarantool
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
core
tarantool
Commits
50fa36bf
Commit
50fa36bf
authored
13 years ago
by
pcherenkov
Browse files
Options
Downloads
Patches
Plain Diff
Enabled usage of crc32hw in WAL writer; style corrections in cpu_feature.
parent
6bf48373
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
core/cpu_feature.m
+28
-21
28 additions, 21 deletions
core/cpu_feature.m
core/log_io.m
+10
-2
10 additions, 2 deletions
core/log_io.m
include/cpu_feature.h
+17
-8
17 additions, 8 deletions
include/cpu_feature.h
with
55 additions
and
31 deletions
core/cpu_feature.m
+
28
−
21
View file @
50fa36bf
...
...
@@ -32,14 +32,14 @@ enum { eAX=0, eBX, eCX, eDX };
static
const
struct
cpuid
_
feature
{
unsigned
int
ri
;
u
_
int32
_
t
mask
;
}
cpu
_
ftr
[]
=
{
u
_
int32
_
t
bit
mask
;
}
cpu
_
mask
[]
=
{
{
eDX
,
(
1
<<
28
)}
,
/*
HT
*/
{
eCX
,
(
1
<<
19
)}
,
/*
SSE
4.1
*/
{
eCX
,
(
1
<<
20
)}
,
/*
SSE
4.2
*/
{
eCX
,
(
1
<<
31
)}
/*
HYPERV
*/
}
;
static
const
size
_
t
LEN
_
cpu
_
ftr
=
sizeof
(
cpu
_
ftr
)
/
sizeof
(
cpu
_
ftr
[
0
])
;
static
const
size
_
t
LEN
_
cpu
_
mask
=
sizeof
(
cpu
_
mask
)
/
sizeof
(
cpu
_
mask
[
0
])
;
#define
SCALE
_
F
sizeof
(
unsigned
long
)
...
...
@@ -52,8 +52,9 @@ static const size_t LEN_cpu_ftr = sizeof(cpu_ftr) / sizeof (cpu_ftr[0]);
#endif
/*
hw
-
calculate
CRC32
per
byte
(
for
the
unaligned
portion
of
data
buffer
)
*/
/*
Hw
-
calculate
CRC32
per
byte
(
for
the
unaligned
portion
of
data
buffer
)
.
*/
/*
NOTE
:
the
function
below
was
adopted
from
Linux
2.6
kernel
source
tree
,
licensed
under
GPL
.
*/
static
u
_
int32
_
t
crc32c
_
hw
_
byte
(
u
_
int32
_
t
crc
,
unsigned
char
const
*
data
,
size
_
t
length
)
{
...
...
@@ -70,14 +71,15 @@ crc32c_hw_byte(u_int32_t crc, unsigned char const *data, size_t length)
}
/* hw-calculate CRC32 for the given data buffer
*/
u_int32_t
crc32c_hw(u_int32_t crc, unsigned char const *p, size_t len)
/* Hw-calculate CRC32 for the given data buffer. */
/* NOTE: the function below was adopted from Linux 2.6 kernel source tree,
licensed under GPL. */
static u_int32_t
crc32c_hw_intel(u_int32_t crc, unsigned char const *buf, size_t len)
{
unsigned int iquotient = len / SCALE_F;
unsigned int iremainder = len % SCALE_F;
unsigned long *ptmp = (unsigned long *)
p
;
unsigned long *ptmp = (unsigned long *)
buf
;
while
(
iquotient
--
)
{
__
asm
__
__
volatile
__
(
...
...
@@ -97,9 +99,14 @@ crc32c_hw(u_int32_t crc, unsigned char const *p, size_t len)
}
/*
toggle
x86
flag
-
register
bits
,
as
per
mask
return
flags
both
in
original
and
toggled
state
*/
u
_
int32
_
t
crc32c
_
hw
(
u
_
int32
_
t
crc
,
const
unsigned
char
*
buf
,
unsigned
int
len
)
{
return
crc32c
_
hw
_
intel
(
crc
,
(
unsigned
char
const
*
)
buf
,
len
)
;
}
/*
Toggle
x86
flag
-
register
bits
,
as
per
mask
.
*/
static
void
toggle
_
x86
_
flags
(
long
mask
,
long
*
orig
,
long
*
toggled
)
{
...
...
@@ -127,7 +134,7 @@ toggle_x86_flags (long mask, long* orig, long* toggled)
}
/*
i
s
CPUID
instruction
available
?
*/
/*
I
s
CPUID
instruction
available
?
*/
static
int
can
_
cpuid
()
{
...
...
@@ -140,15 +147,15 @@ can_cpuid ()
}
;
/*
c
heck
if
AC
(
alignment
)
flag
could
be
toggled
:
if
not
-
it
'
s
i386
,
thus
no
CPUID
/*
C
heck
if
AC
(
alignment
)
flag
could
be
toggled
:
if
not
-
it
'
s
i386
,
thus
no
CPUID
.
*/
toggle
_
x86
_
flags
(
cpuf
_
AC
,
&
of
,
&
tf
)
;
if
((
of
&
cpuf
_
AC
)
==
(
tf
&
cpuf
_
AC
))
{
return
0
;
}
/*
n
ext
try
toggling
CPUID
(
ID
)
flag
*/
/*
N
ext
try
toggling
CPUID
(
ID
)
flag
.
*/
toggle
_
x86
_
flags
(
cpuf
_
ID
,
&
of
,
&
tf
)
;
if
((
of
&
cpuf
_
ID
)
==
(
tf
&
cpuf
_
ID
))
{
return
0
;
...
...
@@ -158,7 +165,7 @@ can_cpuid ()
}
/*
r
etrieve
CPUID
data
using
info
as
the
EAX
key
*/
/*
R
etrieve
CPUID
data
using
info
as
the
EAX
key
.
*/
static
void
get
_
cpuid
(
long
info
,
long
*
eax
,
long
*
ebx
,
long
*
ecx
,
long
*
edx
)
{
...
...
@@ -183,7 +190,7 @@ get_cpuid (long info, long* eax, long* ebx, long* ecx, long *edx)
}
/*
return 1=feature is available, 0=unavailable, 0>(errno) = error
*/
/*
Check whether CPU has a certain feature.
*/
int
cpu_has (unsigned int feature)
{
...
...
@@ -192,12 +199,12 @@ cpu_has (unsigned int feature)
if (!can_cpuid ())
return -EINVAL;
if (feature > LEN_cpu_
ftr
)
if (feature > LEN_cpu_
mask
)
return -ERANGE;
get_cpuid (info, ®[eAX], ®[eBX], ®[eCX], ®[eDX]);
return (reg[cpu_
ftr
[feature].ri] & cpu_
ftr
[feature].mask) ? 1 : 0;
return (reg[cpu_
mask
[feature].ri] & cpu_
mask
[feature].
bit
mask) ? 1 : 0;
}
...
...
This diff is collapsed.
Click to expand it.
core/log_io.m
+
10
−
2
View file @
50fa36bf
...
...
@@ -43,6 +43,7 @@
#include
<
say
.
h
>
#include
<
third
_
party
/
crc32
.
h
>
#include
<
pickle
.
h
>
#include
<
cpu
_
feature
.
h
>
const
u16
snap
_
tag
=
-
1
;
const
u16
wal
_
tag
=
-
2
;
...
...
@@ -61,6 +62,11 @@ const char *xlog_mark = "XLOG\n";
static
struct
tbuf
*
row
_
reader
_
v11
(
FILE
*
f
,
struct
palloc
_
pool
*
pool
)
;
/*
Will
be
set
to
either
HW
or
SW
CRC32
calculation
routine
depending
on
CPU
capabilities
.
*/
static
u
_
int32
_
t
(*calc_crc32c)(u_int32_t crc, const unsigned char *buf,
unsigned int len) = NULL;
struct log_io_iter {
struct tarantool_coro coro;
struct log_io *log;
...
...
@@ -1235,9 +1241,9 @@ write_to_disk(void *_state, struct tbuf *t)
row_v11(header)->tm = ev_now();
row_v11(header)->len = wal_write_request(t)->len;
row_v11(header)->data_crc32c =
crc32c(0, wal_write_request(t)->data, wal_write_request(t)->len);
calc_
crc32c(0, wal_write_request(t)->data, wal_write_request(t)->len);
row_v11(header)->header_crc32c =
crc32c(0, header->data + field_sizeof(struct row_v11, header_crc32c),
calc_
crc32c(0, header->data + field_sizeof(struct row_v11, header_crc32c),
sizeof(struct row_v11) - field_sizeof(struct row_v11, header_crc32c));
if (fwrite(header->data, header->size, 1, wal->f) != 1) {
...
...
@@ -1331,6 +1337,8 @@ recover_init(const char *snap_dirname, const char *wal_dirname,
r->wal_class->fsync_delay = fsync_delay;
wait_lsn_clear(&r->wait_lsn);
calc_crc32c = cpu_has (cpuf_sse4_2) ? &crc32c_hw : &crc32c;
if ((flags & RECOVER_READONLY) == 0)
r->wal_writer = spawn_child("wal_writer", inbox_size, write_to_disk, r);
...
...
This diff is collapsed.
Click to expand it.
include/cpu_feature.h
+
17
−
8
View file @
50fa36bf
...
...
@@ -27,22 +27,31 @@
#include
<sys/types.h>
/* CPU feature capabilities to use with cpu_has (feature) */
/* CPU feature capabilities to use with cpu_has (feature)
.
*/
enum
{
cpuf_ht
=
0
,
cpuf_sse4_1
,
cpuf_sse4_2
,
cpuf_hypervisor
};
/* return 1=feature is available, 0=unavailable, -EINVAL = unsupported CPU,
-ERANGE = invalid feature
*/
/* Check whether CPU has a certain feature.
*
* @param feature indetifier (see above) of the target feature
*
* @return 1 if feature is available, 0 if unavailable,
* -EINVAL if unsupported CPU, -ERANGE if invalid feature
*/
int
cpu_has
(
unsigned
int
feature
);
/* hardware-calculate CRC32 for the given data buffer
* NB: requires 1 == cpu_has (cpuf_sse4_2),
* CALLING IT W/O CHECKING for sse4_2 CAN CAUSE SIGABRT
/* Hardware-calculate CRC32 for the given data buffer.
*
* @param crc initial CRC
* @param buf data buffer
* @param len buffer length
*
* @pre 1 == cpu_has (cpuf_sse4_2)
* @return CRC32 value
*/
u_int32_t
crc32c_hw
(
u_int32_t
crc
,
unsigned
char
const
*
p
,
size_
t
len
);
u_int32_t
crc32c_hw
(
u_int32_t
crc
,
const
unsigned
char
*
buf
,
unsigned
in
t
len
);
#endif
/* TARANTOOL_CPU_FEATURES_H */
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment