Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
d051cb71
Commit
d051cb71
authored
May 23, 2014
by
Leif Walsh
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vectorized loops in new deserialization code #226
also a typo
parent
308466b5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
4 deletions
+13
-4
ft/ft_node-serialize.cc
ft/ft_node-serialize.cc
+13
-4
No files found.
ft/ft_node-serialize.cc
View file @
d051cb71
...
...
@@ -1112,7 +1112,7 @@ deserialize_child_buffer_v26(NONLEAF_CHILDINFO bnc, struct rbuf *rbuf,
}
}
// effect: deserialize a single message from rbuf and enque the result into the given fifo
// effect: deserialize a single message from rbuf and enque
ue
the result into the given fifo
static
void
fifo_deserialize_msg_from_rbuf
(
FIFO
fifo
,
struct
rbuf
*
rbuf
)
{
bytevec
key
,
val
;
...
...
@@ -1144,16 +1144,25 @@ deserialize_child_buffer(NONLEAF_CHILDINFO bnc, struct rbuf *rbuf) {
// read in each message tree (fresh, stale, broadcast)
nfresh
=
rbuf_int
(
rbuf
);
bytevec
fresh_offsets_src_v
;
rbuf_literal_bytes
(
rbuf
,
&
fresh_offsets_v
,
nfresh
*
(
sizeof
*
fresh_offsets
));
const
int32_t
*
fresh_offsets_src
=
(
const
int32_t
*
)
fresh_offsets_src_v
;
for
(
int
i
=
0
;
i
<
nfresh
;
i
++
)
{
fresh_offsets
[
i
]
=
rbuf_int
(
rbuf
);
fresh_offsets
[
i
]
=
toku_dtoh32
(
fresh_offsets_src
[
i
]
);
}
nstale
=
rbuf_int
(
rbuf
);
bytevec
stale_offsets_src_v
;
rbuf_literal_bytes
(
rbuf
,
&
stale_offsets_v
,
nstale
*
(
sizeof
*
stale_offsets
));
const
int32_t
*
stale_offsets_src
=
(
const
int32_t
*
)
stale_offsets_src_v
;
for
(
int
i
=
0
;
i
<
nstale
;
i
++
)
{
stale_offsets
[
i
]
=
rbuf_int
(
rbuf
);
stale_offsets
[
i
]
=
toku_dtoh32
(
stale_offsets_src
[
i
]
);
}
nbroadcast_offsets
=
rbuf_int
(
rbuf
);
bytevec
broadcast_offsets_src_v
;
rbuf_literal_bytes
(
rbuf
,
&
broadcast_offsets_v
,
nbroadcast_offsets
*
(
sizeof
*
broadcast_offsets
));
const
int32_t
*
broadcast_offsets_src
=
(
const
int32_t
*
)
broadcast_offsets_src_v
;
for
(
int
i
=
0
;
i
<
nbroadcast_offsets
;
i
++
)
{
broadcast_offsets
[
i
]
=
rbuf_int
(
rbuf
);
broadcast_offsets
[
i
]
=
toku_dtoh32
(
broadcast_offsets_src
[
i
]
);
}
// build OMTs out of each offset array
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment