summaryrefslogtreecommitdiff
path: root/Source/JavaScriptCore/bytecode/Watchpoint.cpp
diff options
context:
space:
mode:
authorLorry Tar Creator <lorry-tar-importer@lorry>2015-05-20 09:56:07 +0000
committerLorry Tar Creator <lorry-tar-importer@lorry>2015-05-20 09:56:07 +0000
commit41386e9cb918eed93b3f13648cbef387e371e451 (patch)
treea97f9d7bd1d9d091833286085f72da9d83fd0606 /Source/JavaScriptCore/bytecode/Watchpoint.cpp
parente15dd966d523731101f70ccf768bba12435a0208 (diff)
downloadWebKitGtk-tarball-41386e9cb918eed93b3f13648cbef387e371e451.tar.gz
webkitgtk-2.4.9webkitgtk-2.4.9
Diffstat (limited to 'Source/JavaScriptCore/bytecode/Watchpoint.cpp')
-rw-r--r--Source/JavaScriptCore/bytecode/Watchpoint.cpp67
1 files changed, 9 insertions, 58 deletions
diff --git a/Source/JavaScriptCore/bytecode/Watchpoint.cpp b/Source/JavaScriptCore/bytecode/Watchpoint.cpp
index 761c06744..f29c2141c 100644
--- a/Source/JavaScriptCore/bytecode/Watchpoint.cpp
+++ b/Source/JavaScriptCore/bytecode/Watchpoint.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2012-2015 Apple Inc. All rights reserved.
+ * Copyright (C) 2012, 2013 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -26,32 +26,16 @@
#include "config.h"
#include "Watchpoint.h"
+#include "LinkBuffer.h"
#include <wtf/CompilationThread.h>
#include <wtf/PassRefPtr.h>
namespace JSC {
-void StringFireDetail::dump(PrintStream& out) const
-{
- out.print(m_string);
-}
-
Watchpoint::~Watchpoint()
{
- if (isOnList()) {
- // This will happen if we get destroyed before the set fires. That's totally a valid
- // possibility. For example:
- //
- // CodeBlock has a Watchpoint on transition from structure S1. The transition never
- // happens, but the CodeBlock gets destroyed because of GC.
+ if (isOnList())
remove();
- }
-}
-
-void Watchpoint::fire(const FireDetail& detail)
-{
- RELEASE_ASSERT(!isOnList());
- fireInternal(detail);
}
WatchpointSet::WatchpointSet(WatchpointState state)
@@ -81,48 +65,20 @@ void WatchpointSet::add(Watchpoint* watchpoint)
m_state = IsWatched;
}
-void WatchpointSet::fireAllSlow(const FireDetail& detail)
+void WatchpointSet::fireAllSlow()
{
ASSERT(state() == IsWatched);
WTF::storeStoreFence();
- m_state = IsInvalidated; // Do this first. Needed for adaptive watchpoints.
- fireAllWatchpoints(detail);
+ fireAllWatchpoints();
+ m_state = IsInvalidated;
WTF::storeStoreFence();
}
-void WatchpointSet::fireAllSlow(const char* reason)
-{
- fireAllSlow(StringFireDetail(reason));
-}
-
-void WatchpointSet::fireAllWatchpoints(const FireDetail& detail)
+void WatchpointSet::fireAllWatchpoints()
{
- // In case there are any adaptive watchpoints, we need to make sure that they see that this
- // watchpoint has been already invalidated.
- RELEASE_ASSERT(hasBeenInvalidated());
-
- while (!m_set.isEmpty()) {
- Watchpoint* watchpoint = m_set.begin();
- ASSERT(watchpoint->isOnList());
-
- // Removing the Watchpoint before firing it makes it possible to implement watchpoints
- // that add themselves to a different set when they fire. This kind of "adaptive"
- // watchpoint can be used to track some semantic property that is more fine-graiend than
- // what the set can convey. For example, we might care if a singleton object ever has a
- // property called "foo". We can watch for this by checking if its Structure has "foo" and
- // then watching its transitions. But then the watchpoint fires if any property is added.
- // So, before the watchpoint decides to invalidate any code, it can check if it is
- // possible to add itself to the transition watchpoint set of the singleton object's new
- // Structure.
- watchpoint->remove();
- ASSERT(m_set.begin() != watchpoint);
- ASSERT(!watchpoint->isOnList());
-
- watchpoint->fire(detail);
- // After we fire the watchpoint, the watchpoint pointer may be a dangling pointer. That's
- // fine, because we have no use for the pointer anymore.
- }
+ while (!m_set.isEmpty())
+ m_set.begin()->fire();
}
void InlineWatchpointSet::add(Watchpoint* watchpoint)
@@ -130,11 +86,6 @@ void InlineWatchpointSet::add(Watchpoint* watchpoint)
inflate()->add(watchpoint);
}
-void InlineWatchpointSet::fireAll(const char* reason)
-{
- fireAll(StringFireDetail(reason));
-}
-
WatchpointSet* InlineWatchpointSet::inflateSlow()
{
ASSERT(isThin());