Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
pike
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
Container Registry
Model registry
Operate
Environments
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
pikelang
pike
Commits
7a35a467
Commit
7a35a467
authored
24 years ago
by
Henrik (Grubba) Grubbström
Browse files
Options
Downloads
Patches
Plain Diff
Fixed a few warnings.
Rev: bin/mkpeep.pike:1.18 Rev: src/peep.c:1.34 Rev: src/peep.h:1.6
parent
596a3fc5
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
bin/mkpeep.pike
+42
-43
42 additions, 43 deletions
bin/mkpeep.pike
src/peep.c
+24
-20
24 additions, 20 deletions
src/peep.c
src/peep.h
+14
-14
14 additions, 14 deletions
src/peep.h
with
80 additions
and
77 deletions
bin/mkpeep.pike
+
42
−
43
View file @
7a35a467
...
...
@@ -2,7 +2,7 @@
#pragma strict_types
/* $Id: mkpeep.pike,v 1.1
7
2000/0
6
/1
0
1
1
:1
2:51 mast
Exp $ */
/* $Id: mkpeep.pike,v 1.1
8
2000/0
8
/1
4
1
7
:1
4:34 grubba
Exp $ */
#define JUMPBACK 3
...
...
@@ -95,7 +95,8 @@ array(string) explode_comma_expr(string s)
/* Splitline into components */
array(int|string|array(string)) split(string s)
{
string *a,*b,tmp;
array(string) a, b;
string tmp;
int i,e,opcodes;
string line=s;
opcodes=0;
...
...
@@ -193,13 +194,13 @@ array(int|string|array(string)) split(string s)
#endif
i=0;
array newa=({});
array
(string)
newa=({});
for(e=0;e<sizeof(a);e++)
{
switch(a[e][0])
{
case '(':
array tmp=explode_comma_expr(a[e][1..strlen(a[e])-2]);
array
(string)
tmp=explode_comma_expr(a[e][1..strlen(a[e])-2]);
for(int x=0;x<sizeof(tmp);x++)
{
string arg=sprintf("$%d%c", i, 'a'+x);
...
...
@@ -241,7 +242,7 @@ array(int|string|array(string)) split(string s)
string treat(string expr)
{
int e;
string
*
tmp;
array(
string
)
tmp;
tmp=expr/"$";
for(e=1;e<sizeof(tmp);e++)
{
...
...
@@ -264,13 +265,12 @@ string treat(string expr)
}
/* Dump C co(d|r)e */
void dump2(array(
mixed
) data,int ind)
void dump2(array(
array(array(string))
) data,int ind)
{
int e,i,max,maxe;
mixed
a,b,
tmp;
mixed tmp;
string test;
mapping(int:array(string))|mapping(string:array(string)) d;
mapping(string:mapping(string:array(string))) foo;
mapping(string:mapping(string:array(array(array(string))))) foo;
mixed cons, var;
foo=([]);
...
...
@@ -282,10 +282,10 @@ void dump2(array(mixed) data,int ind)
/* First we create a mapping:
* foo [ meta variable ] [ condition ] = ({ lines });
*/
foreach(data,d)
foreach(data,
array(array(string))
d)
{
a
=
d[0];
b=
d[1];
a
rray(string) a =
d[0];
array(string) b =
d[1];
for(e=0;e<sizeof(a);e++)
{
if(sscanf(a[e],"F_%[A-Z0-9_]==%s",cons,var)==2 ||
...
...
@@ -301,7 +301,7 @@ void dump2(array(mixed) data,int ind)
/* Check what variable has most values */
max=maxe=e=0;
foreach(values(foo),d)
foreach(values(foo),
mapping(string:array(array(array(string))))
d)
{
if(sizeof(d)>max)
{
...
...
@@ -319,9 +319,9 @@ void dump2(array(mixed) data,int ind)
write(sprintf("%*nswitch(%s)\n",ind,treat(test)));
write(sprintf("%*n{\n",ind));
d=
values(foo)[maxe];
a
=
indices(d);
b=
values(d);
mapping(string:array(array(array(string)))) d =
values(foo)[maxe];
a
rray(string) a =
indices(d);
array(array(array(array(string)))) b =
values(d);
/* foo: variable
...
...
@@ -341,7 +341,7 @@ void dump2(array(mixed) data,int ind)
write(sprintf("%*ncase %s:\n",ind,cons+""));
foreach(b[e],d) d[0]-=({a[e]});
foreach(b[e],
array(array(string))
d) d[0]-=({a[e]});
dump2(b[e],ind+2);
write(sprintf("%*n break;\n",ind));
write("\n");
...
...
@@ -353,12 +353,9 @@ void dump2(array(mixed) data,int ind)
/* Take care of whatever is left */
if(sizeof(data))
{
foreach(data,d)
foreach(data,
array(array(string))
d)
{
mixed q;
write(sprintf("%*n/* %s */\n",ind,d[3]));
if(sizeof(d[0]))
{
...
...
@@ -398,7 +395,7 @@ void dump2(array(mixed) data,int ind)
int main(int argc, string
*
argv)
int main(int argc,
array(
string
)
argv)
{
int e,max,maxe;
string f;
...
...
@@ -411,7 +408,7 @@ int main(int argc, string *argv)
f=cpp(Stdio.read_bytes(argv[1]),argv[1]);
foreach(f/"\n",f)
{
string
*
a,
*
b;
array(
string
)
a,
b;
mapping tmp;
sscanf(f,"%s#",f);
...
...
@@ -427,26 +424,28 @@ int main(int argc, string *argv)
// write(sprintf("%O\n",data));
write(" len=instrbuf.s.len/sizeof(p_instr);\n");
write(" instructions=(p_instr *)instrbuf.s.str;\n");
write(" instrbuf.s.str=0;\n");
write(" fifo_len=0;\n");
write(" init_bytecode();\n\n");
write(" for(eye=0;eye<len || fifo_len;)\n {\n");
write(" INT32 current_line;\n");
write(" struct pike_string *current_file;\n");
write("\n");
write("#ifdef PIKE_DEBUG\n");
write(" if(a_flag>6) {\n");
write(" int e;\n");
write(" fprintf(stderr,\"#%d,%d:\",eye,fifo_len);\n");
write(" for(e=0;e<4;e++) {\n");
write(" fprintf(stderr,\" \");\n");
write(" dump_instr(instr(e));\n");
write(" }\n");
write(" fprintf(stderr,\"\\n\");\n");
write(" }\n");
write("#endif\n\n");
write(" len=instrbuf.s.len/sizeof(p_instr);\n"
" instructions=(p_instr *)instrbuf.s.str;\n"
" instrbuf.s.str=0;\n"
" fifo_len=0;\n"
" init_bytecode();\n\n"
" for(eye=0;eye<len || fifo_len;)\n {\n"
" INT32 current_line;\n"
" struct pike_string *current_file;\n"
"\n"
"#ifdef PIKE_DEBUG\n"
" if(a_flag>6) {\n"
" int e;\n"
" fprintf(stderr, \"#%ld,%d:\",\n"
" DO_NOT_WARN((long)eye),\n"
" fifo_len);\n"
" for(e=0;e<4;e++) {\n"
" fprintf(stderr,\" \");\n"
" dump_instr(instr(e));\n"
" }\n"
" fprintf(stderr,\"\\n\");\n"
" }\n"
"#endif\n\n");
dump2(data,4);
...
...
This diff is collapsed.
Click to expand it.
src/peep.c
+
24
−
20
View file @
7a35a467
...
...
@@ -15,7 +15,7 @@
#include
"bignum.h"
#include
"opcodes.h"
RCSID
(
"$Id: peep.c,v 1.3
3
2000/0
5
/1
1
1
4:09:4
6 grubba Exp $"
);
RCSID
(
"$Id: peep.c,v 1.3
4
2000/0
8
/1
4
1
7:18:0
6 grubba Exp $"
);
struct
p_instr_s
{
...
...
@@ -65,7 +65,7 @@ void init_bytecode(void)
void
exit_bytecode
(
void
)
{
INT32
e
,
length
;
ptrdiff_t
e
,
length
;
p_instr
*
c
;
c
=
(
p_instr
*
)
instrbuf
.
s
.
str
;
...
...
@@ -76,11 +76,11 @@ void exit_bytecode(void)
toss_buffer
(
&
instrbuf
);
}
in
t
insert_opcode2
(
unsigned
int
f
,
INT32
b
,
INT32
c
,
INT32
current_line
,
struct
pike_string
*
current_file
)
ptrdiff_
t
insert_opcode2
(
unsigned
int
f
,
INT32
b
,
INT32
c
,
INT32
current_line
,
struct
pike_string
*
current_file
)
{
p_instr
*
p
;
...
...
@@ -106,10 +106,10 @@ int insert_opcode2(unsigned int f,
return
p
-
(
p_instr
*
)
instrbuf
.
s
.
str
;
}
in
t
insert_opcode1
(
unsigned
int
f
,
INT32
b
,
INT32
current_line
,
struct
pike_string
*
current_file
)
ptrdiff_
t
insert_opcode1
(
unsigned
int
f
,
INT32
b
,
INT32
current_line
,
struct
pike_string
*
current_file
)
{
#ifdef PIKE_DEBUG
if
(
!
hasarg
(
f
)
&&
b
)
...
...
@@ -119,7 +119,7 @@ int insert_opcode1(unsigned int f,
return
insert_opcode2
(
f
,
b
,
0
,
current_line
,
current_file
);
}
in
t
insert_opcode0
(
int
f
,
int
current_line
,
struct
pike_string
*
current_file
)
ptrdiff_
t
insert_opcode0
(
int
f
,
int
current_line
,
struct
pike_string
*
current_file
)
{
#ifdef PIKE_DEBUG
if
(
hasarg
(
f
))
...
...
@@ -221,8 +221,9 @@ static void ins_f_byte_with_2_args(unsigned int a,
void
assemble
(
void
)
{
INT32
e
,
d
,
length
,
max_label
,
tmp
;
INT32
d
,
max_label
,
tmp
;
INT32
*
labels
,
*
jumps
,
*
uses
;
ptrdiff_t
e
,
length
;
p_instr
*
c
;
c
=
(
p_instr
*
)
instrbuf
.
s
.
str
;
...
...
@@ -248,7 +249,7 @@ void assemble(void)
c
=
(
p_instr
*
)
instrbuf
.
s
.
str
;
for
(
e
=
0
;
e
<
length
;
e
++
)
if
(
c
[
e
].
opcode
==
F_LABEL
&&
c
[
e
].
arg
>=
0
)
labels
[
c
[
e
].
arg
]
=
e
;
labels
[
c
[
e
].
arg
]
=
DO_NOT_WARN
((
INT32
)
e
)
;
for
(
e
=
0
;
e
<
length
;
e
++
)
{
...
...
@@ -412,10 +413,11 @@ void assemble(void)
/**** Peephole optimizer ****/
int
remove_clear_locals
=
0x7fffffff
;
static
int
fifo_len
,
eye
,
len
;
static
int
fifo_len
;
static
ptrdiff_t
eye
,
len
;
static
p_instr
*
instructions
;
in
t
insopt2
(
int
f
,
INT32
a
,
INT32
b
,
int
cl
,
struct
pike_string
*
cf
)
ptrdiff_
t
insopt2
(
int
f
,
INT32
a
,
INT32
b
,
int
cl
,
struct
pike_string
*
cf
)
{
p_instr
*
p
;
...
...
@@ -446,7 +448,7 @@ int insopt2(int f, INT32 a, INT32 b, int cl, struct pike_string *cf)
return
p
-
(
p_instr
*
)
instrbuf
.
s
.
str
;
}
in
t
insopt1
(
int
f
,
INT32
a
,
int
cl
,
struct
pike_string
*
cf
)
ptrdiff_
t
insopt1
(
int
f
,
INT32
a
,
int
cl
,
struct
pike_string
*
cf
)
{
#ifdef PIKE_DEBUG
if
(
!
hasarg
(
f
)
&&
a
)
...
...
@@ -456,7 +458,7 @@ int insopt1(int f, INT32 a, int cl, struct pike_string *cf)
return
insopt2
(
f
,
a
,
0
,
cl
,
cf
);
}
in
t
insopt0
(
int
f
,
int
cl
,
struct
pike_string
*
cf
)
ptrdiff_
t
insopt0
(
int
f
,
int
cl
,
struct
pike_string
*
cf
)
{
#ifdef PIKE_DEBUG
if
(
hasarg
(
f
))
...
...
@@ -654,7 +656,8 @@ static void asm_opt(void)
if
(
a_flag
>
3
)
{
p_instr
*
c
;
INT32
e
,
length
;
ptrdiff_t
e
,
length
;
c
=
(
p_instr
*
)
instrbuf
.
s
.
str
;
length
=
instrbuf
.
s
.
len
/
sizeof
(
p_instr
);
...
...
@@ -676,7 +679,8 @@ static void asm_opt(void)
if
(
a_flag
>
4
)
{
p_instr
*
c
;
INT32
e
,
length
;
ptrdiff_t
e
,
length
;
c
=
(
p_instr
*
)
instrbuf
.
s
.
str
;
length
=
instrbuf
.
s
.
len
/
sizeof
(
p_instr
);
...
...
This diff is collapsed.
Click to expand it.
src/peep.h
+
14
−
14
View file @
7a35a467
/*
* $Id: peep.h,v 1.
5
2000/0
4/20 02:41:45 h
ubb
e
Exp $
* $Id: peep.h,v 1.
6
2000/0
8/14 17:18:06 gr
ubb
a
Exp $
*/
#ifndef PEEP_H
#define PEEP_H
...
...
@@ -11,22 +11,22 @@ extern dynamic_buffer instrbuf;
struct
p_instr_s
;
void
init_bytecode
(
void
);
void
exit_bytecode
(
void
);
in
t
insert_opcode2
(
unsigned
int
f
,
INT32
b
,
INT32
c
,
INT32
current_line
,
struct
pike_string
*
current_file
);
in
t
insert_opcode1
(
unsigned
int
f
,
INT32
b
,
INT32
current_line
,
struct
pike_string
*
current_file
);
in
t
insert_opcode0
(
int
f
,
int
current_line
,
struct
pike_string
*
current_file
);
ptrdiff_
t
insert_opcode2
(
unsigned
int
f
,
INT32
b
,
INT32
c
,
INT32
current_line
,
struct
pike_string
*
current_file
);
ptrdiff_
t
insert_opcode1
(
unsigned
int
f
,
INT32
b
,
INT32
current_line
,
struct
pike_string
*
current_file
);
ptrdiff_
t
insert_opcode0
(
int
f
,
int
current_line
,
struct
pike_string
*
current_file
);
void
update_arg
(
int
instr
,
INT32
arg
);
void
ins_f_byte
(
unsigned
int
b
);
void
assemble
(
void
);
in
t
insopt2
(
int
f
,
INT32
a
,
INT32
b
,
int
cl
,
struct
pike_string
*
cf
);
in
t
insopt1
(
int
f
,
INT32
a
,
int
cl
,
struct
pike_string
*
cf
);
in
t
insopt0
(
int
f
,
int
cl
,
struct
pike_string
*
cf
);
ptrdiff_
t
insopt2
(
int
f
,
INT32
a
,
INT32
b
,
int
cl
,
struct
pike_string
*
cf
);
ptrdiff_
t
insopt1
(
int
f
,
INT32
a
,
int
cl
,
struct
pike_string
*
cf
);
ptrdiff_
t
insopt0
(
int
f
,
int
cl
,
struct
pike_string
*
cf
);
/* Prototypes end here */
#endif
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