Changeset 1095
- Timestamp:
- 2012-07-31T18:21:50+02:00 (10 months ago)
- Location:
- trunk
- Files:
-
- 2 added
- 1 deleted
- 5 edited
-
devel/prepare (deleted)
-
devel/prepare.cfg.example (modified) (1 diff)
-
devel/prepare.mak (added)
-
devel/run (modified) (6 diffs)
-
xcache/xc_const_string.c (modified) (1 diff)
-
xcache/xc_const_string_opcodes_php5.0.h (modified) (1 diff)
-
xcache/xc_const_string_opcodes_php5.1.h (modified) (4 diffs)
-
xcache/xc_const_string_opcodes_php5.3.h (added)
Legend:
- Unmodified
- Added
- Removed
-
trunk/devel/prepare.cfg.example
r998 r1095 4 4 PHP5_1_DIR= 5 5 PHP5_3_DIR= 6 PHP5_4_DIR= 6 7 PHP6_x_DIR= 7 8 -
trunk/devel/run
r1062 r1095 2 2 # this script is for developers only 3 3 set -e 4 MAKE=/usr/bin/make 4 5 5 6 . devel/run.cfg … … 10 11 case "$type" in 11 12 prep*) 12 exec ./devel/prepare 13 shift 14 exec $MAKE -f devel/prepare.mak "$@" 15 ;; 16 tags) 17 rm -f tags 18 shift 19 exec $MAKE -f devel/prepare.mak tags "$@" 13 20 ;; 14 21 dep*) … … 60 67 ;; 61 68 xtest) 62 exec /usr/bin/make -f devel/test.mak 63 ;; 64 tags) 65 exec ./devel/prepare tags 69 exec $MAKE -f devel/test.mak 66 70 ;; 67 71 esac … … 102 106 phpize) 103 107 if [[ -r Makefile ]]; then 104 makexcachesvnclean || true108 $MAKE xcachesvnclean || true 105 109 fi 106 110 ;; … … 146 150 esac 147 151 148 LANG=C /usr/bin/make$MAKEOPTS "${MAKEARGS[@]}" 2>&1 \152 LANG=C $MAKE $MAKEOPTS "${MAKEARGS[@]}" 2>&1 \ 149 153 | sed -ur \ 150 154 -e 's#Werror=implicit-function-declaration#We/rror=i/mplicit-function-declaration#' \ … … 207 211 ;; 208 212 retest) 209 exec makexcachetest "$@" TESTS="`grep '^/.*\.phpt$' php_test_results_*.txt | uniq | xargs`"213 exec $MAKE xcachetest "$@" TESTS="`grep '^/.*\.phpt$' php_test_results_*.txt | uniq | xargs`" 210 214 ;; 211 215 test) 212 216 case "${args[0]}" in 213 217 *.phpt) 214 exec makexcachetest TEST_ARGS=-v TESTS="${args[*]}"218 exec $MAKE xcachetest TEST_ARGS=-v TESTS="${args[*]}" 215 219 ;; 216 220 */) 217 exec makexcachetest TESTS="${args[@]}"221 exec $MAKE xcachetest TESTS="${args[@]}" 218 222 ;; 219 223 *) 220 exec makexcachetest224 exec $MAKE xcachetest 221 225 ;; 222 226 esac -
trunk/xcache/xc_const_string.c
r982 r1095 66 66 #elif defined(ZEND_ENGINE_2_4) 67 67 # include "xc_const_string_opcodes_php5.4.h" 68 #elif defined(ZEND_ENGINE_2_3) 69 # include "xc_const_string_opcodes_php5.3.h" 68 70 #elif defined(ZEND_ENGINE_2_1) 69 71 # include "xc_const_string_opcodes_php5.1.h" -
trunk/xcache/xc_const_string_opcodes_php5.0.h
r982 r1095 1 /* size = 1 49*/1 /* size = 150 */ 2 2 static const char *const xc_opcode_names[] = { 3 3 /* 0 */ "NOP", -
trunk/xcache/xc_const_string_opcodes_php5.1.h
r982 r1095 1 /* size = 15 4*/1 /* size = 151 */ 2 2 static const char *const xc_opcode_names[] = { 3 3 /* 0 */ "NOP", … … 70 70 /* 67 */ "SEND_REF", 71 71 /* 68 */ "NEW", 72 /* 69 */ " INIT_NS_FCALL_BY_NAME",72 /* 69 */ "UNDEF", 73 73 /* 70 */ "FREE", 74 74 /* 71 */ "INIT_ARRAY", … … 101 101 /* 98 */ "FETCH_DIM_TMP_VAR", 102 102 /* 99 */ "FETCH_CONSTANT", 103 /* 100 */ " GOTO",103 /* 100 */ "UNDEF", 104 104 /* 101 */ "EXT_STMT", 105 105 /* 102 */ "EXT_FCALL_BEGIN", … … 144 144 /* 141 */ "DECLARE_FUNCTION", 145 145 /* 142 */ "RAISE_ABSTRACT_ERROR", 146 /* 143 */ " DECLARE_CONST",146 /* 143 */ "UNDEF", 147 147 /* 144 */ "ADD_INTERFACE", 148 /* 145 */ " DECLARE_INHERITED_CLASS_DELAYED",148 /* 145 */ "UNDEF", 149 149 /* 146 */ "VERIFY_ABSTRACT_CLASS", 150 150 /* 147 */ "ASSIGN_DIM", 151 151 /* 148 */ "ISSET_ISEMPTY_PROP_OBJ", 152 152 /* 149 */ "HANDLE_EXCEPTION", 153 /* 150 */ "USER_OPCODE", 154 /* 151 */ "UNDEF", 155 /* 152 */ "JMP_SET", 156 /* 153 */ "DECLARE_LAMBDA_FUNCTION" 153 /* 150 */ "USER_OPCODE" 157 154 };
Note: See TracChangeset
for help on using the changeset viewer.

