Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mruby
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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
mruby
Commits
bd76b2de
Commit
bd76b2de
authored
Dec 25, 2013
by
Yukihiro "Matz" Matsumoto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
zero copy intern from static allocate irep
parent
c6ceed22
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
9 deletions
+14
-9
src/load.c
src/load.c
+14
-9
No files found.
src/load.c
View file @
bd76b2de
...
...
@@ -38,7 +38,7 @@ offset_crc_body(void)
}
static
mrb_irep
*
read_irep_record_1
(
mrb_state
*
mrb
,
const
uint8_t
*
bin
,
uint32_t
*
len
)
read_irep_record_1
(
mrb_state
*
mrb
,
const
uint8_t
*
bin
,
uint32_t
*
len
,
mrb_bool
alloc
)
{
size_t
i
;
const
uint8_t
*
src
=
bin
;
...
...
@@ -144,7 +144,12 @@ read_irep_record_1(mrb_state *mrb, const uint8_t *bin, uint32_t *len)
continue
;
}
irep
->
syms
[
i
]
=
mrb_intern
(
mrb
,
(
char
*
)
src
,
snl
);
if
(
alloc
)
{
irep
->
syms
[
i
]
=
mrb_intern
(
mrb
,
(
char
*
)
src
,
snl
);
}
else
{
irep
->
syms
[
i
]
=
mrb_intern_static
(
mrb
,
(
char
*
)
src
,
snl
);
}
src
+=
snl
+
1
;
mrb_gc_arena_restore
(
mrb
,
ai
);
...
...
@@ -158,16 +163,16 @@ read_irep_record_1(mrb_state *mrb, const uint8_t *bin, uint32_t *len)
}
static
mrb_irep
*
read_irep_record
(
mrb_state
*
mrb
,
const
uint8_t
*
bin
,
uint32_t
*
len
)
read_irep_record
(
mrb_state
*
mrb
,
const
uint8_t
*
bin
,
uint32_t
*
len
,
mrb_bool
alloc
)
{
mrb_irep
*
irep
=
read_irep_record_1
(
mrb
,
bin
,
len
);
mrb_irep
*
irep
=
read_irep_record_1
(
mrb
,
bin
,
len
,
alloc
);
size_t
i
;
bin
+=
*
len
;
for
(
i
=
0
;
i
<
irep
->
rlen
;
i
++
)
{
uint32_t
rlen
;
irep
->
reps
[
i
]
=
read_irep_record
(
mrb
,
bin
,
&
rlen
);
irep
->
reps
[
i
]
=
read_irep_record
(
mrb
,
bin
,
&
rlen
,
alloc
);
bin
+=
rlen
;
*
len
+=
rlen
;
}
...
...
@@ -175,12 +180,12 @@ read_irep_record(mrb_state *mrb, const uint8_t *bin, uint32_t *len)
}
static
mrb_irep
*
read_section_irep
(
mrb_state
*
mrb
,
const
uint8_t
*
bin
)
read_section_irep
(
mrb_state
*
mrb
,
const
uint8_t
*
bin
,
mrb_bool
alloc
)
{
uint32_t
len
;
bin
+=
sizeof
(
struct
rite_section_irep_header
);
return
read_irep_record
(
mrb
,
bin
,
&
len
);
return
read_irep_record
(
mrb
,
bin
,
&
len
,
alloc
);
}
static
int
...
...
@@ -430,7 +435,7 @@ mrb_read_irep(mrb_state *mrb, const uint8_t *bin)
do
{
section_header
=
(
const
struct
rite_section_header
*
)
bin
;
if
(
memcmp
(
section_header
->
section_identify
,
RITE_SECTION_IREP_IDENTIFIER
,
sizeof
(
section_header
->
section_identify
))
==
0
)
{
irep
=
read_section_irep
(
mrb
,
bin
);
irep
=
read_section_irep
(
mrb
,
bin
,
FALSE
);
if
(
!
irep
)
return
NULL
;
}
else
if
(
memcmp
(
section_header
->
section_identify
,
RITE_SECTION_LINENO_IDENTIFIER
,
sizeof
(
section_header
->
section_identify
))
==
0
)
{
...
...
@@ -561,7 +566,7 @@ read_irep_record_file(mrb_state *mrb, FILE *fp)
if
(
fread
(
&
buf
[
record_header_size
],
buf_size
-
record_header_size
,
1
,
fp
)
==
0
)
{
return
NULL
;
}
irep
=
read_irep_record_1
(
mrb
,
buf
,
&
len
);
irep
=
read_irep_record_1
(
mrb
,
buf
,
&
len
,
TRUE
);
mrb_free
(
mrb
,
ptr
);
if
(
!
irep
)
return
NULL
;
for
(
i
=
0
;
i
<
irep
->
rlen
;
i
++
)
{
...
...
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