forked from facebook/hhvm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdebug-guards.cpp
53 lines (43 loc) · 2.11 KB
/
debug-guards.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/*
+----------------------------------------------------------------------+
| HipHop for PHP |
+----------------------------------------------------------------------+
| Copyright (c) 2010-2014 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 |
| [email protected] so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
*/
#include "hphp/runtime/vm/jit/debug-guards.h"
#include "hphp/runtime/vm/jit/mc-generator.h"
#include "hphp/runtime/vm/jit/service-requests-inline.h"
#include "hphp/runtime/vm/jit/types.h"
#include "hphp/runtime/vm/jit/back-end-x64.h" // XXX Layering violation.
namespace HPHP { namespace jit {
static constexpr size_t dbgOff =
offsetof(ThreadInfo, m_reqInjectionData) +
RequestInjectionData::debuggerReadOnlyOffset();
//////////////////////////////////////////////////////////////////////
void addDbgGuardImpl(SrcKey sk, SrcRec* srcRec) {
TCA realCode = srcRec->getTopTranslation();
if (!realCode) {
// no translations, nothing to do
return;
}
TCA dbgGuard = mcg->code.main().frontier();
mcg->backEnd().addDbgGuard(mcg->code.main(), mcg->code.cold(), sk, dbgOff);
// Emit a jump to the actual code
//
// XXX kJmpLen access here is a layering violation.
mcg->backEnd().prepareForSmash(mcg->code.main(), x64::kJmpLen);
TCA dbgBranchGuardSrc = mcg->code.main().frontier();
mcg->backEnd().emitSmashableJump(mcg->code.main(), realCode, CC_None);
// Add it to srcRec
srcRec->addDebuggerGuard(dbgGuard, dbgBranchGuardSrc);
}
}}