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 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430
|
// Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifdef UNSAFE_BUFFERS_BUILD
// TODO(crbug.com/390223051): Remove C-library calls to fix the errors.
#pragma allow_unsafe_libc_calls
#endif
// A benchmark to verify style performance (and also hooks into layout,
// but not generally layout itself). This isolates style from paint etc.,
// for more stable benchmarking and profiling. Note that this test
// depends on external JSON files with stored web pages, which are
// not yet checked in. The tests will be skipped if you don't have the
// files available.
#include <string_view>
#include "base/command_line.h"
#include "base/containers/span.h"
#include "base/json/json_reader.h"
#include "testing/perf/perf_result_reporter.h"
#include "testing/perf/perf_test.h"
#include "third_party/blink/renderer/core/css/container_query_data.h"
#include "third_party/blink/renderer/core/css/parser/css_tokenizer.h"
#include "third_party/blink/renderer/core/css/resolver/style_resolver.h"
#include "third_party/blink/renderer/core/css/style_change_reason.h"
#include "third_party/blink/renderer/core/css/style_engine.h"
#include "third_party/blink/renderer/core/css/style_recalc_change.h"
#include "third_party/blink/renderer/core/css/style_sheet_contents.h"
#include "third_party/blink/renderer/core/dom/document.h"
#include "third_party/blink/renderer/core/dom/dom_token_list.h"
#include "third_party/blink/renderer/core/frame/local_frame_view.h"
#include "third_party/blink/renderer/core/html/html_body_element.h"
#include "third_party/blink/renderer/core/loader/empty_clients.h"
#include "third_party/blink/renderer/core/style/computed_style.h"
#include "third_party/blink/renderer/core/testing/no_network_url_loader.h"
#include "third_party/blink/renderer/core/testing/page_test_base.h"
#include "third_party/blink/renderer/platform/heap/process_heap.h"
#include "third_party/blink/renderer/platform/testing/unit_test_helpers.h"
#include "third_party/blink/renderer/platform/testing/url_test_helpers.h"
namespace blink {
// The HTML left by the dumper script will contain any <style> tags that were
// in the DOM, which will be interpreted by setInnerHTML() and converted to
// style sheets. However, we already have our own canonical list of sheets
// (from the JSON) that we want to use. Keeping both will make for duplicated
// rules, enabling rules and sheets that have since been deleted
// (occasionally even things like “display: none !important”) and so on.
// Thus, as a kludge, we strip all <style> tags from the HTML here before
// parsing.
static WTF::String StripStyleTags(const WTF::String& html) {
StringBuilder stripped_html;
wtf_size_t pos = 0;
for (;;) {
// Allow <style id=" etc.
wtf_size_t style_start = html.DeprecatedFindIgnoringCase("<style", pos);
if (style_start == kNotFound) {
// No more <style> tags, so append the rest of the string.
stripped_html.Append(html.Substring(pos, html.length() - pos));
break;
}
// Bail out if it's not “<style>” or “<style ”; it's probably
// a false positive then.
if (style_start + 6 >= html.length() ||
(html[style_start + 6] != ' ' && html[style_start + 6] != '>')) {
stripped_html.Append(html.Substring(pos, style_start - pos));
pos = style_start + 6;
continue;
}
wtf_size_t style_end =
html.DeprecatedFindIgnoringCase("</style>", style_start);
if (style_end == kNotFound) {
LOG(FATAL) << "Mismatched <style> tag";
}
stripped_html.Append(html.Substring(pos, style_start - pos));
pos = style_end + 8;
}
return stripped_html.ToString();
}
static std::unique_ptr<DummyPageHolder> LoadDumpedPage(
const base::Value::Dict& dict,
base::TimeDelta& parse_time,
perf_test::PerfResultReporter* reporter) {
const std::string parse_iterations_str =
base::CommandLine::ForCurrentProcess()->GetSwitchValueASCII(
"style-parse-iterations");
int parse_iterations =
parse_iterations_str.empty() ? 1 : stoi(parse_iterations_str);
const CSSDeferPropertyParsing defer_property_parsing =
base::CommandLine::ForCurrentProcess()->HasSwitch("style-lazy-parsing")
? CSSDeferPropertyParsing::kYes
: CSSDeferPropertyParsing::kNo;
auto page = std::make_unique<DummyPageHolder>(
gfx::Size(800, 600), nullptr,
MakeGarbageCollected<NoNetworkLocalFrameClient>());
page->GetDocument().SetCompatibilityMode(Document::kNoQuirksMode);
page->GetPage().SetDefaultPageScaleLimits(1, 4);
Document& document = page->GetDocument();
StyleEngine& engine = document.GetStyleEngine();
document.documentElement()->setInnerHTML(
StripStyleTags(WTF::String(*dict.FindString("html"))),
ASSERT_NO_EXCEPTION);
int num_sheets = 0;
int num_bytes = 0;
base::ElapsedTimer parse_timer;
for (const base::Value& sheet_json : *dict.FindList("stylesheets")) {
const base::Value::Dict& sheet_dict = sheet_json.GetDict();
auto* sheet = MakeGarbageCollected<StyleSheetContents>(
MakeGarbageCollected<CSSParserContext>(document));
for (int i = 0; i < parse_iterations; ++i) {
sheet->ParseString(WTF::String(*sheet_dict.FindString("text")),
/*allow_import_rules=*/true, defer_property_parsing);
}
if (*sheet_dict.FindString("type") == "user") {
engine.InjectSheet(g_empty_atom, sheet, WebCssOrigin::kUser);
} else {
engine.InjectSheet(g_empty_atom, sheet, WebCssOrigin::kAuthor);
}
++num_sheets;
num_bytes += sheet_dict.FindString("text")->size();
}
parse_time = parse_timer.Elapsed();
if (reporter) {
reporter->RegisterFyiMetric("NumSheets", "");
reporter->AddResult("NumSheets", static_cast<double>(num_sheets));
reporter->RegisterFyiMetric("SheetSize", "kB");
reporter->AddResult("SheetSize", static_cast<double>(num_bytes / 1024));
reporter->RegisterImportantMetric("ParseTime", "us");
reporter->AddResult("ParseTime", parse_time);
}
return page;
}
struct StylePerfResult {
bool skipped = false;
base::TimeDelta parse_time;
base::TimeDelta initial_style_time;
base::TimeDelta recalc_style_time;
int64_t gc_allocated_bytes;
int64_t partition_allocated_bytes; // May be negative due to bugs.
// Part of gc_allocated_bytes, but much more precise. Only enabled if
// --measure-computed-style-memory is set -- and if so, gc_allocated_bytes
// is going to be much higher due to the extra allocated objects used for
// diffing.
int64_t computed_style_used_bytes;
};
static StylePerfResult MeasureStyleForDumpedPage(
const char* filename,
bool parse_only,
perf_test::PerfResultReporter* reporter) {
StylePerfResult result;
// Running more than once is useful for profiling. (If this flag does not
// exist, it will return the empty string.)
const std::string recalc_iterations_str =
base::CommandLine::ForCurrentProcess()->GetSwitchValueASCII(
"style-recalc-iterations");
int recalc_iterations =
recalc_iterations_str.empty() ? 1 : stoi(recalc_iterations_str);
const bool measure_computed_style_memory =
base::CommandLine::ForCurrentProcess()->HasSwitch(
"measure-computed-style-memory");
// Do a forced GC run before we start loading anything, so that we have
// a more stable baseline. Note that even with this, the GC deltas tend to
// be different depending on what other tests that run before, so if you want
// the more consistent memory numbers, you'll need to run only a single test
// only (e.g. --gtest_filter=StyleCalcPerfTest.Video).
ThreadState::Current()->CollectAllGarbageForTesting();
size_t orig_gc_allocated_bytes =
blink::ProcessHeap::TotalAllocatedObjectSize();
size_t orig_partition_allocated_bytes =
WTF::Partitions::TotalSizeOfCommittedPages();
std::unique_ptr<DummyPageHolder> page;
{
std::optional<Vector<char>> serialized =
test::ReadFromFile(test::StylePerfTestDataPath(filename));
if (!serialized) {
// Some test data is very large and needs to be downloaded separately,
// so it may not always be present. Do not fail, but report the test as
// skipped.
result.skipped = true;
return result;
}
std::optional<base::Value> json =
base::JSONReader::Read(base::as_string_view(*serialized));
CHECK(json.has_value());
page = LoadDumpedPage(json->GetDict(), result.parse_time, reporter);
}
page->GetDocument()
.GetStyleEngine()
.GetStyleResolver()
.SetCountComputedStyleBytes(measure_computed_style_memory);
if (!parse_only) {
{
base::ElapsedTimer style_timer;
for (int i = 0; i < recalc_iterations; ++i) {
page->GetDocument().UpdateStyleAndLayoutTreeForThisDocument();
if (i != recalc_iterations - 1) {
page->GetDocument().GetStyleEngine().MarkAllElementsForStyleRecalc(
StyleChangeReasonForTracing::Create("test"));
}
}
result.initial_style_time = style_timer.Elapsed();
}
page->GetDocument().GetStyleEngine().MarkAllElementsForStyleRecalc(
StyleChangeReasonForTracing::Create("test"));
{
base::ElapsedTimer style_timer;
page->GetDocument().UpdateStyleAndLayoutTreeForThisDocument();
result.recalc_style_time = style_timer.Elapsed();
}
}
// Loading the document may have posted tasks, which can hold on to memory.
// Run them now, to make sure they don't leak or otherwise skew the
// statistics.
test::RunPendingTasks();
size_t gc_allocated_bytes = blink::ProcessHeap::TotalAllocatedObjectSize();
size_t partition_allocated_bytes =
WTF::Partitions::TotalSizeOfCommittedPages();
result.gc_allocated_bytes = gc_allocated_bytes - orig_gc_allocated_bytes;
result.partition_allocated_bytes =
partition_allocated_bytes - orig_partition_allocated_bytes;
if (measure_computed_style_memory) {
result.computed_style_used_bytes = page->GetDocument()
.GetStyleEngine()
.GetStyleResolver()
.GetComputedStyleBytesUsed();
}
return result;
}
static void MeasureAndPrintStyleForDumpedPage(const char* filename,
const char* label) {
auto reporter = perf_test::PerfResultReporter("BlinkStyle", label);
const bool parse_only =
base::CommandLine::ForCurrentProcess()->HasSwitch("parse-style-only");
StylePerfResult result =
MeasureStyleForDumpedPage(filename, parse_only, &reporter);
if (result.skipped) {
char msg[256];
snprintf(msg, sizeof(msg), "Skipping %s test because %s could not be read",
label, filename);
GTEST_SKIP_(msg);
}
if (!parse_only) {
reporter.RegisterImportantMetric("InitialCalcTime", "us");
reporter.AddResult("InitialCalcTime", result.initial_style_time);
reporter.RegisterImportantMetric("RecalcTime", "us");
reporter.AddResult("RecalcTime", result.recalc_style_time);
}
if (result.computed_style_used_bytes > 0) {
reporter.RegisterImportantMetric("ComputedStyleUsed", "kB");
reporter.AddResult(
"ComputedStyleUsed",
static_cast<size_t>(result.computed_style_used_bytes) / 1024);
// Don't print GCAllocated if we measured ComputedStyle; it causes
// much more GC churn, which will skew the metrics.
} else {
reporter.RegisterImportantMetric("GCAllocated", "kB");
reporter.AddResult("GCAllocated",
static_cast<size_t>(result.gc_allocated_bytes) / 1024);
}
reporter.RegisterImportantMetric("PartitionAllocated", "kB");
reporter.AddResult(
"PartitionAllocated",
static_cast<size_t>(result.partition_allocated_bytes) / 1024);
}
TEST(StyleCalcPerfTest, Video) {
MeasureAndPrintStyleForDumpedPage("video.json", "Video");
}
TEST(StyleCalcPerfTest, Extension) {
MeasureAndPrintStyleForDumpedPage("extension.json", "Extension");
}
TEST(StyleCalcPerfTest, News) {
MeasureAndPrintStyleForDumpedPage("news.json", "News");
}
TEST(StyleCalcPerfTest, ECommerce) {
MeasureAndPrintStyleForDumpedPage("ecommerce.json", "ECommerce");
}
TEST(StyleCalcPerfTest, Social1) {
MeasureAndPrintStyleForDumpedPage("social1.json", "Social1");
}
TEST(StyleCalcPerfTest, Social2) {
MeasureAndPrintStyleForDumpedPage("social2.json", "Social2");
}
TEST(StyleCalcPerfTest, Encyclopedia) {
MeasureAndPrintStyleForDumpedPage("encyclopedia.json", "Encyclopedia");
}
TEST(StyleCalcPerfTest, Sports) {
MeasureAndPrintStyleForDumpedPage("sports.json", "Sports");
}
TEST(StyleCalcPerfTest, Search) {
MeasureAndPrintStyleForDumpedPage("search.json", "Search");
}
// The data set for this test is not checked in, so if you want to measure it,
// you will need to recreate it yourself. You can do so using the script in
//
// third_party/blink/renderer/core/css/scripts/style_perftest_snap_page
//
// And the URL set to use is the top 1k URLs from
//
// tools/perf/page_sets/alexa1-10000-urls.json
TEST(StyleCalcPerfTest, Alexa1000) {
std::vector<StylePerfResult> results;
const bool parse_only =
base::CommandLine::ForCurrentProcess()->HasSwitch("parse-style-only");
for (int i = 1; i <= 1000; ++i) {
char filename[256];
snprintf(filename, sizeof(filename), "alexa%04d.json", i);
StylePerfResult result =
MeasureStyleForDumpedPage(filename, parse_only, /*reporter=*/nullptr);
if (!result.skipped) {
results.push_back(result);
}
if (i % 100 == 0) {
LOG(INFO) << "Benchmarked " << results.size() << " pages, skipped "
<< (i - results.size()) << "...";
}
if (i == 10 && results.empty()) {
LOG(INFO) << "The Alexa 1k test set has not been dumped "
<< "(tried the first 10), skipping it.";
return;
}
}
auto reporter = perf_test::PerfResultReporter("BlinkStyle", "Alexa1000");
for (double percentile : {0.5, 0.9, 0.99}) {
char label[256];
size_t pos = std::min<size_t>(lrint(results.size() * percentile),
results.size() - 1);
std::nth_element(results.begin(), results.begin() + pos, results.end(),
[](const StylePerfResult& a, const StylePerfResult& b) {
return a.parse_time < b.parse_time;
});
snprintf(label, sizeof(label), "ParseTime%.0fthPercentile",
percentile * 100.0);
reporter.RegisterImportantMetric(label, "us");
reporter.AddResult(label, results[pos].parse_time);
if (!parse_only) {
std::nth_element(results.begin(), results.begin() + pos, results.end(),
[](const StylePerfResult& a, const StylePerfResult& b) {
return a.initial_style_time < b.initial_style_time;
});
snprintf(label, sizeof(label), "InitialCalcTime%.0fthPercentile",
percentile * 100.0);
reporter.RegisterImportantMetric(label, "us");
reporter.AddResult(label, results[pos].initial_style_time);
std::nth_element(results.begin(), results.begin() + pos, results.end(),
[](const StylePerfResult& a, const StylePerfResult& b) {
return a.recalc_style_time < b.recalc_style_time;
});
snprintf(label, sizeof(label), "RecalcTime%.0fthPercentile",
percentile * 100.0);
reporter.RegisterImportantMetric(label, "us");
reporter.AddResult(label, results[pos].recalc_style_time);
}
std::nth_element(results.begin(), results.begin() + pos, results.end(),
[](const StylePerfResult& a, const StylePerfResult& b) {
return a.gc_allocated_bytes < b.gc_allocated_bytes;
});
snprintf(label, sizeof(label), "GCAllocated%.0fthPercentile",
percentile * 100.0);
reporter.RegisterImportantMetric(label, "kB");
reporter.AddResult(
label, static_cast<size_t>(results[pos].gc_allocated_bytes) / 1024);
std::nth_element(results.begin(), results.begin() + pos, results.end(),
[](const StylePerfResult& a, const StylePerfResult& b) {
return a.partition_allocated_bytes <
b.partition_allocated_bytes;
});
snprintf(label, sizeof(label), "PartitionAllocated%.0fthPercentile",
percentile * 100.0);
reporter.RegisterImportantMetric(label, "kB");
reporter.AddResult(
label,
static_cast<size_t>(results[pos].partition_allocated_bytes) / 1024);
}
}
} // namespace blink
|