Branch: Tag:

2002-11-10

2002-11-10 20:19:18 by Henrik Grubbström (Grubba) <grubba@grubba.org>

Added OPCODE{0,1,2}_ALIAS() to simplify opcode alias handling in --with-machine-code.

Rev: src/interpret.c:1.278
Rev: src/interpret_functions.h:1.114
Rev: src/interpreter.h:1.80
Rev: src/lex.c:1.112
Rev: src/opcodes.h:1.32

2:   || 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: interpret.c,v 1.277 2002/11/09 17:03:53 grubba Exp $ + || $Id: interpret.c,v 1.278 2002/11/10 20:19:18 grubba Exp $   */      #include "global.h" - RCSID("$Id: interpret.c,v 1.277 2002/11/09 17:03:53 grubba Exp $"); + RCSID("$Id: interpret.c,v 1.278 2002/11/10 20:19:18 grubba Exp $");   #include "interpret.h"   #include "object.h"   #include "program.h"
914:   #define OPCODE1_TAILBRANCH(O,N,F,C) TEST_OPCODE1(O,N,F,C)   #define OPCODE2_TAILBRANCH(O,N,F,C) TEST_OPCODE2(O,N,F,C)    + #define OPCODE0_ALIAS(O,N,F,C) + #define OPCODE1_ALIAS(O,N,F,C) + #define OPCODE2_ALIAS(O,N,F,C) +    #undef HAVE_COMPUTED_GOTO      #ifdef __GNUC__