Commit d5b444bc authored by Frank Tang's avatar Frank Tang Committed by Commit Bot

Add UsageCounters for misc Intl features

We need to track misc features launched in 2019 to understand the impact.
Also we need to measure the v8BreakIterator usage of 'word' and 'line'
to lobby the need for 'line' in the replacement standard Intl.Segmenter
which an Apple engineer opposed to include.

Bug: v8:10251
Change-Id: I5d4cbe6ccf458c9ec4adfebad235f9c6dcd2ac37
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2067512Reviewed-by: 's avatarYang Guo <yangguo@chromium.org>
Commit-Queue: Frank Tang <ftang@chromium.org>
Cr-Commit-Position: refs/heads/master@{#66506}
parent b66e24f0
......@@ -8411,6 +8411,11 @@ class V8_EXPORT Isolate {
kSharedArrayBufferConstructed = 82,
kArrayPrototypeHasElements = 83,
kObjectPrototypeHasElements = 84,
kNumberFormatStyleUnit = 85,
kDateTimeFormatRange = 86,
kDateTimeFormatDateTimeStyle = 87,
kBreakIteratorTypeWord = 88,
kBreakIteratorTypeLine = 89,
// If you add new values here, you'll also need to update Chromium's:
// web_feature.mojom, use_counter_callback.cc, and enums.xml. V8 changes to
......
......@@ -79,10 +79,14 @@ MaybeHandle<JSV8BreakIterator> JSV8BreakIterator::New(
icu::BreakIterator::createSentenceInstance(icu_locale, status));
break;
case Type::LINE:
isolate->CountUsage(
v8::Isolate::UseCounterFeature::kBreakIteratorTypeLine);
break_iterator.reset(
icu::BreakIterator::createLineInstance(icu_locale, status));
break;
default:
isolate->CountUsage(
v8::Isolate::UseCounterFeature::kBreakIteratorTypeWord);
break_iterator.reset(
icu::BreakIterator::createWordInstance(icu_locale, status));
break;
......
......@@ -1540,6 +1540,10 @@ MaybeHandle<JSDateTimeFormat> JSDateTimeFormat::New(
// 32. If dateStyle or timeStyle are not undefined, then
if (date_style != DateTimeStyle::kUndefined ||
time_style != DateTimeStyle::kUndefined) {
// Track newer feature dateStyle/timeStyle option.
isolate->CountUsage(
v8::Isolate::UseCounterFeature::kDateTimeFormatDateTimeStyle);
icu_date_format = DateTimeStylePattern(date_style, time_style, icu_locale,
hc, generator.get());
}
......@@ -1948,6 +1952,9 @@ MaybeHandle<T> FormatRangeCommon(
Isolate* isolate, Handle<JSDateTimeFormat> date_time_format, double x,
double y,
MaybeHandle<T> (*formatToResult)(Isolate*, const icu::FormattedValue&)) {
// Track newer feature formateRange and formatRangeToParts
isolate->CountUsage(v8::Isolate::UseCounterFeature::kDateTimeFormatRange);
// #sec-partitiondatetimerangepattern
// 1. Let x be TimeClip(x).
x = DateCache::TimeClip(x);
......
......@@ -1073,6 +1073,9 @@ MaybeHandle<JSNumberFormat> JSNumberFormat::New(Isolate* isolate,
// 13. If style is "unit", then
if (style == Style::UNIT) {
// Track newer style "unit".
isolate->CountUsage(v8::Isolate::UseCounterFeature::kNumberFormatStyleUnit);
// 13.a If unit is undefined, throw a TypeError exception.
if (unit == "") {
THROW_NEW_ERROR(isolate,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment