Changeset 11 for trunk/processor/processor.m4
- Timestamp:
- 2006-05-24T09:52:48+02:00 (7 years ago)
- File:
-
- 1 edited
-
trunk/processor/processor.m4 (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/processor/processor.m4
r4 r11 365 365 DISPATCH(int, op_type) 366 366 367 #ifdef IS_CV 368 # define XCACHE_IS_CV IS_CV 369 #else 370 /* compatible with zend optimizer */ 371 # define XCACHE_IS_CV 16 372 #endif 367 373 assert(src->op_type == IS_CONST || 368 374 src->op_type == IS_VAR || 369 #ifdef IS_CV 370 src->op_type == IS_CV || 371 #else 372 src->op_type == 16 || /* zend optimizer */ 373 #endif 375 src->op_type == XCACHE_IS_CV || 374 376 src->op_type == IS_TMP_VAR || 375 377 src->op_type == IS_UNUSED); 378 #undef XCACHE_IS_CV 376 379 dnl dirty dispatch 377 380 DISABLECHECK(` … … 463 466 do { 464 467 dnl RESTORE is done above! 468 zend_uint ii; 465 469 int i; 466 470 … … 481 485 /* useless */ 482 486 COPY(prototype) 483 STRUCT_ARRAY (num_args, zend_arg_info, arg_info)487 STRUCT_ARRAY_I(num_args, zend_arg_info, arg_info) 484 488 DISPATCH(zend_uint, num_args) 485 489 DISPATCH(zend_uint, required_num_args) … … 490 494 IFCOPY(`memcpy(dst->arg_types, src->arg_types, sizeof(src->arg_types[0]) * (src->arg_types[0]+1));') 491 495 IFDASM(`do { 496 zend_uint ii; 492 497 int i; 493 498 zval *zv; … … 528 533 processor->active_opcodes_src = src->opcodes; 529 534 ')') 530 STRUCT_ARRAY (last, zend_op, opcodes)535 STRUCT_ARRAY_I(last, zend_op, opcodes) 531 536 popdef(`AFTER_ALLOC') 532 537 DISPATCH(zend_uint, last) … … 546 551 DISPATCH(zend_uint, T) 547 552 548 STRUCT_ARRAY (last_brk_cont, zend_brk_cont_element, brk_cont_array)553 STRUCT_ARRAY_I(last_brk_cont, zend_brk_cont_element, brk_cont_array) 549 554 DISPATCH(zend_uint, last_brk_cont) 550 555 DISPATCH(zend_uint, current_brk_cont)
Note: See TracChangeset
for help on using the changeset viewer.

