Arquivos
hhvm/hphp/runtime/debugger/debugger_client_settings.h
T
Mike Magruder c158e4a24b Cleanup small stepping
Small stepping, which is stepping over sub-expressions (kinda), worked but was a little goofy. The mode was set on the client, passed over with control flow commands, placed on the execution context, then retrieved from there and used by those same flow commands. Removed the execution context part of it, since it was useless, and factored grabbing the offsets into the flow cmds where they belong instead of doing it all the time.

The run cmd also had some notion of small stepping, but you'll note it was never sent over the wire. Nuked that, since it never mattered anyway.
2013-06-11 11:47:28 -07:00

60 linhas
2.5 KiB
C++

/*
+----------------------------------------------------------------------+
| HipHop for PHP |
+----------------------------------------------------------------------+
| Copyright (c) 2010-2013 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_CLIENT_SETTINGS_H_
#define incl_HPHP_EVAL_DEBUGGER_CLIENT_SETTINGS_H_
#define HPHPD_CLIENT_SETTINGS \
HPHPD_CLIENT_SETTING(ApiModeSerialize, bool, false) \
HPHPD_CLIENT_SETTING(MaxCodeLines, int, -1) \
HPHPD_CLIENT_SETTING(SmallStep, bool, false) \
class DebuggerClientSettings {
public:
#define HPHPD_CLIENT_SETTING(name, type, defval) type m_s##name;
HPHPD_CLIENT_SETTINGS
#undef HPHPD_CLIENT_SETTING
bool dummy;
DebuggerClientSettings() :
#define HPHPD_CLIENT_SETTING(name, type, defval) m_s##name(defval),
HPHPD_CLIENT_SETTINGS
#undef HPHPD_CLIENT_SETTING
dummy(false) {}
};
#define DECLARE_DBG_CLIENT_SETTING \
DebuggerClientSettings m_dbgClientSettings; \
#define HPHPD_CLIENT_SETTING(name, type, defval) \
type getDebuggerClient##name () const { \
return m_dbgClientSettings.m_s##name; \
} \
void setDebuggerClient##name (type in##name) { \
m_dbgClientSettings.m_s##name = in##name; \
} \
#define DECLARE_DBG_CLIENT_SETTING_ACCESSORS \
HPHPD_CLIENT_SETTINGS
// leaving HPHPD_CLIENT_SETTING defined so that DECLARE_DBG_SETTING_ACCESSORS is
// effective
///////////////////////////////////////////////////////////////////////////////
#endif // incl_HPHP_EVAL_DEBUGGER_CLIENT_SETTINGS_H_