1 /* $NetBSD: luac.c,v 1.1.1.2 2012/03/15 00:08:14 alnsn Exp $ */
4 ** $Id: luac.c,v 1.1.1.2 2012/03/15 00:08:14 alnsn Exp $
5 ** Lua compiler (saves bytecodes to files; also list bytecodes)
6 ** See Copyright Notice in lua.h
28 #define PROGNAME "luac" /* default program name */
29 #define OUTPUT PROGNAME ".out" /* default output file */
31 static int listing
=0; /* list bytecodes? */
32 static int dumping
=1; /* dump bytecodes? */
33 static int stripping
=0; /* strip debug information? */
34 static char Output
[]={ OUTPUT
}; /* default output file name */
35 static const char* output
=Output
; /* actual output file name */
36 static const char* progname
=PROGNAME
; /* actual program name */
38 static void fatal(const char* message
)
40 fprintf(stderr
,"%s: %s\n",progname
,message
);
44 static void cannot(const char* what
)
46 fprintf(stderr
,"%s: cannot %s %s: %s\n",progname
,what
,output
,strerror(errno
));
50 static void usage(const char* message
)
53 fprintf(stderr
,"%s: unrecognized option " LUA_QS
"\n",progname
,message
);
55 fprintf(stderr
,"%s: %s\n",progname
,message
);
57 "usage: %s [options] [filenames].\n"
58 "Available options are:\n"
61 " -o name output to file " LUA_QL("name") " (default is \"%s\")\n"
63 " -s strip debug information\n"
64 " -v show version information\n"
65 " -- stop handling options\n",
70 #define IS(s) (strcmp(argv[i],s)==0)
72 static int doargs(int argc
, char* argv
[])
76 if (argv
[0]!=NULL
&& *argv
[0]!=0) progname
=argv
[0];
77 for (i
=1; i
<argc
; i
++)
79 if (*argv
[i
]!='-') /* end of options; keep it */
81 else if (IS("--")) /* end of options; skip it */
84 if (version
) ++version
;
87 else if (IS("-")) /* end of options; use stdin */
89 else if (IS("-l")) /* list */
91 else if (IS("-o")) /* output file */
94 if (output
==NULL
|| *output
==0) usage(LUA_QL("-o") " needs argument");
95 if (IS("-")) output
=NULL
;
97 else if (IS("-p")) /* parse only */
99 else if (IS("-s")) /* strip debug information */
101 else if (IS("-v")) /* show version */
103 else /* unknown option */
106 if (i
==argc
&& (listing
|| !dumping
))
113 printf("%s %s\n",LUA_RELEASE
,LUA_COPYRIGHT
);
114 if (version
==argc
-1) exit(EXIT_SUCCESS
);
119 #define toproto(L,i) (clvalue(L->top+(i))->l.p)
121 static const Proto
* combine(lua_State
* L
, int n
)
124 return toproto(L
,-1);
128 Proto
* f
=luaF_newproto(L
);
129 setptvalue2s(L
,L
->top
,f
); incr_top(L
);
130 f
->source
=luaS_newliteral(L
,"=(" PROGNAME
")");
133 f
->code
=luaM_newvector(L
,pc
,Instruction
);
135 f
->p
=luaM_newvector(L
,n
,Proto
*);
140 f
->p
[i
]=toproto(L
,i
-n
-1);
141 f
->code
[pc
++]=CREATE_ABx(OP_CLOSURE
,0,i
);
142 f
->code
[pc
++]=CREATE_ABC(OP_CALL
,0,1,1);
144 f
->code
[pc
++]=CREATE_ABC(OP_RETURN
,0,1,0);
149 static int writer(lua_State
* L
, const void* p
, size_t size
, void* u
)
152 return (fwrite(p
,size
,1,(FILE*)u
)!=1) && (size
!=0);
160 static int pmain(lua_State
* L
)
162 struct Smain
* s
= (struct Smain
*)lua_touserdata(L
, 1);
167 if (!lua_checkstack(L
,argc
)) fatal("too many input files");
168 for (i
=0; i
<argc
; i
++)
170 const char* filename
=IS("-") ? NULL
: argv
[i
];
171 if (luaL_loadfile(L
,filename
)!=0) fatal(lua_tostring(L
,-1));
174 if (listing
) luaU_print(f
,listing
>1);
177 FILE* D
= (output
==NULL
) ? stdout
: fopen(output
,"wb");
178 if (D
==NULL
) cannot("open");
180 luaU_dump(L
,f
,writer
,D
,stripping
);
182 if (ferror(D
)) cannot("write");
183 if (fclose(D
)) cannot("close");
188 int main(int argc
, char* argv
[])
192 int i
=doargs(argc
,argv
);
194 if (argc
<=0) usage("no input files given");
196 if (L
==NULL
) fatal("not enough memory for state");
199 if (lua_cpcall(L
,pmain
,&s
)!=0) fatal(lua_tostring(L
,-1));