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
f092ef6b
Commit
f092ef6b
authored
Jun 25, 2014
by
ksss
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
OP_ENTER: Rewrite split aspec use macros
parent
b0edba43
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
src/vm.c
src/vm.c
+7
-7
No files found.
src/vm.c
View file @
f092ef6b
...
@@ -1364,14 +1364,14 @@ RETRY_TRY_BLOCK:
...
@@ -1364,14 +1364,14 @@ RETRY_TRY_BLOCK:
/* Ax arg setup according to flags (23=5:5:1:5:5:1:1) */
/* Ax arg setup according to flags (23=5:5:1:5:5:1:1) */
/* number of optional arguments times OP_JMP should follow */
/* number of optional arguments times OP_JMP should follow */
mrb_aspec
ax
=
GETARG_Ax
(
i
);
mrb_aspec
ax
=
GETARG_Ax
(
i
);
int
m1
=
(
ax
>>
18
)
&
0x1f
;
int
m1
=
MRB_ASPEC_REQ
(
ax
)
;
int
o
=
(
ax
>>
13
)
&
0x1f
;
int
o
=
MRB_ASPEC_OPT
(
ax
)
;
int
r
=
(
ax
>>
12
)
&
0x1
;
int
r
=
MRB_ASPEC_REST
(
ax
)
;
int
m2
=
(
ax
>>
7
)
&
0x1f
;
int
m2
=
MRB_ASPEC_POST
(
ax
)
;
/* unused
/* unused
int k =
(ax>>2)&0x1f
;
int k =
MRB_ASPEC_KEY(ax)
;
int kd =
(ax>>1)&0x1
;
int kd =
MRB_ASPEC_KDICT(ax)
;
int b =
(ax>>0)& 0x1
;
int b =
MRB_ASPEC_BLOCK(ax)
;
*/
*/
int
argc
=
mrb
->
c
->
ci
->
argc
;
int
argc
=
mrb
->
c
->
ci
->
argc
;
mrb_value
*
argv
=
regs
+
1
;
mrb_value
*
argv
=
regs
+
1
;
...
...
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