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
9c12b47d
Commit
9c12b47d
authored
Sep 03, 2012
by
Yukihiro Matsumoto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
peephole optimization to generatio OP_ADDI/OP_SUBI
parent
e7661b97
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
31 additions
and
5 deletions
+31
-5
src/codegen.c
src/codegen.c
+31
-5
No files found.
src/codegen.c
View file @
9c12b47d
...
...
@@ -159,13 +159,14 @@ static void
genop_peep
(
codegen_scope
*
s
,
mrb_code
i
,
int
val
)
{
/* peephole optimization */
if
(
!
val
&&
s
->
lastlabel
!=
s
->
pc
&&
s
->
pc
>
0
)
{
if
(
s
->
lastlabel
!=
s
->
pc
&&
s
->
pc
>
0
)
{
mrb_code
i0
=
s
->
iseq
[
s
->
pc
-
1
];
int
c1
=
GET_OPCODE
(
i
);
int
c0
=
GET_OPCODE
(
i0
);
switch
(
c1
)
{
case
OP_MOVE
:
if
(
val
)
break
;
switch
(
c0
)
{
case
OP_MOVE
:
if
(
GETARG_B
(
i
)
==
GETARG_A
(
i0
)
&&
GETARG_A
(
i
)
==
GETARG_B
(
i0
)
&&
GETARG_A
(
i
)
>=
s
->
nlocals
)
{
...
...
@@ -231,6 +232,7 @@ genop_peep(codegen_scope *s, mrb_code i, int val)
case
OP_SETCONST
:
case
OP_SETMCNST
:
case
OP_SETGLOBAL
:
if
(
val
)
break
;
if
(
c0
==
OP_MOVE
)
{
if
(
GETARG_A
(
i
)
==
GETARG_A
(
i0
))
{
s
->
iseq
[
s
->
pc
-
1
]
=
MKOP_ABx
(
c1
,
GETARG_B
(
i0
),
GETARG_Bx
(
i
));
...
...
@@ -239,6 +241,7 @@ genop_peep(codegen_scope *s, mrb_code i, int val)
}
break
;
case
OP_SETUPVAR
:
if
(
val
)
break
;
if
(
c0
==
OP_MOVE
)
{
if
(
GETARG_A
(
i
)
==
GETARG_A
(
i0
))
{
s
->
iseq
[
s
->
pc
-
1
]
=
MKOP_ABC
(
c1
,
GETARG_B
(
i0
),
GETARG_B
(
i
),
GETARG_C
(
i
));
...
...
@@ -313,6 +316,19 @@ genop_peep(codegen_scope *s, mrb_code i, int val)
break
;
}
break
;
case
OP_ADD
:
case
OP_SUB
:
if
(
c0
==
OP_LOADI
)
{
int
c
=
GETARG_sBx
(
i0
);
if
(
c1
==
OP_SUB
)
c
=
-
c
;
if
(
c
>
127
||
c
<
-
127
)
break
;
if
(
0
<=
c
)
s
->
iseq
[
s
->
pc
-
1
]
=
MKOP_ABC
(
OP_ADDI
,
GETARG_A
(
i
),
GETARG_B
(
i
),
c
);
else
s
->
iseq
[
s
->
pc
-
1
]
=
MKOP_ABC
(
OP_SUBI
,
GETARG_A
(
i
),
GETARG_B
(
i
),
-
c
);
return
;
}
default:
break
;
}
...
...
@@ -723,10 +739,10 @@ gen_call(codegen_scope *s, node *tree, mrb_sym name, int sp, int val)
const
char
*
name
=
mrb_sym2name_len
(
s
->
mrb
,
sym
,
&
len
);
if
(
!
noop
&&
len
==
1
&&
name
[
0
]
==
'+'
)
{
genop
(
s
,
MKOP_ABC
(
OP_ADD
,
cursp
(),
idx
,
n
)
);
genop
_peep
(
s
,
MKOP_ABC
(
OP_ADD
,
cursp
(),
idx
,
n
),
val
);
}
else
if
(
!
noop
&&
len
==
1
&&
name
[
0
]
==
'-'
)
{
genop
(
s
,
MKOP_ABC
(
OP_SUB
,
cursp
(),
idx
,
n
)
);
genop
_peep
(
s
,
MKOP_ABC
(
OP_SUB
,
cursp
(),
idx
,
n
),
val
);
}
else
if
(
!
noop
&&
len
==
1
&&
name
[
0
]
==
'*'
)
{
genop
(
s
,
MKOP_ABC
(
OP_MUL
,
cursp
(),
idx
,
n
));
...
...
@@ -1383,10 +1399,10 @@ codegen(codegen_scope *s, node *tree, int val)
idx
=
new_msym
(
s
,
sym
);
if
(
len
==
1
&&
name
[
0
]
==
'+'
)
{
genop
(
s
,
MKOP_ABC
(
OP_ADD
,
cursp
(),
idx
,
1
)
);
genop
_peep
(
s
,
MKOP_ABC
(
OP_ADD
,
cursp
(),
idx
,
1
),
val
);
}
else
if
(
len
==
1
&&
name
[
0
]
==
'-'
)
{
genop
(
s
,
MKOP_ABC
(
OP_SUB
,
cursp
(),
idx
,
1
)
);
genop
_peep
(
s
,
MKOP_ABC
(
OP_SUB
,
cursp
(),
idx
,
1
),
val
);
}
else
if
(
len
==
1
&&
name
[
0
]
==
'<'
)
{
genop
(
s
,
MKOP_ABC
(
OP_LT
,
cursp
(),
idx
,
1
));
...
...
@@ -2328,11 +2344,21 @@ codedump(mrb_state *mrb, int n)
mrb_sym2name
(
mrb
,
irep
->
syms
[
GETARG_B
(
c
)]),
GETARG_C
(
c
));
break
;
case
OP_ADDI
:
printf
(
"OP_ADDI
\t
R%d
\t
:%s
\t
%d
\n
"
,
GETARG_A
(
c
),
mrb_sym2name
(
mrb
,
irep
->
syms
[
GETARG_B
(
c
)]),
GETARG_C
(
c
));
break
;
case
OP_SUB
:
printf
(
"OP_SUB
\t
R%d
\t
:%s
\t
%d
\n
"
,
GETARG_A
(
c
),
mrb_sym2name
(
mrb
,
irep
->
syms
[
GETARG_B
(
c
)]),
GETARG_C
(
c
));
break
;
case
OP_SUBI
:
printf
(
"OP_SUBI
\t
R%d
\t
:%s
\t
%d
\n
"
,
GETARG_A
(
c
),
mrb_sym2name
(
mrb
,
irep
->
syms
[
GETARG_B
(
c
)]),
GETARG_C
(
c
));
break
;
case
OP_MUL
:
printf
(
"OP_MUL
\t
R%d
\t
:%s
\t
%d
\n
"
,
GETARG_A
(
c
),
mrb_sym2name
(
mrb
,
irep
->
syms
[
GETARG_B
(
c
)]),
...
...
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