pike.git/
src/
interpreter.h
Branch:
Tag:
Non-build tags
All tags
No tags
2002-04-08
2002-04-08 01:15:06 by Martin Stjernholm <mast@lysator.liu.se>
98a775a55ff96fa14174a4d85a835357b8b0166b (
7
lines) (+
4
/-
3
)
[
Show
|
Annotate
]
Branch:
7.9
More accurate cpp test for sparc machine code.
Rev: src/interpreter.h:1.74
39:
#define FETCH #define LOW_GET_ARG() ((PROG_COUNTER++)[0])
-
#if
defined(
PIKE_
USE
_
MACHINE_CODE)
&&
defined(sparc)
+
#if PIKE_
BYTECODE
_
METHOD
==
PIKE_BYTECODE_SPARC
#define LOW_GET_JUMP() (PROG_COUNTER[0]) #define LOW_SKIPJUMP() (++PROG_COUNTER)
-
#else /*
!(
PIKE_
USE
_
MACHINE_CODE
&&
sparc)
*/
+
#else /* PIKE_
BYTECODE
_
METHOD
!=
PIKE_BYTECODE_SPARC
*/
#define LOW_GET_JUMP() EXTRACT_INT(PROG_COUNTER) #define LOW_SKIPJUMP() (PROG_COUNTER += sizeof(INT32))
-
#endif /* PIKE_
USE
_
MACHINE_CODE
&& sparc
*/
+
#endif /* PIKE_
BYTECODE
_
METHOD
*/
#ifdef PIKE_DEBUG