summaryrefslogtreecommitdiff
path: root/js/src/jit/VMFunctions.cpp
diff options
context:
space:
mode:
authorwolfbeast <mcwerewolf@gmail.com>2017-06-26 23:40:37 +0200
committerwolfbeast <mcwerewolf@gmail.com>2018-02-03 17:45:38 +0100
commit49296aa8c67a0bab3ec3e8f065d12a554413b811 (patch)
tree034061dde92820c8a1474e8ec2415ef9816d75d6 /js/src/jit/VMFunctions.cpp
parentb32e5c0e56cb7ad69b2e170e2798fd29d6342544 (diff)
downloaduxp-49296aa8c67a0bab3ec3e8f065d12a554413b811.tar.gz
Remove VerifyBarriers() and MaybeVerifyBarriers() stubs and callers.
Diffstat (limited to 'js/src/jit/VMFunctions.cpp')
-rw-r--r--js/src/jit/VMFunctions.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/js/src/jit/VMFunctions.cpp b/js/src/jit/VMFunctions.cpp
index a299d27a5d..4edbc3c836 100644
--- a/js/src/jit/VMFunctions.cpp
+++ b/js/src/jit/VMFunctions.cpp
@@ -135,7 +135,6 @@ CheckOverRecursed(JSContext* cx)
#else
JS_CHECK_RECURSION(cx, return false);
#endif
- gc::MaybeVerifyBarriers(cx);
return cx->runtime()->handleInterrupt(cx);
}
@@ -180,7 +179,6 @@ CheckOverRecursedWithExtra(JSContext* cx, BaselineFrame* frame,
JS_CHECK_RECURSION_WITH_SP(cx, checkSp, return false);
#endif
- gc::MaybeVerifyBarriers(cx);
return cx->runtime()->handleInterrupt(cx);
}
@@ -465,8 +463,6 @@ SetProperty(JSContext* cx, HandleObject obj, HandlePropertyName name, HandleValu
bool
InterruptCheck(JSContext* cx)
{
- gc::MaybeVerifyBarriers(cx);
-
{
JSRuntime* rt = cx->runtime();
JitRuntime::AutoPreventBackedgePatching apbp(rt);