pike.git
/
src
/
docode.c
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/docode.c:1:
/* || This file is part of Pike. For copyright information see COPYRIGHT. || Pike is distributed under GPL, LGPL and MPL. See the file COPYING || for more information.
-
|| $Id: docode.c,v 1.
176
2004/
05
/
29
18
:
21
:
05
grubba
Exp $
+
|| $Id: docode.c,v 1.
177
2004/
06
/
02
00
:
09
:
48
nilsson
Exp $
*/ #include "global.h"
-
RCSID("$Id: docode.c,v 1.
176
2004/
05
/
29
18
:
21
:
05
grubba
Exp $");
+
RCSID("$Id: docode.c,v 1.
177
2004/
06
/
02
00
:
09
:
48
nilsson
Exp $");
#include "las.h" #include "program.h" #include "pike_types.h" #include "stralloc.h" #include "interpret.h" #include "constants.h" #include "array.h" #include "pike_macros.h" #include "pike_error.h" #include "pike_memory.h"
pike.git/src/docode.c:415:
int generate_call_function(node *n) { emit0(F_MARK); PUSH_CLEANUP_FRAME(do_pop_mark, 0); do_docode(CDR(n),DO_NOT_COPY); emit0(F_CALL_FUNCTION); POP_AND_DONT_CLEANUP; return 1; }
-
static
inline
struct compiler_frame *find_local_frame(INT32 depth)
+
static
INLINE
struct compiler_frame *find_local_frame(INT32 depth)
{ struct compiler_frame *f=Pike_compiler->compiler_frame; while(--depth>=0) f=f->previous; return f; } /* Emit code for a function call to the identifier reference #id, * with the arguments specified by args. */ int do_lfun_call(int id, node *args)