a41a8a74f0
Hphpd's Jump command has been fundamentally broken for a long time. It was originally implemented to run the byte code in a modified way which didn't make state changes, and wait for the destination offset to be reached. We lost the ability to do that long ago, and the implementation of this command has atrophied since. As it stands now, if you're lucky it might act like "run until", which is the opposite of what it is documented to do. I've removed the command entirely. Fixing it is a very large effort which we might consider some time in the future.
58 linhas
2.9 KiB
C
58 linhas
2.9 KiB
C
/*
|
|
+----------------------------------------------------------------------+
|
|
| HipHop for PHP |
|
|
+----------------------------------------------------------------------+
|
|
| Copyright (c) 2010- Facebook, Inc. (http://www.facebook.com) |
|
|
+----------------------------------------------------------------------+
|
|
| This source file is subject to version 3.01 of the PHP license, |
|
|
| that is bundled with this package in the file LICENSE, and is |
|
|
| available through the world-wide-web at the following url: |
|
|
| http://www.php.net/license/3_01.txt |
|
|
| If you did not receive a copy of the PHP license and are unable to |
|
|
| obtain it through the world-wide-web, please send a note to |
|
|
| license@php.net so we can mail you a copy immediately. |
|
|
+----------------------------------------------------------------------+
|
|
*/
|
|
|
|
#ifndef incl_HPHP_EVAL_DEBUGGER_CMD_ALL_H_
|
|
#define incl_HPHP_EVAL_DEBUGGER_CMD_ALL_H_
|
|
|
|
#include <runtime/eval/debugger/cmd/cmd_eval.h>
|
|
#include <runtime/eval/debugger/cmd/cmd_abort.h>
|
|
#include <runtime/eval/debugger/cmd/cmd_break.h>
|
|
#include <runtime/eval/debugger/cmd/cmd_continue.h>
|
|
#include <runtime/eval/debugger/cmd/cmd_down.h>
|
|
#include <runtime/eval/debugger/cmd/cmd_exception.h>
|
|
#include <runtime/eval/debugger/cmd/cmd_frame.h>
|
|
#include <runtime/eval/debugger/cmd/cmd_global.h>
|
|
#include <runtime/eval/debugger/cmd/cmd_help.h>
|
|
#include <runtime/eval/debugger/cmd/cmd_info.h>
|
|
#include <runtime/eval/debugger/cmd/cmd_constant.h>
|
|
#include <runtime/eval/debugger/cmd/cmd_list.h>
|
|
#include <runtime/eval/debugger/cmd/cmd_machine.h>
|
|
#include <runtime/eval/debugger/cmd/cmd_next.h>
|
|
#include <runtime/eval/debugger/cmd/cmd_out.h>
|
|
#include <runtime/eval/debugger/cmd/cmd_print.h>
|
|
#include <runtime/eval/debugger/cmd/cmd_quit.h>
|
|
#include <runtime/eval/debugger/cmd/cmd_run.h>
|
|
#include <runtime/eval/debugger/cmd/cmd_step.h>
|
|
#include <runtime/eval/debugger/cmd/cmd_thread.h>
|
|
#include <runtime/eval/debugger/cmd/cmd_up.h>
|
|
#include <runtime/eval/debugger/cmd/cmd_variable.h>
|
|
#include <runtime/eval/debugger/cmd/cmd_where.h>
|
|
#include <runtime/eval/debugger/cmd/cmd_extended.h>
|
|
#include <runtime/eval/debugger/cmd/cmd_user.h>
|
|
#include <runtime/eval/debugger/cmd/cmd_zend.h>
|
|
#include <runtime/eval/debugger/cmd/cmd_shell.h>
|
|
#include <runtime/eval/debugger/cmd/cmd_interrupt.h>
|
|
#include <runtime/eval/debugger/cmd/cmd_example.h>
|
|
#include <runtime/eval/debugger/cmd/cmd_extension.h>
|
|
#include <runtime/eval/debugger/cmd/cmd_signal.h>
|
|
#include <runtime/eval/debugger/cmd/cmd_macro.h>
|
|
#include <runtime/eval/debugger/cmd/cmd_config.h>
|
|
#include <runtime/eval/debugger/cmd/cmd_instrument.h>
|
|
#include <runtime/eval/debugger/cmd/cmd_complete.h>
|
|
//tag: new_cmd.php inserts new command here, do NOT remove/modify this line
|
|
|
|
#endif // incl_HPHP_EVAL_DEBUGGER_CMD_ALL_H_
|