pike.git
/
src
/
lex.c
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/lex.c:1:
/*\ ||| This file a part of Pike, and is copyright by Fredrik Hubinette ||| Pike is distributed as GPL (General Public License) ||| See the files COPYING and DISCLAIMER for more information. \*/ /**/ #include "global.h"
-
RCSID("$Id: lex.c,v 1.
78
2000/
04
/
25
09
:
32
:
46
hubbe Exp $");
+
RCSID("$Id: lex.c,v 1.
79
2000/
05
/
01
02
:
11
:
25
hubbe Exp $");
#include "language.h" #include "array.h" #include "lex.h" #include "stralloc.h" #include "dynamic_buffer.h" #include "constants.h" #include "hashtable.h" #include "stuff.h" #include "pike_memory.h" #include "interpret.h"
pike.git/src/lex.c:147:
{ "--Loop", F_DEC_LOOP, I_ISJUMP }, { "--Loop!=", F_DEC_NEQ_LOOP, I_ISJUMP }, { "&&", F_LAND, I_ISJUMP }, { "||", F_LOR, I_ISJUMP }, { "==||", F_EQ_OR, I_ISJUMP }, { "==&&", F_EQ_AND, I_ISJUMP }, { "catch", F_CATCH, I_ISJUMP }, { "foreach", F_FOREACH, I_ISJUMP }, { "pointer", F_POINTER, I_ISPOINTER }, { "data", F_DATA, I_DATA },
+
{ "byte", F_BYTE, I_DATA },
-
{ "local function call",F_CALL_LFUN, I_HASARG },
-
{ "local function call and pop",F_CALL_LFUN_AND_POP, I_HASARG },
+
{ "lvalue_list", F_LVALUE_LIST,0 }, { "return", F_RETURN,0 }, { "return 0", F_RETURN_0,0 }, { "return 1", F_RETURN_1,0 }, { "return local", F_RETURN_LOCAL, I_HASARG }, { "return if true", F_RETURN_IF_TRUE, 0 }, { "while", F_WHILE,0 }, { "label", F_LABEL,I_HASARG }, { "align", F_ALIGN, I_HASARG }, { "call", F_APPLY, I_HASARG }, { "int index", F_POS_INT_INDEX, I_HASARG }, { "-int index", F_NEG_INT_INDEX, I_HASARG }, { "apply and pop", F_APPLY_AND_POP, I_HASARG }, { "nop", F_NOP,0 },
-
{ "
mark
& call
",
F_
MARK
_
APPLY
,
I_HASARG
},
-
{ "mark, call & pop", F_MARK_APPLY_POP, I_HASARG },
+
{ "
function
start
", F_
START
_
FUNCTION
,
0
},
{ "apply and return", F_APPLY_AND_RETURN, I_HASARG }, { "call function", F_CALL_FUNCTION, 0 }, { "call function & return", F_CALL_FUNCTION_AND_RETURN, 0 }, }; struct instr instrs[F_MAX_INSTR - F_OFFSET]; struct reserved { struct hash_entry link;