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.70 2000/04/18 19:09:17 grubba Exp $");
+ RCSID("$Id: lex.c,v 1.71 2000/04/18 20:26:30 grubba 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:66: Inside #if defined(PIKE_DEBUG) and #if defined(INSTR_PROFILING)
if(instrs[e].reruns[d])
fprintf(stderr,"%010ld::%s - %s\n",instrs[e].reruns[d],low_get_f_name(e+F_OFFSET,0),low_get_f_name(d+F_OFFSET,0));
}
#endif
}
#endif
}
#define OPCODE0(OP,DESC) { DESC, OP, 0 },
#define OPCODE1(OP,DESC) { DESC, OP, I_HASARG },
- #define OPCODE2(OP,DESC) { DESC, OP, I_TWO_ARGS },
+ #define OPCODE1ACC(OP,DESC) { DESC, OP, I_TWO_ARGS },
+ #define OPCODE2(OP,DESC) { DESC, OP, I_HASARG },
#define OPCODE0_TAIL(OP,DESC) { DESC, OP, 0 },
#define OPCODE1_TAIL(OP,DESC) { DESC, OP, I_HASARG },
- #define OPCODE2_TAIL(OP,DESC) { DESC, OP, I_TWO_ARGS },
+ #define OPCODE1ACC_TAIL(OP,DESC) { DESC, OP, I_TWO_ARGS },
+ #define OPCODE2_TAIL(OP,DESC) { DESC, OP, I_HASARG },
#define LEXER
struct keyword instr_names[]=
{
#include "interpret_protos.h"
{ "!", F_NOT,0 },
{ "!=", F_NE,0 },
{ "%", F_MOD,0 },
{ "%=", F_MOD_EQ,0 },