Title: [198396] trunk/Source/_javascript_Core
- Revision
- 198396
- Author
- [email protected]
- Date
- 2016-03-18 04:36:49 -0700 (Fri, 18 Mar 2016)
Log Message
Unreviewed speculative cloop buildfix after r198364.
* bytecode/SuperSampler.cpp:
Modified Paths
Diff
Modified: trunk/Source/_javascript_Core/ChangeLog (198395 => 198396)
--- trunk/Source/_javascript_Core/ChangeLog 2016-03-18 11:17:09 UTC (rev 198395)
+++ trunk/Source/_javascript_Core/ChangeLog 2016-03-18 11:36:49 UTC (rev 198396)
@@ -1,3 +1,9 @@
+2016-03-18 Csaba Osztrogonác <[email protected]>
+
+ Unreviewed speculative cloop buildfix after r198364.
+
+ * bytecode/SuperSampler.cpp:
+
2016-03-17 Benjamin Poulain <[email protected]>
[JSC] Make CSE's ImpureData faster when dealing with large blocks
Modified: trunk/Source/_javascript_Core/bytecode/SuperSampler.cpp (198395 => 198396)
--- trunk/Source/_javascript_Core/bytecode/SuperSampler.cpp 2016-03-18 11:17:09 UTC (rev 198395)
+++ trunk/Source/_javascript_Core/bytecode/SuperSampler.cpp 2016-03-18 11:36:49 UTC (rev 198396)
@@ -29,6 +29,7 @@
#include "MacroAssembler.h"
#include "Options.h"
#include <wtf/CurrentTime.h>
+#include <wtf/DataLog.h>
#include <wtf/Threading.h>
namespace JSC {
@@ -42,7 +43,7 @@
{
if (!Options::useSuperSampler())
return;
-
+
createThread(
"JSC Super Sampler",
[] () {
@@ -67,7 +68,7 @@
{
if (!Options::useSuperSampler())
return;
-
+
double percentage = 100.0 * in / (in + out);
if (percentage != percentage)
percentage = 0.0;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes