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.
48
1998/04/06
04
:
09
:
05
hubbe Exp $");
+
RCSID("$Id: lex.c,v 1.
49
1998/04/06
20
:
36
:
20
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:44:
void exit_lex(void) { #ifdef DEBUG if(p_flag) { int e; fprintf(stderr,"Opcode usage: (opcode, runned, compiled)\n"); for(e=0;e<F_MAX_OPCODE-F_OFFSET;e++) {
-
fprintf(stderr,":: %-
20s
%8ld %8ld\n",
+
fprintf(stderr,":: %-
30s
%8ld %8ld\n",
low_get_f_name(e+F_OFFSET,0), (long)instrs[e].runs, (long)instrs[e].compiles); } #ifdef INSTR_PROFILING for(e=0;e<F_MAX_OPCODE-F_OFFSET;e++) { int d; for(d=0;d<256;d++)