diff options
author | wolfbeast <mcwerewolf@gmail.com> | 2017-06-26 23:40:37 +0200 |
---|---|---|
committer | wolfbeast <mcwerewolf@gmail.com> | 2018-02-03 17:45:38 +0100 |
commit | 77a482feace5aed4a61245d5894994a50517aa40 (patch) | |
tree | 034061dde92820c8a1474e8ec2415ef9816d75d6 /js/src/jit/VMFunctions.cpp | |
parent | cec903c6b2fd64b076d4b3232ef8f6bf02eebead (diff) | |
download | UXP-77a482feace5aed4a61245d5894994a50517aa40.tar UXP-77a482feace5aed4a61245d5894994a50517aa40.tar.gz UXP-77a482feace5aed4a61245d5894994a50517aa40.tar.lz UXP-77a482feace5aed4a61245d5894994a50517aa40.tar.xz UXP-77a482feace5aed4a61245d5894994a50517aa40.zip |
Remove VerifyBarriers() and MaybeVerifyBarriers() stubs and callers.
Diffstat (limited to 'js/src/jit/VMFunctions.cpp')
-rw-r--r-- | js/src/jit/VMFunctions.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/js/src/jit/VMFunctions.cpp b/js/src/jit/VMFunctions.cpp index a299d27a5..4edbc3c83 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); |